summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-05-02 19:12:09 +0000
committerDave Chapman <dave@dchapman.com>2008-05-02 19:12:09 +0000
commitf2042983f08cd49404be0b6916fc73d778fe8dba (patch)
tree33a84414ca4d94770f900e92074c18ecadf23ed7 /firmware/SOURCES
parent4cf4b5c2aef075b719e834f30d17c0986fadb658 (diff)
downloadrockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.tar.gz
rockbox-f2042983f08cd49404be0b6916fc73d778fe8dba.zip
Add the Sansa M200 (v1) as a target - it's extremely similar to the Logik DAX (the LCD driver worked unchanged). Plus various tcc77x work, including a working tick interrupt (enabled in the bootloader). Rockbox itself builds for the M200 (there are no keymaps yet for the DAX), but doesn't progress very far due to the lack of an ATA (NAND flash) driver.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17306 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES33
1 files changed, 31 insertions, 2 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 367e8c146b..5a82cd3216 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -151,6 +151,8 @@ drivers/rtc/rtc_rx5x348ab.c
151drivers/rtc/rtc_mr100.c 151drivers/rtc/rtc_mr100.c
152#elif (CONFIG_RTC == RTC_MC13783) 152#elif (CONFIG_RTC == RTC_MC13783)
153drivers/rtc/rtc_mc13783.c 153drivers/rtc/rtc_mc13783.c
154#elif (CONFIG_RTC == RTC_TCC77X)
155drivers/rtc/rtc_tcc77x.c
154#endif /* (CONFIG_RTC == RTC_) */ 156#endif /* (CONFIG_RTC == RTC_) */
155#endif /* SIMULATOR */ 157#endif /* SIMULATOR */
156 158
@@ -316,7 +318,7 @@ target/arm/ffs-arm.S
316target/arm/i2c-pp.c 318target/arm/i2c-pp.c
317#elif CONFIG_I2C == I2C_PNX0101 319#elif CONFIG_I2C == I2C_PNX0101
318target/arm/pnx0101/i2c-pnx0101.c 320target/arm/pnx0101/i2c-pnx0101.c
319#elif CONFIG_I2C == I2C_TCC780X 321#elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X
320target/arm/i2c-telechips.c 322target/arm/i2c-telechips.c
321#elif CONFIG_I2C == I2C_S3C2440 323#elif CONFIG_I2C == I2C_S3C2440
322/* no i2c driver yet */ 324/* no i2c driver yet */
@@ -919,10 +921,37 @@ target/arm/pnx0101/pcm-pnx0101.c
919#ifndef SIMULATOR 921#ifndef SIMULATOR
920target/arm/tcc77x/adc-tcc77x.c 922target/arm/tcc77x/adc-tcc77x.c
921target/arm/tcc77x/ata-nand-tcc77x.c 923target/arm/tcc77x/ata-nand-tcc77x.c
922target/arm/tcc77x/system-tcc77x.c 924target/arm/tcc77x/kernel-tcc77x.c
923target/arm/tcc77x/lcd-ssd1815.c 925target/arm/tcc77x/lcd-ssd1815.c
926target/arm/tcc77x/powermgmt-tcc77x.c
927target/arm/tcc77x/system-tcc77x.c
928target/arm/tcc77x/timer-tcc77x.c
929target/arm/tcc77x/usb-tcc77x.c
924target/arm/tcc77x/logikdax/button-logikdax.c 930target/arm/tcc77x/logikdax/button-logikdax.c
925target/arm/tcc77x/logikdax/power-logikdax.c 931target/arm/tcc77x/logikdax/power-logikdax.c
932#ifndef BOOTLOADER
933target/arm/tcc77x/debug-tcc77x.c
934target/arm/tcc77x/pcm-tcc77x.c
935#endif /* BOOTLOADER */
936#endif /* SIMULATOR */
937#endif /* LOGIK_DAX */
938
939#ifdef SANSA_M200
940#ifndef SIMULATOR
941target/arm/tcc77x/adc-tcc77x.c
942target/arm/tcc77x/ata-nand-tcc77x.c
943target/arm/tcc77x/kernel-tcc77x.c
944target/arm/tcc77x/lcd-ssd1815.c
945target/arm/tcc77x/powermgmt-tcc77x.c
946target/arm/tcc77x/system-tcc77x.c
947target/arm/tcc77x/timer-tcc77x.c
948target/arm/tcc77x/usb-tcc77x.c
949target/arm/tcc77x/m200/button-m200.c
950target/arm/tcc77x/m200/power-m200.c
951#ifndef BOOTLOADER
952target/arm/tcc77x/debug-tcc77x.c
953target/arm/tcc77x/pcm-tcc77x.c
954#endif /* BOOTLOADER */
926#endif /* SIMULATOR */ 955#endif /* SIMULATOR */
927#endif /* LOGIK_DAX */ 956#endif /* LOGIK_DAX */
928 957