Merge branch 'master' into sim-target-tree
[kugel-rb.git] / firmware / SOURCES
blob60a3661cdc9c981bce404e928df23415585ea0a6
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 #ifdef HAVE_SDL
22 target/hosted/sdl/kernel-sdl.c
23 target/hosted/sdl/system-sdl.c
24 target/hosted/sdl/timer-sdl.c
25 #endif
26 panic.c
27 debug.c
29 /* Standard library */
30 #if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
31 libc/errno.c
32 /* alsa on linux requires a more advanced sprintf, i.e. not ours */
33 libc/sprintf.c
34 #endif /* !SIMULATOR || __MINGW32__ || __CYGWIN__ */
35 #if !defined(SIMULATOR)
36 libc/atoi.c
37 libc/ctype.c
38 libc/memcmp.c
39 libc/memchr.c
40 libc/qsort.c
41 libc/random.c
42 libc/strcat.c
43 libc/strchr.c
44 libc/strcmp.c
45 libc/strcpy.c
46 libc/strncmp.c
47 libc/strrchr.c
48 libc/strtok.c
49 libc/strstr.c
50 libc/mktime.c
51 #endif /* !defined(SIMULATOR)*/
53 /* Common */
54 common/config.c
55 common/crc32.c
56 #ifdef MI4_FORMAT
57 common/crc32-mi4.c
58 #endif
59 #ifndef SIMULATOR
60 common/dir_uncached.c
61 common/file.c
62 #endif /* SIMULATOR */
63 #ifdef HAVE_DIRCACHE
64 common/dircache.c
65 #endif /* HAVE_DIRCACHE */
66 common/disk.c
67 common/filefuncs.c
68 common/format.c
69 common/strcasecmp.c
70 common/strcasestr.c
71 common/strnatcmp.c
72 common/strlcat.c
73 common/strlcpy.c
74 common/structec.c
75 common/timefuncs.c
76 common/unicode.c
78 /* Display */
79 scroll_engine.c
81 #ifdef HAVE_LCD_CHARCELLS
82 drivers/lcd-charcell.c
83 drivers/lcd-charset-player.c
84 #endif /* HAVE_LCD_CHARCELLS */
86 #ifdef HAVE_LCD_BITMAP
87 arabjoin.c
88 bidi.c
89 font_cache.c
90 font.c
91 hangul.c
92 lru.c
93 #ifndef BOOTLOADER
94 screendump.c
95 #endif
96 #if LCD_DEPTH == 1
97 drivers/lcd-1bit-vert.c
98 #elif LCD_DEPTH == 2
99 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
100 drivers/lcd-2bit-horz.c
101 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
102 drivers/lcd-2bit-vert.c
103 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
104 drivers/lcd-2bit-vi.c
105 #endif /* LCD_PIXELFORMAT */
106 #elif LCD_DEPTH == 16
107 #if   defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
108 drivers/lcd-16bit-vert.c
109 #else
110 drivers/lcd-16bit.c
111 #endif
112 #endif /* LCD_DEPTH */
113 common/diacritic.c
114 #endif /* HAVE_LCD_BITMAP */
116 #ifdef HAVE_REMOTE_LCD
117 #if LCD_REMOTE_DEPTH == 1
118 drivers/lcd-remote-1bit-v.c
119 #elif LCD_REMOTE_DEPTH == 2
120 drivers/lcd-remote-2bit-vi.c
121 #endif /* LCD_REMOTE_DEPTH */
122 #endif /* HAVE_REMOTE_LCD */
124 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
125     || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
126 backlight-sw-fading.c
127 #endif /* CONFIG_BACKLIGHT_FADING */
129 /* Misc. */
130 drivers/led.c
131 drivers/button.c
132 #ifndef SIMULATOR
133 #ifdef HAVE_DAC3550A
134 drivers/dac.c
135 #endif
136 #ifdef HAVE_SERIAL
137 drivers/serial.c
138 #endif
139 #endif /* SIMULATOR */
140 #ifdef HAVE_TOUCHSCREEN
141 drivers/touchscreen.c
142 #endif
145 /* Storage */
146 #ifndef SIMULATOR
147 #if (CONFIG_STORAGE & STORAGE_MMC)
148 drivers/ata_mmc.c
149 #endif
150 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
151 drivers/ata_flash.c
152 #endif
153 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
154 target/arm/ata-nand-telechips.c
155 #endif
156 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
157 target/arm/s5l8700/ata-nand-s5l8700.c
158 #endif
159 #if (CONFIG_STORAGE & STORAGE_ATA)
160 drivers/ata.c
161 #endif
162 #if (CONFIG_STORAGE & STORAGE_SD)
163 drivers/sd.c
164 #endif
165 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
166 drivers/ramdisk.c
167 #endif
168 storage.c
169 drivers/fat.c
170 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
171 hotswap.c
172 #endif
173 #endif /* SIMULATOR */
175 /* EEPROM */
176 #ifdef HAVE_EEPROM
177 drivers/eeprom_24cxx.c
178 #ifdef HAVE_EEPROM_SETTINGS
179 eeprom_settings.c
180 #endif /* HAVE_EEPROM_SETTINGS */
181 #endif /* HAVE_EEPROM */
183 /* RTC */
184 #ifndef SIMULATOR
185 #if (CONFIG_RTC == RTC_M41ST84W)
186 drivers/rtc/rtc_m41st84w.c
187 #elif (CONFIG_RTC == RTC_PCF50606)
188 drivers/rtc/rtc_pcf50606.c
189 #elif (CONFIG_RTC == RTC_PCF50605)
190 drivers/rtc/rtc_pcf50605.c
191 #elif (CONFIG_RTC == RTC_E8564)
192 drivers/rtc/rtc_e8564.c
193 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
194 drivers/rtc/rtc_ds1339_ds3231.c
195 #elif (CONFIG_RTC == RTC_S3C2440)
196 drivers/rtc/rtc_s3c2440.c
197 #elif (CONFIG_RTC == RTC_AS3514)
198 drivers/rtc/rtc_as3514.c
199 #elif (CONFIG_RTC == RTC_RX5X348AB)
200 drivers/rtc/rtc_rx5x348ab.c
201 #elif (CONFIG_RTC == RTC_MR100)
202 drivers/rtc/rtc_mr100.c
203 #elif (CONFIG_RTC == RTC_MC13783)
204 drivers/rtc/rtc_mc13783.c
205 #elif (CONFIG_RTC == RTC_TCC77X)
206 drivers/rtc/rtc_tcc77x.c
207 #elif (CONFIG_RTC == RTC_JZ47XX)
208 drivers/rtc/rtc_jz4740.c
209 #elif (CONFIG_RTC == RTC_S35390A)
210 drivers/rtc/rtc_s35390a.c
211 #elif (CONFIG_RTC == RTC_D2)
212 drivers/rtc/rtc_d2.c
213 #endif /* (CONFIG_RTC == RTC_) */
214 #endif /* SIMULATOR */
216 #ifndef BOOTLOADER
217 /* Tuner */
218 #if CONFIG_TUNER
219 tuner.c
220 #ifndef SIMULATOR
221 #if (CONFIG_TUNER & LV24020LP)
222 drivers/tuner/lv24020lp.c
223 #endif /* (CONFIG_TUNER & LV24020LP) */
224 #if (CONFIG_TUNER & S1A0903X01)
225 drivers/fmradio.c
226 drivers/tuner/s1a0903x01.c
227 #endif /* (CONFIG_TUNER & S1A0903X01) */
228 #if (CONFIG_TUNER & TEA5760)
229 drivers/tuner/tea5760uk.c
230 #endif
231 #if (CONFIG_TUNER & TEA5767)
232 drivers/tuner/tea5767.c
233 #endif /* (CONFIG_TUNER & TEA5767) */
234 #if (CONFIG_TUNER & SI4700)
235 drivers/tuner/si4700.c
236 #endif /* (CONFIG_TUNER & SI4700) */
237 #if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
238 drivers/tuner/ipod_remote_tuner.c
239 #endif /* (CONFIG_TUNER & IPOD_REMOTE_TUNER) */
240 #endif /*SIMULATOR */
241 #endif /* CONFIG_TUNER */
242 #endif /* BOOTLOADER */
244 /* Sound */
245 #if CONFIG_CODEC != SWCODEC
246 mp3_playback.c
247 #endif /* CONFIG_CODEC != SWCODEC */
248 sound.c
250 #if CONFIG_CODEC == SWCODEC
252 #ifndef BOOTLOADER
253 pcm_sampr.c
254 pcm.c
255 #ifdef HAVE_RECORDING
256 enc_base.c
257 #endif /* HAVE_RECORDING */
258 #endif /* BOOTLOADER */
260 #else  /* !SWCODEC */
262 #ifndef BOOTLOADER
263 #ifndef SIMULATOR
264 drivers/mas.c
265 #endif /* SIMULATOR */
266 #endif /* BOOTLOADER */
268 #endif /* SWCODEC */
270 /* Audio codec */
271 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
272 #if defined(HAVE_UDA1380)
273 drivers/audio/uda1380.c
274 #elif defined(HAVE_WM8751) \
275    || defined(HAVE_WM8750)
276 drivers/audio/wm8751.c
277 #elif defined(HAVE_WM8978)
278 drivers/audio/wm8978.c
279 #elif defined(HAVE_WM8975)
280 drivers/audio/wm8975.c
281 #elif defined(HAVE_WM8985)
282 drivers/audio/wm8985.c
283 #elif defined(HAVE_WM8758)
284 drivers/audio/wm8758.c
285 #elif defined(HAVE_WM8711) \
286    || defined(HAVE_WM8721) \
287    || defined(HAVE_WM8731)
288 drivers/audio/wm8731.c
289 #elif defined(HAVE_AS3514)
290 drivers/audio/as3514.c
291 #elif defined(HAVE_TLV320)
292 drivers/audio/tlv320.c
293 #elif defined(HAVE_MAS35XX)
294 drivers/audio/mas35xx.c
295 #elif defined(HAVE_AK4537)
296 drivers/audio/ak4537.c
297 #elif defined(HAVE_UDA1341)
298 drivers/audio/uda1341.c
299 #endif /* defined(HAVE_*) */
300 #elif defined(HAVE_SDL_AUDIO)
301 drivers/audio/sdl.c
302 target/hosted/sdl/pcm-sdl.c
303 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
305 /* USB Stack */
306 #if !defined(SIMULATOR)
307 #ifdef HAVE_USBSTACK
308 usbstack/usb_core.c
309 #ifdef USB_ENABLE_STORAGE
310 usbstack/usb_storage.c
311 #endif
312 #ifdef USB_ENABLE_SERIAL
313 usbstack/usb_serial.c
314 #endif
315 #ifdef USB_ENABLE_CHARGING_ONLY
316 usbstack/usb_charging_only.c
317 #endif
318 #ifdef USB_ENABLE_HID
319 usbstack/usb_hid.c
320 #endif
321 #if CONFIG_USBOTG == USBOTG_M66591
322 drivers/m66591.c
323 #elif CONFIG_USBOTG == USBOTG_ARC
324 target/arm/usb-drv-arc.c
325 #elif CONFIG_USBOTG == USBOTG_AS3525
326 target/arm/as3525/usb-drv-as3525.c
327 #elif CONFIG_USBOTG == USBOTG_ISP1583
328 drivers/isp1583.c
329 #endif
330 #else /* !defined(HAVE_USBSTACK) */
331 #if CONFIG_USBOTG == USBOTG_ISP1362      
332 drivers/isp1362.c
333 #elif CONFIG_USBOTG == USBOTG_M5636      
334 drivers/m5636.c
335 #endif
336 #endif /* !defined(HAVE_USBSTACK) */
337 #endif /* !defined(SIMULATOR) */
339 /* Other Random Hardware */
340 #ifdef HAVE_TSC2100
341 #if !defined(SIMULATOR)
342 drivers/tsc2100.c
343 drivers/audio/tsc2100.c
344 #endif /* !SIMULATOR */
345 #endif
347 /* CPU Specific - By class then particular chip if applicable */
348 #if defined(CPU_SH)
350 #ifndef SIMULATOR
351 drivers/i2c.c
352 target/sh/adc-sh.c
353 target/sh/bitswap.S
354 target/sh/crt0.S
355 target/sh/kernel-sh.c
356 target/sh/memcpy-sh.S
357 target/sh/memmove-sh.S
358 target/sh/memset-sh.S
359 target/sh/strlen-sh.S
360 target/sh/system-sh.c
361 target/sh/archos/descramble.S
362 #endif /* SIMULATOR */
364 #elif defined(CPU_COLDFIRE)
366 #ifndef SIMULATOR
367 target/coldfire/crt0.S
368 #ifdef HAVE_PRIORITY_SCHEDULING
369 common/ffs.c
370 target/coldfire/ffs-coldfire.S
371 #endif
372 target/coldfire/memcpy-coldfire.S
373 target/coldfire/memmove-coldfire.S
374 target/coldfire/memset-coldfire.S
375 target/coldfire/strlen-coldfire.S
376 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
377  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
378 target/coldfire/memset16-coldfire.S
379 #endif
380 target/coldfire/kernel-coldfire.c
381 target/coldfire/system-coldfire.c
382 target/coldfire/timer-coldfire.c
383 #ifndef BOOTLOADER
384 target/coldfire/pcm-coldfire.c
385 #endif /* BOOTLOADER */
386 #if CONFIG_I2C == I2C_COLDFIRE
387 target/coldfire/i2c-coldfire.c
388 #endif /* CONFIG_I2C == I2C_COLDFIRE */
389 #endif /* SIMULATOR */
391 #elif defined(CPU_PP) || defined(CPU_ARM)
392 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
393 target/arm/support-arm.S
394 target/arm/memcpy-arm.S
395 target/arm/memmove-arm.S
396 libc/strlen.c
397 #ifndef SIMULATOR
398 target/arm/memset-arm.S
399 target/arm/memset16-arm.S
400 #ifdef HAVE_PRIORITY_SCHEDULING
401 target/arm/ffs-arm.S
402 #endif
403 target/arm/system-arm.c
404 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
405 target/arm/i2c-pp.c
406 #elif CONFIG_I2C == I2C_PNX0101
407 target/arm/pnx0101/i2c-pnx0101.c
408 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
409 target/arm/i2c-telechips.c
410 #elif CONFIG_I2C == I2C_S3C2440
411 /* no i2c driver yet */
412 #elif CONFIG_I2C == I2C_S5L8700
413 target/arm/s5l8700/i2c-s5l8700.c
414 #endif
416 #if CONFIG_CPU == PNX0101
417 target/arm/pnx0101/kernel-pnx0101.c
418 target/arm/pnx0101/system-pnx0101.c
419 target/arm/pnx0101/timer-pnx0101.c
420 #endif
422 #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
423 target/arm/as3525/system-as3525.c
424 target/arm/as3525/kernel-as3525.c
425 target/arm/as3525/timer-as3525.c
426 #if CONFIG_CPU == AS3525
427 target/arm/as3525/sd-as3525.c
428 #ifdef HAVE_SCROLLWHEEL
429 target/arm/as3525/scrollwheel-as3525.c
430 #endif /* HAVE_SCROLLWHEEL */
431 #else /* AS3535v2 */
432 target/arm/as3525/sd-as3525v2.c
433 #endif
434 target/arm/as3525/power-as3525.c
435 target/arm/as3525/usb-as3525.c
436 target/arm/as3525/dma-pl081.c
437 target/arm/as3525/ascodec-as3525.c
438 #ifndef BOOTLOADER
439 target/arm/mmu-arm.S
440 drivers/generic_i2c.c
441 target/arm/adc-as3514.c
442 target/arm/as3525/audio-as3525.c
443 target/arm/as3525/debug-as3525.c
444 #if CONFIG_TUNER
445 target/arm/as3525/fmradio-i2c-as3525.c
446 #endif /* CONFIG_TUNER */
447 target/arm/as3525/i2s-as3525.c
448 target/arm/as3525/pcm-as3525.c
449 #endif /* BOOTLOADER */
450 #endif /* CONFIG_CPU == AS3525 */
452 #if defined(CPU_PP)
453 target/arm/kernel-pp.c
454 target/arm/timer-pp.c
455 #if CONFIG_CPU == PP5002
456 target/arm/system-pp5002.c
457 #elif defined CPU_PP502x
458 target/arm/system-pp502x.c
459 #endif
460 #ifdef BOOTLOADER
461 target/arm/crt0-pp-bl.S
462 #else
463 target/arm/pcm-pp.c
464 #if !defined(SANSA_E200) && !defined(SANSA_C200)
465 target/arm/audio-pp.c
466 #endif /* SANSA_E200 */
467 target/arm/crt0-pp.S
468 #endif
469 #elif CONFIG_CPU == PNX0101
470 target/arm/pnx0101/crt0-pnx0101.S
471 #elif CONFIG_CPU==DM320
472 target/arm/tms320dm320/crt0.S
473 #elif CONFIG_CPU==S3C2440
474 target/arm/s3c2440/crt0.S
475 #elif defined(CPU_TCC77X)
476 target/arm/tcc77x/crt0.S
477 #elif defined(CPU_TCC780X)
478 target/arm/tcc780x/crt0.S
479 #elif CONFIG_CPU==IMX31L
480 target/arm/imx31/crt0.S
481 #elif defined(CPU_S5L870X)
482 target/arm/s5l8700/crt0.S
483 #elif defined(CPU_ARM)
484 target/arm/crt0.S
485 #endif /* defined(CPU_*) */
486 #endif /* SIMULATOR */
488 #elif defined(CPU_MIPS)
489 #undef mips
490 /*target/mips/strlen.S*/
491 libc/memmove.c
492 common/memset16.c
493 libc/strlen.c
494 target/mips/ffs-mips.S
495 target/mips/memcpy-mips.S
496 target/mips/memset-mips.S
497 target/mips/mmu-mips.c
498 #if CONFIG_CPU==JZ4732
499 target/mips/ingenic_jz47xx/crt0.S
500 #endif /* CONFIG_CPU == JZ4732 */
502 #else
504 #ifdef HAVE_PRIORITY_SCHEDULING
505 common/ffs.c
506 #endif
507 libc/memcpy.c
508 libc/memmove.c
509 libc/memset.c
510 common/memset16.c
511 libc/strlen.c
512 #ifndef SIMULATOR
513 crt0.S
514 drivers/i2c.c
515 #endif /* SIMULATOR */
517 #endif /* defined(CPU_*) */
519 #ifdef ARCHOS_PLAYER
520 #ifndef SIMULATOR
521 target/sh/archos/ata-archos.c
522 target/sh/archos/timer-archos.c
523 target/sh/archos/ata-as-archos.S
524 target/sh/archos/player/button-player.c
525 target/sh/archos/player/hwcompat-player.c
526 target/sh/archos/player/lcd-as-player.S
527 target/sh/archos/player/lcd-player.c
528 target/sh/archos/player/power-player.c
529 target/sh/archos/player/powermgmt-player.c
530 target/sh/archos/player/usb-player.c
531 #endif /* SIMULATOR */
532 #endif /* ARCHOS_PLAYER */
534 #ifdef ARCHOS_RECORDER
535 #ifndef SIMULATOR
536 target/sh/archos/ata-archos.c
537 target/sh/archos/timer-archos.c
538 target/sh/archos/ata-as-archos.S
539 target/sh/archos/lcd-archos-bitmap.c
540 target/sh/archos/lcd-as-archos-bitmap.S   
541 target/sh/archos/recorder/button-recorder.c
542 target/sh/archos/recorder/power-recorder.c
543 target/sh/archos/recorder/powermgmt-recorder.c
544 target/sh/archos/recorder/usb-recorder.c
545 #endif /* SIMULATOR */
546 #endif /* ARCHOS_RECORDER */
548 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
549 #ifndef SIMULATOR
550 target/sh/archos/ata-archos.c
551 target/sh/archos/timer-archos.c
552 target/sh/archos/ata-as-archos.S
553 target/sh/archos/lcd-archos-bitmap.c
554 target/sh/archos/lcd-as-archos-bitmap.S
555 target/sh/archos/fm_v2/button-fm_v2.c
556 target/sh/archos/fm_v2/power-fm_v2.c
557 target/sh/archos/fm_v2/powermgmt-fm_v2.c
558 target/sh/archos/fm_v2/usb-fm_v2.c
559 #endif /* SIMULATOR */
560 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
562 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
563 #ifndef SIMULATOR
564 target/sh/archos/timer-archos.c
565 target/sh/archos/lcd-archos-bitmap.c
566 target/sh/archos/lcd-as-archos-bitmap.S
567 target/sh/archos/ondio/button-ondio.c
568 target/sh/archos/ondio/power-ondio.c
569 target/sh/archos/ondio/powermgmt-ondio.c
570 target/sh/archos/ondio/usb-ondio.c
571 #if (CONFIG_TUNER & TEA5767)
572 target/sh/archos/ondio/fmradio_i2c-ondio.c
573 #endif
574 #endif /* SIMULATOR */
575 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
577 #ifdef SANSA_E200
578 #ifndef SIMULATOR
579 target/arm/adc-as3514.c
580 target/arm/ascodec-pp.c
581 target/arm/ata-sd-pp.c
582 target/arm/lcd-as-memframe.S
583 target/arm/powermgmt-ascodec.c
584 target/arm/i2s-pp.c
585 target/arm/usb-fw-pp502x.c
586 target/arm/sandisk/backlight-c200_e200.c
587 target/arm/sandisk/power-c200_e200.c
588 target/arm/sandisk/sansa-e200/lcd-e200.c
589 target/arm/sandisk/sansa-e200/button-e200.c
590 target/arm/sandisk/sansa-e200/powermgmt-e200.c
591 #ifndef BOOTLOADER
592 target/arm/sandisk/audio-c200_e200.c
593 #endif /* BOOTLOADER */
594 #endif /* SIMULATOR */
595 #endif /* SANSA_E200 */
597 #ifdef SANSA_C200
598 #ifndef SIMULATOR
599 target/arm/adc-as3514.c
600 target/arm/ascodec-pp.c
601 target/arm/ata-sd-pp.c
602 target/arm/i2s-pp.c
603 target/arm/powermgmt-ascodec.c
604 target/arm/usb-fw-pp502x.c
605 target/arm/sandisk/backlight-c200_e200.c
606 target/arm/sandisk/power-c200_e200.c
607 target/arm/lcd-c200_c200v2.c
608 target/arm/sandisk/sansa-c200/lcd-as-c200.S
609 target/arm/sandisk/sansa-c200/button-c200.c
610 target/arm/sandisk/sansa-c200/powermgmt-c200.c
611 #ifndef BOOTLOADER
612 target/arm/sandisk/audio-c200_e200.c
613 #endif /* BOOTLOADER */
614 #endif /* SIMULATOR */
615 #endif /* SANSA_C200 */
617 #ifdef SANSA_VIEW
618 #ifndef SIMULATOR
619 /* target/arm/ascodec-pp.c */
620 target/arm/ata-sd-pp.c
621 target/arm/lcd-as-memframe.S
622 target/arm/i2s-pp.c
623 /* target/arm/usb-fw-pp502x.c */
624 target/arm/sandisk/sansa-view/backlight-view.c
625 target/arm/sandisk/sansa-view/adc-view.c
626 target/arm/sandisk/sansa-view/power-view.c
627 target/arm/sandisk/sansa-view/lcd-view.c
628 target/arm/sandisk/sansa-view/button-view.c
629 target/arm/sandisk/sansa-view/powermgmt-view.c
630 #ifndef BOOTLOADER
631 /* target/arm/sandisk/audio-view.c */
632 #endif /* BOOTLOADER */
633 #endif /* SIMULATOR */
634 #endif /* SANSA_VIEW */
636 #ifdef PHILIPS_SA9200
637 #ifndef SIMULATOR
638 #ifndef BOOTLOADER
639 drivers/synaptics-mep.c
640 #endif /* BOOTLOADER */
641 target/arm/adc-as3514.c
642 target/arm/ascodec-pp.c
643 target/arm/ata-sd-pp.c
644 target/arm/i2s-pp.c
645 target/arm/powermgmt-ascodec.c
646 target/arm/usb-fw-pp502x.c
647 target/arm/philips/sa9200/backlight-sa9200.c
648 target/arm/philips/sa9200/button-sa9200.c
649 target/arm/philips/sa9200/lcd-sa9200.c
650 target/arm/philips/sa9200/power-sa9200.c
651 target/arm/philips/sa9200/powermgmt-sa9200.c
652 #endif /* SIMULATOR */
653 #endif /* PHILIPS_SA9200 */
655 #ifdef PHILIPS_HDD1630
656 #ifndef SIMULATOR
657 #ifndef BOOTLOADER
658 drivers/synaptics-mep.c
659 #endif /* BOOTLOADER */
660 target/arm/ata-as-arm.S
661 target/arm/ata-pp5020.c
662 target/arm/wmcodec-pp.c
663 target/arm/i2s-pp.c
664 target/arm/adc-pp5020.c
665 target/arm/philips/backlight-hdd.c
666 target/arm/philips/power-hdd.c
667 target/arm/philips/fmradio_i2c-hdd.c
668 target/arm/philips/hdd1630/button-hdd1630.c
669 target/arm/philips/hdd1630/lcd-hdd1630.c
670 target/arm/philips/hdd1630/lcd-as-hdd1630.S
671 target/arm/philips/hdd1630/powermgmt-hdd1630.c
672 target/arm/usb-fw-pp502x.c
673 #endif /* SIMULATOR */
674 #endif /* PHILIPS_HDD1630 */
676 #ifdef PHILIPS_HDD6330
677 #ifndef SIMULATOR
678 #ifndef BOOTLOADER
679 drivers/synaptics-mep.c
680 #endif /* BOOTLOADER */
681 target/arm/ata-as-arm.S
682 target/arm/ata-pp5020.c
683 target/arm/wmcodec-pp.c
684 target/arm/i2s-pp.c
685 target/arm/adc-pp5020.c
686 target/arm/philips/backlight-hdd.c
687 target/arm/philips/power-hdd.c
688 target/arm/philips/fmradio_i2c-hdd.c
689 target/arm/philips/hdd6330/button-hdd6330.c
690 target/arm/philips/hdd6330/lcd-hdd6330.c
691 target/arm/philips/hdd6330/powermgmt-hdd6330.c
692 target/arm/usb-fw-pp502x.c
693 #endif /* SIMULATOR */
694 #endif /* PHILIPS_HDD6330 */
696 #ifdef IAUDIO_X5
697 #ifndef SIMULATOR
698 target/coldfire/ata-as-coldfire.S
699 target/coldfire/pcf50606-coldfire.c
700 target/coldfire/iaudio/adc-iaudio.c
701 target/coldfire/iaudio/ata-iaudio.c
702 target/coldfire/iaudio/fmradio_i2c-iaudio.c
703 target/coldfire/iaudio/lcd-remote-as-iaudio.S
704 target/coldfire/iaudio/lcd-remote-iaudio.c
705 target/coldfire/iaudio/pcf50606-iaudio.c
706 target/coldfire/iaudio/power-x5m5.c
707 target/coldfire/iaudio/powermgmt-iaudio.c
708 target/coldfire/iaudio/system-iaudio.c
709 target/coldfire/iaudio/usb-iaudio.c
710 target/coldfire/iaudio/x5/backlight-x5.c
711 target/coldfire/iaudio/x5/button-x5.c
712 target/coldfire/iaudio/x5/ds2411-x5.c
713 target/coldfire/iaudio/x5/lcd-as-x5.S
714 target/coldfire/iaudio/x5/lcd-x5.c
715 target/coldfire/iaudio/x5/m5636-x5.c
716 #ifndef BOOTLOADER
717 target/coldfire/iaudio/audio-iaudio.c
718 #endif
719 #endif /* SIMULATOR */
720 #endif /* IAUDIO_X5 */
722 #ifdef IAUDIO_M5
723 #ifndef SIMULATOR
724 target/coldfire/ata-as-coldfire.S
725 target/coldfire/pcf50606-coldfire.c
726 target/coldfire/iaudio/adc-iaudio.c
727 target/coldfire/iaudio/ata-iaudio.c
728 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
729 target/coldfire/iaudio/fmradio_i2c-iaudio.c
730 #endif
731 target/coldfire/iaudio/lcd-remote-as-iaudio.S
732 target/coldfire/iaudio/lcd-remote-iaudio.c
733 target/coldfire/iaudio/m5/backlight-m5.c
734 target/coldfire/iaudio/m5/button-m5.c
735 target/coldfire/iaudio/m5/lcd-as-m5.S
736 target/coldfire/iaudio/m5/lcd-m5.c
737 target/coldfire/iaudio/pcf50606-iaudio.c
738 target/coldfire/iaudio/power-x5m5.c
739 target/coldfire/iaudio/powermgmt-iaudio.c
740 target/coldfire/iaudio/system-iaudio.c
741 target/coldfire/iaudio/usb-iaudio.c
742 #ifndef BOOTLOADER
743 target/coldfire/iaudio/audio-iaudio.c
744 #endif
745 #endif /* SIMULATOR */
746 #endif /* IAUDIO_M5 */
748 #ifdef IAUDIO_M3
749 #ifndef SIMULATOR
750 target/coldfire/ata-as-coldfire.S
751 target/coldfire/iaudio/fmradio_i2c-iaudio.c
752 target/coldfire/iaudio/m3/adc-m3.c
753 target/coldfire/iaudio/m3/ata-m3.c
754 target/coldfire/iaudio/m3/backlight-m3.c
755 target/coldfire/iaudio/m3/button-m3.c
756 target/coldfire/iaudio/m3/lcd-m3.c
757 target/coldfire/iaudio/m3/lcd-as-m3.S
758 target/coldfire/iaudio/m3/power-m3.c
759 target/coldfire/iaudio/m3/powermgmt-m3.c
760 target/coldfire/iaudio/m3/system-m3.c
761 target/coldfire/iaudio/m3/usb-m3.c
762 #ifndef BOOTLOADER
763 target/coldfire/iaudio/audio-iaudio.c
764 #endif
765 #endif /* SIMULATOR */
766 #endif /* IAUDIO_M3 */
768 #ifdef IRIVER_IFP7XX_SERIES
769 #ifdef STUB
770 ifp_usb_serial.c
771 libc/sscanf.c
772 #endif /* STUB */
773 #endif /* IRIVER_IFP7XX_SERIES */
775 #ifdef IRIVER_H300_SERIES
776 #ifndef SIMULATOR
777 target/coldfire/ata-as-coldfire.S
778 target/coldfire/pcf50606-coldfire.c
779 target/coldfire/iriver/ata-iriver.c
780 target/coldfire/iriver/lcd-remote-iriver.c
781 target/coldfire/iriver/lcd-remote-as-iriver.S
782 target/coldfire/iriver/system-iriver.c
783 target/coldfire/iriver/fmradio_i2c-iriver.c
784 target/coldfire/iriver/h300/sw_i2c-h300.c
785 target/coldfire/iriver/h300/adc-h300.c
786 target/coldfire/iriver/h300/backlight-h300.c
787 target/coldfire/iriver/h300/button-h300.c
788 target/coldfire/iriver/h300/pcf50606-h300.c
789 target/coldfire/iriver/h300/lcd-as-h300.S
790 target/coldfire/iriver/h300/lcd-h300.c
791 target/coldfire/iriver/h300/power-h300.c
792 target/coldfire/iriver/h300/powermgmt-h300.c
793 target/coldfire/iriver/h300/usb-h300.c
794 #ifndef BOOTLOADER
795 target/coldfire/iriver/audio-iriver.c
796 target/coldfire/iriver/udacodec-iriver.c
797 #endif
798 #endif /* SIMULATOR */
799 #endif /* IRIVER_H300_SERIES */
801 #ifdef IRIVER_H100_SERIES
802 #ifndef SIMULATOR
803 drivers/sw_i2c.c
804 target/coldfire/ata-as-coldfire.S
805 target/coldfire/iriver/ata-iriver.c
806 target/coldfire/iriver/lcd-remote-iriver.c
807 target/coldfire/iriver/lcd-remote-as-iriver.S
808 target/coldfire/iriver/system-iriver.c
809 target/coldfire/iriver/fmradio_i2c-iriver.c
810 target/coldfire/iriver/h100/adc-h100.c
811 target/coldfire/iriver/h100/backlight-h100.c
812 target/coldfire/iriver/h100/button-h100.c
813 target/coldfire/iriver/h100/lcd-as-h100.S
814 target/coldfire/iriver/h100/lcd-h100.c
815 target/coldfire/iriver/h100/power-h100.c
816 target/coldfire/iriver/h100/powermgmt-h100.c
817 #ifndef BOOTLOADER
818 target/coldfire/iriver/audio-iriver.c
819 target/coldfire/iriver/udacodec-iriver.c
820 target/coldfire/iriver/h100/spdif-h100.c
821 #endif
822 target/coldfire/iriver/h100/usb-h100.c
823 #endif /* SIMULATOR */
824 #endif /* IRIVER_H100_SERIES */
826 #ifdef IRIVER_H10
827 #ifndef SIMULATOR
828 target/arm/ata-as-arm.S
829 target/arm/ata-pp5020.c
830 target/arm/wmcodec-pp.c
831 target/arm/i2s-pp.c
832 target/arm/adc-pp5020.c
833 target/arm/iriver/h10/backlight-h10.c
834 target/arm/iriver/h10/button-h10.c
835 target/arm/iriver/h10/fmradio_i2c-h10.c
836 target/arm/iriver/h10/lcd-h10_20gb.c
837 target/arm/iriver/h10/lcd-as-h10.S
838 target/arm/iriver/h10/power-h10.c
839 target/arm/iriver/h10/powermgmt-h10.c
840 target/arm/usb-fw-pp502x.c
841 #endif /* SIMULATOR */
842 #endif /* IRIVER_H10 */
844 #ifdef IRIVER_H10_5GB
845 #ifndef SIMULATOR
846 target/arm/ata-as-arm.S
847 target/arm/ata-pp5020.c
848 target/arm/wmcodec-pp.c
849 target/arm/i2s-pp.c
850 target/arm/adc-pp5020.c
851 target/arm/iriver/h10/backlight-h10.c
852 target/arm/iriver/h10/button-h10.c
853 target/arm/iriver/h10/fmradio_i2c-h10.c
854 target/arm/iriver/h10/lcd-h10_5gb.c
855 target/arm/iriver/h10/power-h10.c
856 target/arm/iriver/h10/powermgmt-h10.c
857 target/arm/usb-fw-pp502x.c
858 #endif /* SIMULATOR */
859 #endif /* IRIVER_H10_5GB */
861 #ifdef GIGABEAT_F
862 #ifndef SIMULATOR
863 target/arm/lcd-as-memframe.S
864 target/arm/mmu-arm.S
865 target/arm/s3c2440/adc-s3c2440.c
866 target/arm/s3c2440/debug-s3c2440.c
867 target/arm/s3c2440/kernel-s3c2440.c
868 target/arm/s3c2440/lcd-s3c2440.c
869 target/arm/s3c2440/system-s3c2440.c
870 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
871 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
872 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
873 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
874 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
875 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
876 #ifndef BOOTLOADER
877 target/arm/s3c2440/i2c-s3c2440.c
878 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
879 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
880 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
881 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
882 #endif
883 #endif /* SIMULATOR */
884 #endif /* GIGABEAT_F */
886 #ifdef GIGABEAT_S
887 #ifndef SIMULATOR
888 target/arm/lcd-as-memframe.S
889 target/arm/mmu-armv6.S
890 target/arm/imx31/ata-imx31.c
891 target/arm/imx31/avic-imx31.c
892 target/arm/imx31/ccm-imx31.c
893 target/arm/imx31/debug-imx31.c
894 target/arm/imx31/dvfs_dptc-imx31.c
895 target/arm/imx31/gpio-imx31.c
896 target/arm/imx31/i2c-imx31.c
897 target/arm/imx31/iomuxc-imx31.c
898 target/arm/imx31/mc13783-imx31.c
899 target/arm/imx31/mmu-imx31.c
900 target/arm/imx31/rolo_restart_firmware.S
901 target/arm/imx31/sdma-imx31.c
902 target/arm/imx31/spi-imx31.c
903 target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
904 target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
905 target/arm/imx31/gigabeat-s/button-gigabeat-s.c
906 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
907 target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
908 target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
909 target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
910 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
911 target/arm/imx31/gigabeat-s/power-gigabeat-s.c
912 target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
913 target/arm/imx31/gigabeat-s/system-gigabeat-s.c
914 target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
915 target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
916 #ifndef BOOTLOADER
917 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
918 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
919 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
920 target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
921 target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
922 #endif
923 #endif /* SIMULATOR */
924 #endif /* GIGABEAT_S */
926 #if CONFIG_CPU == DM320
927 target/arm/tms320dm320/debug-dm320.c
928 target/arm/tms320dm320/dsp-dm320.c
929 target/arm/tms320dm320/i2c-dm320.c
930 target/arm/tms320dm320/kernel-dm320.c
931 target/arm/tms320dm320/spi-dm320.c
932 target/arm/tms320dm320/system-dm320.c
933 target/arm/tms320dm320/timer-dm320.c
934 target/arm/tms320dm320/uart-dm320.c
935 #endif /* CONFIG_CPU == DM320 */
937 #ifdef MROBE_500
938 #ifndef SIMULATOR
939 target/arm/ata-as-arm.S
940 target/arm/lcd-as-memframe.S
941 target/arm/mmu-arm.S
942 target/arm/tms320dm320/mrobe-500/adc-mr500.c
943 target/arm/tms320dm320/mrobe-500/ata-mr500.c
944 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
945 target/arm/tms320dm320/mrobe-500/button-mr500.c
946 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
947 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
948 #if defined(HAVE_REMOTE_LCD)
949 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
950 #endif
951 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
952 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
953 target/arm/tms320dm320/mrobe-500/power-mr500.c
954 target/arm/tms320dm320/mrobe-500/usb-mr500.c
955 #endif /* SIMULATOR */
956 #endif /* MROBE_500 */
958 #ifdef CREATIVE_ZVx
959 #ifndef SIMULATOR
960 target/arm/ata-as-arm.S
961 target/arm/lcd-as-memframe.S
962 target/arm/mmu-arm.S
963 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
964 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
965 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
966 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
967 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
968 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
969 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
970 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
971 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
972 #endif /* SIMULATOR */
973 #endif /* CREATIVE_ZVx */
975 #ifdef MROBE_100
976 #ifndef SIMULATOR
977 #ifndef BOOTLOADER
978 drivers/synaptics-mep.c
979 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
980 #endif /* BOOTLOADER */
981 drivers/sw_i2c.c
982 target/arm/ata-as-arm.S
983 target/arm/ata-pp5020.c
984 target/arm/wmcodec-pp.c
985 target/arm/i2s-pp.c
986 target/arm/adc-pp5020.c
987 target/arm/olympus/mrobe-100/backlight-mr100.c
988 target/arm/olympus/mrobe-100/button-mr100.c
989 target/arm/olympus/mrobe-100/lcd-mr100.c
990 target/arm/olympus/mrobe-100/lcd-as-mr100.S
991 target/arm/olympus/mrobe-100/power-mr100.c
992 target/arm/olympus/mrobe-100/powermgmt-mr100.c
993 target/arm/usb-fw-pp502x.c
994 #endif /* SIMULATOR */
995 #endif /* MROBE_100 */
997 #ifdef TATUNG_TPJ1022
998 #ifndef SIMULATOR
999 target/arm/ata-as-arm.S
1000 target/arm/ata-pp5020.c
1001 target/arm/wmcodec-pp.c
1002 target/arm/i2s-pp.c
1003 target/arm/adc-pp5020.c
1004 target/arm/tatung/tpj1022/backlight-tpj1022.c
1005 target/arm/tatung/tpj1022/button-tpj1022.c
1006 target/arm/tatung/tpj1022/lcd-tpj1022.c
1007 target/arm/tatung/tpj1022/power-tpj1022.c
1008 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
1009 target/arm/usb-fw-pp502x.c
1010 #endif /* SIMULATOR */
1011 #endif /* TATUNG_TPJ1022 */
1013 #ifdef IPOD_4G
1014 #ifndef SIMULATOR
1015 drivers/pcf50605.c
1016 target/arm/wmcodec-pp.c
1017 target/arm/i2s-pp.c
1018 target/arm/ata-as-arm.S
1019 target/arm/ata-pp5020.c
1020 target/arm/ipod/adc-ipod-pcf.c
1021 target/arm/ipod/backlight-4g_color.c
1022 target/arm/ipod/button-clickwheel.c
1023 target/arm/ipod/lcd-as-gray.S
1024 target/arm/ipod/lcd-gray.c
1025 target/arm/ipod/power-ipod.c
1026 target/arm/ipod/powermgmt-ipod-pcf.c
1027 target/arm/usb-fw-pp502x.c
1028 #endif /* SIMULATOR */
1029 #endif /* IPOD_4G */
1031 #ifdef IPOD_COLOR
1032 #ifndef SIMULATOR
1033 drivers/pcf50605.c
1034 target/arm/ata-as-arm.S
1035 target/arm/ata-pp5020.c
1036 target/arm/wmcodec-pp.c
1037 target/arm/i2s-pp.c
1038 target/arm/ipod/adc-ipod-pcf.c
1039 target/arm/ipod/backlight-4g_color.c
1040 target/arm/ipod/button-clickwheel.c
1041 target/arm/ipod/lcd-color_nano.c
1042 target/arm/ipod/power-ipod.c
1043 target/arm/ipod/powermgmt-ipod-pcf.c
1044 target/arm/usb-fw-pp502x.c
1045 #endif /* SIMULATOR */
1046 #endif /* IPOD_COLOR */
1048 #ifdef IPOD_NANO
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-nano_video.c
1057 target/arm/ipod/button-clickwheel.c
1058 target/arm/ipod/lcd-color_nano.c
1059 target/arm/ipod/power-ipod.c
1060 target/arm/ipod/powermgmt-ipod-pcf.c
1061 target/arm/usb-fw-pp502x.c
1062 #endif /* SIMULATOR */
1063 #endif /* IPOD_NANO */
1065 #ifdef IPOD_VIDEO
1066 #ifndef SIMULATOR
1067 drivers/pcf50605.c
1068 target/arm/ata-as-arm.S
1069 target/arm/ata-pp5020.c
1070 target/arm/wmcodec-pp.c
1071 target/arm/i2s-pp.c
1072 target/arm/ipod/adc-ipod-pcf.c
1073 target/arm/ipod/backlight-nano_video.c
1074 target/arm/ipod/button-clickwheel.c
1075 target/arm/ipod/power-ipod.c
1076 target/arm/ipod/powermgmt-ipod-pcf.c
1077 target/arm/ipod/video/lcd-as-video.S
1078 target/arm/ipod/video/lcd-video.c
1079 target/arm/usb-fw-pp502x.c
1080 #endif /* SIMULATOR */
1081 #endif /* IPOD_VIDEO */
1083 #ifdef IPOD_3G
1084 #ifndef SIMULATOR
1085 drivers/pcf50605.c
1086 target/arm/ata-pp5002.c
1087 target/arm/wmcodec-pp.c
1088 target/arm/i2s-pp.c
1089 target/arm/ipod/adc-ipod-pcf.c
1090 target/arm/ipod/3g/backlight-3g.c
1091 target/arm/ipod/button-1g-3g.c
1092 target/arm/ipod/lcd-as-gray.S
1093 target/arm/ipod/lcd-gray.c
1094 target/arm/ipod/power-ipod.c
1095 target/arm/ipod/powermgmt-ipod-pcf.c
1096 target/arm/usb-fw-pp5002.c
1097 #endif /* SIMULATOR */
1098 #endif /* IPOD_3G */
1100 #ifdef IPOD_1G2G
1101 #ifndef SIMULATOR
1102 target/arm/ata-pp5002.c
1103 target/arm/wmcodec-pp.c
1104 target/arm/i2s-pp.c
1105 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1106 target/arm/ipod/1g2g/backlight-1g2g.c
1107 target/arm/ipod/1g2g/powermgmt-1g2g.c
1108 target/arm/ipod/button-1g-3g.c
1109 target/arm/ipod/lcd-as-gray.S
1110 target/arm/ipod/lcd-gray.c
1111 target/arm/ipod/power-ipod.c
1112 target/arm/usb-fw-pp5002.c
1113 #endif /* SIMULATOR */
1114 #endif /* IPOD_1G2G */
1116 #ifdef IPOD_MINI
1117 #ifndef SIMULATOR
1118 drivers/pcf50605.c
1119 target/arm/ata-as-arm.S
1120 target/arm/ata-pp5020.c
1121 target/arm/wmcodec-pp.c
1122 target/arm/i2s-pp.c
1123 target/arm/ipod/adc-ipod-pcf.c
1124 target/arm/ipod/backlight-mini1g_mini2g.c
1125 target/arm/ipod/button-mini1g.c
1126 target/arm/ipod/lcd-as-gray.S
1127 target/arm/ipod/lcd-gray.c
1128 target/arm/ipod/power-ipod.c
1129 target/arm/ipod/powermgmt-ipod-pcf.c
1130 target/arm/usb-fw-pp502x.c
1131 #endif /* SIMULATOR */
1132 #endif /* IPOD_MINI */
1134 #ifdef IPOD_MINI2G
1135 #ifndef SIMULATOR
1136 drivers/pcf50605.c
1137 target/arm/ata-as-arm.S
1138 target/arm/ata-pp5020.c
1139 target/arm/wmcodec-pp.c
1140 target/arm/i2s-pp.c
1141 target/arm/ipod/adc-ipod-pcf.c
1142 target/arm/ipod/backlight-mini1g_mini2g.c
1143 target/arm/ipod/button-clickwheel.c
1144 target/arm/ipod/lcd-as-gray.S
1145 target/arm/ipod/lcd-gray.c
1146 target/arm/ipod/power-ipod.c
1147 target/arm/ipod/powermgmt-ipod-pcf.c
1148 target/arm/usb-fw-pp502x.c
1149 #endif /* SIMULATOR */
1150 #endif /* IPOD_MINI2G */
1152 #ifdef IRIVER_IFP7XX
1153 #ifndef SIMULATOR
1154 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1155 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1156 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1157 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1158 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1159 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1160 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1161 #ifndef BOOTLOADER
1162 target/arm/pnx0101/pcm-pnx0101.c
1163 #endif /* BOOTLOADER */
1164 #endif /* SIMULATOR */
1165 #endif /* IRIVER_IFP7XX */
1167 #ifdef LOGIK_DAX
1168 #ifndef SIMULATOR
1169 drivers/nand_id.c
1170 target/arm/lcd-ssd1815.c
1171 target/arm/tcc77x/adc-tcc77x.c
1172 target/arm/tcc77x/kernel-tcc77x.c
1173 target/arm/tcc77x/powermgmt-tcc77x.c
1174 target/arm/tcc77x/system-tcc77x.c
1175 target/arm/tcc77x/timer-tcc77x.c
1176 target/arm/usb-tcc.c
1177 target/arm/tcc77x/logikdax/button-logikdax.c
1178 target/arm/tcc77x/logikdax/power-logikdax.c
1179 #ifndef BOOTLOADER
1180 target/arm/wmcodec-telechips.c
1181 target/arm/tcc77x/debug-tcc77x.c
1182 target/arm/pcm-telechips.c
1183 target/arm/tcc77x/logikdax/audio-logikdax.c
1184 #endif /* BOOTLOADER */
1185 #endif /* SIMULATOR */
1186 #endif /* LOGIK_DAX */
1188 #ifdef SANSA_M200
1189 #ifndef SIMULATOR
1190 drivers/nand_id.c
1191 target/arm/lcd-ssd1815.c
1192 target/arm/tcc77x/adc-tcc77x.c
1193 target/arm/tcc77x/kernel-tcc77x.c
1194 target/arm/tcc77x/powermgmt-tcc77x.c
1195 target/arm/tcc77x/system-tcc77x.c
1196 target/arm/tcc77x/timer-tcc77x.c
1197 target/arm/usb-tcc.c
1198 target/arm/tcc77x/m200/button-m200.c
1199 target/arm/tcc77x/m200/power-m200.c
1200 #ifndef BOOTLOADER
1201 target/arm/wmcodec-telechips.c
1202 target/arm/tcc77x/debug-tcc77x.c
1203 target/arm/pcm-telechips.c
1204 target/arm/tcc77x/m200/audio-m200.c
1205 #endif /* BOOTLOADER */
1206 #endif /* SIMULATOR */
1207 #endif /* SANSA_M200 */
1209 #ifdef SANSA_C100
1210 #ifndef SIMULATOR
1211 drivers/nand_id.c
1212 target/arm/usb-tcc.c
1213 target/arm/tcc77x/system-tcc77x.c
1214 target/arm/tcc77x/kernel-tcc77x.c
1215 target/arm/tcc77x/timer-tcc77x.c
1216 target/arm/tcc77x/adc-tcc77x.c
1217 target/arm/tcc77x/powermgmt-tcc77x.c
1218 target/arm/tcc77x/c100/lcd-S6B33B2.c
1219 target/arm/tcc77x/c100/button-c100.c
1220 target/arm/tcc77x/c100/power-c100.c
1221 #ifndef BOOTLOADER
1222 target/arm/tcc77x/debug-tcc77x.c
1223 target/arm/pcm-telechips.c
1224 target/arm/tcc77x/c100/audio-c100.c
1225 #endif /* BOOTLOADER */
1226 #endif /* SIMULATOR */
1227 #endif /* SANSA_C100 */
1229 #ifdef SANSA_CLIPPLUS
1230 #ifndef SIMULATOR
1231 target/arm/as3525/lcd-ssd1303.c
1232 target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
1233 target/arm/as3525/sansa-clipplus/button-clip.c
1234 target/arm/as3525/sansa-clipplus/backlight-clip.c
1235 #ifndef BOOTLOADER
1236 target/arm/powermgmt-ascodec.c
1237 target/arm/as3525/sansa-clip/powermgmt-clip.c
1238 target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
1239 #endif /* !BOOTLOADER */
1240 #endif /* !SIMULATOR */
1241 #endif /* SANSA_CLIPPLUS */
1243 #ifdef SANSA_CLIPV2
1244 #ifndef SIMULATOR
1245 target/arm/as3525/lcd-ssd1303.c
1246 target/arm/as3525/sansa-clipv2/lcd-clipv2.c
1247 target/arm/as3525/sansa-clipv2/button-clip.c
1248 target/arm/as3525/sansa-clipv2/backlight-clipv2.c
1249 #ifndef BOOTLOADER
1250 target/arm/powermgmt-ascodec.c
1251 target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
1252 target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
1253 #endif /* !BOOTLOADER */
1254 #endif /* !SIMULATOR */
1255 #endif /* SANSA_CLIPV2 */
1257 #ifdef SANSA_CLIP
1258 #ifndef SIMULATOR
1259 target/arm/as3525/lcd-ssd1303.c
1260 target/arm/as3525/sansa-clip/lcd-clip.c
1261 target/arm/as3525/sansa-clip/button-clip.c
1262 target/arm/as3525/sansa-clip/backlight-clip.c
1263 #ifndef BOOTLOADER
1264 target/arm/powermgmt-ascodec.c
1265 target/arm/as3525/sansa-clip/powermgmt-clip.c
1266 target/arm/as3525/sansa-clip/lcd-as-clip.S
1267 #endif /* !BOOTLOADER */
1268 #endif /* !SIMULATOR */
1269 #endif /* SANSA_CLIP */
1271 #ifdef SANSA_E200V2
1272 #ifndef SIMULATOR
1273 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1274 target/arm/as3525/button-e200v2-fuze.c
1275 target/arm/as3525/backlight-e200v2-fuze.c
1276 target/arm/as3525/dbop-as3525.c
1277 #ifndef BOOTLOADER
1278 target/arm/powermgmt-ascodec.c
1279 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1280 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1281 #endif /* !BOOTLOADER */
1282 #endif /* !SIMULATOR */
1283 #endif /* SANSA_E200V2 */
1285 #ifdef SANSA_C200V2
1286 #ifndef SIMULATOR
1287 target/arm/lcd-c200_c200v2.c
1288 target/arm/as3525/sansa-c200v2/button-c200v2.c
1289 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1290 target/arm/as3525/dbop-as3525.c
1291 #ifndef BOOTLOADER
1292 target/arm/powermgmt-ascodec.c
1293 target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
1294 #endif /* !BOOTLOADER */
1295 #endif /* !SIMULATOR */
1296 #endif /* SANSA_E200V2 */
1298 #ifdef SANSA_M200V4
1299 #ifndef SIMULATOR
1300 target/arm/lcd-ssd1815.c
1301 target/arm/as3525/sansa-m200v4/button-m200v4.c
1302 #ifndef BOOTLOADER
1303 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1304 #endif /* !BOOTLOADER */
1305 #endif /* !SIMULATOR */
1306 #endif /* SANSA_M200V4 */
1308 #ifdef SANSA_FUZE
1309 #ifndef SIMULATOR
1310 target/arm/as3525/button-e200v2-fuze.c
1311 target/arm/as3525/sansa-fuze/lcd-fuze.c
1312 target/arm/as3525/backlight-e200v2-fuze.c
1313 target/arm/as3525/dbop-as3525.c
1314 #ifndef BOOTLOADER
1315 target/arm/powermgmt-ascodec.c
1316 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1317 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1318 #endif /* !BOOTLOADER */
1319 #endif /* !SIMULATOR */
1320 #endif /* SANSA_FUZE */
1322 #ifdef SANSA_FUZEV2
1323 #ifndef SIMULATOR
1324 target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
1325 target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
1326 target/arm/as3525/sansa-fuzev2/button-fuzev2.c
1327 target/arm/as3525/dbop-as3525.c
1328 #ifndef BOOTLOADER
1329 target/arm/powermgmt-ascodec.c
1330 target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
1331 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1332 #endif /* !BOOTLOADER */
1333 #endif /* !SIMULATOR */
1334 #endif /* SANSA_FUZEV2 */
1336 #ifdef IAUDIO_7
1337 #ifndef SIMULATOR
1338 drivers/nand_id.c
1339 drivers/pcf50606.c
1340 target/arm/usb-tcc.c
1341 target/arm/tcc77x/system-tcc77x.c
1342 target/arm/tcc77x/kernel-tcc77x.c
1343 target/arm/tcc77x/timer-tcc77x.c
1344 target/arm/tcc77x/adc-tcc77x.c
1345 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1346 target/arm/tcc77x/iaudio7/power-iaudio7.c
1347 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1348 target/arm/tcc77x/iaudio7/button-iaudio7.c
1349 target/arm/tcc77x/iaudio7/ata2501.c
1350 #ifndef BOOTLOADER
1351 target/arm/wmcodec-telechips.c
1352 target/arm/pcm-telechips.c
1353 target/arm/tcc77x/debug-tcc77x.c
1354 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1355 #endif /* BOOTLOADER */
1356 #endif /* SIMULATOR */
1357 #endif /* IAUDIO_7 */
1359 #ifdef COWON_D2
1360 #ifndef SIMULATOR
1361 drivers/nand_id.c
1362 drivers/pcf50606.c
1363 drivers/pcf50635.c
1364 drivers/tsc200x.c
1365 target/arm/lcd-as-memframe.S
1366 target/arm/tcc780x/adc-tcc780x.c
1367 target/arm/tcc780x/system-tcc780x.c
1368 target/arm/tcc780x/kernel-tcc780x.c
1369 target/arm/tcc780x/sd-tcc780x.c
1370 target/arm/tcc780x/cowond2/button-cowond2.c
1371 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1372 target/arm/tcc780x/cowond2/lcd-cowond2.c
1373 target/arm/tcc780x/cowond2/power-cowond2.c
1374 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1375 target/arm/tcc780x/cowond2/backlight-cowond2.c
1376 target/arm/usb-tcc.c
1377 target/arm/mmu-arm.S
1378 #ifndef BOOTLOADER
1379 target/arm/tcc780x/timer-tcc780x.c
1380 target/arm/wmcodec-telechips.c
1381 target/arm/tcc780x/debug-tcc780x.c
1382 target/arm/pcm-telechips.c
1383 target/arm/tcc780x/cowond2/audio-cowond2.c
1384 #endif /* BOOTLOADER */
1385 #endif /* SIMULATOR */
1386 #endif /* COWON_D2 */
1388 #ifdef CPU_S5L870X
1389 target/arm/s5l8700/system-s5l8700.c
1390 target/arm/mmu-arm.S
1391 #ifndef SIMULATOR
1392 #ifndef BOOTLOADER
1393 target/arm/s5l8700/timer-s5l8700.c
1394 #endif /* BOOTLOADER */
1395 #endif /* SIMULATOR */
1396 #endif
1398 #ifdef MEIZU_M6SL
1399 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1400 drivers/qt1106.c
1401 #ifndef SIMULATOR
1402 #ifndef BOOTLOADER
1403 #endif /* BOOTLOADER */
1404 #endif /* SIMULATOR */
1405 #endif /* MEIZU_M6SL */
1407 #ifdef MEIZU_M6SP
1408 target/arm/s5l8700/backlight-meizu.c
1409 target/arm/s5l8700/power-meizu.c
1410 target/arm/s5l8700/kernel-s5l8700.c
1411 target/arm/s5l8700/meizu-m6sp/button-m6sp.c
1412 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1413 #ifndef SIMULATOR
1414 #ifndef BOOTLOADER
1415 drivers/generic_i2c.c
1416 drivers/rtc/rtc_s35390a.c
1417 target/arm/s5l8700/adc-s5l8700.c
1418 target/arm/s5l8700/audio-meizu.c
1419 target/arm/s5l8700/debug-s5l8700.c
1420 target/arm/s5l8700/dma-s5l8700.c
1421 target/arm/s5l8700/ftl-meizu.c
1422 target/arm/s5l8700/nand-meizu.c
1423 target/arm/s5l8700/fmradio-i2c-meizu.c
1424 target/arm/s5l8700/pcm-s5l8700.c
1425 target/arm/s5l8700/powermgmt-meizu.c
1426 target/arm/s5l8700/usb-s5l8700.c
1427 target/arm/s5l8700/wmcodec-s5l8700.c
1428 #endif /* BOOTLOADER */
1429 #endif /* SIMULATOR */
1430 #endif /* MEIZU_M6SP */
1432 #ifdef MEIZU_M3
1433 target/arm/s5l8700/backlight-meizu.c
1434 target/arm/s5l8700/kernel-s5l8700.c
1435 target/arm/s5l8700/meizu-m3/lcd-m3.c
1436 drivers/qt1106.c
1437 #ifndef SIMULATOR
1438 #ifndef BOOTLOADER
1439 target/arm/s5l8700/dma-s5l8700.c
1440 target/arm/s5l8700/pcm-s5l8700.c
1441 target/arm/s5l8700/udacodec-meizu.c
1442 #endif /* BOOTLOADER */
1443 #endif /* SIMULATOR */
1444 #endif /* MEIZU_M3 */
1446 #ifdef IPOD_NANO2G
1447 #ifndef SIMULATOR
1448 target/arm/ipod/button-clickwheel.c
1449 target/arm/s5l8700/kernel-s5l8700.c
1450 target/arm/s5l8700/dma-s5l8700.c
1451 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1452 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1453 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1454 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1455 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1456 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1457 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1458 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1459 #ifndef BOOTLOADER
1460 drivers/audio/wm8975.c
1461 target/arm/usb-s3c6400x.c
1462 target/arm/s5l8700/debug-s5l8700.c
1463 target/arm/s5l8700/pcm-s5l8700.c
1464 target/arm/s5l8700/wmcodec-s5l8700.c
1465 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1466 target/arm/s5l8700/ipodnano2g/adc-nano2g.c
1467 #endif
1468 #endif
1469 #endif
1471 #ifndef SIMULATOR
1472 #if CONFIG_CPU == JZ4732
1473 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1474 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1475 target/mips/ingenic_jz47xx/debug-jz4740.c
1476 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1477 target/mips/ingenic_jz47xx/kernel-jz4740.c
1478 target/mips/ingenic_jz47xx/i2c-jz4740.c
1479 target/mips/ingenic_jz47xx/lcd-jz4740.c
1480 target/mips/ingenic_jz47xx/system-jz4740.c
1481 target/mips/ingenic_jz47xx/usb-jz4740.c
1482 target/mips/ingenic_jz47xx/timer-jz4740.c
1483 #ifndef BOOTLOADER
1484 target/mips/ingenic_jz47xx/codec-jz4740.c
1485 target/mips/ingenic_jz47xx/pcm-jz4740.c
1486 #endif /* BOOTLOADER */
1487 drivers/nand_id.c
1488 #endif /* CONFIG_CPU == JZ4732 */
1490 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1491 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1492 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1493 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1494 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1495 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1496 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1498 #ifdef ONDA_VX767
1499 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1500 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1501 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1502 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1503 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1504 #endif /* ONDA_VX767 */
1506 #if defined(LYRE_PROTO1)
1507 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1508 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1509 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1510 target/arm/at91sam/lyre_proto1/crt0.S
1511 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1512 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1513 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1514 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1515 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1516 #endif
1517 #endif /* SIMULATOR */
1519 #if defined(MINI2440)
1520 #ifndef SIMULATOR
1521 target/arm/lcd-as-memframe.S
1522 target/arm/mmu-arm.S
1523 target/arm/s3c2440/debug-s3c2440.c
1524 target/arm/s3c2440/dma-s3c2440.c
1525 target/arm/s3c2440/kernel-s3c2440.c
1526 target/arm/s3c2440/lcd-s3c2440.c
1527 target/arm/s3c2440/sd-s3c2440.c
1528 target/arm/s3c2440/system-s3c2440.c
1529 target/arm/s3c2440/uart-s3c2440.c
1530 target/arm/s3c2440/adc-s3c2440.c
1531 target/arm/s3c2440/i2c-s3c2440.c
1532 target/arm/s3c2440/mini2440/backlight-mini2440.c
1533 target/arm/s3c2440/mini2440/button-mini2440.c
1534 target/arm/s3c2440/mini2440/led-mini2440.c
1535 target/arm/s3c2440/mini2440/power-mini2440.c
1536 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1537 #ifndef BOOTLOADER
1538 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1539 target/arm/s3c2440/mini2440/pcm-mini2440.c
1540 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
1541 #endif
1542 #endif /* SIMULATOR */
1543 #endif /* MINI2440 */
1545 #ifdef SAMSUNG_YH820
1546 #ifndef SIMULATOR
1547 target/arm/ata-as-arm.S
1548 target/arm/ata-pp5020.c
1549 target/arm/adc-pp5020.c
1550 target/arm/i2s-pp.c
1551 target/arm/usb-fw-pp502x.c
1552 target/arm/samsung/akcodec-yh82x_yh92x.c
1553 target/arm/samsung/button-yh82x_yh92x.c
1554 target/arm/samsung/power-yh82x_yh92x.c
1555 target/arm/samsung/yh820/backlight-yh820.c
1556 target/arm/samsung/yh820/lcd-yh820.c
1557 target/arm/samsung/yh820/lcd-as-yh820.S
1558 target/arm/samsung/yh820/powermgmt-yh820.c
1559 #endif /* SIMULATOR */
1560 #endif /* SAMSUNG_YH820 */
1562 #ifdef SAMSUNG_YH920
1563 #ifndef SIMULATOR
1564 target/arm/ata-as-arm.S
1565 target/arm/ata-pp5020.c
1566 target/arm/adc-pp5020.c
1567 target/arm/i2s-pp.c
1568 target/arm/usb-fw-pp502x.c
1569 target/arm/samsung/akcodec-yh82x_yh92x.c
1570 target/arm/samsung/button-yh82x_yh92x.c
1571 target/arm/samsung/power-yh82x_yh92x.c
1572 target/arm/samsung/yh920/backlight-yh920.c
1573 target/arm/samsung/yh920/lcd-yh920.c
1574 target/arm/samsung/yh920/lcd-as-yh920.S
1575 target/arm/samsung/yh920/powermgmt-yh920.c
1576 #endif /* SIMULATOR */
1577 #endif /* SAMSUNG_YH920 */
1579 #ifdef SAMSUNG_YH925
1580 #ifndef SIMULATOR
1581 target/arm/ata-as-arm.S
1582 target/arm/ata-pp5020.c
1583 target/arm/adc-pp5020.c
1584 target/arm/i2s-pp.c
1585 target/arm/usb-fw-pp502x.c
1586 target/arm/samsung/akcodec-yh82x_yh92x.c
1587 target/arm/samsung/button-yh82x_yh92x.c
1588 target/arm/samsung/power-yh82x_yh92x.c
1589 target/arm/samsung/yh925/backlight-yh925.c
1590 target/arm/samsung/yh925/lcd-yh925.c
1591 target/arm/samsung/yh925/lcd-as-yh925.S
1592 target/arm/samsung/yh925/powermgmt-yh925.c
1593 #endif /* SIMULATOR */
1594 #endif /* SAMSUNG_YH925 */
1596 #ifdef SAMSUNG_YPS3
1597 /* TODO: currently including all files for the bootloader DFU test program */
1598 target/arm/s5l8700/adc-s5l8700.c
1599 target/arm/s5l8700/i2c-s5l8700.c
1600 target/arm/s5l8700/kernel-s5l8700.c
1601 target/arm/s5l8700/timer-s5l8700.c
1602 target/arm/s5l8700/wmcodec-s5l8700.c
1603 target/arm/s5l8700/yps3/button-yps3.c
1604 target/arm/s5l8700/yps3/lcd-yps3.c
1605 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1606 target/arm/s5l8700/yps3/backlight-yps3.c
1607 target/arm/s5l8700/yps3/nand-yps3.c
1608 target/arm/s5l8700/yps3/power-yps3.c
1609 #endif /* SAMSUNG_YPS3 */
1611 #ifdef PBELL_VIBE500
1612 #ifndef SIMULATOR
1613 drivers/synaptics-mep.c
1614 target/arm/ata-as-arm.S
1615 target/arm/ata-pp5020.c
1616 target/arm/wmcodec-pp.c
1617 target/arm/i2s-pp.c
1618 target/arm/adc-pp5020.c
1619 target/arm/pbell/vibe500/lcd-vibe500.c
1620 target/arm/pbell/vibe500/button-vibe500.c
1621 target/arm/pbell/vibe500/power-vibe500.c
1622 target/arm/pbell/vibe500/backlight-vibe500.c
1623 target/arm/pbell/vibe500/lcd-as-vibe500.S
1624 target/arm/pbell/vibe500/powermgmt-vibe500.c
1625 target/arm/usb-fw-pp502x.c
1626 #endif /* SIMULATOR */
1627 #endif
1629 #ifdef MPIO_HD200
1630 #ifndef SIMULATOR
1631 /* TODO: currently including all files */
1632 target/coldfire/mpio/hd200/adc-hd200.c
1633 target/coldfire/mpio/hd200/button-hd200.c
1634 target/coldfire/mpio/hd200/lcd-hd200.c
1635 target/coldfire/mpio/hd200/lcd-as-hd200.S
1636 target/coldfire/mpio/hd200/power-hd200.c
1637 target/coldfire/mpio/hd200/powermgmt-hd200.c
1638 target/coldfire/mpio/hd200/backlight-hd200.c
1639 target/coldfire/mpio/hd200/system-hd200.c
1640 target/coldfire/mpio/hd200/usb-hd200.c
1641 target/coldfire/mpio/ata-mpio.c
1642 target/coldfire/mpio/ata-as-mpio.S
1643 #ifndef BOOTLOADER
1644 target/coldfire/mpio/audio-mpio.c
1645 target/coldfire/wmcodec-coldfire.c
1646 target/coldfire/mpio/fmradio_i2c-mpio.c
1647 #endif /* BOOTLOADER */
1648 #endif /* SIMULATOR */
1649 #endif