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