Actually adapt SOURCES too.
[kugel-rb/myfork.git] / firmware / SOURCES
bloba7741c18705b4b40da7ed8f6490288c91f2da5bd
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/lcd-c200_c200v2.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 #ifndef BOOTLOADER
551 drivers/synaptics-mep.c
552 #endif /* BOOTLOADER */
553 target/arm/adc-as3514.c
554 target/arm/ascodec-pp.c
555 target/arm/ata-sd-pp.c
556 target/arm/i2s-pp.c
557 target/arm/powermgmt-ascodec.c
558 target/arm/usb-fw-pp502x.c
559 target/arm/philips/sa9200/backlight-sa9200.c
560 target/arm/philips/sa9200/button-sa9200.c
561 target/arm/philips/sa9200/lcd-sa9200.c
562 target/arm/philips/sa9200/power-sa9200.c
563 target/arm/philips/sa9200/powermgmt-sa9200.c
564 #endif /* SIMULATOR */
565 #endif /* PHILIPS_SA9200 */
567 #ifdef PHILIPS_HDD1630
568 #ifndef SIMULATOR
569 #ifndef BOOTLOADER
570 drivers/synaptics-mep.c
571 #endif /* BOOTLOADER */
572 target/arm/ata-as-arm.S
573 target/arm/ata-pp5020.c
574 target/arm/wmcodec-pp.c
575 target/arm/i2s-pp.c
576 target/arm/adc-pp5020.c
577 target/arm/philips/hdd1630/backlight-hdd1630.c
578 target/arm/philips/hdd1630/button-hdd1630.c
579 target/arm/philips/hdd1630/fmradio_i2c-hdd1630.c
580 target/arm/philips/hdd1630/lcd-hdd1630.c
581 target/arm/philips/hdd1630/lcd-as-hdd1630.S
582 target/arm/philips/hdd1630/power-hdd1630.c
583 target/arm/philips/hdd1630/powermgmt-hdd1630.c
584 target/arm/usb-fw-pp502x.c
585 #endif /* SIMULATOR */
586 #endif /* PHILIPS_HDD1630 */
588 #ifdef IAUDIO_X5
589 #ifndef SIMULATOR
590 target/coldfire/ata-as-coldfire.S
591 target/coldfire/pcf50606-coldfire.c
592 target/coldfire/iaudio/adc-iaudio.c
593 target/coldfire/iaudio/ata-iaudio.c
594 target/coldfire/iaudio/fmradio_i2c-iaudio.c
595 target/coldfire/iaudio/lcd-remote-as-iaudio.S
596 target/coldfire/iaudio/lcd-remote-iaudio.c
597 target/coldfire/iaudio/pcf50606-iaudio.c
598 target/coldfire/iaudio/power-x5m5.c
599 target/coldfire/iaudio/powermgmt-iaudio.c
600 target/coldfire/iaudio/system-iaudio.c
601 target/coldfire/iaudio/usb-iaudio.c
602 target/coldfire/iaudio/x5/backlight-x5.c
603 target/coldfire/iaudio/x5/button-x5.c
604 target/coldfire/iaudio/x5/ds2411-x5.c
605 target/coldfire/iaudio/x5/lcd-as-x5.S
606 target/coldfire/iaudio/x5/lcd-x5.c
607 target/coldfire/iaudio/x5/m5636-x5.c
608 #ifndef BOOTLOADER
609 target/coldfire/iaudio/audio-iaudio.c
610 #endif
611 #endif /* SIMULATOR */
612 #endif /* IAUDIO_X5 */
614 #ifdef IAUDIO_M5
615 #ifndef SIMULATOR
616 target/coldfire/ata-as-coldfire.S
617 target/coldfire/pcf50606-coldfire.c
618 target/coldfire/iaudio/adc-iaudio.c
619 target/coldfire/iaudio/ata-iaudio.c
620 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
621 target/coldfire/iaudio/fmradio_i2c-iaudio.c
622 #endif
623 target/coldfire/iaudio/lcd-remote-as-iaudio.S
624 target/coldfire/iaudio/lcd-remote-iaudio.c
625 target/coldfire/iaudio/m5/backlight-m5.c
626 target/coldfire/iaudio/m5/button-m5.c
627 target/coldfire/iaudio/m5/lcd-as-m5.S
628 target/coldfire/iaudio/m5/lcd-m5.c
629 target/coldfire/iaudio/pcf50606-iaudio.c
630 target/coldfire/iaudio/power-x5m5.c
631 target/coldfire/iaudio/powermgmt-iaudio.c
632 target/coldfire/iaudio/system-iaudio.c
633 target/coldfire/iaudio/usb-iaudio.c
634 #ifndef BOOTLOADER
635 target/coldfire/iaudio/audio-iaudio.c
636 #endif
637 #endif /* SIMULATOR */
638 #endif /* IAUDIO_M5 */
640 #ifdef IAUDIO_M3
641 #ifndef SIMULATOR
642 target/coldfire/ata-as-coldfire.S
643 target/coldfire/iaudio/fmradio_i2c-iaudio.c
644 target/coldfire/iaudio/m3/adc-m3.c
645 target/coldfire/iaudio/m3/ata-m3.c
646 target/coldfire/iaudio/m3/backlight-m3.c
647 target/coldfire/iaudio/m3/button-m3.c
648 target/coldfire/iaudio/m3/lcd-m3.c
649 target/coldfire/iaudio/m3/lcd-as-m3.S
650 target/coldfire/iaudio/m3/power-m3.c
651 target/coldfire/iaudio/m3/powermgmt-m3.c
652 target/coldfire/iaudio/m3/system-m3.c
653 target/coldfire/iaudio/m3/usb-m3.c
654 #ifndef BOOTLOADER
655 target/coldfire/iaudio/audio-iaudio.c
656 #endif
657 #endif /* SIMULATOR */
658 #endif /* IAUDIO_M3 */
660 #ifdef IRIVER_IFP7XX_SERIES
661 #ifdef STUB
662 ifp_usb_serial.c
663 common/sscanf.c
664 #endif /* STUB */
665 #endif /* IRIVER_IFP7XX_SERIES */
667 #ifdef IRIVER_H300_SERIES
668 #ifndef SIMULATOR
669 target/coldfire/ata-as-coldfire.S
670 target/coldfire/pcf50606-coldfire.c
671 target/coldfire/iriver/ata-iriver.c
672 target/coldfire/iriver/lcd-remote-iriver.c
673 target/coldfire/iriver/lcd-remote-as-iriver.S
674 target/coldfire/iriver/system-iriver.c
675 target/coldfire/iriver/fmradio_i2c-iriver.c
676 target/coldfire/iriver/h300/sw_i2c-h300.c
677 target/coldfire/iriver/h300/adc-h300.c
678 target/coldfire/iriver/h300/backlight-h300.c
679 target/coldfire/iriver/h300/button-h300.c
680 target/coldfire/iriver/h300/pcf50606-h300.c
681 target/coldfire/iriver/h300/lcd-as-h300.S
682 target/coldfire/iriver/h300/lcd-h300.c
683 target/coldfire/iriver/h300/power-h300.c
684 target/coldfire/iriver/h300/powermgmt-h300.c
685 target/coldfire/iriver/h300/usb-h300.c
686 #ifndef BOOTLOADER
687 target/coldfire/iriver/audio-iriver.c
688 #endif
689 #endif /* SIMULATOR */
690 #endif /* IRIVER_H300_SERIES */
692 #ifdef IRIVER_H100_SERIES
693 #ifndef SIMULATOR
694 drivers/sw_i2c.c
695 target/coldfire/ata-as-coldfire.S
696 target/coldfire/iriver/ata-iriver.c
697 target/coldfire/iriver/lcd-remote-iriver.c
698 target/coldfire/iriver/lcd-remote-as-iriver.S
699 target/coldfire/iriver/system-iriver.c
700 target/coldfire/iriver/fmradio_i2c-iriver.c
701 target/coldfire/iriver/h100/adc-h100.c
702 target/coldfire/iriver/h100/backlight-h100.c
703 target/coldfire/iriver/h100/button-h100.c
704 target/coldfire/iriver/h100/lcd-as-h100.S
705 target/coldfire/iriver/h100/lcd-h100.c
706 target/coldfire/iriver/h100/power-h100.c
707 target/coldfire/iriver/h100/powermgmt-h100.c
708 #ifndef BOOTLOADER
709 target/coldfire/iriver/audio-iriver.c
710 target/coldfire/iriver/h100/spdif-h100.c
711 #endif
712 target/coldfire/iriver/h100/usb-h100.c
713 #endif /* SIMULATOR */
714 #endif /* IRIVER_H100_SERIES */
716 #ifdef IRIVER_H10
717 #ifndef SIMULATOR
718 target/arm/ata-as-arm.S
719 target/arm/ata-pp5020.c
720 target/arm/wmcodec-pp.c
721 target/arm/i2s-pp.c
722 target/arm/adc-pp5020.c
723 target/arm/iriver/h10/backlight-h10.c
724 target/arm/iriver/h10/button-h10.c
725 target/arm/iriver/h10/fmradio_i2c-h10.c
726 target/arm/iriver/h10/lcd-h10_20gb.c
727 target/arm/iriver/h10/lcd-as-h10.S
728 target/arm/iriver/h10/power-h10.c
729 target/arm/iriver/h10/powermgmt-h10.c
730 target/arm/usb-fw-pp502x.c
731 #endif /* SIMULATOR */
732 #endif /* IRIVER_H10 */
734 #ifdef IRIVER_H10_5GB
735 #ifndef SIMULATOR
736 target/arm/ata-as-arm.S
737 target/arm/ata-pp5020.c
738 target/arm/wmcodec-pp.c
739 target/arm/i2s-pp.c
740 target/arm/adc-pp5020.c
741 target/arm/iriver/h10/backlight-h10.c
742 target/arm/iriver/h10/button-h10.c
743 target/arm/iriver/h10/fmradio_i2c-h10.c
744 target/arm/iriver/h10/lcd-h10_5gb.c
745 target/arm/iriver/h10/power-h10.c
746 target/arm/iriver/h10/powermgmt-h10.c
747 target/arm/usb-fw-pp502x.c
748 #endif /* SIMULATOR */
749 #endif /* IRIVER_H10_5GB */
751 #ifdef GIGABEAT_F
752 #ifndef SIMULATOR
753 target/arm/lcd-as-memframe.S
754 target/arm/mmu-arm.S
755 target/arm/s3c2440/debug-s3c2440.c
756 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
757 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
758 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
759 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
760 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
761 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
762 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
763 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
764 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
765 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
766 #ifndef BOOTLOADER
767 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
768 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
769 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
770 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
771 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
772 #endif
773 #endif /* SIMULATOR */
774 #endif /* GIGABEAT_F */
776 #ifdef GIGABEAT_S
777 #ifndef SIMULATOR
778 target/arm/lcd-as-memframe.S
779 target/arm/mmu-arm.S
780 target/arm/imx31/ccm-imx31.c
781 target/arm/imx31/debug-imx31.c
782 target/arm/imx31/rolo_restart.S
783 target/arm/imx31/sdma-imx31.c
784 target/arm/imx31/gigabeat-s/adc-imx31.c
785 target/arm/imx31/gigabeat-s/ata-imx31.c
786 target/arm/imx31/gigabeat-s/avic-imx31.c
787 target/arm/imx31/gigabeat-s/backlight-imx31.c
788 target/arm/imx31/gigabeat-s/button-imx31.c
789 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
790 target/arm/imx31/gigabeat-s/gpio-imx31.c
791 target/arm/imx31/gigabeat-s/kernel-imx31.c
792 target/arm/imx31/gigabeat-s/i2c-imx31.c
793 target/arm/imx31/gigabeat-s/i2s-imx31.c
794 target/arm/imx31/gigabeat-s/lcd-imx31.c
795 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
796 target/arm/imx31/gigabeat-s/mc13783-imx31.c
797 target/arm/imx31/gigabeat-s/mmu-imx31.c
798 target/arm/imx31/gigabeat-s/power-imx31.c
799 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
800 target/arm/imx31/gigabeat-s/spi-imx31.c
801 target/arm/imx31/gigabeat-s/system-imx31.c
802 target/arm/imx31/gigabeat-s/usb-imx31.c
803 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
804 #ifndef BOOTLOADER
805 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
806 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
807 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
808 target/arm/imx31/gigabeat-s/pcm-imx31.c
809 target/arm/imx31/gigabeat-s/timer-imx31.c
810 #endif
811 #endif /* SIMULATOR */
812 #endif /* GIGABEAT_S */
814 #if CONFIG_CPU == DM320
815 target/arm/tms320dm320/debug-dm320.c
816 target/arm/tms320dm320/dsp-dm320.c
817 target/arm/tms320dm320/i2c-dm320.c
818 target/arm/tms320dm320/kernel-dm320.c
819 target/arm/tms320dm320/spi-dm320.c
820 target/arm/tms320dm320/system-dm320.c
821 target/arm/tms320dm320/timer-dm320.c
822 target/arm/tms320dm320/uart-dm320.c
823 #endif /* CONFIG_CPU == DM320 */
825 #ifdef MROBE_500
826 #ifndef SIMULATOR
827 target/arm/lcd-as-memframe.S
828 target/arm/mmu-arm.S
829 target/arm/tms320dm320/mrobe-500/adc-mr500.c
830 target/arm/tms320dm320/mrobe-500/ata-mr500.c
831 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
832 target/arm/tms320dm320/mrobe-500/button-mr500.c
833 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
834 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
835 #if defined(HAVE_REMOTE_LCD)
836 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
837 #endif
838 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
839 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
840 target/arm/tms320dm320/mrobe-500/power-mr500.c
841 target/arm/tms320dm320/mrobe-500/usb-mr500.c
842 #endif /* SIMULATOR */
843 #endif /* MROBE_500 */
845 #ifdef CREATIVE_ZVx
846 #ifndef SIMULATOR
847 target/arm/ata-as-arm.S
848 target/arm/lcd-as-memframe.S
849 target/arm/mmu-arm.S
850 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
851 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
852 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
853 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
854 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
855 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
856 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
857 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
858 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
859 #endif /* SIMULATOR */
860 #endif /* CREATIVE_ZVx */
862 #ifdef MROBE_100
863 #ifndef SIMULATOR
864 #ifndef BOOTLOADER
865 drivers/synaptics-mep.c
866 #endif /* BOOTLOADER */
867 drivers/sw_i2c.c
868 target/arm/ata-as-arm.S
869 target/arm/ata-pp5020.c
870 target/arm/wmcodec-pp.c
871 target/arm/i2s-pp.c
872 target/arm/adc-pp5020.c
873 target/arm/olympus/mrobe-100/backlight-mr100.c
874 target/arm/olympus/mrobe-100/button-mr100.c
875 target/arm/olympus/mrobe-100/lcd-mr100.c
876 target/arm/olympus/mrobe-100/lcd-as-mr100.S
877 target/arm/olympus/mrobe-100/power-mr100.c
878 target/arm/olympus/mrobe-100/powermgmt-mr100.c
879 target/arm/usb-fw-pp502x.c
880 #endif /* SIMULATOR */
881 #endif /* MROBE_100 */
883 #ifdef ELIO_TPJ1022
884 #ifndef SIMULATOR
885 target/arm/ata-as-arm.S
886 target/arm/ata-pp5020.c
887 target/arm/wmcodec-pp.c
888 target/arm/i2s-pp.c
889 target/arm/adc-pp5020.c
890 target/arm/tatung/tpj1022/backlight-tpj1022.c
891 target/arm/tatung/tpj1022/button-tpj1022.c
892 target/arm/tatung/tpj1022/lcd-tpj1022.c
893 target/arm/tatung/tpj1022/power-tpj1022.c
894 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
895 target/arm/usb-fw-pp502x.c
896 #endif /* SIMULATOR */
897 #endif /* ELIO_TPJ1022 */
899 #ifdef IPOD_4G
900 #ifndef SIMULATOR
901 drivers/pcf50605.c
902 target/arm/wmcodec-pp.c
903 target/arm/i2s-pp.c
904 target/arm/ata-as-arm.S
905 target/arm/ata-pp5020.c
906 target/arm/ipod/adc-ipod-pcf.c
907 target/arm/ipod/backlight-4g_color.c
908 target/arm/ipod/button-clickwheel.c
909 target/arm/ipod/lcd-as-gray.S
910 target/arm/ipod/lcd-gray.c
911 target/arm/ipod/power-ipod.c
912 target/arm/ipod/powermgmt-ipod-pcf.c
913 target/arm/usb-fw-pp502x.c
914 #endif /* SIMULATOR */
915 #endif /* IPOD_4G */
917 #ifdef IPOD_COLOR
918 #ifndef SIMULATOR
919 drivers/pcf50605.c
920 target/arm/ata-as-arm.S
921 target/arm/ata-pp5020.c
922 target/arm/wmcodec-pp.c
923 target/arm/i2s-pp.c
924 target/arm/ipod/adc-ipod-pcf.c
925 target/arm/ipod/backlight-4g_color.c
926 target/arm/ipod/button-clickwheel.c
927 target/arm/ipod/lcd-color_nano.c
928 target/arm/ipod/power-ipod.c
929 target/arm/ipod/powermgmt-ipod-pcf.c
930 target/arm/usb-fw-pp502x.c
931 #endif /* SIMULATOR */
932 #endif /* IPOD_COLOR */
934 #ifdef IPOD_NANO
935 #ifndef SIMULATOR
936 drivers/pcf50605.c
937 target/arm/ata-as-arm.S
938 target/arm/ata-pp5020.c
939 target/arm/wmcodec-pp.c
940 target/arm/i2s-pp.c
941 target/arm/ipod/adc-ipod-pcf.c
942 target/arm/ipod/backlight-nano_video.c
943 target/arm/ipod/button-clickwheel.c
944 target/arm/ipod/lcd-color_nano.c
945 target/arm/ipod/power-ipod.c
946 target/arm/ipod/powermgmt-ipod-pcf.c
947 target/arm/usb-fw-pp502x.c
948 #endif /* SIMULATOR */
949 #endif /* IPOD_NANO */
951 #ifdef IPOD_VIDEO
952 #ifndef SIMULATOR
953 drivers/pcf50605.c
954 target/arm/ata-as-arm.S
955 target/arm/ata-pp5020.c
956 target/arm/wmcodec-pp.c
957 target/arm/i2s-pp.c
958 target/arm/ipod/adc-ipod-pcf.c
959 target/arm/ipod/backlight-nano_video.c
960 target/arm/ipod/button-clickwheel.c
961 target/arm/ipod/power-ipod.c
962 target/arm/ipod/powermgmt-ipod-pcf.c
963 target/arm/ipod/video/lcd-as-video.S
964 target/arm/ipod/video/lcd-video.c
965 target/arm/usb-fw-pp502x.c
966 #endif /* SIMULATOR */
967 #endif /* IPOD_VIDEO */
969 #ifdef IPOD_3G
970 #ifndef SIMULATOR
971 drivers/pcf50605.c
972 target/arm/ata-pp5002.c
973 target/arm/wmcodec-pp.c
974 target/arm/i2s-pp.c
975 target/arm/ipod/adc-ipod-pcf.c
976 target/arm/ipod/3g/backlight-3g.c
977 target/arm/ipod/button-1g-3g.c
978 target/arm/ipod/lcd-as-gray.S
979 target/arm/ipod/lcd-gray.c
980 target/arm/ipod/power-ipod.c
981 target/arm/ipod/powermgmt-ipod-pcf.c
982 target/arm/usb-fw-pp5002.c
983 #endif /* SIMULATOR */
984 #endif /* IPOD_3G */
986 #ifdef IPOD_1G2G
987 #ifndef SIMULATOR
988 target/arm/ata-pp5002.c
989 target/arm/wmcodec-pp.c
990 target/arm/i2s-pp.c
991 target/arm/ipod/1g2g/adc-ipod-1g2g.c
992 target/arm/ipod/1g2g/backlight-1g2g.c
993 target/arm/ipod/1g2g/powermgmt-1g2g.c
994 target/arm/ipod/button-1g-3g.c
995 target/arm/ipod/lcd-as-gray.S
996 target/arm/ipod/lcd-gray.c
997 target/arm/ipod/power-ipod.c
998 target/arm/usb-fw-pp5002.c
999 #endif /* SIMULATOR */
1000 #endif /* IPOD_1G2G */
1002 #ifdef IPOD_MINI
1003 #ifndef SIMULATOR
1004 drivers/pcf50605.c
1005 target/arm/ata-as-arm.S
1006 target/arm/ata-pp5020.c
1007 target/arm/wmcodec-pp.c
1008 target/arm/i2s-pp.c
1009 target/arm/ipod/adc-ipod-pcf.c
1010 target/arm/ipod/backlight-mini1g_mini2g.c
1011 target/arm/ipod/button-mini1g.c
1012 target/arm/ipod/lcd-as-gray.S
1013 target/arm/ipod/lcd-gray.c
1014 target/arm/ipod/power-ipod.c
1015 target/arm/ipod/powermgmt-ipod-pcf.c
1016 target/arm/usb-fw-pp502x.c
1017 #endif /* SIMULATOR */
1018 #endif /* IPOD_MINI */
1020 #ifdef IPOD_MINI2G
1021 #ifndef SIMULATOR
1022 drivers/pcf50605.c
1023 target/arm/ata-as-arm.S
1024 target/arm/ata-pp5020.c
1025 target/arm/wmcodec-pp.c
1026 target/arm/i2s-pp.c
1027 target/arm/ipod/adc-ipod-pcf.c
1028 target/arm/ipod/backlight-mini1g_mini2g.c
1029 target/arm/ipod/button-clickwheel.c
1030 target/arm/ipod/lcd-as-gray.S
1031 target/arm/ipod/lcd-gray.c
1032 target/arm/ipod/power-ipod.c
1033 target/arm/ipod/powermgmt-ipod-pcf.c
1034 target/arm/usb-fw-pp502x.c
1035 #endif /* SIMULATOR */
1036 #endif /* IPOD_MINI2G */
1038 #ifdef IRIVER_IFP7XX
1039 #ifndef SIMULATOR
1040 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1041 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1042 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1043 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1044 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1045 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1046 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1047 #ifndef BOOTLOADER
1048 target/arm/pnx0101/pcm-pnx0101.c
1049 #endif /* BOOTLOADER */
1050 #endif /* SIMULATOR */
1051 #endif /* IRIVER_IFP7XX */
1053 #ifdef LOGIK_DAX
1054 #ifndef SIMULATOR
1055 drivers/nand_id.c
1056 target/arm/lcd-ssd1815.c
1057 target/arm/tcc77x/adc-tcc77x.c
1058 target/arm/tcc77x/kernel-tcc77x.c
1059 target/arm/tcc77x/powermgmt-tcc77x.c
1060 target/arm/tcc77x/system-tcc77x.c
1061 target/arm/tcc77x/timer-tcc77x.c
1062 target/arm/usb-tcc.c
1063 target/arm/tcc77x/logikdax/button-logikdax.c
1064 target/arm/tcc77x/logikdax/power-logikdax.c
1065 #ifndef BOOTLOADER
1066 target/arm/wmcodec-telechips.c
1067 target/arm/tcc77x/debug-tcc77x.c
1068 target/arm/pcm-telechips.c
1069 target/arm/tcc77x/logikdax/audio-logikdax.c
1070 #endif /* BOOTLOADER */
1071 #endif /* SIMULATOR */
1072 #endif /* LOGIK_DAX */
1074 #ifdef SANSA_M200
1075 #ifndef SIMULATOR
1076 drivers/nand_id.c
1077 target/arm/lcd-ssd1815.c
1078 target/arm/tcc77x/adc-tcc77x.c
1079 target/arm/tcc77x/kernel-tcc77x.c
1080 target/arm/tcc77x/powermgmt-tcc77x.c
1081 target/arm/tcc77x/system-tcc77x.c
1082 target/arm/tcc77x/timer-tcc77x.c
1083 target/arm/usb-tcc.c
1084 target/arm/tcc77x/m200/button-m200.c
1085 target/arm/tcc77x/m200/power-m200.c
1086 #ifndef BOOTLOADER
1087 target/arm/wmcodec-telechips.c
1088 target/arm/tcc77x/debug-tcc77x.c
1089 target/arm/pcm-telechips.c
1090 target/arm/tcc77x/m200/audio-m200.c
1091 #endif /* BOOTLOADER */
1092 #endif /* SIMULATOR */
1093 #endif /* SANSA_M200 */
1095 #ifdef SANSA_C100
1096 #ifndef SIMULATOR
1097 drivers/nand_id.c
1098 target/arm/usb-tcc.c
1099 target/arm/tcc77x/system-tcc77x.c
1100 target/arm/tcc77x/kernel-tcc77x.c
1101 target/arm/tcc77x/timer-tcc77x.c
1102 target/arm/tcc77x/adc-tcc77x.c
1103 target/arm/tcc77x/powermgmt-tcc77x.c
1104 target/arm/tcc77x/c100/lcd-S6B33B2.c
1105 target/arm/tcc77x/c100/button-c100.c
1106 target/arm/tcc77x/c100/power-c100.c
1107 #ifndef BOOTLOADER
1108 target/arm/tcc77x/debug-tcc77x.c
1109 target/arm/pcm-telechips.c
1110 target/arm/tcc77x/c100/audio-c100.c
1111 #endif /* BOOTLOADER */
1112 #endif /* SIMULATOR */
1113 #endif /* SANSA_C100 */
1115 #ifdef SANSA_CLIP
1116 #ifndef SIMULATOR
1117 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1118 target/arm/as3525/sansa-clip/lcd-as-clip.S
1119 target/arm/as3525/sansa-clip/button-clip.c
1120 target/arm/as3525/sansa-clip/backlight-clip.c
1121 #ifndef BOOTLOADER
1122 target/arm/powermgmt-ascodec.c
1123 target/arm/as3525/sansa-clip/powermgmt-clip.c
1124 #endif /* !BOOTLOADER */
1125 #endif /* !SIMULATOR */
1126 #endif /* SANSA_CLIP */
1128 #ifdef SANSA_E200V2
1129 #ifndef SIMULATOR
1130 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1131 target/arm/as3525/lcd-as-e200v2-fuze.S
1132 target/arm/as3525/button-e200v2-fuze.c
1133 target/arm/as3525/backlight-e200v2-fuze.c
1134 #ifndef BOOTLOADER
1135 target/arm/powermgmt-ascodec.c
1136 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1137 #endif /* !BOOTLOADER */
1138 #endif /* !SIMULATOR */
1139 #endif /* SANSA_E200V2 */
1141 #ifdef SANSA_C200V2
1142 #ifndef SIMULATOR
1143 target/arm/lcd-c200_c200v2.c
1144 target/arm/as3525/sansa-c200v2/button-c200v2.c
1145 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1146 #ifndef BOOTLOADER
1147 target/arm/as3525/powermgmt-as3525.c
1148 #endif /* !BOOTLOADER */
1149 #endif /* !SIMULATOR */
1150 #endif /* SANSA_E200V2 */
1152 #ifdef SANSA_M200V4
1153 #ifndef SIMULATOR
1154 target/arm/lcd-ssd1815.c
1155 target/arm/as3525/sansa-m200v4/button-m200v4.c
1156 #ifndef BOOTLOADER
1157 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1158 #endif /* !BOOTLOADER */
1159 #endif /* !SIMULATOR */
1160 #endif /* SANSA_M200V4 */
1162 #ifdef SANSA_FUZE
1163 #ifndef SIMULATOR
1164 target/arm/as3525/button-e200v2-fuze.c
1165 target/arm/as3525/sansa-fuze/lcd-fuze.c
1166 target/arm/as3525/lcd-as-e200v2-fuze.S
1167 target/arm/as3525/backlight-e200v2-fuze.c
1168 #ifndef BOOTLOADER
1169 target/arm/powermgmt-ascodec.c
1170 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1171 #endif /* !BOOTLOADER */
1172 #endif /* !SIMULATOR */
1173 #endif /* SANSA_FUZE */
1175 #ifdef IAUDIO_7
1176 #ifndef SIMULATOR
1177 drivers/nand_id.c
1178 drivers/pcf50606.c
1179 target/arm/usb-tcc.c
1180 target/arm/tcc77x/system-tcc77x.c
1181 target/arm/tcc77x/kernel-tcc77x.c
1182 target/arm/tcc77x/timer-tcc77x.c
1183 target/arm/tcc77x/adc-tcc77x.c
1184 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1185 target/arm/tcc77x/iaudio7/power-iaudio7.c
1186 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1187 target/arm/tcc77x/iaudio7/button-iaudio7.c
1188 target/arm/tcc77x/iaudio7/ata2501.c
1189 #ifndef BOOTLOADER
1190 target/arm/wmcodec-telechips.c
1191 target/arm/pcm-telechips.c
1192 target/arm/tcc77x/debug-tcc77x.c
1193 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1194 #endif /* BOOTLOADER */
1195 #endif /* SIMULATOR */
1196 #endif /* IAUDIO_7 */
1198 #ifdef COWON_D2
1199 #ifndef SIMULATOR
1200 drivers/nand_id.c
1201 drivers/pcf50606.c
1202 target/arm/lcd-as-memframe.S
1203 target/arm/tcc780x/adc-tcc780x.c
1204 target/arm/tcc780x/system-tcc780x.c
1205 target/arm/tcc780x/cowond2/button-cowond2.c
1206 target/arm/tcc780x/cowond2/lcd-cowond2.c
1207 target/arm/tcc780x/cowond2/power-cowond2.c
1208 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1209 target/arm/tcc780x/cowond2/backlight-cowond2.c
1210 target/arm/usb-tcc.c
1211 #ifndef BOOTLOADER
1212 target/arm/tcc780x/kernel-tcc780x.c
1213 target/arm/tcc780x/timer-tcc780x.c
1214 target/arm/wmcodec-telechips.c
1215 target/arm/tcc780x/debug-tcc780x.c
1216 target/arm/pcm-telechips.c
1217 target/arm/tcc780x/cowond2/audio-cowond2.c
1218 #endif /* BOOTLOADER */
1219 #endif /* SIMULATOR */
1220 #endif /* COWON_D2 */
1222 #if CONFIG_CPU==S5L8700
1223 target/arm/s5l8700/system-s5l8700.c
1224 #endif
1226 #ifdef MEIZU_M6SL
1227 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1228 drivers/qt1106.c
1229 #ifndef SIMULATOR
1230 #ifndef BOOTLOADER
1231 #endif /* BOOTLOADER */
1232 #endif /* SIMULATOR */
1233 #endif /* MEIZU_M6SL */
1235 #ifdef MEIZU_M6SP
1236 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1237 #ifndef SIMULATOR
1238 #ifndef BOOTLOADER
1239 #endif /* BOOTLOADER */
1240 #endif /* SIMULATOR */
1241 #endif /* MEIZU_M6SP */
1243 #ifdef MEIZU_M3
1244 target/arm/s5l8700/meizu-m3/lcd-m3.c
1245 drivers/qt1106.c
1246 #ifndef SIMULATOR
1247 #ifndef BOOTLOADER
1248 #endif /* BOOTLOADER */
1249 #endif /* SIMULATOR */
1250 #endif /* MEIZU_M3 */
1252 #ifndef SIMULATOR
1253 #if CONFIG_CPU == JZ4732
1254 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1255 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1256 target/mips/ingenic_jz47xx/debug-jz4740.c
1257 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1258 target/mips/ingenic_jz47xx/kernel-jz4740.c
1259 target/mips/ingenic_jz47xx/i2c-jz4740.c
1260 target/mips/ingenic_jz47xx/lcd-jz4740.c
1261 target/mips/ingenic_jz47xx/system-jz4740.c
1262 target/mips/ingenic_jz47xx/usb-jz4740.c
1263 target/mips/ingenic_jz47xx/timer-jz4740.c
1264 #ifndef BOOTLOADER
1265 target/mips/ingenic_jz47xx/codec-jz4740.c
1266 target/mips/ingenic_jz47xx/pcm-jz4740.c
1267 #endif /* BOOTLOADER */
1268 drivers/nand_id.c
1269 #endif /* CONFIG_CPU == JZ4732 */
1271 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1272 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1273 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1274 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1275 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1276 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1277 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1279 #ifdef ONDA_VX767
1280 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1281 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1282 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1283 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1284 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1285 #endif /* ONDA_VX767 */
1287 #if defined(LYRE_PROTO1)
1288 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1289 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1290 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1291 target/arm/at91sam/lyre_proto1/crt0.S
1292 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1293 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1294 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1295 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1296 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1297 #endif
1298 #endif /* SIMULATOR */
1300 #ifdef SAMSUNG_YH820
1301 #ifndef SIMULATOR
1302 target/arm/ata-as-arm.S
1303 target/arm/ata-pp5020.c
1304 target/arm/adc-pp5020.c
1305 target/arm/i2s-pp.c
1306 target/arm/usb-fw-pp502x.c
1307 target/arm/samsung/akcodec-yh82x_yh92x.c
1308 target/arm/samsung/button-yh82x_yh92x.c
1309 target/arm/samsung/power-yh82x_yh92x.c
1310 target/arm/samsung/yh820/backlight-yh820.c
1311 target/arm/samsung/yh820/lcd-yh820.c
1312 target/arm/samsung/yh820/lcd-as-yh820.S
1313 target/arm/samsung/yh820/powermgmt-yh820.c
1314 #endif /* SIMULATOR */
1315 #endif /* SAMSUNG_YH820 */
1317 #ifdef SAMSUNG_YH920
1318 #ifndef SIMULATOR
1319 target/arm/ata-as-arm.S
1320 target/arm/ata-pp5020.c
1321 target/arm/adc-pp5020.c
1322 target/arm/i2s-pp.c
1323 target/arm/usb-fw-pp502x.c
1324 target/arm/samsung/akcodec-yh82x_yh92x.c
1325 target/arm/samsung/button-yh82x_yh92x.c
1326 target/arm/samsung/power-yh82x_yh92x.c
1327 target/arm/samsung/yh920/backlight-yh920.c
1328 target/arm/samsung/yh920/lcd-yh920.c
1329 target/arm/samsung/yh920/powermgmt-yh920.c
1330 #endif /* SIMULATOR */
1331 #endif /* SAMSUNG_YH920 */
1333 #ifdef SAMSUNG_YH925
1334 #ifndef SIMULATOR
1335 target/arm/ata-as-arm.S
1336 target/arm/ata-pp5020.c
1337 target/arm/adc-pp5020.c
1338 target/arm/i2s-pp.c
1339 target/arm/usb-fw-pp502x.c
1340 target/arm/samsung/akcodec-yh82x_yh92x.c
1341 target/arm/samsung/button-yh82x_yh92x.c
1342 target/arm/samsung/power-yh82x_yh92x.c
1343 target/arm/samsung/yh925/backlight-yh925.c
1344 target/arm/samsung/yh925/lcd-yh925.c
1345 target/arm/samsung/yh925/lcd-as-yh925.S
1346 target/arm/samsung/yh925/powermgmt-yh925.c
1347 #endif /* SIMULATOR */
1348 #endif /* SAMSUNG_YH925 */