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