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