Export runtime detected paths to lua scripts. Adapt stopwatch to not use
[maemo-rb.git] / firmware / SOURCES
blob18e76a895b4be6b7c2f313c0b08acc58ab926639
1 #undef unix /* causes problems with some files */
2 #undef linux
4 ata_idle_notify.c
5 events.c
6 backlight.c
7 buflib.c
8 core_alloc.c
9 general.c
10 load_code.c
11 powermgmt.c
12 #if (CONFIG_PLATFORM & PLATFORM_HOSTED)
14 #ifdef __linux__
15 target/hosted/cpuinfo-linux.c
16 #endif
18 #ifndef SAMSUNG_YPR0 /* uses as3514 rtc */
19 target/hosted/rtc.c
20 #endif
22 #if (CONFIG_PLATFORM & PLATFORM_ANDROID) == 0 && \
23     (defined(DEBUG) || defined(SIMULATOR)) /* sim should define DEBUG instead */
24 target/hosted/debug-hosted.c
25 #endif
27 #endif
28 system.c
29 usb.c
30 #ifdef ROCKBOX_HAS_LOGF
31 logf.c
32 #endif /* ROCKBOX_HAS_LOGF */
33 kernel.c
34 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
35 #ifdef RB_PROFILE
36 profile.c
37 #endif /* RB_PROFILE */
38 #if !defined(BOOTLOADER) || defined(CPU_SH)
39 rolo.c
40 #endif /* !defined(BOOTLOADER) || defined(CPU_SH) */
41 thread.c
42 timer.c
43 debug.c
44 #endif /* PLATFORM_NATIVE */
45 panic.c
47 #ifdef HAVE_SDL
48 target/hosted/sdl/button-sdl.c
49 target/hosted/sdl/kernel-sdl.c
50 #ifdef HAVE_LCD_BITMAP
51 target/hosted/sdl/lcd-bitmap.c
52 #elif defined(HAVE_LCD_CHARCELLS)
53 target/hosted/sdl/lcd-charcells.c
54 #endif
55 #ifdef HAVE_REMOTE_LCD
56 target/hosted/sdl/lcd-remote-bitmap.c
57 #endif
58 target/hosted/sdl/lcd-sdl.c
59 target/hosted/sdl/system-sdl.c
60 #ifdef HAVE_SDL_THREADS
61 target/hosted/sdl/thread-sdl.c
62 #else
63 thread.c
64 #endif
65 target/hosted/sdl/timer-sdl.c
66 #ifdef HAVE_TOUCHSCREEN
67 target/hosted/sdl/key_to_touch-sdl.c
68 #endif
69 #ifdef APPLICATION
70 target/hosted/sdl/app/button-application.c
71 #endif
72 #endif
74 #ifdef SAMSUNG_YPR0
75 drivers/adc-as3514.c
76 drivers/lcd-memframe.c
77 #if (CONFIG_RTC == RTC_AS3514)
78 drivers/rtc/rtc_as3514.c
79 #else
80 target/hosted/rtc.c
81 #endif
82 target/hosted/kernel-unix.c
83 target/hosted/filesystem-unix.c
84 target/hosted/lc-unix.c
85 target/hosted/ypr0/button-ypr0.c
86 target/hosted/ypr0/lcd-ypr0.c
87 target/hosted/ypr0/system-ypr0.c
88 thread.c
89 #ifdef HAVE_BACKLIGHT
90 target/hosted/ypr0/backlight-ypr0.c
91 #endif
92 target/hosted/ypr0/ascodec-ypr0.c
93 target/hosted/ypr0/powermgmt-ypr0.c
94 target/hosted/ypr0/gpio_ypr0.c
95 #endif
97 /* Maemo specific files */
98 #if (CONFIG_PLATFORM & PLATFORM_MAEMO)
99 target/hosted/maemo/maemo-thread.c
100 #endif
102 /* Standard library */
103 #if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(__MINGW32__) || defined(__CYGWIN__)
104 libc/errno.c
105 libc/strtok.c
106 /* alsa on linux requires a more advanced sprintf, i.e. not ours */
107 libc/sprintf.c
108 #endif /* PLATFORM_NATIVE || __MINGW32__ || __CYGWIN__ */
109 #if (CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(HAVE_ROCKBOX_C_LIBRARY)
110 libc/atoi.c
112 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
113 /* our ctype.[ch] comes from newlib and is incompitble with most desktop's ctype */
114 libc/ctype.c
115 #endif
117 libc/memchr.c
118 libc/memcmp.c
120 libc/qsort.c
121 libc/random.c
122 libc/strcat.c
123 libc/strchr.c
124 libc/strcmp.c
125 libc/strcpy.c
127 libc/strncmp.c
128 libc/strrchr.c
129 libc/strstr.c
130 libc/mktime.c
131 #endif /* CONFIG_PLATFORM || HAVE_ROCKBOX_C_LIBRARY */
133 /* Common */
134 common/version.c
135 common/config.c
136 common/crc32.c
137 #ifdef MI4_FORMAT
138 common/crc32-mi4.c
139 #endif
140 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
141 common/dir_uncached.c
142 common/file.c
143 common/disk.c
144 #endif /* PLATFORM_NATIVE */
145 #ifdef HAVE_DIRCACHE
146 common/dircache.c
147 #endif /* HAVE_DIRCACHE */
148 common/filefuncs.c
149 common/format.c
150 #ifdef APPLICATION
151 common/rbpaths.c
152 #endif
153 common/strcasecmp.c
154 common/strcasestr.c
155 common/strnatcmp.c
156 common/strlcat.c
157 common/strlcpy.c
158 common/structec.c
159 common/timefuncs.c
160 common/unicode.c
162 /* Display */
163 scroll_engine.c
165 #ifdef HAVE_LCD_CHARCELLS
166 drivers/lcd-charcell.c
167 drivers/lcd-charset-player.c
168 #endif /* HAVE_LCD_CHARCELLS */
170 #ifdef HAVE_LCD_BITMAP
171 arabjoin.c
172 bidi.c
173 font_cache.c
174 font.c
175 hangul.c
176 lru.c
177 #ifndef BOOTLOADER
178 screendump.c
179 #endif
180 #if LCD_DEPTH == 1
181 drivers/lcd-1bit-vert.c
182 #elif LCD_DEPTH == 2
183 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
184 drivers/lcd-2bit-horz.c
185 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
186 drivers/lcd-2bit-vert.c
187 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
188 drivers/lcd-2bit-vi.c
189 #endif /* LCD_PIXELFORMAT */
190 #elif LCD_DEPTH == 16
191 #if   defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
192 drivers/lcd-16bit-vert.c
193 #else
194 drivers/lcd-16bit.c
195 #endif
196 #endif /* LCD_DEPTH */
197 common/diacritic.c
198 #endif /* HAVE_LCD_BITMAP */
200 #ifdef HAVE_REMOTE_LCD
201 #if LCD_REMOTE_DEPTH == 1
202 drivers/lcd-remote-1bit-v.c
203 #elif LCD_REMOTE_DEPTH == 2
204 drivers/lcd-remote-2bit-vi.c
205 #endif /* LCD_REMOTE_DEPTH */
206 #endif /* HAVE_REMOTE_LCD */
208 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
209     || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
210 backlight-sw-fading.c
211 #endif /* CONFIG_BACKLIGHT_FADING */
213 /* Misc. */
214 drivers/led.c
215 drivers/button.c
216 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
217 #ifdef HAVE_DAC3550A
218 drivers/audio/dac3550a.c
219 #endif
220 #ifdef HAVE_SERIAL
221 drivers/serial.c
222 #endif
223 #endif /* PLATFORM_NATIVE */
224 #ifdef HAVE_TOUCHSCREEN
225 drivers/touchscreen.c
226 #endif
229 /* Storage */
230 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
231 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
232 drivers/ata_flash.c
233 #endif
234 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
235 target/arm/ata-nand-telechips.c
236 #endif
237 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
238 target/arm/s5l8700/ata-nand-s5l8700.c
239 #endif
240 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_RK27XX)
241 target/arm/rk27xx/ata-nand-rk27xx.c
242 #endif
243 #if (CONFIG_STORAGE & STORAGE_ATA) && !defined(IPOD_6G)
244 drivers/ata.c
245 #endif
246 #if (CONFIG_STORAGE & STORAGE_SD)
247 drivers/sd.c
248 #endif
249 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
250 drivers/ramdisk.c
251 #endif
252 storage.c
253 drivers/fat.c
254 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
255 sdmmc.c
256 #endif
257 #endif /* PLATFORM_NATIVE */
259 /* EEPROM */
260 #ifdef HAVE_EEPROM
261 drivers/eeprom_24cxx.c
262 #ifdef HAVE_EEPROM_SETTINGS
263 eeprom_settings.c
264 #endif /* HAVE_EEPROM_SETTINGS */
265 #endif /* HAVE_EEPROM */
267 /* RTC */
268 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
269 #if (CONFIG_RTC == RTC_M41ST84W)
270 drivers/rtc/rtc_m41st84w.c
271 #elif (CONFIG_RTC == RTC_PCF50606)
272 drivers/rtc/rtc_pcf50606.c
273 #elif (CONFIG_RTC == RTC_PCF50605)
274 drivers/rtc/rtc_pcf50605.c
275 #elif (CONFIG_RTC == RTC_E8564)
276 drivers/rtc/rtc_e8564.c
277 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
278 drivers/rtc/rtc_ds1339_ds3231.c
279 #elif (CONFIG_RTC == RTC_S3C2440)
280 drivers/rtc/rtc_s3c2440.c
281 #elif (CONFIG_RTC == RTC_AS3514)
282 drivers/rtc/rtc_as3514.c
283 #elif (CONFIG_RTC == RTC_RX5X348AB)
284 drivers/rtc/rtc_rx5x348ab.c
285 #elif (CONFIG_RTC == RTC_MR100)
286 drivers/rtc/rtc_mr100.c
287 #elif (CONFIG_RTC == RTC_MC13783)
288 drivers/rtc/rtc_mc13783.c
289 #elif (CONFIG_RTC == RTC_TCC77X)
290 drivers/rtc/rtc_tcc77x.c
291 #elif (CONFIG_RTC == RTC_JZ47XX)
292 drivers/rtc/rtc_jz4740.c
293 #elif (CONFIG_RTC == RTC_S35390A)
294 drivers/rtc/rtc_s35390a.c
295 #elif (CONFIG_RTC == RTC_S35380A)
296 drivers/rtc/rtc_s35380a.c
297 #elif (CONFIG_RTC == RTC_D2)
298 drivers/rtc/rtc_d2.c
299 #elif (CONFIG_RTC == RTC_IMX233)
300 drivers/rtc/rtc_imx233.c
301 #endif /* (CONFIG_RTC == RTC_) */
302 #endif /* PLATFORM_NATIVE */
304 #ifndef BOOTLOADER
305 /* Tuner */
306 #if CONFIG_TUNER
307 tuner.c
308 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
309 #if (CONFIG_TUNER & LV24020LP)
310 drivers/tuner/lv24020lp.c
311 #endif /* (CONFIG_TUNER & LV24020LP) */
312 #if (CONFIG_TUNER & S1A0903X01)
313 drivers/fmradio.c
314 drivers/tuner/s1a0903x01.c
315 #endif /* (CONFIG_TUNER & S1A0903X01) */
316 #if (CONFIG_TUNER & TEA5760)
317 drivers/tuner/tea5760uk.c
318 #endif
319 #if (CONFIG_TUNER & TEA5767)
320 drivers/tuner/tea5767.c
321 #endif /* (CONFIG_TUNER & TEA5767) */
322 #if (CONFIG_TUNER & SI4700)
323 drivers/tuner/si4700.c
324 #endif /* (CONFIG_TUNER & SI4700) */
325 #if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
326 drivers/tuner/ipod_remote_tuner.c
327 #endif /* (CONFIG_TUNER & IPOD_REMOTE_TUNER) */
328 #if (CONFIG_TUNER & RDA5802)
329 drivers/tuner/rda5802.c
330 #endif /* (CONFIG_TUNER & RDA5802) */
331 #if defined(HAVE_RDS_CAP)
332 drivers/rds.c
333 #endif /* HAVE_RDS_CAP */
334 #endif /* PLATFORM_NATIVE */
335 #endif /* CONFIG_TUNER */
336 #endif /* BOOTLOADER */
338 /* Sound */
339 sound.c
341 #if CONFIG_CODEC == SWCODEC
343 #ifndef BOOTLOADER
344 pcm_sampr.c
345 pcm.c
346 pcm_mixer.c
347 #ifdef HAVE_RECORDING
348 enc_base.c
349 #endif /* HAVE_RECORDING */
350 #endif /* BOOTLOADER */
351 #endif /* SWCODEC */
353 /* Audio codec */
354 #if (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER)
355 #if defined(HAVE_UDA1380)
356 drivers/audio/uda1380.c
357 #elif defined(HAVE_WM8751) \
358    || defined(HAVE_WM8750)
359 drivers/audio/wm8751.c
360 #elif defined(HAVE_WM8978)
361 drivers/audio/wm8978.c
362 #elif defined(HAVE_WM8975)
363 drivers/audio/wm8975.c
364 #elif defined(HAVE_WM8985)
365 drivers/audio/wm8985.c
366 #elif defined(HAVE_WM8758)
367 drivers/audio/wm8758.c
368 #elif defined(HAVE_WM8711) \
369    || defined(HAVE_WM8721) \
370    || defined(HAVE_WM8731)
371 drivers/audio/wm8731.c
372 #elif defined(HAVE_AS3514)
373 drivers/audio/as3514.c
374 #elif defined(HAVE_TLV320)
375 drivers/audio/tlv320.c
376 #elif defined(HAVE_MAS35XX)
377 drivers/audio/mas35xx.c
378 #elif defined(HAVE_AK4537)
379 drivers/audio/ak4537.c
380 #elif defined(HAVE_UDA1341)
381 drivers/audio/uda1341.c
382 #elif defined(HAVE_CS42L55)
383 drivers/audio/cs42l55.c
384 #elif defined (HAVE_RK27XX_CODEC)
385 drivers/audio/rk27xx_codec.c
386 #elif defined(HAVE_AIC3X)
387 drivers/audio/aic3x.c
388 #elif defined (HAVE_DUMMY_CODEC)
389 drivers/audio/dummy_codec.c
390 #endif /* defined(HAVE_*) */
391 #else /* PLATFORM_HOSTED */
392 #if defined(SAMSUNG_YPR0) && defined(HAVE_AS3514)
393 drivers/audio/as3514.c
394 target/hosted/pcm-alsa.c
395 #elif defined(HAVE_SDL_AUDIO)
396 drivers/audio/sdl.c
397 #if CONFIG_CODEC == SWCODEC
398 #if (CONFIG_PLATFORM & PLATFORM_MAEMO5)
399 target/hosted/maemo/pcm-gstreamer.c
400 #else
401 target/hosted/sdl/pcm-sdl.c
402 #endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
403 #endif /* CONFIG_CODEC == SWCODEC */
404 #endif
405 #endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
407 /* CPU Specific - By class then particular chip if applicable */
408 #if defined(CPU_SH)
410 target/sh/adc-sh.c
411 target/sh/bitswap.S
412 target/sh/crt0.S
413 target/sh/kernel-sh.c
414 target/sh/system-sh.c
415 target/sh/archos/descramble.S
416 target/sh/archos/i2c-archos.c
417 target/sh/debug-sh.c
419 #elif defined(CPU_COLDFIRE)
421 target/coldfire/crt0.S
422 target/coldfire/kernel-coldfire.c
423 target/coldfire/system-coldfire.c
424 target/coldfire/timer-coldfire.c
425 #ifndef BOOTLOADER
426 target/coldfire/pcm-coldfire.c
427 target/coldfire/debug-coldfire.c
428 #endif /* BOOTLOADER */
429 #if CONFIG_I2C == I2C_COLDFIRE
430 target/coldfire/i2c-coldfire.c
431 #endif /* CONFIG_I2C == I2C_COLDFIRE */
432 #if CONFIG_STORAGE & STORAGE_ATA
433 target/coldfire/ata-as-coldfire.S
434 #endif
436 #elif defined(CPU_PP) || (defined(CPU_ARM) && CONFIG_PLATFORM & PLATFORM_NATIVE)
437 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
439 # if ARM_ARCH < 6
440 target/arm/bits-armv4.S
441 #  if CONFIG_CPU == IMX233 || CONFIG_CPU == DM320 \
442    || CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2 \
443    || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \
444    || defined(CPU_S5L870X)
445 target/arm/mmu-arm.S
446 #  endif
447 # endif
448 target/arm/system-arm.c
450 #if CONFIG_STORAGE & STORAGE_ATA
451 # ifdef CPU_PP502x
452 target/arm/pp/ata-pp5020.c
453 # endif
454 # if CONFIG_CPU == DM320 || defined(CPU_PP502x)
455 target/arm/ata-as-arm.S
456 # endif
457 #endif
459 #if defined(CPU_PP) && defined(IPOD_ARCH)
460 target/arm/ipod/power-ipod.c
461 # if LCD_DEPTH == 2
462 target/arm/ipod/lcd-as-gray.S
463 # endif
464 # ifndef IPOD_1G2G
465 #  ifndef IPOD_3G
466 target/arm/ipod/piezo.c
467 #  endif /* IPOD_3G */
468 drivers/pcf50605.c
469 target/arm/ipod/powermgmt-ipod-pcf.c
470 # endif /* IPOD_1G2G */
471 #endif /* CPU_PP && IPOD_ARCH */
473 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
474 target/arm/pp/i2c-pp.c
475 #elif CONFIG_I2C == I2C_PNX0101
476 target/arm/pnx0101/i2c-pnx0101.c
477 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
478 target/arm/i2c-telechips.c
479 #elif CONFIG_I2C == I2C_S3C2440
480 /* no i2c driver yet */
481 #elif CONFIG_I2C == I2C_S5L8700
482 target/arm/s5l8700/i2c-s5l8700.c
483 #elif CONFIG_I2C == I2C_S5L8702
484 target/arm/s5l8702/i2c-s5l8702.c
485 #elif CONFIG_I2C == I2C_RK27XX
486 target/arm/rk27xx/i2c-rk27xx.c
487 #elif CONFIG_I2C == I2C_IMX233
488 target/arm/imx233/i2c-imx233.c
489 #endif
491 #if CONFIG_CPU == PNX0101
492 target/arm/pnx0101/kernel-pnx0101.c
493 target/arm/pnx0101/system-pnx0101.c
494 target/arm/pnx0101/timer-pnx0101.c
495 #endif
497 #if CONFIG_CPU == IMX233
498 target/arm/imx233/lcdif-imx233.c
499 target/arm/imx233/clkctrl-imx233.c
500 target/arm/imx233/system-imx233.c
501 target/arm/imx233/timrot-imx233.c
502 target/arm/imx233/kernel-imx233.c
503 target/arm/imx233/sd-imx233.c
504 target/arm/imx233/mmc-imx233.c
505 target/arm/imx233/ssp-imx233.c
506 target/arm/imx233/dma-imx233.c
507 target/arm/imx233/pinctrl-imx233.c
508 target/arm/imx233/power-imx233.c
509 target/arm/imx233/powermgmt-imx233.c
510 target/arm/imx233/adc-imx233.c
511 target/arm/imx233/lradc-imx233.c
512 target/arm/imx233/rtc-imx233.c
513 target/arm/imx233/dcp-imx233.c
514 #ifndef BOOTLOADER
515 target/arm/imx233/debug-imx233.c
516 #endif
517 #if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE)
518 target/arm/imx233/usb-imx233.c
519 #endif
520 #ifndef BOOTLOADER
521 #ifdef HAVE_IMX233_CODEC
522 target/arm/imx233/audioout-imx233.c
523 target/arm/imx233/audioin-imx233.c
524 target/arm/imx233/pcm-imx233.c
525 drivers/audio/imx233-codec.c
526 #endif
527 target/arm/imx233/timer-imx233.c
528 #endif
529 #endif /* IMX233 */
531 #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
532 target/arm/as3525/system-as3525.c
533 target/arm/as3525/memory-init.S
534 target/arm/as3525/kernel-as3525.c
535 target/arm/as3525/timer-as3525.c
536 #if CONFIG_CPU == AS3525
537 target/arm/as3525/sd-as3525.c
538 #ifdef HAVE_SCROLLWHEEL
539 target/arm/as3525/scrollwheel-as3525.c
540 #endif /* HAVE_SCROLLWHEEL */
541 #else /* AS3535v2 */
542 target/arm/as3525/tuner-as3525v2.c
543 target/arm/as3525/sd-as3525v2.c
544 #endif
545 target/arm/as3525/power-as3525.c
546 target/arm/as3525/usb-as3525.c
547 target/arm/as3525/dma-pl081.c
548 target/arm/as3525/ascodec-as3525.c
549 #ifndef BOOTLOADER
550 drivers/generic_i2c.c
551 target/arm/as3525/audio-as3525.c
552 target/arm/as3525/debug-as3525.c
553 #if CONFIG_TUNER
554 target/arm/as3525/fmradio-i2c-as3525.c
555 #endif /* CONFIG_TUNER */
556 target/arm/as3525/i2s-as3525.c
557 target/arm/as3525/pcm-as3525.c
558 #endif /* BOOTLOADER */
559 #endif /* CONFIG_CPU == AS3525 */
561 #if defined(CPU_PP)
562 target/arm/pp/i2s-pp.c
563 target/arm/pp/kernel-pp.c
564 target/arm/pp/timer-pp.c
565 # if CONFIG_STORAGE & STORAGE_SD
566 target/arm/pp/ata-sd-pp.c
567 # endif
568 # if !defined(HAVE_AS3514) && !defined(HAVE_AK4537)
569 target/arm/pp/wmcodec-pp.c
570 # endif
571 #if CONFIG_CPU == PP5002
572 target/arm/pp/system-pp5002.c
573 target/arm/pp/usb-fw-pp5002.c
574 target/arm/pp/ata-pp5002.c
575 #elif defined CPU_PP502x
576 target/arm/pp/usb-fw-pp502x.c
577 target/arm/pp/system-pp502x.c
578 #endif
579 #ifdef BOOTLOADER
580 #ifdef HAVE_BOOTLOADER_USB_MODE
581 target/arm/pp/crt0-pp502x-bl-usb.S
582 #else
583 target/arm/pp/crt0-pp-bl.S
584 #endif /* HAVE_BOOTLOADER_USB_MODE */
585 #else /* !BOOTLOADER */
586 target/arm/pp/pcm-pp.c
587 target/arm/pp/debug-pp.c
588 #if !defined(SANSA_E200) && !defined(SANSA_C200)
589 target/arm/pp/audio-pp.c
590 #endif /* SANSA_E200 */
591 target/arm/pp/crt0-pp.S
592 #endif
593 #elif CONFIG_CPU == PNX0101
594 target/arm/pnx0101/crt0-pnx0101.S
595 #elif CONFIG_CPU==DM320
596 target/arm/tms320dm320/crt0.S
597 #elif CONFIG_CPU==S3C2440
598 target/arm/s3c2440/crt0.S
599 #elif defined(CPU_TCC77X)
600 target/arm/tcc77x/crt0.S
601 #elif defined(CPU_TCC780X)
602 target/arm/tcc780x/crt0.S
603 #elif CONFIG_CPU==IMX31L
604 target/arm/imx31/crt0.S
605 #elif CONFIG_CPU==S5L8700 || CONFIG_CPU==S5L8701
606 target/arm/s5l8700/crt0.S
607 #elif CONFIG_CPU==S5L8702
608 target/arm/s5l8702/crt0.S
609 #elif CONFIG_CPU==IMX233
610 target/arm/imx233/crt0.S
611 #elif CONFIG_CPU==RK27XX
612 target/arm/rk27xx/crt0.S
613 #elif defined(CPU_ARM)
614 target/arm/crt0.S
615 #endif /* defined(CPU_*) */
617 #elif defined(CPU_MIPS)
618 target/mips/mmu-mips.c
619 #if CONFIG_CPU==JZ4732
620 target/mips/ingenic_jz47xx/crt0.S
621 #endif /* CONFIG_CPU == JZ4732 */
623 #else
625 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
626 crt0.S
627 drivers/i2c.c
628 #endif /* PLATFORM_NATIVE */
630 #endif /* defined(CPU_*) */
632 #if !defined(SIMULATOR)
634 /* target code */
636 /* LCD driver */
637 #if   CONFIG_LCD == LCD_SSD1303
638 target/arm/as3525/lcd-ssd1303.c
639 #elif CONFIG_LCD == LCD_SSD1801
640 target/sh/archos/player/lcd-as-player.S
641 target/sh/archos/player/lcd-player.c
642 #elif CONFIG_LCD == LCD_SSD1815
643 # if CONFIG_CPU == SH7034
644 target/sh/archos/lcd-archos-bitmap.c
645 target/sh/archos/lcd-as-archos-bitmap.S
646 # else
647 target/arm/lcd-ssd1815.c
648 # endif
649 #elif CONFIG_LCD == LCD_HX8340B
650 target/arm/rk27xx/lcd-hifiman.c
651 #elif CONFIG_LCD == LCD_C200
652 target/arm/lcd-c200_c200v2.c
653 #elif CONFIG_LCD == LCD_FUZE
654 target/arm/as3525/lcd-fuze.c
655 #elif CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO
656 target/arm/ipod/lcd-color_nano.c
657 #elif CONFIG_LCD == LCD_IPODMINI || CONFIG_LCD == LCD_IPOD2BPP
658 target/arm/ipod/lcd-gray.c
659 #elif CONFIG_LCD == LCD_GIGABEATS
660 target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
661 #elif CONFIG_LCD == LCD_GIGABEAT
662 target/arm/s3c2440/lcd-s3c2440.c
663 #endif
665 /* USB Stack */
666 #ifdef HAVE_USBSTACK
667 usbstack/usb_core.c
668 #ifdef USB_ENABLE_STORAGE
669 usbstack/usb_storage.c
670 #endif
671 #ifdef USB_ENABLE_SERIAL
672 usbstack/usb_serial.c
673 #endif
674 #ifdef USB_ENABLE_CHARGING_ONLY
675 usbstack/usb_charging_only.c
676 #endif
677 #ifdef USB_ENABLE_HID
678 usbstack/usb_hid.c
679 #endif
680 #if CONFIG_USBOTG == USBOTG_M66591
681 drivers/m66591.c
682 #elif CONFIG_USBOTG == USBOTG_ARC
683 target/arm/usb-drv-arc.c
684 #elif CONFIG_USBOTG == USBOTG_AS3525
685 target/arm/as3525/usb-drv-as3525.c
686 #elif CONFIG_USBOTG == USBOTG_S3C6400X
687 target/arm/usb-s3c6400x.c
688 #elif CONFIG_USBOTG == USBOTG_ISP1583
689 drivers/isp1583.c
690 #elif CONFIG_USBOTG == USBOTG_RK27XX
691 target/arm/rk27xx/usb-drv-rk27xx.c
692 #endif
693 #else /* !defined(HAVE_USBSTACK) */
694 #if CONFIG_USBOTG == USBOTG_ISP1362      
695 drivers/isp1362.c
696 #elif CONFIG_USBOTG == USBOTG_M5636      
697 drivers/m5636.c
698 #endif
699 #endif /* !defined(HAVE_USBSTACK) */
701 /* Other Random Hardware */
702 #ifdef HAVE_TSC2100
703 drivers/tsc2100.c
704 drivers/audio/tsc2100.c
705 #endif
707 #ifdef HAVE_AS3514
708 # ifdef CPU_PP
709 target/arm/pp/ascodec-pp.c
710 # endif
711 # if !defined(BOOTLOADER) || defined(CPU_PP)
712 drivers/adc-as3514.c
713 #  if !defined(SANSA_M200V4) && !defined(SAMSUNG_YPR0)
714 target/arm/powermgmt-ascodec.c
715 #  endif
716 # endif
717 #endif
719 #if CONFIG_I2C == I2C_PP5020
720 # ifdef IPOD_ARCH
721 target/arm/ipod/adc-ipod-pcf.c
722 # else
723 target/arm/pp/adc-pp5020.c
724 # endif /* IPOD_ARCH */
726 #elif CONFIG_I2C == I2C_PP5002
727 # ifdef IPOD_1G2G
728 target/arm/ipod/1g2g/adc-ipod-1g2g.c
729 # else
730 target/arm/ipod/adc-ipod-pcf.c
731 # endif /* IPOD_1G2G */
733 #elif CONFIG_I2C == I2C_S3C2440
734 target/arm/s3c2440/adc-s3c2440.c
736 #elif CONFIG_I2C == I2C_S5L8700
737 # ifdef IPOD_NANO2G
738 target/arm/s5l8700/ipodnano2g/adc-nano2g.c
739 # else
740 target/arm/s5l8700/adc-s5l8700.c
741 # endif
743 #elif CONFIG_I2C == I2C_TCC77X
744 target/arm/tcc77x/adc-tcc77x.c
746 #endif /* CONFIG_I2C */
748 #ifdef CPU_SH
749 target/sh/archos/mascodec-archos.c
750 target/sh/archos/audio-archos.c
751 target/sh/archos/timer-archos.c
752 # if CONFIG_STORAGE & STORAGE_ATA
753 target/sh/archos/ata-archos.c
754 target/sh/archos/ata-as-archos.S
755 # endif
756 # ifdef HAVE_SERIAL
757 target/sh/archos/uart-archos.c
758 # endif
759 #endif
761 #ifdef CPU_TCC77X
762 target/arm/usb-tcc.c
763 target/arm/tcc77x/kernel-tcc77x.c
764 target/arm/tcc77x/system-tcc77x.c
765 target/arm/tcc77x/timer-tcc77x.c
766 # ifndef IAUDIO7
767 target/arm/tcc77x/powermgmt-tcc77x.c
768 # endif /* !IAUDIO7 */
769 # ifndef BOOTLOADER
770 #  ifndef SANSA_C100
771 target/arm/wmcodec-telechips.c
772 #  endif /* !C100 */
773 target/arm/pcm-telechips.c
774 target/arm/tcc77x/debug-tcc77x.c
775 # endif /* !BOOTLOADER */
776 #endif /* CPU_TCC77X */
778 #if CONFIG_CPU == S5L8700 || CONFIG_CPU == S5L8701
779 target/arm/s5l8700/kernel-s5l8700.c
780 target/arm/s5l8700/system-s5l8700.c
781 target/arm/s5l8700/dma-s5l8700.c
782 # ifndef BOOTLOADER
783 target/arm/s5l8700/wmcodec-s5l8700.c
784 target/arm/s5l8700/timer-s5l8700.c
785 target/arm/s5l8700/pcm-s5l8700.c
786 target/arm/s5l8700/debug-s5l8700.c
787 # endif
788 #endif /* S5L8700 || S5L8701 */
790 #if CONFIG_CPU == S3C2440
791 target/arm/s3c2440/debug-s3c2440.c
792 target/arm/s3c2440/kernel-s3c2440.c
793 target/arm/s3c2440/system-s3c2440.c
794 # ifndef BOOTLOADER
795 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
796 target/arm/s3c2440/i2c-s3c2440.c
797 # endif
798 #endif /* CONFIG_CPU == S3C2440 */
800 #ifdef ARCHOS_PLAYER
801 target/sh/archos/player/button-player.c
802 target/sh/archos/player/hwcompat-player.c
803 target/sh/archos/player/power-player.c
804 target/sh/archos/player/powermgmt-player.c
805 target/sh/archos/player/usb-player.c
806 #endif /* ARCHOS_PLAYER */
808 #ifdef ARCHOS_RECORDER
809 target/sh/archos/recorder/button-recorder.c
810 target/sh/archos/recorder/power-recorder.c
811 target/sh/archos/recorder/powermgmt-recorder.c
812 target/sh/archos/recorder/usb-recorder.c
813 #endif /* ARCHOS_RECORDER */
815 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
816 target/sh/archos/fm_v2/button-fm_v2.c
817 target/sh/archos/fm_v2/power-fm_v2.c
818 target/sh/archos/fm_v2/powermgmt-fm_v2.c
819 target/sh/archos/fm_v2/usb-fm_v2.c
820 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
822 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
823 target/sh/archos/ondio/button-ondio.c
824 target/sh/archos/ondio/power-ondio.c
825 target/sh/archos/ondio/powermgmt-ondio.c
826 target/sh/archos/ondio/usb-ondio.c
827 target/sh/archos/ondio/ata_mmc.c
828 #if (CONFIG_TUNER & TEA5767)
829 target/sh/archos/ondio/fmradio_i2c-ondio.c
830 #endif
831 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
833 #if defined(SANSA_E200) || defined(SANSA_C200)
834 target/arm/sandisk/backlight-c200_e200.c
835 target/arm/sandisk/power-c200_e200.c
836 #ifndef BOOTLOADER
837 target/arm/sandisk/audio-c200_e200.c
838 #endif /* BOOTLOADER */
839 #endif /* SANSA_E200 || SANSA_C200 */
841 #ifdef SANSA_E200
842 drivers/lcd-memframe.c
843 target/arm/sandisk/sansa-e200/lcd-e200.c
844 target/arm/sandisk/sansa-e200/button-e200.c
845 target/arm/sandisk/sansa-e200/powermgmt-e200.c
846 #endif /* SANSA_E200 */
848 #ifdef SANSA_C200
849 target/arm/sandisk/sansa-c200/lcd-as-c200.S
850 target/arm/sandisk/sansa-c200/button-c200.c
851 target/arm/sandisk/sansa-c200/powermgmt-c200.c
852 #endif /* SANSA_C200 */
854 #ifdef SANSA_VIEW
855 target/arm/sandisk/sansa-view/backlight-view.c
856 target/arm/sandisk/sansa-view/adc-view.c
857 target/arm/sandisk/sansa-view/power-view.c
858 target/arm/sandisk/sansa-view/lcd-view.c
859 target/arm/sandisk/sansa-view/button-view.c
860 target/arm/sandisk/sansa-view/powermgmt-view.c
861 #ifndef BOOTLOADER
862 /* target/arm/sandisk/audio-view.c */
863 #endif /* BOOTLOADER */
864 #endif /* SANSA_VIEW */
866 #ifdef PHILIPS_SA9200
867 #ifndef BOOTLOADER
868 drivers/synaptics-mep.c
869 #endif /* BOOTLOADER */
870 target/arm/philips/sa9200/backlight-sa9200.c
871 target/arm/philips/sa9200/button-sa9200.c
872 target/arm/philips/sa9200/lcd-sa9200.c
873 target/arm/philips/sa9200/lcd-as-sa9200.S
874 target/arm/philips/sa9200/power-sa9200.c
875 target/arm/philips/sa9200/powermgmt-sa9200.c
876 #endif /* PHILIPS_SA9200 */
878 #if defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330)
879 #ifndef BOOTLOADER
880 drivers/synaptics-mep.c
881 #endif /* BOOTLOADER */
882 target/arm/philips/power-hdd.c
883 target/arm/philips/fmradio_i2c-hdd.c
884 #endif /* PHILIPS_HDD1630 || PHILIPS_HDD6330 */
886 #ifdef PHILIPS_HDD1630
887 target/arm/philips/hdd1630/backlight-hdd1630.c
888 target/arm/philips/hdd1630/button-hdd1630.c
889 target/arm/philips/hdd1630/lcd-hdd1630.c
890 target/arm/philips/hdd1630/lcd-as-hdd1630.S
891 target/arm/philips/hdd1630/powermgmt-hdd1630.c
892 #endif /* PHILIPS_HDD1630 */
894 #ifdef PHILIPS_HDD6330
895 target/arm/philips/hdd6330/backlight-hdd6330.c
896 target/arm/philips/hdd6330/button-hdd6330.c
897 target/arm/philips/hdd6330/lcd-hdd6330.c
898 target/arm/philips/hdd6330/lcd-as-hdd6330.S
899 target/arm/philips/hdd6330/powermgmt-hdd6330.c
900 #endif /* PHILIPS_HDD6330 */
902 #if defined(IAUDIO_X5) || defined(IAUDIO_M5)
903 target/coldfire/pcf50606-coldfire.c
904 target/coldfire/iaudio/adc-iaudio.c
905 target/coldfire/iaudio/ata-iaudio.c
906 #ifdef HAVE_FMRADIO_IN
907 target/coldfire/iaudio/fmradio_i2c-iaudio.c
908 #endif
909 target/coldfire/iaudio/lcd-remote-as-iaudio.S
910 target/coldfire/iaudio/lcd-remote-iaudio.c
911 target/coldfire/iaudio/pcf50606-iaudio.c
912 target/coldfire/iaudio/power-x5m5.c
913 target/coldfire/iaudio/powermgmt-iaudio.c
914 target/coldfire/iaudio/system-iaudio.c
915 target/coldfire/iaudio/usb-iaudio.c
916 #ifndef BOOTLOADER
917 target/coldfire/iaudio/audio-iaudio.c
918 #endif
919 #endif /* IAUDIO_X5 || IAUDIO_M5 */
921 #ifdef IAUDIO_X5
922 target/coldfire/iaudio/x5/backlight-x5.c
923 target/coldfire/iaudio/x5/button-x5.c
924 target/coldfire/iaudio/x5/ds2411-x5.c
925 target/coldfire/iaudio/x5/lcd-as-x5.S
926 target/coldfire/iaudio/x5/lcd-x5.c
927 target/coldfire/iaudio/x5/m5636-x5.c
928 #endif /* IAUDIO_X5 */
930 #ifdef IAUDIO_M5
931 target/coldfire/iaudio/m5/backlight-m5.c
932 target/coldfire/iaudio/m5/button-m5.c
933 target/coldfire/iaudio/m5/lcd-as-m5.S
934 target/coldfire/iaudio/m5/lcd-m5.c
935 #endif /* IAUDIO_M5 */
937 #ifdef IAUDIO_M3
938 target/coldfire/iaudio/fmradio_i2c-iaudio.c
939 target/coldfire/iaudio/m3/adc-m3.c
940 target/coldfire/iaudio/m3/ata-m3.c
941 target/coldfire/iaudio/m3/backlight-m3.c
942 target/coldfire/iaudio/m3/button-m3.c
943 target/coldfire/iaudio/m3/lcd-m3.c
944 target/coldfire/iaudio/m3/lcd-as-m3.S
945 target/coldfire/iaudio/m3/power-m3.c
946 target/coldfire/iaudio/m3/powermgmt-m3.c
947 target/coldfire/iaudio/m3/system-m3.c
948 target/coldfire/iaudio/m3/usb-m3.c
949 #ifndef BOOTLOADER
950 target/coldfire/iaudio/audio-iaudio.c
951 #endif
952 #endif /* IAUDIO_M3 */
954 #ifdef IRIVER_IFP7XX_SERIES
955 #ifdef STUB
956 ifp_usb_serial.c
957 libc/sscanf.c
958 #endif /* STUB */
959 #endif /* IRIVER_IFP7XX_SERIES */
961 #if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES)
962 target/coldfire/iriver/ata-iriver.c
963 target/coldfire/iriver/lcd-remote-iriver.c
964 target/coldfire/iriver/lcd-remote-as-iriver.S
965 target/coldfire/iriver/system-iriver.c
966 target/coldfire/iriver/fmradio_i2c-iriver.c
967 #ifndef BOOTLOADER
968 target/coldfire/iriver/audio-iriver.c
969 target/coldfire/iriver/udacodec-iriver.c
970 #endif
971 #endif /* IRIVER_H300_SERIES || IRIVER_H100_SERIES */
973 #ifdef IRIVER_H300_SERIES
974 target/coldfire/pcf50606-coldfire.c
975 target/coldfire/iriver/h300/sw_i2c-h300.c
976 target/coldfire/iriver/h300/adc-h300.c
977 target/coldfire/iriver/h300/backlight-h300.c
978 target/coldfire/iriver/h300/button-h300.c
979 target/coldfire/iriver/h300/pcf50606-h300.c
980 target/coldfire/iriver/h300/lcd-as-h300.S
981 target/coldfire/iriver/h300/lcd-h300.c
982 target/coldfire/iriver/h300/power-h300.c
983 target/coldfire/iriver/h300/powermgmt-h300.c
984 target/coldfire/iriver/h300/usb-h300.c
985 #endif /* IRIVER_H300_SERIES */
987 #ifdef IRIVER_H100_SERIES
988 drivers/sw_i2c.c
989 target/coldfire/uart-coldfire.c
990 target/coldfire/iriver/h100/adc-h100.c
991 target/coldfire/iriver/h100/backlight-h100.c
992 target/coldfire/iriver/h100/button-h100.c
993 target/coldfire/iriver/h100/lcd-as-h100.S
994 target/coldfire/iriver/h100/lcd-h100.c
995 target/coldfire/iriver/h100/power-h100.c
996 target/coldfire/iriver/h100/powermgmt-h100.c
997 #ifndef BOOTLOADER
998 target/coldfire/iriver/h100/spdif-h100.c
999 #endif
1000 target/coldfire/iriver/h100/usb-h100.c
1001 #endif /* IRIVER_H100_SERIES */
1003 #if defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
1004 target/arm/iriver/h10/backlight-h10.c
1005 target/arm/iriver/h10/button-h10.c
1006 target/arm/iriver/h10/fmradio_i2c-h10.c
1007 target/arm/iriver/h10/power-h10.c
1008 target/arm/iriver/h10/powermgmt-h10.c
1009 #endif /* IRIVER_H10 || IRIVER_H10_5GB */
1011 #ifdef IRIVER_H10
1012 target/arm/iriver/h10/lcd-h10_20gb.c
1013 target/arm/iriver/h10/lcd-as-h10.S
1014 #endif /* IRIVER_H10 */
1016 #ifdef IRIVER_H10_5GB
1017 target/arm/iriver/h10/lcd-h10_5gb.c
1018 #endif /* IRIVER_H10_5GB */
1020 #ifdef GIGABEAT_F
1021 drivers/lcd-memframe.c
1022 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
1023 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
1024 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
1025 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
1026 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
1027 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
1028 #ifndef BOOTLOADER
1029 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
1030 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
1031 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
1032 #endif
1033 #endif /* GIGABEAT_F */
1035 #ifdef GIGABEAT_S
1036 drivers/lcd-memframe.c
1037 target/arm/bits-armv6.S
1038 target/arm/mmu-armv6.S
1039 target/arm/imx31/ata-imx31.c
1040 target/arm/imx31/avic-imx31.c
1041 target/arm/imx31/ccm-imx31.c
1042 target/arm/imx31/debug-imx31.c
1043 target/arm/imx31/dvfs_dptc-imx31.c
1044 target/arm/imx31/gpio-imx31.c
1045 target/arm/imx31/i2c-imx31.c
1046 target/arm/imx31/iomuxc-imx31.c
1047 target/arm/imx31/mc13783-imx31.c
1048 target/arm/imx31/mmu-imx31.c
1049 target/arm/imx31/rolo_restart_firmware.S
1050 target/arm/imx31/sdma-imx31.c
1051 target/arm/imx31/spi-imx31.c
1052 target/arm/imx31/uart-imx31.c
1053 target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
1054 target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
1055 target/arm/imx31/gigabeat-s/button-gigabeat-s.c
1056 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
1057 target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
1058 target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
1059 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
1060 target/arm/imx31/gigabeat-s/power-gigabeat-s.c
1061 target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
1062 target/arm/imx31/gigabeat-s/system-gigabeat-s.c
1063 target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
1064 target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
1065 #ifndef BOOTLOADER
1066 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
1067 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
1068 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
1069 target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
1070 target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
1071 #endif
1072 #endif /* GIGABEAT_S */
1074 #if CONFIG_CPU == DM320
1075 target/arm/tms320dm320/debug-dm320.c
1076 target/arm/tms320dm320/dsp-dm320.c
1077 target/arm/tms320dm320/i2c-dm320.c
1078 #ifdef HAVE_SOFTWARE_I2C
1079 drivers/generic_i2c.c
1080 #endif
1081 target/arm/tms320dm320/kernel-dm320.c
1082 target/arm/tms320dm320/spi-dm320.c
1083 target/arm/tms320dm320/system-dm320.c
1084 target/arm/tms320dm320/timer-dm320.c
1085 target/arm/tms320dm320/uart-dm320.c
1086 #endif /* CONFIG_CPU == DM320 */
1088 #ifdef MROBE_500
1089 target/arm/tms320dm320/mrobe-500/crt0-board.S
1090 target/arm/tms320dm320/mrobe-500/adc-mr500.c
1091 target/arm/tms320dm320/mrobe-500/ata-mr500.c
1092 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
1093 target/arm/tms320dm320/mrobe-500/button-mr500.c
1094 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
1095 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
1096 #if defined(HAVE_REMOTE_LCD)
1097 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
1098 #endif
1099 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
1100 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
1101 target/arm/tms320dm320/mrobe-500/power-mr500.c
1102 target/arm/tms320dm320/mrobe-500/usb-mr500.c
1103 #endif /* MROBE_500 */
1105 #ifdef CREATIVE_ZVx
1106 drivers/lcd-memframe.c
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 /* CREATIVE_ZVx */
1118 #ifdef SANSA_CONNECT
1119 drivers/lcd-memframe.c
1120 target/arm/tms320dm320/sdmmc-dm320.c
1121 target/arm/tms320dm320/sansa-connect/crt0-board.S
1122 target/arm/tms320dm320/sansa-connect/lcd-sansaconnect.c
1123 target/arm/tms320dm320/sansa-connect/adc-sansaconnect.c
1124 target/arm/tms320dm320/sansa-connect/power-sansaconnect.c
1125 target/arm/tms320dm320/sansa-connect/powermgmt-sansaconnect.c
1126 target/arm/tms320dm320/sansa-connect/usb-sansaconnect.c
1127 target/arm/tms320dm320/sansa-connect/avr-sansaconnect.c
1128 target/arm/tms320dm320/sansa-connect/backlight-sansaconnect.c
1129 target/arm/tms320dm320/sansa-connect/pcm-sansaconnect.c
1130 target/arm/tms320dm320/dma-dm320.c
1131 #endif /* SANSA_CONNECT */
1133 #ifdef MROBE_100
1134 #ifndef BOOTLOADER
1135 drivers/synaptics-mep.c
1136 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
1137 #endif /* BOOTLOADER */
1138 drivers/sw_i2c.c
1139 target/arm/olympus/mrobe-100/backlight-mr100.c
1140 target/arm/olympus/mrobe-100/button-mr100.c
1141 target/arm/olympus/mrobe-100/lcd-mr100.c
1142 target/arm/olympus/mrobe-100/lcd-as-mr100.S
1143 target/arm/olympus/mrobe-100/power-mr100.c
1144 target/arm/olympus/mrobe-100/powermgmt-mr100.c
1145 #endif /* MROBE_100 */
1147 #ifdef TATUNG_TPJ1022
1148 target/arm/tatung/tpj1022/backlight-tpj1022.c
1149 target/arm/tatung/tpj1022/button-tpj1022.c
1150 target/arm/tatung/tpj1022/lcd-tpj1022.c
1151 target/arm/tatung/tpj1022/power-tpj1022.c
1152 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
1153 #endif /* TATUNG_TPJ1022 */
1155 #ifdef IPOD_4G
1156 target/arm/ipod/backlight-4g_color.c
1157 target/arm/ipod/button-clickwheel.c
1158 #endif /* IPOD_4G */
1160 #ifdef IPOD_COLOR
1161 target/arm/ipod/backlight-4g_color.c
1162 target/arm/ipod/button-clickwheel.c
1163 target/arm/ipod/lcd-as-color-nano.S
1164 #endif /* IPOD_COLOR */
1166 #ifdef IPOD_NANO
1167 target/arm/ipod/backlight-nano_video.c
1168 target/arm/ipod/button-clickwheel.c
1169 target/arm/ipod/lcd-as-color-nano.S
1170 #endif /* IPOD_NANO */
1172 #ifdef IPOD_VIDEO
1173 target/arm/ipod/backlight-nano_video.c
1174 target/arm/ipod/button-clickwheel.c
1175 target/arm/ipod/video/lcd-as-video.S
1176 target/arm/ipod/video/lcd-video.c
1177 #ifndef BOOTLOADER
1178 target/arm/ipod/video/battery-video.c
1179 #endif /* BOOTLOADER */
1180 #endif /* IPOD_VIDEO */
1182 #ifdef IPOD_3G
1183 target/arm/ipod/3g/backlight-3g.c
1184 target/arm/ipod/button-1g-3g.c
1185 #endif /* IPOD_3G */
1187 #ifdef IPOD_1G2G
1188 target/arm/ipod/1g2g/backlight-1g2g.c
1189 target/arm/ipod/1g2g/powermgmt-1g2g.c
1190 target/arm/ipod/button-1g-3g.c
1191 #endif /* IPOD_1G2G */
1193 #if defined(IPOD_MINI) || defined(IPOD_MINI2G)
1194 target/arm/ipod/backlight-mini1g_mini2g.c
1195 #endif
1197 #ifdef IPOD_MINI
1198 target/arm/ipod/button-mini1g.c
1199 #endif /* IPOD_MINI */
1201 #ifdef IPOD_MINI2G
1202 target/arm/ipod/button-clickwheel.c
1203 #endif /* IPOD_MINI2G */
1205 #ifdef IRIVER_IFP7XX
1206 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1207 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1208 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1209 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1210 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1211 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1212 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1213 #ifndef BOOTLOADER
1214 target/arm/pnx0101/pcm-pnx0101.c
1215 #endif /* BOOTLOADER */
1216 #endif /* IRIVER_IFP7XX */
1218 #ifdef LOGIK_DAX
1219 drivers/nand_id.c
1220 target/arm/tcc77x/logikdax/button-logikdax.c
1221 target/arm/tcc77x/logikdax/power-logikdax.c
1222 #ifndef BOOTLOADER
1223 target/arm/tcc77x/logikdax/audio-logikdax.c
1224 #endif /* BOOTLOADER */
1225 #endif /* LOGIK_DAX */
1227 #ifdef SANSA_M200
1228 drivers/nand_id.c
1229 target/arm/tcc77x/m200/button-m200.c
1230 target/arm/tcc77x/m200/power-m200.c
1231 #ifndef BOOTLOADER
1232 target/arm/tcc77x/m200/audio-m200.c
1233 #endif /* BOOTLOADER */
1234 #endif /* SANSA_M200 */
1236 #ifdef SANSA_C100
1237 drivers/nand_id.c
1238 target/arm/tcc77x/c100/lcd-S6B33B2.c
1239 target/arm/tcc77x/c100/button-c100.c
1240 target/arm/tcc77x/c100/power-c100.c
1241 #ifndef BOOTLOADER
1242 target/arm/tcc77x/c100/audio-c100.c
1243 #endif /* BOOTLOADER */
1244 #endif /* SANSA_C100 */
1246 #ifdef SANSA_CLIPPLUS
1247 target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
1248 target/arm/as3525/sansa-clipplus/button-clip.c
1249 target/arm/as3525/sansa-clipplus/backlight-clip.c
1250 #ifndef BOOTLOADER
1251 target/arm/as3525/sansa-clipplus/powermgmt-clipplus.c
1252 target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
1253 #endif /* !BOOTLOADER */
1254 #endif /* SANSA_CLIPPLUS */
1256 #ifdef SANSA_CLIPV2
1257 target/arm/as3525/sansa-clipv2/lcd-clipv2.c
1258 target/arm/as3525/button-clip.c
1259 target/arm/as3525/sansa-clipv2/backlight-clipv2.c
1260 #ifndef BOOTLOADER
1261 target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
1262 target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
1263 #endif /* !BOOTLOADER */
1264 #endif /* SANSA_CLIPV2 */
1266 #ifdef SANSA_CLIP
1267 target/arm/as3525/sansa-clip/lcd-clip.c
1268 target/arm/as3525/button-clip.c
1269 #ifndef BOOTLOADER
1270 target/arm/as3525/sansa-clip/powermgmt-clip.c
1271 target/arm/as3525/sansa-clip/lcd-as-clip.S
1272 #endif /* !BOOTLOADER */
1273 #endif /* SANSA_CLIP */
1275 #ifdef SANSA_E200V2
1276 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1277 target/arm/as3525/button-e200v2-fuze.c
1278 target/arm/as3525/backlight-e200v2-fuze.c
1279 target/arm/as3525/dbop-as3525.c
1280 #ifndef BOOTLOADER
1281 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1282 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1283 #endif /* !BOOTLOADER */
1284 #endif /* SANSA_E200V2 */
1286 #ifdef SANSA_C200V2
1287 target/arm/as3525/sansa-c200v2/button-c200v2.c
1288 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1289 target/arm/as3525/dbop-as3525.c
1290 #ifndef BOOTLOADER
1291 target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
1292 #endif /* !BOOTLOADER */
1293 #endif /* SANSA_E200V2 */
1295 #ifdef SANSA_M200V4
1296 target/arm/as3525/sansa-m200v4/button-m200v4.c
1297 #ifndef BOOTLOADER
1298 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1299 #endif /* !BOOTLOADER */
1300 #endif /* SANSA_M200V4 */
1302 #ifdef SANSA_FUZE
1303 target/arm/as3525/button-e200v2-fuze.c
1304 target/arm/as3525/sansa-fuze/lcd-fuzev1.c
1305 target/arm/as3525/backlight-e200v2-fuze.c
1306 target/arm/as3525/dbop-as3525.c
1307 #ifndef BOOTLOADER
1308 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1309 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1310 #endif /* !BOOTLOADER */
1311 #endif /* SANSA_FUZE */
1313 #ifdef SANSA_FUZEV2
1314 target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
1315 target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
1316 target/arm/as3525/sansa-fuzev2/button-fuzev2.c
1317 target/arm/as3525/dbop-as3525.c
1318 #ifndef BOOTLOADER
1319 target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
1320 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1321 #endif /* !BOOTLOADER */
1322 #endif /* SANSA_FUZEV2 */
1324 #ifdef SANSA_FUZEPLUS
1325 drivers/synaptics-rmi.c
1326 drivers/generic_i2c.c
1327 target/arm/imx233/sansa-fuzeplus/fmradio-i2c-fuzeplus.c
1328 target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
1329 target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
1330 target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c
1331 target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
1332 target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c
1333 target/arm/imx233/sansa-fuzeplus/adc-fuzeplus.c
1334 #ifndef BOOTLOADER
1335 target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c
1336 target/arm/imx233/sansa-fuzeplus/powermgmt-fuzeplus.c
1337 #endif
1338 #endif
1340 #ifdef SANSA_CLIPZIP
1341 target/arm/as3525/sansa-clipzip/lcd-clipzip.c
1342 target/arm/as3525/sansa-clipzip/button-clipzip.c
1343 target/arm/as3525/sansa-clipzip/backlight-clipzip.c
1344 #ifndef BOOTLOADER
1345 target/arm/as3525/sansa-clipzip/powermgmt-clipzip.c
1346 #endif /* !BOOTLOADER */
1347 #endif /* SANSA_CLIPZIP */
1349 #ifdef IAUDIO_7
1350 drivers/nand_id.c
1351 drivers/pcf50606.c
1352 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1353 target/arm/tcc77x/iaudio7/power-iaudio7.c
1354 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1355 target/arm/tcc77x/iaudio7/button-iaudio7.c
1356 target/arm/tcc77x/iaudio7/ata2501.c
1357 #ifndef BOOTLOADER
1358 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1359 #endif /* BOOTLOADER */
1360 #endif /* IAUDIO_7 */
1362 #ifdef COWON_D2
1363 drivers/lcd-memframe.c
1364 drivers/nand_id.c
1365 drivers/pcf50606.c
1366 drivers/pcf50635.c
1367 drivers/tsc200x.c
1368 target/arm/tcc780x/adc-tcc780x.c
1369 target/arm/tcc780x/system-tcc780x.c
1370 target/arm/tcc780x/kernel-tcc780x.c
1371 target/arm/tcc780x/sd-tcc780x.c
1372 target/arm/tcc780x/cowond2/button-cowond2.c
1373 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1374 target/arm/tcc780x/cowond2/lcd-cowond2.c
1375 target/arm/tcc780x/cowond2/power-cowond2.c
1376 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1377 target/arm/tcc780x/cowond2/backlight-cowond2.c
1378 target/arm/usb-tcc.c
1379 #ifndef BOOTLOADER
1380 target/arm/tcc780x/timer-tcc780x.c
1381 target/arm/wmcodec-telechips.c
1382 target/arm/tcc780x/debug-tcc780x.c
1383 target/arm/pcm-telechips.c
1384 target/arm/tcc780x/cowond2/audio-cowond2.c
1385 #endif /* BOOTLOADER */
1386 #endif /* COWON_D2 */
1388 #ifdef MEIZU_M6SL
1389 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1390 drivers/qt1106.c
1391 #endif /* MEIZU_M6SL */
1393 #ifdef MEIZU_M6SP
1394 target/arm/s5l8700/backlight-meizu.c
1395 target/arm/s5l8700/power-meizu.c
1396 target/arm/s5l8700/meizu-m6sp/button-m6sp.c
1397 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1398 #ifndef BOOTLOADER
1399 drivers/generic_i2c.c
1400 drivers/rtc/rtc_s35390a.c
1401 target/arm/s5l8700/audio-meizu.c
1402 target/arm/s5l8700/ftl-meizu.c
1403 target/arm/s5l8700/nand-meizu.c
1404 target/arm/s5l8700/fmradio-i2c-meizu.c
1405 target/arm/s5l8700/powermgmt-meizu.c
1406 target/arm/s5l8700/usb-s5l8700.c
1407 #endif /* BOOTLOADER */
1408 #endif /* MEIZU_M6SP */
1410 #ifdef MEIZU_M3
1411 target/arm/s5l8700/backlight-meizu.c
1412 target/arm/s5l8700/meizu-m3/lcd-m3.c
1413 drivers/qt1106.c
1414 #ifndef BOOTLOADER
1415 target/arm/s5l8700/udacodec-meizu.c
1416 #endif /* BOOTLOADER */
1417 #endif /* MEIZU_M3 */
1419 #ifdef IPOD_NANO2G
1420 target/arm/ipod/button-clickwheel.c
1421 target/arm/s5l8700/postmortemstub.S
1422 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1423 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1424 target/arm/s5l8700/ipodnano2g/lcd-asm-nano2g.S
1425 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1426 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1427 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1428 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1429 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1430 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1431 target/arm/s5l8700/usb-nano2g-6g.c
1432 #ifndef BOOTLOADER
1433 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1434 target/arm/s5l8700/ipodnano2g/piezo-nano2g.c
1435 #endif
1436 #endif
1438 #ifdef IPOD_6G
1439 target/arm/ipod/button-clickwheel.c
1440 target/arm/s5l8702/ipod6g/storage_ata-ipod6g.c
1441 target/arm/s5l8702/ipod6g/cscodec-ipod6g.c
1442 target/arm/s5l8702/ipod6g/backlight-ipod6g.c
1443 target/arm/s5l8702/ipod6g/powermgmt-ipod6g.c
1444 target/arm/s5l8702/ipod6g/power-ipod6g.c
1445 target/arm/s5l8702/kernel-s5l8702.c
1446 target/arm/s5l8702/system-s5l8702.c
1447 target/arm/s5l8702/ipod6g/lcd-ipod6g.c
1448 target/arm/s5l8702/ipod6g/lcd-asm-ipod6g.S
1449 #if 0 //TODO
1450 target/arm/s5l8702/postmortemstub.S
1451 #endif
1452 target/arm/s5l8702/ipod6g/pmu-ipod6g.c
1453 target/arm/s5l8702/ipod6g/rtc-ipod6g.c
1454 target/arm/s5l8700/usb-nano2g-6g.c
1455 #ifndef BOOTLOADER
1456 target/arm/s5l8702/timer-s5l8702.c
1457 target/arm/s5l8702/debug-s5l8702.c
1458 target/arm/s5l8702/pcm-s5l8702.c
1459 target/arm/s5l8702/ipod6g/audio-ipod6g.c
1460 target/arm/s5l8702/ipod6g/adc-ipod6g.c
1461 #endif
1462 #endif
1464 #if CONFIG_CPU == RK27XX
1465 target/arm/rk27xx/kernel-rk27xx.c
1466 target/arm/rk27xx/system-rk27xx.c
1467 target/arm/rk27xx/timer-rk27xx.c
1468 target/arm/rk27xx/backlight-rk27xx.c
1469 target/arm/rk27xx/adc-rk27xx.c
1470 target/arm/rk27xx/sd-rk27xx.c
1471 target/arm/rk27xx/ftl-rk27xx.c
1472 target/arm/rk27xx/nand-rk27xx.c
1473 target/arm/rk27xx/usb-rk27xx.c
1474 target/arm/rk27xx/lcdif-rk27xx.c
1475 #ifndef BOOTLOADER
1476 target/arm/rk27xx/pcm-rk27xx.c
1477 target/arm/rk27xx/debug-rk27xx.c
1478 #endif
1479 #endif
1481 #if defined(RK27_GENERIC)
1482 target/arm/rk27xx/rk27generic/button-rk27generic.c
1483 target/arm/rk27xx/rk27generic/powermgmt-rk27generic.c
1484 target/arm/rk27xx/rk27generic/power-rk27generic.c
1485 target/arm/rk27xx/rk27generic/lcd-rk27generic.c
1486 #endif
1488 #if CONFIG_CPU == JZ4732
1489 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1490 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1491 target/mips/ingenic_jz47xx/debug-jz4740.c
1492 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1493 target/mips/ingenic_jz47xx/kernel-jz4740.c
1494 target/mips/ingenic_jz47xx/i2c-jz4740.c
1495 target/mips/ingenic_jz47xx/lcd-jz4740.c
1496 target/mips/ingenic_jz47xx/system-jz4740.c
1497 target/mips/ingenic_jz47xx/usb-jz4740.c
1498 target/mips/ingenic_jz47xx/timer-jz4740.c
1499 #ifndef BOOTLOADER
1500 target/mips/ingenic_jz47xx/codec-jz4740.c
1501 target/mips/ingenic_jz47xx/pcm-jz4740.c
1502 #endif /* BOOTLOADER */
1503 drivers/nand_id.c
1504 #endif /* CONFIG_CPU == JZ4732 */
1506 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1507 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1508 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1509 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1510 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1511 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1512 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1514 #ifdef ONDA_VX767
1515 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1516 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1517 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1518 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1519 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1520 #endif /* ONDA_VX767 */
1522 #if defined(LYRE_PROTO1)
1523 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1524 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1525 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1526 target/arm/at91sam/lyre_proto1/crt0.S
1527 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1528 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1529 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1530 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1531 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1532 #endif
1534 #if defined(MINI2440)
1535 drivers/lcd-memframe.c
1536 target/arm/s3c2440/dma-s3c2440.c
1537 target/arm/s3c2440/sd-s3c2440.c
1538 target/arm/s3c2440/uart-s3c2440.c
1539 target/arm/s3c2440/mini2440/backlight-mini2440.c
1540 target/arm/s3c2440/mini2440/button-mini2440.c
1541 target/arm/s3c2440/mini2440/led-mini2440.c
1542 target/arm/s3c2440/mini2440/power-mini2440.c
1543 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1544 #ifndef BOOTLOADER
1545 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1546 target/arm/s3c2440/mini2440/pcm-mini2440.c
1547 #endif
1548 #endif /* MINI2440 */
1550 #if defined(SAMSUNG_YH820) || defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)
1551 target/arm/samsung/akcodec-yh82x_yh92x.c
1552 target/arm/samsung/button-yh82x_yh92x.c
1553 target/arm/samsung/power-yh82x_yh92x.c
1554 #endif /* SAMSUNG_YH820 ||  SAMSUNG_YH920 || SAMSUNG_YH925 */
1556 #ifdef SAMSUNG_YH820
1557 target/arm/samsung/yh820/backlight-yh820.c
1558 target/arm/samsung/yh820/lcd-yh820.c
1559 target/arm/samsung/yh820/lcd-as-yh820.S
1560 target/arm/samsung/yh820/powermgmt-yh820.c
1561 #endif /* SAMSUNG_YH820 */
1563 #ifdef SAMSUNG_YH920
1564 target/arm/samsung/yh920/backlight-yh920.c
1565 target/arm/samsung/yh920/lcd-yh920.c
1566 target/arm/samsung/yh920/lcd-as-yh920.S
1567 target/arm/samsung/yh920/powermgmt-yh920.c
1568 #endif /* SAMSUNG_YH920 */
1570 #ifdef SAMSUNG_YH925
1571 target/arm/samsung/yh925/backlight-yh925.c
1572 target/arm/samsung/yh925/lcd-yh925.c
1573 target/arm/samsung/yh925/lcd-as-yh925.S
1574 target/arm/samsung/yh925/powermgmt-yh925.c
1575 #endif /* SAMSUNG_YH925 */
1577 #ifdef SAMSUNG_YPS3
1578 target/arm/s5l8700/yps3/button-yps3.c
1579 target/arm/s5l8700/yps3/lcd-yps3.c
1580 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1581 target/arm/s5l8700/yps3/backlight-yps3.c
1582 target/arm/s5l8700/yps3/nand-yps3.c
1583 target/arm/s5l8700/yps3/power-yps3.c
1584 #endif /* SAMSUNG_YPS3 */
1586 #ifdef PBELL_VIBE500
1587 drivers/synaptics-mep.c
1588 target/arm/pbell/vibe500/lcd-vibe500.c
1589 target/arm/pbell/vibe500/button-vibe500.c
1590 target/arm/pbell/vibe500/power-vibe500.c
1591 target/arm/pbell/vibe500/backlight-vibe500.c
1592 target/arm/pbell/vibe500/lcd-as-vibe500.S
1593 target/arm/pbell/vibe500/powermgmt-vibe500.c
1594 #endif
1596 #if defined(MPIO_HD200) || defined(MPIO_HD300)
1597 target/coldfire/wmcodec-coldfire.c
1598 target/coldfire/mpio/system-mpio.c
1599 target/coldfire/mpio/power-mpio.c
1600 target/coldfire/mpio/backlight-mpio.c
1601 target/coldfire/mpio/usb-mpio.c
1602 target/coldfire/mpio/ata-mpio.c
1603 target/coldfire/mpio/adc-mpio.c
1604 #ifndef BOOTLOADER
1605 target/coldfire/mpio/audio-mpio.c
1606 target/coldfire/mpio/fmradio_i2c-mpio.c
1607 #endif /* BOOTLOADER */
1608 #endif
1610 #ifdef MPIO_HD200
1611 target/coldfire/mpio/hd200/button-hd200.c
1612 target/coldfire/mpio/hd200/lcd-hd200.c
1613 target/coldfire/mpio/hd200/lcd-as-hd200.S
1614 target/coldfire/mpio/hd200/powermgmt-hd200.c
1615 #endif
1617 #ifdef MPIO_HD300
1618 target/coldfire/mpio/hd300/button-hd300.c
1619 target/coldfire/mpio/hd300/lcd-hd300.c
1620 target/coldfire/mpio/hd300/lcd-as-hd300.S
1621 target/coldfire/mpio/hd300/powermgmt-hd300.c
1622 #endif
1624 #if defined(HM60X)
1625 target/arm/rk27xx/hm60x/button-hm60x.c
1626 target/arm/rk27xx/hm60x/powermgmt-hm60x.c
1627 target/arm/rk27xx/hm60x/power-hm60x.c
1628 #endif
1630 #if defined(HM801)
1631 target/arm/rk27xx/hm801/button-hm801.c
1632 target/arm/rk27xx/hm801/powermgmt-hm801.c
1633 target/arm/rk27xx/hm801/power-hm801.c
1634 #endif
1636 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
1637 target/hosted/kernel-unix.c
1638 target/hosted/filesystem-unix.c
1639 target/hosted/lc-unix.c
1640 target/hosted/android/lcd-android.c
1641 target/hosted/android/button-android.c
1642 #ifdef DEBUG
1643 target/hosted/android/debug-android.c
1644 #endif
1645 target/hosted/android/pcm-android.c
1646 target/hosted/android/powermgmt-android.c
1647 target/hosted/android/system-android.c
1648 target/hosted/android/telephony-android.c
1649 #ifdef APPLICATION
1650 target/hosted/android/app/button-application.c
1651 #endif
1652 drivers/audio/android.c
1653 thread.c
1654 #endif
1656 #endif /* defined(SIMULATOR) */