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