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
|
|
|
|
buffer.c
|
2009-02-10 23:43:37 +00:00
|
|
|
general.c
|
2010-08-27 00:29:50 +00:00
|
|
|
load_code.c
|
2006-11-08 16:13:04 +00:00
|
|
|
powermgmt.c
|
2011-03-02 19:12:55 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_HOSTED)
|
|
|
|
target/hosted/powermgmt.c
|
2011-03-08 20:54:42 +00:00
|
|
|
target/hosted/rtc.c
|
2011-03-02 19:12:55 +00:00
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
system.c
|
|
|
|
usb.c
|
|
|
|
#ifdef ROCKBOX_HAS_LOGF
|
|
|
|
logf.c
|
|
|
|
#endif /* ROCKBOX_HAS_LOGF */
|
2008-03-25 02:34:12 +00:00
|
|
|
kernel.c
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
2006-11-08 16:13:04 +00:00
|
|
|
#ifdef RB_PROFILE
|
|
|
|
profile.c
|
|
|
|
#endif /* RB_PROFILE */
|
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
|
|
|
thread.c
|
|
|
|
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
|
|
|
|
thread.c
|
|
|
|
#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
|
|
|
|
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-06 21:04:40 +00:00
|
|
|
libc/errno.c
|
2010-05-14 22:57:52 +00:00
|
|
|
libc/strtok.c
|
2010-05-09 20:07:15 +00:00
|
|
|
/* alsa on linux requires a more advanced sprintf, i.e. not ours */
|
|
|
|
libc/sprintf.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
|
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
|
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
|
|
|
|
|
|
|
|
#if !defined(CPU_SH) && !defined(CPU_COLDFIRE) && !defined(CPU_ARM)
|
|
|
|
#if !defined(CPU_MIPS)
|
|
|
|
libc/memcpy.c
|
|
|
|
libc/memset.c
|
|
|
|
#endif /* CPU_MIPS */
|
|
|
|
libc/memmove.c
|
|
|
|
#endif /* CPU_* */
|
|
|
|
|
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
|
|
|
|
|
|
|
#if !defined(CPU_SH) && !defined(CPU_COLDFIRE)
|
|
|
|
libc/strlen.c
|
|
|
|
#endif
|
|
|
|
|
2010-05-06 21:04:40 +00:00
|
|
|
libc/strncmp.c
|
|
|
|
libc/strrchr.c
|
|
|
|
libc/strstr.c
|
|
|
|
libc/mktime.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
|
2007-06-04 13:48:21 +00:00
|
|
|
#ifdef MI4_FORMAT
|
|
|
|
common/crc32-mi4.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
|
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-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
|
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
|
2010-06-21 16:53:00 +00:00
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
|
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) */
|
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
|
2006-11-06 18:07:30 +00:00
|
|
|
#ifdef HAVE_RECORDING
|
|
|
|
enc_base.c
|
|
|
|
#endif /* HAVE_RECORDING */
|
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
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* defined(HAVE_*) */
|
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 */
|
2010-06-21 16:53:00 +00:00
|
|
|
#endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
2007-08-27 16:04:32 +00:00
|
|
|
/* USB Stack */
|
|
|
|
#if !defined(SIMULATOR)
|
|
|
|
#ifdef HAVE_USBSTACK
|
2007-11-22 20:51:00 +00:00
|
|
|
usbstack/usb_core.c
|
2009-05-23 14:30:20 +00:00
|
|
|
#ifdef USB_ENABLE_STORAGE
|
2007-11-22 20:51:00 +00:00
|
|
|
usbstack/usb_storage.c
|
2009-05-23 14:30:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef USB_ENABLE_SERIAL
|
2007-11-30 00:13:00 +00:00
|
|
|
usbstack/usb_serial.c
|
2009-05-23 14:30:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef USB_ENABLE_CHARGING_ONLY
|
2008-04-26 19:02:16 +00:00
|
|
|
usbstack/usb_charging_only.c
|
2009-05-23 14:30:20 +00:00
|
|
|
#endif
|
|
|
|
#ifdef USB_ENABLE_HID
|
2009-04-19 21:17:18 +00:00
|
|
|
usbstack/usb_hid.c
|
2009-05-23 14:30:20 +00:00
|
|
|
#endif
|
2009-06-08 00:19:16 +00:00
|
|
|
#if CONFIG_USBOTG == USBOTG_M66591
|
|
|
|
drivers/m66591.c
|
|
|
|
#elif CONFIG_USBOTG == USBOTG_ARC
|
2008-04-18 16:42:50 +00:00
|
|
|
target/arm/usb-drv-arc.c
|
2009-07-06 13:54:51 +00:00
|
|
|
#elif CONFIG_USBOTG == USBOTG_AS3525
|
|
|
|
target/arm/as3525/usb-drv-as3525.c
|
2010-05-18 12:56:14 +00:00
|
|
|
#elif CONFIG_USBOTG == USBOTG_AS3525v2
|
|
|
|
target/arm/as3525/usb-drv-as3525v2.c
|
2008-04-24 20:08:28 +00:00
|
|
|
#elif CONFIG_USBOTG == USBOTG_ISP1583
|
|
|
|
drivers/isp1583.c
|
2007-08-27 16:04:32 +00:00
|
|
|
#endif
|
2007-11-22 21:57:17 +00:00
|
|
|
#else /* !defined(HAVE_USBSTACK) */
|
|
|
|
#if CONFIG_USBOTG == USBOTG_ISP1362
|
2008-04-24 20:08:28 +00:00
|
|
|
drivers/isp1362.c
|
2007-11-22 21:57:17 +00:00
|
|
|
#elif CONFIG_USBOTG == USBOTG_M5636
|
|
|
|
drivers/m5636.c
|
2007-08-27 16:04:32 +00:00
|
|
|
#endif
|
2007-11-22 21:57:17 +00:00
|
|
|
#endif /* !defined(HAVE_USBSTACK) */
|
|
|
|
#endif /* !defined(SIMULATOR) */
|
2006-11-08 16:13:04 +00:00
|
|
|
|
2007-09-22 14:21:07 +00:00
|
|
|
/* Other Random Hardware */
|
|
|
|
#ifdef HAVE_TSC2100
|
2008-04-28 02:19:23 +00:00
|
|
|
#if !defined(SIMULATOR)
|
2007-09-22 14:21:07 +00:00
|
|
|
drivers/tsc2100.c
|
2008-04-27 13:43:05 +00:00
|
|
|
drivers/audio/tsc2100.c
|
2008-04-28 02:19:23 +00:00
|
|
|
#endif /* !SIMULATOR */
|
2007-09-22 14:21:07 +00:00
|
|
|
#endif
|
|
|
|
|
2006-11-08 16:13:04 +00:00
|
|
|
/* CPU Specific - By class then particular chip if applicable */
|
|
|
|
#if defined(CPU_SH)
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
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
|
2006-11-08 16:13:04 +00:00
|
|
|
target/sh/memcpy-sh.S
|
|
|
|
target/sh/memmove-sh.S
|
|
|
|
target/sh/memset-sh.S
|
|
|
|
target/sh/strlen-sh.S
|
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
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
|
|
|
#elif defined(CPU_COLDFIRE)
|
|
|
|
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/coldfire/crt0.S
|
2008-03-25 02:34:12 +00:00
|
|
|
#ifdef HAVE_PRIORITY_SCHEDULING
|
|
|
|
common/ffs.c
|
|
|
|
target/coldfire/ffs-coldfire.S
|
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/memcpy-coldfire.S
|
|
|
|
target/coldfire/memmove-coldfire.S
|
|
|
|
target/coldfire/memset-coldfire.S
|
2007-06-25 20:21:37 +00:00
|
|
|
target/coldfire/strlen-coldfire.S
|
2008-03-12 20:35:42 +00:00
|
|
|
#if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
|
2007-03-04 14:09:21 +00:00
|
|
|
|| defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
|
2006-11-08 16:13:04 +00:00
|
|
|
target/coldfire/memset16-coldfire.S
|
2007-03-04 14:09:21 +00:00
|
|
|
#endif
|
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 */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
|
|
|
#elif defined(CPU_PP) || defined(CPU_ARM)
|
|
|
|
/* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
|
2010-02-01 01:36:46 +00:00
|
|
|
target/arm/support-arm.S
|
2007-01-13 23:57:14 +00:00
|
|
|
target/arm/memcpy-arm.S
|
|
|
|
target/arm/memmove-arm.S
|
2006-11-08 16:13:04 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/arm/memset-arm.S
|
|
|
|
target/arm/memset16-arm.S
|
2008-03-25 02:34:12 +00:00
|
|
|
#ifdef HAVE_PRIORITY_SCHEDULING
|
|
|
|
target/arm/ffs-arm.S
|
|
|
|
#endif
|
2010-08-03 19:00:29 +00:00
|
|
|
#if CONFIG_PLATFORM & PLATFORM_NATIVE
|
2009-01-08 10:15:32 +00:00
|
|
|
target/arm/system-arm.c
|
2010-08-03 19:00:29 +00:00
|
|
|
#endif
|
2007-05-17 22:49:27 +00:00
|
|
|
#if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
|
2007-01-27 17:17:52 +00:00
|
|
|
target/arm/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
|
|
|
|
/* no i2c driver yet */
|
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
|
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
|
|
|
|
2009-12-31 19:15:20 +00:00
|
|
|
#if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
|
2010-07-02 06:00:00 +00:00
|
|
|
target/arm/bits-armv4.S
|
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 */
|
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
|
2009-06-08 23:05:33 +00:00
|
|
|
target/arm/mmu-arm.S
|
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 20:55:56 +00:00
|
|
|
target/arm/adc-as3514.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/i2s-as3525.c
|
|
|
|
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)
|
2008-10-29 10:26:46 +00:00
|
|
|
target/arm/kernel-pp.c
|
2009-06-29 14:29:35 +00:00
|
|
|
target/arm/timer-pp.c
|
2007-04-22 12:03:17 +00:00
|
|
|
#if CONFIG_CPU == PP5002
|
|
|
|
target/arm/system-pp5002.c
|
2007-07-02 05:33:06 +00:00
|
|
|
#elif defined CPU_PP502x
|
2007-04-22 12:03:17 +00:00
|
|
|
target/arm/system-pp502x.c
|
|
|
|
#endif
|
2006-12-19 11:33:53 +00:00
|
|
|
#ifdef BOOTLOADER
|
2011-01-15 08:19:30 +00:00
|
|
|
#ifdef HAVE_BOOTLOADER_USB_MODE
|
|
|
|
target/arm/crt0-pp502x-bl-usb.S
|
2006-12-19 11:33:53 +00:00
|
|
|
#else
|
2011-01-15 08:19:30 +00:00
|
|
|
target/arm/crt0-pp-bl.S
|
|
|
|
#endif /* HAVE_BOOTLOADER_USB_MODE */
|
|
|
|
#else /* !BOOTLOADER */
|
2006-12-18 01:52:21 +00:00
|
|
|
target/arm/pcm-pp.c
|
2010-11-06 14:24:25 +00:00
|
|
|
target/arm/debug-pp.c
|
2007-09-06 03:28:58 +00:00
|
|
|
#if !defined(SANSA_E200) && !defined(SANSA_C200)
|
2006-12-18 01:52:21 +00:00
|
|
|
target/arm/audio-pp.c
|
2007-06-05 07:03:30 +00:00
|
|
|
#endif /* SANSA_E200 */
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/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
|
2006-11-08 16:13:04 +00:00
|
|
|
#elif defined(CPU_ARM)
|
|
|
|
target/arm/crt0.S
|
|
|
|
#endif /* defined(CPU_*) */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
|
2008-07-14 15:03:10 +00:00
|
|
|
#elif defined(CPU_MIPS)
|
|
|
|
common/memset16.c
|
2009-02-04 17:33:19 +00:00
|
|
|
target/mips/ffs-mips.S
|
|
|
|
target/mips/memcpy-mips.S
|
|
|
|
target/mips/memset-mips.S
|
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
|
|
|
|
|
2008-03-25 02:34:12 +00:00
|
|
|
#ifdef HAVE_PRIORITY_SCHEDULING
|
|
|
|
common/ffs.c
|
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
common/memset16.c
|
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
|
|
|
|
2006-11-09 07:31:31 +00:00
|
|
|
#ifdef ARCHOS_PLAYER
|
|
|
|
#ifndef SIMULATOR
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-archos.c
|
2009-06-29 14:29:14 +00:00
|
|
|
target/sh/archos/timer-archos.c
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-as-archos.S
|
2011-04-23 08:23:07 +00:00
|
|
|
target/sh/archos/uart-archos.c
|
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
|
2006-11-09 07:31:31 +00:00
|
|
|
target/sh/archos/player/lcd-as-player.S
|
2007-03-26 07:52:13 +00:00
|
|
|
target/sh/archos/player/lcd-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
|
2010-10-31 21:09:34 +00:00
|
|
|
target/sh/archos/mascodec-archos.c
|
|
|
|
target/sh/archos/audio-archos.c
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* ARCHOS_PLAYER */
|
|
|
|
|
|
|
|
#ifdef ARCHOS_RECORDER
|
|
|
|
#ifndef SIMULATOR
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-archos.c
|
2009-06-29 14:29:14 +00:00
|
|
|
target/sh/archos/timer-archos.c
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-as-archos.S
|
2011-04-23 08:23:07 +00:00
|
|
|
target/sh/archos/uart-archos.c
|
2006-11-12 13:22:59 +00:00
|
|
|
target/sh/archos/lcd-archos-bitmap.c
|
2007-04-15 23:35:56 +00:00
|
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
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
|
2010-10-31 21:09:34 +00:00
|
|
|
target/sh/archos/mascodec-archos.c
|
|
|
|
target/sh/archos/audio-archos.c
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* ARCHOS_RECORDER */
|
|
|
|
|
|
|
|
#if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
|
|
|
|
#ifndef SIMULATOR
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-archos.c
|
2009-06-29 14:29:14 +00:00
|
|
|
target/sh/archos/timer-archos.c
|
2006-12-03 22:13:44 +00:00
|
|
|
target/sh/archos/ata-as-archos.S
|
2006-11-12 13:22:59 +00:00
|
|
|
target/sh/archos/lcd-archos-bitmap.c
|
2006-11-09 07:31:31 +00:00
|
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
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
|
2010-10-31 21:09:34 +00:00
|
|
|
target/sh/archos/mascodec-archos.c
|
|
|
|
target/sh/archos/audio-archos.c
|
2006-11-09 07:31:31 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
|
|
|
|
|
|
|
|
#if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
|
|
|
|
#ifndef SIMULATOR
|
2009-06-29 14:52:51 +00:00
|
|
|
target/sh/archos/timer-archos.c
|
2006-11-12 13:22:59 +00:00
|
|
|
target/sh/archos/lcd-archos-bitmap.c
|
2006-11-09 07:31:31 +00:00
|
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
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
|
2010-10-31 21:09:34 +00:00
|
|
|
target/sh/archos/mascodec-archos.c
|
|
|
|
target/sh/archos/audio-archos.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 /* SIMULATOR */
|
|
|
|
#endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
|
|
|
|
|
2006-08-01 22:28:14 +00:00
|
|
|
#ifdef SANSA_E200
|
2006-10-26 13:38:09 +00:00
|
|
|
#ifndef SIMULATOR
|
2008-05-13 01:53:19 +00:00
|
|
|
target/arm/adc-as3514.c
|
2008-10-31 00:16:42 +00:00
|
|
|
target/arm/ascodec-pp.c
|
2009-01-11 10:07:22 +00:00
|
|
|
target/arm/ata-sd-pp.c
|
|
|
|
target/arm/lcd-as-memframe.S
|
|
|
|
target/arm/powermgmt-ascodec.c
|
|
|
|
target/arm/i2s-pp.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
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
|
2009-01-11 10:07:22 +00:00
|
|
|
target/arm/sandisk/sansa-e200/lcd-e200.c
|
|
|
|
target/arm/sandisk/sansa-e200/button-e200.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/sandisk/sansa-e200/powermgmt-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 */
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* SANSA_E200 */
|
2006-08-01 22:28:14 +00:00
|
|
|
|
2007-09-06 03:28:58 +00:00
|
|
|
#ifdef SANSA_C200
|
|
|
|
#ifndef SIMULATOR
|
2008-05-13 01:53:19 +00:00
|
|
|
target/arm/adc-as3514.c
|
2008-10-31 00:16:42 +00:00
|
|
|
target/arm/ascodec-pp.c
|
2009-01-11 10:07:22 +00:00
|
|
|
target/arm/ata-sd-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/powermgmt-ascodec.c
|
2007-09-06 03:28:58 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2009-01-11 10:07:22 +00:00
|
|
|
target/arm/sandisk/backlight-c200_e200.c
|
2007-09-06 03:28:58 +00:00
|
|
|
target/arm/sandisk/power-c200_e200.c
|
2009-06-17 19:55:27 +00:00
|
|
|
target/arm/lcd-c200_c200v2.c
|
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
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/sandisk/audio-c200_e200.c
|
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* SANSA_C200 */
|
|
|
|
|
2009-07-13 21:09:39 +00:00
|
|
|
#ifdef SANSA_VIEW
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
/* target/arm/ascodec-pp.c */
|
|
|
|
target/arm/ata-sd-pp.c
|
|
|
|
target/arm/lcd-as-memframe.S
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
/* target/arm/usb-fw-pp502x.c */
|
|
|
|
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 /* SIMULATOR */
|
|
|
|
#endif /* SANSA_VIEW */
|
|
|
|
|
2008-05-21 03:55:17 +00:00
|
|
|
#ifdef PHILIPS_SA9200
|
|
|
|
#ifndef SIMULATOR
|
2009-06-19 03:23:38 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
drivers/synaptics-mep.c
|
|
|
|
#endif /* BOOTLOADER */
|
2008-05-21 03:55:17 +00:00
|
|
|
target/arm/adc-as3514.c
|
2008-10-31 00:16:42 +00:00
|
|
|
target/arm/ascodec-pp.c
|
2009-03-07 04:41:37 +00:00
|
|
|
target/arm/ata-sd-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/powermgmt-ascodec.c
|
2008-05-21 03:55:17 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
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 /* SIMULATOR */
|
|
|
|
#endif /* PHILIPS_SA9200 */
|
|
|
|
|
2008-06-27 18:40:25 +00:00
|
|
|
#ifdef PHILIPS_HDD1630
|
|
|
|
#ifndef SIMULATOR
|
2008-12-19 03:31:26 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
drivers/synaptics-mep.c
|
|
|
|
#endif /* BOOTLOADER */
|
2008-06-27 18:40:25 +00:00
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/adc-pp5020.c
|
2009-12-25 04:05:01 +00:00
|
|
|
target/arm/philips/power-hdd.c
|
|
|
|
target/arm/philips/fmradio_i2c-hdd.c
|
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
|
|
|
|
target/arm/usb-fw-pp502x.c
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* PHILIPS_HDD1630 */
|
|
|
|
|
2009-12-25 04:05:01 +00:00
|
|
|
#ifdef PHILIPS_HDD6330
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
drivers/synaptics-mep.c
|
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/adc-pp5020.c
|
|
|
|
target/arm/philips/power-hdd.c
|
|
|
|
target/arm/philips/fmradio_i2c-hdd.c
|
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
|
|
|
|
target/arm/usb-fw-pp502x.c
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* PHILIPS_HDD6330 */
|
|
|
|
|
2006-02-23 15:26:43 +00:00
|
|
|
#ifdef IAUDIO_X5
|
2006-07-21 09:24:17 +00:00
|
|
|
#ifndef SIMULATOR
|
2006-12-03 22:13:44 +00:00
|
|
|
target/coldfire/ata-as-coldfire.S
|
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
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/fmradio_i2c-iaudio.c
|
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
|
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
|
2006-11-24 06:53:33 +00:00
|
|
|
#ifndef BOOTLOADER
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/audio-iaudio.c
|
2006-11-24 06:53:33 +00:00
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IAUDIO_X5 */
|
|
|
|
|
2007-03-04 14:09:21 +00:00
|
|
|
#ifdef IAUDIO_M5
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/coldfire/ata-as-coldfire.S
|
|
|
|
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
|
2009-06-12 18:53:44 +00:00
|
|
|
#ifdef HAVE_FMRADIO_IN /* FM radio mod */
|
|
|
|
target/coldfire/iaudio/fmradio_i2c-iaudio.c
|
|
|
|
#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/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
|
|
|
|
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
|
2007-03-04 14:09:21 +00:00
|
|
|
#ifndef BOOTLOADER
|
2009-06-12 18:53:44 +00:00
|
|
|
target/coldfire/iaudio/audio-iaudio.c
|
2007-03-04 14:09:21 +00:00
|
|
|
#endif
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IAUDIO_M5 */
|
|
|
|
|
2008-03-12 20:35:42 +00:00
|
|
|
#ifdef IAUDIO_M3
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/coldfire/ata-as-coldfire.S
|
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 /* SIMULATOR */
|
|
|
|
#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
|
|
|
|
2006-10-30 08:56:06 +00:00
|
|
|
#ifdef IRIVER_H300_SERIES
|
2006-10-29 10:32:50 +00:00
|
|
|
#ifndef SIMULATOR
|
2006-12-03 22:13:44 +00:00
|
|
|
target/coldfire/ata-as-coldfire.S
|
2006-10-30 08:56:06 +00:00
|
|
|
target/coldfire/pcf50606-coldfire.c
|
|
|
|
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
|
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-24 06:53:33 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/iriver/audio-iriver.c
|
2009-06-28 17:43:04 +00:00
|
|
|
target/coldfire/iriver/udacodec-iriver.c
|
2006-11-24 06:53:33 +00:00
|
|
|
#endif
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IRIVER_H300_SERIES */
|
2006-10-29 10:32:50 +00:00
|
|
|
|
2006-10-30 08:56:06 +00:00
|
|
|
#ifdef IRIVER_H100_SERIES
|
2006-08-23 17:49:19 +00:00
|
|
|
#ifndef SIMULATOR
|
2008-02-03 18:15:39 +00:00
|
|
|
drivers/sw_i2c.c
|
2006-12-03 22:13:44 +00:00
|
|
|
target/coldfire/ata-as-coldfire.S
|
2011-04-23 08:23:07 +00:00
|
|
|
target/coldfire/uart-coldfire.c
|
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
|
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
|
2006-11-24 06:53:33 +00:00
|
|
|
target/coldfire/iriver/audio-iriver.c
|
2009-06-28 17:43:04 +00:00
|
|
|
target/coldfire/iriver/udacodec-iriver.c
|
2006-11-13 23:21:54 +00:00
|
|
|
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 /* SIMULATOR */
|
|
|
|
#endif /* IRIVER_H100_SERIES */
|
2006-08-23 17:30:51 +00:00
|
|
|
|
2006-08-03 20:21:55 +00:00
|
|
|
#ifdef IRIVER_H10
|
|
|
|
#ifndef SIMULATOR
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2008-01-12 20:36:45 +00:00
|
|
|
target/arm/adc-pp5020.c
|
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-11-08 16:13:04 +00:00
|
|
|
target/arm/iriver/h10/lcd-h10_20gb.c
|
2008-01-26 14:24:09 +00:00
|
|
|
target/arm/iriver/h10/lcd-as-h10.S
|
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
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IRIVER_H10 */
|
2006-08-12 08:01:54 +00:00
|
|
|
|
2006-08-19 19:21:17 +00:00
|
|
|
#ifdef IRIVER_H10_5GB
|
|
|
|
#ifndef SIMULATOR
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2008-01-12 20:36:45 +00:00
|
|
|
target/arm/adc-pp5020.c
|
2006-08-19 19:21:17 +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-11-08 16:13:04 +00:00
|
|
|
target/arm/iriver/h10/lcd-h10_5gb.c
|
2006-08-19 19:21:17 +00:00
|
|
|
target/arm/iriver/h10/power-h10.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/iriver/h10/powermgmt-h10.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IRIVER_H10_5GB */
|
2006-08-19 19:21:17 +00:00
|
|
|
|
2006-08-12 08:01:54 +00:00
|
|
|
#ifdef GIGABEAT_F
|
|
|
|
#ifndef SIMULATOR
|
2010-06-30 02:02:46 +00:00
|
|
|
target/arm/bits-armv4.S
|
2007-09-25 02:59:42 +00:00
|
|
|
target/arm/lcd-as-memframe.S
|
2009-02-11 23:56:00 +00:00
|
|
|
target/arm/mmu-arm.S
|
2009-10-26 18:16:58 +00:00
|
|
|
target/arm/s3c2440/adc-s3c2440.c
|
2007-11-10 23:13:27 +00:00
|
|
|
target/arm/s3c2440/debug-s3c2440.c
|
2009-10-19 18:14:27 +00:00
|
|
|
target/arm/s3c2440/kernel-s3c2440.c
|
|
|
|
target/arm/s3c2440/lcd-s3c2440.c
|
|
|
|
target/arm/s3c2440/system-s3c2440.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
|
2009-10-26 18:16:58 +00:00
|
|
|
target/arm/s3c2440/i2c-s3c2440.c
|
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/timer-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 /* SIMULATOR */
|
|
|
|
#endif /* GIGABEAT_F */
|
2006-08-31 19:19:35 +00:00
|
|
|
|
2007-09-21 15:51:53 +00:00
|
|
|
#ifdef GIGABEAT_S
|
|
|
|
#ifndef SIMULATOR
|
2010-06-30 02:02:46 +00:00
|
|
|
target/arm/bits-armv6.S
|
2008-02-05 04:43:19 +00:00
|
|
|
target/arm/lcd-as-memframe.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
|
|
|
|
target/arm/imx31/gigabeat-s/lcd-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 /* SIMULATOR */
|
|
|
|
#endif /* GIGABEAT_S */
|
|
|
|
|
2008-04-24 20:08:28 +00:00
|
|
|
#if CONFIG_CPU == DM320
|
2011-02-06 19:43:45 +00:00
|
|
|
target/arm/bits-armv4.S
|
2008-04-24 20:08:28 +00:00
|
|
|
target/arm/tms320dm320/debug-dm320.c
|
|
|
|
target/arm/tms320dm320/dsp-dm320.c
|
|
|
|
target/arm/tms320dm320/i2c-dm320.c
|
|
|
|
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
|
|
|
|
#ifndef SIMULATOR
|
2009-11-09 00:38:10 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2011-02-06 19:43:45 +00:00
|
|
|
#if !defined(LCD_USE_DMA)
|
2007-10-21 23:12:17 +00:00
|
|
|
target/arm/lcd-as-memframe.S
|
2011-02-06 19:43:45 +00:00
|
|
|
#endif
|
2009-02-11 23:56:00 +00:00
|
|
|
target/arm/mmu-arm.S
|
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 /* SIMULATOR */
|
|
|
|
#endif /* MROBE_500 */
|
|
|
|
|
2008-05-14 18:55:19 +00:00
|
|
|
#ifdef CREATIVE_ZVx
|
2008-04-24 20:08:28 +00:00
|
|
|
#ifndef SIMULATOR
|
2008-05-03 13:43:26 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2008-04-24 20:08:28 +00:00
|
|
|
target/arm/lcd-as-memframe.S
|
2009-02-11 23:56:00 +00:00
|
|
|
target/arm/mmu-arm.S
|
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
|
|
|
|
#endif /* SIMULATOR */
|
2008-05-14 18:55:19 +00:00
|
|
|
#endif /* CREATIVE_ZVx */
|
2008-04-24 20:08:28 +00:00
|
|
|
|
2008-01-09 07:24:43 +00:00
|
|
|
#ifdef MROBE_100
|
|
|
|
#ifndef SIMULATOR
|
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/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
2008-01-12 20:36:45 +00:00
|
|
|
target/arm/adc-pp5020.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
|
|
|
|
target/arm/usb-fw-pp502x.c
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* MROBE_100 */
|
|
|
|
|
2009-12-07 16:12:49 +00:00
|
|
|
#ifdef TATUNG_TPJ1022
|
2006-08-31 19:19:35 +00:00
|
|
|
#ifndef SIMULATOR
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2009-01-27 03:19:57 +00:00
|
|
|
target/arm/adc-pp5020.c
|
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
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
2009-12-07 16:12:49 +00:00
|
|
|
#endif /* TATUNG_TPJ1022 */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_4G
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ata-pp5020.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-4g_color.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2008-01-12 00:59:18 +00:00
|
|
|
target/arm/ipod/lcd-as-gray.S
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/lcd-gray.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_4G */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_COLOR
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ata-pp5020.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-4g_color.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/lcd-color_nano.c
|
2010-12-29 23:21:37 +00:00
|
|
|
target/arm/ipod/lcd-as-color-nano.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_COLOR */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_NANO
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ata-pp5020.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-nano_video.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/lcd-color_nano.c
|
2010-12-29 23:21:37 +00:00
|
|
|
target/arm/ipod/lcd-as-color-nano.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_NANO */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_VIDEO
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ata-pp5020.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-nano_video.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.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
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_VIDEO */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_3G
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2006-11-08 12:34:21 +00:00
|
|
|
target/arm/ata-pp5002.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/3g/backlight-3g.c
|
2007-07-27 12:05:54 +00:00
|
|
|
target/arm/ipod/button-1g-3g.c
|
2008-01-12 00:59:18 +00:00
|
|
|
target/arm/ipod/lcd-as-gray.S
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/lcd-gray.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp5002.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_3G */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
2007-07-26 23:02:37 +00:00
|
|
|
#ifdef IPOD_1G2G
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/arm/ata-pp5002.c
|
|
|
|
target/arm/wmcodec-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/1g2g/adc-ipod-1g2g.c
|
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
|
2008-01-12 00:59:18 +00:00
|
|
|
target/arm/ipod/lcd-as-gray.S
|
2007-07-26 23:02:37 +00:00
|
|
|
target/arm/ipod/lcd-gray.c
|
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp5002.c
|
2007-07-26 23:02:37 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_1G2G */
|
|
|
|
|
2006-10-05 10:58:51 +00:00
|
|
|
#ifdef IPOD_MINI
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ata-pp5020.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-mini1g_mini2g.c
|
|
|
|
target/arm/ipod/button-mini1g.c
|
2008-01-12 00:59:18 +00:00
|
|
|
target/arm/ipod/lcd-as-gray.S
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/lcd-gray.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_MINI */
|
2006-10-05 10:58:51 +00:00
|
|
|
|
|
|
|
#ifdef IPOD_MINI2G
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
drivers/pcf50605.c
|
2007-01-24 00:12:08 +00:00
|
|
|
target/arm/ata-as-arm.S
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ata-pp5020.c
|
2006-11-08 16:13:04 +00:00
|
|
|
target/arm/wmcodec-pp.c
|
2006-12-09 19:18:18 +00:00
|
|
|
target/arm/i2s-pp.c
|
2007-07-30 20:12:03 +00:00
|
|
|
target/arm/ipod/adc-ipod-pcf.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/backlight-mini1g_mini2g.c
|
|
|
|
target/arm/ipod/button-clickwheel.c
|
2008-01-12 00:59:18 +00:00
|
|
|
target/arm/ipod/lcd-as-gray.S
|
2007-02-25 13:11:02 +00:00
|
|
|
target/arm/ipod/lcd-gray.c
|
2006-10-05 10:58:51 +00:00
|
|
|
target/arm/ipod/power-ipod.c
|
2007-08-17 06:45:18 +00:00
|
|
|
target/arm/ipod/powermgmt-ipod-pcf.c
|
2007-08-01 22:44:02 +00:00
|
|
|
target/arm/usb-fw-pp502x.c
|
2006-11-08 16:13:04 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IPOD_MINI2G */
|
2006-11-09 22:58:35 +00:00
|
|
|
|
|
|
|
#ifdef IRIVER_IFP7XX
|
|
|
|
#ifndef SIMULATOR
|
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 /* SIMULATOR */
|
|
|
|
#endif /* IRIVER_IFP7XX */
|
2007-09-11 15:34:54 +00:00
|
|
|
|
2007-10-28 11:08:10 +00:00
|
|
|
#ifdef LOGIK_DAX
|
|
|
|
#ifndef SIMULATOR
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2008-10-19 14:11:01 +00:00
|
|
|
target/arm/lcd-ssd1815.c
|
2007-10-28 11:08:10 +00:00
|
|
|
target/arm/tcc77x/adc-tcc77x.c
|
2008-05-02 19:12:09 +00:00
|
|
|
target/arm/tcc77x/kernel-tcc77x.c
|
|
|
|
target/arm/tcc77x/powermgmt-tcc77x.c
|
|
|
|
target/arm/tcc77x/system-tcc77x.c
|
|
|
|
target/arm/tcc77x/timer-tcc77x.c
|
2008-11-30 15:43:15 +00:00
|
|
|
target/arm/usb-tcc.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/wmcodec-telechips.c
|
2008-05-02 19:12:09 +00:00
|
|
|
target/arm/tcc77x/debug-tcc77x.c
|
2008-09-06 17:50:59 +00:00
|
|
|
target/arm/pcm-telechips.c
|
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 /* SIMULATOR */
|
|
|
|
#endif /* LOGIK_DAX */
|
|
|
|
|
|
|
|
#ifdef SANSA_M200
|
|
|
|
#ifndef SIMULATOR
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2008-10-19 14:11:01 +00:00
|
|
|
target/arm/lcd-ssd1815.c
|
2008-05-02 19:12:09 +00:00
|
|
|
target/arm/tcc77x/adc-tcc77x.c
|
|
|
|
target/arm/tcc77x/kernel-tcc77x.c
|
|
|
|
target/arm/tcc77x/powermgmt-tcc77x.c
|
|
|
|
target/arm/tcc77x/system-tcc77x.c
|
|
|
|
target/arm/tcc77x/timer-tcc77x.c
|
2008-11-30 15:43:15 +00:00
|
|
|
target/arm/usb-tcc.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/wmcodec-telechips.c
|
2008-05-02 19:12:09 +00:00
|
|
|
target/arm/tcc77x/debug-tcc77x.c
|
2008-09-06 17:50:59 +00:00
|
|
|
target/arm/pcm-telechips.c
|
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 */
|
2007-10-28 11:08:10 +00:00
|
|
|
#endif /* SIMULATOR */
|
2008-06-21 15:18:36 +00:00
|
|
|
#endif /* SANSA_M200 */
|
|
|
|
|
|
|
|
#ifdef SANSA_C100
|
|
|
|
#ifndef SIMULATOR
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2009-06-01 12:37:25 +00:00
|
|
|
target/arm/usb-tcc.c
|
2008-06-21 15:18:36 +00:00
|
|
|
target/arm/tcc77x/system-tcc77x.c
|
2009-06-01 12:37:25 +00:00
|
|
|
target/arm/tcc77x/kernel-tcc77x.c
|
2008-06-21 15:18:36 +00:00
|
|
|
target/arm/tcc77x/timer-tcc77x.c
|
2009-06-01 12:37:25 +00:00
|
|
|
target/arm/tcc77x/adc-tcc77x.c
|
|
|
|
target/arm/tcc77x/powermgmt-tcc77x.c
|
|
|
|
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
|
|
|
|
target/arm/tcc77x/debug-tcc77x.c
|
2008-09-06 17:50:59 +00:00
|
|
|
target/arm/pcm-telechips.c
|
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 /* SIMULATOR */
|
|
|
|
#endif /* SANSA_C100 */
|
2007-10-28 11:08:10 +00:00
|
|
|
|
2010-02-05 12:40:25 +00:00
|
|
|
#ifdef SANSA_CLIPPLUS
|
|
|
|
#ifndef SIMULATOR
|
2010-03-19 15:13:29 +00:00
|
|
|
target/arm/as3525/lcd-ssd1303.c
|
|
|
|
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
|
|
|
|
target/arm/powermgmt-ascodec.c
|
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-07-20 06:26:39 +00:00
|
|
|
target/arm/as3525/tuner-as3525v2.c
|
2010-02-05 12:40:25 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
|
|
|
#endif /* !SIMULATOR */
|
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
|
|
|
|
#ifndef SIMULATOR
|
2010-03-19 15:13:29 +00:00
|
|
|
target/arm/as3525/lcd-ssd1303.c
|
|
|
|
target/arm/as3525/sansa-clipv2/lcd-clipv2.c
|
2009-12-31 19:15:20 +00:00
|
|
|
target/arm/as3525/sansa-clipv2/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
|
|
|
|
target/arm/powermgmt-ascodec.c
|
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 /* !SIMULATOR */
|
|
|
|
#endif /* SANSA_CLIPV2 */
|
|
|
|
|
2008-10-19 14:11:01 +00:00
|
|
|
#ifdef SANSA_CLIP
|
|
|
|
#ifndef SIMULATOR
|
2010-03-19 15:13:29 +00:00
|
|
|
target/arm/as3525/lcd-ssd1303.c
|
|
|
|
target/arm/as3525/sansa-clip/lcd-clip.c
|
2008-10-19 14:11:01 +00:00
|
|
|
target/arm/as3525/sansa-clip/button-clip.c
|
2008-12-02 19:50:31 +00:00
|
|
|
#ifndef BOOTLOADER
|
2009-02-14 16:19:21 +00:00
|
|
|
target/arm/powermgmt-ascodec.c
|
2008-12-02 19:50:31 +00:00
|
|
|
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 /* !SIMULATOR */
|
|
|
|
#endif /* SANSA_CLIP */
|
|
|
|
|
|
|
|
#ifdef SANSA_E200V2
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
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/powermgmt-ascodec.c
|
|
|
|
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 /* !SIMULATOR */
|
|
|
|
#endif /* SANSA_E200V2 */
|
|
|
|
|
2008-12-24 04:10:18 +00:00
|
|
|
#ifdef SANSA_C200V2
|
|
|
|
#ifndef SIMULATOR
|
2009-06-17 19:55:27 +00:00
|
|
|
target/arm/lcd-c200_c200v2.c
|
2008-12-24 04:10:18 +00:00
|
|
|
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/powermgmt-ascodec.c
|
|
|
|
target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
|
2008-12-24 04:10:18 +00:00
|
|
|
#endif /* !BOOTLOADER */
|
|
|
|
#endif /* !SIMULATOR */
|
|
|
|
#endif /* SANSA_E200V2 */
|
|
|
|
|
2008-11-10 09:27:40 +00:00
|
|
|
#ifdef SANSA_M200V4
|
2008-10-19 14:11:01 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/arm/lcd-ssd1815.c
|
2008-11-10 09:27:40 +00:00
|
|
|
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-10-19 14:11:01 +00:00
|
|
|
#endif /* !SIMULATOR */
|
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
|
|
|
|
#ifndef SIMULATOR
|
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/lcd-fuze.c
|
|
|
|
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/powermgmt-ascodec.c
|
|
|
|
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 /* !SIMULATOR */
|
|
|
|
#endif /* SANSA_FUZE */
|
|
|
|
|
2010-02-25 13:26:46 +00:00
|
|
|
#ifdef SANSA_FUZEV2
|
|
|
|
#ifndef SIMULATOR
|
2010-07-20 06:26:39 +00:00
|
|
|
target/arm/as3525/tuner-as3525v2.c
|
2010-05-27 23:32:38 +00:00
|
|
|
target/arm/as3525/lcd-fuze.c
|
2010-02-25 13:26:46 +00:00
|
|
|
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/powermgmt-ascodec.c
|
|
|
|
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 /* !SIMULATOR */
|
|
|
|
#endif /* SANSA_FUZEV2 */
|
|
|
|
|
2007-10-28 11:08:10 +00:00
|
|
|
#ifdef IAUDIO_7
|
|
|
|
#ifndef SIMULATOR
|
2008-07-15 21:32:20 +00:00
|
|
|
drivers/nand_id.c
|
2008-09-06 17:50:59 +00:00
|
|
|
drivers/pcf50606.c
|
2008-12-21 19:16:54 +00:00
|
|
|
target/arm/usb-tcc.c
|
2007-10-28 11:08:10 +00:00
|
|
|
target/arm/tcc77x/system-tcc77x.c
|
2008-09-06 17:50:59 +00:00
|
|
|
target/arm/tcc77x/kernel-tcc77x.c
|
|
|
|
target/arm/tcc77x/timer-tcc77x.c
|
|
|
|
target/arm/tcc77x/adc-tcc77x.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/wmcodec-telechips.c
|
|
|
|
target/arm/pcm-telechips.c
|
|
|
|
target/arm/tcc77x/debug-tcc77x.c
|
|
|
|
target/arm/tcc77x/iaudio7/audio-iaudio7.c
|
|
|
|
#endif /* BOOTLOADER */
|
2007-10-28 11:08:10 +00:00
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* IAUDIO_7 */
|
2008-01-14 22:04:48 +00:00
|
|
|
|
|
|
|
#ifdef COWON_D2
|
|
|
|
#ifndef SIMULATOR
|
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-03-23 19:56:11 +00:00
|
|
|
target/arm/lcd-as-memframe.S
|
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
|
2009-09-01 21:35:37 +00:00
|
|
|
target/arm/mmu-arm.S
|
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 /* SIMULATOR */
|
|
|
|
#endif /* COWON_D2 */
|
2008-06-27 23:24:34 +00:00
|
|
|
|
2009-07-15 21:34:31 +00:00
|
|
|
#ifdef CPU_S5L870X
|
2010-04-13 15:59:49 +00:00
|
|
|
target/arm/mmu-arm.S
|
2008-09-17 23:22:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|
|
|
#ifndef SIMULATOR
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#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/kernel-s5l8700.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 SIMULATOR
|
|
|
|
#ifndef BOOTLOADER
|
2010-01-14 20:16:03 +00:00
|
|
|
drivers/generic_i2c.c
|
|
|
|
drivers/rtc/rtc_s35390a.c
|
|
|
|
target/arm/s5l8700/adc-s5l8700.c
|
|
|
|
target/arm/s5l8700/audio-meizu.c
|
|
|
|
target/arm/s5l8700/debug-s5l8700.c
|
|
|
|
target/arm/s5l8700/dma-s5l8700.c
|
|
|
|
target/arm/s5l8700/ftl-meizu.c
|
|
|
|
target/arm/s5l8700/nand-meizu.c
|
|
|
|
target/arm/s5l8700/fmradio-i2c-meizu.c
|
|
|
|
target/arm/s5l8700/pcm-s5l8700.c
|
|
|
|
target/arm/s5l8700/powermgmt-meizu.c
|
|
|
|
target/arm/s5l8700/usb-s5l8700.c
|
|
|
|
target/arm/s5l8700/wmcodec-s5l8700.c
|
2008-09-17 23:22:11 +00:00
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* MEIZU_M6SP */
|
|
|
|
|
|
|
|
#ifdef MEIZU_M3
|
2009-06-23 18:11:03 +00:00
|
|
|
target/arm/s5l8700/backlight-meizu.c
|
2009-07-05 19:09:14 +00:00
|
|
|
target/arm/s5l8700/kernel-s5l8700.c
|
2008-09-17 23:22:11 +00:00
|
|
|
target/arm/s5l8700/meizu-m3/lcd-m3.c
|
|
|
|
drivers/qt1106.c
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
#ifndef BOOTLOADER
|
2009-07-05 19:09:14 +00:00
|
|
|
target/arm/s5l8700/dma-s5l8700.c
|
|
|
|
target/arm/s5l8700/pcm-s5l8700.c
|
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 /* SIMULATOR */
|
|
|
|
#endif /* MEIZU_M3 */
|
|
|
|
|
2009-07-12 22:16:51 +00:00
|
|
|
#ifdef IPOD_NANO2G
|
2009-10-13 20:51:28 +00:00
|
|
|
#ifndef SIMULATOR
|
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-15 21:34:31 +00:00
|
|
|
target/arm/s5l8700/kernel-s5l8700.c
|
2009-10-02 23:45:53 +00:00
|
|
|
target/arm/s5l8700/dma-s5l8700.c
|
2011-01-02 23:16:27 +00:00
|
|
|
target/arm/s5l8700/system-s5l8700.c
|
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
|
2010-03-11 13:51:24 +00:00
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/usb-s3c6400x.c
|
2011-01-02 23:16:27 +00:00
|
|
|
target/arm/s5l8700/timer-s5l8700.c
|
2010-03-11 14:02:59 +00:00
|
|
|
target/arm/s5l8700/debug-s5l8700.c
|
2010-03-11 13:51:24 +00:00
|
|
|
target/arm/s5l8700/pcm-s5l8700.c
|
2010-03-11 14:02:59 +00:00
|
|
|
target/arm/s5l8700/wmcodec-s5l8700.c
|
2010-03-11 13:51:24 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/audio-nano2g.c
|
2010-03-11 14:02:59 +00:00
|
|
|
target/arm/s5l8700/ipodnano2g/adc-nano2g.c
|
2010-03-11 13:51:24 +00:00
|
|
|
#endif
|
2009-07-12 22:16:51 +00:00
|
|
|
#endif
|
2009-10-13 20:51:28 +00:00
|
|
|
#endif
|
2009-07-12 22:16:51 +00:00
|
|
|
|
2011-01-02 23:16:27 +00:00
|
|
|
#ifdef IPOD_6G
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
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
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/arm/usb-s3c6400x.c
|
|
|
|
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
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2009-03-11 22:12:23 +00:00
|
|
|
#ifndef SIMULATOR
|
|
|
|
#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-03-11 22:12:23 +00:00
|
|
|
#endif /* SIMULATOR */
|
2009-05-25 21:10:45 +00:00
|
|
|
|
2009-10-19 18:14:27 +00:00
|
|
|
#if defined(MINI2440)
|
|
|
|
#ifndef SIMULATOR
|
2010-06-30 02:02:46 +00:00
|
|
|
target/arm/bits-armv4.S
|
2009-10-19 18:14:27 +00:00
|
|
|
target/arm/lcd-as-memframe.S
|
|
|
|
target/arm/mmu-arm.S
|
|
|
|
target/arm/s3c2440/debug-s3c2440.c
|
2009-10-22 17:45:02 +00:00
|
|
|
target/arm/s3c2440/dma-s3c2440.c
|
2009-10-19 18:14:27 +00:00
|
|
|
target/arm/s3c2440/kernel-s3c2440.c
|
|
|
|
target/arm/s3c2440/lcd-s3c2440.c
|
2009-10-22 17:45:02 +00:00
|
|
|
target/arm/s3c2440/sd-s3c2440.c
|
2009-10-19 18:14:27 +00:00
|
|
|
target/arm/s3c2440/system-s3c2440.c
|
2009-10-22 17:45:02 +00:00
|
|
|
target/arm/s3c2440/uart-s3c2440.c
|
2009-10-26 18:16:58 +00:00
|
|
|
target/arm/s3c2440/adc-s3c2440.c
|
|
|
|
target/arm/s3c2440/i2c-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
|
|
|
|
target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
|
2009-10-19 18:14:27 +00:00
|
|
|
#endif
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* MINI2440 */
|
|
|
|
|
2009-05-25 21:10:45 +00:00
|
|
|
#ifdef SAMSUNG_YH820
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/adc-pp5020.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/usb-fw-pp502x.c
|
|
|
|
target/arm/samsung/akcodec-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/button-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/power-yh82x_yh92x.c
|
|
|
|
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 /* SIMULATOR */
|
|
|
|
#endif /* SAMSUNG_YH820 */
|
|
|
|
|
|
|
|
#ifdef SAMSUNG_YH920
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/adc-pp5020.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/usb-fw-pp502x.c
|
|
|
|
target/arm/samsung/akcodec-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/button-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/power-yh82x_yh92x.c
|
|
|
|
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
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* SAMSUNG_YH920 */
|
|
|
|
|
|
|
|
#ifdef SAMSUNG_YH925
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/adc-pp5020.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/usb-fw-pp502x.c
|
|
|
|
target/arm/samsung/akcodec-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/button-yh82x_yh92x.c
|
|
|
|
target/arm/samsung/power-yh82x_yh92x.c
|
|
|
|
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 /* SIMULATOR */
|
|
|
|
#endif /* SAMSUNG_YH925 */
|
2009-07-29 20:42:02 +00:00
|
|
|
|
|
|
|
#ifdef SAMSUNG_YPS3
|
|
|
|
/* TODO: currently including all files for the bootloader DFU test program */
|
2010-05-30 21:43:14 +00:00
|
|
|
tuner.c
|
|
|
|
drivers/tuner/si4700.c
|
2009-07-29 20:42:02 +00:00
|
|
|
target/arm/s5l8700/adc-s5l8700.c
|
|
|
|
target/arm/s5l8700/i2c-s5l8700.c
|
|
|
|
target/arm/s5l8700/kernel-s5l8700.c
|
|
|
|
target/arm/s5l8700/timer-s5l8700.c
|
2009-08-03 14:24:28 +00:00
|
|
|
target/arm/s5l8700/wmcodec-s5l8700.c
|
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
|
2010-02-01 16:41:03 +00:00
|
|
|
#ifndef SIMULATOR
|
2010-01-18 19:05:20 +00:00
|
|
|
drivers/synaptics-mep.c
|
|
|
|
target/arm/ata-as-arm.S
|
|
|
|
target/arm/ata-pp5020.c
|
|
|
|
target/arm/wmcodec-pp.c
|
|
|
|
target/arm/i2s-pp.c
|
|
|
|
target/arm/adc-pp5020.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
|
|
|
|
target/arm/usb-fw-pp502x.c
|
2010-02-01 16:41:03 +00:00
|
|
|
#endif /* SIMULATOR */
|
2010-01-18 19:05:20 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-26 21:40:00 +00:00
|
|
|
#ifdef MPIO_HD200
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
/* TODO: currently including all files */
|
2010-11-12 21:52:29 +00:00
|
|
|
target/coldfire/ata-as-coldfire.S
|
|
|
|
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
|
|
|
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
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/mpio/audio-mpio.c
|
|
|
|
target/coldfire/wmcodec-coldfire.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 /* SIMULATOR */
|
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
|
2010-11-26 23:28:08 +00:00
|
|
|
#ifdef MPIO_HD300
|
|
|
|
#ifndef SIMULATOR
|
|
|
|
/* TODO: currently including all files */
|
|
|
|
target/coldfire/ata-as-coldfire.S
|
|
|
|
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
|
|
|
|
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
|
|
|
|
#ifndef BOOTLOADER
|
|
|
|
target/coldfire/mpio/audio-mpio.c
|
|
|
|
target/coldfire/wmcodec-coldfire.c
|
|
|
|
target/coldfire/mpio/fmradio_i2c-mpio.c
|
|
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif
|
2010-08-02 20:34:47 +00:00
|
|
|
|
|
|
|
#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
|
2010-09-01 21:29:34 +00:00
|
|
|
target/hosted/android/fs-android.c
|
2010-08-02 20:34:47 +00:00
|
|
|
target/hosted/android/lcd-android.c
|
2010-09-01 21:29:34 +00:00
|
|
|
target/hosted/android/lc-android.c
|
2010-08-02 20:34:47 +00:00
|
|
|
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/kernel-android.c
|
|
|
|
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
|
|
|
|
thread.c
|
|
|
|
#endif
|