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