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