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