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