2012-01-18 07:19:14 +00:00
|
|
|
#undef unix /* causes problems with some files */
|
|
|
|
#undef linux
|
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
ata_idle_notify.c
|
2008-03-16 13:55:16 +00:00
|
|
|
events.c
|
2004-10-04 13:03:33 +00:00
|
|
|
backlight.c
|
2011-08-30 14:01:33 +00:00
|
|
|
buflib.c
|
|
|
|
core_alloc.c
|
2009-02-10 23:43:37 +00:00
|
|
|
general.c
|
2006-11-08 16:13:04 +00:00
|
|
|
powermgmt.c
|
2011-03-02 19:12:55 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_HOSTED)
|
2011-12-19 15:42:04 +00:00
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
target/hosted/cpuinfo-linux.c
|
|
|
|
#endif
|
|
|
|
|
2013-09-15 22:02:28 +00:00
|
|
|
#if !defined(SAMSUNG_YPR0) || defined(SIMULATOR) /* uses as3514 rtc */
|
2011-03-08 20:54:42 +00:00
|
|
|
target/hosted/rtc.c
|
2011-03-02 19:12:55 +00:00
|
|
|
#endif
|
2012-01-17 06:55:20 +00:00
|
|
|
|
2012-01-20 18:21:20 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_ANDROID) == 0 && \
|
|
|
|
(defined(DEBUG) || defined(SIMULATOR)) /* sim should define DEBUG instead */
|
2012-01-17 06:55:20 +00:00
|
|
|
target/hosted/debug-hosted.c
|
|
|
|
#endif
|
|
|
|
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
system.c
|
|
|
|
usb.c
|
2012-07-04 01:45:29 +00:00
|
|
|
#if defined(ROCKBOX_HAS_LOGF) || defined(ROCKBOX_HAS_LOGDISKF)
|
2006-11-08 16:13:04 +00:00
|
|
|
logf.c
|
|
|
|
#endif /* ROCKBOX_HAS_LOGF */
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2012-05-26 20:46:56 +00:00
|
|
|
load_code.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#ifdef RB_PROFILE
|
|
|
|
profile.c
|
|
|
|
#endif /* RB_PROFILE */
|
2012-03-04 14:34:29 +00:00
|
|
|
#if !defined(RKW_FORMAT) && !defined(MI4_FORMAT) && defined(MODEL_NUMBER)
|
|
|
|
common/rb-loader.c
|
|
|
|
#endif
|
2010-06-18 14:59:20 +00:00
|
|
|
#if !defined(BOOTLOADER) || defined(CPU_SH)
|
2006-11-08 16:13:04 +00:00
|
|
|
rolo.c
|
2010-06-18 14:59:20 +00:00
|
|
|
#endif /* !defined(BOOTLOADER) || defined(CPU_SH) */
|
2006-11-08 16:13:04 +00:00
|
|
|
timer.c
|
2010-09-20 17:38:47 +00:00
|
|
|
debug.c
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2010-09-20 17:38:47 +00:00
|
|
|
panic.c
|
|
|
|
|
2010-05-15 21:02:47 +00:00
|
|
|
#ifdef HAVE_SDL
|
|
|
|
target/hosted/sdl/button-sdl.c
|
|
|
|
target/hosted/sdl/kernel-sdl.c
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
|
|
target/hosted/sdl/lcd-bitmap.c
|
|
|
|
#elif defined(HAVE_LCD_CHARCELLS)
|
|
|
|
target/hosted/sdl/lcd-charcells.c
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
target/hosted/sdl/lcd-remote-bitmap.c
|
|
|
|
#endif
|
|
|
|
target/hosted/sdl/lcd-sdl.c
|
|
|
|
target/hosted/sdl/system-sdl.c
|
2011-02-18 22:46:01 +00:00
|
|
|
#ifdef HAVE_SDL_THREADS
|
2010-05-15 21:02:47 +00:00
|
|
|
target/hosted/sdl/thread-sdl.c
|
2011-02-18 22:46:01 +00:00
|
|
|
#else
|
|
|
|
#endif
|
2010-05-15 21:02:47 +00:00
|
|
|
target/hosted/sdl/timer-sdl.c
|
2010-07-06 15:11:56 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
target/hosted/sdl/key_to_touch-sdl.c
|
|
|
|
#endif
|
|
|
|
#ifdef APPLICATION
|
|
|
|
target/hosted/sdl/app/button-application.c
|
|
|
|
#endif
|
2010-05-15 21:02:47 +00:00
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
|
2013-12-28 18:00:57 +00:00
|
|
|
#if defined(SAMSUNG_YPR0) || defined(SAMSUNG_YPR1)
|
|
|
|
target/hosted/kernel-unix.c
|
|
|
|
target/hosted/filesystem-unix.c
|
|
|
|
target/hosted/lc-unix.c
|
|
|
|
drivers/lcd-memframe.c
|
|
|
|
target/hosted/samsungypr/lcd-ypr.c
|
|
|
|
target/hosted/samsungypr/gpio-ypr.c
|
|
|
|
#if CONFIG_TUNER
|
|
|
|
target/hosted/samsungypr/radio-ypr.c
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2013-09-15 22:02:28 +00:00
|
|
|
#if defined(SAMSUNG_YPR0) && !defined(SIMULATOR)
|
2012-01-08 02:33:43 +00:00
|
|
|
drivers/adc-as3514.c
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#if (CONFIG_RTC == RTC_AS3514)
|
|
|
|
drivers/rtc/rtc_as3514.c
|
|
|
|
#else
|
|
|
|
target/hosted/rtc.c
|
|
|
|
#endif
|
2013-02-23 15:59:49 +00:00
|
|
|
target/hosted/samsungypr/ypr0/button-ypr0.c
|
|
|
|
target/hosted/samsungypr/ypr0/system-ypr0.c
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#ifdef HAVE_BACKLIGHT
|
2013-02-23 15:59:49 +00:00
|
|
|
target/hosted/samsungypr/ypr0/backlight-ypr0.c
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#endif
|
2013-02-23 15:59:49 +00:00
|
|
|
target/hosted/samsungypr/ypr0/ascodec-ypr0.c
|
|
|
|
target/hosted/samsungypr/ypr0/powermgmt-ypr0.c
|
|
|
|
target/hosted/samsungypr/ypr0/audio-ypr0.c
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#endif
|
|
|
|
|
2013-12-28 18:00:57 +00:00
|
|
|
#if defined(SAMSUNG_YPR1) && !defined(SIMULATOR)
|
2013-09-10 20:48:34 +00:00
|
|
|
target/hosted/samsungypr/ypr1/mcs5000-ypr1.c
|
|
|
|
target/hosted/samsungypr/ypr1/button-ypr1.c
|
|
|
|
target/hosted/samsungypr/ypr1/system-ypr1.c
|
|
|
|
#ifdef HAVE_BACKLIGHT
|
|
|
|
target/hosted/samsungypr/ypr1/backlight-ypr1.c
|
|
|
|
#endif
|
|
|
|
target/hosted/samsungypr/ypr1/powermgmt-ypr1.c
|
|
|
|
target/hosted/samsungypr/ypr1/audio-ypr1.c
|
|
|
|
target/hosted/samsungypr/ypr1/pmu-ypr1.c
|
|
|
|
target/hosted/samsungypr/ypr1/wmcodec-ypr1.c
|
|
|
|
#endif
|
|
|
|
|
2011-02-08 20:05:25 +00:00
|
|
|
/* Maemo specific files */
|
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_MAEMO)
|
|
|
|
target/hosted/maemo/maemo-thread.c
|
|
|
|
#endif
|
|
|
|
|
2010-05-14 12:37:05 +00:00
|
|
|
/* Standard library */
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(__MINGW32__) || defined(__CYGWIN__)
|
2010-05-14 22:57:52 +00:00
|
|
|
libc/strtok.c
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE || __MINGW32__ || __CYGWIN__ */
|
2010-06-22 18:34:03 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(HAVE_ROCKBOX_C_LIBRARY)
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/atoi.c
|
2014-01-17 10:22:20 +00:00
|
|
|
libc/errno.c
|
2010-06-22 18:34:03 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
|
|
|
/* our ctype.[ch] comes from newlib and is incompitble with most desktop's ctype */
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/ctype.c
|
2014-01-17 10:22:20 +00:00
|
|
|
/* alsa on linux requires a more advanced sprintf, i.e. not ours */
|
|
|
|
libc/sprintf.c
|
2010-06-22 18:34:03 +00:00
|
|
|
#endif
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/memchr.c
|
2010-06-22 18:34:03 +00:00
|
|
|
libc/memcmp.c
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/qsort.c
|
|
|
|
libc/random.c
|
|
|
|
libc/strcat.c
|
|
|
|
libc/strchr.c
|
|
|
|
libc/strcmp.c
|
|
|
|
libc/strcpy.c
|
2010-06-22 18:34:03 +00:00
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/strncmp.c
|
|
|
|
libc/strrchr.c
|
|
|
|
libc/strstr.c
|
|
|
|
libc/mktime.c
|
2012-03-08 20:21:31 +00:00
|
|
|
libc/gmtime.c
|
2010-06-22 18:34:03 +00:00
|
|
|
#endif /* CONFIG_PLATFORM || HAVE_ROCKBOX_C_LIBRARY */
|
2010-05-14 12:37:05 +00:00
|
|
|
|
|
|
|
/* Common */
|
2010-06-21 00:18:29 +00:00
|
|
|
common/version.c
|
2010-05-06 21:04:40 +00:00
|
|
|
common/config.c
|
2006-04-18 18:56:56 +00:00
|
|
|
common/crc32.c
|
2012-03-04 14:34:29 +00:00
|
|
|
#ifdef MODEL_NUMBER
|
|
|
|
common/loader_strerror.c
|
|
|
|
#endif
|
2007-06-04 13:48:21 +00:00
|
|
|
#ifdef MI4_FORMAT
|
|
|
|
common/crc32-mi4.c
|
|
|
|
#endif
|
2012-03-02 15:29:42 +00:00
|
|
|
#ifdef RKW_FORMAT
|
|
|
|
common/crc32-rkw.c
|
|
|
|
#endif
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2007-07-20 17:06:55 +00:00
|
|
|
common/dir_uncached.c
|
2005-02-18 13:47:17 +00:00
|
|
|
common/file.c
|
2010-06-06 13:40:40 +00:00
|
|
|
common/disk.c
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2005-10-08 18:41:11 +00:00
|
|
|
#ifdef HAVE_DIRCACHE
|
2005-10-07 17:38:05 +00:00
|
|
|
common/dircache.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* HAVE_DIRCACHE */
|
2009-11-26 22:34:08 +00:00
|
|
|
common/filefuncs.c
|
2010-05-06 21:04:40 +00:00
|
|
|
common/format.c
|
2010-08-01 16:15:27 +00:00
|
|
|
#ifdef APPLICATION
|
|
|
|
common/rbpaths.c
|
|
|
|
#endif
|
2004-10-04 13:03:33 +00:00
|
|
|
common/strcasecmp.c
|
2005-01-27 22:21:08 +00:00
|
|
|
common/strcasestr.c
|
2009-03-01 17:55:59 +00:00
|
|
|
common/strnatcmp.c
|
2010-01-02 13:31:46 +00:00
|
|
|
common/strlcat.c
|
2009-07-14 13:57:45 +00:00
|
|
|
common/strlcpy.c
|
2007-02-13 21:51:18 +00:00
|
|
|
common/structec.c
|
2004-10-04 13:03:33 +00:00
|
|
|
common/timefuncs.c
|
2006-11-08 16:13:04 +00:00
|
|
|
common/unicode.c
|
2006-07-25 11:16:03 +00:00
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
/* Display */
|
2007-07-28 08:12:05 +00:00
|
|
|
scroll_engine.c
|
|
|
|
|
2005-02-18 13:47:17 +00:00
|
|
|
#ifdef HAVE_LCD_CHARCELLS
|
2007-03-26 07:52:13 +00:00
|
|
|
drivers/lcd-charcell.c
|
|
|
|
drivers/lcd-charset-player.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* HAVE_LCD_CHARCELLS */
|
|
|
|
|
2005-02-18 13:47:17 +00:00
|
|
|
#ifdef HAVE_LCD_BITMAP
|
2005-12-06 15:04:48 +00:00
|
|
|
arabjoin.c
|
2005-08-08 19:23:28 +00:00
|
|
|
bidi.c
|
2006-11-08 16:13:04 +00:00
|
|
|
font_cache.c
|
|
|
|
font.c
|
2006-03-29 16:21:42 +00:00
|
|
|
hangul.c
|
2006-11-08 16:13:04 +00:00
|
|
|
lru.c
|
2009-02-10 23:43:37 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
screendump.c
|
|
|
|
#endif
|
2006-02-05 17:34:49 +00:00
|
|
|
#if LCD_DEPTH == 1
|
2006-11-12 13:22:59 +00:00
|
|
|
drivers/lcd-1bit-vert.c
|
2006-02-05 17:34:49 +00:00
|
|
|
#elif LCD_DEPTH == 2
|
2006-11-08 16:13:04 +00:00
|
|
|
#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
|
2006-02-09 00:48:53 +00:00
|
|
|
drivers/lcd-2bit-horz.c
|
2006-11-10 00:02:28 +00:00
|
|
|
#elif LCD_PIXELFORMAT == VERTICAL_PACKING
|
|
|
|
drivers/lcd-2bit-vert.c
|
2008-03-12 20:35:42 +00:00
|
|
|
#elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
|
|
|
|
drivers/lcd-2bit-vi.c
|
2006-11-10 00:02:28 +00:00
|
|
|
#endif /* LCD_PIXELFORMAT */
|
2005-11-07 23:07:19 +00:00
|
|
|
#elif LCD_DEPTH == 16
|
2009-09-01 00:57:47 +00:00
|
|
|
#if defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
|
|
|
|
drivers/lcd-16bit-vert.c
|
|
|
|
#else
|
2005-11-07 23:07:19 +00:00
|
|
|
drivers/lcd-16bit.c
|
2009-09-01 00:57:47 +00:00
|
|
|
#endif
|
2014-06-18 05:15:00 +00:00
|
|
|
#elif LCD_DEPTH == 24
|
|
|
|
drivers/lcd-24bit.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* LCD_DEPTH */
|
2010-04-07 20:41:18 +00:00
|
|
|
common/diacritic.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
|
2006-07-28 07:35:45 +00:00
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
|
|
#if LCD_REMOTE_DEPTH == 1
|
2007-02-25 22:09:14 +00:00
|
|
|
drivers/lcd-remote-1bit-v.c
|
2006-07-28 07:35:45 +00:00
|
|
|
#elif LCD_REMOTE_DEPTH == 2
|
|
|
|
drivers/lcd-remote-2bit-vi.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* LCD_REMOTE_DEPTH */
|
|
|
|
#endif /* HAVE_REMOTE_LCD */
|
|
|
|
|
2009-01-26 23:21:49 +00:00
|
|
|
#if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
|
|
|
|
|| (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
|
2009-01-22 10:50:11 +00:00
|
|
|
backlight-sw-fading.c
|
2009-01-26 23:21:49 +00:00
|
|
|
#endif /* CONFIG_BACKLIGHT_FADING */
|
2008-11-26 08:26:13 +00:00
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
/* Misc. */
|
2005-02-18 13:47:17 +00:00
|
|
|
drivers/led.c
|
2007-08-12 19:49:03 +00:00
|
|
|
drivers/button.c
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2008-05-03 13:43:26 +00:00
|
|
|
#ifdef HAVE_DAC3550A
|
2010-10-31 21:09:34 +00:00
|
|
|
drivers/audio/dac3550a.c
|
2008-05-03 13:43:26 +00:00
|
|
|
#endif
|
2009-02-07 11:15:30 +00:00
|
|
|
#ifdef HAVE_SERIAL
|
2006-11-08 16:13:04 +00:00
|
|
|
drivers/serial.c
|
2009-02-07 11:15:30 +00:00
|
|
|
#endif
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2009-02-19 22:33:55 +00:00
|
|
|
#ifdef HAVE_TOUCHSCREEN
|
|
|
|
drivers/touchscreen.c
|
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
|
2007-08-27 16:04:32 +00:00
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
/* Storage */
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2009-07-17 22:28:49 +00:00
|
|
|
#if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
|
2006-01-12 00:35:50 +00:00
|
|
|
drivers/ata_flash.c
|
2009-07-17 22:28:49 +00:00
|
|
|
#endif
|
|
|
|
#if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
|
2008-10-31 21:25:04 +00:00
|
|
|
target/arm/ata-nand-telechips.c
|
2009-07-17 22:28:49 +00:00
|
|
|
#endif
|
|
|
|
#if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
|
2008-11-11 14:11:49 +00:00
|
|
|
target/arm/s5l8700/ata-nand-s5l8700.c
|
2009-07-17 22:28:49 +00:00
|
|
|
#endif
|
2011-05-30 21:10:37 +00:00
|
|
|
#if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_RK27XX)
|
|
|
|
target/arm/rk27xx/ata-nand-rk27xx.c
|
|
|
|
#endif
|
2011-02-27 22:47:55 +00:00
|
|
|
#if (CONFIG_STORAGE & STORAGE_ATA) && !defined(IPOD_6G)
|
2004-10-05 08:11:11 +00:00
|
|
|
drivers/ata.c
|
2009-07-17 22:28:49 +00:00
|
|
|
#endif
|
|
|
|
#if (CONFIG_STORAGE & STORAGE_SD)
|
2009-07-01 21:49:13 +00:00
|
|
|
drivers/sd.c
|
2009-07-17 22:28:49 +00:00
|
|
|
#endif
|
|
|
|
#if (CONFIG_STORAGE & STORAGE_RAMDISK)
|
2008-11-03 20:52:27 +00:00
|
|
|
drivers/ramdisk.c
|
2009-07-17 22:28:49 +00:00
|
|
|
#endif
|
|
|
|
storage.c
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/fat.c
|
2008-10-31 21:25:04 +00:00
|
|
|
#if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
|
2010-06-05 21:12:16 +00:00
|
|
|
sdmmc.c
|
2007-06-30 02:08:27 +00:00
|
|
|
#endif
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
|
|
|
/* EEPROM */
|
|
|
|
#ifdef HAVE_EEPROM
|
|
|
|
drivers/eeprom_24cxx.c
|
|
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
|
|
eeprom_settings.c
|
|
|
|
#endif /* HAVE_EEPROM_SETTINGS */
|
|
|
|
#endif /* HAVE_EEPROM */
|
|
|
|
|
|
|
|
/* RTC */
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2006-11-27 09:44:56 +00:00
|
|
|
#if (CONFIG_RTC == RTC_M41ST84W)
|
|
|
|
drivers/rtc/rtc_m41st84w.c
|
|
|
|
#elif (CONFIG_RTC == RTC_PCF50606)
|
|
|
|
drivers/rtc/rtc_pcf50606.c
|
|
|
|
#elif (CONFIG_RTC == RTC_PCF50605)
|
|
|
|
drivers/rtc/rtc_pcf50605.c
|
|
|
|
#elif (CONFIG_RTC == RTC_E8564)
|
|
|
|
drivers/rtc/rtc_e8564.c
|
2007-02-28 13:20:36 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_DS1339_DS3231)
|
|
|
|
drivers/rtc/rtc_ds1339_ds3231.c
|
2006-12-29 02:49:12 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_S3C2440)
|
|
|
|
drivers/rtc/rtc_s3c2440.c
|
2007-02-03 13:10:17 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_AS3514)
|
|
|
|
drivers/rtc/rtc_as3514.c
|
2007-10-01 05:27:43 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_RX5X348AB)
|
|
|
|
drivers/rtc/rtc_rx5x348ab.c
|
2008-02-03 18:15:39 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_MR100)
|
|
|
|
drivers/rtc/rtc_mr100.c
|
2008-04-24 09:22:39 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_MC13783)
|
|
|
|
drivers/rtc/rtc_mc13783.c
|
2008-05-02 19:12:09 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_TCC77X)
|
|
|
|
drivers/rtc/rtc_tcc77x.c
|
2008-07-15 17:17:01 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_JZ47XX)
|
|
|
|
drivers/rtc/rtc_jz4740.c
|
2009-06-28 09:58:05 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_S35390A)
|
|
|
|
drivers/rtc/rtc_s35390a.c
|
2010-11-28 22:51:14 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_S35380A)
|
|
|
|
drivers/rtc/rtc_s35380a.c
|
2009-10-11 17:56:00 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_D2)
|
|
|
|
drivers/rtc/rtc_d2.c
|
2011-07-23 11:45:22 +00:00
|
|
|
#elif (CONFIG_RTC == RTC_IMX233)
|
|
|
|
drivers/rtc/rtc_imx233.c
|
2006-11-27 09:44:56 +00:00
|
|
|
#endif /* (CONFIG_RTC == RTC_) */
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
2009-12-01 17:54:40 +00:00
|
|
|
#ifndef BOOTLOADER
|
2006-11-08 16:13:04 +00:00
|
|
|
/* Tuner */
|
2007-02-18 02:04:47 +00:00
|
|
|
#if CONFIG_TUNER
|
2007-07-14 11:20:31 +00:00
|
|
|
tuner.c
|
2013-09-10 20:48:34 +00:00
|
|
|
#if ((CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(SAMSUNG_YPR0) || defined(SAMSUNG_YPR1))
|
2007-07-14 11:20:31 +00:00
|
|
|
#if (CONFIG_TUNER & LV24020LP)
|
|
|
|
drivers/tuner/lv24020lp.c
|
|
|
|
#endif /* (CONFIG_TUNER & LV24020LP) */
|
2004-10-15 21:41:46 +00:00
|
|
|
#if (CONFIG_TUNER & S1A0903X01)
|
2004-10-04 13:03:33 +00:00
|
|
|
drivers/fmradio.c
|
2007-07-14 11:20:31 +00:00
|
|
|
drivers/tuner/s1a0903x01.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* (CONFIG_TUNER & S1A0903X01) */
|
2009-07-29 20:42:02 +00:00
|
|
|
#if (CONFIG_TUNER & TEA5760)
|
|
|
|
drivers/tuner/tea5760uk.c
|
|
|
|
#endif
|
2004-10-15 21:41:46 +00:00
|
|
|
#if (CONFIG_TUNER & TEA5767)
|
2007-07-14 11:20:31 +00:00
|
|
|
drivers/tuner/tea5767.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* (CONFIG_TUNER & TEA5767) */
|
2008-11-11 14:46:13 +00:00
|
|
|
#if (CONFIG_TUNER & SI4700)
|
|
|
|
drivers/tuner/si4700.c
|
|
|
|
#endif /* (CONFIG_TUNER & SI4700) */
|
2009-12-01 17:54:40 +00:00
|
|
|
#if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
|
|
|
|
drivers/tuner/ipod_remote_tuner.c
|
|
|
|
#endif /* (CONFIG_TUNER & IPOD_REMOTE_TUNER) */
|
2010-06-16 20:29:08 +00:00
|
|
|
#if (CONFIG_TUNER & RDA5802)
|
|
|
|
drivers/tuner/rda5802.c
|
|
|
|
#endif /* (CONFIG_TUNER & RDA5802) */
|
2012-05-19 14:09:46 +00:00
|
|
|
#if (CONFIG_TUNER & STFM1000)
|
|
|
|
drivers/tuner/stfm1000.c
|
|
|
|
#endif /* (CONFIG_TUNER & STFM1000) */
|
2011-12-17 20:24:19 +00:00
|
|
|
#if defined(HAVE_RDS_CAP)
|
|
|
|
drivers/rds.c
|
|
|
|
#endif /* HAVE_RDS_CAP */
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* CONFIG_TUNER */
|
2009-12-01 17:54:40 +00:00
|
|
|
#endif /* BOOTLOADER */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
|
|
|
/* Sound */
|
|
|
|
sound.c
|
|
|
|
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
|
|
|
|
#ifndef BOOTLOADER
|
2006-11-06 18:07:30 +00:00
|
|
|
pcm_sampr.c
|
2007-10-06 22:27:27 +00:00
|
|
|
pcm.c
|
2011-06-29 06:37:04 +00:00
|
|
|
pcm_mixer.c
|
2013-04-05 08:36:05 +00:00
|
|
|
#ifdef HAVE_SW_VOLUME_CONTROL
|
|
|
|
pcm_sw_volume.c
|
|
|
|
#endif /* HAVE_SW_VOLUME_CONTROL */
|
2006-11-06 18:07:30 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
enc_base.c
|
|
|
|
#endif /* HAVE_RECORDING */
|
2013-04-13 03:35:47 +00:00
|
|
|
|
|
|
|
drivers/audio/audiohw-swcodec.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SWCODEC */
|
|
|
|
|
|
|
|
/* Audio codec */
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER)
|
2006-11-08 16:13:04 +00:00
|
|
|
#if defined(HAVE_UDA1380)
|
2007-04-19 10:46:50 +00:00
|
|
|
drivers/audio/uda1380.c
|
2010-04-26 21:40:00 +00:00
|
|
|
#elif defined(HAVE_WM8751) \
|
|
|
|
|| defined(HAVE_WM8750)
|
2007-05-02 22:33:24 +00:00
|
|
|
drivers/audio/wm8751.c
|
2008-04-27 10:30:54 +00:00
|
|
|
#elif defined(HAVE_WM8978)
|
|
|
|
drivers/audio/wm8978.c
|
|
|
|
#elif defined(HAVE_WM8975)
|
2007-04-19 10:46:50 +00:00
|
|
|
drivers/audio/wm8975.c
|
2008-01-14 22:04:48 +00:00
|
|
|
#elif defined(HAVE_WM8985)
|
|
|
|
drivers/audio/wm8985.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#elif defined(HAVE_WM8758)
|
2007-04-19 10:46:50 +00:00
|
|
|
drivers/audio/wm8758.c
|
2008-12-08 21:09:56 +00:00
|
|
|
#elif defined(HAVE_WM8711) \
|
|
|
|
|| defined(HAVE_WM8721) \
|
|
|
|
|| defined(HAVE_WM8731)
|
2007-10-02 07:48:50 +00:00
|
|
|
drivers/audio/wm8731.c
|
2007-03-11 17:38:08 +00:00
|
|
|
#elif defined(HAVE_AS3514)
|
2007-04-19 10:46:50 +00:00
|
|
|
drivers/audio/as3514.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#elif defined(HAVE_TLV320)
|
2007-04-19 10:46:50 +00:00
|
|
|
drivers/audio/tlv320.c
|
2007-05-22 15:56:05 +00:00
|
|
|
#elif defined(HAVE_MAS35XX)
|
|
|
|
drivers/audio/mas35xx.c
|
2009-05-25 21:10:45 +00:00
|
|
|
#elif defined(HAVE_AK4537)
|
|
|
|
drivers/audio/ak4537.c
|
2009-10-19 18:14:27 +00:00
|
|
|
#elif defined(HAVE_UDA1341)
|
|
|
|
drivers/audio/uda1341.c
|
2011-01-02 23:16:27 +00:00
|
|
|
#elif defined(HAVE_CS42L55)
|
|
|
|
drivers/audio/cs42l55.c
|
2011-09-06 12:39:37 +00:00
|
|
|
#elif defined (HAVE_RK27XX_CODEC)
|
|
|
|
drivers/audio/rk27xx_codec.c
|
2011-11-16 14:08:01 +00:00
|
|
|
#elif defined(HAVE_AIC3X)
|
|
|
|
drivers/audio/aic3x.c
|
2011-11-03 11:53:02 +00:00
|
|
|
#elif defined (HAVE_DUMMY_CODEC)
|
|
|
|
drivers/audio/dummy_codec.c
|
2013-04-15 05:51:22 +00:00
|
|
|
#elif defined (HAVE_DF1704_CODEC)
|
|
|
|
drivers/audio/df1704.c
|
2013-06-02 19:03:26 +00:00
|
|
|
#elif defined (HAVE_PCM1792_CODEC)
|
|
|
|
drivers/audio/pcm1792.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* defined(HAVE_*) */
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#else /* PLATFORM_HOSTED */
|
|
|
|
#if defined(SAMSUNG_YPR0) && defined(HAVE_AS3514)
|
|
|
|
drivers/audio/as3514.c
|
|
|
|
target/hosted/pcm-alsa.c
|
2013-09-10 20:48:34 +00:00
|
|
|
#elif defined(SAMSUNG_YPR1) && defined(HAVE_WM8978)
|
|
|
|
drivers/audio/wm8978.c
|
|
|
|
target/hosted/pcm-alsa.c
|
2010-05-15 21:02:47 +00:00
|
|
|
#elif defined(HAVE_SDL_AUDIO)
|
|
|
|
drivers/audio/sdl.c
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
2011-02-08 20:05:25 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_MAEMO5)
|
|
|
|
target/hosted/maemo/pcm-gstreamer.c
|
|
|
|
#else
|
2010-05-15 21:02:47 +00:00
|
|
|
target/hosted/sdl/pcm-sdl.c
|
2011-02-08 20:05:25 +00:00
|
|
|
#endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
|
|
|
|
#endif /* CONFIG_CODEC == SWCODEC */
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
#endif
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
|
|
|
/* CPU Specific - By class then particular chip if applicable */
|
|
|
|
#if defined(CPU_SH)
|
|
|
|
|
2007-04-15 23:35:56 +00:00
|
|
|
target/sh/adc-sh.c
|
2008-03-04 16:02:19 +00:00
|
|
|
target/sh/bitswap.S
|
2006-11-08 16:13:04 +00:00
|
|
|
target/sh/crt0.S
|
2008-10-29 10:26:46 +00:00
|
|
|
target/sh/kernel-sh.c
|
2007-04-11 23:51:00 +00:00
|
|
|
target/sh/system-sh.c
|
2008-03-04 16:02:19 +00:00
|
|
|
target/sh/archos/descramble.S
|
2011-03-01 09:13:48 +00:00
|
|
|
target/sh/archos/i2c-archos.c
|
2010-11-06 14:24:25 +00:00
|
|
|
target/sh/debug-sh.c
|
2006-11-08 16:13:04 +00:00
|
|
|
|
|
|
|
#elif defined(CPU_COLDFIRE)
|
|
|
|
|
|
|
|
target/coldfire/crt0.S
|
2008-10-29 10:26:46 +00:00
|
|
|
target/coldfire/kernel-coldfire.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/system-coldfire.c
|
2009-06-29 14:29:06 +00:00
|
|
|
target/coldfire/timer-coldfire.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/pcm-coldfire.c
|
2010-11-06 14:24:25 +00:00
|
|
|
target/coldfire/debug-coldfire.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#if CONFIG_I2C == I2C_COLDFIRE
|
|
|
|
target/coldfire/i2c-coldfire.c
|
|
|
|
#endif /* CONFIG_I2C == I2C_COLDFIRE */
|
2011-12-15 20:48:15 +00:00
|
|
|
#if CONFIG_STORAGE & STORAGE_ATA
|
|
|
|
target/coldfire/ata-as-coldfire.S
|
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
|
2012-01-25 08:57:59 +00:00
|
|
|
#elif defined(CPU_PP) || (defined(CPU_ARM) && (CONFIG_PLATFORM & PLATFORM_NATIVE))
|
2006-11-08 16:13:04 +00:00
|
|
|
/* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
|
2011-12-15 23:29:11 +00:00
|
|
|
|
2011-12-15 23:55:54 +00:00
|
|
|
# if ARM_ARCH < 6
|
|
|
|
target/arm/bits-armv4.S
|
2011-12-15 23:56:07 +00:00
|
|
|
# if CONFIG_CPU == IMX233 || CONFIG_CPU == DM320 \
|
|
|
|
|| CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2 \
|
2011-12-16 00:03:20 +00:00
|
|
|
|| CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \
|
|
|
|
|| defined(CPU_S5L870X)
|
2011-12-15 23:56:07 +00:00
|
|
|
target/arm/mmu-arm.S
|
|
|
|
# endif
|
2011-12-15 23:55:54 +00:00
|
|
|
# endif
|
2009-01-08 10:15:32 +00:00
|
|
|
target/arm/system-arm.c
|
2011-12-15 23:29:11 +00:00
|
|
|
|
|
|
|
#if CONFIG_STORAGE & STORAGE_ATA
|
|
|
|
# ifdef CPU_PP502x
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/ata-pp5020.c
|
2011-12-15 23:29:11 +00:00
|
|
|
# endif
|
|
|
|
# if CONFIG_CPU == DM320 || defined(CPU_PP502x)
|
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-12-16 00:21:12 +00:00
|
|
|
#if defined(CPU_PP) && defined(IPOD_ARCH)
|
|
|
|
target/arm/ipod/power-ipod.c
|
|
|
|
# if LCD_DEPTH == 2
|
|
|
|
target/arm/ipod/lcd-as-gray.S
|
|
|
|
# endif
|
|
|
|
# ifndef IPOD_1G2G
|
|
|
|
# ifndef IPOD_3G
|
|
|
|
target/arm/ipod/piezo.c
|
|
|
|
# endif /* IPOD_3G */
|
|
|
|
drivers/pcf50605.c
|
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
|
|
|
# endif /* IPOD_1G2G */
|
|
|
|
#endif /* CPU_PP && IPOD_ARCH */
|
|
|
|
|
2007-05-17 22:49:27 +00:00
|
|
|
#if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/i2c-pp.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#elif CONFIG_I2C == I2C_PNX0101
|
2007-04-19 10:20:54 +00:00
|
|
|
target/arm/pnx0101/i2c-pnx0101.c
|
2008-05-02 19:12:09 +00:00
|
|
|
#elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X
|
2008-01-14 22:04:48 +00:00
|
|
|
target/arm/i2c-telechips.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#elif CONFIG_I2C == I2C_S3C2440
|
2012-05-30 19:52:23 +00:00
|
|
|
target/arm/s3c2440/i2c-s3c2440.c
|
2009-06-27 20:11:11 +00:00
|
|
|
#elif CONFIG_I2C == I2C_S5L8700
|
|
|
|
target/arm/s5l8700/i2c-s5l8700.c
|
2011-01-02 23:16:27 +00:00
|
|
|
#elif CONFIG_I2C == I2C_S5L8702
|
|
|
|
target/arm/s5l8702/i2c-s5l8702.c
|
2011-05-30 21:10:37 +00:00
|
|
|
#elif CONFIG_I2C == I2C_RK27XX
|
|
|
|
target/arm/rk27xx/i2c-rk27xx.c
|
2011-07-09 17:14:05 +00:00
|
|
|
#elif CONFIG_I2C == I2C_IMX233
|
|
|
|
target/arm/imx233/i2c-imx233.c
|
2006-07-13 07:40:30 +00:00
|
|
|
#endif
|
2008-07-14 15:03:10 +00:00
|
|
|
|
2007-03-24 19:26:13 +00:00
|
|
|
#if CONFIG_CPU == PNX0101
|
2008-10-29 10:26:46 +00:00
|
|
|
target/arm/pnx0101/kernel-pnx0101.c
|
2007-04-19 10:14:55 +00:00
|
|
|
target/arm/pnx0101/system-pnx0101.c
|
2009-06-29 14:29:02 +00:00
|
|
|
target/arm/pnx0101/timer-pnx0101.c
|
2007-03-24 19:26:13 +00:00
|
|
|
#endif
|
2008-07-14 15:03:10 +00:00
|
|
|
|
2011-05-01 13:02:46 +00:00
|
|
|
#if CONFIG_CPU == IMX233
|
2011-07-03 15:18:41 +00:00
|
|
|
target/arm/imx233/lcdif-imx233.c
|
2011-05-01 13:02:46 +00:00
|
|
|
target/arm/imx233/clkctrl-imx233.c
|
|
|
|
target/arm/imx233/system-imx233.c
|
|
|
|
target/arm/imx233/timrot-imx233.c
|
|
|
|
target/arm/imx233/kernel-imx233.c
|
2012-08-18 16:24:42 +00:00
|
|
|
# if (CONFIG_STORAGE & (STORAGE_SD | STORAGE_MMC))
|
|
|
|
target/arm/imx233/sdmmc-imx233.c
|
2012-05-19 14:09:46 +00:00
|
|
|
# endif
|
2013-06-18 14:39:11 +00:00
|
|
|
# if (CONFIG_STORAGE & (STORAGE_ATA))
|
|
|
|
target/arm/imx233/ata-imx233.c
|
|
|
|
# endif
|
2012-05-19 11:33:45 +00:00
|
|
|
target/arm/imx233/partitions-imx233.c
|
2011-06-17 22:30:58 +00:00
|
|
|
target/arm/imx233/ssp-imx233.c
|
|
|
|
target/arm/imx233/dma-imx233.c
|
2012-05-19 11:23:17 +00:00
|
|
|
target/arm/imx233/icoll-imx233.c
|
2011-07-22 15:45:50 +00:00
|
|
|
target/arm/imx233/pinctrl-imx233.c
|
2011-07-23 11:45:22 +00:00
|
|
|
target/arm/imx233/power-imx233.c
|
|
|
|
target/arm/imx233/powermgmt-imx233.c
|
|
|
|
target/arm/imx233/adc-imx233.c
|
2011-09-13 23:40:12 +00:00
|
|
|
target/arm/imx233/lradc-imx233.c
|
2012-05-19 11:40:34 +00:00
|
|
|
target/arm/imx233/pwm-imx233.c
|
2011-12-31 13:35:45 +00:00
|
|
|
target/arm/imx233/rtc-imx233.c
|
2014-02-22 19:28:51 +00:00
|
|
|
target/arm/imx233/button-imx233.c
|
2013-06-18 14:41:23 +00:00
|
|
|
#if IMX233_SUBTARGET >= 3700
|
2012-01-15 00:38:41 +00:00
|
|
|
target/arm/imx233/dcp-imx233.c
|
2013-06-18 14:41:23 +00:00
|
|
|
#endif
|
2013-01-10 00:43:08 +00:00
|
|
|
target/arm/imx233/emi-imx233.c
|
2013-06-18 14:24:28 +00:00
|
|
|
target/arm/imx233/uartdbg-imx233.c
|
2013-06-18 14:41:23 +00:00
|
|
|
# if defined(HAVE_TOUCHSCREEN) || defined(HAVE_TOUCHPAD_IMX233)
|
2012-05-19 11:42:49 +00:00
|
|
|
target/arm/imx233/touchscreen-imx233.c
|
|
|
|
# endif
|
2011-11-06 13:30:09 +00:00
|
|
|
#ifndef BOOTLOADER
|
2011-07-23 11:45:22 +00:00
|
|
|
target/arm/imx233/debug-imx233.c
|
2011-11-06 13:30:09 +00:00
|
|
|
#endif
|
2011-07-23 11:45:22 +00:00
|
|
|
#if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE)
|
|
|
|
target/arm/imx233/usb-imx233.c
|
|
|
|
#endif
|
2011-09-06 00:27:38 +00:00
|
|
|
#ifndef BOOTLOADER
|
2011-09-13 23:40:12 +00:00
|
|
|
#ifdef HAVE_IMX233_CODEC
|
2011-10-18 22:08:41 +00:00
|
|
|
target/arm/imx233/audioout-imx233.c
|
|
|
|
target/arm/imx233/audioin-imx233.c
|
2013-06-18 14:15:07 +00:00
|
|
|
target/arm/imx233/audio-imx233.c
|
2011-09-06 00:27:38 +00:00
|
|
|
target/arm/imx233/pcm-imx233.c
|
2011-10-18 22:08:41 +00:00
|
|
|
drivers/audio/imx233-codec.c
|
2011-09-13 23:40:12 +00:00
|
|
|
#endif
|
2011-09-06 00:27:38 +00:00
|
|
|
target/arm/imx233/timer-imx233.c
|
|
|
|
#endif
|
2011-05-01 13:02:46 +00:00
|
|
|
#endif /* IMX233 */
|
|
|
|
|
2009-12-31 19:15:20 +00:00
|
|
|
#if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
|
2008-10-12 16:46:01 +00:00
|
|
|
target/arm/as3525/system-as3525.c
|
2010-06-18 17:33:51 +00:00
|
|
|
target/arm/as3525/memory-init.S
|
2008-11-06 02:31:40 +00:00
|
|
|
target/arm/as3525/kernel-as3525.c
|
2009-06-29 14:28:49 +00:00
|
|
|
target/arm/as3525/timer-as3525.c
|
2010-01-13 06:44:45 +00:00
|
|
|
#if CONFIG_CPU == AS3525
|
2010-01-15 14:03:41 +00:00
|
|
|
target/arm/as3525/sd-as3525.c
|
2010-04-27 10:11:52 +00:00
|
|
|
#ifdef HAVE_SCROLLWHEEL
|
|
|
|
target/arm/as3525/scrollwheel-as3525.c
|
|
|
|
#endif /* HAVE_SCROLLWHEEL */
|
2010-01-13 06:44:45 +00:00
|
|
|
#else /* AS3535v2 */
|
2011-12-15 19:38:11 +00:00
|
|
|
target/arm/as3525/tuner-as3525v2.c
|
2010-01-15 14:03:41 +00:00
|
|
|
target/arm/as3525/sd-as3525v2.c
|
2009-12-31 19:15:20 +00:00
|
|
|
#endif
|
2008-11-10 11:04:43 +00:00
|
|
|
target/arm/as3525/power-as3525.c
|
|
|
|
target/arm/as3525/usb-as3525.c
|
2008-11-25 13:38:32 +00:00
|
|
|
target/arm/as3525/dma-pl081.c
|
2008-12-17 20:16:20 +00:00
|
|
|
target/arm/as3525/ascodec-as3525.c
|
2010-06-18 17:33:51 +00:00
|
|
|
#ifndef BOOTLOADER
|
2009-01-04 15:48:33 +00:00
|
|
|
drivers/generic_i2c.c
|
2008-11-10 11:04:43 +00:00
|
|
|
target/arm/as3525/audio-as3525.c
|
|
|
|
target/arm/as3525/debug-as3525.c
|
2010-02-22 02:42:58 +00:00
|
|
|
#if CONFIG_TUNER
|
2009-01-04 15:48:33 +00:00
|
|
|
target/arm/as3525/fmradio-i2c-as3525.c
|
2010-02-22 02:42:58 +00:00
|
|
|
#endif /* CONFIG_TUNER */
|
2009-01-04 15:48:33 +00:00
|
|
|
target/arm/as3525/pcm-as3525.c
|
2008-11-10 11:04:43 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* CONFIG_CPU == AS3525 */
|
2008-10-12 16:46:01 +00:00
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
#if defined(CPU_PP)
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/i2s-pp.c
|
|
|
|
target/arm/pp/kernel-pp.c
|
|
|
|
target/arm/pp/timer-pp.c
|
2012-03-04 14:34:29 +00:00
|
|
|
target/arm/pp/mi4-loader.c
|
2011-12-15 23:29:11 +00:00
|
|
|
# if CONFIG_STORAGE & STORAGE_SD
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/ata-sd-pp.c
|
2011-12-15 23:29:11 +00:00
|
|
|
# endif
|
|
|
|
# if !defined(HAVE_AS3514) && !defined(HAVE_AK4537)
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/wmcodec-pp.c
|
2011-12-15 23:29:11 +00:00
|
|
|
# endif
|
2007-04-22 12:03:17 +00:00
|
|
|
#if CONFIG_CPU == PP5002
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/system-pp5002.c
|
|
|
|
target/arm/pp/usb-fw-pp5002.c
|
|
|
|
target/arm/pp/ata-pp5002.c
|
2013-04-15 19:09:39 +00:00
|
|
|
# ifdef HAVE_SERIAL
|
|
|
|
target/arm/pp/uart-pp.c
|
|
|
|
# endif /* HAVE_SERIAL */
|
2007-07-02 05:33:06 +00:00
|
|
|
#elif defined CPU_PP502x
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/usb-fw-pp502x.c
|
|
|
|
target/arm/pp/system-pp502x.c
|
2013-04-15 19:09:39 +00:00
|
|
|
# ifdef HAVE_SERIAL
|
|
|
|
target/arm/pp/uart-pp.c
|
|
|
|
# endif /* HAVE_SERIAL */
|
|
|
|
#endif /* (CONFIG_CPU==PP5002) || CPU_PP502x */
|
2006-12-19 11:33:53 +00:00
|
|
|
#ifdef BOOTLOADER
|
2011-01-15 08:19:30 +00:00
|
|
|
#ifdef HAVE_BOOTLOADER_USB_MODE
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/crt0-pp502x-bl-usb.S
|
2006-12-19 11:33:53 +00:00
|
|
|
#else
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/crt0-pp-bl.S
|
2011-01-15 08:19:30 +00:00
|
|
|
#endif /* HAVE_BOOTLOADER_USB_MODE */
|
|
|
|
#else /* !BOOTLOADER */
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/pcm-pp.c
|
|
|
|
target/arm/pp/debug-pp.c
|
2007-09-06 03:28:58 +00:00
|
|
|
#if !defined(SANSA_E200) && !defined(SANSA_C200)
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/audio-pp.c
|
2007-06-05 07:03:30 +00:00
|
|
|
#endif /* SANSA_E200 */
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/crt0-pp.S
|
2006-12-19 11:33:53 +00:00
|
|
|
#endif
|
2007-03-24 19:26:13 +00:00
|
|
|
#elif CONFIG_CPU == PNX0101
|
2007-04-19 10:14:55 +00:00
|
|
|
target/arm/pnx0101/crt0-pnx0101.S
|
2007-11-11 17:58:13 +00:00
|
|
|
#elif CONFIG_CPU==DM320
|
2007-09-30 16:29:21 +00:00
|
|
|
target/arm/tms320dm320/crt0.S
|
2007-11-11 17:58:13 +00:00
|
|
|
#elif CONFIG_CPU==S3C2440
|
|
|
|
target/arm/s3c2440/crt0.S
|
2007-10-28 11:08:10 +00:00
|
|
|
#elif defined(CPU_TCC77X)
|
|
|
|
target/arm/tcc77x/crt0.S
|
2008-01-14 22:04:48 +00:00
|
|
|
#elif defined(CPU_TCC780X)
|
|
|
|
target/arm/tcc780x/crt0.S
|
2007-12-23 12:19:40 +00:00
|
|
|
#elif CONFIG_CPU==IMX31L
|
|
|
|
target/arm/imx31/crt0.S
|
2011-01-02 23:16:27 +00:00
|
|
|
#elif CONFIG_CPU==S5L8700 || CONFIG_CPU==S5L8701
|
2008-10-18 22:28:59 +00:00
|
|
|
target/arm/s5l8700/crt0.S
|
2011-01-02 23:16:27 +00:00
|
|
|
#elif CONFIG_CPU==S5L8702
|
|
|
|
target/arm/s5l8702/crt0.S
|
2011-05-01 13:02:46 +00:00
|
|
|
#elif CONFIG_CPU==IMX233
|
|
|
|
target/arm/imx233/crt0.S
|
2011-05-30 21:10:37 +00:00
|
|
|
#elif CONFIG_CPU==RK27XX
|
|
|
|
target/arm/rk27xx/crt0.S
|
2006-11-08 16:13:04 +00:00
|
|
|
#elif defined(CPU_ARM)
|
|
|
|
target/arm/crt0.S
|
|
|
|
#endif /* defined(CPU_*) */
|
|
|
|
|
2012-06-11 20:06:34 +00:00
|
|
|
#elif defined(CPU_MIPS) && (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2009-01-21 20:58:33 +00:00
|
|
|
target/mips/mmu-mips.c
|
2008-07-14 15:03:10 +00:00
|
|
|
#if CONFIG_CPU==JZ4732
|
|
|
|
target/mips/ingenic_jz47xx/crt0.S
|
|
|
|
#endif /* CONFIG_CPU == JZ4732 */
|
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
#else
|
|
|
|
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2006-11-08 16:13:04 +00:00
|
|
|
crt0.S
|
|
|
|
drivers/i2c.c
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* PLATFORM_NATIVE */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
|
|
|
#endif /* defined(CPU_*) */
|
2006-02-23 15:26:43 +00:00
|
|
|
|
2011-12-15 18:05:15 +00:00
|
|
|
#if !defined(SIMULATOR)
|
|
|
|
|
|
|
|
/* target code */
|
|
|
|
|
2011-12-15 19:38:29 +00:00
|
|
|
/* LCD driver */
|
|
|
|
#if CONFIG_LCD == LCD_SSD1303
|
|
|
|
target/arm/as3525/lcd-ssd1303.c
|
|
|
|
#elif CONFIG_LCD == LCD_SSD1801
|
|
|
|
target/sh/archos/player/lcd-as-player.S
|
|
|
|
target/sh/archos/player/lcd-player.c
|
|
|
|
#elif CONFIG_LCD == LCD_SSD1815
|
|
|
|
# if CONFIG_CPU == SH7034
|
|
|
|
target/sh/archos/lcd-archos-bitmap.c
|
|
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
|
|
|
# else
|
|
|
|
target/arm/lcd-ssd1815.c
|
|
|
|
# endif
|
|
|
|
#elif CONFIG_LCD == LCD_HX8340B
|
|
|
|
target/arm/rk27xx/lcd-hifiman.c
|
|
|
|
#elif CONFIG_LCD == LCD_C200
|
|
|
|
target/arm/lcd-c200_c200v2.c
|
|
|
|
#elif CONFIG_LCD == LCD_FUZE
|
|
|
|
target/arm/as3525/lcd-fuze.c
|
|
|
|
#elif CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO
|
|
|
|
target/arm/ipod/lcd-color_nano.c
|
|
|
|
#elif CONFIG_LCD == LCD_IPODMINI || CONFIG_LCD == LCD_IPOD2BPP
|
|
|
|
target/arm/ipod/lcd-gray.c
|
2011-12-15 20:16:05 +00:00
|
|
|
#elif CONFIG_LCD == LCD_GIGABEATS
|
2011-12-15 19:38:29 +00:00
|
|
|
target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
|
2012-10-17 07:33:31 +00:00
|
|
|
#elif CONFIG_LCD == LCD_GIGABEAT || CONFIG_LCD == LCD_MINI2440
|
2011-12-15 19:38:29 +00:00
|
|
|
target/arm/s3c2440/lcd-s3c2440.c
|
2013-10-27 18:34:24 +00:00
|
|
|
#elif CONFIG_LCD == LCD_ILI9342 || CONFIG_LCD == LCD_ILI9342C
|
2013-04-15 05:51:22 +00:00
|
|
|
target/arm/rk27xx/ma/lcd-ma.c
|
2013-11-16 14:21:00 +00:00
|
|
|
#elif CONFIG_LCD == LCD_IHIFI
|
|
|
|
target/arm/rk27xx/ihifi/lcd-ihifi.c
|
2011-12-15 19:38:29 +00:00
|
|
|
#endif
|
|
|
|
|
2011-12-15 18:05:15 +00:00
|
|
|
/* USB Stack */
|
|
|
|
#ifdef HAVE_USBSTACK
|
|
|
|
usbstack/usb_core.c
|
|
|
|
#ifdef USB_ENABLE_STORAGE
|
|
|
|
usbstack/usb_storage.c
|
|
|
|
#endif
|
|
|
|
#ifdef USB_ENABLE_SERIAL
|
|
|
|
usbstack/usb_serial.c
|
|
|
|
#endif
|
|
|
|
#ifdef USB_ENABLE_CHARGING_ONLY
|
|
|
|
usbstack/usb_charging_only.c
|
|
|
|
#endif
|
|
|
|
#ifdef USB_ENABLE_HID
|
|
|
|
usbstack/usb_hid.c
|
|
|
|
#endif
|
|
|
|
#if CONFIG_USBOTG == USBOTG_M66591
|
|
|
|
drivers/m66591.c
|
|
|
|
#elif CONFIG_USBOTG == USBOTG_ARC
|
|
|
|
target/arm/usb-drv-arc.c
|
|
|
|
#elif CONFIG_USBOTG == USBOTG_AS3525
|
|
|
|
target/arm/as3525/usb-drv-as3525.c
|
2011-12-15 21:46:46 +00:00
|
|
|
#elif CONFIG_USBOTG == USBOTG_S3C6400X
|
|
|
|
target/arm/usb-s3c6400x.c
|
2011-12-15 18:05:15 +00:00
|
|
|
#elif CONFIG_USBOTG == USBOTG_ISP1583
|
|
|
|
drivers/isp1583.c
|
|
|
|
#elif CONFIG_USBOTG == USBOTG_RK27XX
|
|
|
|
target/arm/rk27xx/usb-drv-rk27xx.c
|
|
|
|
#endif
|
|
|
|
#else /* !defined(HAVE_USBSTACK) */
|
|
|
|
#if CONFIG_USBOTG == USBOTG_ISP1362
|
|
|
|
drivers/isp1362.c
|
|
|
|
#elif CONFIG_USBOTG == USBOTG_M5636
|
|
|
|
drivers/m5636.c
|
|
|
|
#endif
|
|
|
|
#endif /* !defined(HAVE_USBSTACK) */
|
|
|
|
|
|
|
|
/* Other Random Hardware */
|
|
|
|
#ifdef HAVE_TSC2100
|
|
|
|
drivers/tsc2100.c
|
|
|
|
drivers/audio/tsc2100.c
|
|
|
|
#endif
|
|
|
|
|
2011-12-15 19:48:55 +00:00
|
|
|
#ifdef HAVE_AS3514
|
2011-12-15 20:34:16 +00:00
|
|
|
# ifdef CPU_PP
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/ascodec-pp.c
|
2011-12-15 20:34:16 +00:00
|
|
|
# endif
|
2011-12-15 19:48:55 +00:00
|
|
|
# if !defined(BOOTLOADER) || defined(CPU_PP)
|
2012-01-08 02:33:43 +00:00
|
|
|
drivers/adc-as3514.c
|
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system,
but is the only application. It therefore can implement lots of stuff that
native targets also implement, while leveraging the underlying linux kernel.
The port is quite advanced. User interface, audio playback, plugins work
mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page).
Included in utils/ypr0tools are scripts and programs required to generate
a patched firmware. The patched firmware has the rootfs modified to load
Rockbox. It includes a early/safe USB mode.
This port needs a new toolchain, one that includes glibc headers and libraries.
rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may
also work.
Most of the initial effort is done by Lorenzo Miori and others (on ABI),
including reverse engineering and patching of the original firmware,
initial drivers, and more. Big thanks to you.
Flyspray: FS#12348
Author: Lorenzo Miori, myself
Merry christmas to ypr0 owners! :)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
2011-12-24 11:56:46 +00:00
|
|
|
# if !defined(SANSA_M200V4) && !defined(SAMSUNG_YPR0)
|
2011-12-15 20:34:16 +00:00
|
|
|
target/arm/powermgmt-ascodec.c
|
|
|
|
# endif
|
2011-12-15 19:48:55 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-12-15 20:15:54 +00:00
|
|
|
#if CONFIG_I2C == I2C_PP5020
|
|
|
|
# ifdef IPOD_ARCH
|
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
|
|
|
# else
|
2012-01-03 04:39:56 +00:00
|
|
|
target/arm/pp/adc-pp5020.c
|
2011-12-15 20:15:54 +00:00
|
|
|
# endif /* IPOD_ARCH */
|
|
|
|
|
|
|
|
#elif CONFIG_I2C == I2C_PP5002
|
|
|
|
# ifdef IPOD_1G2G
|
|
|
|
target/arm/ipod/1g2g/adc-ipod-1g2g.c
|
|
|
|
# else
|
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
|
|
|
# endif /* IPOD_1G2G */
|
|
|
|
|
|
|
|
#elif CONFIG_I2C == I2C_S3C2440
|
|
|
|
target/arm/s3c2440/adc-s3c2440.c
|
|
|
|
|
|
|
|
#elif CONFIG_I2C == I2C_S5L8700
|
|
|
|
# ifdef IPOD_NANO2G
|
|
|
|
target/arm/s5l8700/ipodnano2g/adc-nano2g.c
|
|
|
|
# else
|
|
|
|
target/arm/s5l8700/adc-s5l8700.c
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#elif CONFIG_I2C == I2C_TCC77X
|
|
|
|
target/arm/tcc77x/adc-tcc77x.c
|
|
|
|
|
|
|
|
#endif /* CONFIG_I2C */
|
|
|
|
|
2011-12-15 20:34:32 +00:00
|
|
|
#ifdef CPU_SH
|
|
|
|
target/sh/archos/mascodec-archos.c
|
|
|
|
target/sh/archos/audio-archos.c
|
2009-06-29 14:29:14 +00:00
|
|
|
target/sh/archos/timer-archos.c
|
2011-12-15 20:34:32 +00:00
|
|
|
# if CONFIG_STORAGE & STORAGE_ATA
|
|
|
|
target/sh/archos/ata-archos.c
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-as-archos.S
|
2011-12-15 20:34:32 +00:00
|
|
|
# endif
|
|
|
|
# ifdef HAVE_SERIAL
|
2011-04-23 08:23:07 +00:00
|
|
|
target/sh/archos/uart-archos.c
|
2011-12-15 20:34:32 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-12-15 21:26:03 +00:00
|
|
|
#ifdef CPU_TCC77X
|
|
|
|
target/arm/usb-tcc.c
|
|
|
|
target/arm/tcc77x/kernel-tcc77x.c
|
|
|
|
target/arm/tcc77x/system-tcc77x.c
|
|
|
|
target/arm/tcc77x/timer-tcc77x.c
|
|
|
|
# ifndef IAUDIO7
|
|
|
|
target/arm/tcc77x/powermgmt-tcc77x.c
|
|
|
|
# endif /* !IAUDIO7 */
|
|
|
|
# ifndef BOOTLOADER
|
|
|
|
# ifndef SANSA_C100
|
|
|
|
target/arm/wmcodec-telechips.c
|
|
|
|
# endif /* !C100 */
|
|
|
|
target/arm/pcm-telechips.c
|
|
|
|
target/arm/tcc77x/debug-tcc77x.c
|
|
|
|
# endif /* !BOOTLOADER */
|
|
|
|
#endif /* CPU_TCC77X */
|
|
|
|
|
2011-12-15 22:27:28 +00:00
|
|
|
#if CONFIG_CPU == S5L8700 || CONFIG_CPU == S5L8701
|
|
|
|
target/arm/s5l8700/kernel-s5l8700.c
|
|
|
|
target/arm/s5l8700/system-s5l8700.c
|
|
|
|
target/arm/s5l8700/dma-s5l8700.c
|
|
|
|
# ifndef BOOTLOADER
|
|
|
|
target/arm/s5l8700/wmcodec-s5l8700.c
|
|
|
|
target/arm/s5l8700/timer-s5l8700.c
|
|
|
|
target/arm/s5l8700/pcm-s5l8700.c
|
|
|
|
target/arm/s5l8700/debug-s5l8700.c
|
|
|
|
# endif
|
|
|
|
#endif /* S5L8700 || S5L8701 */
|
|
|
|
|
2011-12-15 22:01:30 +00:00
|
|
|
#if CONFIG_CPU == S3C2440
|
|
|
|
target/arm/s3c2440/debug-s3c2440.c
|
|
|
|
target/arm/s3c2440/kernel-s3c2440.c
|
|
|
|
target/arm/s3c2440/system-s3c2440.c
|
|
|
|
# ifndef BOOTLOADER
|
|
|
|
target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
|
|
|
|
# endif
|
|
|
|
#endif /* CONFIG_CPU == S3C2440 */
|
2011-12-15 21:26:03 +00:00
|
|
|
|
2011-12-15 20:34:32 +00:00
|
|
|
#ifdef ARCHOS_PLAYER
|
2006-11-27 02:16:32 +00:00
|
|
|
target/sh/archos/player/button-player.c
|
2007-04-11 23:51:00 +00:00
|
|
|
target/sh/archos/player/hwcompat-player.c
|
2007-08-14 22:06:23 +00:00
|
|
|
target/sh/archos/player/power-player.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/sh/archos/player/powermgmt-player.c
|
2007-04-11 20:44:32 +00:00
|
|
|
target/sh/archos/player/usb-player.c
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* ARCHOS_PLAYER */
|
|
|
|
|
|
|
|
#ifdef ARCHOS_RECORDER
|
2006-11-27 02:16:32 +00:00
|
|
|
target/sh/archos/recorder/button-recorder.c
|
2007-08-14 22:06:23 +00:00
|
|
|
target/sh/archos/recorder/power-recorder.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/sh/archos/recorder/powermgmt-recorder.c
|
2007-04-11 20:44:32 +00:00
|
|
|
target/sh/archos/recorder/usb-recorder.c
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* ARCHOS_RECORDER */
|
|
|
|
|
|
|
|
#if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
|
2006-11-27 02:16:32 +00:00
|
|
|
target/sh/archos/fm_v2/button-fm_v2.c
|
2007-08-14 22:06:23 +00:00
|
|
|
target/sh/archos/fm_v2/power-fm_v2.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/sh/archos/fm_v2/powermgmt-fm_v2.c
|
2007-04-11 20:44:32 +00:00
|
|
|
target/sh/archos/fm_v2/usb-fm_v2.c
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
|
|
|
|
|
|
|
|
#if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
|
2006-11-27 02:16:32 +00:00
|
|
|
target/sh/archos/ondio/button-ondio.c
|
2007-08-14 22:06:23 +00:00
|
|
|
target/sh/archos/ondio/power-ondio.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/sh/archos/ondio/powermgmt-ondio.c
|
2007-04-11 20:44:32 +00:00
|
|
|
target/sh/archos/ondio/usb-ondio.c
|
2011-03-01 07:53:46 +00:00
|
|
|
target/sh/archos/ondio/ata_mmc.c
|
2007-11-10 19:14:01 +00:00
|
|
|
#if (CONFIG_TUNER & TEA5767)
|
|
|
|
target/sh/archos/ondio/fmradio_i2c-ondio.c
|
|
|
|
#endif
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
|
|
|
|
|
2011-12-15 21:54:06 +00:00
|
|
|
#if defined(SANSA_E200) || defined(SANSA_C200)
|
2009-01-11 10:07:22 +00:00
|
|
|
target/arm/sandisk/backlight-c200_e200.c
|
2007-09-06 03:01:41 +00:00
|
|
|
target/arm/sandisk/power-c200_e200.c
|
2007-06-05 07:03:30 +00:00
|
|
|
#ifndef BOOTLOADER
|
2007-09-06 03:01:41 +00:00
|
|
|
target/arm/sandisk/audio-c200_e200.c
|
2007-06-05 07:03:30 +00:00
|
|
|
#endif /* BOOTLOADER */
|
2011-12-15 21:54:06 +00:00
|
|
|
#endif /* SANSA_E200 || SANSA_C200 */
|
|
|
|
|
|
|
|
#ifdef SANSA_E200
|
2011-12-15 23:24:35 +00:00
|
|
|
drivers/lcd-memframe.c
|
2011-12-15 21:54:06 +00:00
|
|
|
target/arm/sandisk/sansa-e200/lcd-e200.c
|
|
|
|
target/arm/sandisk/sansa-e200/button-e200.c
|
|
|
|
target/arm/sandisk/sansa-e200/powermgmt-e200.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SANSA_E200 */
|
2006-08-01 22:28:14 +00:00
|
|
|
|
2007-09-06 03:28:58 +00:00
|
|
|
#ifdef SANSA_C200
|
2009-01-11 10:07:22 +00:00
|
|
|
target/arm/sandisk/sansa-c200/lcd-as-c200.S
|
|
|
|
target/arm/sandisk/sansa-c200/button-c200.c
|
2007-09-06 03:28:58 +00:00
|
|
|
target/arm/sandisk/sansa-c200/powermgmt-c200.c
|
|
|
|
#endif /* SANSA_C200 */
|
|
|
|
|
2009-07-13 21:09:39 +00:00
|
|
|
#ifdef SANSA_VIEW
|
|
|
|
target/arm/sandisk/sansa-view/backlight-view.c
|
|
|
|
target/arm/sandisk/sansa-view/adc-view.c
|
|
|
|
target/arm/sandisk/sansa-view/power-view.c
|
|
|
|
target/arm/sandisk/sansa-view/lcd-view.c
|
|
|
|
target/arm/sandisk/sansa-view/button-view.c
|
|
|
|
target/arm/sandisk/sansa-view/powermgmt-view.c
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
/* target/arm/sandisk/audio-view.c */
|
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SANSA_VIEW */
|
|
|
|
|
2008-05-21 03:55:17 +00:00
|
|
|
#ifdef PHILIPS_SA9200
|
2009-06-19 03:23:38 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
drivers/synaptics-mep.c
|
|
|
|
#endif /* BOOTLOADER */
|
2009-03-07 04:41:37 +00:00
|
|
|
target/arm/philips/sa9200/backlight-sa9200.c
|
2008-05-21 03:55:17 +00:00
|
|
|
target/arm/philips/sa9200/button-sa9200.c
|
2009-03-07 04:41:37 +00:00
|
|
|
target/arm/philips/sa9200/lcd-sa9200.c
|
2011-01-11 01:21:31 +00:00
|
|
|
target/arm/philips/sa9200/lcd-as-sa9200.S
|
2008-05-21 03:55:17 +00:00
|
|
|
target/arm/philips/sa9200/power-sa9200.c
|
|
|
|
target/arm/philips/sa9200/powermgmt-sa9200.c
|
|
|
|
#endif /* PHILIPS_SA9200 */
|
|
|
|
|
2011-12-15 21:47:22 +00:00
|
|
|
#if defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330)
|
2008-12-19 03:31:26 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
drivers/synaptics-mep.c
|
|
|
|
#endif /* BOOTLOADER */
|
2009-12-25 04:05:01 +00:00
|
|
|
target/arm/philips/power-hdd.c
|
|
|
|
target/arm/philips/fmradio_i2c-hdd.c
|
2011-12-15 21:47:22 +00:00
|
|
|
#endif /* PHILIPS_HDD1630 || PHILIPS_HDD6330 */
|
|
|
|
|
|
|
|
#ifdef PHILIPS_HDD1630
|
2010-10-21 21:03:17 +00:00
|
|
|
target/arm/philips/hdd1630/backlight-hdd1630.c
|
2008-06-27 18:40:25 +00:00
|
|
|
target/arm/philips/hdd1630/button-hdd1630.c
|
|
|
|
target/arm/philips/hdd1630/lcd-hdd1630.c
|
2009-02-13 04:10:57 +00:00
|
|
|
target/arm/philips/hdd1630/lcd-as-hdd1630.S
|
2008-06-27 18:40:25 +00:00
|
|
|
target/arm/philips/hdd1630/powermgmt-hdd1630.c
|
|
|
|
#endif /* PHILIPS_HDD1630 */
|
|
|
|
|
2009-12-25 04:05:01 +00:00
|
|
|
#ifdef PHILIPS_HDD6330
|
2010-10-21 21:03:17 +00:00
|
|
|
target/arm/philips/hdd6330/backlight-hdd6330.c
|
2009-12-25 04:05:01 +00:00
|
|
|
target/arm/philips/hdd6330/button-hdd6330.c
|
|
|
|
target/arm/philips/hdd6330/lcd-hdd6330.c
|
2010-12-05 19:45:50 +00:00
|
|
|
target/arm/philips/hdd6330/lcd-as-hdd6330.S
|
2009-12-25 04:05:01 +00:00
|
|
|
target/arm/philips/hdd6330/powermgmt-hdd6330.c
|
|
|
|
#endif /* PHILIPS_HDD6330 */
|
|
|
|
|
2011-12-15 21:03:32 +00:00
|
|
|
#if defined(IAUDIO_X5) || defined(IAUDIO_M5)
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/pcf50606-coldfire.c
|
2007-03-05 00:04:00 +00:00
|
|
|
target/coldfire/iaudio/adc-iaudio.c
|
|
|
|
target/coldfire/iaudio/ata-iaudio.c
|
2011-12-15 21:03:32 +00:00
|
|
|
#ifdef HAVE_FMRADIO_IN
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/fmradio_i2c-iaudio.c
|
2011-12-15 21:03:32 +00:00
|
|
|
#endif
|
2008-03-26 00:38:40 +00:00
|
|
|
target/coldfire/iaudio/lcd-remote-as-iaudio.S
|
2007-03-05 00:04:00 +00:00
|
|
|
target/coldfire/iaudio/lcd-remote-iaudio.c
|
|
|
|
target/coldfire/iaudio/pcf50606-iaudio.c
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/power-x5m5.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/coldfire/iaudio/powermgmt-iaudio.c
|
2007-03-05 00:04:00 +00:00
|
|
|
target/coldfire/iaudio/system-iaudio.c
|
|
|
|
target/coldfire/iaudio/usb-iaudio.c
|
2011-12-15 21:03:32 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/iaudio/audio-iaudio.c
|
|
|
|
#endif
|
|
|
|
#endif /* IAUDIO_X5 || IAUDIO_M5 */
|
|
|
|
|
|
|
|
#ifdef IAUDIO_X5
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/iaudio/x5/backlight-x5.c
|
2006-07-27 13:27:31 +00:00
|
|
|
target/coldfire/iaudio/x5/button-x5.c
|
2007-03-11 13:59:31 +00:00
|
|
|
target/coldfire/iaudio/x5/ds2411-x5.c
|
2006-08-13 21:28:22 +00:00
|
|
|
target/coldfire/iaudio/x5/lcd-as-x5.S
|
2006-02-23 15:26:43 +00:00
|
|
|
target/coldfire/iaudio/x5/lcd-x5.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/iaudio/x5/m5636-x5.c
|
|
|
|
#endif /* IAUDIO_X5 */
|
|
|
|
|
2007-03-04 14:09:21 +00:00
|
|
|
#ifdef IAUDIO_M5
|
2007-03-05 00:04:00 +00:00
|
|
|
target/coldfire/iaudio/m5/backlight-m5.c
|
|
|
|
target/coldfire/iaudio/m5/button-m5.c
|
|
|
|
target/coldfire/iaudio/m5/lcd-as-m5.S
|
|
|
|
target/coldfire/iaudio/m5/lcd-m5.c
|
2007-03-04 14:09:21 +00:00
|
|
|
#endif /* IAUDIO_M5 */
|
|
|
|
|
2008-03-12 20:35:42 +00:00
|
|
|
#ifdef IAUDIO_M3
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/fmradio_i2c-iaudio.c
|
2008-03-14 08:54:54 +00:00
|
|
|
target/coldfire/iaudio/m3/adc-m3.c
|
2008-03-12 23:36:05 +00:00
|
|
|
target/coldfire/iaudio/m3/ata-m3.c
|
2008-03-12 20:35:42 +00:00
|
|
|
target/coldfire/iaudio/m3/backlight-m3.c
|
|
|
|
target/coldfire/iaudio/m3/button-m3.c
|
|
|
|
target/coldfire/iaudio/m3/lcd-m3.c
|
2008-03-25 23:21:36 +00:00
|
|
|
target/coldfire/iaudio/m3/lcd-as-m3.S
|
2008-03-12 20:35:42 +00:00
|
|
|
target/coldfire/iaudio/m3/power-m3.c
|
2008-03-17 00:19:23 +00:00
|
|
|
target/coldfire/iaudio/m3/powermgmt-m3.c
|
2008-03-12 20:35:42 +00:00
|
|
|
target/coldfire/iaudio/m3/system-m3.c
|
2008-03-14 08:54:54 +00:00
|
|
|
target/coldfire/iaudio/m3/usb-m3.c
|
|
|
|
#ifndef BOOTLOADER
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/audio-iaudio.c
|
2008-03-14 08:54:54 +00:00
|
|
|
#endif
|
2008-03-12 20:35:42 +00:00
|
|
|
#endif /* IAUDIO_M3 */
|
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
#ifdef IRIVER_IFP7XX_SERIES
|
|
|
|
#ifdef STUB
|
2008-03-02 18:16:24 +00:00
|
|
|
ifp_usb_serial.c
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/sscanf.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* STUB */
|
|
|
|
#endif /* IRIVER_IFP7XX_SERIES */
|
2006-08-03 20:21:55 +00:00
|
|
|
|
2011-12-15 21:10:22 +00:00
|
|
|
#if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES)
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/iriver/ata-iriver.c
|
2007-02-25 22:09:14 +00:00
|
|
|
target/coldfire/iriver/lcd-remote-iriver.c
|
2008-04-06 23:57:37 +00:00
|
|
|
target/coldfire/iriver/lcd-remote-as-iriver.S
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/iriver/system-iriver.c
|
2007-11-10 19:14:01 +00:00
|
|
|
target/coldfire/iriver/fmradio_i2c-iriver.c
|
2011-12-15 21:10:22 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/iriver/audio-iriver.c
|
|
|
|
target/coldfire/iriver/udacodec-iriver.c
|
|
|
|
#endif
|
|
|
|
#endif /* IRIVER_H300_SERIES || IRIVER_H100_SERIES */
|
|
|
|
|
|
|
|
#ifdef IRIVER_H300_SERIES
|
|
|
|
target/coldfire/pcf50606-coldfire.c
|
2007-02-28 13:20:36 +00:00
|
|
|
target/coldfire/iriver/h300/sw_i2c-h300.c
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/iriver/h300/adc-h300.c
|
|
|
|
target/coldfire/iriver/h300/backlight-h300.c
|
|
|
|
target/coldfire/iriver/h300/button-h300.c
|
|
|
|
target/coldfire/iriver/h300/pcf50606-h300.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/iriver/h300/lcd-as-h300.S
|
|
|
|
target/coldfire/iriver/h300/lcd-h300.c
|
2007-08-14 22:23:15 +00:00
|
|
|
target/coldfire/iriver/h300/power-h300.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/coldfire/iriver/h300/powermgmt-h300.c
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/iriver/h300/usb-h300.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IRIVER_H300_SERIES */
|
2006-10-29 10:32:50 +00:00
|
|
|
|
2006-10-30 08:56:06 +00:00
|
|
|
#ifdef IRIVER_H100_SERIES
|
2008-02-03 18:15:39 +00:00
|
|
|
drivers/sw_i2c.c
|
2011-04-23 08:23:07 +00:00
|
|
|
target/coldfire/uart-coldfire.c
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/iriver/h100/adc-h100.c
|
|
|
|
target/coldfire/iriver/h100/backlight-h100.c
|
|
|
|
target/coldfire/iriver/h100/button-h100.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/iriver/h100/lcd-as-h100.S
|
2006-11-10 00:02:28 +00:00
|
|
|
target/coldfire/iriver/h100/lcd-h100.c
|
2007-08-14 22:23:15 +00:00
|
|
|
target/coldfire/iriver/h100/power-h100.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/coldfire/iriver/h100/powermgmt-h100.c
|
2006-11-13 23:21:54 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/iriver/h100/spdif-h100.c
|
|
|
|
#endif
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/iriver/h100/usb-h100.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IRIVER_H100_SERIES */
|
2006-08-23 17:30:51 +00:00
|
|
|
|
2011-12-15 21:10:22 +00:00
|
|
|
#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
|
2006-08-03 20:21:55 +00:00
|
|
|
target/arm/iriver/h10/backlight-h10.c
|
|
|
|
target/arm/iriver/h10/button-h10.c
|
2007-11-11 16:00:33 +00:00
|
|
|
target/arm/iriver/h10/fmradio_i2c-h10.c
|
2006-08-03 20:21:55 +00:00
|
|
|
target/arm/iriver/h10/power-h10.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/iriver/h10/powermgmt-h10.c
|
2011-12-15 21:10:22 +00:00
|
|
|
#endif /* IRIVER_H10 || IRIVER_H10_5GB */
|
|
|
|
|
|
|
|
#ifdef IRIVER_H10
|
|
|
|
target/arm/iriver/h10/lcd-h10_20gb.c
|
|
|
|
target/arm/iriver/h10/lcd-as-h10.S
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IRIVER_H10 */
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-08-19 19:21:17 +00:00
|
|
|
#ifdef IRIVER_H10_5GB
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/iriver/h10/lcd-h10_5gb.c
|
|
|
|
#endif /* IRIVER_H10_5GB */
|
2006-08-19 19:21:17 +00:00
|
|
|
|
2006-08-12 08:01:54 +00:00
|
|
|
#ifdef GIGABEAT_F
|
2011-12-15 23:07:11 +00:00
|
|
|
drivers/lcd-memframe.c
|
2007-04-18 12:22:27 +00:00
|
|
|
target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
|
|
|
|
target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
|
|
|
|
target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
|
|
|
|
target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
|
|
|
|
target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
|
2008-03-30 06:06:43 +00:00
|
|
|
target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
|
2006-12-29 02:49:12 +00:00
|
|
|
#ifndef BOOTLOADER
|
2007-04-18 12:22:27 +00:00
|
|
|
target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
|
2008-03-30 06:06:43 +00:00
|
|
|
target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
|
|
|
|
target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
|
2006-12-29 02:49:12 +00:00
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* GIGABEAT_F */
|
2006-08-31 19:19:35 +00:00
|
|
|
|
2007-09-21 15:51:53 +00:00
|
|
|
#ifdef GIGABEAT_S
|
2011-12-15 23:07:11 +00:00
|
|
|
drivers/lcd-memframe.c
|
2010-06-30 02:02:46 +00:00
|
|
|
target/arm/bits-armv6.S
|
2009-10-18 13:07:14 +00:00
|
|
|
target/arm/mmu-armv6.S
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/ata-imx31.c
|
|
|
|
target/arm/imx31/avic-imx31.c
|
2009-03-22 02:13:27 +00:00
|
|
|
target/arm/imx31/ccm-imx31.c
|
2008-04-11 15:49:48 +00:00
|
|
|
target/arm/imx31/debug-imx31.c
|
2010-04-07 03:43:48 +00:00
|
|
|
target/arm/imx31/dvfs_dptc-imx31.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/gpio-imx31.c
|
|
|
|
target/arm/imx31/i2c-imx31.c
|
2010-04-23 13:46:04 +00:00
|
|
|
target/arm/imx31/iomuxc-imx31.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/mc13783-imx31.c
|
|
|
|
target/arm/imx31/mmu-imx31.c
|
2010-04-23 15:32:50 +00:00
|
|
|
target/arm/imx31/rolo_restart_firmware.S
|
2009-03-12 06:31:40 +00:00
|
|
|
target/arm/imx31/sdma-imx31.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/spi-imx31.c
|
2011-04-23 08:23:07 +00:00
|
|
|
target/arm/imx31/uart-imx31.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/button-gigabeat-s.c
|
2008-04-12 16:56:45 +00:00
|
|
|
target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
|
2008-05-21 08:42:11 +00:00
|
|
|
target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/gigabeat-s/power-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/system-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
|
2007-09-21 15:51:53 +00:00
|
|
|
#ifndef BOOTLOADER
|
2008-12-09 20:48:04 +00:00
|
|
|
target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
|
2009-01-23 20:55:17 +00:00
|
|
|
target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
|
2010-04-09 01:21:53 +00:00
|
|
|
target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
|
|
|
|
target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
|
2007-09-21 15:51:53 +00:00
|
|
|
#endif
|
|
|
|
#endif /* GIGABEAT_S */
|
|
|
|
|
2008-04-24 20:08:28 +00:00
|
|
|
#if CONFIG_CPU == DM320
|
|
|
|
target/arm/tms320dm320/debug-dm320.c
|
|
|
|
target/arm/tms320dm320/dsp-dm320.c
|
|
|
|
target/arm/tms320dm320/i2c-dm320.c
|
2011-11-16 14:08:01 +00:00
|
|
|
#ifdef HAVE_SOFTWARE_I2C
|
|
|
|
drivers/generic_i2c.c
|
|
|
|
#endif
|
2008-04-24 20:08:28 +00:00
|
|
|
target/arm/tms320dm320/kernel-dm320.c
|
|
|
|
target/arm/tms320dm320/spi-dm320.c
|
|
|
|
target/arm/tms320dm320/system-dm320.c
|
|
|
|
target/arm/tms320dm320/timer-dm320.c
|
|
|
|
target/arm/tms320dm320/uart-dm320.c
|
|
|
|
#endif /* CONFIG_CPU == DM320 */
|
|
|
|
|
2007-09-20 04:46:41 +00:00
|
|
|
#ifdef MROBE_500
|
2011-02-06 20:17:15 +00:00
|
|
|
target/arm/tms320dm320/mrobe-500/crt0-board.S
|
2007-09-30 08:57:49 +00:00
|
|
|
target/arm/tms320dm320/mrobe-500/adc-mr500.c
|
|
|
|
target/arm/tms320dm320/mrobe-500/ata-mr500.c
|
|
|
|
target/arm/tms320dm320/mrobe-500/backlight-mr500.c
|
|
|
|
target/arm/tms320dm320/mrobe-500/button-mr500.c
|
2007-09-30 16:29:21 +00:00
|
|
|
target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
|
2007-09-30 08:57:49 +00:00
|
|
|
target/arm/tms320dm320/mrobe-500/lcd-mr500.c
|
2007-10-21 23:12:17 +00:00
|
|
|
#if defined(HAVE_REMOTE_LCD)
|
|
|
|
target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
|
|
|
|
#endif
|
2007-09-30 16:29:21 +00:00
|
|
|
target/arm/tms320dm320/mrobe-500/pcm-mr500.c
|
|
|
|
target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
|
2007-09-30 08:57:49 +00:00
|
|
|
target/arm/tms320dm320/mrobe-500/power-mr500.c
|
|
|
|
target/arm/tms320dm320/mrobe-500/usb-mr500.c
|
2007-09-20 04:46:41 +00:00
|
|
|
#endif /* MROBE_500 */
|
|
|
|
|
2008-05-14 18:55:19 +00:00
|
|
|
#ifdef CREATIVE_ZVx
|
2011-12-16 23:40:39 +00:00
|
|
|
drivers/lcd-memframe.c
|
2008-04-24 20:08:28 +00:00
|
|
|
target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
|
|
|
|
target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
|
2008-05-05 15:47:26 +00:00
|
|
|
target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
|
|
|
|
target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
|
2008-04-24 20:08:28 +00:00
|
|
|
target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
|
|
|
|
target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
|
|
|
|
target/arm/tms320dm320/creative-zvm/power-creativezvm.c
|
|
|
|
target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
|
|
|
|
target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
|
2008-05-14 18:55:19 +00:00
|
|
|
#endif /* CREATIVE_ZVx */
|
2008-04-24 20:08:28 +00:00
|
|
|
|
2013-11-18 20:07:02 +00:00
|
|
|
#if defined(CREATIVE_ZEN) || defined(CREATIVE_ZENXFI) || defined(CREATIVE_ZENMOZAIC) \
|
2014-01-05 14:20:41 +00:00
|
|
|
|| defined(CREATIVE_ZENV) || defined(CREATIVE_ZENXFISTYLE)
|
|
|
|
#ifndef BOOTLOADER
|
2013-11-19 20:39:10 +00:00
|
|
|
target/arm/imx233/fmradio-imx233.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#endif
|
2013-10-21 22:30:43 +00:00
|
|
|
target/arm/imx233/creative-zen/backlight-zen.c
|
2013-11-18 15:08:53 +00:00
|
|
|
# if defined(CREATIVE_ZEN) || defined(CREATIVE_ZENXFI)
|
2013-10-21 22:30:43 +00:00
|
|
|
target/arm/imx233/creative-zen/lcd-zen.c
|
2013-11-18 15:08:53 +00:00
|
|
|
# elif defined(CREATIVE_ZENMOZAIC)
|
|
|
|
target/arm/imx233/creative-zen/lcd-zenmozaic.c
|
2013-11-18 20:07:02 +00:00
|
|
|
# elif defined(CREATIVE_ZENV)
|
|
|
|
target/arm/imx233/creative-zen/lcd-zenv.c
|
2014-01-05 14:20:41 +00:00
|
|
|
# elif defined(CREATIVE_ZENXFISTYLE)
|
|
|
|
target/arm/imx233/creative-zen/lcd-zenxfistyle.c
|
2013-11-18 15:08:53 +00:00
|
|
|
#endif
|
2013-10-21 22:30:43 +00:00
|
|
|
target/arm/imx233/creative-zen/button-zen.c
|
|
|
|
target/arm/imx233/creative-zen/debug-zen.c
|
|
|
|
target/arm/imx233/creative-zen/power-zen.c
|
|
|
|
target/arm/imx233/creative-zen/powermgmt-zen.c
|
|
|
|
#endif
|
|
|
|
|
2012-05-19 14:09:46 +00:00
|
|
|
#ifdef CREATIVE_ZENXFI2
|
2013-12-02 19:09:56 +00:00
|
|
|
#ifndef BOOTLOADER
|
2013-11-19 20:39:10 +00:00
|
|
|
target/arm/imx233/fmradio-imx233.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#endif
|
2012-05-19 14:09:46 +00:00
|
|
|
target/arm/imx233/creative-zenxfi2/backlight-zenxfi2.c
|
|
|
|
target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c
|
|
|
|
target/arm/imx233/creative-zenxfi2/button-zenxfi2.c
|
|
|
|
target/arm/imx233/creative-zenxfi2/debug-zenxfi2.c
|
|
|
|
target/arm/imx233/creative-zenxfi2/powermgmt-zenxfi2.c
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CREATIVE_ZENXFI3
|
|
|
|
drivers/mpr121.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#ifndef BOOTLOADER
|
2013-11-19 20:39:10 +00:00
|
|
|
target/arm/imx233/fmradio-imx233.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#endif
|
2012-05-19 14:09:46 +00:00
|
|
|
target/arm/imx233/creative-zenxfi3/backlight-zenxfi3.c
|
|
|
|
target/arm/imx233/creative-zenxfi3/lcd-zenxfi3.c
|
|
|
|
target/arm/imx233/creative-zenxfi3/button-zenxfi3.c
|
|
|
|
target/arm/imx233/creative-zenxfi3/debug-zenxfi3.c
|
|
|
|
target/arm/imx233/creative-zenxfi3/powermgmt-zenxfi3.c
|
|
|
|
#endif
|
|
|
|
|
2013-09-25 12:29:00 +00:00
|
|
|
#if defined(SONY_NWZE360) || defined(SONY_NWZE370)
|
2013-12-02 19:09:56 +00:00
|
|
|
#ifndef BOOTLOADER
|
2013-11-19 20:39:10 +00:00
|
|
|
target/arm/imx233/fmradio-imx233.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#endif
|
2013-09-25 12:29:00 +00:00
|
|
|
target/arm/imx233/sony-nwz/backlight-nwz.c
|
|
|
|
target/arm/imx233/sony-nwz/button-nwz.c
|
|
|
|
target/arm/imx233/sony-nwz/debug-nwz.c
|
|
|
|
# if defined(SONY_NWZE360)
|
|
|
|
target/arm/imx233/sony-nwz/lcd-nwze360.c
|
|
|
|
target/arm/imx233/sony-nwz/powermgmt-nwze360.c
|
|
|
|
# elif defined(SONY_NWZE370)
|
|
|
|
target/arm/imx233/sony-nwz/lcd-nwze370.c
|
|
|
|
target/arm/imx233/sony-nwz/powermgmt-nwze370.c
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-11-16 14:08:01 +00:00
|
|
|
#ifdef SANSA_CONNECT
|
2011-12-16 23:40:39 +00:00
|
|
|
drivers/lcd-memframe.c
|
2011-11-16 14:08:01 +00:00
|
|
|
target/arm/tms320dm320/sdmmc-dm320.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/crt0-board.S
|
|
|
|
target/arm/tms320dm320/sansa-connect/lcd-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/adc-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/power-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/powermgmt-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/usb-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/avr-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/backlight-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/sansa-connect/pcm-sansaconnect.c
|
|
|
|
target/arm/tms320dm320/dma-dm320.c
|
|
|
|
#endif /* SANSA_CONNECT */
|
|
|
|
|
2008-01-09 07:24:43 +00:00
|
|
|
#ifdef MROBE_100
|
2008-12-17 04:38:53 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
drivers/synaptics-mep.c
|
2009-07-26 14:26:14 +00:00
|
|
|
target/arm/olympus/mrobe-100/lcd-remote-mr100.c
|
2008-12-17 04:38:53 +00:00
|
|
|
#endif /* BOOTLOADER */
|
2008-02-03 18:15:39 +00:00
|
|
|
drivers/sw_i2c.c
|
2008-01-09 07:24:43 +00:00
|
|
|
target/arm/olympus/mrobe-100/backlight-mr100.c
|
|
|
|
target/arm/olympus/mrobe-100/button-mr100.c
|
|
|
|
target/arm/olympus/mrobe-100/lcd-mr100.c
|
2008-04-07 21:14:29 +00:00
|
|
|
target/arm/olympus/mrobe-100/lcd-as-mr100.S
|
2008-01-09 07:24:43 +00:00
|
|
|
target/arm/olympus/mrobe-100/power-mr100.c
|
|
|
|
target/arm/olympus/mrobe-100/powermgmt-mr100.c
|
|
|
|
#endif /* MROBE_100 */
|
|
|
|
|
2009-12-07 16:12:49 +00:00
|
|
|
#ifdef TATUNG_TPJ1022
|
2006-08-31 19:19:35 +00:00
|
|
|
target/arm/tatung/tpj1022/backlight-tpj1022.c
|
|
|
|
target/arm/tatung/tpj1022/button-tpj1022.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/tatung/tpj1022/lcd-tpj1022.c
|
2006-08-31 19:19:35 +00:00
|
|
|
target/arm/tatung/tpj1022/power-tpj1022.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/tatung/tpj1022/powermgmt-tpj1022.c
|
2009-12-07 16:12:49 +00:00
|
|
|
#endif /* TATUNG_TPJ1022 */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_4G
|
|
|
|
target/arm/ipod/backlight-4g_color.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_4G */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_COLOR
|
|
|
|
target/arm/ipod/backlight-4g_color.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2010-12-29 23:21:37 +00:00
|
|
|
target/arm/ipod/lcd-as-color-nano.S
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_COLOR */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_NANO
|
|
|
|
target/arm/ipod/backlight-nano_video.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2010-12-29 23:21:37 +00:00
|
|
|
target/arm/ipod/lcd-as-color-nano.S
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_NANO */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_VIDEO
|
|
|
|
target/arm/ipod/backlight-nano_video.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2007-10-22 00:37:50 +00:00
|
|
|
target/arm/ipod/video/lcd-as-video.S
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/video/lcd-video.c
|
2011-07-19 20:55:59 +00:00
|
|
|
#ifndef BOOTLOADER
|
2011-07-19 20:48:16 +00:00
|
|
|
target/arm/ipod/video/battery-video.c
|
2011-07-19 20:55:59 +00:00
|
|
|
#endif /* BOOTLOADER */
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_VIDEO */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_3G
|
|
|
|
target/arm/ipod/3g/backlight-3g.c
|
2007-07-27 12:05:54 +00:00
|
|
|
target/arm/ipod/button-1g-3g.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_3G */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
2007-07-26 23:02:37 +00:00
|
|
|
#ifdef IPOD_1G2G
|
2007-07-27 12:05:54 +00:00
|
|
|
target/arm/ipod/1g2g/backlight-1g2g.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/1g2g/powermgmt-1g2g.c
|
2007-07-27 12:05:54 +00:00
|
|
|
target/arm/ipod/button-1g-3g.c
|
2007-07-26 23:02:37 +00:00
|
|
|
#endif /* IPOD_1G2G */
|
|
|
|
|
2011-12-16 00:03:32 +00:00
|
|
|
#if defined(IPOD_MINI) || defined(IPOD_MINI2G)
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-mini1g_mini2g.c
|
2011-12-16 00:03:32 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef IPOD_MINI
|
|
|
|
target/arm/ipod/button-mini1g.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_MINI */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_MINI2G
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* IPOD_MINI2G */
|
2006-11-09 22:58:35 +00:00
|
|
|
|
|
|
|
#ifdef IRIVER_IFP7XX
|
2007-04-19 10:14:55 +00:00
|
|
|
target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
|
|
|
|
target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
|
|
|
|
target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
|
|
|
|
target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
|
2007-08-14 22:23:15 +00:00
|
|
|
target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
|
2007-09-22 06:04:14 +00:00
|
|
|
target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c
|
2007-09-11 15:34:54 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/pnx0101/pcm-pnx0101.c
|
2007-10-06 22:27:27 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* IRIVER_IFP7XX */
|
2007-09-11 15:34:54 +00:00
|
|
|
|
2007-10-28 11:08:10 +00:00
|
|
|
#ifdef LOGIK_DAX
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2007-11-01 23:38:57 +00:00
|
|
|
target/arm/tcc77x/logikdax/button-logikdax.c
|
2007-10-28 11:08:10 +00:00
|
|
|
target/arm/tcc77x/logikdax/power-logikdax.c
|
2008-05-02 19:12:09 +00:00
|
|
|
#ifndef BOOTLOADER
|
2008-09-22 19:15:18 +00:00
|
|
|
target/arm/tcc77x/logikdax/audio-logikdax.c
|
2008-05-02 19:12:09 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* LOGIK_DAX */
|
|
|
|
|
|
|
|
#ifdef SANSA_M200
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2008-05-02 19:12:09 +00:00
|
|
|
target/arm/tcc77x/m200/button-m200.c
|
|
|
|
target/arm/tcc77x/m200/power-m200.c
|
|
|
|
#ifndef BOOTLOADER
|
2008-09-22 19:15:18 +00:00
|
|
|
target/arm/tcc77x/m200/audio-m200.c
|
2008-05-02 19:12:09 +00:00
|
|
|
#endif /* BOOTLOADER */
|
2008-06-21 15:18:36 +00:00
|
|
|
#endif /* SANSA_M200 */
|
|
|
|
|
|
|
|
#ifdef SANSA_C100
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2009-06-01 12:37:25 +00:00
|
|
|
target/arm/tcc77x/c100/lcd-S6B33B2.c
|
2008-06-21 15:18:36 +00:00
|
|
|
target/arm/tcc77x/c100/button-c100.c
|
|
|
|
target/arm/tcc77x/c100/power-c100.c
|
|
|
|
#ifndef BOOTLOADER
|
2009-06-01 12:37:25 +00:00
|
|
|
target/arm/tcc77x/c100/audio-c100.c
|
2008-06-21 15:18:36 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SANSA_C100 */
|
2007-10-28 11:08:10 +00:00
|
|
|
|
2010-02-05 12:40:25 +00:00
|
|
|
#ifdef SANSA_CLIPPLUS
|
2010-03-19 15:13:29 +00:00
|
|
|
target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
|
2010-02-05 12:40:25 +00:00
|
|
|
target/arm/as3525/sansa-clipplus/button-clip.c
|
|
|
|
target/arm/as3525/sansa-clipplus/backlight-clip.c
|
|
|
|
#ifndef BOOTLOADER
|
2010-05-21 12:48:15 +00:00
|
|
|
target/arm/as3525/sansa-clipplus/powermgmt-clipplus.c
|
2010-04-05 12:17:11 +00:00
|
|
|
target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
|
2010-02-05 12:40:25 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2010-02-24 17:06:39 +00:00
|
|
|
#endif /* SANSA_CLIPPLUS */
|
2010-02-05 12:40:25 +00:00
|
|
|
|
2009-12-31 19:15:20 +00:00
|
|
|
#ifdef SANSA_CLIPV2
|
2010-03-19 15:13:29 +00:00
|
|
|
target/arm/as3525/sansa-clipv2/lcd-clipv2.c
|
2011-12-13 23:12:21 +00:00
|
|
|
target/arm/as3525/button-clip.c
|
2010-03-29 12:43:50 +00:00
|
|
|
target/arm/as3525/sansa-clipv2/backlight-clipv2.c
|
2009-12-31 19:15:20 +00:00
|
|
|
#ifndef BOOTLOADER
|
2010-05-08 14:53:41 +00:00
|
|
|
target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
|
2010-04-05 12:17:11 +00:00
|
|
|
target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
|
2009-12-31 19:15:20 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
|
|
|
#endif /* SANSA_CLIPV2 */
|
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
#ifdef SANSA_CLIP
|
2010-03-19 15:13:29 +00:00
|
|
|
target/arm/as3525/sansa-clip/lcd-clip.c
|
2011-12-13 23:12:21 +00:00
|
|
|
target/arm/as3525/button-clip.c
|
2008-12-02 19:50:31 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/as3525/sansa-clip/powermgmt-clip.c
|
2010-04-05 12:17:11 +00:00
|
|
|
target/arm/as3525/sansa-clip/lcd-as-clip.S
|
2008-12-02 19:50:31 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2008-10-19 14:11:01 +00:00
|
|
|
#endif /* SANSA_CLIP */
|
|
|
|
|
|
|
|
#ifdef SANSA_E200V2
|
|
|
|
target/arm/as3525/sansa-e200v2/lcd-e200v2.c
|
2009-06-22 22:41:21 +00:00
|
|
|
target/arm/as3525/button-e200v2-fuze.c
|
2008-11-01 22:05:35 +00:00
|
|
|
target/arm/as3525/backlight-e200v2-fuze.c
|
2010-01-06 23:41:36 +00:00
|
|
|
target/arm/as3525/dbop-as3525.c
|
2008-12-02 19:50:31 +00:00
|
|
|
#ifndef BOOTLOADER
|
2009-03-22 19:06:54 +00:00
|
|
|
target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
|
2010-04-05 12:17:11 +00:00
|
|
|
target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
|
2008-12-02 19:50:31 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2008-10-19 14:11:01 +00:00
|
|
|
#endif /* SANSA_E200V2 */
|
|
|
|
|
2008-12-24 04:10:18 +00:00
|
|
|
#ifdef SANSA_C200V2
|
|
|
|
target/arm/as3525/sansa-c200v2/button-c200v2.c
|
|
|
|
target/arm/as3525/sansa-c200v2/backlight-c200v2.c
|
2010-01-06 23:41:36 +00:00
|
|
|
target/arm/as3525/dbop-as3525.c
|
2008-12-24 04:10:18 +00:00
|
|
|
#ifndef BOOTLOADER
|
2010-01-17 14:19:31 +00:00
|
|
|
target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
|
2008-12-24 04:10:18 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
|
|
|
#endif /* SANSA_E200V2 */
|
|
|
|
|
2008-11-10 09:27:40 +00:00
|
|
|
#ifdef SANSA_M200V4
|
|
|
|
target/arm/as3525/sansa-m200v4/button-m200v4.c
|
2008-12-02 19:50:31 +00:00
|
|
|
#ifndef BOOTLOADER
|
2008-12-13 15:57:41 +00:00
|
|
|
target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
|
2008-12-02 19:50:31 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2008-11-10 09:27:40 +00:00
|
|
|
#endif /* SANSA_M200V4 */
|
2008-10-19 14:11:01 +00:00
|
|
|
|
2008-11-01 10:29:23 +00:00
|
|
|
#ifdef SANSA_FUZE
|
2009-06-22 22:41:21 +00:00
|
|
|
target/arm/as3525/button-e200v2-fuze.c
|
2010-05-27 23:32:38 +00:00
|
|
|
target/arm/as3525/sansa-fuze/lcd-fuzev1.c
|
2008-11-01 22:05:35 +00:00
|
|
|
target/arm/as3525/backlight-e200v2-fuze.c
|
2010-01-06 23:41:36 +00:00
|
|
|
target/arm/as3525/dbop-as3525.c
|
2008-12-02 19:50:31 +00:00
|
|
|
#ifndef BOOTLOADER
|
2009-06-20 14:29:21 +00:00
|
|
|
target/arm/as3525/sansa-fuze/powermgmt-fuze.c
|
2010-04-05 12:17:11 +00:00
|
|
|
target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
|
2008-12-02 19:50:31 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
2008-11-01 10:29:23 +00:00
|
|
|
#endif /* SANSA_FUZE */
|
|
|
|
|
2010-02-25 13:26:46 +00:00
|
|
|
#ifdef SANSA_FUZEV2
|
|
|
|
target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
|
2010-03-16 22:38:57 +00:00
|
|
|
target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
|
|
|
|
target/arm/as3525/sansa-fuzev2/button-fuzev2.c
|
2010-04-05 12:01:44 +00:00
|
|
|
target/arm/as3525/dbop-as3525.c
|
2010-02-25 13:26:46 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
|
2010-04-05 12:17:11 +00:00
|
|
|
target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
|
2010-02-25 13:26:46 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
|
|
|
#endif /* SANSA_FUZEV2 */
|
|
|
|
|
2011-05-01 13:02:46 +00:00
|
|
|
#ifdef SANSA_FUZEPLUS
|
2011-05-11 22:38:09 +00:00
|
|
|
drivers/synaptics-rmi.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#ifndef BOOTLOADER
|
2011-07-09 17:14:05 +00:00
|
|
|
drivers/generic_i2c.c
|
2013-11-19 20:39:10 +00:00
|
|
|
target/arm/imx233/fmradio-imx233.c
|
2013-12-02 19:09:56 +00:00
|
|
|
#endif
|
2011-07-09 17:14:05 +00:00
|
|
|
target/arm/imx233/sansa-fuzeplus/fmradio-i2c-fuzeplus.c
|
2011-05-01 13:02:46 +00:00
|
|
|
target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
|
|
|
|
target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
|
|
|
|
target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c
|
2011-07-23 11:45:22 +00:00
|
|
|
target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
|
2012-03-15 13:58:15 +00:00
|
|
|
target/arm/imx233/sansa-fuzeplus/powermgmt-fuzeplus.c
|
2011-05-01 13:02:46 +00:00
|
|
|
#endif
|
|
|
|
|
2013-11-15 21:05:40 +00:00
|
|
|
#ifdef SAMSUNG_YPZ5
|
|
|
|
target/arm/imx233/samsung-ypz5/backlight-ypz5.c
|
|
|
|
target/arm/imx233/samsung-ypz5/lcd-ypz5.c
|
|
|
|
target/arm/imx233/samsung-ypz5/button-ypz5.c
|
|
|
|
target/arm/imx233/samsung-ypz5/debug-ypz5.c
|
|
|
|
target/arm/imx233/samsung-ypz5/powermgmt-ypz5.c
|
|
|
|
target/arm/imx233/button-lradc-imx233.c
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/imx233/fmradio-imx233.c
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-08-27 16:21:19 +00:00
|
|
|
#ifdef SANSA_CLIPZIP
|
|
|
|
target/arm/as3525/sansa-clipzip/lcd-clipzip.c
|
|
|
|
target/arm/as3525/sansa-clipzip/button-clipzip.c
|
|
|
|
target/arm/as3525/sansa-clipzip/backlight-clipzip.c
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/as3525/sansa-clipzip/powermgmt-clipzip.c
|
|
|
|
#endif /* !BOOTLOADER */
|
|
|
|
#endif /* SANSA_CLIPZIP */
|
|
|
|
|
2007-10-28 11:08:10 +00:00
|
|
|
#ifdef IAUDIO_7
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2011-12-15 18:29:28 +00:00
|
|
|
drivers/pcf50606.c
|
2007-10-28 11:08:10 +00:00
|
|
|
target/arm/tcc77x/iaudio7/lcd-iaudio7.c
|
|
|
|
target/arm/tcc77x/iaudio7/power-iaudio7.c
|
2008-12-21 19:16:54 +00:00
|
|
|
target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
|
2008-09-06 17:50:59 +00:00
|
|
|
target/arm/tcc77x/iaudio7/button-iaudio7.c
|
|
|
|
target/arm/tcc77x/iaudio7/ata2501.c
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/tcc77x/iaudio7/audio-iaudio7.c
|
|
|
|
#endif /* BOOTLOADER */
|
2007-10-28 11:08:10 +00:00
|
|
|
#endif /* IAUDIO_7 */
|
2008-01-14 22:04:48 +00:00
|
|
|
|
|
|
|
#ifdef COWON_D2
|
2011-12-16 23:40:39 +00:00
|
|
|
drivers/lcd-memframe.c
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2008-04-04 20:24:08 +00:00
|
|
|
drivers/pcf50606.c
|
2009-10-10 17:35:02 +00:00
|
|
|
drivers/pcf50635.c
|
2009-10-15 20:13:29 +00:00
|
|
|
drivers/tsc200x.c
|
2008-01-14 22:04:48 +00:00
|
|
|
target/arm/tcc780x/adc-tcc780x.c
|
|
|
|
target/arm/tcc780x/system-tcc780x.c
|
2009-06-24 07:37:11 +00:00
|
|
|
target/arm/tcc780x/kernel-tcc780x.c
|
2009-08-12 19:14:46 +00:00
|
|
|
target/arm/tcc780x/sd-tcc780x.c
|
2008-01-14 22:04:48 +00:00
|
|
|
target/arm/tcc780x/cowond2/button-cowond2.c
|
2009-10-15 20:13:29 +00:00
|
|
|
target/arm/tcc780x/cowond2/touchscreen-cowond2.c
|
2008-01-14 22:04:48 +00:00
|
|
|
target/arm/tcc780x/cowond2/lcd-cowond2.c
|
|
|
|
target/arm/tcc780x/cowond2/power-cowond2.c
|
|
|
|
target/arm/tcc780x/cowond2/powermgmt-cowond2.c
|
2008-04-04 20:55:58 +00:00
|
|
|
target/arm/tcc780x/cowond2/backlight-cowond2.c
|
2008-11-30 15:43:15 +00:00
|
|
|
target/arm/usb-tcc.c
|
2008-01-14 22:04:48 +00:00
|
|
|
#ifndef BOOTLOADER
|
2008-03-23 19:56:11 +00:00
|
|
|
target/arm/tcc780x/timer-tcc780x.c
|
2008-01-14 22:04:48 +00:00
|
|
|
target/arm/wmcodec-telechips.c
|
|
|
|
target/arm/tcc780x/debug-tcc780x.c
|
2008-09-06 17:50:59 +00:00
|
|
|
target/arm/pcm-telechips.c
|
2008-06-22 18:48:22 +00:00
|
|
|
target/arm/tcc780x/cowond2/audio-cowond2.c
|
2008-01-14 22:04:48 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* COWON_D2 */
|
2008-06-27 23:24:34 +00:00
|
|
|
|
2008-09-17 23:22:11 +00:00
|
|
|
#ifdef MEIZU_M6SL
|
2008-06-27 23:24:34 +00:00
|
|
|
target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
|
2008-09-11 18:18:40 +00:00
|
|
|
drivers/qt1106.c
|
2008-06-27 23:24:34 +00:00
|
|
|
#endif /* MEIZU_M6SL */
|
2008-07-14 15:03:10 +00:00
|
|
|
|
2008-09-17 23:22:11 +00:00
|
|
|
#ifdef MEIZU_M6SP
|
2010-01-14 20:16:03 +00:00
|
|
|
target/arm/s5l8700/backlight-meizu.c
|
|
|
|
target/arm/s5l8700/power-meizu.c
|
|
|
|
target/arm/s5l8700/meizu-m6sp/button-m6sp.c
|
2008-09-17 23:22:11 +00:00
|
|
|
target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
|
|
|
|
#ifndef BOOTLOADER
|
2010-01-14 20:16:03 +00:00
|
|
|
drivers/generic_i2c.c
|
|
|
|
drivers/rtc/rtc_s35390a.c
|
|
|
|
target/arm/s5l8700/audio-meizu.c
|
|
|
|
target/arm/s5l8700/ftl-meizu.c
|
|
|
|
target/arm/s5l8700/nand-meizu.c
|
|
|
|
target/arm/s5l8700/fmradio-i2c-meizu.c
|
|
|
|
target/arm/s5l8700/powermgmt-meizu.c
|
|
|
|
target/arm/s5l8700/usb-s5l8700.c
|
2008-09-17 23:22:11 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* MEIZU_M6SP */
|
|
|
|
|
|
|
|
#ifdef MEIZU_M3
|
2009-06-23 18:11:03 +00:00
|
|
|
target/arm/s5l8700/backlight-meizu.c
|
2008-09-17 23:22:11 +00:00
|
|
|
target/arm/s5l8700/meizu-m3/lcd-m3.c
|
|
|
|
drivers/qt1106.c
|
|
|
|
#ifndef BOOTLOADER
|
2009-06-28 17:43:04 +00:00
|
|
|
target/arm/s5l8700/udacodec-meizu.c
|
2008-09-17 23:22:11 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* MEIZU_M3 */
|
|
|
|
|
2009-07-12 22:16:51 +00:00
|
|
|
#ifdef IPOD_NANO2G
|
2009-10-02 23:04:30 +00:00
|
|
|
target/arm/ipod/button-clickwheel.c
|
2010-11-13 12:05:53 +00:00
|
|
|
target/arm/s5l8700/postmortemstub.S
|
2009-07-17 22:40:36 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
|
2009-07-12 22:16:51 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
|
2010-12-12 15:23:20 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/lcd-asm-nano2g.S
|
2009-10-02 23:45:53 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
|
|
|
|
target/arm/s5l8700/ipodnano2g/power-nano2g.c
|
2009-10-04 15:02:40 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
|
|
|
|
target/arm/s5l8700/ipodnano2g/nand-nano2g.c
|
2009-10-05 20:21:33 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
|
|
|
|
target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
|
2011-12-31 15:44:32 +00:00
|
|
|
target/arm/s5l8700/usb-nano2g-6g.c
|
2010-03-11 13:51:24 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/s5l8700/ipodnano2g/audio-nano2g.c
|
2011-11-16 10:25:43 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/piezo-nano2g.c
|
2010-03-11 13:51:24 +00:00
|
|
|
#endif
|
2009-07-12 22:16:51 +00:00
|
|
|
#endif
|
|
|
|
|
2011-01-02 23:16:27 +00:00
|
|
|
#ifdef IPOD_6G
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2011-02-27 22:47:55 +00:00
|
|
|
target/arm/s5l8702/ipod6g/storage_ata-ipod6g.c
|
2011-01-02 23:16:27 +00:00
|
|
|
target/arm/s5l8702/ipod6g/cscodec-ipod6g.c
|
|
|
|
target/arm/s5l8702/ipod6g/backlight-ipod6g.c
|
|
|
|
target/arm/s5l8702/ipod6g/powermgmt-ipod6g.c
|
|
|
|
target/arm/s5l8702/ipod6g/power-ipod6g.c
|
|
|
|
target/arm/s5l8702/kernel-s5l8702.c
|
|
|
|
target/arm/s5l8702/system-s5l8702.c
|
|
|
|
target/arm/s5l8702/ipod6g/lcd-ipod6g.c
|
|
|
|
target/arm/s5l8702/ipod6g/lcd-asm-ipod6g.S
|
|
|
|
#if 0 //TODO
|
|
|
|
target/arm/s5l8702/postmortemstub.S
|
|
|
|
#endif
|
|
|
|
target/arm/s5l8702/ipod6g/pmu-ipod6g.c
|
|
|
|
target/arm/s5l8702/ipod6g/rtc-ipod6g.c
|
2011-12-31 15:44:32 +00:00
|
|
|
target/arm/s5l8700/usb-nano2g-6g.c
|
2011-01-02 23:16:27 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/s5l8702/timer-s5l8702.c
|
|
|
|
target/arm/s5l8702/debug-s5l8702.c
|
|
|
|
target/arm/s5l8702/pcm-s5l8702.c
|
|
|
|
target/arm/s5l8702/ipod6g/audio-ipod6g.c
|
|
|
|
target/arm/s5l8702/ipod6g/adc-ipod6g.c
|
2012-02-11 22:41:54 +00:00
|
|
|
target/arm/s5l8702/ipod6g/piezo-ipod6g.c
|
2011-01-02 23:16:27 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2011-05-30 21:10:37 +00:00
|
|
|
#if CONFIG_CPU == RK27XX
|
2013-03-31 19:57:53 +00:00
|
|
|
target/arm/rk27xx/audio-rk27xx.c
|
2011-05-30 21:10:37 +00:00
|
|
|
target/arm/rk27xx/kernel-rk27xx.c
|
|
|
|
target/arm/rk27xx/system-rk27xx.c
|
|
|
|
target/arm/rk27xx/backlight-rk27xx.c
|
|
|
|
target/arm/rk27xx/adc-rk27xx.c
|
|
|
|
target/arm/rk27xx/sd-rk27xx.c
|
|
|
|
target/arm/rk27xx/ftl-rk27xx.c
|
2011-09-06 12:39:37 +00:00
|
|
|
target/arm/rk27xx/nand-rk27xx.c
|
|
|
|
target/arm/rk27xx/usb-rk27xx.c
|
2011-10-17 10:32:19 +00:00
|
|
|
target/arm/rk27xx/lcdif-rk27xx.c
|
2012-03-02 15:29:42 +00:00
|
|
|
target/arm/rk27xx/rkw-loader.c
|
2011-09-06 12:39:37 +00:00
|
|
|
#ifndef BOOTLOADER
|
2012-03-02 15:28:33 +00:00
|
|
|
target/arm/rk27xx/timer-rk27xx.c
|
|
|
|
target/arm/rk27xx/rolo_restart.S
|
2011-09-06 12:39:37 +00:00
|
|
|
target/arm/rk27xx/pcm-rk27xx.c
|
|
|
|
target/arm/rk27xx/debug-rk27xx.c
|
|
|
|
#endif
|
2011-05-30 21:10:37 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RK27_GENERIC)
|
|
|
|
target/arm/rk27xx/rk27generic/button-rk27generic.c
|
2011-09-06 12:39:37 +00:00
|
|
|
target/arm/rk27xx/rk27generic/powermgmt-rk27generic.c
|
|
|
|
target/arm/rk27xx/rk27generic/power-rk27generic.c
|
2011-10-17 10:32:19 +00:00
|
|
|
target/arm/rk27xx/rk27generic/lcd-rk27generic.c
|
2013-03-31 19:57:53 +00:00
|
|
|
target/arm/rk27xx/rk27generic/fmradio-i2c-rk27generic.c
|
2011-05-30 21:10:37 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-11 22:12:23 +00:00
|
|
|
#if CONFIG_CPU == JZ4732
|
2008-07-15 17:17:01 +00:00
|
|
|
target/mips/ingenic_jz47xx/ata-nand-jz4740.c
|
2008-11-05 00:24:46 +00:00
|
|
|
target/mips/ingenic_jz47xx/ata-sd-jz4740.c
|
2009-02-09 10:02:38 +00:00
|
|
|
target/mips/ingenic_jz47xx/debug-jz4740.c
|
2009-06-01 21:00:31 +00:00
|
|
|
target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
|
2008-08-09 23:31:38 +00:00
|
|
|
target/mips/ingenic_jz47xx/kernel-jz4740.c
|
2009-01-27 00:38:58 +00:00
|
|
|
target/mips/ingenic_jz47xx/i2c-jz4740.c
|
2008-11-05 00:24:46 +00:00
|
|
|
target/mips/ingenic_jz47xx/lcd-jz4740.c
|
2008-07-14 15:03:10 +00:00
|
|
|
target/mips/ingenic_jz47xx/system-jz4740.c
|
2008-08-26 21:48:49 +00:00
|
|
|
target/mips/ingenic_jz47xx/usb-jz4740.c
|
2009-03-20 23:15:38 +00:00
|
|
|
target/mips/ingenic_jz47xx/timer-jz4740.c
|
2009-03-01 16:52:57 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/mips/ingenic_jz47xx/codec-jz4740.c
|
|
|
|
target/mips/ingenic_jz47xx/pcm-jz4740.c
|
2009-03-11 22:12:23 +00:00
|
|
|
#endif /* BOOTLOADER */
|
2008-07-15 17:17:01 +00:00
|
|
|
drivers/nand_id.c
|
2009-03-11 22:12:23 +00:00
|
|
|
#endif /* CONFIG_CPU == JZ4732 */
|
2008-07-14 15:03:10 +00:00
|
|
|
|
2009-06-20 10:54:13 +00:00
|
|
|
#if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
|
2009-03-09 21:26:39 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
|
2008-07-14 15:03:10 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
|
2009-01-27 00:38:58 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
|
2009-03-11 22:12:23 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
|
2009-03-09 21:26:39 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
|
2009-06-20 10:54:13 +00:00
|
|
|
#endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
|
2008-09-05 15:09:40 +00:00
|
|
|
|
2009-03-11 22:12:23 +00:00
|
|
|
#ifdef ONDA_VX767
|
2009-03-09 21:26:39 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
|
|
|
|
target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
|
|
|
|
target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
|
2009-03-11 22:12:23 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
|
2009-03-09 21:26:39 +00:00
|
|
|
target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
|
2009-03-11 22:12:23 +00:00
|
|
|
#endif /* ONDA_VX767 */
|
2009-03-30 12:20:47 +00:00
|
|
|
|
|
|
|
#if defined(LYRE_PROTO1)
|
|
|
|
target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/crt0.S
|
|
|
|
target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
|
|
|
|
target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
|
|
|
|
#endif
|
2009-05-25 21:10:45 +00:00
|
|
|
|
2009-10-19 18:14:27 +00:00
|
|
|
#if defined(MINI2440)
|
2011-12-15 23:07:11 +00:00
|
|
|
drivers/lcd-memframe.c
|
2009-10-22 17:45:02 +00:00
|
|
|
target/arm/s3c2440/dma-s3c2440.c
|
|
|
|
target/arm/s3c2440/sd-s3c2440.c
|
|
|
|
target/arm/s3c2440/uart-s3c2440.c
|
2009-10-19 18:14:27 +00:00
|
|
|
target/arm/s3c2440/mini2440/backlight-mini2440.c
|
|
|
|
target/arm/s3c2440/mini2440/button-mini2440.c
|
|
|
|
target/arm/s3c2440/mini2440/led-mini2440.c
|
|
|
|
target/arm/s3c2440/mini2440/power-mini2440.c
|
2009-10-27 20:25:40 +00:00
|
|
|
target/arm/s3c2440/mini2440/touchscreen-mini2440.c
|
2009-10-19 18:14:27 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/s3c2440/mini2440/powermgmt-mini2440.c
|
2009-10-26 18:16:58 +00:00
|
|
|
target/arm/s3c2440/mini2440/pcm-mini2440.c
|
2009-10-19 18:14:27 +00:00
|
|
|
#endif
|
|
|
|
#endif /* MINI2440 */
|
|
|
|
|
2011-12-15 21:56:52 +00:00
|
|
|
#if defined(SAMSUNG_YH820) || defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)
|
2009-05-25 21:10:45 +00:00
|
|
|
target/arm/samsung/akcodec-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/button-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/power-yh82x_yh92x.c
|
2011-12-15 21:56:52 +00:00
|
|
|
#endif /* SAMSUNG_YH820 || SAMSUNG_YH920 || SAMSUNG_YH925 */
|
|
|
|
|
|
|
|
#ifdef SAMSUNG_YH820
|
2009-05-25 21:10:45 +00:00
|
|
|
target/arm/samsung/yh820/backlight-yh820.c
|
|
|
|
target/arm/samsung/yh820/lcd-yh820.c
|
|
|
|
target/arm/samsung/yh820/lcd-as-yh820.S
|
|
|
|
target/arm/samsung/yh820/powermgmt-yh820.c
|
|
|
|
#endif /* SAMSUNG_YH820 */
|
|
|
|
|
|
|
|
#ifdef SAMSUNG_YH920
|
|
|
|
target/arm/samsung/yh920/backlight-yh920.c
|
|
|
|
target/arm/samsung/yh920/lcd-yh920.c
|
2009-10-02 17:51:05 +00:00
|
|
|
target/arm/samsung/yh920/lcd-as-yh920.S
|
2009-05-25 21:10:45 +00:00
|
|
|
target/arm/samsung/yh920/powermgmt-yh920.c
|
2014-06-17 23:13:15 +00:00
|
|
|
target/arm/samsung/fmradio-yh92x.c
|
2009-05-25 21:10:45 +00:00
|
|
|
#endif /* SAMSUNG_YH920 */
|
|
|
|
|
|
|
|
#ifdef SAMSUNG_YH925
|
|
|
|
target/arm/samsung/yh925/backlight-yh925.c
|
|
|
|
target/arm/samsung/yh925/lcd-yh925.c
|
|
|
|
target/arm/samsung/yh925/lcd-as-yh925.S
|
|
|
|
target/arm/samsung/yh925/powermgmt-yh925.c
|
|
|
|
#endif /* SAMSUNG_YH925 */
|
2009-07-29 20:42:02 +00:00
|
|
|
|
|
|
|
#ifdef SAMSUNG_YPS3
|
2009-08-01 14:58:52 +00:00
|
|
|
target/arm/s5l8700/yps3/button-yps3.c
|
2009-07-29 20:42:02 +00:00
|
|
|
target/arm/s5l8700/yps3/lcd-yps3.c
|
|
|
|
target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
|
|
|
|
target/arm/s5l8700/yps3/backlight-yps3.c
|
2009-08-09 16:12:36 +00:00
|
|
|
target/arm/s5l8700/yps3/nand-yps3.c
|
2009-07-29 20:42:02 +00:00
|
|
|
target/arm/s5l8700/yps3/power-yps3.c
|
|
|
|
#endif /* SAMSUNG_YPS3 */
|
|
|
|
|
2010-01-18 19:05:20 +00:00
|
|
|
#ifdef PBELL_VIBE500
|
|
|
|
drivers/synaptics-mep.c
|
|
|
|
target/arm/pbell/vibe500/lcd-vibe500.c
|
|
|
|
target/arm/pbell/vibe500/button-vibe500.c
|
|
|
|
target/arm/pbell/vibe500/power-vibe500.c
|
|
|
|
target/arm/pbell/vibe500/backlight-vibe500.c
|
|
|
|
target/arm/pbell/vibe500/lcd-as-vibe500.S
|
|
|
|
target/arm/pbell/vibe500/powermgmt-vibe500.c
|
|
|
|
#endif
|
|
|
|
|
2011-12-15 20:39:55 +00:00
|
|
|
#if defined(MPIO_HD200) || defined(MPIO_HD300)
|
2011-12-15 20:59:05 +00:00
|
|
|
target/coldfire/wmcodec-coldfire.c
|
2010-11-12 21:52:29 +00:00
|
|
|
target/coldfire/mpio/system-mpio.c
|
|
|
|
target/coldfire/mpio/power-mpio.c
|
|
|
|
target/coldfire/mpio/backlight-mpio.c
|
|
|
|
target/coldfire/mpio/usb-mpio.c
|
|
|
|
target/coldfire/mpio/ata-mpio.c
|
|
|
|
target/coldfire/mpio/adc-mpio.c
|
2010-04-26 21:40:00 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/mpio/audio-mpio.c
|
2010-05-04 11:14:03 +00:00
|
|
|
target/coldfire/mpio/fmradio_i2c-mpio.c
|
2010-04-26 21:40:00 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
|
2011-12-15 20:45:03 +00:00
|
|
|
#ifdef MPIO_HD200
|
2011-12-15 20:39:55 +00:00
|
|
|
target/coldfire/mpio/hd200/button-hd200.c
|
|
|
|
target/coldfire/mpio/hd200/lcd-hd200.c
|
|
|
|
target/coldfire/mpio/hd200/lcd-as-hd200.S
|
|
|
|
target/coldfire/mpio/hd200/powermgmt-hd200.c
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MPIO_HD300
|
2010-11-26 23:28:08 +00:00
|
|
|
target/coldfire/mpio/hd300/button-hd300.c
|
|
|
|
target/coldfire/mpio/hd300/lcd-hd300.c
|
|
|
|
target/coldfire/mpio/hd300/lcd-as-hd300.S
|
|
|
|
target/coldfire/mpio/hd300/powermgmt-hd300.c
|
2011-12-15 17:50:29 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HM60X)
|
|
|
|
target/arm/rk27xx/hm60x/button-hm60x.c
|
|
|
|
target/arm/rk27xx/hm60x/powermgmt-hm60x.c
|
|
|
|
target/arm/rk27xx/hm60x/power-hm60x.c
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HM801)
|
|
|
|
target/arm/rk27xx/hm801/button-hm801.c
|
|
|
|
target/arm/rk27xx/hm801/powermgmt-hm801.c
|
|
|
|
target/arm/rk27xx/hm801/power-hm801.c
|
2010-11-26 23:28:08 +00:00
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
|
2013-06-02 19:03:26 +00:00
|
|
|
#if defined(MA9) || defined(MA9C) || defined(MA8) || defined(MA8C)
|
2013-04-15 05:51:22 +00:00
|
|
|
target/arm/rk27xx/ma/button-ma.c
|
|
|
|
target/arm/rk27xx/ma/powermgmt-ma.c
|
|
|
|
target/arm/rk27xx/ma/power-ma.c
|
|
|
|
drivers/pca9555.c
|
|
|
|
target/arm/rk27xx/ma/pca9555-ma.c
|
|
|
|
target/arm/rk27xx/ma/audio-ma.c
|
|
|
|
#endif
|
|
|
|
|
2013-11-16 14:21:00 +00:00
|
|
|
#if defined(IHIFI760) || defined(IHIFI960)
|
|
|
|
target/arm/rk27xx/ihifi/button-ihifi.c
|
|
|
|
target/arm/rk27xx/ihifi/power-ihifi.c
|
|
|
|
#if defined(IHIFI760)
|
|
|
|
target/arm/rk27xx/ihifi/powermgmt-ihifi760.c
|
|
|
|
#else
|
|
|
|
target/arm/rk27xx/ihifi/powermgmt-ihifi960.c
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2010-08-02 20:34:47 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
|
2012-01-18 07:19:14 +00:00
|
|
|
target/hosted/kernel-unix.c
|
2012-01-19 06:59:28 +00:00
|
|
|
target/hosted/filesystem-unix.c
|
2012-01-20 18:21:20 +00:00
|
|
|
target/hosted/lc-unix.c
|
2010-08-02 20:34:47 +00:00
|
|
|
target/hosted/android/lcd-android.c
|
|
|
|
target/hosted/android/button-android.c
|
2010-09-20 17:38:47 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
target/hosted/android/debug-android.c
|
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
target/hosted/android/pcm-android.c
|
2010-09-01 23:36:15 +00:00
|
|
|
target/hosted/android/powermgmt-android.c
|
2010-08-02 20:34:47 +00:00
|
|
|
target/hosted/android/system-android.c
|
2010-11-12 21:04:13 +00:00
|
|
|
target/hosted/android/telephony-android.c
|
2010-08-16 20:12:06 +00:00
|
|
|
#ifdef APPLICATION
|
|
|
|
target/hosted/android/app/button-application.c
|
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
drivers/audio/android.c
|
|
|
|
#endif
|
2011-10-17 10:32:19 +00:00
|
|
|
|
2011-12-15 18:05:15 +00:00
|
|
|
#endif /* defined(SIMULATOR) */
|
2013-09-02 09:03:56 +00:00
|
|
|
|
2013-09-05 18:35:51 +00:00
|
|
|
#if defined(HAVE_TOUCHPAD) && !defined(HAS_BUTTON_HOLD)
|
2013-09-02 09:03:56 +00:00
|
|
|
drivers/touchpad.c
|
|
|
|
#endif
|
2013-12-04 16:06:17 +00:00
|
|
|
|
|
|
|
/* firmware/kernel section */
|
|
|
|
#ifdef HAVE_CORELOCK_OBJECT
|
|
|
|
kernel/corelock.c
|
|
|
|
#endif
|
|
|
|
kernel/mutex.c
|
|
|
|
kernel/queue.c
|
|
|
|
#ifdef HAVE_SEMAPHORE_OBJECTS
|
|
|
|
kernel/semaphore.c
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_SDL_THREADS)
|
|
|
|
target/hosted/sdl/thread-sdl.c
|
|
|
|
#else
|
|
|
|
kernel/thread.c
|
|
|
|
#endif
|
|
|
|
kernel/tick.c
|
|
|
|
#ifdef INCLUDE_TIMEOUT_API
|
|
|
|
kernel/timeout.c
|
|
|
|
#endif
|