forked from len0rd/rockbox
Changes made: Combine bootloader/h10.c and bootloader/e200.c into a common bootloader file (bootloader/main-pp.c) to be used by all mi4 based PortalPlayer targets. The file bootloader/main-pp.c is based off the old bootloader/h10.c with some minor changes to allow it to work on the Sansa too. This effectively adds a Sansa bootloader. Define MODEL_NAME string in config-*.h for use in bootloader. Split crt0-pp.S into separate files for bootloader and normal builds. Bootloader code is now in crt0-pp-bl.S while normal build code stays in crt0-pp.S. Improvements to crt0-pp.S and crt0-pp-bl.S (mostly to make it more multiprocessor safe): * Leave space in bootloader at 0xe0-0xeb since scramble writes over there when it creates the mi4 file (don't leave space for iPods since it's not needed and all code in crt0-pp-bl.S needs to fit before the boot_table at 0x100). * Remove unused DEBUG and STUB code from crt0-pp.S. * Make CPU wait for COP to be sleeping when we put the COP to sleep. * Invalidate COP cache when COP wakes * Flush CPU cache before waking COP * Make sure only the CPU clears the BSS (not the COP) * Make sure only the CPU sets up its own stack (not the COP) Rolo works on H10, so enable it. Make Sansa e200 use rockbox.e200 rather than PP5022.mi4 for 'Normal' builds. This makes updating rockbox simpler as we don't need to go through the firmware update procedure, but rather just put a new rockbox.e200 on the device. rockbox.e200 uses a simple 'add' checksum. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11815 a1c6a512-1295-4272-9138-f99709370657
581 lines
13 KiB
Text
581 lines
13 KiB
Text
ata_idle_notify.c
|
|
backlight.c
|
|
buffer.c
|
|
id3.c
|
|
powermgmt.c
|
|
system.c
|
|
usb.c
|
|
#ifdef ROCKBOX_HAS_LOGF
|
|
logf.c
|
|
#endif /* ROCKBOX_HAS_LOGF */
|
|
#ifndef SIMULATOR
|
|
#ifdef RB_PROFILE
|
|
profile.c
|
|
#endif /* RB_PROFILE */
|
|
hwcompat.c
|
|
kernel.c
|
|
rolo.c
|
|
thread.c
|
|
timer.c
|
|
#endif /* SIMULATOR */
|
|
#if !defined(WIN32) || defined(SDL)
|
|
panic.c
|
|
debug.c
|
|
#endif /* !defined(WIN32) || defined(SDL) */
|
|
|
|
/* Common */
|
|
common/atoi.c
|
|
common/crc32.c
|
|
common/ctype.c
|
|
#ifndef SIMULATOR
|
|
common/dir.c
|
|
common/file.c
|
|
#endif /* SIMULATOR */
|
|
#ifdef HAVE_DIRCACHE
|
|
common/dircache.c
|
|
#endif /* HAVE_DIRCACHE */
|
|
common/disk.c
|
|
#if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
|
|
common/errno.c
|
|
#endif /* !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) */
|
|
common/memcmp.c
|
|
common/memchr.c
|
|
common/qsort.c
|
|
common/random.c
|
|
common/sprintf.c
|
|
common/strcasecmp.c
|
|
common/strcasestr.c
|
|
common/strcat.c
|
|
common/strchr.c
|
|
common/strcmp.c
|
|
common/strcpy.c
|
|
common/strncmp.c
|
|
common/strncpy.c
|
|
common/strrchr.c
|
|
common/strtok.c
|
|
common/timefuncs.c
|
|
common/unicode.c
|
|
|
|
/* Display */
|
|
#ifdef HAVE_LCD_CHARCELLS
|
|
drivers/lcd-player-charset.c
|
|
drivers/lcd-player.c
|
|
#endif /* HAVE_LCD_CHARCELLS */
|
|
|
|
#ifdef HAVE_LCD_BITMAP
|
|
arabjoin.c
|
|
bidi.c
|
|
font_cache.c
|
|
font.c
|
|
hangul.c
|
|
lru.c
|
|
#if LCD_DEPTH == 1
|
|
drivers/lcd-1bit-vert.c
|
|
#elif LCD_DEPTH == 2
|
|
#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
|
|
drivers/lcd-2bit-horz.c
|
|
#elif LCD_PIXELFORMAT == VERTICAL_PACKING
|
|
drivers/lcd-2bit-vert.c
|
|
#endif /* LCD_PIXELFORMAT */
|
|
#elif LCD_DEPTH == 16
|
|
drivers/lcd-16bit.c
|
|
#endif /* LCD_DEPTH */
|
|
#endif /* HAVE_LCD_BITMAP */
|
|
|
|
#ifdef HAVE_REMOTE_LCD
|
|
#if LCD_REMOTE_DEPTH == 1
|
|
drivers/lcd-h100-remote.c
|
|
#elif LCD_REMOTE_DEPTH == 2
|
|
drivers/lcd-remote-2bit-vi.c
|
|
#endif /* LCD_REMOTE_DEPTH */
|
|
#endif /* HAVE_REMOTE_LCD */
|
|
|
|
/* Misc. */
|
|
drivers/led.c
|
|
#ifndef TARGET_TREE
|
|
drivers/adc.c
|
|
drivers/power.c
|
|
#endif /* TARGET_TREE */
|
|
#ifndef SIMULATOR
|
|
drivers/button.c
|
|
drivers/dac.c
|
|
drivers/serial.c
|
|
#endif /* SIMULATOR */
|
|
|
|
/* Storage */
|
|
#ifndef SIMULATOR
|
|
#ifdef HAVE_MMC
|
|
drivers/ata_mmc.c
|
|
#else /* !HAVE_MMC */
|
|
#ifdef HAVE_FLASH_DISK
|
|
drivers/ata_flash.c
|
|
#else /* !HAVE_FLASH_DISK */
|
|
#ifndef SANSA_E200
|
|
drivers/ata.c
|
|
#endif /* SANSA_E200 */
|
|
#endif /* HAVE_FLASH_DISK */
|
|
#endif /* HAVE_MMC */
|
|
drivers/fat.c
|
|
#endif /* SIMULATOR */
|
|
|
|
/* EEPROM */
|
|
#ifdef HAVE_EEPROM
|
|
drivers/eeprom_24cxx.c
|
|
#ifdef HAVE_EEPROM_SETTINGS
|
|
eeprom_settings.c
|
|
#endif /* HAVE_EEPROM_SETTINGS */
|
|
#endif /* HAVE_EEPROM */
|
|
|
|
/* RTC */
|
|
#ifndef SIMULATOR
|
|
#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
|
|
#endif /* (CONFIG_RTC == RTC_) */
|
|
#endif /* SIMULATOR */
|
|
|
|
/* Tuner */
|
|
#ifdef CONFIG_TUNER
|
|
#ifndef SIMULATOR
|
|
#if (CONFIG_TUNER & S1A0903X01)
|
|
drivers/fmradio.c
|
|
tuner_samsung.c
|
|
#endif /* (CONFIG_TUNER & S1A0903X01) */
|
|
#if (CONFIG_TUNER & TEA5767)
|
|
drivers/fmradio_i2c.c
|
|
tuner_philips.c
|
|
#endif /* (CONFIG_TUNER & TEA5767) */
|
|
#endif /*SIMULATOR */
|
|
#endif /* CONFIG_TUNER */
|
|
|
|
/* Sound */
|
|
mp3_playback.c
|
|
mp3data.c
|
|
sound.c
|
|
|
|
#if CONFIG_CODEC == SWCODEC
|
|
|
|
#ifndef BOOTLOADER
|
|
general.c
|
|
pcm_sampr.c
|
|
replaygain.c
|
|
#ifndef SIMULATOR
|
|
pcm_playback.c
|
|
#endif /* SIMULATOR */
|
|
#ifdef HAVE_RECORDING
|
|
enc_base.c
|
|
#ifndef SIMULATOR
|
|
pcm_record.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* HAVE_RECORDING */
|
|
#endif /* BOOTLOADER */
|
|
|
|
#else /* !SWCODEC */
|
|
|
|
#ifndef BOOTLOADER
|
|
mpeg.c
|
|
#ifndef SIMULATOR
|
|
drivers/mas.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* BOOTLOADER */
|
|
|
|
#endif /* SWCODEC */
|
|
|
|
/* Audio codec */
|
|
#ifndef SIMULATOR
|
|
#if defined(HAVE_UDA1380)
|
|
drivers/uda1380.c
|
|
#elif defined(HAVE_WM8975) || defined(HAVE_WM8751)
|
|
drivers/wm8975.c
|
|
#elif defined(HAVE_WM8758)
|
|
drivers/wm8758.c
|
|
#elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
|
|
drivers/wm8731l.c
|
|
#elif defined(HAVE_TLV320)
|
|
drivers/tlv320.c
|
|
#endif /* defined(HAVE_*) */
|
|
#endif /* SIMULATOR */
|
|
|
|
/* USBOTG */
|
|
#if !defined(SIMULATOR) && !defined(BOOTLOADER)
|
|
#if CONFIG_USBOTG == USBOTG_ISP1362
|
|
drivers/isp1362.c
|
|
#elif CONFIG_USBOTG == USBOTG_M5636
|
|
drivers/m5636.c
|
|
#endif /* CONFIG_USBOTG */
|
|
#endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
|
|
|
|
/* CPU Specific - By class then particular chip if applicable */
|
|
#if defined(CPU_SH)
|
|
|
|
#ifndef SIMULATOR
|
|
bitswap.S
|
|
descramble.S
|
|
drivers/i2c.c
|
|
target/sh/crt0.S
|
|
target/sh/memcpy-sh.S
|
|
target/sh/memmove-sh.S
|
|
target/sh/memset-sh.S
|
|
target/sh/strlen-sh.S
|
|
#endif /* SIMULATOR */
|
|
|
|
#elif defined(CPU_COLDFIRE)
|
|
|
|
common/strlen.c
|
|
#ifndef SIMULATOR
|
|
target/coldfire/crt0.S
|
|
target/coldfire/memcpy-coldfire.S
|
|
target/coldfire/memmove-coldfire.S
|
|
target/coldfire/memset-coldfire.S
|
|
#ifdef HAVE_LCD_COLOR
|
|
target/coldfire/memset16-coldfire.S
|
|
#endif /* HAVE_LCD_COLOR */
|
|
target/coldfire/system-coldfire.c
|
|
#ifndef BOOTLOADER
|
|
target/coldfire/pcm-coldfire.c
|
|
#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 */
|
|
common/memcpy.c
|
|
common/memmove.c
|
|
common/strlen.c
|
|
#ifndef SIMULATOR
|
|
target/arm/memset-arm.S
|
|
target/arm/memset16-arm.S
|
|
#if CONFIG_I2C == I2C_PP5020
|
|
drivers/i2c-pp5020.c
|
|
#elif CONFIG_I2C == I2C_PP5002
|
|
drivers/i2c-pp5002.c
|
|
#elif CONFIG_I2C == I2C_PNX0101
|
|
drivers/i2c-pnx0101.c
|
|
#elif CONFIG_I2C == I2C_S3C2440
|
|
/* no i2c driver yet */
|
|
#endif
|
|
#if defined(CPU_PP)
|
|
#ifdef BOOTLOADER
|
|
target/arm/crt0-pp-bl.S
|
|
#else
|
|
target/arm/pcm-pp.c
|
|
target/arm/audio-pp.c
|
|
target/arm/crt0-pp.S
|
|
#endif
|
|
#elif defined(CPU_ARM)
|
|
target/arm/crt0.S
|
|
#endif /* defined(CPU_*) */
|
|
#endif /* SIMULATOR */
|
|
|
|
#else
|
|
|
|
common/memcpy.c
|
|
common/memmove.c
|
|
common/memset.c
|
|
common/memset16.c
|
|
common/strlen.c
|
|
#ifndef SIMULATOR
|
|
crt0.S
|
|
drivers/i2c.c
|
|
#endif /* SIMULATOR */
|
|
|
|
#endif /* defined(CPU_*) */
|
|
|
|
#ifdef ARCHOS_PLAYER
|
|
#ifndef SIMULATOR
|
|
target/sh/archos/ata-archos.c
|
|
target/sh/archos/ata-as-archos.S
|
|
target/sh/archos/player/button-player.c
|
|
target/sh/archos/player/lcd-as-player.S
|
|
#endif /* SIMULATOR */
|
|
#endif /* ARCHOS_PLAYER */
|
|
|
|
#ifdef ARCHOS_RECORDER
|
|
#ifndef SIMULATOR
|
|
target/sh/archos/ata-archos.c
|
|
target/sh/archos/ata-as-archos.S
|
|
target/sh/archos/lcd-archos-bitmap.c
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
|
target/sh/archos/recorder/button-recorder.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* ARCHOS_RECORDER */
|
|
|
|
#if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
|
|
#ifndef SIMULATOR
|
|
target/sh/archos/ata-archos.c
|
|
target/sh/archos/ata-as-archos.S
|
|
target/sh/archos/lcd-archos-bitmap.c
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
|
target/sh/archos/fm_v2/button-fm_v2.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
|
|
|
|
#if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
|
|
#ifndef SIMULATOR
|
|
target/sh/archos/lcd-archos-bitmap.c
|
|
target/sh/archos/lcd-as-archos-bitmap.S
|
|
target/sh/archos/ondio/button-ondio.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
|
|
|
|
#ifdef SANSA_E200
|
|
#ifndef SIMULATOR
|
|
target/arm/sandisk/sansa-e200/ata-e200.c
|
|
target/arm/sandisk/sansa-e200/lcd-e200.c
|
|
target/arm/sandisk/sansa-e200/adc-e200.c
|
|
target/arm/sandisk/sansa-e200/backlight-e200.c
|
|
target/arm/sandisk/sansa-e200/usb-e200.c
|
|
target/arm/sandisk/sansa-e200/button-e200.c
|
|
target/arm/sandisk/sansa-e200/power-e200.c
|
|
target/arm/i2s-pp.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* SANSA_E200 */
|
|
|
|
#ifdef IAUDIO_X5
|
|
target/coldfire/iaudio/x5/power-x5.c
|
|
#ifndef SIMULATOR
|
|
target/coldfire/ata-as-coldfire.S
|
|
target/coldfire/pcf50606-coldfire.c
|
|
target/coldfire/iaudio/x5/adc-x5.c
|
|
target/coldfire/iaudio/x5/ata-x5.c
|
|
target/coldfire/iaudio/x5/backlight-x5.c
|
|
target/coldfire/iaudio/x5/button-x5.c
|
|
target/coldfire/iaudio/x5/lcd-as-x5.S
|
|
target/coldfire/iaudio/x5/lcd-remote-x5.c
|
|
target/coldfire/iaudio/x5/lcd-x5.c
|
|
target/coldfire/iaudio/x5/m5636-x5.c
|
|
target/coldfire/iaudio/x5/pcf50606-x5.c
|
|
target/coldfire/iaudio/x5/system-x5.c
|
|
target/coldfire/iaudio/x5/usb-x5.c
|
|
#ifndef BOOTLOADER
|
|
target/coldfire/iaudio/x5/audio-x5.c
|
|
#endif
|
|
#endif /* SIMULATOR */
|
|
#endif /* IAUDIO_X5 */
|
|
|
|
#ifdef IRIVER_IFP7XX_SERIES
|
|
#ifdef STUB
|
|
usb_serial.c
|
|
common/sscanf.c
|
|
#endif /* STUB */
|
|
#endif /* IRIVER_IFP7XX_SERIES */
|
|
|
|
#ifdef IRIVER_H300_SERIES
|
|
target/coldfire/iriver/h300/power-h300.c
|
|
#ifndef SIMULATOR
|
|
target/coldfire/ata-as-coldfire.S
|
|
target/coldfire/pcf50606-coldfire.c
|
|
target/coldfire/iriver/ata-iriver.c
|
|
target/coldfire/iriver/system-iriver.c
|
|
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
|
|
target/coldfire/iriver/h300/lcd-as-h300.S
|
|
target/coldfire/iriver/h300/lcd-h300.c
|
|
target/coldfire/iriver/h300/usb-h300.c
|
|
#ifndef BOOTLOADER
|
|
target/coldfire/iriver/audio-iriver.c
|
|
#endif
|
|
#endif /* SIMULATOR */
|
|
#endif /* IRIVER_H300_SERIES */
|
|
|
|
#ifdef IRIVER_H100_SERIES
|
|
target/coldfire/iriver/h100/power-h100.c
|
|
#ifndef SIMULATOR
|
|
target/coldfire/ata-as-coldfire.S
|
|
target/coldfire/iriver/ata-iriver.c
|
|
target/coldfire/iriver/system-iriver.c
|
|
target/coldfire/iriver/h100/adc-h100.c
|
|
target/coldfire/iriver/h100/backlight-h100.c
|
|
target/coldfire/iriver/h100/button-h100.c
|
|
target/coldfire/iriver/h100/lcd-as-h100.S
|
|
target/coldfire/iriver/h100/lcd-h100.c
|
|
#ifndef BOOTLOADER
|
|
target/coldfire/iriver/audio-iriver.c
|
|
target/coldfire/iriver/h100/spdif-h100.c
|
|
#endif
|
|
target/coldfire/iriver/h100/usb-h100.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IRIVER_H100_SERIES */
|
|
|
|
#ifdef IRIVER_H10
|
|
#ifndef SIMULATOR
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/iriver/h10/adc-h10.c
|
|
target/arm/iriver/h10/backlight-h10.c
|
|
target/arm/iriver/h10/button-h10.c
|
|
target/arm/iriver/h10/lcd-h10_20gb.c
|
|
target/arm/iriver/h10/power-h10.c
|
|
target/arm/iriver/h10/usb-h10.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IRIVER_H10 */
|
|
|
|
#ifdef IRIVER_H10_5GB
|
|
#ifndef SIMULATOR
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/iriver/h10/adc-h10.c
|
|
target/arm/iriver/h10/backlight-h10.c
|
|
target/arm/iriver/h10/button-h10.c
|
|
target/arm/iriver/h10/lcd-h10_5gb.c
|
|
target/arm/iriver/h10/power-h10.c
|
|
target/arm/iriver/h10/usb-h10.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IRIVER_H10_5GB */
|
|
|
|
#ifdef GIGABEAT_F
|
|
#ifndef SIMULATOR
|
|
drivers/generic_i2c.c
|
|
target/arm/gigabeat/meg-fx/adc-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/ata-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/backlight-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/button-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/i2c-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/lcd-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/power-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/sc606-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/usb-meg-fx.c
|
|
target/arm/gigabeat/meg-fx/wmcodec-meg-fx.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* GIGABEAT_F */
|
|
|
|
#ifdef ELIO_TPJ1022
|
|
#ifndef SIMULATOR
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/tatung/tpj1022/adc-tpj1022.c
|
|
target/arm/tatung/tpj1022/backlight-tpj1022.c
|
|
target/arm/tatung/tpj1022/button-tpj1022.c
|
|
target/arm/tatung/tpj1022/lcd-tpj1022.c
|
|
target/arm/tatung/tpj1022/power-tpj1022.c
|
|
target/arm/tatung/tpj1022/usb-tpj1022.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* ELIO_TPJ1022 */
|
|
|
|
#ifdef IPOD_4G
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipod.c
|
|
drivers/pcf50605.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ata-pp5020.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/backlight-4g_color.c
|
|
target/arm/ipod/button-clickwheel.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_4G */
|
|
|
|
#ifdef IPOD_COLOR
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipod.c
|
|
drivers/pcf50605.c
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/backlight-4g_color.c
|
|
target/arm/ipod/button-clickwheel.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_COLOR */
|
|
|
|
#ifdef IPOD_NANO
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipod.c
|
|
drivers/pcf50605.c
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/backlight-nano_video.c
|
|
target/arm/ipod/button-clickwheel.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_NANO */
|
|
|
|
#ifdef IPOD_VIDEO
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipodvideo.c
|
|
drivers/pcf50605.c
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/backlight-nano_video.c
|
|
target/arm/ipod/button-clickwheel.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_VIDEO */
|
|
|
|
#ifdef IPOD_3G
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipod.c
|
|
drivers/pcf50605.c
|
|
target/arm/ata-pp5002.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/3g/backlight-3g.c
|
|
target/arm/ipod/3g/button-3g.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_3G */
|
|
|
|
#ifdef IPOD_MINI
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipod.c
|
|
drivers/pcf50605.c
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/backlight-mini1g_mini2g.c
|
|
target/arm/ipod/button-mini1g.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_MINI */
|
|
|
|
#ifdef IPOD_MINI2G
|
|
#ifndef SIMULATOR
|
|
drivers/lcd-ipod.c
|
|
drivers/pcf50605.c
|
|
target/arm/ata-pp5020.c
|
|
target/arm/wmcodec-pp.c
|
|
target/arm/i2s-pp.c
|
|
target/arm/ipod/adc-ipod.c
|
|
target/arm/ipod/backlight-mini1g_mini2g.c
|
|
target/arm/ipod/button-clickwheel.c
|
|
target/arm/ipod/power-ipod.c
|
|
target/arm/ipod/usb-ipod.c
|
|
#endif /* SIMULATOR */
|
|
#endif /* IPOD_MINI2G */
|
|
|
|
#ifdef IRIVER_IFP7XX
|
|
target/arm/iriver/ifp7xx/power-ifp7xx.c
|
|
#ifndef SIMULATOR
|
|
target/arm/iriver/ifp7xx/adc-ifp7xx.c
|
|
target/arm/iriver/ifp7xx/backlight-ifp7xx.c
|
|
target/arm/iriver/ifp7xx/button-ifp7xx.c
|
|
target/arm/iriver/ifp7xx/lcd-ifp7xx.c
|
|
target/arm/iriver/ifp7xx/usb-ifp7xx.c
|
|
#endif
|
|
#endif
|