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