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