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