Those strings only apply to targets having the pitchscreen feature.
[kugel-rb.git] / firmware / SOURCES
blob7c1a17ff7f57cd82b3762a68f4b445c0ca0bf07c
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_SD)
138 drivers/sd.c
139 #elif (CONFIG_STORAGE & STORAGE_RAMDISK)
140 drivers/ramdisk.c
141 #endif /* CONFIG_STORAGE */
142 drivers/fat.c
143 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
144 hotswap.c
145 #endif
146 #endif /* SIMULATOR */
148 /* EEPROM */
149 #ifdef HAVE_EEPROM
150 drivers/eeprom_24cxx.c
151 #ifdef HAVE_EEPROM_SETTINGS
152 eeprom_settings.c
153 #endif /* HAVE_EEPROM_SETTINGS */
154 #endif /* HAVE_EEPROM */
156 /* RTC */
157 #ifndef SIMULATOR
158 #if (CONFIG_RTC == RTC_M41ST84W)
159 drivers/rtc/rtc_m41st84w.c
160 #elif (CONFIG_RTC == RTC_PCF50606)
161 drivers/rtc/rtc_pcf50606.c
162 #elif (CONFIG_RTC == RTC_PCF50605)
163 drivers/rtc/rtc_pcf50605.c
164 #elif (CONFIG_RTC == RTC_E8564)
165 drivers/rtc/rtc_e8564.c
166 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
167 drivers/rtc/rtc_ds1339_ds3231.c
168 #elif (CONFIG_RTC == RTC_S3C2440)
169 drivers/rtc/rtc_s3c2440.c
170 #elif (CONFIG_RTC == RTC_AS3514)
171 drivers/rtc/rtc_as3514.c
172 #elif (CONFIG_RTC == RTC_RX5X348AB)
173 drivers/rtc/rtc_rx5x348ab.c
174 #elif (CONFIG_RTC == RTC_MR100)
175 drivers/rtc/rtc_mr100.c
176 #elif (CONFIG_RTC == RTC_MC13783)
177 drivers/rtc/rtc_mc13783.c
178 #elif (CONFIG_RTC == RTC_TCC77X)
179 drivers/rtc/rtc_tcc77x.c
180 #elif (CONFIG_RTC == RTC_JZ47XX)
181 drivers/rtc/rtc_jz4740.c
182 #elif (CONFIG_RTC == RTC_S35390A)
183 drivers/rtc/rtc_s35390a.c
184 #endif /* (CONFIG_RTC == RTC_) */
185 #endif /* SIMULATOR */
187 /* Tuner */
188 #if CONFIG_TUNER
189 tuner.c
190 #ifndef SIMULATOR
191 #if (CONFIG_TUNER & LV24020LP)
192 drivers/tuner/lv24020lp.c
193 #endif /* (CONFIG_TUNER & LV24020LP) */
194 #if (CONFIG_TUNER & S1A0903X01)
195 drivers/fmradio.c
196 drivers/tuner/s1a0903x01.c
197 #endif /* (CONFIG_TUNER & S1A0903X01) */
198 #if (CONFIG_TUNER & TEA5767)
199 drivers/tuner/tea5767.c
200 #endif /* (CONFIG_TUNER & TEA5767) */
201 #if (CONFIG_TUNER & SI4700)
202 drivers/tuner/si4700.c
203 #endif /* (CONFIG_TUNER & SI4700) */
204 #endif /*SIMULATOR */
205 #endif /* CONFIG_TUNER */
207 /* Sound */
208 #if CONFIG_CODEC != SWCODEC
209 mp3_playback.c
210 #endif /* CONFIG_CODEC != SWCODEC */
211 sound.c
213 #if CONFIG_CODEC == SWCODEC
215 #ifndef BOOTLOADER
216 pcm_sampr.c
217 pcm.c
218 #ifdef HAVE_RECORDING
219 enc_base.c
220 #endif /* HAVE_RECORDING */
221 #endif /* BOOTLOADER */
223 #else  /* !SWCODEC */
225 #ifndef BOOTLOADER
226 #ifndef SIMULATOR
227 drivers/mas.c
228 #endif /* SIMULATOR */
229 #endif /* BOOTLOADER */
231 #endif /* SWCODEC */
233 /* Audio codec */
234 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
235 #if defined(HAVE_UDA1380)
236 drivers/audio/uda1380.c
237 #elif defined(HAVE_WM8751)
238 drivers/audio/wm8751.c
239 #elif defined(HAVE_WM8978)
240 drivers/audio/wm8978.c
241 #elif defined(HAVE_WM8975)
242 drivers/audio/wm8975.c
243 #elif defined(HAVE_WM8985)
244 drivers/audio/wm8985.c
245 #elif defined(HAVE_WM8758)
246 drivers/audio/wm8758.c
247 #elif defined(HAVE_WM8711) \
248    || defined(HAVE_WM8721) \
249    || defined(HAVE_WM8731)
250 drivers/audio/wm8731.c
251 #elif defined(HAVE_AS3514)
252 drivers/audio/as3514.c
253 #elif defined(HAVE_TLV320)
254 drivers/audio/tlv320.c
255 #elif defined(HAVE_MAS35XX)
256 drivers/audio/mas35xx.c
257 #elif defined(HAVE_AK4537)
258 drivers/audio/ak4537.c
259 #endif /* defined(HAVE_*) */
260 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
262 /* USB Stack */
263 #if !defined(SIMULATOR)
264 #ifdef HAVE_USBSTACK
265 usbstack/usb_core.c
266 #ifdef USB_ENABLE_STORAGE
267 usbstack/usb_storage.c
268 #endif
269 #ifdef USB_ENABLE_SERIAL
270 usbstack/usb_serial.c
271 #endif
272 #ifdef USB_ENABLE_CHARGING_ONLY
273 usbstack/usb_charging_only.c
274 #endif
275 #ifdef USB_ENABLE_HID
276 usbstack/usb_hid.c
277 #endif
278 #if CONFIG_USBOTG == USBOTG_M66591
279 drivers/m66591.c
280 #elif CONFIG_USBOTG == USBOTG_ARC
281 target/arm/usb-drv-arc.c
282 #elif CONFIG_USBOTG == USBOTG_AS3525
283 target/arm/as3525/usb-drv-as3525.c
284 #elif CONFIG_USBOTG == USBOTG_ISP1583
285 drivers/isp1583.c
286 #endif
287 #else /* !defined(HAVE_USBSTACK) */
288 #if CONFIG_USBOTG == USBOTG_ISP1362      
289 drivers/isp1362.c
290 #elif CONFIG_USBOTG == USBOTG_M5636      
291 drivers/m5636.c
292 #endif
293 #endif /* !defined(HAVE_USBSTACK) */
294 #endif /* !defined(SIMULATOR) */
296 /* Other Random Hardware */
297 #ifdef HAVE_TSC2100
298 #if !defined(SIMULATOR)
299 drivers/tsc2100.c
300 drivers/audio/tsc2100.c
301 #endif /* !SIMULATOR */
302 #endif
304 /* CPU Specific - By class then particular chip if applicable */
305 #if defined(CPU_SH)
307 #ifndef SIMULATOR
308 drivers/i2c.c
309 target/sh/adc-sh.c
310 target/sh/bitswap.S
311 target/sh/crt0.S
312 target/sh/kernel-sh.c
313 target/sh/memcpy-sh.S
314 target/sh/memmove-sh.S
315 target/sh/memset-sh.S
316 target/sh/strlen-sh.S
317 target/sh/system-sh.c
318 target/sh/archos/descramble.S
319 #endif /* SIMULATOR */
321 #elif defined(CPU_COLDFIRE)
323 #ifndef SIMULATOR
324 target/coldfire/crt0.S
325 #ifdef HAVE_PRIORITY_SCHEDULING
326 common/ffs.c
327 target/coldfire/ffs-coldfire.S
328 #endif
329 target/coldfire/memcpy-coldfire.S
330 target/coldfire/memmove-coldfire.S
331 target/coldfire/memset-coldfire.S
332 target/coldfire/strlen-coldfire.S
333 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
334  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
335 target/coldfire/memset16-coldfire.S
336 #endif
337 target/coldfire/kernel-coldfire.c
338 target/coldfire/system-coldfire.c
339 target/coldfire/timer-coldfire.c
340 #ifndef BOOTLOADER
341 target/coldfire/pcm-coldfire.c
342 #endif /* BOOTLOADER */
343 #if CONFIG_I2C == I2C_COLDFIRE
344 target/coldfire/i2c-coldfire.c
345 #endif /* CONFIG_I2C == I2C_COLDFIRE */
346 #endif /* SIMULATOR */
348 #elif defined(CPU_PP) || defined(CPU_ARM)
349 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
350 target/arm/memcpy-arm.S
351 target/arm/memmove-arm.S
352 common/strlen.c
353 #ifndef SIMULATOR
354 target/arm/memset-arm.S
355 target/arm/memset16-arm.S
356 #ifdef HAVE_PRIORITY_SCHEDULING
357 target/arm/ffs-arm.S
358 #endif
359 target/arm/system-arm.c
360 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
361 target/arm/i2c-pp.c
362 #elif CONFIG_I2C == I2C_PNX0101
363 target/arm/pnx0101/i2c-pnx0101.c
364 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
365 target/arm/i2c-telechips.c
366 #elif CONFIG_I2C == I2C_S3C2440
367 /* no i2c driver yet */
368 #elif CONFIG_I2C == I2C_S5L8700
369 target/arm/s5l8700/i2c-s5l8700.c
370 #endif
372 #if CONFIG_CPU == PNX0101
373 target/arm/pnx0101/kernel-pnx0101.c
374 target/arm/pnx0101/system-pnx0101.c
375 target/arm/pnx0101/timer-pnx0101.c
376 #endif
378 #if CONFIG_CPU == AS3525
379 target/arm/as3525/system-as3525.c
380 target/arm/as3525/kernel-as3525.c
381 target/arm/as3525/timer-as3525.c
382 target/arm/as3525/ata_sd_as3525.c
383 target/arm/as3525/power-as3525.c
384 target/arm/as3525/usb-as3525.c
385 target/arm/as3525/dma-pl081.c
386 target/arm/as3525/ascodec-as3525.c
387 #ifndef BOOTLOADER
388 target/arm/mmu-arm.S
389 drivers/generic_i2c.c
390 target/arm/adc-as3514.c
391 target/arm/as3525/audio-as3525.c
392 target/arm/as3525/debug-as3525.c
393 target/arm/as3525/fmradio-i2c-as3525.c
394 target/arm/as3525/i2s-as3525.c
395 target/arm/as3525/pcm-as3525.c
396 #endif /* BOOTLOADER */
397 #endif /* CONFIG_CPU == AS3525 */
399 #if defined(CPU_PP)
400 target/arm/kernel-pp.c
401 target/arm/timer-pp.c
402 #if CONFIG_CPU == PP5002
403 target/arm/system-pp5002.c
404 #elif defined CPU_PP502x
405 target/arm/system-pp502x.c
406 #endif
407 #ifdef BOOTLOADER
408 target/arm/crt0-pp-bl.S
409 #else
410 target/arm/pcm-pp.c
411 #if !defined(SANSA_E200) && !defined(SANSA_C200)
412 target/arm/audio-pp.c
413 #endif /* SANSA_E200 */
414 target/arm/crt0-pp.S
415 #endif
416 #elif CONFIG_CPU == PNX0101
417 target/arm/pnx0101/crt0-pnx0101.S
418 #elif CONFIG_CPU==DM320
419 target/arm/tms320dm320/crt0.S
420 #elif CONFIG_CPU==S3C2440
421 target/arm/s3c2440/crt0.S
422 #elif defined(CPU_TCC77X)
423 target/arm/tcc77x/crt0.S
424 #elif defined(CPU_TCC780X)
425 target/arm/tcc780x/crt0.S
426 #elif CONFIG_CPU==IMX31L
427 target/arm/imx31/crt0.S
428 #elif CONFIG_CPU==S5L8700
429 target/arm/s5l8700/crt0.S
430 #elif defined(CPU_ARM)
431 target/arm/crt0.S
432 #endif /* defined(CPU_*) */
433 #endif /* SIMULATOR */
435 #elif defined(CPU_MIPS)
436 #undef mips
437 /*target/mips/strlen.S*/
438 common/memmove.c
439 common/memset16.c
440 common/strlen.c
441 target/mips/ffs-mips.S
442 target/mips/memcpy-mips.S
443 target/mips/memset-mips.S
444 target/mips/mmu-mips.c
445 #if CONFIG_CPU==JZ4732
446 target/mips/ingenic_jz47xx/crt0.S
447 #endif /* CONFIG_CPU == JZ4732 */
449 #else
451 #ifdef HAVE_PRIORITY_SCHEDULING
452 common/ffs.c
453 #endif
454 common/memcpy.c
455 common/memmove.c
456 common/memset.c
457 common/memset16.c
458 common/strlen.c
459 #ifndef SIMULATOR
460 crt0.S
461 drivers/i2c.c
462 #endif /* SIMULATOR */
464 #endif /* defined(CPU_*) */
466 #ifdef ARCHOS_PLAYER
467 #ifndef SIMULATOR
468 target/sh/archos/ata-archos.c
469 target/sh/archos/timer-archos.c
470 target/sh/archos/ata-as-archos.S
471 target/sh/archos/player/button-player.c
472 target/sh/archos/player/hwcompat-player.c
473 target/sh/archos/player/lcd-as-player.S
474 target/sh/archos/player/lcd-player.c
475 target/sh/archos/player/power-player.c
476 target/sh/archos/player/powermgmt-player.c
477 target/sh/archos/player/usb-player.c
478 #endif /* SIMULATOR */
479 #endif /* ARCHOS_PLAYER */
481 #ifdef ARCHOS_RECORDER
482 #ifndef SIMULATOR
483 target/sh/archos/ata-archos.c
484 target/sh/archos/timer-archos.c
485 target/sh/archos/ata-as-archos.S
486 target/sh/archos/lcd-archos-bitmap.c
487 target/sh/archos/lcd-as-archos-bitmap.S   
488 target/sh/archos/recorder/button-recorder.c
489 target/sh/archos/recorder/power-recorder.c
490 target/sh/archos/recorder/powermgmt-recorder.c
491 target/sh/archos/recorder/usb-recorder.c
492 #endif /* SIMULATOR */
493 #endif /* ARCHOS_RECORDER */
495 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
496 #ifndef SIMULATOR
497 target/sh/archos/ata-archos.c
498 target/sh/archos/timer-archos.c
499 target/sh/archos/ata-as-archos.S
500 target/sh/archos/lcd-archos-bitmap.c
501 target/sh/archos/lcd-as-archos-bitmap.S
502 target/sh/archos/fm_v2/button-fm_v2.c
503 target/sh/archos/fm_v2/power-fm_v2.c
504 target/sh/archos/fm_v2/powermgmt-fm_v2.c
505 target/sh/archos/fm_v2/usb-fm_v2.c
506 #endif /* SIMULATOR */
507 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
509 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
510 #ifndef SIMULATOR
511 target/sh/archos/timer-archos.c
512 target/sh/archos/lcd-archos-bitmap.c
513 target/sh/archos/lcd-as-archos-bitmap.S
514 target/sh/archos/ondio/button-ondio.c
515 target/sh/archos/ondio/power-ondio.c
516 target/sh/archos/ondio/powermgmt-ondio.c
517 target/sh/archos/ondio/usb-ondio.c
518 #if (CONFIG_TUNER & TEA5767)
519 target/sh/archos/ondio/fmradio_i2c-ondio.c
520 #endif
521 #endif /* SIMULATOR */
522 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
524 #ifdef SANSA_E200
525 #ifndef SIMULATOR
526 target/arm/adc-as3514.c
527 target/arm/ascodec-pp.c
528 target/arm/ata-sd-pp.c
529 target/arm/lcd-as-memframe.S
530 target/arm/powermgmt-ascodec.c
531 target/arm/i2s-pp.c
532 target/arm/usb-fw-pp502x.c
533 target/arm/sandisk/backlight-c200_e200.c
534 target/arm/sandisk/power-c200_e200.c
535 target/arm/sandisk/sansa-e200/lcd-e200.c
536 target/arm/sandisk/sansa-e200/button-e200.c
537 target/arm/sandisk/sansa-e200/powermgmt-e200.c
538 #ifndef BOOTLOADER
539 target/arm/sandisk/audio-c200_e200.c
540 #endif /* BOOTLOADER */
541 #endif /* SIMULATOR */
542 #endif /* SANSA_E200 */
544 #ifdef SANSA_C200
545 #ifndef SIMULATOR
546 target/arm/adc-as3514.c
547 target/arm/ascodec-pp.c
548 target/arm/ata-sd-pp.c
549 target/arm/i2s-pp.c
550 target/arm/powermgmt-ascodec.c
551 target/arm/usb-fw-pp502x.c
552 target/arm/sandisk/backlight-c200_e200.c
553 target/arm/sandisk/power-c200_e200.c
554 target/arm/lcd-c200_c200v2.c
555 target/arm/sandisk/sansa-c200/lcd-as-c200.S
556 target/arm/sandisk/sansa-c200/button-c200.c
557 target/arm/sandisk/sansa-c200/powermgmt-c200.c
558 #ifndef BOOTLOADER
559 target/arm/sandisk/audio-c200_e200.c
560 #endif /* BOOTLOADER */
561 #endif /* SIMULATOR */
562 #endif /* SANSA_C200 */
564 #ifdef PHILIPS_SA9200
565 #ifndef SIMULATOR
566 #ifndef BOOTLOADER
567 drivers/synaptics-mep.c
568 #endif /* BOOTLOADER */
569 target/arm/adc-as3514.c
570 target/arm/ascodec-pp.c
571 target/arm/ata-sd-pp.c
572 target/arm/i2s-pp.c
573 target/arm/powermgmt-ascodec.c
574 target/arm/usb-fw-pp502x.c
575 target/arm/philips/sa9200/backlight-sa9200.c
576 target/arm/philips/sa9200/button-sa9200.c
577 target/arm/philips/sa9200/lcd-sa9200.c
578 target/arm/philips/sa9200/power-sa9200.c
579 target/arm/philips/sa9200/powermgmt-sa9200.c
580 #endif /* SIMULATOR */
581 #endif /* PHILIPS_SA9200 */
583 #ifdef PHILIPS_HDD1630
584 #ifndef SIMULATOR
585 #ifndef BOOTLOADER
586 drivers/synaptics-mep.c
587 #endif /* BOOTLOADER */
588 target/arm/ata-as-arm.S
589 target/arm/ata-pp5020.c
590 target/arm/wmcodec-pp.c
591 target/arm/i2s-pp.c
592 target/arm/adc-pp5020.c
593 target/arm/philips/hdd1630/backlight-hdd1630.c
594 target/arm/philips/hdd1630/button-hdd1630.c
595 target/arm/philips/hdd1630/fmradio_i2c-hdd1630.c
596 target/arm/philips/hdd1630/lcd-hdd1630.c
597 target/arm/philips/hdd1630/lcd-as-hdd1630.S
598 target/arm/philips/hdd1630/power-hdd1630.c
599 target/arm/philips/hdd1630/powermgmt-hdd1630.c
600 target/arm/usb-fw-pp502x.c
601 #endif /* SIMULATOR */
602 #endif /* PHILIPS_HDD1630 */
604 #ifdef IAUDIO_X5
605 #ifndef SIMULATOR
606 target/coldfire/ata-as-coldfire.S
607 target/coldfire/pcf50606-coldfire.c
608 target/coldfire/iaudio/adc-iaudio.c
609 target/coldfire/iaudio/ata-iaudio.c
610 target/coldfire/iaudio/fmradio_i2c-iaudio.c
611 target/coldfire/iaudio/lcd-remote-as-iaudio.S
612 target/coldfire/iaudio/lcd-remote-iaudio.c
613 target/coldfire/iaudio/pcf50606-iaudio.c
614 target/coldfire/iaudio/power-x5m5.c
615 target/coldfire/iaudio/powermgmt-iaudio.c
616 target/coldfire/iaudio/system-iaudio.c
617 target/coldfire/iaudio/usb-iaudio.c
618 target/coldfire/iaudio/x5/backlight-x5.c
619 target/coldfire/iaudio/x5/button-x5.c
620 target/coldfire/iaudio/x5/ds2411-x5.c
621 target/coldfire/iaudio/x5/lcd-as-x5.S
622 target/coldfire/iaudio/x5/lcd-x5.c
623 target/coldfire/iaudio/x5/m5636-x5.c
624 #ifndef BOOTLOADER
625 target/coldfire/iaudio/audio-iaudio.c
626 #endif
627 #endif /* SIMULATOR */
628 #endif /* IAUDIO_X5 */
630 #ifdef IAUDIO_M5
631 #ifndef SIMULATOR
632 target/coldfire/ata-as-coldfire.S
633 target/coldfire/pcf50606-coldfire.c
634 target/coldfire/iaudio/adc-iaudio.c
635 target/coldfire/iaudio/ata-iaudio.c
636 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
637 target/coldfire/iaudio/fmradio_i2c-iaudio.c
638 #endif
639 target/coldfire/iaudio/lcd-remote-as-iaudio.S
640 target/coldfire/iaudio/lcd-remote-iaudio.c
641 target/coldfire/iaudio/m5/backlight-m5.c
642 target/coldfire/iaudio/m5/button-m5.c
643 target/coldfire/iaudio/m5/lcd-as-m5.S
644 target/coldfire/iaudio/m5/lcd-m5.c
645 target/coldfire/iaudio/pcf50606-iaudio.c
646 target/coldfire/iaudio/power-x5m5.c
647 target/coldfire/iaudio/powermgmt-iaudio.c
648 target/coldfire/iaudio/system-iaudio.c
649 target/coldfire/iaudio/usb-iaudio.c
650 #ifndef BOOTLOADER
651 target/coldfire/iaudio/audio-iaudio.c
652 #endif
653 #endif /* SIMULATOR */
654 #endif /* IAUDIO_M5 */
656 #ifdef IAUDIO_M3
657 #ifndef SIMULATOR
658 target/coldfire/ata-as-coldfire.S
659 target/coldfire/iaudio/fmradio_i2c-iaudio.c
660 target/coldfire/iaudio/m3/adc-m3.c
661 target/coldfire/iaudio/m3/ata-m3.c
662 target/coldfire/iaudio/m3/backlight-m3.c
663 target/coldfire/iaudio/m3/button-m3.c
664 target/coldfire/iaudio/m3/lcd-m3.c
665 target/coldfire/iaudio/m3/lcd-as-m3.S
666 target/coldfire/iaudio/m3/power-m3.c
667 target/coldfire/iaudio/m3/powermgmt-m3.c
668 target/coldfire/iaudio/m3/system-m3.c
669 target/coldfire/iaudio/m3/usb-m3.c
670 #ifndef BOOTLOADER
671 target/coldfire/iaudio/audio-iaudio.c
672 #endif
673 #endif /* SIMULATOR */
674 #endif /* IAUDIO_M3 */
676 #ifdef IRIVER_IFP7XX_SERIES
677 #ifdef STUB
678 ifp_usb_serial.c
679 common/sscanf.c
680 #endif /* STUB */
681 #endif /* IRIVER_IFP7XX_SERIES */
683 #ifdef IRIVER_H300_SERIES
684 #ifndef SIMULATOR
685 target/coldfire/ata-as-coldfire.S
686 target/coldfire/pcf50606-coldfire.c
687 target/coldfire/iriver/ata-iriver.c
688 target/coldfire/iriver/lcd-remote-iriver.c
689 target/coldfire/iriver/lcd-remote-as-iriver.S
690 target/coldfire/iriver/system-iriver.c
691 target/coldfire/iriver/fmradio_i2c-iriver.c
692 target/coldfire/iriver/h300/sw_i2c-h300.c
693 target/coldfire/iriver/h300/adc-h300.c
694 target/coldfire/iriver/h300/backlight-h300.c
695 target/coldfire/iriver/h300/button-h300.c
696 target/coldfire/iriver/h300/pcf50606-h300.c
697 target/coldfire/iriver/h300/lcd-as-h300.S
698 target/coldfire/iriver/h300/lcd-h300.c
699 target/coldfire/iriver/h300/power-h300.c
700 target/coldfire/iriver/h300/powermgmt-h300.c
701 target/coldfire/iriver/h300/usb-h300.c
702 #ifndef BOOTLOADER
703 target/coldfire/iriver/audio-iriver.c
704 target/coldfire/iriver/udacodec-iriver.c
705 #endif
706 #endif /* SIMULATOR */
707 #endif /* IRIVER_H300_SERIES */
709 #ifdef IRIVER_H100_SERIES
710 #ifndef SIMULATOR
711 drivers/sw_i2c.c
712 target/coldfire/ata-as-coldfire.S
713 target/coldfire/iriver/ata-iriver.c
714 target/coldfire/iriver/lcd-remote-iriver.c
715 target/coldfire/iriver/lcd-remote-as-iriver.S
716 target/coldfire/iriver/system-iriver.c
717 target/coldfire/iriver/fmradio_i2c-iriver.c
718 target/coldfire/iriver/h100/adc-h100.c
719 target/coldfire/iriver/h100/backlight-h100.c
720 target/coldfire/iriver/h100/button-h100.c
721 target/coldfire/iriver/h100/lcd-as-h100.S
722 target/coldfire/iriver/h100/lcd-h100.c
723 target/coldfire/iriver/h100/power-h100.c
724 target/coldfire/iriver/h100/powermgmt-h100.c
725 #ifndef BOOTLOADER
726 target/coldfire/iriver/audio-iriver.c
727 target/coldfire/iriver/udacodec-iriver.c
728 target/coldfire/iriver/h100/spdif-h100.c
729 #endif
730 target/coldfire/iriver/h100/usb-h100.c
731 #endif /* SIMULATOR */
732 #endif /* IRIVER_H100_SERIES */
734 #ifdef IRIVER_H10
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_20gb.c
745 target/arm/iriver/h10/lcd-as-h10.S
746 target/arm/iriver/h10/power-h10.c
747 target/arm/iriver/h10/powermgmt-h10.c
748 target/arm/usb-fw-pp502x.c
749 #endif /* SIMULATOR */
750 #endif /* IRIVER_H10 */
752 #ifdef IRIVER_H10_5GB
753 #ifndef SIMULATOR
754 target/arm/ata-as-arm.S
755 target/arm/ata-pp5020.c
756 target/arm/wmcodec-pp.c
757 target/arm/i2s-pp.c
758 target/arm/adc-pp5020.c
759 target/arm/iriver/h10/backlight-h10.c
760 target/arm/iriver/h10/button-h10.c
761 target/arm/iriver/h10/fmradio_i2c-h10.c
762 target/arm/iriver/h10/lcd-h10_5gb.c
763 target/arm/iriver/h10/power-h10.c
764 target/arm/iriver/h10/powermgmt-h10.c
765 target/arm/usb-fw-pp502x.c
766 #endif /* SIMULATOR */
767 #endif /* IRIVER_H10_5GB */
769 #ifdef GIGABEAT_F
770 #ifndef SIMULATOR
771 target/arm/lcd-as-memframe.S
772 target/arm/mmu-arm.S
773 target/arm/s3c2440/debug-s3c2440.c
774 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
775 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
776 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
777 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
778 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
779 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
780 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
781 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
782 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
783 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
784 #ifndef BOOTLOADER
785 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
786 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
787 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
788 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
789 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
790 #endif
791 #endif /* SIMULATOR */
792 #endif /* GIGABEAT_F */
794 #ifdef GIGABEAT_S
795 #ifndef SIMULATOR
796 target/arm/lcd-as-memframe.S
797 target/arm/mmu-arm.S
798 target/arm/imx31/ccm-imx31.c
799 target/arm/imx31/debug-imx31.c
800 target/arm/imx31/rolo_restart.S
801 target/arm/imx31/sdma-imx31.c
802 target/arm/imx31/gigabeat-s/adc-imx31.c
803 target/arm/imx31/gigabeat-s/ata-imx31.c
804 target/arm/imx31/gigabeat-s/avic-imx31.c
805 target/arm/imx31/gigabeat-s/backlight-imx31.c
806 target/arm/imx31/gigabeat-s/button-imx31.c
807 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
808 target/arm/imx31/gigabeat-s/gpio-imx31.c
809 target/arm/imx31/gigabeat-s/kernel-imx31.c
810 target/arm/imx31/gigabeat-s/i2c-imx31.c
811 target/arm/imx31/gigabeat-s/i2s-imx31.c
812 target/arm/imx31/gigabeat-s/lcd-imx31.c
813 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
814 target/arm/imx31/gigabeat-s/mc13783-imx31.c
815 target/arm/imx31/gigabeat-s/mmu-imx31.c
816 target/arm/imx31/gigabeat-s/power-imx31.c
817 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
818 target/arm/imx31/gigabeat-s/spi-imx31.c
819 target/arm/imx31/gigabeat-s/system-imx31.c
820 target/arm/imx31/gigabeat-s/usb-imx31.c
821 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
822 #ifndef BOOTLOADER
823 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
824 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
825 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
826 target/arm/imx31/gigabeat-s/pcm-imx31.c
827 target/arm/imx31/gigabeat-s/timer-imx31.c
828 #endif
829 #endif /* SIMULATOR */
830 #endif /* GIGABEAT_S */
832 #if CONFIG_CPU == DM320
833 target/arm/tms320dm320/debug-dm320.c
834 target/arm/tms320dm320/dsp-dm320.c
835 target/arm/tms320dm320/i2c-dm320.c
836 target/arm/tms320dm320/kernel-dm320.c
837 target/arm/tms320dm320/spi-dm320.c
838 target/arm/tms320dm320/system-dm320.c
839 target/arm/tms320dm320/timer-dm320.c
840 target/arm/tms320dm320/uart-dm320.c
841 #endif /* CONFIG_CPU == DM320 */
843 #ifdef MROBE_500
844 #ifndef SIMULATOR
845 target/arm/lcd-as-memframe.S
846 target/arm/mmu-arm.S
847 target/arm/tms320dm320/mrobe-500/adc-mr500.c
848 target/arm/tms320dm320/mrobe-500/ata-mr500.c
849 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
850 target/arm/tms320dm320/mrobe-500/button-mr500.c
851 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
852 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
853 #if defined(HAVE_REMOTE_LCD)
854 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
855 #endif
856 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
857 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
858 target/arm/tms320dm320/mrobe-500/power-mr500.c
859 target/arm/tms320dm320/mrobe-500/usb-mr500.c
860 #endif /* SIMULATOR */
861 #endif /* MROBE_500 */
863 #ifdef CREATIVE_ZVx
864 #ifndef SIMULATOR
865 target/arm/ata-as-arm.S
866 target/arm/lcd-as-memframe.S
867 target/arm/mmu-arm.S
868 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
869 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
870 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
871 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
872 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
873 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
874 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
875 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
876 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
877 #endif /* SIMULATOR */
878 #endif /* CREATIVE_ZVx */
880 #ifdef MROBE_100
881 #ifndef SIMULATOR
882 #ifndef BOOTLOADER
883 drivers/synaptics-mep.c
884 #endif /* BOOTLOADER */
885 drivers/sw_i2c.c
886 target/arm/ata-as-arm.S
887 target/arm/ata-pp5020.c
888 target/arm/wmcodec-pp.c
889 target/arm/i2s-pp.c
890 target/arm/adc-pp5020.c
891 target/arm/olympus/mrobe-100/backlight-mr100.c
892 target/arm/olympus/mrobe-100/button-mr100.c
893 target/arm/olympus/mrobe-100/lcd-mr100.c
894 target/arm/olympus/mrobe-100/lcd-as-mr100.S
895 target/arm/olympus/mrobe-100/power-mr100.c
896 target/arm/olympus/mrobe-100/powermgmt-mr100.c
897 target/arm/usb-fw-pp502x.c
898 #endif /* SIMULATOR */
899 #endif /* MROBE_100 */
901 #ifdef ELIO_TPJ1022
902 #ifndef SIMULATOR
903 target/arm/ata-as-arm.S
904 target/arm/ata-pp5020.c
905 target/arm/wmcodec-pp.c
906 target/arm/i2s-pp.c
907 target/arm/adc-pp5020.c
908 target/arm/tatung/tpj1022/backlight-tpj1022.c
909 target/arm/tatung/tpj1022/button-tpj1022.c
910 target/arm/tatung/tpj1022/lcd-tpj1022.c
911 target/arm/tatung/tpj1022/power-tpj1022.c
912 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
913 target/arm/usb-fw-pp502x.c
914 #endif /* SIMULATOR */
915 #endif /* ELIO_TPJ1022 */
917 #ifdef IPOD_4G
918 #ifndef SIMULATOR
919 drivers/pcf50605.c
920 target/arm/wmcodec-pp.c
921 target/arm/i2s-pp.c
922 target/arm/ata-as-arm.S
923 target/arm/ata-pp5020.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-as-gray.S
928 target/arm/ipod/lcd-gray.c
929 target/arm/ipod/power-ipod.c
930 target/arm/ipod/powermgmt-ipod-pcf.c
931 target/arm/usb-fw-pp502x.c
932 #endif /* SIMULATOR */
933 #endif /* IPOD_4G */
935 #ifdef IPOD_COLOR
936 #ifndef SIMULATOR
937 drivers/pcf50605.c
938 target/arm/ata-as-arm.S
939 target/arm/ata-pp5020.c
940 target/arm/wmcodec-pp.c
941 target/arm/i2s-pp.c
942 target/arm/ipod/adc-ipod-pcf.c
943 target/arm/ipod/backlight-4g_color.c
944 target/arm/ipod/button-clickwheel.c
945 target/arm/ipod/lcd-color_nano.c
946 target/arm/ipod/power-ipod.c
947 target/arm/ipod/powermgmt-ipod-pcf.c
948 target/arm/usb-fw-pp502x.c
949 #endif /* SIMULATOR */
950 #endif /* IPOD_COLOR */
952 #ifdef IPOD_NANO
953 #ifndef SIMULATOR
954 drivers/pcf50605.c
955 target/arm/ata-as-arm.S
956 target/arm/ata-pp5020.c
957 target/arm/wmcodec-pp.c
958 target/arm/i2s-pp.c
959 target/arm/ipod/adc-ipod-pcf.c
960 target/arm/ipod/backlight-nano_video.c
961 target/arm/ipod/button-clickwheel.c
962 target/arm/ipod/lcd-color_nano.c
963 target/arm/ipod/power-ipod.c
964 target/arm/ipod/powermgmt-ipod-pcf.c
965 target/arm/usb-fw-pp502x.c
966 #endif /* SIMULATOR */
967 #endif /* IPOD_NANO */
969 #ifdef IPOD_VIDEO
970 #ifndef SIMULATOR
971 drivers/pcf50605.c
972 target/arm/ata-as-arm.S
973 target/arm/ata-pp5020.c
974 target/arm/wmcodec-pp.c
975 target/arm/i2s-pp.c
976 target/arm/ipod/adc-ipod-pcf.c
977 target/arm/ipod/backlight-nano_video.c
978 target/arm/ipod/button-clickwheel.c
979 target/arm/ipod/power-ipod.c
980 target/arm/ipod/powermgmt-ipod-pcf.c
981 target/arm/ipod/video/lcd-as-video.S
982 target/arm/ipod/video/lcd-video.c
983 target/arm/usb-fw-pp502x.c
984 #endif /* SIMULATOR */
985 #endif /* IPOD_VIDEO */
987 #ifdef IPOD_3G
988 #ifndef SIMULATOR
989 drivers/pcf50605.c
990 target/arm/ata-pp5002.c
991 target/arm/wmcodec-pp.c
992 target/arm/i2s-pp.c
993 target/arm/ipod/adc-ipod-pcf.c
994 target/arm/ipod/3g/backlight-3g.c
995 target/arm/ipod/button-1g-3g.c
996 target/arm/ipod/lcd-as-gray.S
997 target/arm/ipod/lcd-gray.c
998 target/arm/ipod/power-ipod.c
999 target/arm/ipod/powermgmt-ipod-pcf.c
1000 target/arm/usb-fw-pp5002.c
1001 #endif /* SIMULATOR */
1002 #endif /* IPOD_3G */
1004 #ifdef IPOD_1G2G
1005 #ifndef SIMULATOR
1006 target/arm/ata-pp5002.c
1007 target/arm/wmcodec-pp.c
1008 target/arm/i2s-pp.c
1009 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1010 target/arm/ipod/1g2g/backlight-1g2g.c
1011 target/arm/ipod/1g2g/powermgmt-1g2g.c
1012 target/arm/ipod/button-1g-3g.c
1013 target/arm/ipod/lcd-as-gray.S
1014 target/arm/ipod/lcd-gray.c
1015 target/arm/ipod/power-ipod.c
1016 target/arm/usb-fw-pp5002.c
1017 #endif /* SIMULATOR */
1018 #endif /* IPOD_1G2G */
1020 #ifdef IPOD_MINI
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-mini1g.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_MINI */
1038 #ifdef IPOD_MINI2G
1039 #ifndef SIMULATOR
1040 drivers/pcf50605.c
1041 target/arm/ata-as-arm.S
1042 target/arm/ata-pp5020.c
1043 target/arm/wmcodec-pp.c
1044 target/arm/i2s-pp.c
1045 target/arm/ipod/adc-ipod-pcf.c
1046 target/arm/ipod/backlight-mini1g_mini2g.c
1047 target/arm/ipod/button-clickwheel.c
1048 target/arm/ipod/lcd-as-gray.S
1049 target/arm/ipod/lcd-gray.c
1050 target/arm/ipod/power-ipod.c
1051 target/arm/ipod/powermgmt-ipod-pcf.c
1052 target/arm/usb-fw-pp502x.c
1053 #endif /* SIMULATOR */
1054 #endif /* IPOD_MINI2G */
1056 #ifdef IRIVER_IFP7XX
1057 #ifndef SIMULATOR
1058 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1059 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1060 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1061 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1062 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1063 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1064 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1065 #ifndef BOOTLOADER
1066 target/arm/pnx0101/pcm-pnx0101.c
1067 #endif /* BOOTLOADER */
1068 #endif /* SIMULATOR */
1069 #endif /* IRIVER_IFP7XX */
1071 #ifdef LOGIK_DAX
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/logikdax/button-logikdax.c
1082 target/arm/tcc77x/logikdax/power-logikdax.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/logikdax/audio-logikdax.c
1088 #endif /* BOOTLOADER */
1089 #endif /* SIMULATOR */
1090 #endif /* LOGIK_DAX */
1092 #ifdef SANSA_M200
1093 #ifndef SIMULATOR
1094 drivers/nand_id.c
1095 target/arm/lcd-ssd1815.c
1096 target/arm/tcc77x/adc-tcc77x.c
1097 target/arm/tcc77x/kernel-tcc77x.c
1098 target/arm/tcc77x/powermgmt-tcc77x.c
1099 target/arm/tcc77x/system-tcc77x.c
1100 target/arm/tcc77x/timer-tcc77x.c
1101 target/arm/usb-tcc.c
1102 target/arm/tcc77x/m200/button-m200.c
1103 target/arm/tcc77x/m200/power-m200.c
1104 #ifndef BOOTLOADER
1105 target/arm/wmcodec-telechips.c
1106 target/arm/tcc77x/debug-tcc77x.c
1107 target/arm/pcm-telechips.c
1108 target/arm/tcc77x/m200/audio-m200.c
1109 #endif /* BOOTLOADER */
1110 #endif /* SIMULATOR */
1111 #endif /* SANSA_M200 */
1113 #ifdef SANSA_C100
1114 #ifndef SIMULATOR
1115 drivers/nand_id.c
1116 target/arm/usb-tcc.c
1117 target/arm/tcc77x/system-tcc77x.c
1118 target/arm/tcc77x/kernel-tcc77x.c
1119 target/arm/tcc77x/timer-tcc77x.c
1120 target/arm/tcc77x/adc-tcc77x.c
1121 target/arm/tcc77x/powermgmt-tcc77x.c
1122 target/arm/tcc77x/c100/lcd-S6B33B2.c
1123 target/arm/tcc77x/c100/button-c100.c
1124 target/arm/tcc77x/c100/power-c100.c
1125 #ifndef BOOTLOADER
1126 target/arm/tcc77x/debug-tcc77x.c
1127 target/arm/pcm-telechips.c
1128 target/arm/tcc77x/c100/audio-c100.c
1129 #endif /* BOOTLOADER */
1130 #endif /* SIMULATOR */
1131 #endif /* SANSA_C100 */
1133 #ifdef SANSA_CLIP
1134 #ifndef SIMULATOR
1135 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1136 target/arm/as3525/sansa-clip/lcd-as-clip.S
1137 target/arm/as3525/sansa-clip/button-clip.c
1138 target/arm/as3525/sansa-clip/backlight-clip.c
1139 #ifndef BOOTLOADER
1140 target/arm/powermgmt-ascodec.c
1141 target/arm/as3525/sansa-clip/powermgmt-clip.c
1142 #endif /* !BOOTLOADER */
1143 #endif /* !SIMULATOR */
1144 #endif /* SANSA_CLIP */
1146 #ifdef SANSA_E200V2
1147 #ifndef SIMULATOR
1148 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1149 target/arm/as3525/lcd-as-e200v2-fuze.S
1150 target/arm/as3525/button-e200v2-fuze.c
1151 target/arm/as3525/backlight-e200v2-fuze.c
1152 #ifndef BOOTLOADER
1153 target/arm/powermgmt-ascodec.c
1154 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1155 #endif /* !BOOTLOADER */
1156 #endif /* !SIMULATOR */
1157 #endif /* SANSA_E200V2 */
1159 #ifdef SANSA_C200V2
1160 #ifndef SIMULATOR
1161 target/arm/lcd-c200_c200v2.c
1162 target/arm/as3525/sansa-c200v2/button-c200v2.c
1163 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1164 #ifndef BOOTLOADER
1165 target/arm/as3525/powermgmt-as3525.c
1166 #endif /* !BOOTLOADER */
1167 #endif /* !SIMULATOR */
1168 #endif /* SANSA_E200V2 */
1170 #ifdef SANSA_M200V4
1171 #ifndef SIMULATOR
1172 target/arm/lcd-ssd1815.c
1173 target/arm/as3525/sansa-m200v4/button-m200v4.c
1174 #ifndef BOOTLOADER
1175 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1176 #endif /* !BOOTLOADER */
1177 #endif /* !SIMULATOR */
1178 #endif /* SANSA_M200V4 */
1180 #ifdef SANSA_FUZE
1181 #ifndef SIMULATOR
1182 target/arm/as3525/button-e200v2-fuze.c
1183 target/arm/as3525/sansa-fuze/lcd-fuze.c
1184 target/arm/as3525/lcd-as-e200v2-fuze.S
1185 target/arm/as3525/backlight-e200v2-fuze.c
1186 #ifndef BOOTLOADER
1187 target/arm/powermgmt-ascodec.c
1188 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1189 #endif /* !BOOTLOADER */
1190 #endif /* !SIMULATOR */
1191 #endif /* SANSA_FUZE */
1193 #ifdef IAUDIO_7
1194 #ifndef SIMULATOR
1195 drivers/nand_id.c
1196 drivers/pcf50606.c
1197 target/arm/usb-tcc.c
1198 target/arm/tcc77x/system-tcc77x.c
1199 target/arm/tcc77x/kernel-tcc77x.c
1200 target/arm/tcc77x/timer-tcc77x.c
1201 target/arm/tcc77x/adc-tcc77x.c
1202 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1203 target/arm/tcc77x/iaudio7/power-iaudio7.c
1204 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1205 target/arm/tcc77x/iaudio7/button-iaudio7.c
1206 target/arm/tcc77x/iaudio7/ata2501.c
1207 #ifndef BOOTLOADER
1208 target/arm/wmcodec-telechips.c
1209 target/arm/pcm-telechips.c
1210 target/arm/tcc77x/debug-tcc77x.c
1211 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1212 #endif /* BOOTLOADER */
1213 #endif /* SIMULATOR */
1214 #endif /* IAUDIO_7 */
1216 #ifdef COWON_D2
1217 #ifndef SIMULATOR
1218 drivers/nand_id.c
1219 drivers/pcf50606.c
1220 target/arm/lcd-as-memframe.S
1221 target/arm/tcc780x/adc-tcc780x.c
1222 target/arm/tcc780x/system-tcc780x.c
1223 target/arm/tcc780x/kernel-tcc780x.c
1224 target/arm/tcc780x/cowond2/button-cowond2.c
1225 target/arm/tcc780x/cowond2/lcd-cowond2.c
1226 target/arm/tcc780x/cowond2/power-cowond2.c
1227 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1228 target/arm/tcc780x/cowond2/backlight-cowond2.c
1229 target/arm/usb-tcc.c
1230 #ifndef BOOTLOADER
1231 target/arm/tcc780x/timer-tcc780x.c
1232 target/arm/wmcodec-telechips.c
1233 target/arm/tcc780x/debug-tcc780x.c
1234 target/arm/pcm-telechips.c
1235 target/arm/tcc780x/cowond2/audio-cowond2.c
1236 #endif /* BOOTLOADER */
1237 #endif /* SIMULATOR */
1238 #endif /* COWON_D2 */
1240 #if CONFIG_CPU==S5L8700
1241 target/arm/s5l8700/system-s5l8700.c
1242 #endif
1244 #ifdef MEIZU_M6SL
1245 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1246 drivers/qt1106.c
1247 #ifndef SIMULATOR
1248 #ifndef BOOTLOADER
1249 #endif /* BOOTLOADER */
1250 #endif /* SIMULATOR */
1251 #endif /* MEIZU_M6SL */
1253 #ifdef MEIZU_M6SP
1254 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1255 #ifndef SIMULATOR
1256 #ifndef BOOTLOADER
1257 #endif /* BOOTLOADER */
1258 #endif /* SIMULATOR */
1259 #endif /* MEIZU_M6SP */
1261 #ifdef MEIZU_M3
1262 target/arm/s5l8700/backlight-meizu.c
1263 target/arm/s5l8700/kernel-s5l8700.c
1264 target/arm/s5l8700/meizu-m3/lcd-m3.c
1265 drivers/qt1106.c
1266 #ifndef SIMULATOR
1267 #ifndef BOOTLOADER
1268 target/arm/s5l8700/dma-s5l8700.c
1269 target/arm/s5l8700/pcm-s5l8700.c
1270 target/arm/s5l8700/udacodec-meizu.c
1271 #endif /* BOOTLOADER */
1272 #endif /* SIMULATOR */
1273 #endif /* MEIZU_M3 */
1275 #ifndef SIMULATOR
1276 #if CONFIG_CPU == JZ4732
1277 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1278 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1279 target/mips/ingenic_jz47xx/debug-jz4740.c
1280 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1281 target/mips/ingenic_jz47xx/kernel-jz4740.c
1282 target/mips/ingenic_jz47xx/i2c-jz4740.c
1283 target/mips/ingenic_jz47xx/lcd-jz4740.c
1284 target/mips/ingenic_jz47xx/system-jz4740.c
1285 target/mips/ingenic_jz47xx/usb-jz4740.c
1286 target/mips/ingenic_jz47xx/timer-jz4740.c
1287 #ifndef BOOTLOADER
1288 target/mips/ingenic_jz47xx/codec-jz4740.c
1289 target/mips/ingenic_jz47xx/pcm-jz4740.c
1290 #endif /* BOOTLOADER */
1291 drivers/nand_id.c
1292 #endif /* CONFIG_CPU == JZ4732 */
1294 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1295 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1296 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1297 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1298 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1299 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1300 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1302 #ifdef ONDA_VX767
1303 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1304 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1305 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1306 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1307 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1308 #endif /* ONDA_VX767 */
1310 #if defined(LYRE_PROTO1)
1311 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1312 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1313 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1314 target/arm/at91sam/lyre_proto1/crt0.S
1315 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1316 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1317 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1318 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1319 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1320 #endif
1321 #endif /* SIMULATOR */
1323 #ifdef SAMSUNG_YH820
1324 #ifndef SIMULATOR
1325 target/arm/ata-as-arm.S
1326 target/arm/ata-pp5020.c
1327 target/arm/adc-pp5020.c
1328 target/arm/i2s-pp.c
1329 target/arm/usb-fw-pp502x.c
1330 target/arm/samsung/akcodec-yh82x_yh92x.c
1331 target/arm/samsung/button-yh82x_yh92x.c
1332 target/arm/samsung/power-yh82x_yh92x.c
1333 target/arm/samsung/yh820/backlight-yh820.c
1334 target/arm/samsung/yh820/lcd-yh820.c
1335 target/arm/samsung/yh820/lcd-as-yh820.S
1336 target/arm/samsung/yh820/powermgmt-yh820.c
1337 #endif /* SIMULATOR */
1338 #endif /* SAMSUNG_YH820 */
1340 #ifdef SAMSUNG_YH920
1341 #ifndef SIMULATOR
1342 target/arm/ata-as-arm.S
1343 target/arm/ata-pp5020.c
1344 target/arm/adc-pp5020.c
1345 target/arm/i2s-pp.c
1346 target/arm/usb-fw-pp502x.c
1347 target/arm/samsung/akcodec-yh82x_yh92x.c
1348 target/arm/samsung/button-yh82x_yh92x.c
1349 target/arm/samsung/power-yh82x_yh92x.c
1350 target/arm/samsung/yh920/backlight-yh920.c
1351 target/arm/samsung/yh920/lcd-yh920.c
1352 target/arm/samsung/yh920/powermgmt-yh920.c
1353 #endif /* SIMULATOR */
1354 #endif /* SAMSUNG_YH920 */
1356 #ifdef SAMSUNG_YH925
1357 #ifndef SIMULATOR
1358 target/arm/ata-as-arm.S
1359 target/arm/ata-pp5020.c
1360 target/arm/adc-pp5020.c
1361 target/arm/i2s-pp.c
1362 target/arm/usb-fw-pp502x.c
1363 target/arm/samsung/akcodec-yh82x_yh92x.c
1364 target/arm/samsung/button-yh82x_yh92x.c
1365 target/arm/samsung/power-yh82x_yh92x.c
1366 target/arm/samsung/yh925/backlight-yh925.c
1367 target/arm/samsung/yh925/lcd-yh925.c
1368 target/arm/samsung/yh925/lcd-as-yh925.S
1369 target/arm/samsung/yh925/powermgmt-yh925.c
1370 #endif /* SIMULATOR */
1371 #endif /* SAMSUNG_YH925 */