FS#10406 - split the statusbar setting into one for each display, and allow the bar...
[kugel-rb.git] / firmware / SOURCES
blob609521a4de730d4165d1c118cdf0a01e4eec99ee
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_ISP1583
283 drivers/isp1583.c
284 #endif
285 #else /* !defined(HAVE_USBSTACK) */
286 #if CONFIG_USBOTG == USBOTG_ISP1362      
287 drivers/isp1362.c
288 #elif CONFIG_USBOTG == USBOTG_M5636      
289 drivers/m5636.c
290 #endif
291 #endif /* !defined(HAVE_USBSTACK) */
292 #endif /* !defined(SIMULATOR) */
294 /* Other Random Hardware */
295 #ifdef HAVE_TSC2100
296 #if !defined(SIMULATOR)
297 drivers/tsc2100.c
298 drivers/audio/tsc2100.c
299 #endif /* !SIMULATOR */
300 #endif
302 /* CPU Specific - By class then particular chip if applicable */
303 #if defined(CPU_SH)
305 #ifndef SIMULATOR
306 drivers/i2c.c
307 target/sh/adc-sh.c
308 target/sh/bitswap.S
309 target/sh/crt0.S
310 target/sh/kernel-sh.c
311 target/sh/memcpy-sh.S
312 target/sh/memmove-sh.S
313 target/sh/memset-sh.S
314 target/sh/strlen-sh.S
315 target/sh/system-sh.c
316 target/sh/archos/descramble.S
317 #endif /* SIMULATOR */
319 #elif defined(CPU_COLDFIRE)
321 #ifndef SIMULATOR
322 target/coldfire/crt0.S
323 #ifdef HAVE_PRIORITY_SCHEDULING
324 common/ffs.c
325 target/coldfire/ffs-coldfire.S
326 #endif
327 target/coldfire/memcpy-coldfire.S
328 target/coldfire/memmove-coldfire.S
329 target/coldfire/memset-coldfire.S
330 target/coldfire/strlen-coldfire.S
331 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
332  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
333 target/coldfire/memset16-coldfire.S
334 #endif
335 target/coldfire/kernel-coldfire.c
336 target/coldfire/system-coldfire.c
337 target/coldfire/timer-coldfire.c
338 #ifndef BOOTLOADER
339 target/coldfire/pcm-coldfire.c
340 #endif /* BOOTLOADER */
341 #if CONFIG_I2C == I2C_COLDFIRE
342 target/coldfire/i2c-coldfire.c
343 #endif /* CONFIG_I2C == I2C_COLDFIRE */
344 #endif /* SIMULATOR */
346 #elif defined(CPU_PP) || defined(CPU_ARM)
347 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
348 target/arm/memcpy-arm.S
349 target/arm/memmove-arm.S
350 common/strlen.c
351 #ifndef SIMULATOR
352 target/arm/memset-arm.S
353 target/arm/memset16-arm.S
354 #ifdef HAVE_PRIORITY_SCHEDULING
355 target/arm/ffs-arm.S
356 #endif
357 target/arm/system-arm.c
358 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
359 target/arm/i2c-pp.c
360 #elif CONFIG_I2C == I2C_PNX0101
361 target/arm/pnx0101/i2c-pnx0101.c
362 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
363 target/arm/i2c-telechips.c
364 #elif CONFIG_I2C == I2C_S3C2440
365 /* no i2c driver yet */
366 #elif CONFIG_I2C == I2C_S5L8700
367 target/arm/s5l8700/i2c-s5l8700.c
368 #endif
370 #if CONFIG_CPU == PNX0101
371 target/arm/pnx0101/kernel-pnx0101.c
372 target/arm/pnx0101/system-pnx0101.c
373 target/arm/pnx0101/timer-pnx0101.c
374 #endif
376 #if CONFIG_CPU == AS3525
377 target/arm/as3525/system-as3525.c
378 target/arm/as3525/kernel-as3525.c
379 target/arm/as3525/timer-as3525.c
380 target/arm/as3525/ata_sd_as3525.c
381 target/arm/as3525/power-as3525.c
382 target/arm/as3525/usb-as3525.c
383 target/arm/as3525/dma-pl081.c
384 target/arm/as3525/ascodec-as3525.c
385 #ifndef BOOTLOADER
386 target/arm/mmu-arm.S
387 drivers/generic_i2c.c
388 target/arm/adc-as3514.c
389 target/arm/as3525/audio-as3525.c
390 target/arm/as3525/debug-as3525.c
391 target/arm/as3525/fmradio-i2c-as3525.c
392 target/arm/as3525/i2s-as3525.c
393 target/arm/as3525/pcm-as3525.c
394 #endif /* BOOTLOADER */
395 #endif /* CONFIG_CPU == AS3525 */
397 #if defined(CPU_PP)
398 target/arm/kernel-pp.c
399 target/arm/timer-pp.c
400 #if CONFIG_CPU == PP5002
401 target/arm/system-pp5002.c
402 #elif defined CPU_PP502x
403 target/arm/system-pp502x.c
404 #endif
405 #ifdef BOOTLOADER
406 target/arm/crt0-pp-bl.S
407 #else
408 target/arm/pcm-pp.c
409 #if !defined(SANSA_E200) && !defined(SANSA_C200)
410 target/arm/audio-pp.c
411 #endif /* SANSA_E200 */
412 target/arm/crt0-pp.S
413 #endif
414 #elif CONFIG_CPU == PNX0101
415 target/arm/pnx0101/crt0-pnx0101.S
416 #elif CONFIG_CPU==DM320
417 target/arm/tms320dm320/crt0.S
418 #elif CONFIG_CPU==S3C2440
419 target/arm/s3c2440/crt0.S
420 #elif defined(CPU_TCC77X)
421 target/arm/tcc77x/crt0.S
422 #elif defined(CPU_TCC780X)
423 target/arm/tcc780x/crt0.S
424 #elif CONFIG_CPU==IMX31L
425 target/arm/imx31/crt0.S
426 #elif CONFIG_CPU==S5L8700
427 target/arm/s5l8700/crt0.S
428 #elif defined(CPU_ARM)
429 target/arm/crt0.S
430 #endif /* defined(CPU_*) */
431 #endif /* SIMULATOR */
433 #elif defined(CPU_MIPS)
434 #undef mips
435 /*target/mips/strlen.S*/
436 common/memmove.c
437 common/memset16.c
438 common/strlen.c
439 target/mips/ffs-mips.S
440 target/mips/memcpy-mips.S
441 target/mips/memset-mips.S
442 target/mips/mmu-mips.c
443 #if CONFIG_CPU==JZ4732
444 target/mips/ingenic_jz47xx/crt0.S
445 #endif /* CONFIG_CPU == JZ4732 */
447 #else
449 #ifdef HAVE_PRIORITY_SCHEDULING
450 common/ffs.c
451 #endif
452 common/memcpy.c
453 common/memmove.c
454 common/memset.c
455 common/memset16.c
456 common/strlen.c
457 #ifndef SIMULATOR
458 crt0.S
459 drivers/i2c.c
460 #endif /* SIMULATOR */
462 #endif /* defined(CPU_*) */
464 #ifdef ARCHOS_PLAYER
465 #ifndef SIMULATOR
466 target/sh/archos/ata-archos.c
467 target/sh/archos/timer-archos.c
468 target/sh/archos/ata-as-archos.S
469 target/sh/archos/player/button-player.c
470 target/sh/archos/player/hwcompat-player.c
471 target/sh/archos/player/lcd-as-player.S
472 target/sh/archos/player/lcd-player.c
473 target/sh/archos/player/power-player.c
474 target/sh/archos/player/powermgmt-player.c
475 target/sh/archos/player/usb-player.c
476 #endif /* SIMULATOR */
477 #endif /* ARCHOS_PLAYER */
479 #ifdef ARCHOS_RECORDER
480 #ifndef SIMULATOR
481 target/sh/archos/ata-archos.c
482 target/sh/archos/timer-archos.c
483 target/sh/archos/ata-as-archos.S
484 target/sh/archos/lcd-archos-bitmap.c
485 target/sh/archos/lcd-as-archos-bitmap.S   
486 target/sh/archos/recorder/button-recorder.c
487 target/sh/archos/recorder/power-recorder.c
488 target/sh/archos/recorder/powermgmt-recorder.c
489 target/sh/archos/recorder/usb-recorder.c
490 #endif /* SIMULATOR */
491 #endif /* ARCHOS_RECORDER */
493 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
494 #ifndef SIMULATOR
495 target/sh/archos/ata-archos.c
496 target/sh/archos/timer-archos.c
497 target/sh/archos/ata-as-archos.S
498 target/sh/archos/lcd-archos-bitmap.c
499 target/sh/archos/lcd-as-archos-bitmap.S
500 target/sh/archos/fm_v2/button-fm_v2.c
501 target/sh/archos/fm_v2/power-fm_v2.c
502 target/sh/archos/fm_v2/powermgmt-fm_v2.c
503 target/sh/archos/fm_v2/usb-fm_v2.c
504 #endif /* SIMULATOR */
505 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
507 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
508 #ifndef SIMULATOR
509 target/sh/archos/timer-archos.c
510 target/sh/archos/lcd-archos-bitmap.c
511 target/sh/archos/lcd-as-archos-bitmap.S
512 target/sh/archos/ondio/button-ondio.c
513 target/sh/archos/ondio/power-ondio.c
514 target/sh/archos/ondio/powermgmt-ondio.c
515 target/sh/archos/ondio/usb-ondio.c
516 #if (CONFIG_TUNER & TEA5767)
517 target/sh/archos/ondio/fmradio_i2c-ondio.c
518 #endif
519 #endif /* SIMULATOR */
520 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
522 #ifdef SANSA_E200
523 #ifndef SIMULATOR
524 target/arm/adc-as3514.c
525 target/arm/ascodec-pp.c
526 target/arm/ata-sd-pp.c
527 target/arm/lcd-as-memframe.S
528 target/arm/powermgmt-ascodec.c
529 target/arm/i2s-pp.c
530 target/arm/usb-fw-pp502x.c
531 target/arm/sandisk/backlight-c200_e200.c
532 target/arm/sandisk/power-c200_e200.c
533 target/arm/sandisk/sansa-e200/lcd-e200.c
534 target/arm/sandisk/sansa-e200/button-e200.c
535 target/arm/sandisk/sansa-e200/powermgmt-e200.c
536 #ifndef BOOTLOADER
537 target/arm/sandisk/audio-c200_e200.c
538 #endif /* BOOTLOADER */
539 #endif /* SIMULATOR */
540 #endif /* SANSA_E200 */
542 #ifdef SANSA_C200
543 #ifndef SIMULATOR
544 target/arm/adc-as3514.c
545 target/arm/ascodec-pp.c
546 target/arm/ata-sd-pp.c
547 target/arm/i2s-pp.c
548 target/arm/powermgmt-ascodec.c
549 target/arm/usb-fw-pp502x.c
550 target/arm/sandisk/backlight-c200_e200.c
551 target/arm/sandisk/power-c200_e200.c
552 target/arm/lcd-c200_c200v2.c
553 target/arm/sandisk/sansa-c200/lcd-as-c200.S
554 target/arm/sandisk/sansa-c200/button-c200.c
555 target/arm/sandisk/sansa-c200/powermgmt-c200.c
556 #ifndef BOOTLOADER
557 target/arm/sandisk/audio-c200_e200.c
558 #endif /* BOOTLOADER */
559 #endif /* SIMULATOR */
560 #endif /* SANSA_C200 */
562 #ifdef PHILIPS_SA9200
563 #ifndef SIMULATOR
564 #ifndef BOOTLOADER
565 drivers/synaptics-mep.c
566 #endif /* BOOTLOADER */
567 target/arm/adc-as3514.c
568 target/arm/ascodec-pp.c
569 target/arm/ata-sd-pp.c
570 target/arm/i2s-pp.c
571 target/arm/powermgmt-ascodec.c
572 target/arm/usb-fw-pp502x.c
573 target/arm/philips/sa9200/backlight-sa9200.c
574 target/arm/philips/sa9200/button-sa9200.c
575 target/arm/philips/sa9200/lcd-sa9200.c
576 target/arm/philips/sa9200/power-sa9200.c
577 target/arm/philips/sa9200/powermgmt-sa9200.c
578 #endif /* SIMULATOR */
579 #endif /* PHILIPS_SA9200 */
581 #ifdef PHILIPS_HDD1630
582 #ifndef SIMULATOR
583 #ifndef BOOTLOADER
584 drivers/synaptics-mep.c
585 #endif /* BOOTLOADER */
586 target/arm/ata-as-arm.S
587 target/arm/ata-pp5020.c
588 target/arm/wmcodec-pp.c
589 target/arm/i2s-pp.c
590 target/arm/adc-pp5020.c
591 target/arm/philips/hdd1630/backlight-hdd1630.c
592 target/arm/philips/hdd1630/button-hdd1630.c
593 target/arm/philips/hdd1630/fmradio_i2c-hdd1630.c
594 target/arm/philips/hdd1630/lcd-hdd1630.c
595 target/arm/philips/hdd1630/lcd-as-hdd1630.S
596 target/arm/philips/hdd1630/power-hdd1630.c
597 target/arm/philips/hdd1630/powermgmt-hdd1630.c
598 target/arm/usb-fw-pp502x.c
599 #endif /* SIMULATOR */
600 #endif /* PHILIPS_HDD1630 */
602 #ifdef IAUDIO_X5
603 #ifndef SIMULATOR
604 target/coldfire/ata-as-coldfire.S
605 target/coldfire/pcf50606-coldfire.c
606 target/coldfire/iaudio/adc-iaudio.c
607 target/coldfire/iaudio/ata-iaudio.c
608 target/coldfire/iaudio/fmradio_i2c-iaudio.c
609 target/coldfire/iaudio/lcd-remote-as-iaudio.S
610 target/coldfire/iaudio/lcd-remote-iaudio.c
611 target/coldfire/iaudio/pcf50606-iaudio.c
612 target/coldfire/iaudio/power-x5m5.c
613 target/coldfire/iaudio/powermgmt-iaudio.c
614 target/coldfire/iaudio/system-iaudio.c
615 target/coldfire/iaudio/usb-iaudio.c
616 target/coldfire/iaudio/x5/backlight-x5.c
617 target/coldfire/iaudio/x5/button-x5.c
618 target/coldfire/iaudio/x5/ds2411-x5.c
619 target/coldfire/iaudio/x5/lcd-as-x5.S
620 target/coldfire/iaudio/x5/lcd-x5.c
621 target/coldfire/iaudio/x5/m5636-x5.c
622 #ifndef BOOTLOADER
623 target/coldfire/iaudio/audio-iaudio.c
624 #endif
625 #endif /* SIMULATOR */
626 #endif /* IAUDIO_X5 */
628 #ifdef IAUDIO_M5
629 #ifndef SIMULATOR
630 target/coldfire/ata-as-coldfire.S
631 target/coldfire/pcf50606-coldfire.c
632 target/coldfire/iaudio/adc-iaudio.c
633 target/coldfire/iaudio/ata-iaudio.c
634 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
635 target/coldfire/iaudio/fmradio_i2c-iaudio.c
636 #endif
637 target/coldfire/iaudio/lcd-remote-as-iaudio.S
638 target/coldfire/iaudio/lcd-remote-iaudio.c
639 target/coldfire/iaudio/m5/backlight-m5.c
640 target/coldfire/iaudio/m5/button-m5.c
641 target/coldfire/iaudio/m5/lcd-as-m5.S
642 target/coldfire/iaudio/m5/lcd-m5.c
643 target/coldfire/iaudio/pcf50606-iaudio.c
644 target/coldfire/iaudio/power-x5m5.c
645 target/coldfire/iaudio/powermgmt-iaudio.c
646 target/coldfire/iaudio/system-iaudio.c
647 target/coldfire/iaudio/usb-iaudio.c
648 #ifndef BOOTLOADER
649 target/coldfire/iaudio/audio-iaudio.c
650 #endif
651 #endif /* SIMULATOR */
652 #endif /* IAUDIO_M5 */
654 #ifdef IAUDIO_M3
655 #ifndef SIMULATOR
656 target/coldfire/ata-as-coldfire.S
657 target/coldfire/iaudio/fmradio_i2c-iaudio.c
658 target/coldfire/iaudio/m3/adc-m3.c
659 target/coldfire/iaudio/m3/ata-m3.c
660 target/coldfire/iaudio/m3/backlight-m3.c
661 target/coldfire/iaudio/m3/button-m3.c
662 target/coldfire/iaudio/m3/lcd-m3.c
663 target/coldfire/iaudio/m3/lcd-as-m3.S
664 target/coldfire/iaudio/m3/power-m3.c
665 target/coldfire/iaudio/m3/powermgmt-m3.c
666 target/coldfire/iaudio/m3/system-m3.c
667 target/coldfire/iaudio/m3/usb-m3.c
668 #ifndef BOOTLOADER
669 target/coldfire/iaudio/audio-iaudio.c
670 #endif
671 #endif /* SIMULATOR */
672 #endif /* IAUDIO_M3 */
674 #ifdef IRIVER_IFP7XX_SERIES
675 #ifdef STUB
676 ifp_usb_serial.c
677 common/sscanf.c
678 #endif /* STUB */
679 #endif /* IRIVER_IFP7XX_SERIES */
681 #ifdef IRIVER_H300_SERIES
682 #ifndef SIMULATOR
683 target/coldfire/ata-as-coldfire.S
684 target/coldfire/pcf50606-coldfire.c
685 target/coldfire/iriver/ata-iriver.c
686 target/coldfire/iriver/lcd-remote-iriver.c
687 target/coldfire/iriver/lcd-remote-as-iriver.S
688 target/coldfire/iriver/system-iriver.c
689 target/coldfire/iriver/fmradio_i2c-iriver.c
690 target/coldfire/iriver/h300/sw_i2c-h300.c
691 target/coldfire/iriver/h300/adc-h300.c
692 target/coldfire/iriver/h300/backlight-h300.c
693 target/coldfire/iriver/h300/button-h300.c
694 target/coldfire/iriver/h300/pcf50606-h300.c
695 target/coldfire/iriver/h300/lcd-as-h300.S
696 target/coldfire/iriver/h300/lcd-h300.c
697 target/coldfire/iriver/h300/power-h300.c
698 target/coldfire/iriver/h300/powermgmt-h300.c
699 target/coldfire/iriver/h300/usb-h300.c
700 #ifndef BOOTLOADER
701 target/coldfire/iriver/audio-iriver.c
702 target/coldfire/iriver/udacodec-iriver.c
703 #endif
704 #endif /* SIMULATOR */
705 #endif /* IRIVER_H300_SERIES */
707 #ifdef IRIVER_H100_SERIES
708 #ifndef SIMULATOR
709 drivers/sw_i2c.c
710 target/coldfire/ata-as-coldfire.S
711 target/coldfire/iriver/ata-iriver.c
712 target/coldfire/iriver/lcd-remote-iriver.c
713 target/coldfire/iriver/lcd-remote-as-iriver.S
714 target/coldfire/iriver/system-iriver.c
715 target/coldfire/iriver/fmradio_i2c-iriver.c
716 target/coldfire/iriver/h100/adc-h100.c
717 target/coldfire/iriver/h100/backlight-h100.c
718 target/coldfire/iriver/h100/button-h100.c
719 target/coldfire/iriver/h100/lcd-as-h100.S
720 target/coldfire/iriver/h100/lcd-h100.c
721 target/coldfire/iriver/h100/power-h100.c
722 target/coldfire/iriver/h100/powermgmt-h100.c
723 #ifndef BOOTLOADER
724 target/coldfire/iriver/audio-iriver.c
725 target/coldfire/iriver/udacodec-iriver.c
726 target/coldfire/iriver/h100/spdif-h100.c
727 #endif
728 target/coldfire/iriver/h100/usb-h100.c
729 #endif /* SIMULATOR */
730 #endif /* IRIVER_H100_SERIES */
732 #ifdef IRIVER_H10
733 #ifndef SIMULATOR
734 target/arm/ata-as-arm.S
735 target/arm/ata-pp5020.c
736 target/arm/wmcodec-pp.c
737 target/arm/i2s-pp.c
738 target/arm/adc-pp5020.c
739 target/arm/iriver/h10/backlight-h10.c
740 target/arm/iriver/h10/button-h10.c
741 target/arm/iriver/h10/fmradio_i2c-h10.c
742 target/arm/iriver/h10/lcd-h10_20gb.c
743 target/arm/iriver/h10/lcd-as-h10.S
744 target/arm/iriver/h10/power-h10.c
745 target/arm/iriver/h10/powermgmt-h10.c
746 target/arm/usb-fw-pp502x.c
747 #endif /* SIMULATOR */
748 #endif /* IRIVER_H10 */
750 #ifdef IRIVER_H10_5GB
751 #ifndef SIMULATOR
752 target/arm/ata-as-arm.S
753 target/arm/ata-pp5020.c
754 target/arm/wmcodec-pp.c
755 target/arm/i2s-pp.c
756 target/arm/adc-pp5020.c
757 target/arm/iriver/h10/backlight-h10.c
758 target/arm/iriver/h10/button-h10.c
759 target/arm/iriver/h10/fmradio_i2c-h10.c
760 target/arm/iriver/h10/lcd-h10_5gb.c
761 target/arm/iriver/h10/power-h10.c
762 target/arm/iriver/h10/powermgmt-h10.c
763 target/arm/usb-fw-pp502x.c
764 #endif /* SIMULATOR */
765 #endif /* IRIVER_H10_5GB */
767 #ifdef GIGABEAT_F
768 #ifndef SIMULATOR
769 target/arm/lcd-as-memframe.S
770 target/arm/mmu-arm.S
771 target/arm/s3c2440/debug-s3c2440.c
772 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
773 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
774 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
775 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
776 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
777 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
778 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
779 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
780 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
781 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
782 #ifndef BOOTLOADER
783 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
784 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
785 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
786 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
787 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
788 #endif
789 #endif /* SIMULATOR */
790 #endif /* GIGABEAT_F */
792 #ifdef GIGABEAT_S
793 #ifndef SIMULATOR
794 target/arm/lcd-as-memframe.S
795 target/arm/mmu-arm.S
796 target/arm/imx31/ccm-imx31.c
797 target/arm/imx31/debug-imx31.c
798 target/arm/imx31/rolo_restart.S
799 target/arm/imx31/sdma-imx31.c
800 target/arm/imx31/gigabeat-s/adc-imx31.c
801 target/arm/imx31/gigabeat-s/ata-imx31.c
802 target/arm/imx31/gigabeat-s/avic-imx31.c
803 target/arm/imx31/gigabeat-s/backlight-imx31.c
804 target/arm/imx31/gigabeat-s/button-imx31.c
805 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
806 target/arm/imx31/gigabeat-s/gpio-imx31.c
807 target/arm/imx31/gigabeat-s/kernel-imx31.c
808 target/arm/imx31/gigabeat-s/i2c-imx31.c
809 target/arm/imx31/gigabeat-s/i2s-imx31.c
810 target/arm/imx31/gigabeat-s/lcd-imx31.c
811 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
812 target/arm/imx31/gigabeat-s/mc13783-imx31.c
813 target/arm/imx31/gigabeat-s/mmu-imx31.c
814 target/arm/imx31/gigabeat-s/power-imx31.c
815 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
816 target/arm/imx31/gigabeat-s/spi-imx31.c
817 target/arm/imx31/gigabeat-s/system-imx31.c
818 target/arm/imx31/gigabeat-s/usb-imx31.c
819 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
820 #ifndef BOOTLOADER
821 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
822 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
823 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
824 target/arm/imx31/gigabeat-s/pcm-imx31.c
825 target/arm/imx31/gigabeat-s/timer-imx31.c
826 #endif
827 #endif /* SIMULATOR */
828 #endif /* GIGABEAT_S */
830 #if CONFIG_CPU == DM320
831 target/arm/tms320dm320/debug-dm320.c
832 target/arm/tms320dm320/dsp-dm320.c
833 target/arm/tms320dm320/i2c-dm320.c
834 target/arm/tms320dm320/kernel-dm320.c
835 target/arm/tms320dm320/spi-dm320.c
836 target/arm/tms320dm320/system-dm320.c
837 target/arm/tms320dm320/timer-dm320.c
838 target/arm/tms320dm320/uart-dm320.c
839 #endif /* CONFIG_CPU == DM320 */
841 #ifdef MROBE_500
842 #ifndef SIMULATOR
843 target/arm/lcd-as-memframe.S
844 target/arm/mmu-arm.S
845 target/arm/tms320dm320/mrobe-500/adc-mr500.c
846 target/arm/tms320dm320/mrobe-500/ata-mr500.c
847 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
848 target/arm/tms320dm320/mrobe-500/button-mr500.c
849 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
850 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
851 #if defined(HAVE_REMOTE_LCD)
852 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
853 #endif
854 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
855 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
856 target/arm/tms320dm320/mrobe-500/power-mr500.c
857 target/arm/tms320dm320/mrobe-500/usb-mr500.c
858 #endif /* SIMULATOR */
859 #endif /* MROBE_500 */
861 #ifdef CREATIVE_ZVx
862 #ifndef SIMULATOR
863 target/arm/ata-as-arm.S
864 target/arm/lcd-as-memframe.S
865 target/arm/mmu-arm.S
866 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
867 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
868 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
869 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
870 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
871 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
872 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
873 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
874 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
875 #endif /* SIMULATOR */
876 #endif /* CREATIVE_ZVx */
878 #ifdef MROBE_100
879 #ifndef SIMULATOR
880 #ifndef BOOTLOADER
881 drivers/synaptics-mep.c
882 #endif /* BOOTLOADER */
883 drivers/sw_i2c.c
884 target/arm/ata-as-arm.S
885 target/arm/ata-pp5020.c
886 target/arm/wmcodec-pp.c
887 target/arm/i2s-pp.c
888 target/arm/adc-pp5020.c
889 target/arm/olympus/mrobe-100/backlight-mr100.c
890 target/arm/olympus/mrobe-100/button-mr100.c
891 target/arm/olympus/mrobe-100/lcd-mr100.c
892 target/arm/olympus/mrobe-100/lcd-as-mr100.S
893 target/arm/olympus/mrobe-100/power-mr100.c
894 target/arm/olympus/mrobe-100/powermgmt-mr100.c
895 target/arm/usb-fw-pp502x.c
896 #endif /* SIMULATOR */
897 #endif /* MROBE_100 */
899 #ifdef ELIO_TPJ1022
900 #ifndef SIMULATOR
901 target/arm/ata-as-arm.S
902 target/arm/ata-pp5020.c
903 target/arm/wmcodec-pp.c
904 target/arm/i2s-pp.c
905 target/arm/adc-pp5020.c
906 target/arm/tatung/tpj1022/backlight-tpj1022.c
907 target/arm/tatung/tpj1022/button-tpj1022.c
908 target/arm/tatung/tpj1022/lcd-tpj1022.c
909 target/arm/tatung/tpj1022/power-tpj1022.c
910 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
911 target/arm/usb-fw-pp502x.c
912 #endif /* SIMULATOR */
913 #endif /* ELIO_TPJ1022 */
915 #ifdef IPOD_4G
916 #ifndef SIMULATOR
917 drivers/pcf50605.c
918 target/arm/wmcodec-pp.c
919 target/arm/i2s-pp.c
920 target/arm/ata-as-arm.S
921 target/arm/ata-pp5020.c
922 target/arm/ipod/adc-ipod-pcf.c
923 target/arm/ipod/backlight-4g_color.c
924 target/arm/ipod/button-clickwheel.c
925 target/arm/ipod/lcd-as-gray.S
926 target/arm/ipod/lcd-gray.c
927 target/arm/ipod/power-ipod.c
928 target/arm/ipod/powermgmt-ipod-pcf.c
929 target/arm/usb-fw-pp502x.c
930 #endif /* SIMULATOR */
931 #endif /* IPOD_4G */
933 #ifdef IPOD_COLOR
934 #ifndef SIMULATOR
935 drivers/pcf50605.c
936 target/arm/ata-as-arm.S
937 target/arm/ata-pp5020.c
938 target/arm/wmcodec-pp.c
939 target/arm/i2s-pp.c
940 target/arm/ipod/adc-ipod-pcf.c
941 target/arm/ipod/backlight-4g_color.c
942 target/arm/ipod/button-clickwheel.c
943 target/arm/ipod/lcd-color_nano.c
944 target/arm/ipod/power-ipod.c
945 target/arm/ipod/powermgmt-ipod-pcf.c
946 target/arm/usb-fw-pp502x.c
947 #endif /* SIMULATOR */
948 #endif /* IPOD_COLOR */
950 #ifdef IPOD_NANO
951 #ifndef SIMULATOR
952 drivers/pcf50605.c
953 target/arm/ata-as-arm.S
954 target/arm/ata-pp5020.c
955 target/arm/wmcodec-pp.c
956 target/arm/i2s-pp.c
957 target/arm/ipod/adc-ipod-pcf.c
958 target/arm/ipod/backlight-nano_video.c
959 target/arm/ipod/button-clickwheel.c
960 target/arm/ipod/lcd-color_nano.c
961 target/arm/ipod/power-ipod.c
962 target/arm/ipod/powermgmt-ipod-pcf.c
963 target/arm/usb-fw-pp502x.c
964 #endif /* SIMULATOR */
965 #endif /* IPOD_NANO */
967 #ifdef IPOD_VIDEO
968 #ifndef SIMULATOR
969 drivers/pcf50605.c
970 target/arm/ata-as-arm.S
971 target/arm/ata-pp5020.c
972 target/arm/wmcodec-pp.c
973 target/arm/i2s-pp.c
974 target/arm/ipod/adc-ipod-pcf.c
975 target/arm/ipod/backlight-nano_video.c
976 target/arm/ipod/button-clickwheel.c
977 target/arm/ipod/power-ipod.c
978 target/arm/ipod/powermgmt-ipod-pcf.c
979 target/arm/ipod/video/lcd-as-video.S
980 target/arm/ipod/video/lcd-video.c
981 target/arm/usb-fw-pp502x.c
982 #endif /* SIMULATOR */
983 #endif /* IPOD_VIDEO */
985 #ifdef IPOD_3G
986 #ifndef SIMULATOR
987 drivers/pcf50605.c
988 target/arm/ata-pp5002.c
989 target/arm/wmcodec-pp.c
990 target/arm/i2s-pp.c
991 target/arm/ipod/adc-ipod-pcf.c
992 target/arm/ipod/3g/backlight-3g.c
993 target/arm/ipod/button-1g-3g.c
994 target/arm/ipod/lcd-as-gray.S
995 target/arm/ipod/lcd-gray.c
996 target/arm/ipod/power-ipod.c
997 target/arm/ipod/powermgmt-ipod-pcf.c
998 target/arm/usb-fw-pp5002.c
999 #endif /* SIMULATOR */
1000 #endif /* IPOD_3G */
1002 #ifdef IPOD_1G2G
1003 #ifndef SIMULATOR
1004 target/arm/ata-pp5002.c
1005 target/arm/wmcodec-pp.c
1006 target/arm/i2s-pp.c
1007 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1008 target/arm/ipod/1g2g/backlight-1g2g.c
1009 target/arm/ipod/1g2g/powermgmt-1g2g.c
1010 target/arm/ipod/button-1g-3g.c
1011 target/arm/ipod/lcd-as-gray.S
1012 target/arm/ipod/lcd-gray.c
1013 target/arm/ipod/power-ipod.c
1014 target/arm/usb-fw-pp5002.c
1015 #endif /* SIMULATOR */
1016 #endif /* IPOD_1G2G */
1018 #ifdef IPOD_MINI
1019 #ifndef SIMULATOR
1020 drivers/pcf50605.c
1021 target/arm/ata-as-arm.S
1022 target/arm/ata-pp5020.c
1023 target/arm/wmcodec-pp.c
1024 target/arm/i2s-pp.c
1025 target/arm/ipod/adc-ipod-pcf.c
1026 target/arm/ipod/backlight-mini1g_mini2g.c
1027 target/arm/ipod/button-mini1g.c
1028 target/arm/ipod/lcd-as-gray.S
1029 target/arm/ipod/lcd-gray.c
1030 target/arm/ipod/power-ipod.c
1031 target/arm/ipod/powermgmt-ipod-pcf.c
1032 target/arm/usb-fw-pp502x.c
1033 #endif /* SIMULATOR */
1034 #endif /* IPOD_MINI */
1036 #ifdef IPOD_MINI2G
1037 #ifndef SIMULATOR
1038 drivers/pcf50605.c
1039 target/arm/ata-as-arm.S
1040 target/arm/ata-pp5020.c
1041 target/arm/wmcodec-pp.c
1042 target/arm/i2s-pp.c
1043 target/arm/ipod/adc-ipod-pcf.c
1044 target/arm/ipod/backlight-mini1g_mini2g.c
1045 target/arm/ipod/button-clickwheel.c
1046 target/arm/ipod/lcd-as-gray.S
1047 target/arm/ipod/lcd-gray.c
1048 target/arm/ipod/power-ipod.c
1049 target/arm/ipod/powermgmt-ipod-pcf.c
1050 target/arm/usb-fw-pp502x.c
1051 #endif /* SIMULATOR */
1052 #endif /* IPOD_MINI2G */
1054 #ifdef IRIVER_IFP7XX
1055 #ifndef SIMULATOR
1056 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1057 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1058 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1059 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1060 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1061 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1062 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1063 #ifndef BOOTLOADER
1064 target/arm/pnx0101/pcm-pnx0101.c
1065 #endif /* BOOTLOADER */
1066 #endif /* SIMULATOR */
1067 #endif /* IRIVER_IFP7XX */
1069 #ifdef LOGIK_DAX
1070 #ifndef SIMULATOR
1071 drivers/nand_id.c
1072 target/arm/lcd-ssd1815.c
1073 target/arm/tcc77x/adc-tcc77x.c
1074 target/arm/tcc77x/kernel-tcc77x.c
1075 target/arm/tcc77x/powermgmt-tcc77x.c
1076 target/arm/tcc77x/system-tcc77x.c
1077 target/arm/tcc77x/timer-tcc77x.c
1078 target/arm/usb-tcc.c
1079 target/arm/tcc77x/logikdax/button-logikdax.c
1080 target/arm/tcc77x/logikdax/power-logikdax.c
1081 #ifndef BOOTLOADER
1082 target/arm/wmcodec-telechips.c
1083 target/arm/tcc77x/debug-tcc77x.c
1084 target/arm/pcm-telechips.c
1085 target/arm/tcc77x/logikdax/audio-logikdax.c
1086 #endif /* BOOTLOADER */
1087 #endif /* SIMULATOR */
1088 #endif /* LOGIK_DAX */
1090 #ifdef SANSA_M200
1091 #ifndef SIMULATOR
1092 drivers/nand_id.c
1093 target/arm/lcd-ssd1815.c
1094 target/arm/tcc77x/adc-tcc77x.c
1095 target/arm/tcc77x/kernel-tcc77x.c
1096 target/arm/tcc77x/powermgmt-tcc77x.c
1097 target/arm/tcc77x/system-tcc77x.c
1098 target/arm/tcc77x/timer-tcc77x.c
1099 target/arm/usb-tcc.c
1100 target/arm/tcc77x/m200/button-m200.c
1101 target/arm/tcc77x/m200/power-m200.c
1102 #ifndef BOOTLOADER
1103 target/arm/wmcodec-telechips.c
1104 target/arm/tcc77x/debug-tcc77x.c
1105 target/arm/pcm-telechips.c
1106 target/arm/tcc77x/m200/audio-m200.c
1107 #endif /* BOOTLOADER */
1108 #endif /* SIMULATOR */
1109 #endif /* SANSA_M200 */
1111 #ifdef SANSA_C100
1112 #ifndef SIMULATOR
1113 drivers/nand_id.c
1114 target/arm/usb-tcc.c
1115 target/arm/tcc77x/system-tcc77x.c
1116 target/arm/tcc77x/kernel-tcc77x.c
1117 target/arm/tcc77x/timer-tcc77x.c
1118 target/arm/tcc77x/adc-tcc77x.c
1119 target/arm/tcc77x/powermgmt-tcc77x.c
1120 target/arm/tcc77x/c100/lcd-S6B33B2.c
1121 target/arm/tcc77x/c100/button-c100.c
1122 target/arm/tcc77x/c100/power-c100.c
1123 #ifndef BOOTLOADER
1124 target/arm/tcc77x/debug-tcc77x.c
1125 target/arm/pcm-telechips.c
1126 target/arm/tcc77x/c100/audio-c100.c
1127 #endif /* BOOTLOADER */
1128 #endif /* SIMULATOR */
1129 #endif /* SANSA_C100 */
1131 #ifdef SANSA_CLIP
1132 #ifndef SIMULATOR
1133 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1134 target/arm/as3525/sansa-clip/lcd-as-clip.S
1135 target/arm/as3525/sansa-clip/button-clip.c
1136 target/arm/as3525/sansa-clip/backlight-clip.c
1137 #ifndef BOOTLOADER
1138 target/arm/powermgmt-ascodec.c
1139 target/arm/as3525/sansa-clip/powermgmt-clip.c
1140 #endif /* !BOOTLOADER */
1141 #endif /* !SIMULATOR */
1142 #endif /* SANSA_CLIP */
1144 #ifdef SANSA_E200V2
1145 #ifndef SIMULATOR
1146 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1147 target/arm/as3525/lcd-as-e200v2-fuze.S
1148 target/arm/as3525/button-e200v2-fuze.c
1149 target/arm/as3525/backlight-e200v2-fuze.c
1150 #ifndef BOOTLOADER
1151 target/arm/powermgmt-ascodec.c
1152 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1153 #endif /* !BOOTLOADER */
1154 #endif /* !SIMULATOR */
1155 #endif /* SANSA_E200V2 */
1157 #ifdef SANSA_C200V2
1158 #ifndef SIMULATOR
1159 target/arm/lcd-c200_c200v2.c
1160 target/arm/as3525/sansa-c200v2/button-c200v2.c
1161 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1162 #ifndef BOOTLOADER
1163 target/arm/as3525/powermgmt-as3525.c
1164 #endif /* !BOOTLOADER */
1165 #endif /* !SIMULATOR */
1166 #endif /* SANSA_E200V2 */
1168 #ifdef SANSA_M200V4
1169 #ifndef SIMULATOR
1170 target/arm/lcd-ssd1815.c
1171 target/arm/as3525/sansa-m200v4/button-m200v4.c
1172 #ifndef BOOTLOADER
1173 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1174 #endif /* !BOOTLOADER */
1175 #endif /* !SIMULATOR */
1176 #endif /* SANSA_M200V4 */
1178 #ifdef SANSA_FUZE
1179 #ifndef SIMULATOR
1180 target/arm/as3525/button-e200v2-fuze.c
1181 target/arm/as3525/sansa-fuze/lcd-fuze.c
1182 target/arm/as3525/lcd-as-e200v2-fuze.S
1183 target/arm/as3525/backlight-e200v2-fuze.c
1184 #ifndef BOOTLOADER
1185 target/arm/powermgmt-ascodec.c
1186 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1187 #endif /* !BOOTLOADER */
1188 #endif /* !SIMULATOR */
1189 #endif /* SANSA_FUZE */
1191 #ifdef IAUDIO_7
1192 #ifndef SIMULATOR
1193 drivers/nand_id.c
1194 drivers/pcf50606.c
1195 target/arm/usb-tcc.c
1196 target/arm/tcc77x/system-tcc77x.c
1197 target/arm/tcc77x/kernel-tcc77x.c
1198 target/arm/tcc77x/timer-tcc77x.c
1199 target/arm/tcc77x/adc-tcc77x.c
1200 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1201 target/arm/tcc77x/iaudio7/power-iaudio7.c
1202 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1203 target/arm/tcc77x/iaudio7/button-iaudio7.c
1204 target/arm/tcc77x/iaudio7/ata2501.c
1205 #ifndef BOOTLOADER
1206 target/arm/wmcodec-telechips.c
1207 target/arm/pcm-telechips.c
1208 target/arm/tcc77x/debug-tcc77x.c
1209 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1210 #endif /* BOOTLOADER */
1211 #endif /* SIMULATOR */
1212 #endif /* IAUDIO_7 */
1214 #ifdef COWON_D2
1215 #ifndef SIMULATOR
1216 drivers/nand_id.c
1217 drivers/pcf50606.c
1218 target/arm/lcd-as-memframe.S
1219 target/arm/tcc780x/adc-tcc780x.c
1220 target/arm/tcc780x/system-tcc780x.c
1221 target/arm/tcc780x/kernel-tcc780x.c
1222 target/arm/tcc780x/cowond2/button-cowond2.c
1223 target/arm/tcc780x/cowond2/lcd-cowond2.c
1224 target/arm/tcc780x/cowond2/power-cowond2.c
1225 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1226 target/arm/tcc780x/cowond2/backlight-cowond2.c
1227 target/arm/usb-tcc.c
1228 #ifndef BOOTLOADER
1229 target/arm/tcc780x/timer-tcc780x.c
1230 target/arm/wmcodec-telechips.c
1231 target/arm/tcc780x/debug-tcc780x.c
1232 target/arm/pcm-telechips.c
1233 target/arm/tcc780x/cowond2/audio-cowond2.c
1234 #endif /* BOOTLOADER */
1235 #endif /* SIMULATOR */
1236 #endif /* COWON_D2 */
1238 #if CONFIG_CPU==S5L8700
1239 target/arm/s5l8700/system-s5l8700.c
1240 #endif
1242 #ifdef MEIZU_M6SL
1243 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1244 drivers/qt1106.c
1245 #ifndef SIMULATOR
1246 #ifndef BOOTLOADER
1247 #endif /* BOOTLOADER */
1248 #endif /* SIMULATOR */
1249 #endif /* MEIZU_M6SL */
1251 #ifdef MEIZU_M6SP
1252 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1253 #ifndef SIMULATOR
1254 #ifndef BOOTLOADER
1255 #endif /* BOOTLOADER */
1256 #endif /* SIMULATOR */
1257 #endif /* MEIZU_M6SP */
1259 #ifdef MEIZU_M3
1260 target/arm/s5l8700/backlight-meizu.c
1261 target/arm/s5l8700/meizu-m3/lcd-m3.c
1262 drivers/qt1106.c
1263 #ifndef SIMULATOR
1264 #ifndef BOOTLOADER
1265 target/arm/s5l8700/udacodec-meizu.c
1266 #endif /* BOOTLOADER */
1267 #endif /* SIMULATOR */
1268 #endif /* MEIZU_M3 */
1270 #ifndef SIMULATOR
1271 #if CONFIG_CPU == JZ4732
1272 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1273 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1274 target/mips/ingenic_jz47xx/debug-jz4740.c
1275 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1276 target/mips/ingenic_jz47xx/kernel-jz4740.c
1277 target/mips/ingenic_jz47xx/i2c-jz4740.c
1278 target/mips/ingenic_jz47xx/lcd-jz4740.c
1279 target/mips/ingenic_jz47xx/system-jz4740.c
1280 target/mips/ingenic_jz47xx/usb-jz4740.c
1281 target/mips/ingenic_jz47xx/timer-jz4740.c
1282 #ifndef BOOTLOADER
1283 target/mips/ingenic_jz47xx/codec-jz4740.c
1284 target/mips/ingenic_jz47xx/pcm-jz4740.c
1285 #endif /* BOOTLOADER */
1286 drivers/nand_id.c
1287 #endif /* CONFIG_CPU == JZ4732 */
1289 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1290 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1291 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1292 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1293 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1294 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1295 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1297 #ifdef ONDA_VX767
1298 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1299 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1300 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1301 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1302 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1303 #endif /* ONDA_VX767 */
1305 #if defined(LYRE_PROTO1)
1306 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1307 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1308 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1309 target/arm/at91sam/lyre_proto1/crt0.S
1310 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1311 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1312 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1313 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1314 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1315 #endif
1316 #endif /* SIMULATOR */
1318 #ifdef SAMSUNG_YH820
1319 #ifndef SIMULATOR
1320 target/arm/ata-as-arm.S
1321 target/arm/ata-pp5020.c
1322 target/arm/adc-pp5020.c
1323 target/arm/i2s-pp.c
1324 target/arm/usb-fw-pp502x.c
1325 target/arm/samsung/akcodec-yh82x_yh92x.c
1326 target/arm/samsung/button-yh82x_yh92x.c
1327 target/arm/samsung/power-yh82x_yh92x.c
1328 target/arm/samsung/yh820/backlight-yh820.c
1329 target/arm/samsung/yh820/lcd-yh820.c
1330 target/arm/samsung/yh820/lcd-as-yh820.S
1331 target/arm/samsung/yh820/powermgmt-yh820.c
1332 #endif /* SIMULATOR */
1333 #endif /* SAMSUNG_YH820 */
1335 #ifdef SAMSUNG_YH920
1336 #ifndef SIMULATOR
1337 target/arm/ata-as-arm.S
1338 target/arm/ata-pp5020.c
1339 target/arm/adc-pp5020.c
1340 target/arm/i2s-pp.c
1341 target/arm/usb-fw-pp502x.c
1342 target/arm/samsung/akcodec-yh82x_yh92x.c
1343 target/arm/samsung/button-yh82x_yh92x.c
1344 target/arm/samsung/power-yh82x_yh92x.c
1345 target/arm/samsung/yh920/backlight-yh920.c
1346 target/arm/samsung/yh920/lcd-yh920.c
1347 target/arm/samsung/yh920/powermgmt-yh920.c
1348 #endif /* SIMULATOR */
1349 #endif /* SAMSUNG_YH920 */
1351 #ifdef SAMSUNG_YH925
1352 #ifndef SIMULATOR
1353 target/arm/ata-as-arm.S
1354 target/arm/ata-pp5020.c
1355 target/arm/adc-pp5020.c
1356 target/arm/i2s-pp.c
1357 target/arm/usb-fw-pp502x.c
1358 target/arm/samsung/akcodec-yh82x_yh92x.c
1359 target/arm/samsung/button-yh82x_yh92x.c
1360 target/arm/samsung/power-yh82x_yh92x.c
1361 target/arm/samsung/yh925/backlight-yh925.c
1362 target/arm/samsung/yh925/lcd-yh925.c
1363 target/arm/samsung/yh925/lcd-as-yh925.S
1364 target/arm/samsung/yh925/powermgmt-yh925.c
1365 #endif /* SIMULATOR */
1366 #endif /* SAMSUNG_YH925 */