Disable ipod video battery capacity default detection for bootloader and simulator
[kugel-rb.git] / firmware / SOURCES
blob457519dba385ddaf32920d9f2406d01972955691
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 #endif /* (CONFIG_RTC == RTC_) */
273 #endif /* PLATFORM_NATIVE */
275 #ifndef BOOTLOADER
276 /* Tuner */
277 #if CONFIG_TUNER
278 tuner.c
279 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
280 #if (CONFIG_TUNER & LV24020LP)
281 drivers/tuner/lv24020lp.c
282 #endif /* (CONFIG_TUNER & LV24020LP) */
283 #if (CONFIG_TUNER & S1A0903X01)
284 drivers/fmradio.c
285 drivers/tuner/s1a0903x01.c
286 #endif /* (CONFIG_TUNER & S1A0903X01) */
287 #if (CONFIG_TUNER & TEA5760)
288 drivers/tuner/tea5760uk.c
289 #endif
290 #if (CONFIG_TUNER & TEA5767)
291 drivers/tuner/tea5767.c
292 #endif /* (CONFIG_TUNER & TEA5767) */
293 #if (CONFIG_TUNER & SI4700)
294 drivers/tuner/si4700.c
295 #endif /* (CONFIG_TUNER & SI4700) */
296 #if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
297 drivers/tuner/ipod_remote_tuner.c
298 #endif /* (CONFIG_TUNER & IPOD_REMOTE_TUNER) */
299 #if (CONFIG_TUNER & RDA5802)
300 drivers/tuner/rda5802.c
301 #endif /* (CONFIG_TUNER & RDA5802) */
302 #endif /* PLATFORM_NATIVE */
303 #endif /* CONFIG_TUNER */
304 #endif /* BOOTLOADER */
306 /* Sound */
307 sound.c
309 #if CONFIG_CODEC == SWCODEC
311 #ifndef BOOTLOADER
312 pcm_sampr.c
313 pcm.c
314 pcm_mixer.c
315 #ifdef HAVE_RECORDING
316 enc_base.c
317 #endif /* HAVE_RECORDING */
318 #endif /* BOOTLOADER */
319 #endif /* SWCODEC */
321 /* Audio codec */
322 #if (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER)
323 #if defined(HAVE_UDA1380)
324 drivers/audio/uda1380.c
325 #elif defined(HAVE_WM8751) \
326    || defined(HAVE_WM8750)
327 drivers/audio/wm8751.c
328 #elif defined(HAVE_WM8978)
329 drivers/audio/wm8978.c
330 #elif defined(HAVE_WM8975)
331 drivers/audio/wm8975.c
332 #elif defined(HAVE_WM8985)
333 drivers/audio/wm8985.c
334 #elif defined(HAVE_WM8758)
335 drivers/audio/wm8758.c
336 #elif defined(HAVE_WM8711) \
337    || defined(HAVE_WM8721) \
338    || defined(HAVE_WM8731)
339 drivers/audio/wm8731.c
340 #elif defined(HAVE_AS3514)
341 drivers/audio/as3514.c
342 #elif defined(HAVE_TLV320)
343 drivers/audio/tlv320.c
344 #elif defined(HAVE_MAS35XX)
345 drivers/audio/mas35xx.c
346 #elif defined(HAVE_AK4537)
347 drivers/audio/ak4537.c
348 #elif defined(HAVE_UDA1341)
349 drivers/audio/uda1341.c
350 #elif defined(HAVE_CS42L55)
351 drivers/audio/cs42l55.c
352 #endif /* defined(HAVE_*) */
353 #elif defined(HAVE_SDL_AUDIO)
354 drivers/audio/sdl.c
355 #if CONFIG_CODEC == SWCODEC
356 #if (CONFIG_PLATFORM & PLATFORM_MAEMO5)
357 target/hosted/maemo/pcm-gstreamer.c
358 #else
359 target/hosted/sdl/pcm-sdl.c
360 #endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
361 #endif /* CONFIG_CODEC == SWCODEC */
362 #endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
364 /* USB Stack */
365 #if !defined(SIMULATOR)
366 #ifdef HAVE_USBSTACK
367 usbstack/usb_core.c
368 #ifdef USB_ENABLE_STORAGE
369 usbstack/usb_storage.c
370 #endif
371 #ifdef USB_ENABLE_SERIAL
372 usbstack/usb_serial.c
373 #endif
374 #ifdef USB_ENABLE_CHARGING_ONLY
375 usbstack/usb_charging_only.c
376 #endif
377 #ifdef USB_ENABLE_HID
378 usbstack/usb_hid.c
379 #endif
380 #if CONFIG_USBOTG == USBOTG_M66591
381 drivers/m66591.c
382 #elif CONFIG_USBOTG == USBOTG_ARC
383 target/arm/usb-drv-arc.c
384 #elif CONFIG_USBOTG == USBOTG_AS3525
385 target/arm/as3525/usb-drv-as3525.c
386 #elif CONFIG_USBOTG == USBOTG_AS3525v2
387 target/arm/as3525/usb-drv-as3525v2.c
388 #elif CONFIG_USBOTG == USBOTG_ISP1583
389 drivers/isp1583.c
390 #endif
391 #else /* !defined(HAVE_USBSTACK) */
392 #if CONFIG_USBOTG == USBOTG_ISP1362      
393 drivers/isp1362.c
394 #elif CONFIG_USBOTG == USBOTG_M5636      
395 drivers/m5636.c
396 #endif
397 #endif /* !defined(HAVE_USBSTACK) */
398 #endif /* !defined(SIMULATOR) */
400 /* Other Random Hardware */
401 #ifdef HAVE_TSC2100
402 #if !defined(SIMULATOR)
403 drivers/tsc2100.c
404 drivers/audio/tsc2100.c
405 #endif /* !SIMULATOR */
406 #endif
408 /* CPU Specific - By class then particular chip if applicable */
409 #if defined(CPU_SH)
411 #ifndef SIMULATOR
412 target/sh/adc-sh.c
413 target/sh/bitswap.S
414 target/sh/crt0.S
415 target/sh/kernel-sh.c
416 target/sh/memcpy-sh.S
417 target/sh/memmove-sh.S
418 target/sh/memset-sh.S
419 target/sh/strlen-sh.S
420 target/sh/system-sh.c
421 target/sh/archos/descramble.S
422 target/sh/archos/i2c-archos.c
423 target/sh/debug-sh.c
424 #endif /* SIMULATOR */
426 #elif defined(CPU_COLDFIRE)
428 #ifndef SIMULATOR
429 target/coldfire/crt0.S
430 #ifdef HAVE_PRIORITY_SCHEDULING
431 common/ffs.c
432 target/coldfire/ffs-coldfire.S
433 #endif
434 target/coldfire/memcpy-coldfire.S
435 target/coldfire/memmove-coldfire.S
436 target/coldfire/memset-coldfire.S
437 target/coldfire/strlen-coldfire.S
438 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
439  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
440 target/coldfire/memset16-coldfire.S
441 #endif
442 target/coldfire/kernel-coldfire.c
443 target/coldfire/system-coldfire.c
444 target/coldfire/timer-coldfire.c
445 #ifndef BOOTLOADER
446 target/coldfire/pcm-coldfire.c
447 target/coldfire/debug-coldfire.c
448 #endif /* BOOTLOADER */
449 #if CONFIG_I2C == I2C_COLDFIRE
450 target/coldfire/i2c-coldfire.c
451 #endif /* CONFIG_I2C == I2C_COLDFIRE */
452 #endif /* SIMULATOR */
454 #elif defined(CPU_PP) || defined(CPU_ARM)
455 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
456 target/arm/support-arm.S
457 target/arm/memcpy-arm.S
458 target/arm/memmove-arm.S
459 #ifndef SIMULATOR
460 target/arm/memset-arm.S
461 target/arm/memset16-arm.S
462 #ifdef HAVE_PRIORITY_SCHEDULING
463 target/arm/ffs-arm.S
464 #endif
465 #if CONFIG_PLATFORM & PLATFORM_NATIVE
466 target/arm/system-arm.c
467 #endif
468 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
469 target/arm/i2c-pp.c
470 #elif CONFIG_I2C == I2C_PNX0101
471 target/arm/pnx0101/i2c-pnx0101.c
472 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
473 target/arm/i2c-telechips.c
474 #elif CONFIG_I2C == I2C_S3C2440
475 /* no i2c driver yet */
476 #elif CONFIG_I2C == I2C_S5L8700
477 target/arm/s5l8700/i2c-s5l8700.c
478 #elif CONFIG_I2C == I2C_S5L8702
479 target/arm/s5l8702/i2c-s5l8702.c
480 #elif CONFIG_I2C == I2C_RK27XX
481 target/arm/rk27xx/i2c-rk27xx.c
482 #elif CONFIG_I2C == I2C_IMX233
483 target/arm/imx233/i2c-imx233.c
484 #endif
486 #if CONFIG_CPU == PNX0101
487 target/arm/pnx0101/kernel-pnx0101.c
488 target/arm/pnx0101/system-pnx0101.c
489 target/arm/pnx0101/timer-pnx0101.c
490 #endif
492 #if CONFIG_CPU == IMX233
493 target/arm/imx233/lcdif-imx233.c
494 target/arm/imx233/clkctrl-imx233.c
495 target/arm/imx233/system-imx233.c
496 target/arm/imx233/timrot-imx233.c
497 target/arm/imx233/kernel-imx233.c
498 target/arm/imx233/kernel-imx233.c
499 target/arm/imx233/sd-imx233.c
500 target/arm/imx233/mmc-imx233.c
501 target/arm/imx233/ssp-imx233.c
502 target/arm/imx233/usb-imx233.c
503 target/arm/imx233/dma-imx233.c
504 #endif /* IMX233 */
506 #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
507 target/arm/bits-armv4.S
508 target/arm/as3525/system-as3525.c
509 target/arm/as3525/memory-init.S
510 target/arm/as3525/kernel-as3525.c
511 target/arm/as3525/timer-as3525.c
512 #if CONFIG_CPU == AS3525
513 target/arm/as3525/sd-as3525.c
514 #ifdef HAVE_SCROLLWHEEL
515 target/arm/as3525/scrollwheel-as3525.c
516 #endif /* HAVE_SCROLLWHEEL */
517 #else /* AS3535v2 */
518 target/arm/as3525/sd-as3525v2.c
519 #endif
520 target/arm/as3525/power-as3525.c
521 target/arm/as3525/usb-as3525.c
522 target/arm/as3525/dma-pl081.c
523 target/arm/as3525/ascodec-as3525.c
524 target/arm/mmu-arm.S
525 #ifndef BOOTLOADER
526 drivers/generic_i2c.c
527 target/arm/adc-as3514.c
528 target/arm/as3525/audio-as3525.c
529 target/arm/as3525/debug-as3525.c
530 #if CONFIG_TUNER
531 target/arm/as3525/fmradio-i2c-as3525.c
532 #endif /* CONFIG_TUNER */
533 target/arm/as3525/i2s-as3525.c
534 target/arm/as3525/pcm-as3525.c
535 #endif /* BOOTLOADER */
536 #endif /* CONFIG_CPU == AS3525 */
538 #if defined(CPU_PP)
539 target/arm/kernel-pp.c
540 target/arm/timer-pp.c
541 #if CONFIG_CPU == PP5002
542 target/arm/system-pp5002.c
543 #elif defined CPU_PP502x
544 target/arm/system-pp502x.c
545 #endif
546 #ifdef BOOTLOADER
547 #ifdef HAVE_BOOTLOADER_USB_MODE
548 target/arm/crt0-pp502x-bl-usb.S
549 #else
550 target/arm/crt0-pp-bl.S
551 #endif /* HAVE_BOOTLOADER_USB_MODE */
552 #else /* !BOOTLOADER */
553 target/arm/pcm-pp.c
554 target/arm/debug-pp.c
555 #if !defined(SANSA_E200) && !defined(SANSA_C200)
556 target/arm/audio-pp.c
557 #endif /* SANSA_E200 */
558 target/arm/crt0-pp.S
559 #endif
560 #elif CONFIG_CPU == PNX0101
561 target/arm/pnx0101/crt0-pnx0101.S
562 #elif CONFIG_CPU==DM320
563 target/arm/tms320dm320/crt0.S
564 #elif CONFIG_CPU==S3C2440
565 target/arm/s3c2440/crt0.S
566 #elif defined(CPU_TCC77X)
567 target/arm/tcc77x/crt0.S
568 #elif defined(CPU_TCC780X)
569 target/arm/tcc780x/crt0.S
570 #elif CONFIG_CPU==IMX31L
571 target/arm/imx31/crt0.S
572 #elif CONFIG_CPU==S5L8700 || CONFIG_CPU==S5L8701
573 target/arm/s5l8700/crt0.S
574 #elif CONFIG_CPU==S5L8702
575 target/arm/s5l8702/crt0.S
576 #elif CONFIG_CPU==IMX233
577 target/arm/imx233/crt0.S
578 #elif CONFIG_CPU==RK27XX
579 target/arm/rk27xx/crt0.S
580 #elif defined(CPU_ARM)
581 target/arm/crt0.S
582 #endif /* defined(CPU_*) */
583 #endif /* SIMULATOR */
585 #elif defined(CPU_MIPS)
586 common/memset16.c
587 target/mips/ffs-mips.S
588 target/mips/memcpy-mips.S
589 target/mips/memset-mips.S
590 target/mips/mmu-mips.c
591 #if CONFIG_CPU==JZ4732
592 target/mips/ingenic_jz47xx/crt0.S
593 #endif /* CONFIG_CPU == JZ4732 */
595 #else
597 #ifdef HAVE_PRIORITY_SCHEDULING
598 common/ffs.c
599 #endif
600 common/memset16.c
601 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
602 crt0.S
603 drivers/i2c.c
604 #endif /* PLATFORM_NATIVE */
606 #endif /* defined(CPU_*) */
608 #ifdef ARCHOS_PLAYER
609 #ifndef SIMULATOR
610 target/sh/archos/ata-archos.c
611 target/sh/archos/timer-archos.c
612 target/sh/archos/ata-as-archos.S
613 target/sh/archos/uart-archos.c
614 target/sh/archos/player/button-player.c
615 target/sh/archos/player/hwcompat-player.c
616 target/sh/archos/player/lcd-as-player.S
617 target/sh/archos/player/lcd-player.c
618 target/sh/archos/player/power-player.c
619 target/sh/archos/player/powermgmt-player.c
620 target/sh/archos/player/usb-player.c
621 target/sh/archos/mascodec-archos.c
622 target/sh/archos/audio-archos.c
623 #endif /* SIMULATOR */
624 #endif /* ARCHOS_PLAYER */
626 #ifdef ARCHOS_RECORDER
627 #ifndef SIMULATOR
628 target/sh/archos/ata-archos.c
629 target/sh/archos/timer-archos.c
630 target/sh/archos/ata-as-archos.S
631 target/sh/archos/uart-archos.c
632 target/sh/archos/lcd-archos-bitmap.c
633 target/sh/archos/lcd-as-archos-bitmap.S   
634 target/sh/archos/recorder/button-recorder.c
635 target/sh/archos/recorder/power-recorder.c
636 target/sh/archos/recorder/powermgmt-recorder.c
637 target/sh/archos/recorder/usb-recorder.c
638 target/sh/archos/mascodec-archos.c
639 target/sh/archos/audio-archos.c
640 #endif /* SIMULATOR */
641 #endif /* ARCHOS_RECORDER */
643 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
644 #ifndef SIMULATOR
645 target/sh/archos/ata-archos.c
646 target/sh/archos/timer-archos.c
647 target/sh/archos/ata-as-archos.S
648 target/sh/archos/lcd-archos-bitmap.c
649 target/sh/archos/lcd-as-archos-bitmap.S
650 target/sh/archos/fm_v2/button-fm_v2.c
651 target/sh/archos/fm_v2/power-fm_v2.c
652 target/sh/archos/fm_v2/powermgmt-fm_v2.c
653 target/sh/archos/fm_v2/usb-fm_v2.c
654 target/sh/archos/mascodec-archos.c
655 target/sh/archos/audio-archos.c
656 #endif /* SIMULATOR */
657 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
659 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
660 #ifndef SIMULATOR
661 target/sh/archos/timer-archos.c
662 target/sh/archos/lcd-archos-bitmap.c
663 target/sh/archos/lcd-as-archos-bitmap.S
664 target/sh/archos/ondio/button-ondio.c
665 target/sh/archos/ondio/power-ondio.c
666 target/sh/archos/ondio/powermgmt-ondio.c
667 target/sh/archos/ondio/usb-ondio.c
668 target/sh/archos/ondio/ata_mmc.c
669 target/sh/archos/mascodec-archos.c
670 target/sh/archos/audio-archos.c
671 #if (CONFIG_TUNER & TEA5767)
672 target/sh/archos/ondio/fmradio_i2c-ondio.c
673 #endif
674 #endif /* SIMULATOR */
675 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
677 #ifdef SANSA_E200
678 #ifndef SIMULATOR
679 target/arm/adc-as3514.c
680 target/arm/ascodec-pp.c
681 target/arm/ata-sd-pp.c
682 target/arm/lcd-as-memframe.S
683 target/arm/powermgmt-ascodec.c
684 target/arm/i2s-pp.c
685 target/arm/usb-fw-pp502x.c
686 target/arm/sandisk/backlight-c200_e200.c
687 target/arm/sandisk/power-c200_e200.c
688 target/arm/sandisk/sansa-e200/lcd-e200.c
689 target/arm/sandisk/sansa-e200/button-e200.c
690 target/arm/sandisk/sansa-e200/powermgmt-e200.c
691 #ifndef BOOTLOADER
692 target/arm/sandisk/audio-c200_e200.c
693 #endif /* BOOTLOADER */
694 #endif /* SIMULATOR */
695 #endif /* SANSA_E200 */
697 #ifdef SANSA_C200
698 #ifndef SIMULATOR
699 target/arm/adc-as3514.c
700 target/arm/ascodec-pp.c
701 target/arm/ata-sd-pp.c
702 target/arm/i2s-pp.c
703 target/arm/powermgmt-ascodec.c
704 target/arm/usb-fw-pp502x.c
705 target/arm/sandisk/backlight-c200_e200.c
706 target/arm/sandisk/power-c200_e200.c
707 target/arm/lcd-c200_c200v2.c
708 target/arm/sandisk/sansa-c200/lcd-as-c200.S
709 target/arm/sandisk/sansa-c200/button-c200.c
710 target/arm/sandisk/sansa-c200/powermgmt-c200.c
711 #ifndef BOOTLOADER
712 target/arm/sandisk/audio-c200_e200.c
713 #endif /* BOOTLOADER */
714 #endif /* SIMULATOR */
715 #endif /* SANSA_C200 */
717 #ifdef SANSA_VIEW
718 #ifndef SIMULATOR
719 /* target/arm/ascodec-pp.c */
720 target/arm/ata-sd-pp.c
721 target/arm/lcd-as-memframe.S
722 target/arm/i2s-pp.c
723 /* target/arm/usb-fw-pp502x.c */
724 target/arm/sandisk/sansa-view/backlight-view.c
725 target/arm/sandisk/sansa-view/adc-view.c
726 target/arm/sandisk/sansa-view/power-view.c
727 target/arm/sandisk/sansa-view/lcd-view.c
728 target/arm/sandisk/sansa-view/button-view.c
729 target/arm/sandisk/sansa-view/powermgmt-view.c
730 #ifndef BOOTLOADER
731 /* target/arm/sandisk/audio-view.c */
732 #endif /* BOOTLOADER */
733 #endif /* SIMULATOR */
734 #endif /* SANSA_VIEW */
736 #ifdef PHILIPS_SA9200
737 #ifndef SIMULATOR
738 #ifndef BOOTLOADER
739 drivers/synaptics-mep.c
740 #endif /* BOOTLOADER */
741 target/arm/adc-as3514.c
742 target/arm/ascodec-pp.c
743 target/arm/ata-sd-pp.c
744 target/arm/i2s-pp.c
745 target/arm/powermgmt-ascodec.c
746 target/arm/usb-fw-pp502x.c
747 target/arm/philips/sa9200/backlight-sa9200.c
748 target/arm/philips/sa9200/button-sa9200.c
749 target/arm/philips/sa9200/lcd-sa9200.c
750 target/arm/philips/sa9200/lcd-as-sa9200.S
751 target/arm/philips/sa9200/power-sa9200.c
752 target/arm/philips/sa9200/powermgmt-sa9200.c
753 #endif /* SIMULATOR */
754 #endif /* PHILIPS_SA9200 */
756 #ifdef PHILIPS_HDD1630
757 #ifndef SIMULATOR
758 #ifndef BOOTLOADER
759 drivers/synaptics-mep.c
760 #endif /* BOOTLOADER */
761 target/arm/ata-as-arm.S
762 target/arm/ata-pp5020.c
763 target/arm/wmcodec-pp.c
764 target/arm/i2s-pp.c
765 target/arm/adc-pp5020.c
766 target/arm/philips/power-hdd.c
767 target/arm/philips/fmradio_i2c-hdd.c
768 target/arm/philips/hdd1630/backlight-hdd1630.c
769 target/arm/philips/hdd1630/button-hdd1630.c
770 target/arm/philips/hdd1630/lcd-hdd1630.c
771 target/arm/philips/hdd1630/lcd-as-hdd1630.S
772 target/arm/philips/hdd1630/powermgmt-hdd1630.c
773 target/arm/usb-fw-pp502x.c
774 #endif /* SIMULATOR */
775 #endif /* PHILIPS_HDD1630 */
777 #ifdef PHILIPS_HDD6330
778 #ifndef SIMULATOR
779 #ifndef BOOTLOADER
780 drivers/synaptics-mep.c
781 #endif /* BOOTLOADER */
782 target/arm/ata-as-arm.S
783 target/arm/ata-pp5020.c
784 target/arm/wmcodec-pp.c
785 target/arm/i2s-pp.c
786 target/arm/adc-pp5020.c
787 target/arm/philips/power-hdd.c
788 target/arm/philips/fmradio_i2c-hdd.c
789 target/arm/philips/hdd6330/backlight-hdd6330.c
790 target/arm/philips/hdd6330/button-hdd6330.c
791 target/arm/philips/hdd6330/lcd-hdd6330.c
792 target/arm/philips/hdd6330/lcd-as-hdd6330.S
793 target/arm/philips/hdd6330/powermgmt-hdd6330.c
794 target/arm/usb-fw-pp502x.c
795 #endif /* SIMULATOR */
796 #endif /* PHILIPS_HDD6330 */
798 #ifdef IAUDIO_X5
799 #ifndef SIMULATOR
800 target/coldfire/ata-as-coldfire.S
801 target/coldfire/pcf50606-coldfire.c
802 target/coldfire/iaudio/adc-iaudio.c
803 target/coldfire/iaudio/ata-iaudio.c
804 target/coldfire/iaudio/fmradio_i2c-iaudio.c
805 target/coldfire/iaudio/lcd-remote-as-iaudio.S
806 target/coldfire/iaudio/lcd-remote-iaudio.c
807 target/coldfire/iaudio/pcf50606-iaudio.c
808 target/coldfire/iaudio/power-x5m5.c
809 target/coldfire/iaudio/powermgmt-iaudio.c
810 target/coldfire/iaudio/system-iaudio.c
811 target/coldfire/iaudio/usb-iaudio.c
812 target/coldfire/iaudio/x5/backlight-x5.c
813 target/coldfire/iaudio/x5/button-x5.c
814 target/coldfire/iaudio/x5/ds2411-x5.c
815 target/coldfire/iaudio/x5/lcd-as-x5.S
816 target/coldfire/iaudio/x5/lcd-x5.c
817 target/coldfire/iaudio/x5/m5636-x5.c
818 #ifndef BOOTLOADER
819 target/coldfire/iaudio/audio-iaudio.c
820 #endif
821 #endif /* SIMULATOR */
822 #endif /* IAUDIO_X5 */
824 #ifdef IAUDIO_M5
825 #ifndef SIMULATOR
826 target/coldfire/ata-as-coldfire.S
827 target/coldfire/pcf50606-coldfire.c
828 target/coldfire/iaudio/adc-iaudio.c
829 target/coldfire/iaudio/ata-iaudio.c
830 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
831 target/coldfire/iaudio/fmradio_i2c-iaudio.c
832 #endif
833 target/coldfire/iaudio/lcd-remote-as-iaudio.S
834 target/coldfire/iaudio/lcd-remote-iaudio.c
835 target/coldfire/iaudio/m5/backlight-m5.c
836 target/coldfire/iaudio/m5/button-m5.c
837 target/coldfire/iaudio/m5/lcd-as-m5.S
838 target/coldfire/iaudio/m5/lcd-m5.c
839 target/coldfire/iaudio/pcf50606-iaudio.c
840 target/coldfire/iaudio/power-x5m5.c
841 target/coldfire/iaudio/powermgmt-iaudio.c
842 target/coldfire/iaudio/system-iaudio.c
843 target/coldfire/iaudio/usb-iaudio.c
844 #ifndef BOOTLOADER
845 target/coldfire/iaudio/audio-iaudio.c
846 #endif
847 #endif /* SIMULATOR */
848 #endif /* IAUDIO_M5 */
850 #ifdef IAUDIO_M3
851 #ifndef SIMULATOR
852 target/coldfire/ata-as-coldfire.S
853 target/coldfire/iaudio/fmradio_i2c-iaudio.c
854 target/coldfire/iaudio/m3/adc-m3.c
855 target/coldfire/iaudio/m3/ata-m3.c
856 target/coldfire/iaudio/m3/backlight-m3.c
857 target/coldfire/iaudio/m3/button-m3.c
858 target/coldfire/iaudio/m3/lcd-m3.c
859 target/coldfire/iaudio/m3/lcd-as-m3.S
860 target/coldfire/iaudio/m3/power-m3.c
861 target/coldfire/iaudio/m3/powermgmt-m3.c
862 target/coldfire/iaudio/m3/system-m3.c
863 target/coldfire/iaudio/m3/usb-m3.c
864 #ifndef BOOTLOADER
865 target/coldfire/iaudio/audio-iaudio.c
866 #endif
867 #endif /* SIMULATOR */
868 #endif /* IAUDIO_M3 */
870 #ifdef IRIVER_IFP7XX_SERIES
871 #ifdef STUB
872 ifp_usb_serial.c
873 libc/sscanf.c
874 #endif /* STUB */
875 #endif /* IRIVER_IFP7XX_SERIES */
877 #ifdef IRIVER_H300_SERIES
878 #ifndef SIMULATOR
879 target/coldfire/ata-as-coldfire.S
880 target/coldfire/pcf50606-coldfire.c
881 target/coldfire/iriver/ata-iriver.c
882 target/coldfire/iriver/lcd-remote-iriver.c
883 target/coldfire/iriver/lcd-remote-as-iriver.S
884 target/coldfire/iriver/system-iriver.c
885 target/coldfire/iriver/fmradio_i2c-iriver.c
886 target/coldfire/iriver/h300/sw_i2c-h300.c
887 target/coldfire/iriver/h300/adc-h300.c
888 target/coldfire/iriver/h300/backlight-h300.c
889 target/coldfire/iriver/h300/button-h300.c
890 target/coldfire/iriver/h300/pcf50606-h300.c
891 target/coldfire/iriver/h300/lcd-as-h300.S
892 target/coldfire/iriver/h300/lcd-h300.c
893 target/coldfire/iriver/h300/power-h300.c
894 target/coldfire/iriver/h300/powermgmt-h300.c
895 target/coldfire/iriver/h300/usb-h300.c
896 #ifndef BOOTLOADER
897 target/coldfire/iriver/audio-iriver.c
898 target/coldfire/iriver/udacodec-iriver.c
899 #endif
900 #endif /* SIMULATOR */
901 #endif /* IRIVER_H300_SERIES */
903 #ifdef IRIVER_H100_SERIES
904 #ifndef SIMULATOR
905 drivers/sw_i2c.c
906 target/coldfire/ata-as-coldfire.S
907 target/coldfire/uart-coldfire.c
908 target/coldfire/iriver/ata-iriver.c
909 target/coldfire/iriver/lcd-remote-iriver.c
910 target/coldfire/iriver/lcd-remote-as-iriver.S
911 target/coldfire/iriver/system-iriver.c
912 target/coldfire/iriver/fmradio_i2c-iriver.c
913 target/coldfire/iriver/h100/adc-h100.c
914 target/coldfire/iriver/h100/backlight-h100.c
915 target/coldfire/iriver/h100/button-h100.c
916 target/coldfire/iriver/h100/lcd-as-h100.S
917 target/coldfire/iriver/h100/lcd-h100.c
918 target/coldfire/iriver/h100/power-h100.c
919 target/coldfire/iriver/h100/powermgmt-h100.c
920 #ifndef BOOTLOADER
921 target/coldfire/iriver/audio-iriver.c
922 target/coldfire/iriver/udacodec-iriver.c
923 target/coldfire/iriver/h100/spdif-h100.c
924 #endif
925 target/coldfire/iriver/h100/usb-h100.c
926 #endif /* SIMULATOR */
927 #endif /* IRIVER_H100_SERIES */
929 #ifdef IRIVER_H10
930 #ifndef SIMULATOR
931 target/arm/ata-as-arm.S
932 target/arm/ata-pp5020.c
933 target/arm/wmcodec-pp.c
934 target/arm/i2s-pp.c
935 target/arm/adc-pp5020.c
936 target/arm/iriver/h10/backlight-h10.c
937 target/arm/iriver/h10/button-h10.c
938 target/arm/iriver/h10/fmradio_i2c-h10.c
939 target/arm/iriver/h10/lcd-h10_20gb.c
940 target/arm/iriver/h10/lcd-as-h10.S
941 target/arm/iriver/h10/power-h10.c
942 target/arm/iriver/h10/powermgmt-h10.c
943 target/arm/usb-fw-pp502x.c
944 #endif /* SIMULATOR */
945 #endif /* IRIVER_H10 */
947 #ifdef IRIVER_H10_5GB
948 #ifndef SIMULATOR
949 target/arm/ata-as-arm.S
950 target/arm/ata-pp5020.c
951 target/arm/wmcodec-pp.c
952 target/arm/i2s-pp.c
953 target/arm/adc-pp5020.c
954 target/arm/iriver/h10/backlight-h10.c
955 target/arm/iriver/h10/button-h10.c
956 target/arm/iriver/h10/fmradio_i2c-h10.c
957 target/arm/iriver/h10/lcd-h10_5gb.c
958 target/arm/iriver/h10/power-h10.c
959 target/arm/iriver/h10/powermgmt-h10.c
960 target/arm/usb-fw-pp502x.c
961 #endif /* SIMULATOR */
962 #endif /* IRIVER_H10_5GB */
964 #ifdef GIGABEAT_F
965 #ifndef SIMULATOR
966 target/arm/bits-armv4.S
967 target/arm/lcd-as-memframe.S
968 target/arm/mmu-arm.S
969 target/arm/s3c2440/adc-s3c2440.c
970 target/arm/s3c2440/debug-s3c2440.c
971 target/arm/s3c2440/kernel-s3c2440.c
972 target/arm/s3c2440/lcd-s3c2440.c
973 target/arm/s3c2440/system-s3c2440.c
974 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
975 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
976 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
977 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
978 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
979 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
980 #ifndef BOOTLOADER
981 target/arm/s3c2440/i2c-s3c2440.c
982 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
983 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
984 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
985 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
986 #endif
987 #endif /* SIMULATOR */
988 #endif /* GIGABEAT_F */
990 #ifdef GIGABEAT_S
991 #ifndef SIMULATOR
992 target/arm/bits-armv6.S
993 target/arm/lcd-as-memframe.S
994 target/arm/mmu-armv6.S
995 target/arm/imx31/ata-imx31.c
996 target/arm/imx31/avic-imx31.c
997 target/arm/imx31/ccm-imx31.c
998 target/arm/imx31/debug-imx31.c
999 target/arm/imx31/dvfs_dptc-imx31.c
1000 target/arm/imx31/gpio-imx31.c
1001 target/arm/imx31/i2c-imx31.c
1002 target/arm/imx31/iomuxc-imx31.c
1003 target/arm/imx31/mc13783-imx31.c
1004 target/arm/imx31/mmu-imx31.c
1005 target/arm/imx31/rolo_restart_firmware.S
1006 target/arm/imx31/sdma-imx31.c
1007 target/arm/imx31/spi-imx31.c
1008 target/arm/imx31/uart-imx31.c
1009 target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
1010 target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
1011 target/arm/imx31/gigabeat-s/button-gigabeat-s.c
1012 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
1013 target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
1014 target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
1015 target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
1016 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
1017 target/arm/imx31/gigabeat-s/power-gigabeat-s.c
1018 target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
1019 target/arm/imx31/gigabeat-s/system-gigabeat-s.c
1020 target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
1021 target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
1022 #ifndef BOOTLOADER
1023 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
1024 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
1025 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
1026 target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
1027 target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
1028 #endif
1029 #endif /* SIMULATOR */
1030 #endif /* GIGABEAT_S */
1032 #if CONFIG_CPU == DM320
1033 target/arm/bits-armv4.S
1034 target/arm/tms320dm320/debug-dm320.c
1035 target/arm/tms320dm320/dsp-dm320.c
1036 target/arm/tms320dm320/i2c-dm320.c
1037 target/arm/tms320dm320/kernel-dm320.c
1038 target/arm/tms320dm320/spi-dm320.c
1039 target/arm/tms320dm320/system-dm320.c
1040 target/arm/tms320dm320/timer-dm320.c
1041 target/arm/tms320dm320/uart-dm320.c
1042 #endif /* CONFIG_CPU == DM320 */
1044 #ifdef MROBE_500
1045 #ifndef SIMULATOR
1046 target/arm/ata-as-arm.S
1047 #if !defined(LCD_USE_DMA)
1048 target/arm/lcd-as-memframe.S
1049 #endif
1050 target/arm/mmu-arm.S
1051 target/arm/tms320dm320/mrobe-500/crt0-board.S
1052 target/arm/tms320dm320/mrobe-500/adc-mr500.c
1053 target/arm/tms320dm320/mrobe-500/ata-mr500.c
1054 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
1055 target/arm/tms320dm320/mrobe-500/button-mr500.c
1056 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
1057 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
1058 #if defined(HAVE_REMOTE_LCD)
1059 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
1060 #endif
1061 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
1062 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
1063 target/arm/tms320dm320/mrobe-500/power-mr500.c
1064 target/arm/tms320dm320/mrobe-500/usb-mr500.c
1065 #endif /* SIMULATOR */
1066 #endif /* MROBE_500 */
1068 #ifdef CREATIVE_ZVx
1069 #ifndef SIMULATOR
1070 target/arm/ata-as-arm.S
1071 target/arm/lcd-as-memframe.S
1072 target/arm/mmu-arm.S
1073 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
1074 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
1075 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
1076 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
1077 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
1078 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
1079 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
1080 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
1081 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
1082 #endif /* SIMULATOR */
1083 #endif /* CREATIVE_ZVx */
1085 #ifdef MROBE_100
1086 #ifndef SIMULATOR
1087 #ifndef BOOTLOADER
1088 drivers/synaptics-mep.c
1089 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
1090 #endif /* BOOTLOADER */
1091 drivers/sw_i2c.c
1092 target/arm/ata-as-arm.S
1093 target/arm/ata-pp5020.c
1094 target/arm/wmcodec-pp.c
1095 target/arm/i2s-pp.c
1096 target/arm/adc-pp5020.c
1097 target/arm/olympus/mrobe-100/backlight-mr100.c
1098 target/arm/olympus/mrobe-100/button-mr100.c
1099 target/arm/olympus/mrobe-100/lcd-mr100.c
1100 target/arm/olympus/mrobe-100/lcd-as-mr100.S
1101 target/arm/olympus/mrobe-100/power-mr100.c
1102 target/arm/olympus/mrobe-100/powermgmt-mr100.c
1103 target/arm/usb-fw-pp502x.c
1104 #endif /* SIMULATOR */
1105 #endif /* MROBE_100 */
1107 #ifdef TATUNG_TPJ1022
1108 #ifndef SIMULATOR
1109 target/arm/ata-as-arm.S
1110 target/arm/ata-pp5020.c
1111 target/arm/wmcodec-pp.c
1112 target/arm/i2s-pp.c
1113 target/arm/adc-pp5020.c
1114 target/arm/tatung/tpj1022/backlight-tpj1022.c
1115 target/arm/tatung/tpj1022/button-tpj1022.c
1116 target/arm/tatung/tpj1022/lcd-tpj1022.c
1117 target/arm/tatung/tpj1022/power-tpj1022.c
1118 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
1119 target/arm/usb-fw-pp502x.c
1120 #endif /* SIMULATOR */
1121 #endif /* TATUNG_TPJ1022 */
1123 #ifdef IPOD_4G
1124 #ifndef SIMULATOR
1125 drivers/pcf50605.c
1126 target/arm/wmcodec-pp.c
1127 target/arm/i2s-pp.c
1128 target/arm/ata-as-arm.S
1129 target/arm/ata-pp5020.c
1130 target/arm/ipod/adc-ipod-pcf.c
1131 target/arm/ipod/backlight-4g_color.c
1132 target/arm/ipod/button-clickwheel.c
1133 target/arm/ipod/lcd-as-gray.S
1134 target/arm/ipod/lcd-gray.c
1135 target/arm/ipod/power-ipod.c
1136 target/arm/ipod/powermgmt-ipod-pcf.c
1137 target/arm/usb-fw-pp502x.c
1138 #endif /* SIMULATOR */
1139 #endif /* IPOD_4G */
1141 #ifdef IPOD_COLOR
1142 #ifndef SIMULATOR
1143 drivers/pcf50605.c
1144 target/arm/ata-as-arm.S
1145 target/arm/ata-pp5020.c
1146 target/arm/wmcodec-pp.c
1147 target/arm/i2s-pp.c
1148 target/arm/ipod/adc-ipod-pcf.c
1149 target/arm/ipod/backlight-4g_color.c
1150 target/arm/ipod/button-clickwheel.c
1151 target/arm/ipod/lcd-color_nano.c
1152 target/arm/ipod/lcd-as-color-nano.S
1153 target/arm/ipod/power-ipod.c
1154 target/arm/ipod/powermgmt-ipod-pcf.c
1155 target/arm/usb-fw-pp502x.c
1156 #endif /* SIMULATOR */
1157 #endif /* IPOD_COLOR */
1159 #ifdef IPOD_NANO
1160 #ifndef SIMULATOR
1161 drivers/pcf50605.c
1162 target/arm/ata-as-arm.S
1163 target/arm/ata-pp5020.c
1164 target/arm/wmcodec-pp.c
1165 target/arm/i2s-pp.c
1166 target/arm/ipod/adc-ipod-pcf.c
1167 target/arm/ipod/backlight-nano_video.c
1168 target/arm/ipod/button-clickwheel.c
1169 target/arm/ipod/lcd-color_nano.c
1170 target/arm/ipod/lcd-as-color-nano.S
1171 target/arm/ipod/power-ipod.c
1172 target/arm/ipod/powermgmt-ipod-pcf.c
1173 target/arm/usb-fw-pp502x.c
1174 #endif /* SIMULATOR */
1175 #endif /* IPOD_NANO */
1177 #ifdef IPOD_VIDEO
1178 #ifndef SIMULATOR
1179 drivers/pcf50605.c
1180 target/arm/ata-as-arm.S
1181 target/arm/ata-pp5020.c
1182 target/arm/wmcodec-pp.c
1183 target/arm/i2s-pp.c
1184 target/arm/ipod/adc-ipod-pcf.c
1185 target/arm/ipod/backlight-nano_video.c
1186 target/arm/ipod/button-clickwheel.c
1187 target/arm/ipod/power-ipod.c
1188 target/arm/ipod/powermgmt-ipod-pcf.c
1189 target/arm/ipod/video/lcd-as-video.S
1190 target/arm/ipod/video/lcd-video.c
1191 #ifndef BOOTLOADER
1192 target/arm/ipod/video/battery-video.c
1193 #endif /* BOOTLOADER */
1194 target/arm/usb-fw-pp502x.c
1195 #endif /* SIMULATOR */
1196 #endif /* IPOD_VIDEO */
1198 #ifdef IPOD_3G
1199 #ifndef SIMULATOR
1200 drivers/pcf50605.c
1201 target/arm/ata-pp5002.c
1202 target/arm/wmcodec-pp.c
1203 target/arm/i2s-pp.c
1204 target/arm/ipod/adc-ipod-pcf.c
1205 target/arm/ipod/3g/backlight-3g.c
1206 target/arm/ipod/button-1g-3g.c
1207 target/arm/ipod/lcd-as-gray.S
1208 target/arm/ipod/lcd-gray.c
1209 target/arm/ipod/power-ipod.c
1210 target/arm/ipod/powermgmt-ipod-pcf.c
1211 target/arm/usb-fw-pp5002.c
1212 #endif /* SIMULATOR */
1213 #endif /* IPOD_3G */
1215 #ifdef IPOD_1G2G
1216 #ifndef SIMULATOR
1217 target/arm/ata-pp5002.c
1218 target/arm/wmcodec-pp.c
1219 target/arm/i2s-pp.c
1220 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1221 target/arm/ipod/1g2g/backlight-1g2g.c
1222 target/arm/ipod/1g2g/powermgmt-1g2g.c
1223 target/arm/ipod/button-1g-3g.c
1224 target/arm/ipod/lcd-as-gray.S
1225 target/arm/ipod/lcd-gray.c
1226 target/arm/ipod/power-ipod.c
1227 target/arm/usb-fw-pp5002.c
1228 #endif /* SIMULATOR */
1229 #endif /* IPOD_1G2G */
1231 #ifdef IPOD_MINI
1232 #ifndef SIMULATOR
1233 drivers/pcf50605.c
1234 target/arm/ata-as-arm.S
1235 target/arm/ata-pp5020.c
1236 target/arm/wmcodec-pp.c
1237 target/arm/i2s-pp.c
1238 target/arm/ipod/adc-ipod-pcf.c
1239 target/arm/ipod/backlight-mini1g_mini2g.c
1240 target/arm/ipod/button-mini1g.c
1241 target/arm/ipod/lcd-as-gray.S
1242 target/arm/ipod/lcd-gray.c
1243 target/arm/ipod/power-ipod.c
1244 target/arm/ipod/powermgmt-ipod-pcf.c
1245 target/arm/usb-fw-pp502x.c
1246 #endif /* SIMULATOR */
1247 #endif /* IPOD_MINI */
1249 #ifdef IPOD_MINI2G
1250 #ifndef SIMULATOR
1251 drivers/pcf50605.c
1252 target/arm/ata-as-arm.S
1253 target/arm/ata-pp5020.c
1254 target/arm/wmcodec-pp.c
1255 target/arm/i2s-pp.c
1256 target/arm/ipod/adc-ipod-pcf.c
1257 target/arm/ipod/backlight-mini1g_mini2g.c
1258 target/arm/ipod/button-clickwheel.c
1259 target/arm/ipod/lcd-as-gray.S
1260 target/arm/ipod/lcd-gray.c
1261 target/arm/ipod/power-ipod.c
1262 target/arm/ipod/powermgmt-ipod-pcf.c
1263 target/arm/usb-fw-pp502x.c
1264 #endif /* SIMULATOR */
1265 #endif /* IPOD_MINI2G */
1267 #ifdef IRIVER_IFP7XX
1268 #ifndef SIMULATOR
1269 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1270 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1271 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1272 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1273 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1274 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1275 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1276 #ifndef BOOTLOADER
1277 target/arm/pnx0101/pcm-pnx0101.c
1278 #endif /* BOOTLOADER */
1279 #endif /* SIMULATOR */
1280 #endif /* IRIVER_IFP7XX */
1282 #ifdef LOGIK_DAX
1283 #ifndef SIMULATOR
1284 drivers/nand_id.c
1285 target/arm/lcd-ssd1815.c
1286 target/arm/tcc77x/adc-tcc77x.c
1287 target/arm/tcc77x/kernel-tcc77x.c
1288 target/arm/tcc77x/powermgmt-tcc77x.c
1289 target/arm/tcc77x/system-tcc77x.c
1290 target/arm/tcc77x/timer-tcc77x.c
1291 target/arm/usb-tcc.c
1292 target/arm/tcc77x/logikdax/button-logikdax.c
1293 target/arm/tcc77x/logikdax/power-logikdax.c
1294 #ifndef BOOTLOADER
1295 target/arm/wmcodec-telechips.c
1296 target/arm/tcc77x/debug-tcc77x.c
1297 target/arm/pcm-telechips.c
1298 target/arm/tcc77x/logikdax/audio-logikdax.c
1299 #endif /* BOOTLOADER */
1300 #endif /* SIMULATOR */
1301 #endif /* LOGIK_DAX */
1303 #ifdef SANSA_M200
1304 #ifndef SIMULATOR
1305 drivers/nand_id.c
1306 target/arm/lcd-ssd1815.c
1307 target/arm/tcc77x/adc-tcc77x.c
1308 target/arm/tcc77x/kernel-tcc77x.c
1309 target/arm/tcc77x/powermgmt-tcc77x.c
1310 target/arm/tcc77x/system-tcc77x.c
1311 target/arm/tcc77x/timer-tcc77x.c
1312 target/arm/usb-tcc.c
1313 target/arm/tcc77x/m200/button-m200.c
1314 target/arm/tcc77x/m200/power-m200.c
1315 #ifndef BOOTLOADER
1316 target/arm/wmcodec-telechips.c
1317 target/arm/tcc77x/debug-tcc77x.c
1318 target/arm/pcm-telechips.c
1319 target/arm/tcc77x/m200/audio-m200.c
1320 #endif /* BOOTLOADER */
1321 #endif /* SIMULATOR */
1322 #endif /* SANSA_M200 */
1324 #ifdef SANSA_C100
1325 #ifndef SIMULATOR
1326 drivers/nand_id.c
1327 target/arm/usb-tcc.c
1328 target/arm/tcc77x/system-tcc77x.c
1329 target/arm/tcc77x/kernel-tcc77x.c
1330 target/arm/tcc77x/timer-tcc77x.c
1331 target/arm/tcc77x/adc-tcc77x.c
1332 target/arm/tcc77x/powermgmt-tcc77x.c
1333 target/arm/tcc77x/c100/lcd-S6B33B2.c
1334 target/arm/tcc77x/c100/button-c100.c
1335 target/arm/tcc77x/c100/power-c100.c
1336 #ifndef BOOTLOADER
1337 target/arm/tcc77x/debug-tcc77x.c
1338 target/arm/pcm-telechips.c
1339 target/arm/tcc77x/c100/audio-c100.c
1340 #endif /* BOOTLOADER */
1341 #endif /* SIMULATOR */
1342 #endif /* SANSA_C100 */
1344 #ifdef SANSA_CLIPPLUS
1345 #ifndef SIMULATOR
1346 target/arm/as3525/lcd-ssd1303.c
1347 target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
1348 target/arm/as3525/sansa-clipplus/button-clip.c
1349 target/arm/as3525/sansa-clipplus/backlight-clip.c
1350 #ifndef BOOTLOADER
1351 target/arm/powermgmt-ascodec.c
1352 target/arm/as3525/sansa-clipplus/powermgmt-clipplus.c
1353 target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
1354 target/arm/as3525/tuner-as3525v2.c
1355 #endif /* !BOOTLOADER */
1356 #endif /* !SIMULATOR */
1357 #endif /* SANSA_CLIPPLUS */
1359 #ifdef SANSA_CLIPV2
1360 #ifndef SIMULATOR
1361 target/arm/as3525/lcd-ssd1303.c
1362 target/arm/as3525/sansa-clipv2/lcd-clipv2.c
1363 target/arm/as3525/sansa-clipv2/button-clip.c
1364 target/arm/as3525/sansa-clipv2/backlight-clipv2.c
1365 #ifndef BOOTLOADER
1366 target/arm/powermgmt-ascodec.c
1367 target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
1368 target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
1369 #endif /* !BOOTLOADER */
1370 #endif /* !SIMULATOR */
1371 #endif /* SANSA_CLIPV2 */
1373 #ifdef SANSA_CLIP
1374 #ifndef SIMULATOR
1375 target/arm/as3525/lcd-ssd1303.c
1376 target/arm/as3525/sansa-clip/lcd-clip.c
1377 target/arm/as3525/sansa-clip/button-clip.c
1378 #ifndef BOOTLOADER
1379 target/arm/powermgmt-ascodec.c
1380 target/arm/as3525/sansa-clip/powermgmt-clip.c
1381 target/arm/as3525/sansa-clip/lcd-as-clip.S
1382 #endif /* !BOOTLOADER */
1383 #endif /* !SIMULATOR */
1384 #endif /* SANSA_CLIP */
1386 #ifdef SANSA_E200V2
1387 #ifndef SIMULATOR
1388 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1389 target/arm/as3525/button-e200v2-fuze.c
1390 target/arm/as3525/backlight-e200v2-fuze.c
1391 target/arm/as3525/dbop-as3525.c
1392 #ifndef BOOTLOADER
1393 target/arm/powermgmt-ascodec.c
1394 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1395 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1396 #endif /* !BOOTLOADER */
1397 #endif /* !SIMULATOR */
1398 #endif /* SANSA_E200V2 */
1400 #ifdef SANSA_C200V2
1401 #ifndef SIMULATOR
1402 target/arm/lcd-c200_c200v2.c
1403 target/arm/as3525/sansa-c200v2/button-c200v2.c
1404 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1405 target/arm/as3525/dbop-as3525.c
1406 #ifndef BOOTLOADER
1407 target/arm/powermgmt-ascodec.c
1408 target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
1409 #endif /* !BOOTLOADER */
1410 #endif /* !SIMULATOR */
1411 #endif /* SANSA_E200V2 */
1413 #ifdef SANSA_M200V4
1414 #ifndef SIMULATOR
1415 target/arm/lcd-ssd1815.c
1416 target/arm/as3525/sansa-m200v4/button-m200v4.c
1417 #ifndef BOOTLOADER
1418 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1419 #endif /* !BOOTLOADER */
1420 #endif /* !SIMULATOR */
1421 #endif /* SANSA_M200V4 */
1423 #ifdef SANSA_FUZE
1424 #ifndef SIMULATOR
1425 target/arm/as3525/button-e200v2-fuze.c
1426 target/arm/as3525/lcd-fuze.c
1427 target/arm/as3525/sansa-fuze/lcd-fuzev1.c
1428 target/arm/as3525/backlight-e200v2-fuze.c
1429 target/arm/as3525/dbop-as3525.c
1430 #ifndef BOOTLOADER
1431 target/arm/powermgmt-ascodec.c
1432 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1433 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1434 #endif /* !BOOTLOADER */
1435 #endif /* !SIMULATOR */
1436 #endif /* SANSA_FUZE */
1438 #ifdef SANSA_FUZEV2
1439 #ifndef SIMULATOR
1440 target/arm/as3525/tuner-as3525v2.c
1441 target/arm/as3525/lcd-fuze.c
1442 target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
1443 target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
1444 target/arm/as3525/sansa-fuzev2/button-fuzev2.c
1445 target/arm/as3525/dbop-as3525.c
1446 #ifndef BOOTLOADER
1447 target/arm/powermgmt-ascodec.c
1448 target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
1449 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1450 #endif /* !BOOTLOADER */
1451 #endif /* !SIMULATOR */
1452 #endif /* SANSA_FUZEV2 */
1454 #ifdef SANSA_FUZEPLUS
1455 #ifndef SIMULATOR
1456 #ifndef BOOTLOADER
1457 drivers/synaptics-rmi.c
1458 drivers/generic_i2c.c
1459 target/arm/imx233/sansa-fuzeplus/fmradio-i2c-fuzeplus.c
1460 #endif
1461 target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
1462 target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
1463 target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c
1464 #endif /* SIMULATOR */
1465 #endif
1467 #ifdef IAUDIO_7
1468 #ifndef SIMULATOR
1469 drivers/nand_id.c
1470 drivers/pcf50606.c
1471 target/arm/usb-tcc.c
1472 target/arm/tcc77x/system-tcc77x.c
1473 target/arm/tcc77x/kernel-tcc77x.c
1474 target/arm/tcc77x/timer-tcc77x.c
1475 target/arm/tcc77x/adc-tcc77x.c
1476 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1477 target/arm/tcc77x/iaudio7/power-iaudio7.c
1478 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1479 target/arm/tcc77x/iaudio7/button-iaudio7.c
1480 target/arm/tcc77x/iaudio7/ata2501.c
1481 #ifndef BOOTLOADER
1482 target/arm/wmcodec-telechips.c
1483 target/arm/pcm-telechips.c
1484 target/arm/tcc77x/debug-tcc77x.c
1485 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1486 #endif /* BOOTLOADER */
1487 #endif /* SIMULATOR */
1488 #endif /* IAUDIO_7 */
1490 #ifdef COWON_D2
1491 #ifndef SIMULATOR
1492 drivers/nand_id.c
1493 drivers/pcf50606.c
1494 drivers/pcf50635.c
1495 drivers/tsc200x.c
1496 target/arm/lcd-as-memframe.S
1497 target/arm/tcc780x/adc-tcc780x.c
1498 target/arm/tcc780x/system-tcc780x.c
1499 target/arm/tcc780x/kernel-tcc780x.c
1500 target/arm/tcc780x/sd-tcc780x.c
1501 target/arm/tcc780x/cowond2/button-cowond2.c
1502 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1503 target/arm/tcc780x/cowond2/lcd-cowond2.c
1504 target/arm/tcc780x/cowond2/power-cowond2.c
1505 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1506 target/arm/tcc780x/cowond2/backlight-cowond2.c
1507 target/arm/usb-tcc.c
1508 target/arm/mmu-arm.S
1509 #ifndef BOOTLOADER
1510 target/arm/tcc780x/timer-tcc780x.c
1511 target/arm/wmcodec-telechips.c
1512 target/arm/tcc780x/debug-tcc780x.c
1513 target/arm/pcm-telechips.c
1514 target/arm/tcc780x/cowond2/audio-cowond2.c
1515 #endif /* BOOTLOADER */
1516 #endif /* SIMULATOR */
1517 #endif /* COWON_D2 */
1519 #ifdef CPU_S5L870X
1520 target/arm/mmu-arm.S
1521 #endif
1523 #ifdef MEIZU_M6SL
1524 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1525 drivers/qt1106.c
1526 #ifndef SIMULATOR
1527 #ifndef BOOTLOADER
1528 #endif /* BOOTLOADER */
1529 #endif /* SIMULATOR */
1530 #endif /* MEIZU_M6SL */
1532 #ifdef MEIZU_M6SP
1533 target/arm/s5l8700/backlight-meizu.c
1534 target/arm/s5l8700/power-meizu.c
1535 target/arm/s5l8700/kernel-s5l8700.c
1536 target/arm/s5l8700/meizu-m6sp/button-m6sp.c
1537 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1538 #ifndef SIMULATOR
1539 #ifndef BOOTLOADER
1540 drivers/generic_i2c.c
1541 drivers/rtc/rtc_s35390a.c
1542 target/arm/s5l8700/adc-s5l8700.c
1543 target/arm/s5l8700/audio-meizu.c
1544 target/arm/s5l8700/debug-s5l8700.c
1545 target/arm/s5l8700/dma-s5l8700.c
1546 target/arm/s5l8700/ftl-meizu.c
1547 target/arm/s5l8700/nand-meizu.c
1548 target/arm/s5l8700/fmradio-i2c-meizu.c
1549 target/arm/s5l8700/pcm-s5l8700.c
1550 target/arm/s5l8700/powermgmt-meizu.c
1551 target/arm/s5l8700/usb-s5l8700.c
1552 target/arm/s5l8700/wmcodec-s5l8700.c
1553 #endif /* BOOTLOADER */
1554 #endif /* SIMULATOR */
1555 #endif /* MEIZU_M6SP */
1557 #ifdef MEIZU_M3
1558 target/arm/s5l8700/backlight-meizu.c
1559 target/arm/s5l8700/kernel-s5l8700.c
1560 target/arm/s5l8700/meizu-m3/lcd-m3.c
1561 drivers/qt1106.c
1562 #ifndef SIMULATOR
1563 #ifndef BOOTLOADER
1564 target/arm/s5l8700/dma-s5l8700.c
1565 target/arm/s5l8700/pcm-s5l8700.c
1566 target/arm/s5l8700/udacodec-meizu.c
1567 #endif /* BOOTLOADER */
1568 #endif /* SIMULATOR */
1569 #endif /* MEIZU_M3 */
1571 #ifdef IPOD_NANO2G
1572 #ifndef SIMULATOR
1573 target/arm/ipod/button-clickwheel.c
1574 target/arm/s5l8700/postmortemstub.S
1575 target/arm/s5l8700/kernel-s5l8700.c
1576 target/arm/s5l8700/dma-s5l8700.c
1577 target/arm/s5l8700/system-s5l8700.c
1578 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1579 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1580 target/arm/s5l8700/ipodnano2g/lcd-asm-nano2g.S
1581 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1582 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1583 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1584 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1585 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1586 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1587 #ifndef BOOTLOADER
1588 target/arm/usb-s3c6400x.c
1589 target/arm/s5l8700/timer-s5l8700.c
1590 target/arm/s5l8700/debug-s5l8700.c
1591 target/arm/s5l8700/pcm-s5l8700.c
1592 target/arm/s5l8700/wmcodec-s5l8700.c
1593 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1594 target/arm/s5l8700/ipodnano2g/adc-nano2g.c
1595 #endif
1596 #endif
1597 #endif
1599 #ifdef IPOD_6G
1600 #ifndef SIMULATOR
1601 target/arm/ipod/button-clickwheel.c
1602 target/arm/s5l8702/ipod6g/storage_ata-ipod6g.c
1603 target/arm/s5l8702/ipod6g/cscodec-ipod6g.c
1604 target/arm/s5l8702/ipod6g/backlight-ipod6g.c
1605 target/arm/s5l8702/ipod6g/powermgmt-ipod6g.c
1606 target/arm/s5l8702/ipod6g/power-ipod6g.c
1607 target/arm/s5l8702/kernel-s5l8702.c
1608 target/arm/s5l8702/system-s5l8702.c
1609 target/arm/s5l8702/ipod6g/lcd-ipod6g.c
1610 target/arm/s5l8702/ipod6g/lcd-asm-ipod6g.S
1611 #if 0 //TODO
1612 target/arm/s5l8702/postmortemstub.S
1613 #endif
1614 target/arm/s5l8702/ipod6g/pmu-ipod6g.c
1615 target/arm/s5l8702/ipod6g/rtc-ipod6g.c
1616 #ifndef BOOTLOADER
1617 target/arm/usb-s3c6400x.c
1618 target/arm/s5l8702/timer-s5l8702.c
1619 target/arm/s5l8702/debug-s5l8702.c
1620 target/arm/s5l8702/pcm-s5l8702.c
1621 target/arm/s5l8702/ipod6g/audio-ipod6g.c
1622 target/arm/s5l8702/ipod6g/adc-ipod6g.c
1623 #endif
1624 #endif
1625 #endif
1627 #ifndef SIMULATOR
1628 #if CONFIG_CPU == RK27XX
1629 target/arm/rk27xx/kernel-rk27xx.c
1630 target/arm/rk27xx/system-rk27xx.c
1631 target/arm/rk27xx/timer-rk27xx.c
1632 target/arm/rk27xx/backlight-rk27xx.c
1633 target/arm/rk27xx/lcd-rk27xx.c
1634 target/arm/rk27xx/adc-rk27xx.c
1635 target/arm/rk27xx/sd-rk27xx.c
1636 target/arm/rk27xx/ftl-rk27xx.c
1637 #endif
1639 #if defined(RK27_GENERIC)
1640 target/arm/rk27xx/rk27generic/button-rk27generic.c
1641 #endif
1642 #endif
1644 #ifndef SIMULATOR
1645 #if CONFIG_CPU == JZ4732
1646 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1647 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1648 target/mips/ingenic_jz47xx/debug-jz4740.c
1649 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1650 target/mips/ingenic_jz47xx/kernel-jz4740.c
1651 target/mips/ingenic_jz47xx/i2c-jz4740.c
1652 target/mips/ingenic_jz47xx/lcd-jz4740.c
1653 target/mips/ingenic_jz47xx/system-jz4740.c
1654 target/mips/ingenic_jz47xx/usb-jz4740.c
1655 target/mips/ingenic_jz47xx/timer-jz4740.c
1656 #ifndef BOOTLOADER
1657 target/mips/ingenic_jz47xx/codec-jz4740.c
1658 target/mips/ingenic_jz47xx/pcm-jz4740.c
1659 #endif /* BOOTLOADER */
1660 drivers/nand_id.c
1661 #endif /* CONFIG_CPU == JZ4732 */
1663 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1664 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1665 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1666 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1667 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1668 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1669 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1671 #ifdef ONDA_VX767
1672 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1673 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1674 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1675 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1676 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1677 #endif /* ONDA_VX767 */
1679 #if defined(LYRE_PROTO1)
1680 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1681 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1682 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1683 target/arm/at91sam/lyre_proto1/crt0.S
1684 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1685 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1686 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1687 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1688 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1689 #endif
1690 #endif /* SIMULATOR */
1692 #if defined(MINI2440)
1693 #ifndef SIMULATOR
1694 target/arm/bits-armv4.S
1695 target/arm/lcd-as-memframe.S
1696 target/arm/mmu-arm.S
1697 target/arm/s3c2440/debug-s3c2440.c
1698 target/arm/s3c2440/dma-s3c2440.c
1699 target/arm/s3c2440/kernel-s3c2440.c
1700 target/arm/s3c2440/lcd-s3c2440.c
1701 target/arm/s3c2440/sd-s3c2440.c
1702 target/arm/s3c2440/system-s3c2440.c
1703 target/arm/s3c2440/uart-s3c2440.c
1704 target/arm/s3c2440/adc-s3c2440.c
1705 target/arm/s3c2440/i2c-s3c2440.c
1706 target/arm/s3c2440/mini2440/backlight-mini2440.c
1707 target/arm/s3c2440/mini2440/button-mini2440.c
1708 target/arm/s3c2440/mini2440/led-mini2440.c
1709 target/arm/s3c2440/mini2440/power-mini2440.c
1710 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1711 #ifndef BOOTLOADER
1712 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1713 target/arm/s3c2440/mini2440/pcm-mini2440.c
1714 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
1715 #endif
1716 #endif /* SIMULATOR */
1717 #endif /* MINI2440 */
1719 #ifdef SAMSUNG_YH820
1720 #ifndef SIMULATOR
1721 target/arm/ata-as-arm.S
1722 target/arm/ata-pp5020.c
1723 target/arm/adc-pp5020.c
1724 target/arm/i2s-pp.c
1725 target/arm/usb-fw-pp502x.c
1726 target/arm/samsung/akcodec-yh82x_yh92x.c
1727 target/arm/samsung/button-yh82x_yh92x.c
1728 target/arm/samsung/power-yh82x_yh92x.c
1729 target/arm/samsung/yh820/backlight-yh820.c
1730 target/arm/samsung/yh820/lcd-yh820.c
1731 target/arm/samsung/yh820/lcd-as-yh820.S
1732 target/arm/samsung/yh820/powermgmt-yh820.c
1733 #endif /* SIMULATOR */
1734 #endif /* SAMSUNG_YH820 */
1736 #ifdef SAMSUNG_YH920
1737 #ifndef SIMULATOR
1738 target/arm/ata-as-arm.S
1739 target/arm/ata-pp5020.c
1740 target/arm/adc-pp5020.c
1741 target/arm/i2s-pp.c
1742 target/arm/usb-fw-pp502x.c
1743 target/arm/samsung/akcodec-yh82x_yh92x.c
1744 target/arm/samsung/button-yh82x_yh92x.c
1745 target/arm/samsung/power-yh82x_yh92x.c
1746 target/arm/samsung/yh920/backlight-yh920.c
1747 target/arm/samsung/yh920/lcd-yh920.c
1748 target/arm/samsung/yh920/lcd-as-yh920.S
1749 target/arm/samsung/yh920/powermgmt-yh920.c
1750 #endif /* SIMULATOR */
1751 #endif /* SAMSUNG_YH920 */
1753 #ifdef SAMSUNG_YH925
1754 #ifndef SIMULATOR
1755 target/arm/ata-as-arm.S
1756 target/arm/ata-pp5020.c
1757 target/arm/adc-pp5020.c
1758 target/arm/i2s-pp.c
1759 target/arm/usb-fw-pp502x.c
1760 target/arm/samsung/akcodec-yh82x_yh92x.c
1761 target/arm/samsung/button-yh82x_yh92x.c
1762 target/arm/samsung/power-yh82x_yh92x.c
1763 target/arm/samsung/yh925/backlight-yh925.c
1764 target/arm/samsung/yh925/lcd-yh925.c
1765 target/arm/samsung/yh925/lcd-as-yh925.S
1766 target/arm/samsung/yh925/powermgmt-yh925.c
1767 #endif /* SIMULATOR */
1768 #endif /* SAMSUNG_YH925 */
1770 #ifdef SAMSUNG_YPS3
1771 /* TODO: currently including all files for the bootloader DFU test program */
1772 tuner.c
1773 drivers/tuner/si4700.c
1774 target/arm/s5l8700/adc-s5l8700.c
1775 target/arm/s5l8700/i2c-s5l8700.c
1776 target/arm/s5l8700/kernel-s5l8700.c
1777 target/arm/s5l8700/timer-s5l8700.c
1778 target/arm/s5l8700/wmcodec-s5l8700.c
1779 target/arm/s5l8700/yps3/button-yps3.c
1780 target/arm/s5l8700/yps3/lcd-yps3.c
1781 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1782 target/arm/s5l8700/yps3/backlight-yps3.c
1783 target/arm/s5l8700/yps3/nand-yps3.c
1784 target/arm/s5l8700/yps3/power-yps3.c
1785 #endif /* SAMSUNG_YPS3 */
1787 #ifdef PBELL_VIBE500
1788 #ifndef SIMULATOR
1789 drivers/synaptics-mep.c
1790 target/arm/ata-as-arm.S
1791 target/arm/ata-pp5020.c
1792 target/arm/wmcodec-pp.c
1793 target/arm/i2s-pp.c
1794 target/arm/adc-pp5020.c
1795 target/arm/pbell/vibe500/lcd-vibe500.c
1796 target/arm/pbell/vibe500/button-vibe500.c
1797 target/arm/pbell/vibe500/power-vibe500.c
1798 target/arm/pbell/vibe500/backlight-vibe500.c
1799 target/arm/pbell/vibe500/lcd-as-vibe500.S
1800 target/arm/pbell/vibe500/powermgmt-vibe500.c
1801 target/arm/usb-fw-pp502x.c
1802 #endif /* SIMULATOR */
1803 #endif
1805 #ifdef MPIO_HD200
1806 #ifndef SIMULATOR
1807 /* TODO: currently including all files */
1808 target/coldfire/ata-as-coldfire.S
1809 target/coldfire/mpio/system-mpio.c
1810 target/coldfire/mpio/power-mpio.c
1811 target/coldfire/mpio/backlight-mpio.c
1812 target/coldfire/mpio/usb-mpio.c
1813 target/coldfire/mpio/ata-mpio.c
1814 target/coldfire/mpio/adc-mpio.c
1815 target/coldfire/mpio/hd200/button-hd200.c
1816 target/coldfire/mpio/hd200/lcd-hd200.c
1817 target/coldfire/mpio/hd200/lcd-as-hd200.S
1818 target/coldfire/mpio/hd200/powermgmt-hd200.c
1819 #ifndef BOOTLOADER
1820 target/coldfire/mpio/audio-mpio.c
1821 target/coldfire/wmcodec-coldfire.c
1822 target/coldfire/mpio/fmradio_i2c-mpio.c
1823 #endif /* BOOTLOADER */
1824 #endif /* SIMULATOR */
1825 #endif
1827 #ifdef MPIO_HD300
1828 #ifndef SIMULATOR
1829 /* TODO: currently including all files */
1830 target/coldfire/ata-as-coldfire.S
1831 target/coldfire/mpio/system-mpio.c
1832 target/coldfire/mpio/power-mpio.c
1833 target/coldfire/mpio/backlight-mpio.c
1834 target/coldfire/mpio/usb-mpio.c
1835 target/coldfire/mpio/ata-mpio.c
1836 target/coldfire/mpio/adc-mpio.c
1837 target/coldfire/mpio/hd300/button-hd300.c
1838 target/coldfire/mpio/hd300/lcd-hd300.c
1839 target/coldfire/mpio/hd300/lcd-as-hd300.S
1840 target/coldfire/mpio/hd300/powermgmt-hd300.c
1841 #ifndef BOOTLOADER
1842 target/coldfire/mpio/audio-mpio.c
1843 target/coldfire/wmcodec-coldfire.c
1844 target/coldfire/mpio/fmradio_i2c-mpio.c
1845 #endif /* BOOTLOADER */
1846 #endif /* SIMULATOR */
1847 #endif
1849 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
1850 target/hosted/android/fs-android.c
1851 target/hosted/android/lcd-android.c
1852 target/hosted/android/lc-android.c
1853 target/hosted/android/button-android.c
1854 #ifdef DEBUG
1855 target/hosted/android/debug-android.c
1856 #endif
1857 target/hosted/android/kernel-android.c
1858 target/hosted/android/pcm-android.c
1859 target/hosted/android/powermgmt-android.c
1860 target/hosted/android/system-android.c
1861 target/hosted/android/telephony-android.c
1862 #ifdef APPLICATION
1863 target/hosted/android/app/button-application.c
1864 #endif
1865 drivers/audio/android.c
1866 thread.c
1867 #endif