rolo is only needed in SH bootloaders, not other bootloaders
[kugel-rb.git] / firmware / SOURCES
blob4d456d287395311bc6f375e58b9e1c0d4c8388ba
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/kernel-as3525.c
445 target/arm/as3525/timer-as3525.c
446 #if CONFIG_CPU == AS3525
447 target/arm/as3525/sd-as3525.c
448 #ifdef HAVE_SCROLLWHEEL
449 target/arm/as3525/scrollwheel-as3525.c
450 #endif /* HAVE_SCROLLWHEEL */
451 #else /* AS3535v2 */
452 target/arm/as3525/sd-as3525v2.c
453 #endif
454 target/arm/as3525/power-as3525.c
455 target/arm/as3525/usb-as3525.c
456 target/arm/as3525/dma-pl081.c
457 target/arm/as3525/ascodec-as3525.c
458 #ifndef BOOTLOADER
459 target/arm/mmu-arm.S
460 drivers/generic_i2c.c
461 target/arm/adc-as3514.c
462 target/arm/as3525/audio-as3525.c
463 target/arm/as3525/debug-as3525.c
464 #if CONFIG_TUNER
465 target/arm/as3525/fmradio-i2c-as3525.c
466 #endif /* CONFIG_TUNER */
467 target/arm/as3525/i2s-as3525.c
468 target/arm/as3525/pcm-as3525.c
469 #endif /* BOOTLOADER */
470 #endif /* CONFIG_CPU == AS3525 */
472 #if defined(CPU_PP)
473 target/arm/kernel-pp.c
474 target/arm/timer-pp.c
475 #if CONFIG_CPU == PP5002
476 target/arm/system-pp5002.c
477 #elif defined CPU_PP502x
478 target/arm/system-pp502x.c
479 #endif
480 #ifdef BOOTLOADER
481 target/arm/crt0-pp-bl.S
482 #else
483 target/arm/pcm-pp.c
484 #if !defined(SANSA_E200) && !defined(SANSA_C200)
485 target/arm/audio-pp.c
486 #endif /* SANSA_E200 */
487 target/arm/crt0-pp.S
488 #endif
489 #elif CONFIG_CPU == PNX0101
490 target/arm/pnx0101/crt0-pnx0101.S
491 #elif CONFIG_CPU==DM320
492 target/arm/tms320dm320/crt0.S
493 #elif CONFIG_CPU==S3C2440
494 target/arm/s3c2440/crt0.S
495 #elif defined(CPU_TCC77X)
496 target/arm/tcc77x/crt0.S
497 #elif defined(CPU_TCC780X)
498 target/arm/tcc780x/crt0.S
499 #elif CONFIG_CPU==IMX31L
500 target/arm/imx31/crt0.S
501 #elif defined(CPU_S5L870X)
502 target/arm/s5l8700/crt0.S
503 #elif defined(CPU_ARM)
504 target/arm/crt0.S
505 #endif /* defined(CPU_*) */
506 #endif /* SIMULATOR */
508 #elif defined(CPU_MIPS)
509 #undef mips
510 /*target/mips/strlen.S*/
511 libc/memmove.c
512 common/memset16.c
513 libc/strlen.c
514 target/mips/ffs-mips.S
515 target/mips/memcpy-mips.S
516 target/mips/memset-mips.S
517 target/mips/mmu-mips.c
518 #if CONFIG_CPU==JZ4732
519 target/mips/ingenic_jz47xx/crt0.S
520 #endif /* CONFIG_CPU == JZ4732 */
522 #else
524 #ifdef HAVE_PRIORITY_SCHEDULING
525 common/ffs.c
526 #endif
527 libc/memcpy.c
528 libc/memmove.c
529 libc/memset.c
530 common/memset16.c
531 libc/strlen.c
532 #ifndef SIMULATOR
533 crt0.S
534 drivers/i2c.c
535 #endif /* SIMULATOR */
537 #endif /* defined(CPU_*) */
539 #ifdef ARCHOS_PLAYER
540 #ifndef SIMULATOR
541 target/sh/archos/ata-archos.c
542 target/sh/archos/timer-archos.c
543 target/sh/archos/ata-as-archos.S
544 target/sh/archos/player/button-player.c
545 target/sh/archos/player/hwcompat-player.c
546 target/sh/archos/player/lcd-as-player.S
547 target/sh/archos/player/lcd-player.c
548 target/sh/archos/player/power-player.c
549 target/sh/archos/player/powermgmt-player.c
550 target/sh/archos/player/usb-player.c
551 #endif /* SIMULATOR */
552 #endif /* ARCHOS_PLAYER */
554 #ifdef ARCHOS_RECORDER
555 #ifndef SIMULATOR
556 target/sh/archos/ata-archos.c
557 target/sh/archos/timer-archos.c
558 target/sh/archos/ata-as-archos.S
559 target/sh/archos/lcd-archos-bitmap.c
560 target/sh/archos/lcd-as-archos-bitmap.S   
561 target/sh/archos/recorder/button-recorder.c
562 target/sh/archos/recorder/power-recorder.c
563 target/sh/archos/recorder/powermgmt-recorder.c
564 target/sh/archos/recorder/usb-recorder.c
565 #endif /* SIMULATOR */
566 #endif /* ARCHOS_RECORDER */
568 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
569 #ifndef SIMULATOR
570 target/sh/archos/ata-archos.c
571 target/sh/archos/timer-archos.c
572 target/sh/archos/ata-as-archos.S
573 target/sh/archos/lcd-archos-bitmap.c
574 target/sh/archos/lcd-as-archos-bitmap.S
575 target/sh/archos/fm_v2/button-fm_v2.c
576 target/sh/archos/fm_v2/power-fm_v2.c
577 target/sh/archos/fm_v2/powermgmt-fm_v2.c
578 target/sh/archos/fm_v2/usb-fm_v2.c
579 #endif /* SIMULATOR */
580 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
582 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
583 #ifndef SIMULATOR
584 target/sh/archos/timer-archos.c
585 target/sh/archos/lcd-archos-bitmap.c
586 target/sh/archos/lcd-as-archos-bitmap.S
587 target/sh/archos/ondio/button-ondio.c
588 target/sh/archos/ondio/power-ondio.c
589 target/sh/archos/ondio/powermgmt-ondio.c
590 target/sh/archos/ondio/usb-ondio.c
591 #if (CONFIG_TUNER & TEA5767)
592 target/sh/archos/ondio/fmradio_i2c-ondio.c
593 #endif
594 #endif /* SIMULATOR */
595 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
597 #ifdef SANSA_E200
598 #ifndef SIMULATOR
599 target/arm/adc-as3514.c
600 target/arm/ascodec-pp.c
601 target/arm/ata-sd-pp.c
602 target/arm/lcd-as-memframe.S
603 target/arm/powermgmt-ascodec.c
604 target/arm/i2s-pp.c
605 target/arm/usb-fw-pp502x.c
606 target/arm/sandisk/backlight-c200_e200.c
607 target/arm/sandisk/power-c200_e200.c
608 target/arm/sandisk/sansa-e200/lcd-e200.c
609 target/arm/sandisk/sansa-e200/button-e200.c
610 target/arm/sandisk/sansa-e200/powermgmt-e200.c
611 #ifndef BOOTLOADER
612 target/arm/sandisk/audio-c200_e200.c
613 #endif /* BOOTLOADER */
614 #endif /* SIMULATOR */
615 #endif /* SANSA_E200 */
617 #ifdef SANSA_C200
618 #ifndef SIMULATOR
619 target/arm/adc-as3514.c
620 target/arm/ascodec-pp.c
621 target/arm/ata-sd-pp.c
622 target/arm/i2s-pp.c
623 target/arm/powermgmt-ascodec.c
624 target/arm/usb-fw-pp502x.c
625 target/arm/sandisk/backlight-c200_e200.c
626 target/arm/sandisk/power-c200_e200.c
627 target/arm/lcd-c200_c200v2.c
628 target/arm/sandisk/sansa-c200/lcd-as-c200.S
629 target/arm/sandisk/sansa-c200/button-c200.c
630 target/arm/sandisk/sansa-c200/powermgmt-c200.c
631 #ifndef BOOTLOADER
632 target/arm/sandisk/audio-c200_e200.c
633 #endif /* BOOTLOADER */
634 #endif /* SIMULATOR */
635 #endif /* SANSA_C200 */
637 #ifdef SANSA_VIEW
638 #ifndef SIMULATOR
639 /* target/arm/ascodec-pp.c */
640 target/arm/ata-sd-pp.c
641 target/arm/lcd-as-memframe.S
642 target/arm/i2s-pp.c
643 /* target/arm/usb-fw-pp502x.c */
644 target/arm/sandisk/sansa-view/backlight-view.c
645 target/arm/sandisk/sansa-view/adc-view.c
646 target/arm/sandisk/sansa-view/power-view.c
647 target/arm/sandisk/sansa-view/lcd-view.c
648 target/arm/sandisk/sansa-view/button-view.c
649 target/arm/sandisk/sansa-view/powermgmt-view.c
650 #ifndef BOOTLOADER
651 /* target/arm/sandisk/audio-view.c */
652 #endif /* BOOTLOADER */
653 #endif /* SIMULATOR */
654 #endif /* SANSA_VIEW */
656 #ifdef PHILIPS_SA9200
657 #ifndef SIMULATOR
658 #ifndef BOOTLOADER
659 drivers/synaptics-mep.c
660 #endif /* BOOTLOADER */
661 target/arm/adc-as3514.c
662 target/arm/ascodec-pp.c
663 target/arm/ata-sd-pp.c
664 target/arm/i2s-pp.c
665 target/arm/powermgmt-ascodec.c
666 target/arm/usb-fw-pp502x.c
667 target/arm/philips/sa9200/backlight-sa9200.c
668 target/arm/philips/sa9200/button-sa9200.c
669 target/arm/philips/sa9200/lcd-sa9200.c
670 target/arm/philips/sa9200/power-sa9200.c
671 target/arm/philips/sa9200/powermgmt-sa9200.c
672 #endif /* SIMULATOR */
673 #endif /* PHILIPS_SA9200 */
675 #ifdef PHILIPS_HDD1630
676 #ifndef SIMULATOR
677 #ifndef BOOTLOADER
678 drivers/synaptics-mep.c
679 #endif /* BOOTLOADER */
680 target/arm/ata-as-arm.S
681 target/arm/ata-pp5020.c
682 target/arm/wmcodec-pp.c
683 target/arm/i2s-pp.c
684 target/arm/adc-pp5020.c
685 target/arm/philips/backlight-hdd.c
686 target/arm/philips/power-hdd.c
687 target/arm/philips/fmradio_i2c-hdd.c
688 target/arm/philips/hdd1630/button-hdd1630.c
689 target/arm/philips/hdd1630/lcd-hdd1630.c
690 target/arm/philips/hdd1630/lcd-as-hdd1630.S
691 target/arm/philips/hdd1630/powermgmt-hdd1630.c
692 target/arm/usb-fw-pp502x.c
693 #endif /* SIMULATOR */
694 #endif /* PHILIPS_HDD1630 */
696 #ifdef PHILIPS_HDD6330
697 #ifndef SIMULATOR
698 #ifndef BOOTLOADER
699 drivers/synaptics-mep.c
700 #endif /* BOOTLOADER */
701 target/arm/ata-as-arm.S
702 target/arm/ata-pp5020.c
703 target/arm/wmcodec-pp.c
704 target/arm/i2s-pp.c
705 target/arm/adc-pp5020.c
706 target/arm/philips/backlight-hdd.c
707 target/arm/philips/power-hdd.c
708 target/arm/philips/fmradio_i2c-hdd.c
709 target/arm/philips/hdd6330/button-hdd6330.c
710 target/arm/philips/hdd6330/lcd-hdd6330.c
711 target/arm/philips/hdd6330/powermgmt-hdd6330.c
712 target/arm/usb-fw-pp502x.c
713 #endif /* SIMULATOR */
714 #endif /* PHILIPS_HDD6330 */
716 #ifdef IAUDIO_X5
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 target/coldfire/iaudio/fmradio_i2c-iaudio.c
723 target/coldfire/iaudio/lcd-remote-as-iaudio.S
724 target/coldfire/iaudio/lcd-remote-iaudio.c
725 target/coldfire/iaudio/pcf50606-iaudio.c
726 target/coldfire/iaudio/power-x5m5.c
727 target/coldfire/iaudio/powermgmt-iaudio.c
728 target/coldfire/iaudio/system-iaudio.c
729 target/coldfire/iaudio/usb-iaudio.c
730 target/coldfire/iaudio/x5/backlight-x5.c
731 target/coldfire/iaudio/x5/button-x5.c
732 target/coldfire/iaudio/x5/ds2411-x5.c
733 target/coldfire/iaudio/x5/lcd-as-x5.S
734 target/coldfire/iaudio/x5/lcd-x5.c
735 target/coldfire/iaudio/x5/m5636-x5.c
736 #ifndef BOOTLOADER
737 target/coldfire/iaudio/audio-iaudio.c
738 #endif
739 #endif /* SIMULATOR */
740 #endif /* IAUDIO_X5 */
742 #ifdef IAUDIO_M5
743 #ifndef SIMULATOR
744 target/coldfire/ata-as-coldfire.S
745 target/coldfire/pcf50606-coldfire.c
746 target/coldfire/iaudio/adc-iaudio.c
747 target/coldfire/iaudio/ata-iaudio.c
748 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
749 target/coldfire/iaudio/fmradio_i2c-iaudio.c
750 #endif
751 target/coldfire/iaudio/lcd-remote-as-iaudio.S
752 target/coldfire/iaudio/lcd-remote-iaudio.c
753 target/coldfire/iaudio/m5/backlight-m5.c
754 target/coldfire/iaudio/m5/button-m5.c
755 target/coldfire/iaudio/m5/lcd-as-m5.S
756 target/coldfire/iaudio/m5/lcd-m5.c
757 target/coldfire/iaudio/pcf50606-iaudio.c
758 target/coldfire/iaudio/power-x5m5.c
759 target/coldfire/iaudio/powermgmt-iaudio.c
760 target/coldfire/iaudio/system-iaudio.c
761 target/coldfire/iaudio/usb-iaudio.c
762 #ifndef BOOTLOADER
763 target/coldfire/iaudio/audio-iaudio.c
764 #endif
765 #endif /* SIMULATOR */
766 #endif /* IAUDIO_M5 */
768 #ifdef IAUDIO_M3
769 #ifndef SIMULATOR
770 target/coldfire/ata-as-coldfire.S
771 target/coldfire/iaudio/fmradio_i2c-iaudio.c
772 target/coldfire/iaudio/m3/adc-m3.c
773 target/coldfire/iaudio/m3/ata-m3.c
774 target/coldfire/iaudio/m3/backlight-m3.c
775 target/coldfire/iaudio/m3/button-m3.c
776 target/coldfire/iaudio/m3/lcd-m3.c
777 target/coldfire/iaudio/m3/lcd-as-m3.S
778 target/coldfire/iaudio/m3/power-m3.c
779 target/coldfire/iaudio/m3/powermgmt-m3.c
780 target/coldfire/iaudio/m3/system-m3.c
781 target/coldfire/iaudio/m3/usb-m3.c
782 #ifndef BOOTLOADER
783 target/coldfire/iaudio/audio-iaudio.c
784 #endif
785 #endif /* SIMULATOR */
786 #endif /* IAUDIO_M3 */
788 #ifdef IRIVER_IFP7XX_SERIES
789 #ifdef STUB
790 ifp_usb_serial.c
791 libc/sscanf.c
792 #endif /* STUB */
793 #endif /* IRIVER_IFP7XX_SERIES */
795 #ifdef IRIVER_H300_SERIES
796 #ifndef SIMULATOR
797 target/coldfire/ata-as-coldfire.S
798 target/coldfire/pcf50606-coldfire.c
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/h300/sw_i2c-h300.c
805 target/coldfire/iriver/h300/adc-h300.c
806 target/coldfire/iriver/h300/backlight-h300.c
807 target/coldfire/iriver/h300/button-h300.c
808 target/coldfire/iriver/h300/pcf50606-h300.c
809 target/coldfire/iriver/h300/lcd-as-h300.S
810 target/coldfire/iriver/h300/lcd-h300.c
811 target/coldfire/iriver/h300/power-h300.c
812 target/coldfire/iriver/h300/powermgmt-h300.c
813 target/coldfire/iriver/h300/usb-h300.c
814 #ifndef BOOTLOADER
815 target/coldfire/iriver/audio-iriver.c
816 target/coldfire/iriver/udacodec-iriver.c
817 #endif
818 #endif /* SIMULATOR */
819 #endif /* IRIVER_H300_SERIES */
821 #ifdef IRIVER_H100_SERIES
822 #ifndef SIMULATOR
823 drivers/sw_i2c.c
824 target/coldfire/ata-as-coldfire.S
825 target/coldfire/iriver/ata-iriver.c
826 target/coldfire/iriver/lcd-remote-iriver.c
827 target/coldfire/iriver/lcd-remote-as-iriver.S
828 target/coldfire/iriver/system-iriver.c
829 target/coldfire/iriver/fmradio_i2c-iriver.c
830 target/coldfire/iriver/h100/adc-h100.c
831 target/coldfire/iriver/h100/backlight-h100.c
832 target/coldfire/iriver/h100/button-h100.c
833 target/coldfire/iriver/h100/lcd-as-h100.S
834 target/coldfire/iriver/h100/lcd-h100.c
835 target/coldfire/iriver/h100/power-h100.c
836 target/coldfire/iriver/h100/powermgmt-h100.c
837 #ifndef BOOTLOADER
838 target/coldfire/iriver/audio-iriver.c
839 target/coldfire/iriver/udacodec-iriver.c
840 target/coldfire/iriver/h100/spdif-h100.c
841 #endif
842 target/coldfire/iriver/h100/usb-h100.c
843 #endif /* SIMULATOR */
844 #endif /* IRIVER_H100_SERIES */
846 #ifdef IRIVER_H10
847 #ifndef SIMULATOR
848 target/arm/ata-as-arm.S
849 target/arm/ata-pp5020.c
850 target/arm/wmcodec-pp.c
851 target/arm/i2s-pp.c
852 target/arm/adc-pp5020.c
853 target/arm/iriver/h10/backlight-h10.c
854 target/arm/iriver/h10/button-h10.c
855 target/arm/iriver/h10/fmradio_i2c-h10.c
856 target/arm/iriver/h10/lcd-h10_20gb.c
857 target/arm/iriver/h10/lcd-as-h10.S
858 target/arm/iriver/h10/power-h10.c
859 target/arm/iriver/h10/powermgmt-h10.c
860 target/arm/usb-fw-pp502x.c
861 #endif /* SIMULATOR */
862 #endif /* IRIVER_H10 */
864 #ifdef IRIVER_H10_5GB
865 #ifndef SIMULATOR
866 target/arm/ata-as-arm.S
867 target/arm/ata-pp5020.c
868 target/arm/wmcodec-pp.c
869 target/arm/i2s-pp.c
870 target/arm/adc-pp5020.c
871 target/arm/iriver/h10/backlight-h10.c
872 target/arm/iriver/h10/button-h10.c
873 target/arm/iriver/h10/fmradio_i2c-h10.c
874 target/arm/iriver/h10/lcd-h10_5gb.c
875 target/arm/iriver/h10/power-h10.c
876 target/arm/iriver/h10/powermgmt-h10.c
877 target/arm/usb-fw-pp502x.c
878 #endif /* SIMULATOR */
879 #endif /* IRIVER_H10_5GB */
881 #ifdef GIGABEAT_F
882 #ifndef SIMULATOR
883 target/arm/lcd-as-memframe.S
884 target/arm/mmu-arm.S
885 target/arm/s3c2440/adc-s3c2440.c
886 target/arm/s3c2440/debug-s3c2440.c
887 target/arm/s3c2440/kernel-s3c2440.c
888 target/arm/s3c2440/lcd-s3c2440.c
889 target/arm/s3c2440/system-s3c2440.c
890 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
891 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
892 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
893 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
894 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
895 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
896 #ifndef BOOTLOADER
897 target/arm/s3c2440/i2c-s3c2440.c
898 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
899 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
900 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
901 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
902 #endif
903 #endif /* SIMULATOR */
904 #endif /* GIGABEAT_F */
906 #ifdef GIGABEAT_S
907 #ifndef SIMULATOR
908 target/arm/lcd-as-memframe.S
909 target/arm/mmu-armv6.S
910 target/arm/imx31/ata-imx31.c
911 target/arm/imx31/avic-imx31.c
912 target/arm/imx31/ccm-imx31.c
913 target/arm/imx31/debug-imx31.c
914 target/arm/imx31/dvfs_dptc-imx31.c
915 target/arm/imx31/gpio-imx31.c
916 target/arm/imx31/i2c-imx31.c
917 target/arm/imx31/iomuxc-imx31.c
918 target/arm/imx31/mc13783-imx31.c
919 target/arm/imx31/mmu-imx31.c
920 target/arm/imx31/rolo_restart_firmware.S
921 target/arm/imx31/sdma-imx31.c
922 target/arm/imx31/spi-imx31.c
923 target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
924 target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
925 target/arm/imx31/gigabeat-s/button-gigabeat-s.c
926 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
927 target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
928 target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
929 target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
930 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
931 target/arm/imx31/gigabeat-s/power-gigabeat-s.c
932 target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
933 target/arm/imx31/gigabeat-s/system-gigabeat-s.c
934 target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
935 target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
936 #ifndef BOOTLOADER
937 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
938 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
939 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
940 target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
941 target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
942 #endif
943 #endif /* SIMULATOR */
944 #endif /* GIGABEAT_S */
946 #if CONFIG_CPU == DM320
947 target/arm/tms320dm320/debug-dm320.c
948 target/arm/tms320dm320/dsp-dm320.c
949 target/arm/tms320dm320/i2c-dm320.c
950 target/arm/tms320dm320/kernel-dm320.c
951 target/arm/tms320dm320/spi-dm320.c
952 target/arm/tms320dm320/system-dm320.c
953 target/arm/tms320dm320/timer-dm320.c
954 target/arm/tms320dm320/uart-dm320.c
955 #endif /* CONFIG_CPU == DM320 */
957 #ifdef MROBE_500
958 #ifndef SIMULATOR
959 target/arm/ata-as-arm.S
960 target/arm/lcd-as-memframe.S
961 target/arm/mmu-arm.S
962 target/arm/tms320dm320/mrobe-500/adc-mr500.c
963 target/arm/tms320dm320/mrobe-500/ata-mr500.c
964 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
965 target/arm/tms320dm320/mrobe-500/button-mr500.c
966 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
967 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
968 #if defined(HAVE_REMOTE_LCD)
969 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
970 #endif
971 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
972 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
973 target/arm/tms320dm320/mrobe-500/power-mr500.c
974 target/arm/tms320dm320/mrobe-500/usb-mr500.c
975 #endif /* SIMULATOR */
976 #endif /* MROBE_500 */
978 #ifdef CREATIVE_ZVx
979 #ifndef SIMULATOR
980 target/arm/ata-as-arm.S
981 target/arm/lcd-as-memframe.S
982 target/arm/mmu-arm.S
983 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
984 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
985 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
986 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
987 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
988 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
989 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
990 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
991 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
992 #endif /* SIMULATOR */
993 #endif /* CREATIVE_ZVx */
995 #ifdef MROBE_100
996 #ifndef SIMULATOR
997 #ifndef BOOTLOADER
998 drivers/synaptics-mep.c
999 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
1000 #endif /* BOOTLOADER */
1001 drivers/sw_i2c.c
1002 target/arm/ata-as-arm.S
1003 target/arm/ata-pp5020.c
1004 target/arm/wmcodec-pp.c
1005 target/arm/i2s-pp.c
1006 target/arm/adc-pp5020.c
1007 target/arm/olympus/mrobe-100/backlight-mr100.c
1008 target/arm/olympus/mrobe-100/button-mr100.c
1009 target/arm/olympus/mrobe-100/lcd-mr100.c
1010 target/arm/olympus/mrobe-100/lcd-as-mr100.S
1011 target/arm/olympus/mrobe-100/power-mr100.c
1012 target/arm/olympus/mrobe-100/powermgmt-mr100.c
1013 target/arm/usb-fw-pp502x.c
1014 #endif /* SIMULATOR */
1015 #endif /* MROBE_100 */
1017 #ifdef TATUNG_TPJ1022
1018 #ifndef SIMULATOR
1019 target/arm/ata-as-arm.S
1020 target/arm/ata-pp5020.c
1021 target/arm/wmcodec-pp.c
1022 target/arm/i2s-pp.c
1023 target/arm/adc-pp5020.c
1024 target/arm/tatung/tpj1022/backlight-tpj1022.c
1025 target/arm/tatung/tpj1022/button-tpj1022.c
1026 target/arm/tatung/tpj1022/lcd-tpj1022.c
1027 target/arm/tatung/tpj1022/power-tpj1022.c
1028 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
1029 target/arm/usb-fw-pp502x.c
1030 #endif /* SIMULATOR */
1031 #endif /* TATUNG_TPJ1022 */
1033 #ifdef IPOD_4G
1034 #ifndef SIMULATOR
1035 drivers/pcf50605.c
1036 target/arm/wmcodec-pp.c
1037 target/arm/i2s-pp.c
1038 target/arm/ata-as-arm.S
1039 target/arm/ata-pp5020.c
1040 target/arm/ipod/adc-ipod-pcf.c
1041 target/arm/ipod/backlight-4g_color.c
1042 target/arm/ipod/button-clickwheel.c
1043 target/arm/ipod/lcd-as-gray.S
1044 target/arm/ipod/lcd-gray.c
1045 target/arm/ipod/power-ipod.c
1046 target/arm/ipod/powermgmt-ipod-pcf.c
1047 target/arm/usb-fw-pp502x.c
1048 #endif /* SIMULATOR */
1049 #endif /* IPOD_4G */
1051 #ifdef IPOD_COLOR
1052 #ifndef SIMULATOR
1053 drivers/pcf50605.c
1054 target/arm/ata-as-arm.S
1055 target/arm/ata-pp5020.c
1056 target/arm/wmcodec-pp.c
1057 target/arm/i2s-pp.c
1058 target/arm/ipod/adc-ipod-pcf.c
1059 target/arm/ipod/backlight-4g_color.c
1060 target/arm/ipod/button-clickwheel.c
1061 target/arm/ipod/lcd-color_nano.c
1062 target/arm/ipod/power-ipod.c
1063 target/arm/ipod/powermgmt-ipod-pcf.c
1064 target/arm/usb-fw-pp502x.c
1065 #endif /* SIMULATOR */
1066 #endif /* IPOD_COLOR */
1068 #ifdef IPOD_NANO
1069 #ifndef SIMULATOR
1070 drivers/pcf50605.c
1071 target/arm/ata-as-arm.S
1072 target/arm/ata-pp5020.c
1073 target/arm/wmcodec-pp.c
1074 target/arm/i2s-pp.c
1075 target/arm/ipod/adc-ipod-pcf.c
1076 target/arm/ipod/backlight-nano_video.c
1077 target/arm/ipod/button-clickwheel.c
1078 target/arm/ipod/lcd-color_nano.c
1079 target/arm/ipod/power-ipod.c
1080 target/arm/ipod/powermgmt-ipod-pcf.c
1081 target/arm/usb-fw-pp502x.c
1082 #endif /* SIMULATOR */
1083 #endif /* IPOD_NANO */
1085 #ifdef IPOD_VIDEO
1086 #ifndef SIMULATOR
1087 drivers/pcf50605.c
1088 target/arm/ata-as-arm.S
1089 target/arm/ata-pp5020.c
1090 target/arm/wmcodec-pp.c
1091 target/arm/i2s-pp.c
1092 target/arm/ipod/adc-ipod-pcf.c
1093 target/arm/ipod/backlight-nano_video.c
1094 target/arm/ipod/button-clickwheel.c
1095 target/arm/ipod/power-ipod.c
1096 target/arm/ipod/powermgmt-ipod-pcf.c
1097 target/arm/ipod/video/lcd-as-video.S
1098 target/arm/ipod/video/lcd-video.c
1099 target/arm/usb-fw-pp502x.c
1100 #endif /* SIMULATOR */
1101 #endif /* IPOD_VIDEO */
1103 #ifdef IPOD_3G
1104 #ifndef SIMULATOR
1105 drivers/pcf50605.c
1106 target/arm/ata-pp5002.c
1107 target/arm/wmcodec-pp.c
1108 target/arm/i2s-pp.c
1109 target/arm/ipod/adc-ipod-pcf.c
1110 target/arm/ipod/3g/backlight-3g.c
1111 target/arm/ipod/button-1g-3g.c
1112 target/arm/ipod/lcd-as-gray.S
1113 target/arm/ipod/lcd-gray.c
1114 target/arm/ipod/power-ipod.c
1115 target/arm/ipod/powermgmt-ipod-pcf.c
1116 target/arm/usb-fw-pp5002.c
1117 #endif /* SIMULATOR */
1118 #endif /* IPOD_3G */
1120 #ifdef IPOD_1G2G
1121 #ifndef SIMULATOR
1122 target/arm/ata-pp5002.c
1123 target/arm/wmcodec-pp.c
1124 target/arm/i2s-pp.c
1125 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1126 target/arm/ipod/1g2g/backlight-1g2g.c
1127 target/arm/ipod/1g2g/powermgmt-1g2g.c
1128 target/arm/ipod/button-1g-3g.c
1129 target/arm/ipod/lcd-as-gray.S
1130 target/arm/ipod/lcd-gray.c
1131 target/arm/ipod/power-ipod.c
1132 target/arm/usb-fw-pp5002.c
1133 #endif /* SIMULATOR */
1134 #endif /* IPOD_1G2G */
1136 #ifdef IPOD_MINI
1137 #ifndef SIMULATOR
1138 drivers/pcf50605.c
1139 target/arm/ata-as-arm.S
1140 target/arm/ata-pp5020.c
1141 target/arm/wmcodec-pp.c
1142 target/arm/i2s-pp.c
1143 target/arm/ipod/adc-ipod-pcf.c
1144 target/arm/ipod/backlight-mini1g_mini2g.c
1145 target/arm/ipod/button-mini1g.c
1146 target/arm/ipod/lcd-as-gray.S
1147 target/arm/ipod/lcd-gray.c
1148 target/arm/ipod/power-ipod.c
1149 target/arm/ipod/powermgmt-ipod-pcf.c
1150 target/arm/usb-fw-pp502x.c
1151 #endif /* SIMULATOR */
1152 #endif /* IPOD_MINI */
1154 #ifdef IPOD_MINI2G
1155 #ifndef SIMULATOR
1156 drivers/pcf50605.c
1157 target/arm/ata-as-arm.S
1158 target/arm/ata-pp5020.c
1159 target/arm/wmcodec-pp.c
1160 target/arm/i2s-pp.c
1161 target/arm/ipod/adc-ipod-pcf.c
1162 target/arm/ipod/backlight-mini1g_mini2g.c
1163 target/arm/ipod/button-clickwheel.c
1164 target/arm/ipod/lcd-as-gray.S
1165 target/arm/ipod/lcd-gray.c
1166 target/arm/ipod/power-ipod.c
1167 target/arm/ipod/powermgmt-ipod-pcf.c
1168 target/arm/usb-fw-pp502x.c
1169 #endif /* SIMULATOR */
1170 #endif /* IPOD_MINI2G */
1172 #ifdef IRIVER_IFP7XX
1173 #ifndef SIMULATOR
1174 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1175 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1176 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1177 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1178 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1179 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1180 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1181 #ifndef BOOTLOADER
1182 target/arm/pnx0101/pcm-pnx0101.c
1183 #endif /* BOOTLOADER */
1184 #endif /* SIMULATOR */
1185 #endif /* IRIVER_IFP7XX */
1187 #ifdef LOGIK_DAX
1188 #ifndef SIMULATOR
1189 drivers/nand_id.c
1190 target/arm/lcd-ssd1815.c
1191 target/arm/tcc77x/adc-tcc77x.c
1192 target/arm/tcc77x/kernel-tcc77x.c
1193 target/arm/tcc77x/powermgmt-tcc77x.c
1194 target/arm/tcc77x/system-tcc77x.c
1195 target/arm/tcc77x/timer-tcc77x.c
1196 target/arm/usb-tcc.c
1197 target/arm/tcc77x/logikdax/button-logikdax.c
1198 target/arm/tcc77x/logikdax/power-logikdax.c
1199 #ifndef BOOTLOADER
1200 target/arm/wmcodec-telechips.c
1201 target/arm/tcc77x/debug-tcc77x.c
1202 target/arm/pcm-telechips.c
1203 target/arm/tcc77x/logikdax/audio-logikdax.c
1204 #endif /* BOOTLOADER */
1205 #endif /* SIMULATOR */
1206 #endif /* LOGIK_DAX */
1208 #ifdef SANSA_M200
1209 #ifndef SIMULATOR
1210 drivers/nand_id.c
1211 target/arm/lcd-ssd1815.c
1212 target/arm/tcc77x/adc-tcc77x.c
1213 target/arm/tcc77x/kernel-tcc77x.c
1214 target/arm/tcc77x/powermgmt-tcc77x.c
1215 target/arm/tcc77x/system-tcc77x.c
1216 target/arm/tcc77x/timer-tcc77x.c
1217 target/arm/usb-tcc.c
1218 target/arm/tcc77x/m200/button-m200.c
1219 target/arm/tcc77x/m200/power-m200.c
1220 #ifndef BOOTLOADER
1221 target/arm/wmcodec-telechips.c
1222 target/arm/tcc77x/debug-tcc77x.c
1223 target/arm/pcm-telechips.c
1224 target/arm/tcc77x/m200/audio-m200.c
1225 #endif /* BOOTLOADER */
1226 #endif /* SIMULATOR */
1227 #endif /* SANSA_M200 */
1229 #ifdef SANSA_C100
1230 #ifndef SIMULATOR
1231 drivers/nand_id.c
1232 target/arm/usb-tcc.c
1233 target/arm/tcc77x/system-tcc77x.c
1234 target/arm/tcc77x/kernel-tcc77x.c
1235 target/arm/tcc77x/timer-tcc77x.c
1236 target/arm/tcc77x/adc-tcc77x.c
1237 target/arm/tcc77x/powermgmt-tcc77x.c
1238 target/arm/tcc77x/c100/lcd-S6B33B2.c
1239 target/arm/tcc77x/c100/button-c100.c
1240 target/arm/tcc77x/c100/power-c100.c
1241 #ifndef BOOTLOADER
1242 target/arm/tcc77x/debug-tcc77x.c
1243 target/arm/pcm-telechips.c
1244 target/arm/tcc77x/c100/audio-c100.c
1245 #endif /* BOOTLOADER */
1246 #endif /* SIMULATOR */
1247 #endif /* SANSA_C100 */
1249 #ifdef SANSA_CLIPPLUS
1250 #ifndef SIMULATOR
1251 target/arm/as3525/lcd-ssd1303.c
1252 target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
1253 target/arm/as3525/sansa-clipplus/button-clip.c
1254 target/arm/as3525/sansa-clipplus/backlight-clip.c
1255 #ifndef BOOTLOADER
1256 target/arm/powermgmt-ascodec.c
1257 target/arm/as3525/sansa-clipplus/powermgmt-clipplus.c
1258 target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
1259 target/arm/as3525/sansa-clipplus/tuner-clipplus.c
1260 #endif /* !BOOTLOADER */
1261 #endif /* !SIMULATOR */
1262 #endif /* SANSA_CLIPPLUS */
1264 #ifdef SANSA_CLIPV2
1265 #ifndef SIMULATOR
1266 target/arm/as3525/lcd-ssd1303.c
1267 target/arm/as3525/sansa-clipv2/lcd-clipv2.c
1268 target/arm/as3525/sansa-clipv2/button-clip.c
1269 target/arm/as3525/sansa-clipv2/backlight-clipv2.c
1270 #ifndef BOOTLOADER
1271 target/arm/powermgmt-ascodec.c
1272 target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
1273 target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
1274 #endif /* !BOOTLOADER */
1275 #endif /* !SIMULATOR */
1276 #endif /* SANSA_CLIPV2 */
1278 #ifdef SANSA_CLIP
1279 #ifndef SIMULATOR
1280 target/arm/as3525/lcd-ssd1303.c
1281 target/arm/as3525/sansa-clip/lcd-clip.c
1282 target/arm/as3525/sansa-clip/button-clip.c
1283 #ifndef BOOTLOADER
1284 target/arm/powermgmt-ascodec.c
1285 target/arm/as3525/sansa-clip/powermgmt-clip.c
1286 target/arm/as3525/sansa-clip/lcd-as-clip.S
1287 #endif /* !BOOTLOADER */
1288 #endif /* !SIMULATOR */
1289 #endif /* SANSA_CLIP */
1291 #ifdef SANSA_E200V2
1292 #ifndef SIMULATOR
1293 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1294 target/arm/as3525/button-e200v2-fuze.c
1295 target/arm/as3525/backlight-e200v2-fuze.c
1296 target/arm/as3525/dbop-as3525.c
1297 #ifndef BOOTLOADER
1298 target/arm/powermgmt-ascodec.c
1299 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1300 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1301 #endif /* !BOOTLOADER */
1302 #endif /* !SIMULATOR */
1303 #endif /* SANSA_E200V2 */
1305 #ifdef SANSA_C200V2
1306 #ifndef SIMULATOR
1307 target/arm/lcd-c200_c200v2.c
1308 target/arm/as3525/sansa-c200v2/button-c200v2.c
1309 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1310 target/arm/as3525/dbop-as3525.c
1311 #ifndef BOOTLOADER
1312 target/arm/powermgmt-ascodec.c
1313 target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
1314 #endif /* !BOOTLOADER */
1315 #endif /* !SIMULATOR */
1316 #endif /* SANSA_E200V2 */
1318 #ifdef SANSA_M200V4
1319 #ifndef SIMULATOR
1320 target/arm/lcd-ssd1815.c
1321 target/arm/as3525/sansa-m200v4/button-m200v4.c
1322 #ifndef BOOTLOADER
1323 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1324 #endif /* !BOOTLOADER */
1325 #endif /* !SIMULATOR */
1326 #endif /* SANSA_M200V4 */
1328 #ifdef SANSA_FUZE
1329 #ifndef SIMULATOR
1330 target/arm/as3525/button-e200v2-fuze.c
1331 target/arm/as3525/lcd-fuze.c
1332 target/arm/as3525/sansa-fuze/lcd-fuzev1.c
1333 target/arm/as3525/backlight-e200v2-fuze.c
1334 target/arm/as3525/dbop-as3525.c
1335 #ifndef BOOTLOADER
1336 target/arm/powermgmt-ascodec.c
1337 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1338 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1339 #endif /* !BOOTLOADER */
1340 #endif /* !SIMULATOR */
1341 #endif /* SANSA_FUZE */
1343 #ifdef SANSA_FUZEV2
1344 #ifndef SIMULATOR
1345 target/arm/as3525/lcd-fuze.c
1346 target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
1347 target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
1348 target/arm/as3525/sansa-fuzev2/button-fuzev2.c
1349 target/arm/as3525/dbop-as3525.c
1350 #ifndef BOOTLOADER
1351 target/arm/powermgmt-ascodec.c
1352 target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
1353 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1354 #endif /* !BOOTLOADER */
1355 #endif /* !SIMULATOR */
1356 #endif /* SANSA_FUZEV2 */
1358 #ifdef IAUDIO_7
1359 #ifndef SIMULATOR
1360 drivers/nand_id.c
1361 drivers/pcf50606.c
1362 target/arm/usb-tcc.c
1363 target/arm/tcc77x/system-tcc77x.c
1364 target/arm/tcc77x/kernel-tcc77x.c
1365 target/arm/tcc77x/timer-tcc77x.c
1366 target/arm/tcc77x/adc-tcc77x.c
1367 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1368 target/arm/tcc77x/iaudio7/power-iaudio7.c
1369 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1370 target/arm/tcc77x/iaudio7/button-iaudio7.c
1371 target/arm/tcc77x/iaudio7/ata2501.c
1372 #ifndef BOOTLOADER
1373 target/arm/wmcodec-telechips.c
1374 target/arm/pcm-telechips.c
1375 target/arm/tcc77x/debug-tcc77x.c
1376 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1377 #endif /* BOOTLOADER */
1378 #endif /* SIMULATOR */
1379 #endif /* IAUDIO_7 */
1381 #ifdef COWON_D2
1382 #ifndef SIMULATOR
1383 drivers/nand_id.c
1384 drivers/pcf50606.c
1385 drivers/pcf50635.c
1386 drivers/tsc200x.c
1387 target/arm/lcd-as-memframe.S
1388 target/arm/tcc780x/adc-tcc780x.c
1389 target/arm/tcc780x/system-tcc780x.c
1390 target/arm/tcc780x/kernel-tcc780x.c
1391 target/arm/tcc780x/sd-tcc780x.c
1392 target/arm/tcc780x/cowond2/button-cowond2.c
1393 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1394 target/arm/tcc780x/cowond2/lcd-cowond2.c
1395 target/arm/tcc780x/cowond2/power-cowond2.c
1396 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1397 target/arm/tcc780x/cowond2/backlight-cowond2.c
1398 target/arm/usb-tcc.c
1399 target/arm/mmu-arm.S
1400 #ifndef BOOTLOADER
1401 target/arm/tcc780x/timer-tcc780x.c
1402 target/arm/wmcodec-telechips.c
1403 target/arm/tcc780x/debug-tcc780x.c
1404 target/arm/pcm-telechips.c
1405 target/arm/tcc780x/cowond2/audio-cowond2.c
1406 #endif /* BOOTLOADER */
1407 #endif /* SIMULATOR */
1408 #endif /* COWON_D2 */
1410 #ifdef CPU_S5L870X
1411 target/arm/s5l8700/system-s5l8700.c
1412 target/arm/mmu-arm.S
1413 #ifndef SIMULATOR
1414 #ifndef BOOTLOADER
1415 target/arm/s5l8700/timer-s5l8700.c
1416 #endif /* BOOTLOADER */
1417 #endif /* SIMULATOR */
1418 #endif
1420 #ifdef MEIZU_M6SL
1421 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1422 drivers/qt1106.c
1423 #ifndef SIMULATOR
1424 #ifndef BOOTLOADER
1425 #endif /* BOOTLOADER */
1426 #endif /* SIMULATOR */
1427 #endif /* MEIZU_M6SL */
1429 #ifdef MEIZU_M6SP
1430 target/arm/s5l8700/backlight-meizu.c
1431 target/arm/s5l8700/power-meizu.c
1432 target/arm/s5l8700/kernel-s5l8700.c
1433 target/arm/s5l8700/meizu-m6sp/button-m6sp.c
1434 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1435 #ifndef SIMULATOR
1436 #ifndef BOOTLOADER
1437 drivers/generic_i2c.c
1438 drivers/rtc/rtc_s35390a.c
1439 target/arm/s5l8700/adc-s5l8700.c
1440 target/arm/s5l8700/audio-meizu.c
1441 target/arm/s5l8700/debug-s5l8700.c
1442 target/arm/s5l8700/dma-s5l8700.c
1443 target/arm/s5l8700/ftl-meizu.c
1444 target/arm/s5l8700/nand-meizu.c
1445 target/arm/s5l8700/fmradio-i2c-meizu.c
1446 target/arm/s5l8700/pcm-s5l8700.c
1447 target/arm/s5l8700/powermgmt-meizu.c
1448 target/arm/s5l8700/usb-s5l8700.c
1449 target/arm/s5l8700/wmcodec-s5l8700.c
1450 #endif /* BOOTLOADER */
1451 #endif /* SIMULATOR */
1452 #endif /* MEIZU_M6SP */
1454 #ifdef MEIZU_M3
1455 target/arm/s5l8700/backlight-meizu.c
1456 target/arm/s5l8700/kernel-s5l8700.c
1457 target/arm/s5l8700/meizu-m3/lcd-m3.c
1458 drivers/qt1106.c
1459 #ifndef SIMULATOR
1460 #ifndef BOOTLOADER
1461 target/arm/s5l8700/dma-s5l8700.c
1462 target/arm/s5l8700/pcm-s5l8700.c
1463 target/arm/s5l8700/udacodec-meizu.c
1464 #endif /* BOOTLOADER */
1465 #endif /* SIMULATOR */
1466 #endif /* MEIZU_M3 */
1468 #ifdef IPOD_NANO2G
1469 #ifndef SIMULATOR
1470 target/arm/ipod/button-clickwheel.c
1471 target/arm/s5l8700/kernel-s5l8700.c
1472 target/arm/s5l8700/dma-s5l8700.c
1473 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1474 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1475 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1476 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1477 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1478 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1479 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1480 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1481 #ifndef BOOTLOADER
1482 drivers/audio/wm8975.c
1483 target/arm/usb-s3c6400x.c
1484 target/arm/s5l8700/debug-s5l8700.c
1485 target/arm/s5l8700/pcm-s5l8700.c
1486 target/arm/s5l8700/wmcodec-s5l8700.c
1487 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1488 target/arm/s5l8700/ipodnano2g/adc-nano2g.c
1489 #endif
1490 #endif
1491 #endif
1493 #ifndef SIMULATOR
1494 #if CONFIG_CPU == JZ4732
1495 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1496 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1497 target/mips/ingenic_jz47xx/debug-jz4740.c
1498 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1499 target/mips/ingenic_jz47xx/kernel-jz4740.c
1500 target/mips/ingenic_jz47xx/i2c-jz4740.c
1501 target/mips/ingenic_jz47xx/lcd-jz4740.c
1502 target/mips/ingenic_jz47xx/system-jz4740.c
1503 target/mips/ingenic_jz47xx/usb-jz4740.c
1504 target/mips/ingenic_jz47xx/timer-jz4740.c
1505 #ifndef BOOTLOADER
1506 target/mips/ingenic_jz47xx/codec-jz4740.c
1507 target/mips/ingenic_jz47xx/pcm-jz4740.c
1508 #endif /* BOOTLOADER */
1509 drivers/nand_id.c
1510 #endif /* CONFIG_CPU == JZ4732 */
1512 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1513 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1514 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1515 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1516 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1517 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1518 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1520 #ifdef ONDA_VX767
1521 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1522 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1523 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1524 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1525 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1526 #endif /* ONDA_VX767 */
1528 #if defined(LYRE_PROTO1)
1529 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1530 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1531 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1532 target/arm/at91sam/lyre_proto1/crt0.S
1533 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1534 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1535 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1536 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1537 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1538 #endif
1539 #endif /* SIMULATOR */
1541 #if defined(MINI2440)
1542 #ifndef SIMULATOR
1543 target/arm/lcd-as-memframe.S
1544 target/arm/mmu-arm.S
1545 target/arm/s3c2440/debug-s3c2440.c
1546 target/arm/s3c2440/dma-s3c2440.c
1547 target/arm/s3c2440/kernel-s3c2440.c
1548 target/arm/s3c2440/lcd-s3c2440.c
1549 target/arm/s3c2440/sd-s3c2440.c
1550 target/arm/s3c2440/system-s3c2440.c
1551 target/arm/s3c2440/uart-s3c2440.c
1552 target/arm/s3c2440/adc-s3c2440.c
1553 target/arm/s3c2440/i2c-s3c2440.c
1554 target/arm/s3c2440/mini2440/backlight-mini2440.c
1555 target/arm/s3c2440/mini2440/button-mini2440.c
1556 target/arm/s3c2440/mini2440/led-mini2440.c
1557 target/arm/s3c2440/mini2440/power-mini2440.c
1558 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1559 #ifndef BOOTLOADER
1560 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1561 target/arm/s3c2440/mini2440/pcm-mini2440.c
1562 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
1563 #endif
1564 #endif /* SIMULATOR */
1565 #endif /* MINI2440 */
1567 #ifdef SAMSUNG_YH820
1568 #ifndef SIMULATOR
1569 target/arm/ata-as-arm.S
1570 target/arm/ata-pp5020.c
1571 target/arm/adc-pp5020.c
1572 target/arm/i2s-pp.c
1573 target/arm/usb-fw-pp502x.c
1574 target/arm/samsung/akcodec-yh82x_yh92x.c
1575 target/arm/samsung/button-yh82x_yh92x.c
1576 target/arm/samsung/power-yh82x_yh92x.c
1577 target/arm/samsung/yh820/backlight-yh820.c
1578 target/arm/samsung/yh820/lcd-yh820.c
1579 target/arm/samsung/yh820/lcd-as-yh820.S
1580 target/arm/samsung/yh820/powermgmt-yh820.c
1581 #endif /* SIMULATOR */
1582 #endif /* SAMSUNG_YH820 */
1584 #ifdef SAMSUNG_YH920
1585 #ifndef SIMULATOR
1586 target/arm/ata-as-arm.S
1587 target/arm/ata-pp5020.c
1588 target/arm/adc-pp5020.c
1589 target/arm/i2s-pp.c
1590 target/arm/usb-fw-pp502x.c
1591 target/arm/samsung/akcodec-yh82x_yh92x.c
1592 target/arm/samsung/button-yh82x_yh92x.c
1593 target/arm/samsung/power-yh82x_yh92x.c
1594 target/arm/samsung/yh920/backlight-yh920.c
1595 target/arm/samsung/yh920/lcd-yh920.c
1596 target/arm/samsung/yh920/lcd-as-yh920.S
1597 target/arm/samsung/yh920/powermgmt-yh920.c
1598 #endif /* SIMULATOR */
1599 #endif /* SAMSUNG_YH920 */
1601 #ifdef SAMSUNG_YH925
1602 #ifndef SIMULATOR
1603 target/arm/ata-as-arm.S
1604 target/arm/ata-pp5020.c
1605 target/arm/adc-pp5020.c
1606 target/arm/i2s-pp.c
1607 target/arm/usb-fw-pp502x.c
1608 target/arm/samsung/akcodec-yh82x_yh92x.c
1609 target/arm/samsung/button-yh82x_yh92x.c
1610 target/arm/samsung/power-yh82x_yh92x.c
1611 target/arm/samsung/yh925/backlight-yh925.c
1612 target/arm/samsung/yh925/lcd-yh925.c
1613 target/arm/samsung/yh925/lcd-as-yh925.S
1614 target/arm/samsung/yh925/powermgmt-yh925.c
1615 #endif /* SIMULATOR */
1616 #endif /* SAMSUNG_YH925 */
1618 #ifdef SAMSUNG_YPS3
1619 /* TODO: currently including all files for the bootloader DFU test program */
1620 tuner.c
1621 drivers/tuner/si4700.c
1622 target/arm/s5l8700/adc-s5l8700.c
1623 target/arm/s5l8700/i2c-s5l8700.c
1624 target/arm/s5l8700/kernel-s5l8700.c
1625 target/arm/s5l8700/timer-s5l8700.c
1626 target/arm/s5l8700/wmcodec-s5l8700.c
1627 target/arm/s5l8700/yps3/button-yps3.c
1628 target/arm/s5l8700/yps3/lcd-yps3.c
1629 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1630 target/arm/s5l8700/yps3/backlight-yps3.c
1631 target/arm/s5l8700/yps3/nand-yps3.c
1632 target/arm/s5l8700/yps3/power-yps3.c
1633 #endif /* SAMSUNG_YPS3 */
1635 #ifdef PBELL_VIBE500
1636 #ifndef SIMULATOR
1637 drivers/synaptics-mep.c
1638 target/arm/ata-as-arm.S
1639 target/arm/ata-pp5020.c
1640 target/arm/wmcodec-pp.c
1641 target/arm/i2s-pp.c
1642 target/arm/adc-pp5020.c
1643 target/arm/pbell/vibe500/lcd-vibe500.c
1644 target/arm/pbell/vibe500/button-vibe500.c
1645 target/arm/pbell/vibe500/power-vibe500.c
1646 target/arm/pbell/vibe500/backlight-vibe500.c
1647 target/arm/pbell/vibe500/lcd-as-vibe500.S
1648 target/arm/pbell/vibe500/powermgmt-vibe500.c
1649 target/arm/usb-fw-pp502x.c
1650 #endif /* SIMULATOR */
1651 #endif
1653 #ifdef MPIO_HD200
1654 #ifndef SIMULATOR
1655 /* TODO: currently including all files */
1656 target/coldfire/mpio/hd200/adc-hd200.c
1657 target/coldfire/mpio/hd200/button-hd200.c
1658 target/coldfire/mpio/hd200/lcd-hd200.c
1659 target/coldfire/mpio/hd200/lcd-as-hd200.S
1660 target/coldfire/mpio/hd200/power-hd200.c
1661 target/coldfire/mpio/hd200/powermgmt-hd200.c
1662 target/coldfire/mpio/hd200/backlight-hd200.c
1663 target/coldfire/mpio/hd200/system-hd200.c
1664 target/coldfire/mpio/hd200/usb-hd200.c
1665 target/coldfire/mpio/ata-mpio.c
1666 target/coldfire/ata-as-coldfire.S
1667 #ifndef BOOTLOADER
1668 target/coldfire/mpio/audio-mpio.c
1669 target/coldfire/wmcodec-coldfire.c
1670 target/coldfire/mpio/fmradio_i2c-mpio.c
1671 #endif /* BOOTLOADER */
1672 #endif /* SIMULATOR */
1673 #endif