Fix handling of 8 bit mono and stereo APE files, and also optimise 16 and 24 bit...
[maemo-rb.git] / firmware / SOURCES
blob711a7c0c56c7ab1074e02d950d77d527699de1ba
1 ata_idle_notify.c
2 events.c
3 backlight.c
4 buffer.c
5 powermgmt.c
6 system.c
7 usb.c
8 #ifdef ROCKBOX_HAS_LOGF
9 logf.c
10 #endif /* ROCKBOX_HAS_LOGF */
11 kernel.c
12 #ifndef SIMULATOR
13 #ifdef RB_PROFILE
14 profile.c
15 #endif /* RB_PROFILE */
16 rolo.c
17 thread.c
18 timer.c
19 #endif /* SIMULATOR */
20 panic.c
21 debug.c
23 /* Common */
24 common/atoi.c
25 common/crc32.c
26 #ifdef MI4_FORMAT
27 common/crc32-mi4.c
28 #endif
29 common/ctype.c
30 #ifndef SIMULATOR
31 common/dir_uncached.c
32 common/file.c
33 #endif /* SIMULATOR */
34 #ifdef HAVE_DIRCACHE
35 common/dircache.c
36 #endif /* HAVE_DIRCACHE */
37 common/disk.c
38 #if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
39 common/errno.c
40 #endif /* !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) */
41 common/memcmp.c
42 common/memchr.c
43 common/qsort.c
44 common/random.c
45 common/sprintf.c
46 common/strcasecmp.c
47 common/strcasestr.c
48 common/strcat.c
49 common/strchr.c
50 common/strcmp.c
51 common/strcpy.c
52 common/strncmp.c
53 common/strncpy.c
54 common/strrchr.c
55 common/strtok.c
56 common/strstr.c
57 common/structec.c
58 common/timefuncs.c
59 common/unicode.c
61 /* Display */
62 scroll_engine.c
64 #ifdef HAVE_LCD_CHARCELLS
65 drivers/lcd-charcell.c
66 drivers/lcd-charset-player.c
67 #endif /* HAVE_LCD_CHARCELLS */
69 #ifdef HAVE_LCD_BITMAP
70 arabjoin.c
71 bidi.c
72 font_cache.c
73 font.c
74 hangul.c
75 lru.c
76 #if LCD_DEPTH == 1
77 drivers/lcd-1bit-vert.c
78 #elif LCD_DEPTH == 2
79 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
80 drivers/lcd-2bit-horz.c
81 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
82 drivers/lcd-2bit-vert.c
83 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
84 drivers/lcd-2bit-vi.c
85 #endif /* LCD_PIXELFORMAT */
86 #elif LCD_DEPTH == 16
87 drivers/lcd-16bit.c
88 #endif /* LCD_DEPTH */
89 #endif /* HAVE_LCD_BITMAP */
91 #ifdef HAVE_REMOTE_LCD
92 #if LCD_REMOTE_DEPTH == 1
93 drivers/lcd-remote-1bit-v.c
94 #elif LCD_REMOTE_DEPTH == 2
95 drivers/lcd-remote-2bit-vi.c
96 #endif /* LCD_REMOTE_DEPTH */
97 #endif /* HAVE_REMOTE_LCD */
99 #ifdef USE_BACKLIGHT_SW_FADING
100 backlight-thread-fading.c
101 #endif /* USE_BACKLIGHT_SW_FADING */
103 /* Misc. */
104 drivers/led.c
105 drivers/button.c
106 #ifndef SIMULATOR
107 #ifdef HAVE_DAC3550A
108 drivers/dac.c
109 #endif
110 drivers/serial.c
111 #endif /* SIMULATOR */
114 /* Storage */
115 #ifndef SIMULATOR
116 #if (CONFIG_STORAGE & STORAGE_MMC)
117 drivers/ata_mmc.c
118 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
119 drivers/ata_flash.c
120 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
121 target/arm/ata-nand-telechips.c
122 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
123 target/arm/s5l8700/ata-nand-s5l8700.c
124 #elif (CONFIG_STORAGE & STORAGE_ATA)
125 drivers/ata.c
126 #elif (CONFIG_STORAGE & STORAGE_RAMDISK)
127 drivers/ramdisk.c
128 #endif /* CONFIG_STORAGE */
129 drivers/fat.c
130 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
131 hotswap.c
132 #endif
133 #endif /* SIMULATOR */
135 /* EEPROM */
136 #ifdef HAVE_EEPROM
137 drivers/eeprom_24cxx.c
138 #ifdef HAVE_EEPROM_SETTINGS
139 eeprom_settings.c
140 #endif /* HAVE_EEPROM_SETTINGS */
141 #endif /* HAVE_EEPROM */
143 /* RTC */
144 #ifndef SIMULATOR
145 #if (CONFIG_RTC == RTC_M41ST84W)
146 drivers/rtc/rtc_m41st84w.c
147 #elif (CONFIG_RTC == RTC_PCF50606)
148 drivers/rtc/rtc_pcf50606.c
149 #elif (CONFIG_RTC == RTC_PCF50605)
150 drivers/rtc/rtc_pcf50605.c
151 #elif (CONFIG_RTC == RTC_E8564)
152 drivers/rtc/rtc_e8564.c
153 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
154 drivers/rtc/rtc_ds1339_ds3231.c
155 #elif (CONFIG_RTC == RTC_S3C2440)
156 drivers/rtc/rtc_s3c2440.c
157 #elif (CONFIG_RTC == RTC_AS3514)
158 drivers/rtc/rtc_as3514.c
159 #elif (CONFIG_RTC == RTC_RX5X348AB)
160 drivers/rtc/rtc_rx5x348ab.c
161 #elif (CONFIG_RTC == RTC_MR100)
162 drivers/rtc/rtc_mr100.c
163 #elif (CONFIG_RTC == RTC_MC13783)
164 drivers/rtc/rtc_mc13783.c
165 #elif (CONFIG_RTC == RTC_TCC77X)
166 drivers/rtc/rtc_tcc77x.c
167 #elif (CONFIG_RTC == RTC_JZ47XX)
168 drivers/rtc/rtc_jz4740.c
169 #endif /* (CONFIG_RTC == RTC_) */
170 #endif /* SIMULATOR */
172 /* Tuner */
173 #if CONFIG_TUNER
174 tuner.c
175 #ifndef SIMULATOR
176 #if (CONFIG_TUNER & LV24020LP)
177 drivers/tuner/lv24020lp.c
178 #endif /* (CONFIG_TUNER & LV24020LP) */
179 #if (CONFIG_TUNER & S1A0903X01)
180 drivers/fmradio.c
181 drivers/tuner/s1a0903x01.c
182 #endif /* (CONFIG_TUNER & S1A0903X01) */
183 #if (CONFIG_TUNER & TEA5767)
184 drivers/tuner/tea5767.c
185 #endif /* (CONFIG_TUNER & TEA5767) */
186 #if (CONFIG_TUNER & SI4700)
187 drivers/tuner/si4700.c
188 #endif /* (CONFIG_TUNER & SI4700) */
189 #endif /*SIMULATOR */
190 #endif /* CONFIG_TUNER */
192 /* Sound */
193 #if CONFIG_CODEC != SWCODEC
194 mp3_playback.c
195 #endif /* CONFIG_CODEC != SWCODEC */
196 sound.c
198 #if CONFIG_CODEC == SWCODEC
200 #ifndef BOOTLOADER
201 general.c
202 pcm_sampr.c
203 pcm.c
204 #ifdef HAVE_RECORDING
205 enc_base.c
206 #endif /* HAVE_RECORDING */
207 #endif /* BOOTLOADER */
209 #else  /* !SWCODEC */
211 #ifndef BOOTLOADER
212 #ifndef SIMULATOR
213 drivers/mas.c
214 #endif /* SIMULATOR */
215 #endif /* BOOTLOADER */
217 #endif /* SWCODEC */
219 /* Audio codec */
220 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
221 #if defined(HAVE_UDA1380)
222 drivers/audio/uda1380.c
223 #elif defined(HAVE_WM8751)
224 drivers/audio/wm8751.c
225 #elif defined(HAVE_WM8978)
226 drivers/audio/wm8978.c
227 #elif defined(HAVE_WM8975)
228 drivers/audio/wm8975.c
229 #elif defined(HAVE_WM8985)
230 drivers/audio/wm8985.c
231 #elif defined(HAVE_WM8758)
232 drivers/audio/wm8758.c
233 #elif defined(HAVE_WM8711) \
234    || defined(HAVE_WM8721) \
235    || defined(HAVE_WM8731)
236 drivers/audio/wm8731.c
237 #elif defined(HAVE_AS3514)
238 drivers/audio/as3514.c
239 #elif defined(HAVE_TLV320)
240 drivers/audio/tlv320.c
241 #elif defined(HAVE_MAS35XX)
242 drivers/audio/mas35xx.c
243 #endif /* defined(HAVE_*) */
244 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
246 /* USB Stack */
247 #if !defined(SIMULATOR)
248 #ifdef HAVE_USBSTACK
249 usbstack/usb_core.c
250 usbstack/usb_storage.c
251 usbstack/usb_serial.c
252 usbstack/usb_charging_only.c
253 #if CONFIG_USBOTG == USBOTG_ARC
254 target/arm/usb-drv-arc.c
255 #elif CONFIG_USBOTG == USBOTG_ISP1583
256 drivers/isp1583.c
257 #endif
258 #else /* !defined(HAVE_USBSTACK) */
259 #if CONFIG_USBOTG == USBOTG_ISP1362      
260 drivers/isp1362.c
261 #elif CONFIG_USBOTG == USBOTG_M5636      
262 drivers/m5636.c
263 #endif
264 #endif /* !defined(HAVE_USBSTACK) */
265 #endif /* !defined(SIMULATOR) */
267 /* Other Random Hardware */
268 #ifdef HAVE_TSC2100
269 #if !defined(SIMULATOR)
270 drivers/tsc2100.c
271 drivers/audio/tsc2100.c
272 #endif /* !SIMULATOR */
273 #endif
275 /* CPU Specific - By class then particular chip if applicable */
276 #if defined(CPU_SH)
278 #ifndef SIMULATOR
279 drivers/i2c.c
280 target/sh/adc-sh.c
281 target/sh/bitswap.S
282 target/sh/crt0.S
283 target/sh/kernel-sh.c
284 target/sh/memcpy-sh.S
285 target/sh/memmove-sh.S
286 target/sh/memset-sh.S
287 target/sh/strlen-sh.S
288 target/sh/system-sh.c
289 target/sh/archos/descramble.S
290 #endif /* SIMULATOR */
292 #elif defined(CPU_COLDFIRE)
294 #ifndef SIMULATOR
295 target/coldfire/crt0.S
296 #ifdef HAVE_PRIORITY_SCHEDULING
297 common/ffs.c
298 target/coldfire/ffs-coldfire.S
299 #endif
300 target/coldfire/memcpy-coldfire.S
301 target/coldfire/memmove-coldfire.S
302 target/coldfire/memset-coldfire.S
303 target/coldfire/strlen-coldfire.S
304 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
305  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
306 target/coldfire/memset16-coldfire.S
307 #endif
308 target/coldfire/kernel-coldfire.c
309 target/coldfire/system-coldfire.c
310 #ifndef BOOTLOADER
311 target/coldfire/pcm-coldfire.c
312 #endif /* BOOTLOADER */
313 #if CONFIG_I2C == I2C_COLDFIRE
314 target/coldfire/i2c-coldfire.c
315 #endif /* CONFIG_I2C == I2C_COLDFIRE */
316 #endif /* SIMULATOR */
318 #elif defined(CPU_PP) || defined(CPU_ARM)
319 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
320 target/arm/memcpy-arm.S
321 target/arm/memmove-arm.S
322 common/strlen.c
323 #ifndef SIMULATOR
324 target/arm/memset-arm.S
325 target/arm/memset16-arm.S
326 #ifdef HAVE_PRIORITY_SCHEDULING
327 target/arm/ffs-arm.S
328 #endif
329 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
330 target/arm/i2c-pp.c
331 #elif CONFIG_I2C == I2C_PNX0101
332 target/arm/pnx0101/i2c-pnx0101.c
333 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
334 target/arm/i2c-telechips.c
335 #elif CONFIG_I2C == I2C_S3C2440
336 /* no i2c driver yet */
337 #endif
339 #if CONFIG_CPU == PNX0101
340 target/arm/pnx0101/kernel-pnx0101.c
341 target/arm/pnx0101/system-pnx0101.c
342 #endif
344 #if CONFIG_CPU == AS3525
345 target/arm/as3525/system-as3525.c
346 target/arm/as3525/kernel-as3525.c
347 target/arm/as3525/ata_sd_as3525.c
348 target/arm/as3525/power-as3525.c
349 target/arm/as3525/usb-as3525.c
350 target/arm/as3525/dma-pl081.c
351 target/arm/as3525/ascodec-as3525.c
352 #ifndef BOOTLOADER
353 target/arm/adc-as3514.c
354 target/arm/as3525/pcm-as3525.c
355 target/arm/as3525/audio-as3525.c
356 target/arm/as3525/debug-as3525.c
357 target/arm/as3525/i2s-as3525.c
358 target/arm/as3525/i2c-as3525.c
359 #endif /* BOOTLOADER */
360 #endif /* CONFIG_CPU == AS3525 */
362 #if defined(CPU_PP)
363 target/arm/kernel-pp.c
364 #if CONFIG_CPU == PP5002
365 target/arm/system-pp5002.c
366 #elif defined CPU_PP502x
367 target/arm/system-pp502x.c
368 #endif
369 #ifdef BOOTLOADER
370 target/arm/crt0-pp-bl.S
371 #else
372 target/arm/pcm-pp.c
373 #if !defined(SANSA_E200) && !defined(SANSA_C200)
374 target/arm/audio-pp.c
375 #endif /* SANSA_E200 */
376 target/arm/crt0-pp.S
377 #endif
378 #elif CONFIG_CPU == PNX0101
379 target/arm/pnx0101/crt0-pnx0101.S
380 #elif CONFIG_CPU==DM320
381 target/arm/tms320dm320/crt0.S
382 #elif CONFIG_CPU==S3C2440
383 target/arm/s3c2440/crt0.S
384 #elif defined(CPU_TCC77X)
385 target/arm/tcc77x/crt0.S
386 #elif defined(CPU_TCC780X)
387 target/arm/tcc780x/crt0.S
388 #elif CONFIG_CPU==IMX31L
389 target/arm/imx31/crt0.S
390 #elif CONFIG_CPU==S5L8700
391 target/arm/s5l8700/crt0.S
392 #elif defined(CPU_ARM)
393 target/arm/crt0.S
394 #endif /* defined(CPU_*) */
395 #endif /* SIMULATOR */
397 #elif defined(CPU_MIPS)
398 #undef mips
399 /*target/mips/memcpy.S
400 target/mips/memset.S
401 common/memset16.c
402 target/mips/strlen.S*/
403 common/memcpy.c
404 common/memmove.c
405 common/memset.c
406 common/memset16.c
407 common/strlen.c
408 #if CONFIG_CPU==JZ4732
409 target/mips/ingenic_jz47xx/crt0.S
410 #endif /* CONFIG_CPU == JZ4732 */
412 #else
414 #ifdef HAVE_PRIORITY_SCHEDULING
415 common/ffs.c
416 #endif
417 common/memcpy.c
418 common/memmove.c
419 common/memset.c
420 common/memset16.c
421 common/strlen.c
422 #ifndef SIMULATOR
423 crt0.S
424 drivers/i2c.c
425 #endif /* SIMULATOR */
427 #endif /* defined(CPU_*) */
429 #ifdef ARCHOS_PLAYER
430 #ifndef SIMULATOR
431 target/sh/archos/ata-archos.c
432 target/sh/archos/ata-as-archos.S
433 target/sh/archos/player/button-player.c
434 target/sh/archos/player/hwcompat-player.c
435 target/sh/archos/player/lcd-as-player.S
436 target/sh/archos/player/lcd-player.c
437 target/sh/archos/player/power-player.c
438 target/sh/archos/player/powermgmt-player.c
439 target/sh/archos/player/usb-player.c
440 #endif /* SIMULATOR */
441 #endif /* ARCHOS_PLAYER */
443 #ifdef ARCHOS_RECORDER
444 #ifndef SIMULATOR
445 target/sh/archos/ata-archos.c
446 target/sh/archos/ata-as-archos.S
447 target/sh/archos/lcd-archos-bitmap.c
448 target/sh/archos/lcd-as-archos-bitmap.S   
449 target/sh/archos/recorder/button-recorder.c
450 target/sh/archos/recorder/power-recorder.c
451 target/sh/archos/recorder/powermgmt-recorder.c
452 target/sh/archos/recorder/usb-recorder.c
453 #endif /* SIMULATOR */
454 #endif /* ARCHOS_RECORDER */
456 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
457 #ifndef SIMULATOR
458 target/sh/archos/ata-archos.c
459 target/sh/archos/ata-as-archos.S
460 target/sh/archos/lcd-archos-bitmap.c
461 target/sh/archos/lcd-as-archos-bitmap.S
462 target/sh/archos/fm_v2/button-fm_v2.c
463 target/sh/archos/fm_v2/power-fm_v2.c
464 target/sh/archos/fm_v2/powermgmt-fm_v2.c
465 target/sh/archos/fm_v2/usb-fm_v2.c
466 #endif /* SIMULATOR */
467 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
469 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
470 #ifndef SIMULATOR
471 target/sh/archos/lcd-archos-bitmap.c
472 target/sh/archos/lcd-as-archos-bitmap.S
473 target/sh/archos/ondio/button-ondio.c
474 target/sh/archos/ondio/power-ondio.c
475 target/sh/archos/ondio/powermgmt-ondio.c
476 target/sh/archos/ondio/usb-ondio.c
477 #if (CONFIG_TUNER & TEA5767)
478 target/sh/archos/ondio/fmradio_i2c-ondio.c
479 #endif
480 #endif /* SIMULATOR */
481 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
483 #ifdef SANSA_E200
484 #ifndef SIMULATOR
485 target/arm/lcd-as-memframe.S
486 target/arm/ata-sd-pp.c
487 target/arm/sandisk/sansa-e200/lcd-e200.c
488 target/arm/adc-as3514.c
489 target/arm/ascodec-pp.c
490 target/arm/sandisk/backlight-c200_e200.c
491 target/arm/usb-fw-pp502x.c
492 target/arm/sandisk/sansa-e200/button-e200.c
493 target/arm/sandisk/power-c200_e200.c
494 target/arm/sandisk/sansa-e200/powermgmt-e200.c
495 target/arm/i2s-pp.c
496 #ifndef BOOTLOADER
497 target/arm/sandisk/audio-c200_e200.c
498 #endif /* BOOTLOADER */
499 #endif /* SIMULATOR */
500 #endif /* SANSA_E200 */
502 #ifdef SANSA_C200
503 #ifndef SIMULATOR
504 target/arm/ata-sd-pp.c
505 target/arm/sandisk/sansa-c200/lcd-c200.c
506 target/arm/sandisk/sansa-c200/lcd-as-c200.S
507 target/arm/adc-as3514.c
508 target/arm/ascodec-pp.c
509 target/arm/sandisk/backlight-c200_e200.c
510 target/arm/usb-fw-pp502x.c
511 target/arm/sandisk/sansa-c200/button-c200.c
512 target/arm/sandisk/power-c200_e200.c
513 target/arm/sandisk/sansa-c200/powermgmt-c200.c
514 target/arm/i2s-pp.c
515 #ifndef BOOTLOADER
516 target/arm/sandisk/audio-c200_e200.c
517 #endif /* BOOTLOADER */
518 #endif /* SIMULATOR */
519 #endif /* SANSA_C200 */
521 #ifdef PHILIPS_SA9200
522 #ifndef SIMULATOR
523 target/arm/ata-sd-pp.c
524 target/arm/philips/sa9200/lcd-sa9200.c
525 target/arm/adc-as3514.c
526 target/arm/ascodec-pp.c
527 target/arm/philips/sa9200/backlight-sa9200.c
528 target/arm/usb-fw-pp502x.c
529 target/arm/philips/sa9200/button-sa9200.c
530 target/arm/philips/sa9200/power-sa9200.c
531 target/arm/philips/sa9200/powermgmt-sa9200.c
532 target/arm/i2s-pp.c
533 #endif /* SIMULATOR */
534 #endif /* PHILIPS_SA9200 */
536 #ifdef PHILIPS_HDD1630
537 #ifndef SIMULATOR
538 #ifndef BOOTLOADER
539 drivers/synaptics-mep.c
540 #endif /* BOOTLOADER */
541 target/arm/ata-as-arm.S
542 target/arm/ata-pp5020.c
543 target/arm/wmcodec-pp.c
544 target/arm/i2s-pp.c
545 target/arm/adc-pp5020.c
546 target/arm/philips/hdd1630/backlight-hdd1630.c
547 target/arm/philips/hdd1630/button-hdd1630.c
548 target/arm/philips/hdd1630/lcd-hdd1630.c
549 target/arm/philips/hdd1630/power-hdd1630.c
550 target/arm/philips/hdd1630/powermgmt-hdd1630.c
551 target/arm/usb-fw-pp502x.c
552 #endif /* SIMULATOR */
553 #endif /* PHILIPS_HDD1630 */
555 #ifdef IAUDIO_X5
556 #ifndef SIMULATOR
557 target/coldfire/ata-as-coldfire.S
558 target/coldfire/pcf50606-coldfire.c
559 target/coldfire/iaudio/adc-iaudio.c
560 target/coldfire/iaudio/ata-iaudio.c
561 target/coldfire/iaudio/lcd-remote-as-iaudio.S
562 target/coldfire/iaudio/lcd-remote-iaudio.c
563 target/coldfire/iaudio/pcf50606-iaudio.c
564 target/coldfire/iaudio/powermgmt-iaudio.c
565 target/coldfire/iaudio/system-iaudio.c
566 target/coldfire/iaudio/usb-iaudio.c
567 target/coldfire/iaudio/x5/backlight-x5.c
568 target/coldfire/iaudio/x5/button-x5.c
569 target/coldfire/iaudio/x5/ds2411-x5.c
570 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
571 target/coldfire/iaudio/x5/lcd-as-x5.S
572 target/coldfire/iaudio/x5/lcd-x5.c
573 target/coldfire/iaudio/x5/m5636-x5.c
574 target/coldfire/iaudio/x5/power-x5.c
575 #ifndef BOOTLOADER
576 target/coldfire/iaudio/x5/audio-x5.c
577 #endif
578 #endif /* SIMULATOR */
579 #endif /* IAUDIO_X5 */
581 #ifdef IAUDIO_M5
582 #ifndef SIMULATOR
583 target/coldfire/ata-as-coldfire.S
584 target/coldfire/pcf50606-coldfire.c
585 target/coldfire/iaudio/adc-iaudio.c
586 target/coldfire/iaudio/ata-iaudio.c
587 target/coldfire/iaudio/lcd-remote-as-iaudio.S
588 target/coldfire/iaudio/lcd-remote-iaudio.c
589 target/coldfire/iaudio/m5/backlight-m5.c
590 target/coldfire/iaudio/m5/button-m5.c
591 target/coldfire/iaudio/m5/lcd-as-m5.S
592 target/coldfire/iaudio/m5/lcd-m5.c
593 target/coldfire/iaudio/m5/power-m5.c
594 target/coldfire/iaudio/pcf50606-iaudio.c
595 target/coldfire/iaudio/powermgmt-iaudio.c
596 target/coldfire/iaudio/system-iaudio.c
597 target/coldfire/iaudio/usb-iaudio.c
598 #ifndef BOOTLOADER
599 target/coldfire/iaudio/m5/audio-m5.c
600 #endif
601 #endif /* SIMULATOR */
602 #endif /* IAUDIO_M5 */
604 #ifdef IAUDIO_M3
605 #ifndef SIMULATOR
606 target/coldfire/ata-as-coldfire.S
607 target/coldfire/iaudio/m3/adc-m3.c
608 target/coldfire/iaudio/m3/ata-m3.c
609 target/coldfire/iaudio/m3/backlight-m3.c
610 target/coldfire/iaudio/m3/button-m3.c
611 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
612 target/coldfire/iaudio/m3/lcd-m3.c
613 target/coldfire/iaudio/m3/lcd-as-m3.S
614 target/coldfire/iaudio/m3/power-m3.c
615 target/coldfire/iaudio/m3/powermgmt-m3.c
616 target/coldfire/iaudio/m3/system-m3.c
617 target/coldfire/iaudio/m3/usb-m3.c
618 #ifndef BOOTLOADER
619 target/coldfire/iaudio/m3/audio-m3.c
620 #endif
621 #endif /* SIMULATOR */
622 #endif /* IAUDIO_M3 */
624 #ifdef IRIVER_IFP7XX_SERIES
625 #ifdef STUB
626 ifp_usb_serial.c
627 common/sscanf.c
628 #endif /* STUB */
629 #endif /* IRIVER_IFP7XX_SERIES */
631 #ifdef IRIVER_H300_SERIES
632 #ifndef SIMULATOR
633 target/coldfire/ata-as-coldfire.S
634 target/coldfire/pcf50606-coldfire.c
635 target/coldfire/iriver/ata-iriver.c
636 target/coldfire/iriver/lcd-remote-iriver.c
637 target/coldfire/iriver/lcd-remote-as-iriver.S
638 target/coldfire/iriver/system-iriver.c
639 target/coldfire/iriver/fmradio_i2c-iriver.c
640 target/coldfire/iriver/h300/sw_i2c-h300.c
641 target/coldfire/iriver/h300/adc-h300.c
642 target/coldfire/iriver/h300/backlight-h300.c
643 target/coldfire/iriver/h300/button-h300.c
644 target/coldfire/iriver/h300/pcf50606-h300.c
645 target/coldfire/iriver/h300/lcd-as-h300.S
646 target/coldfire/iriver/h300/lcd-h300.c
647 target/coldfire/iriver/h300/power-h300.c
648 target/coldfire/iriver/h300/powermgmt-h300.c
649 target/coldfire/iriver/h300/usb-h300.c
650 #ifndef BOOTLOADER
651 target/coldfire/iriver/audio-iriver.c
652 #endif
653 #endif /* SIMULATOR */
654 #endif /* IRIVER_H300_SERIES */
656 #ifdef IRIVER_H100_SERIES
657 #ifndef SIMULATOR
658 drivers/sw_i2c.c
659 target/coldfire/ata-as-coldfire.S
660 target/coldfire/iriver/ata-iriver.c
661 target/coldfire/iriver/lcd-remote-iriver.c
662 target/coldfire/iriver/lcd-remote-as-iriver.S
663 target/coldfire/iriver/system-iriver.c
664 target/coldfire/iriver/fmradio_i2c-iriver.c
665 target/coldfire/iriver/h100/adc-h100.c
666 target/coldfire/iriver/h100/backlight-h100.c
667 target/coldfire/iriver/h100/button-h100.c
668 target/coldfire/iriver/h100/lcd-as-h100.S
669 target/coldfire/iriver/h100/lcd-h100.c
670 target/coldfire/iriver/h100/power-h100.c
671 target/coldfire/iriver/h100/powermgmt-h100.c
672 #ifndef BOOTLOADER
673 target/coldfire/iriver/audio-iriver.c
674 target/coldfire/iriver/h100/spdif-h100.c
675 #endif
676 target/coldfire/iriver/h100/usb-h100.c
677 #endif /* SIMULATOR */
678 #endif /* IRIVER_H100_SERIES */
680 #ifdef IRIVER_H10
681 #ifndef SIMULATOR
682 target/arm/ata-as-arm.S
683 target/arm/ata-pp5020.c
684 target/arm/wmcodec-pp.c
685 target/arm/i2s-pp.c
686 target/arm/adc-pp5020.c
687 target/arm/iriver/h10/backlight-h10.c
688 target/arm/iriver/h10/button-h10.c
689 target/arm/iriver/h10/fmradio_i2c-h10.c
690 target/arm/iriver/h10/lcd-h10_20gb.c
691 target/arm/iriver/h10/lcd-as-h10.S
692 target/arm/iriver/h10/power-h10.c
693 target/arm/iriver/h10/powermgmt-h10.c
694 target/arm/usb-fw-pp502x.c
695 #endif /* SIMULATOR */
696 #endif /* IRIVER_H10 */
698 #ifdef IRIVER_H10_5GB
699 #ifndef SIMULATOR
700 target/arm/ata-as-arm.S
701 target/arm/ata-pp5020.c
702 target/arm/wmcodec-pp.c
703 target/arm/i2s-pp.c
704 target/arm/adc-pp5020.c
705 target/arm/iriver/h10/backlight-h10.c
706 target/arm/iriver/h10/button-h10.c
707 target/arm/iriver/h10/fmradio_i2c-h10.c
708 target/arm/iriver/h10/lcd-h10_5gb.c
709 target/arm/iriver/h10/power-h10.c
710 target/arm/iriver/h10/powermgmt-h10.c
711 target/arm/usb-fw-pp502x.c
712 #endif /* SIMULATOR */
713 #endif /* IRIVER_H10_5GB */
715 #ifdef GIGABEAT_F
716 #ifndef SIMULATOR
717 target/arm/lcd-as-memframe.S
718 target/arm/mmu-arm.c
719 target/arm/s3c2440/debug-s3c2440.c
720 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
721 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
722 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
723 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
724 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
725 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
726 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
727 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
728 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
729 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
730 #ifndef BOOTLOADER
731 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
732 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
733 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
734 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
735 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
736 #endif
737 #endif /* SIMULATOR */
738 #endif /* GIGABEAT_F */
740 #ifdef GIGABEAT_S
741 #ifndef SIMULATOR
742 target/arm/lcd-as-memframe.S
743 target/arm/mmu-arm.c
744 target/arm/imx31/debug-imx31.c
745 target/arm/imx31/rolo_restart.S
746 target/arm/imx31/gigabeat-s/adc-imx31.c
747 target/arm/imx31/gigabeat-s/ata-imx31.c
748 target/arm/imx31/gigabeat-s/avic-imx31.c
749 target/arm/imx31/gigabeat-s/backlight-imx31.c
750 target/arm/imx31/gigabeat-s/button-imx31.c
751 target/arm/imx31/gigabeat-s/clkctl-imx31.c
752 target/arm/imx31/gigabeat-s/dma_start.c
753 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
754 target/arm/imx31/gigabeat-s/gpio-imx31.c
755 target/arm/imx31/gigabeat-s/kernel-imx31.c
756 target/arm/imx31/gigabeat-s/i2c-imx31.c
757 target/arm/imx31/gigabeat-s/i2s-imx31.c
758 target/arm/imx31/gigabeat-s/lcd-imx31.c
759 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
760 target/arm/imx31/gigabeat-s/mc13783-imx31.c
761 target/arm/imx31/gigabeat-s/mmu-imx31.c
762 target/arm/imx31/gigabeat-s/power-imx31.c
763 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
764 target/arm/imx31/gigabeat-s/spi-imx31.c
765 target/arm/imx31/gigabeat-s/system-imx31.c
766 target/arm/imx31/gigabeat-s/usb-imx31.c
767 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
768 #ifndef BOOTLOADER
769 target/arm/imx31/gigabeat-s/pcm-imx31.c
770 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
771 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
772 #endif
773 #endif /* SIMULATOR */
774 #endif /* GIGABEAT_S */
776 #if CONFIG_CPU == DM320
777 target/arm/tms320dm320/debug-dm320.c
778 target/arm/tms320dm320/dsp-dm320.c
779 target/arm/tms320dm320/i2c-dm320.c
780 target/arm/tms320dm320/kernel-dm320.c
781 target/arm/tms320dm320/spi-dm320.c
782 target/arm/tms320dm320/system-dm320.c
783 target/arm/tms320dm320/timer-dm320.c
784 target/arm/tms320dm320/uart-dm320.c
785 #endif /* CONFIG_CPU == DM320 */
787 #ifdef MROBE_500
788 #ifndef SIMULATOR
789 target/arm/lcd-as-memframe.S
790 target/arm/mmu-arm.c
791 target/arm/tms320dm320/mrobe-500/adc-mr500.c
792 target/arm/tms320dm320/mrobe-500/ata-mr500.c
793 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
794 target/arm/tms320dm320/mrobe-500/button-mr500.c
795 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
796 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
797 #if defined(HAVE_REMOTE_LCD)
798 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
799 #endif
800 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
801 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
802 target/arm/tms320dm320/mrobe-500/power-mr500.c
803 target/arm/tms320dm320/mrobe-500/usb-mr500.c
804 #endif /* SIMULATOR */
805 #endif /* MROBE_500 */
807 #ifdef CREATIVE_ZVx
808 #ifndef SIMULATOR
809 target/arm/ata-as-arm.S
810 target/arm/lcd-as-memframe.S
811 target/arm/mmu-arm.c
812 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
813 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
814 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
815 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
816 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
817 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
818 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
819 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
820 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
821 #endif /* SIMULATOR */
822 #endif /* CREATIVE_ZVx */
824 #ifdef MROBE_100
825 #ifndef SIMULATOR
826 #ifndef BOOTLOADER
827 drivers/synaptics-mep.c
828 #endif /* BOOTLOADER */
829 drivers/sw_i2c.c
830 target/arm/ata-as-arm.S
831 target/arm/ata-pp5020.c
832 target/arm/wmcodec-pp.c
833 target/arm/i2s-pp.c
834 target/arm/adc-pp5020.c
835 target/arm/olympus/mrobe-100/backlight-mr100.c
836 target/arm/olympus/mrobe-100/button-mr100.c
837 target/arm/olympus/mrobe-100/lcd-mr100.c
838 target/arm/olympus/mrobe-100/lcd-as-mr100.S
839 target/arm/olympus/mrobe-100/power-mr100.c
840 target/arm/olympus/mrobe-100/powermgmt-mr100.c
841 target/arm/usb-fw-pp502x.c
842 #endif /* SIMULATOR */
843 #endif /* MROBE_100 */
845 #ifdef ELIO_TPJ1022
846 #ifndef SIMULATOR
847 target/arm/ata-as-arm.S
848 target/arm/ata-pp5020.c
849 target/arm/wmcodec-pp.c
850 target/arm/i2s-pp.c
851 target/arm/tatung/tpj1022/adc-tpj1022.c
852 target/arm/tatung/tpj1022/backlight-tpj1022.c
853 target/arm/tatung/tpj1022/button-tpj1022.c
854 target/arm/tatung/tpj1022/lcd-tpj1022.c
855 target/arm/tatung/tpj1022/power-tpj1022.c
856 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
857 target/arm/usb-fw-pp502x.c
858 #endif /* SIMULATOR */
859 #endif /* ELIO_TPJ1022 */
861 #ifdef IPOD_4G
862 #ifndef SIMULATOR
863 drivers/pcf50605.c
864 target/arm/wmcodec-pp.c
865 target/arm/i2s-pp.c
866 target/arm/ata-as-arm.S
867 target/arm/ata-pp5020.c
868 target/arm/ipod/adc-ipod-pcf.c
869 target/arm/ipod/backlight-4g_color.c
870 target/arm/ipod/button-clickwheel.c
871 target/arm/ipod/lcd-as-gray.S
872 target/arm/ipod/lcd-gray.c
873 target/arm/ipod/power-ipod.c
874 target/arm/ipod/powermgmt-ipod-pcf.c
875 target/arm/usb-fw-pp502x.c
876 #endif /* SIMULATOR */
877 #endif /* IPOD_4G */
879 #ifdef IPOD_COLOR
880 #ifndef SIMULATOR
881 drivers/pcf50605.c
882 target/arm/ata-as-arm.S
883 target/arm/ata-pp5020.c
884 target/arm/wmcodec-pp.c
885 target/arm/i2s-pp.c
886 target/arm/ipod/adc-ipod-pcf.c
887 target/arm/ipod/backlight-4g_color.c
888 target/arm/ipod/button-clickwheel.c
889 target/arm/ipod/lcd-color_nano.c
890 target/arm/ipod/power-ipod.c
891 target/arm/ipod/powermgmt-ipod-pcf.c
892 target/arm/usb-fw-pp502x.c
893 #endif /* SIMULATOR */
894 #endif /* IPOD_COLOR */
896 #ifdef IPOD_NANO
897 #ifndef SIMULATOR
898 drivers/pcf50605.c
899 target/arm/ata-as-arm.S
900 target/arm/ata-pp5020.c
901 target/arm/wmcodec-pp.c
902 target/arm/i2s-pp.c
903 target/arm/ipod/adc-ipod-pcf.c
904 target/arm/ipod/backlight-nano_video.c
905 target/arm/ipod/button-clickwheel.c
906 target/arm/ipod/lcd-color_nano.c
907 target/arm/ipod/power-ipod.c
908 target/arm/ipod/powermgmt-ipod-pcf.c
909 target/arm/usb-fw-pp502x.c
910 #endif /* SIMULATOR */
911 #endif /* IPOD_NANO */
913 #ifdef IPOD_VIDEO
914 #ifndef SIMULATOR
915 drivers/pcf50605.c
916 target/arm/ata-as-arm.S
917 target/arm/ata-pp5020.c
918 target/arm/wmcodec-pp.c
919 target/arm/i2s-pp.c
920 target/arm/ipod/adc-ipod-pcf.c
921 target/arm/ipod/backlight-nano_video.c
922 target/arm/ipod/button-clickwheel.c
923 target/arm/ipod/power-ipod.c
924 target/arm/ipod/powermgmt-ipod-pcf.c
925 target/arm/ipod/video/lcd-as-video.S
926 target/arm/ipod/video/lcd-video.c
927 target/arm/usb-fw-pp502x.c
928 #endif /* SIMULATOR */
929 #endif /* IPOD_VIDEO */
931 #ifdef IPOD_3G
932 #ifndef SIMULATOR
933 drivers/pcf50605.c
934 target/arm/ata-pp5002.c
935 target/arm/wmcodec-pp.c
936 target/arm/i2s-pp.c
937 target/arm/ipod/adc-ipod-pcf.c
938 target/arm/ipod/3g/backlight-3g.c
939 target/arm/ipod/button-1g-3g.c
940 target/arm/ipod/lcd-as-gray.S
941 target/arm/ipod/lcd-gray.c
942 target/arm/ipod/power-ipod.c
943 target/arm/ipod/powermgmt-ipod-pcf.c
944 target/arm/usb-fw-pp5002.c
945 #endif /* SIMULATOR */
946 #endif /* IPOD_3G */
948 #ifdef IPOD_1G2G
949 #ifndef SIMULATOR
950 target/arm/ata-pp5002.c
951 target/arm/wmcodec-pp.c
952 target/arm/i2s-pp.c
953 target/arm/ipod/1g2g/adc-ipod-1g2g.c
954 target/arm/ipod/1g2g/backlight-1g2g.c
955 target/arm/ipod/1g2g/powermgmt-1g2g.c
956 target/arm/ipod/button-1g-3g.c
957 target/arm/ipod/lcd-as-gray.S
958 target/arm/ipod/lcd-gray.c
959 target/arm/ipod/power-ipod.c
960 target/arm/usb-fw-pp5002.c
961 #endif /* SIMULATOR */
962 #endif /* IPOD_1G2G */
964 #ifdef IPOD_MINI
965 #ifndef SIMULATOR
966 drivers/pcf50605.c
967 target/arm/ata-as-arm.S
968 target/arm/ata-pp5020.c
969 target/arm/wmcodec-pp.c
970 target/arm/i2s-pp.c
971 target/arm/ipod/adc-ipod-pcf.c
972 target/arm/ipod/backlight-mini1g_mini2g.c
973 target/arm/ipod/button-mini1g.c
974 target/arm/ipod/lcd-as-gray.S
975 target/arm/ipod/lcd-gray.c
976 target/arm/ipod/power-ipod.c
977 target/arm/ipod/powermgmt-ipod-pcf.c
978 target/arm/usb-fw-pp502x.c
979 #endif /* SIMULATOR */
980 #endif /* IPOD_MINI */
982 #ifdef IPOD_MINI2G
983 #ifndef SIMULATOR
984 drivers/pcf50605.c
985 target/arm/ata-as-arm.S
986 target/arm/ata-pp5020.c
987 target/arm/wmcodec-pp.c
988 target/arm/i2s-pp.c
989 target/arm/ipod/adc-ipod-pcf.c
990 target/arm/ipod/backlight-mini1g_mini2g.c
991 target/arm/ipod/button-clickwheel.c
992 target/arm/ipod/lcd-as-gray.S
993 target/arm/ipod/lcd-gray.c
994 target/arm/ipod/power-ipod.c
995 target/arm/ipod/powermgmt-ipod-pcf.c
996 target/arm/usb-fw-pp502x.c
997 #endif /* SIMULATOR */
998 #endif /* IPOD_MINI2G */
1000 #ifdef IRIVER_IFP7XX
1001 #ifndef SIMULATOR
1002 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1003 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1004 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1005 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1006 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1007 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1008 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1009 #ifndef BOOTLOADER
1010 target/arm/pnx0101/pcm-pnx0101.c
1011 #endif /* BOOTLOADER */
1012 #endif /* SIMULATOR */
1013 #endif /* IRIVER_IFP7XX */
1015 #ifdef LOGIK_DAX
1016 #ifndef SIMULATOR
1017 drivers/nand_id.c
1018 target/arm/lcd-ssd1815.c
1019 target/arm/tcc77x/adc-tcc77x.c
1020 target/arm/tcc77x/kernel-tcc77x.c
1021 target/arm/tcc77x/powermgmt-tcc77x.c
1022 target/arm/tcc77x/system-tcc77x.c
1023 target/arm/tcc77x/timer-tcc77x.c
1024 target/arm/usb-tcc.c
1025 target/arm/tcc77x/logikdax/button-logikdax.c
1026 target/arm/tcc77x/logikdax/power-logikdax.c
1027 #ifndef BOOTLOADER
1028 target/arm/wmcodec-telechips.c
1029 target/arm/tcc77x/debug-tcc77x.c
1030 target/arm/pcm-telechips.c
1031 target/arm/tcc77x/logikdax/audio-logikdax.c
1032 #endif /* BOOTLOADER */
1033 #endif /* SIMULATOR */
1034 #endif /* LOGIK_DAX */
1036 #ifdef SANSA_M200
1037 #ifndef SIMULATOR
1038 drivers/nand_id.c
1039 target/arm/lcd-ssd1815.c
1040 target/arm/tcc77x/adc-tcc77x.c
1041 target/arm/tcc77x/kernel-tcc77x.c
1042 target/arm/tcc77x/powermgmt-tcc77x.c
1043 target/arm/tcc77x/system-tcc77x.c
1044 target/arm/tcc77x/timer-tcc77x.c
1045 target/arm/usb-tcc.c
1046 target/arm/tcc77x/m200/button-m200.c
1047 target/arm/tcc77x/m200/power-m200.c
1048 #ifndef BOOTLOADER
1049 target/arm/wmcodec-telechips.c
1050 target/arm/tcc77x/debug-tcc77x.c
1051 target/arm/pcm-telechips.c
1052 target/arm/tcc77x/m200/audio-m200.c
1053 #endif /* BOOTLOADER */
1054 #endif /* SIMULATOR */
1055 #endif /* SANSA_M200 */
1057 #ifdef SANSA_C100
1058 #ifndef SIMULATOR
1059 drivers/nand_id.c
1060 target/arm/tcc77x/adc-tcc77x.c
1061 target/arm/tcc77x/kernel-tcc77x.c
1062 target/arm/tcc77x/c100/lcd-S6B33B2.c
1063 target/arm/tcc77x/powermgmt-tcc77x.c
1064 target/arm/tcc77x/system-tcc77x.c
1065 target/arm/tcc77x/timer-tcc77x.c
1066 target/arm/usb-tcc.c
1067 target/arm/tcc77x/c100/button-c100.c
1068 target/arm/tcc77x/c100/power-c100.c
1069 #ifndef BOOTLOADER
1070 target/arm/tcc77x/debug-tcc77x.c
1071 target/arm/pcm-telechips.c
1072 #endif /* BOOTLOADER */
1073 #endif /* SIMULATOR */
1074 #endif /* SANSA_C100 */
1076 #ifdef SANSA_CLIP
1077 #ifndef SIMULATOR
1078 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1079 target/arm/as3525/sansa-clip/lcd-as-clip.S
1080 target/arm/as3525/sansa-clip/button-clip.c
1081 target/arm/as3525/sansa-clip/backlight-clip.c
1082 #ifndef BOOTLOADER
1083 drivers/generic_i2c.c
1084 target/arm/as3525/fmradio-i2c-as3525.c
1085 target/arm/as3525/sansa-clip/powermgmt-clip.c
1086 #endif /* !BOOTLOADER */
1087 #endif /* !SIMULATOR */
1088 #endif /* SANSA_CLIP */
1090 #ifdef SANSA_E200V2
1091 #ifndef SIMULATOR
1092 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1093 target/arm/as3525/sansa-e200v2/button-e200v2.c
1094 target/arm/as3525/backlight-e200v2-fuze.c
1095 #ifndef BOOTLOADER
1096 drivers/generic_i2c.c
1097 target/arm/as3525/fmradio-i2c-as3525.c
1098 target/arm/as3525/powermgmt-as3525.c
1099 #endif /* !BOOTLOADER */
1100 #endif /* !SIMULATOR */
1101 #endif /* SANSA_E200V2 */
1103 #ifdef SANSA_M200V4
1104 #ifndef SIMULATOR
1105 target/arm/lcd-ssd1815.c
1106 target/arm/as3525/sansa-m200v4/button-m200v4.c
1107 #ifndef BOOTLOADER
1108 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1109 drivers/generic_i2c.c
1110 target/arm/as3525/fmradio-i2c-as3525.c
1111 #endif /* !BOOTLOADER */
1112 #endif /* !SIMULATOR */
1113 #endif /* SANSA_M200V4 */
1115 #ifdef SANSA_FUZE
1116 #ifndef SIMULATOR
1117 target/arm/as3525/sansa-fuze/button-fuze.c
1118 target/arm/as3525/sansa-fuze/lcd-fuze.c
1119 target/arm/as3525/backlight-e200v2-fuze.c
1120 #ifndef BOOTLOADER
1121 drivers/generic_i2c.c
1122 target/arm/as3525/fmradio-i2c-as3525.c
1123 target/arm/as3525/powermgmt-as3525.c
1124 #endif /* !BOOTLOADER */
1125 #endif /* !SIMULATOR */
1126 #endif /* SANSA_FUZE */
1128 #ifdef IAUDIO_7
1129 #ifndef SIMULATOR
1130 drivers/nand_id.c
1131 drivers/pcf50606.c
1132 target/arm/tcc77x/system-tcc77x.c
1133 target/arm/tcc77x/kernel-tcc77x.c
1134 target/arm/tcc77x/timer-tcc77x.c
1135 target/arm/tcc77x/adc-tcc77x.c
1136 target/arm/tcc77x/powermgmt-tcc77x.c
1137 target/arm/usb-tcc.c
1138 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1139 target/arm/tcc77x/iaudio7/power-iaudio7.c
1140 target/arm/tcc77x/iaudio7/button-iaudio7.c
1141 target/arm/tcc77x/iaudio7/ata2501.c
1142 #ifndef BOOTLOADER
1143 target/arm/wmcodec-telechips.c
1144 target/arm/pcm-telechips.c
1145 target/arm/tcc77x/debug-tcc77x.c
1146 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1147 #endif /* BOOTLOADER */
1148 #endif /* SIMULATOR */
1149 #endif /* IAUDIO_7 */
1151 #ifdef COWON_D2
1152 #ifndef SIMULATOR
1153 drivers/nand_id.c
1154 drivers/pcf50606.c
1155 target/arm/lcd-as-memframe.S
1156 target/arm/tcc780x/adc-tcc780x.c
1157 target/arm/tcc780x/system-tcc780x.c
1158 target/arm/tcc780x/cowond2/button-cowond2.c
1159 target/arm/tcc780x/cowond2/lcd-cowond2.c
1160 target/arm/tcc780x/cowond2/power-cowond2.c
1161 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1162 target/arm/tcc780x/cowond2/backlight-cowond2.c
1163 target/arm/usb-tcc.c
1164 #ifndef BOOTLOADER
1165 target/arm/tcc780x/kernel-tcc780x.c
1166 target/arm/tcc780x/timer-tcc780x.c
1167 target/arm/wmcodec-telechips.c
1168 target/arm/tcc780x/debug-tcc780x.c
1169 target/arm/pcm-telechips.c
1170 target/arm/tcc780x/cowond2/audio-cowond2.c
1171 #endif /* BOOTLOADER */
1172 #endif /* SIMULATOR */
1173 #endif /* COWON_D2 */
1175 #if CONFIG_CPU==S5L8700
1176 target/arm/s5l8700/system-s5l8700.c
1177 #endif
1179 #ifdef MEIZU_M6SL
1180 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1181 drivers/qt1106.c
1182 #ifndef SIMULATOR
1183 #ifndef BOOTLOADER
1184 #endif /* BOOTLOADER */
1185 #endif /* SIMULATOR */
1186 #endif /* MEIZU_M6SL */
1188 #ifdef MEIZU_M6SP
1189 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1190 #ifndef SIMULATOR
1191 #ifndef BOOTLOADER
1192 #endif /* BOOTLOADER */
1193 #endif /* SIMULATOR */
1194 #endif /* MEIZU_M6SP */
1196 #ifdef MEIZU_M3
1197 target/arm/s5l8700/meizu-m3/lcd-m3.c
1198 drivers/qt1106.c
1199 #ifndef SIMULATOR
1200 #ifndef BOOTLOADER
1201 #endif /* BOOTLOADER */
1202 #endif /* SIMULATOR */
1203 #endif /* MEIZU_M3 */
1205 #if CONFIG_CPU==JZ4732
1206 target/mips/ingenic_jz47xx/ata-jz4740.c
1207 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1208 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1209 target/mips/ingenic_jz47xx/codec-jz4740.c
1210 target/mips/ingenic_jz47xx/kernel-jz4740.c
1211 target/mips/ingenic_jz47xx/lcd-jz4740.c
1212 target/mips/ingenic_jz47xx/pcm-jz4740.c
1213 target/mips/ingenic_jz47xx/system-jz4740.c
1214 target/mips/ingenic_jz47xx/usb-jz4740.c
1215 drivers/nand_id.c
1216 #endif
1218 #if defined(ONDA_VX747) || defined(ONDA_VX747P)
1219 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx747.c
1220 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1221 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1222 #endif
1224 #ifdef ONDA_VX767
1225 target/mips/ingenic_jz47xx/onda_vx767/backlight-ondavx767.c
1226 target/mips/ingenic_jz47xx/onda_vx767/button-ondavx767.c
1227 target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c
1228 #endif