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