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