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