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