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