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