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