Fix typo in error message
[maemo-rb.git] / firmware / SOURCES
blob5cb464e6b1f243e826ecdf727bfe4d9953f8e605
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 libc/gmtime.c
132 #endif /* CONFIG_PLATFORM || HAVE_ROCKBOX_C_LIBRARY */
134 /* Common */
135 common/version.c
136 common/config.c
137 common/crc32.c
138 #ifdef MI4_FORMAT
139 common/crc32-mi4.c
140 #endif
141 #ifdef RKW_FORMAT
142 common/crc32-rkw.c
143 #endif
144 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
145 common/dir_uncached.c
146 common/file.c
147 common/disk.c
148 #endif /* PLATFORM_NATIVE */
149 #ifdef HAVE_DIRCACHE
150 common/dircache.c
151 #endif /* HAVE_DIRCACHE */
152 common/filefuncs.c
153 common/format.c
154 #ifdef APPLICATION
155 common/rbpaths.c
156 #endif
157 common/strcasecmp.c
158 common/strcasestr.c
159 common/strnatcmp.c
160 common/strlcat.c
161 common/strlcpy.c
162 common/structec.c
163 common/timefuncs.c
164 common/unicode.c
166 /* Display */
167 scroll_engine.c
169 #ifdef HAVE_LCD_CHARCELLS
170 drivers/lcd-charcell.c
171 drivers/lcd-charset-player.c
172 #endif /* HAVE_LCD_CHARCELLS */
174 #ifdef HAVE_LCD_BITMAP
175 arabjoin.c
176 bidi.c
177 font_cache.c
178 font.c
179 hangul.c
180 lru.c
181 #ifndef BOOTLOADER
182 screendump.c
183 #endif
184 #if LCD_DEPTH == 1
185 drivers/lcd-1bit-vert.c
186 #elif LCD_DEPTH == 2
187 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
188 drivers/lcd-2bit-horz.c
189 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
190 drivers/lcd-2bit-vert.c
191 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
192 drivers/lcd-2bit-vi.c
193 #endif /* LCD_PIXELFORMAT */
194 #elif LCD_DEPTH == 16
195 #if   defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
196 drivers/lcd-16bit-vert.c
197 #else
198 drivers/lcd-16bit.c
199 #endif
200 #endif /* LCD_DEPTH */
201 common/diacritic.c
202 #endif /* HAVE_LCD_BITMAP */
204 #ifdef HAVE_REMOTE_LCD
205 #if LCD_REMOTE_DEPTH == 1
206 drivers/lcd-remote-1bit-v.c
207 #elif LCD_REMOTE_DEPTH == 2
208 drivers/lcd-remote-2bit-vi.c
209 #endif /* LCD_REMOTE_DEPTH */
210 #endif /* HAVE_REMOTE_LCD */
212 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
213     || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
214 backlight-sw-fading.c
215 #endif /* CONFIG_BACKLIGHT_FADING */
217 /* Misc. */
218 drivers/led.c
219 drivers/button.c
220 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
221 #ifdef HAVE_DAC3550A
222 drivers/audio/dac3550a.c
223 #endif
224 #ifdef HAVE_SERIAL
225 drivers/serial.c
226 #endif
227 #endif /* PLATFORM_NATIVE */
228 #ifdef HAVE_TOUCHSCREEN
229 drivers/touchscreen.c
230 #endif
233 /* Storage */
234 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
235 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
236 drivers/ata_flash.c
237 #endif
238 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
239 target/arm/ata-nand-telechips.c
240 #endif
241 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
242 target/arm/s5l8700/ata-nand-s5l8700.c
243 #endif
244 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_RK27XX)
245 target/arm/rk27xx/ata-nand-rk27xx.c
246 #endif
247 #if (CONFIG_STORAGE & STORAGE_ATA) && !defined(IPOD_6G)
248 drivers/ata.c
249 #endif
250 #if (CONFIG_STORAGE & STORAGE_SD)
251 drivers/sd.c
252 #endif
253 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
254 drivers/ramdisk.c
255 #endif
256 storage.c
257 drivers/fat.c
258 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
259 sdmmc.c
260 #endif
261 #endif /* PLATFORM_NATIVE */
263 /* EEPROM */
264 #ifdef HAVE_EEPROM
265 drivers/eeprom_24cxx.c
266 #ifdef HAVE_EEPROM_SETTINGS
267 eeprom_settings.c
268 #endif /* HAVE_EEPROM_SETTINGS */
269 #endif /* HAVE_EEPROM */
271 /* RTC */
272 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
273 #if (CONFIG_RTC == RTC_M41ST84W)
274 drivers/rtc/rtc_m41st84w.c
275 #elif (CONFIG_RTC == RTC_PCF50606)
276 drivers/rtc/rtc_pcf50606.c
277 #elif (CONFIG_RTC == RTC_PCF50605)
278 drivers/rtc/rtc_pcf50605.c
279 #elif (CONFIG_RTC == RTC_E8564)
280 drivers/rtc/rtc_e8564.c
281 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
282 drivers/rtc/rtc_ds1339_ds3231.c
283 #elif (CONFIG_RTC == RTC_S3C2440)
284 drivers/rtc/rtc_s3c2440.c
285 #elif (CONFIG_RTC == RTC_AS3514)
286 drivers/rtc/rtc_as3514.c
287 #elif (CONFIG_RTC == RTC_RX5X348AB)
288 drivers/rtc/rtc_rx5x348ab.c
289 #elif (CONFIG_RTC == RTC_MR100)
290 drivers/rtc/rtc_mr100.c
291 #elif (CONFIG_RTC == RTC_MC13783)
292 drivers/rtc/rtc_mc13783.c
293 #elif (CONFIG_RTC == RTC_TCC77X)
294 drivers/rtc/rtc_tcc77x.c
295 #elif (CONFIG_RTC == RTC_JZ47XX)
296 drivers/rtc/rtc_jz4740.c
297 #elif (CONFIG_RTC == RTC_S35390A)
298 drivers/rtc/rtc_s35390a.c
299 #elif (CONFIG_RTC == RTC_S35380A)
300 drivers/rtc/rtc_s35380a.c
301 #elif (CONFIG_RTC == RTC_D2)
302 drivers/rtc/rtc_d2.c
303 #elif (CONFIG_RTC == RTC_IMX233)
304 drivers/rtc/rtc_imx233.c
305 #endif /* (CONFIG_RTC == RTC_) */
306 #endif /* PLATFORM_NATIVE */
308 #ifndef BOOTLOADER
309 /* Tuner */
310 #if CONFIG_TUNER
311 tuner.c
312 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
313 #if (CONFIG_TUNER & LV24020LP)
314 drivers/tuner/lv24020lp.c
315 #endif /* (CONFIG_TUNER & LV24020LP) */
316 #if (CONFIG_TUNER & S1A0903X01)
317 drivers/fmradio.c
318 drivers/tuner/s1a0903x01.c
319 #endif /* (CONFIG_TUNER & S1A0903X01) */
320 #if (CONFIG_TUNER & TEA5760)
321 drivers/tuner/tea5760uk.c
322 #endif
323 #if (CONFIG_TUNER & TEA5767)
324 drivers/tuner/tea5767.c
325 #endif /* (CONFIG_TUNER & TEA5767) */
326 #if (CONFIG_TUNER & SI4700)
327 drivers/tuner/si4700.c
328 #endif /* (CONFIG_TUNER & SI4700) */
329 #if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
330 drivers/tuner/ipod_remote_tuner.c
331 #endif /* (CONFIG_TUNER & IPOD_REMOTE_TUNER) */
332 #if (CONFIG_TUNER & RDA5802)
333 drivers/tuner/rda5802.c
334 #endif /* (CONFIG_TUNER & RDA5802) */
335 #if (CONFIG_TUNER & STFM1000)
336 drivers/tuner/stfm1000.c
337 #endif /* (CONFIG_TUNER & STFM1000) */
338 #if defined(HAVE_RDS_CAP)
339 drivers/rds.c
340 #endif /* HAVE_RDS_CAP */
341 #endif /* PLATFORM_NATIVE */
342 #endif /* CONFIG_TUNER */
343 #endif /* BOOTLOADER */
345 /* Sound */
346 sound.c
348 #if CONFIG_CODEC == SWCODEC
350 #ifndef BOOTLOADER
351 pcm_sampr.c
352 pcm.c
353 pcm_mixer.c
354 #ifdef HAVE_RECORDING
355 enc_base.c
356 #endif /* HAVE_RECORDING */
357 #endif /* BOOTLOADER */
358 #endif /* SWCODEC */
360 /* Audio codec */
361 #if (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER)
362 #if defined(HAVE_UDA1380)
363 drivers/audio/uda1380.c
364 #elif defined(HAVE_WM8751) \
365    || defined(HAVE_WM8750)
366 drivers/audio/wm8751.c
367 #elif defined(HAVE_WM8978)
368 drivers/audio/wm8978.c
369 #elif defined(HAVE_WM8975)
370 drivers/audio/wm8975.c
371 #elif defined(HAVE_WM8985)
372 drivers/audio/wm8985.c
373 #elif defined(HAVE_WM8758)
374 drivers/audio/wm8758.c
375 #elif defined(HAVE_WM8711) \
376    || defined(HAVE_WM8721) \
377    || defined(HAVE_WM8731)
378 drivers/audio/wm8731.c
379 #elif defined(HAVE_AS3514)
380 drivers/audio/as3514.c
381 #elif defined(HAVE_TLV320)
382 drivers/audio/tlv320.c
383 #elif defined(HAVE_MAS35XX)
384 drivers/audio/mas35xx.c
385 #elif defined(HAVE_AK4537)
386 drivers/audio/ak4537.c
387 #elif defined(HAVE_UDA1341)
388 drivers/audio/uda1341.c
389 #elif defined(HAVE_CS42L55)
390 drivers/audio/cs42l55.c
391 #elif defined (HAVE_RK27XX_CODEC)
392 drivers/audio/rk27xx_codec.c
393 #elif defined(HAVE_AIC3X)
394 drivers/audio/aic3x.c
395 #elif defined (HAVE_DUMMY_CODEC)
396 drivers/audio/dummy_codec.c
397 #endif /* defined(HAVE_*) */
398 #else /* PLATFORM_HOSTED */
399 #if defined(SAMSUNG_YPR0) && defined(HAVE_AS3514)
400 drivers/audio/as3514.c
401 target/hosted/pcm-alsa.c
402 #elif defined(HAVE_SDL_AUDIO)
403 drivers/audio/sdl.c
404 #if CONFIG_CODEC == SWCODEC
405 #if (CONFIG_PLATFORM & PLATFORM_MAEMO5)
406 target/hosted/maemo/pcm-gstreamer.c
407 #else
408 target/hosted/sdl/pcm-sdl.c
409 #endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
410 #endif /* CONFIG_CODEC == SWCODEC */
411 #endif
412 #endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
414 /* CPU Specific - By class then particular chip if applicable */
415 #if defined(CPU_SH)
417 target/sh/adc-sh.c
418 target/sh/bitswap.S
419 target/sh/crt0.S
420 target/sh/kernel-sh.c
421 target/sh/system-sh.c
422 target/sh/archos/descramble.S
423 target/sh/archos/i2c-archos.c
424 target/sh/debug-sh.c
426 #elif defined(CPU_COLDFIRE)
428 target/coldfire/crt0.S
429 target/coldfire/kernel-coldfire.c
430 target/coldfire/system-coldfire.c
431 target/coldfire/timer-coldfire.c
432 #ifndef BOOTLOADER
433 target/coldfire/pcm-coldfire.c
434 target/coldfire/debug-coldfire.c
435 #endif /* BOOTLOADER */
436 #if CONFIG_I2C == I2C_COLDFIRE
437 target/coldfire/i2c-coldfire.c
438 #endif /* CONFIG_I2C == I2C_COLDFIRE */
439 #if CONFIG_STORAGE & STORAGE_ATA
440 target/coldfire/ata-as-coldfire.S
441 #endif
443 #elif defined(CPU_PP) || (defined(CPU_ARM) && (CONFIG_PLATFORM & PLATFORM_NATIVE))
444 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
446 # if ARM_ARCH < 6
447 target/arm/bits-armv4.S
448 #  if CONFIG_CPU == IMX233 || CONFIG_CPU == DM320 \
449    || CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2 \
450    || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \
451    || defined(CPU_S5L870X)
452 target/arm/mmu-arm.S
453 #  endif
454 # endif
455 target/arm/system-arm.c
457 #if CONFIG_STORAGE & STORAGE_ATA
458 # ifdef CPU_PP502x
459 target/arm/pp/ata-pp5020.c
460 # endif
461 # if CONFIG_CPU == DM320 || defined(CPU_PP502x)
462 target/arm/ata-as-arm.S
463 # endif
464 #endif
466 #if defined(CPU_PP) && defined(IPOD_ARCH)
467 target/arm/ipod/power-ipod.c
468 # if LCD_DEPTH == 2
469 target/arm/ipod/lcd-as-gray.S
470 # endif
471 # ifndef IPOD_1G2G
472 #  ifndef IPOD_3G
473 target/arm/ipod/piezo.c
474 #  endif /* IPOD_3G */
475 drivers/pcf50605.c
476 target/arm/ipod/powermgmt-ipod-pcf.c
477 # endif /* IPOD_1G2G */
478 #endif /* CPU_PP && IPOD_ARCH */
480 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
481 target/arm/pp/i2c-pp.c
482 #elif CONFIG_I2C == I2C_PNX0101
483 target/arm/pnx0101/i2c-pnx0101.c
484 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
485 target/arm/i2c-telechips.c
486 #elif CONFIG_I2C == I2C_S3C2440
487 /* no i2c driver yet */
488 #elif CONFIG_I2C == I2C_S5L8700
489 target/arm/s5l8700/i2c-s5l8700.c
490 #elif CONFIG_I2C == I2C_S5L8702
491 target/arm/s5l8702/i2c-s5l8702.c
492 #elif CONFIG_I2C == I2C_RK27XX
493 target/arm/rk27xx/i2c-rk27xx.c
494 #elif CONFIG_I2C == I2C_IMX233
495 target/arm/imx233/i2c-imx233.c
496 #endif
498 #if CONFIG_CPU == PNX0101
499 target/arm/pnx0101/kernel-pnx0101.c
500 target/arm/pnx0101/system-pnx0101.c
501 target/arm/pnx0101/timer-pnx0101.c
502 #endif
504 #if CONFIG_CPU == IMX233
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 # if (CONFIG_STORAGE & STORAGE_SD)
511 target/arm/imx233/sd-imx233.c
512 # endif
513 # if (CONFIG_STORAGE & STORAGE_MMC)
514 target/arm/imx233/mmc-imx233.c
515 # endif
516 target/arm/imx233/partitions-imx233.c
517 target/arm/imx233/ssp-imx233.c
518 target/arm/imx233/dma-imx233.c
519 target/arm/imx233/icoll-imx233.c
520 target/arm/imx233/pinctrl-imx233.c
521 target/arm/imx233/power-imx233.c
522 target/arm/imx233/powermgmt-imx233.c
523 target/arm/imx233/adc-imx233.c
524 target/arm/imx233/lradc-imx233.c
525 target/arm/imx233/pwm-imx233.c
526 target/arm/imx233/rtc-imx233.c
527 target/arm/imx233/dcp-imx233.c
528 # ifdef HAVE_TOUCHSCREEN
529 target/arm/imx233/touchscreen-imx233.c
530 # endif
531 #ifndef BOOTLOADER
532 target/arm/imx233/debug-imx233.c
533 #endif
534 #if !defined(BOOTLOADER) || defined(HAVE_BOOTLOADER_USB_MODE)
535 target/arm/imx233/usb-imx233.c
536 #endif
537 #ifndef BOOTLOADER
538 #ifdef HAVE_IMX233_CODEC
539 target/arm/imx233/audioout-imx233.c
540 target/arm/imx233/audioin-imx233.c
541 target/arm/imx233/pcm-imx233.c
542 drivers/audio/imx233-codec.c
543 #endif
544 target/arm/imx233/timer-imx233.c
545 #endif
546 #endif /* IMX233 */
548 #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
549 target/arm/as3525/system-as3525.c
550 target/arm/as3525/memory-init.S
551 target/arm/as3525/kernel-as3525.c
552 target/arm/as3525/timer-as3525.c
553 #if CONFIG_CPU == AS3525
554 target/arm/as3525/sd-as3525.c
555 #ifdef HAVE_SCROLLWHEEL
556 target/arm/as3525/scrollwheel-as3525.c
557 #endif /* HAVE_SCROLLWHEEL */
558 #else /* AS3535v2 */
559 target/arm/as3525/tuner-as3525v2.c
560 target/arm/as3525/sd-as3525v2.c
561 #endif
562 target/arm/as3525/power-as3525.c
563 target/arm/as3525/usb-as3525.c
564 target/arm/as3525/dma-pl081.c
565 target/arm/as3525/ascodec-as3525.c
566 #ifndef BOOTLOADER
567 drivers/generic_i2c.c
568 target/arm/as3525/audio-as3525.c
569 target/arm/as3525/debug-as3525.c
570 #if CONFIG_TUNER
571 target/arm/as3525/fmradio-i2c-as3525.c
572 #endif /* CONFIG_TUNER */
573 target/arm/as3525/pcm-as3525.c
574 #endif /* BOOTLOADER */
575 #endif /* CONFIG_CPU == AS3525 */
577 #if defined(CPU_PP)
578 target/arm/pp/i2s-pp.c
579 target/arm/pp/kernel-pp.c
580 target/arm/pp/timer-pp.c
581 # if CONFIG_STORAGE & STORAGE_SD
582 target/arm/pp/ata-sd-pp.c
583 # endif
584 # if !defined(HAVE_AS3514) && !defined(HAVE_AK4537)
585 target/arm/pp/wmcodec-pp.c
586 # endif
587 #if CONFIG_CPU == PP5002
588 target/arm/pp/system-pp5002.c
589 target/arm/pp/usb-fw-pp5002.c
590 target/arm/pp/ata-pp5002.c
591 #elif defined CPU_PP502x
592 target/arm/pp/usb-fw-pp502x.c
593 target/arm/pp/system-pp502x.c
594 #endif
595 #ifdef BOOTLOADER
596 #ifdef HAVE_BOOTLOADER_USB_MODE
597 target/arm/pp/crt0-pp502x-bl-usb.S
598 #else
599 target/arm/pp/crt0-pp-bl.S
600 #endif /* HAVE_BOOTLOADER_USB_MODE */
601 #else /* !BOOTLOADER */
602 target/arm/pp/pcm-pp.c
603 target/arm/pp/debug-pp.c
604 #if !defined(SANSA_E200) && !defined(SANSA_C200)
605 target/arm/pp/audio-pp.c
606 #endif /* SANSA_E200 */
607 target/arm/pp/crt0-pp.S
608 #endif
609 #elif CONFIG_CPU == PNX0101
610 target/arm/pnx0101/crt0-pnx0101.S
611 #elif CONFIG_CPU==DM320
612 target/arm/tms320dm320/crt0.S
613 #elif CONFIG_CPU==S3C2440
614 target/arm/s3c2440/crt0.S
615 #elif defined(CPU_TCC77X)
616 target/arm/tcc77x/crt0.S
617 #elif defined(CPU_TCC780X)
618 target/arm/tcc780x/crt0.S
619 #elif CONFIG_CPU==IMX31L
620 target/arm/imx31/crt0.S
621 #elif CONFIG_CPU==S5L8700 || CONFIG_CPU==S5L8701
622 target/arm/s5l8700/crt0.S
623 #elif CONFIG_CPU==S5L8702
624 target/arm/s5l8702/crt0.S
625 #elif CONFIG_CPU==IMX233
626 target/arm/imx233/crt0.S
627 #elif CONFIG_CPU==RK27XX
628 target/arm/rk27xx/crt0.S
629 #elif defined(CPU_ARM)
630 target/arm/crt0.S
631 #endif /* defined(CPU_*) */
633 #elif defined(CPU_MIPS)
634 target/mips/mmu-mips.c
635 #if CONFIG_CPU==JZ4732
636 target/mips/ingenic_jz47xx/crt0.S
637 #endif /* CONFIG_CPU == JZ4732 */
639 #else
641 #if (CONFIG_PLATFORM & PLATFORM_NATIVE)
642 crt0.S
643 drivers/i2c.c
644 #endif /* PLATFORM_NATIVE */
646 #endif /* defined(CPU_*) */
648 #if !defined(SIMULATOR)
650 /* target code */
652 /* LCD driver */
653 #if   CONFIG_LCD == LCD_SSD1303
654 target/arm/as3525/lcd-ssd1303.c
655 #elif CONFIG_LCD == LCD_SSD1801
656 target/sh/archos/player/lcd-as-player.S
657 target/sh/archos/player/lcd-player.c
658 #elif CONFIG_LCD == LCD_SSD1815
659 # if CONFIG_CPU == SH7034
660 target/sh/archos/lcd-archos-bitmap.c
661 target/sh/archos/lcd-as-archos-bitmap.S
662 # else
663 target/arm/lcd-ssd1815.c
664 # endif
665 #elif CONFIG_LCD == LCD_HX8340B
666 target/arm/rk27xx/lcd-hifiman.c
667 #elif CONFIG_LCD == LCD_C200
668 target/arm/lcd-c200_c200v2.c
669 #elif CONFIG_LCD == LCD_FUZE
670 target/arm/as3525/lcd-fuze.c
671 #elif CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO
672 target/arm/ipod/lcd-color_nano.c
673 #elif CONFIG_LCD == LCD_IPODMINI || CONFIG_LCD == LCD_IPOD2BPP
674 target/arm/ipod/lcd-gray.c
675 #elif CONFIG_LCD == LCD_GIGABEATS
676 target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
677 #elif CONFIG_LCD == LCD_GIGABEAT
678 target/arm/s3c2440/lcd-s3c2440.c
679 #endif
681 /* USB Stack */
682 #ifdef HAVE_USBSTACK
683 usbstack/usb_core.c
684 #ifdef USB_ENABLE_STORAGE
685 usbstack/usb_storage.c
686 #endif
687 #ifdef USB_ENABLE_SERIAL
688 usbstack/usb_serial.c
689 #endif
690 #ifdef USB_ENABLE_CHARGING_ONLY
691 usbstack/usb_charging_only.c
692 #endif
693 #ifdef USB_ENABLE_HID
694 usbstack/usb_hid.c
695 #endif
696 #if CONFIG_USBOTG == USBOTG_M66591
697 drivers/m66591.c
698 #elif CONFIG_USBOTG == USBOTG_ARC
699 target/arm/usb-drv-arc.c
700 #elif CONFIG_USBOTG == USBOTG_AS3525
701 target/arm/as3525/usb-drv-as3525.c
702 #elif CONFIG_USBOTG == USBOTG_S3C6400X
703 target/arm/usb-s3c6400x.c
704 #elif CONFIG_USBOTG == USBOTG_ISP1583
705 drivers/isp1583.c
706 #elif CONFIG_USBOTG == USBOTG_RK27XX
707 target/arm/rk27xx/usb-drv-rk27xx.c
708 #endif
709 #else /* !defined(HAVE_USBSTACK) */
710 #if CONFIG_USBOTG == USBOTG_ISP1362      
711 drivers/isp1362.c
712 #elif CONFIG_USBOTG == USBOTG_M5636      
713 drivers/m5636.c
714 #endif
715 #endif /* !defined(HAVE_USBSTACK) */
717 /* Other Random Hardware */
718 #ifdef HAVE_TSC2100
719 drivers/tsc2100.c
720 drivers/audio/tsc2100.c
721 #endif
723 #ifdef HAVE_AS3514
724 # ifdef CPU_PP
725 target/arm/pp/ascodec-pp.c
726 # endif
727 # if !defined(BOOTLOADER) || defined(CPU_PP)
728 drivers/adc-as3514.c
729 #  if !defined(SANSA_M200V4) && !defined(SAMSUNG_YPR0)
730 target/arm/powermgmt-ascodec.c
731 #  endif
732 # endif
733 #endif
735 #if CONFIG_I2C == I2C_PP5020
736 # ifdef IPOD_ARCH
737 target/arm/ipod/adc-ipod-pcf.c
738 # else
739 target/arm/pp/adc-pp5020.c
740 # endif /* IPOD_ARCH */
742 #elif CONFIG_I2C == I2C_PP5002
743 # ifdef IPOD_1G2G
744 target/arm/ipod/1g2g/adc-ipod-1g2g.c
745 # else
746 target/arm/ipod/adc-ipod-pcf.c
747 # endif /* IPOD_1G2G */
749 #elif CONFIG_I2C == I2C_S3C2440
750 target/arm/s3c2440/adc-s3c2440.c
752 #elif CONFIG_I2C == I2C_S5L8700
753 # ifdef IPOD_NANO2G
754 target/arm/s5l8700/ipodnano2g/adc-nano2g.c
755 # else
756 target/arm/s5l8700/adc-s5l8700.c
757 # endif
759 #elif CONFIG_I2C == I2C_TCC77X
760 target/arm/tcc77x/adc-tcc77x.c
762 #endif /* CONFIG_I2C */
764 #ifdef CPU_SH
765 target/sh/archos/mascodec-archos.c
766 target/sh/archos/audio-archos.c
767 target/sh/archos/timer-archos.c
768 # if CONFIG_STORAGE & STORAGE_ATA
769 target/sh/archos/ata-archos.c
770 target/sh/archos/ata-as-archos.S
771 # endif
772 # ifdef HAVE_SERIAL
773 target/sh/archos/uart-archos.c
774 # endif
775 #endif
777 #ifdef CPU_TCC77X
778 target/arm/usb-tcc.c
779 target/arm/tcc77x/kernel-tcc77x.c
780 target/arm/tcc77x/system-tcc77x.c
781 target/arm/tcc77x/timer-tcc77x.c
782 # ifndef IAUDIO7
783 target/arm/tcc77x/powermgmt-tcc77x.c
784 # endif /* !IAUDIO7 */
785 # ifndef BOOTLOADER
786 #  ifndef SANSA_C100
787 target/arm/wmcodec-telechips.c
788 #  endif /* !C100 */
789 target/arm/pcm-telechips.c
790 target/arm/tcc77x/debug-tcc77x.c
791 # endif /* !BOOTLOADER */
792 #endif /* CPU_TCC77X */
794 #if CONFIG_CPU == S5L8700 || CONFIG_CPU == S5L8701
795 target/arm/s5l8700/kernel-s5l8700.c
796 target/arm/s5l8700/system-s5l8700.c
797 target/arm/s5l8700/dma-s5l8700.c
798 # ifndef BOOTLOADER
799 target/arm/s5l8700/wmcodec-s5l8700.c
800 target/arm/s5l8700/timer-s5l8700.c
801 target/arm/s5l8700/pcm-s5l8700.c
802 target/arm/s5l8700/debug-s5l8700.c
803 # endif
804 #endif /* S5L8700 || S5L8701 */
806 #if CONFIG_CPU == S3C2440
807 target/arm/s3c2440/debug-s3c2440.c
808 target/arm/s3c2440/kernel-s3c2440.c
809 target/arm/s3c2440/system-s3c2440.c
810 # ifndef BOOTLOADER
811 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
812 target/arm/s3c2440/i2c-s3c2440.c
813 # endif
814 #endif /* CONFIG_CPU == S3C2440 */
816 #ifdef ARCHOS_PLAYER
817 target/sh/archos/player/button-player.c
818 target/sh/archos/player/hwcompat-player.c
819 target/sh/archos/player/power-player.c
820 target/sh/archos/player/powermgmt-player.c
821 target/sh/archos/player/usb-player.c
822 #endif /* ARCHOS_PLAYER */
824 #ifdef ARCHOS_RECORDER
825 target/sh/archos/recorder/button-recorder.c
826 target/sh/archos/recorder/power-recorder.c
827 target/sh/archos/recorder/powermgmt-recorder.c
828 target/sh/archos/recorder/usb-recorder.c
829 #endif /* ARCHOS_RECORDER */
831 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
832 target/sh/archos/fm_v2/button-fm_v2.c
833 target/sh/archos/fm_v2/power-fm_v2.c
834 target/sh/archos/fm_v2/powermgmt-fm_v2.c
835 target/sh/archos/fm_v2/usb-fm_v2.c
836 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
838 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
839 target/sh/archos/ondio/button-ondio.c
840 target/sh/archos/ondio/power-ondio.c
841 target/sh/archos/ondio/powermgmt-ondio.c
842 target/sh/archos/ondio/usb-ondio.c
843 target/sh/archos/ondio/ata_mmc.c
844 #if (CONFIG_TUNER & TEA5767)
845 target/sh/archos/ondio/fmradio_i2c-ondio.c
846 #endif
847 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
849 #if defined(SANSA_E200) || defined(SANSA_C200)
850 target/arm/sandisk/backlight-c200_e200.c
851 target/arm/sandisk/power-c200_e200.c
852 #ifndef BOOTLOADER
853 target/arm/sandisk/audio-c200_e200.c
854 #endif /* BOOTLOADER */
855 #endif /* SANSA_E200 || SANSA_C200 */
857 #ifdef SANSA_E200
858 drivers/lcd-memframe.c
859 target/arm/sandisk/sansa-e200/lcd-e200.c
860 target/arm/sandisk/sansa-e200/button-e200.c
861 target/arm/sandisk/sansa-e200/powermgmt-e200.c
862 #endif /* SANSA_E200 */
864 #ifdef SANSA_C200
865 target/arm/sandisk/sansa-c200/lcd-as-c200.S
866 target/arm/sandisk/sansa-c200/button-c200.c
867 target/arm/sandisk/sansa-c200/powermgmt-c200.c
868 #endif /* SANSA_C200 */
870 #ifdef SANSA_VIEW
871 target/arm/sandisk/sansa-view/backlight-view.c
872 target/arm/sandisk/sansa-view/adc-view.c
873 target/arm/sandisk/sansa-view/power-view.c
874 target/arm/sandisk/sansa-view/lcd-view.c
875 target/arm/sandisk/sansa-view/button-view.c
876 target/arm/sandisk/sansa-view/powermgmt-view.c
877 #ifndef BOOTLOADER
878 /* target/arm/sandisk/audio-view.c */
879 #endif /* BOOTLOADER */
880 #endif /* SANSA_VIEW */
882 #ifdef PHILIPS_SA9200
883 #ifndef BOOTLOADER
884 drivers/synaptics-mep.c
885 #endif /* BOOTLOADER */
886 target/arm/philips/sa9200/backlight-sa9200.c
887 target/arm/philips/sa9200/button-sa9200.c
888 target/arm/philips/sa9200/lcd-sa9200.c
889 target/arm/philips/sa9200/lcd-as-sa9200.S
890 target/arm/philips/sa9200/power-sa9200.c
891 target/arm/philips/sa9200/powermgmt-sa9200.c
892 #endif /* PHILIPS_SA9200 */
894 #if defined(PHILIPS_HDD1630) || defined(PHILIPS_HDD6330)
895 #ifndef BOOTLOADER
896 drivers/synaptics-mep.c
897 #endif /* BOOTLOADER */
898 target/arm/philips/power-hdd.c
899 target/arm/philips/fmradio_i2c-hdd.c
900 #endif /* PHILIPS_HDD1630 || PHILIPS_HDD6330 */
902 #ifdef PHILIPS_HDD1630
903 target/arm/philips/hdd1630/backlight-hdd1630.c
904 target/arm/philips/hdd1630/button-hdd1630.c
905 target/arm/philips/hdd1630/lcd-hdd1630.c
906 target/arm/philips/hdd1630/lcd-as-hdd1630.S
907 target/arm/philips/hdd1630/powermgmt-hdd1630.c
908 #endif /* PHILIPS_HDD1630 */
910 #ifdef PHILIPS_HDD6330
911 target/arm/philips/hdd6330/backlight-hdd6330.c
912 target/arm/philips/hdd6330/button-hdd6330.c
913 target/arm/philips/hdd6330/lcd-hdd6330.c
914 target/arm/philips/hdd6330/lcd-as-hdd6330.S
915 target/arm/philips/hdd6330/powermgmt-hdd6330.c
916 #endif /* PHILIPS_HDD6330 */
918 #if defined(IAUDIO_X5) || defined(IAUDIO_M5)
919 target/coldfire/pcf50606-coldfire.c
920 target/coldfire/iaudio/adc-iaudio.c
921 target/coldfire/iaudio/ata-iaudio.c
922 #ifdef HAVE_FMRADIO_IN
923 target/coldfire/iaudio/fmradio_i2c-iaudio.c
924 #endif
925 target/coldfire/iaudio/lcd-remote-as-iaudio.S
926 target/coldfire/iaudio/lcd-remote-iaudio.c
927 target/coldfire/iaudio/pcf50606-iaudio.c
928 target/coldfire/iaudio/power-x5m5.c
929 target/coldfire/iaudio/powermgmt-iaudio.c
930 target/coldfire/iaudio/system-iaudio.c
931 target/coldfire/iaudio/usb-iaudio.c
932 #ifndef BOOTLOADER
933 target/coldfire/iaudio/audio-iaudio.c
934 #endif
935 #endif /* IAUDIO_X5 || IAUDIO_M5 */
937 #ifdef IAUDIO_X5
938 target/coldfire/iaudio/x5/backlight-x5.c
939 target/coldfire/iaudio/x5/button-x5.c
940 target/coldfire/iaudio/x5/ds2411-x5.c
941 target/coldfire/iaudio/x5/lcd-as-x5.S
942 target/coldfire/iaudio/x5/lcd-x5.c
943 target/coldfire/iaudio/x5/m5636-x5.c
944 #endif /* IAUDIO_X5 */
946 #ifdef IAUDIO_M5
947 target/coldfire/iaudio/m5/backlight-m5.c
948 target/coldfire/iaudio/m5/button-m5.c
949 target/coldfire/iaudio/m5/lcd-as-m5.S
950 target/coldfire/iaudio/m5/lcd-m5.c
951 #endif /* IAUDIO_M5 */
953 #ifdef IAUDIO_M3
954 target/coldfire/iaudio/fmradio_i2c-iaudio.c
955 target/coldfire/iaudio/m3/adc-m3.c
956 target/coldfire/iaudio/m3/ata-m3.c
957 target/coldfire/iaudio/m3/backlight-m3.c
958 target/coldfire/iaudio/m3/button-m3.c
959 target/coldfire/iaudio/m3/lcd-m3.c
960 target/coldfire/iaudio/m3/lcd-as-m3.S
961 target/coldfire/iaudio/m3/power-m3.c
962 target/coldfire/iaudio/m3/powermgmt-m3.c
963 target/coldfire/iaudio/m3/system-m3.c
964 target/coldfire/iaudio/m3/usb-m3.c
965 #ifndef BOOTLOADER
966 target/coldfire/iaudio/audio-iaudio.c
967 #endif
968 #endif /* IAUDIO_M3 */
970 #ifdef IRIVER_IFP7XX_SERIES
971 #ifdef STUB
972 ifp_usb_serial.c
973 libc/sscanf.c
974 #endif /* STUB */
975 #endif /* IRIVER_IFP7XX_SERIES */
977 #if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES)
978 target/coldfire/iriver/ata-iriver.c
979 target/coldfire/iriver/lcd-remote-iriver.c
980 target/coldfire/iriver/lcd-remote-as-iriver.S
981 target/coldfire/iriver/system-iriver.c
982 target/coldfire/iriver/fmradio_i2c-iriver.c
983 #ifndef BOOTLOADER
984 target/coldfire/iriver/audio-iriver.c
985 target/coldfire/iriver/udacodec-iriver.c
986 #endif
987 #endif /* IRIVER_H300_SERIES || IRIVER_H100_SERIES */
989 #ifdef IRIVER_H300_SERIES
990 target/coldfire/pcf50606-coldfire.c
991 target/coldfire/iriver/h300/sw_i2c-h300.c
992 target/coldfire/iriver/h300/adc-h300.c
993 target/coldfire/iriver/h300/backlight-h300.c
994 target/coldfire/iriver/h300/button-h300.c
995 target/coldfire/iriver/h300/pcf50606-h300.c
996 target/coldfire/iriver/h300/lcd-as-h300.S
997 target/coldfire/iriver/h300/lcd-h300.c
998 target/coldfire/iriver/h300/power-h300.c
999 target/coldfire/iriver/h300/powermgmt-h300.c
1000 target/coldfire/iriver/h300/usb-h300.c
1001 #endif /* IRIVER_H300_SERIES */
1003 #ifdef IRIVER_H100_SERIES
1004 drivers/sw_i2c.c
1005 target/coldfire/uart-coldfire.c
1006 target/coldfire/iriver/h100/adc-h100.c
1007 target/coldfire/iriver/h100/backlight-h100.c
1008 target/coldfire/iriver/h100/button-h100.c
1009 target/coldfire/iriver/h100/lcd-as-h100.S
1010 target/coldfire/iriver/h100/lcd-h100.c
1011 target/coldfire/iriver/h100/power-h100.c
1012 target/coldfire/iriver/h100/powermgmt-h100.c
1013 #ifndef BOOTLOADER
1014 target/coldfire/iriver/h100/spdif-h100.c
1015 #endif
1016 target/coldfire/iriver/h100/usb-h100.c
1017 #endif /* IRIVER_H100_SERIES */
1019 #if defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
1020 target/arm/iriver/h10/backlight-h10.c
1021 target/arm/iriver/h10/button-h10.c
1022 target/arm/iriver/h10/fmradio_i2c-h10.c
1023 target/arm/iriver/h10/power-h10.c
1024 target/arm/iriver/h10/powermgmt-h10.c
1025 #endif /* IRIVER_H10 || IRIVER_H10_5GB */
1027 #ifdef IRIVER_H10
1028 target/arm/iriver/h10/lcd-h10_20gb.c
1029 target/arm/iriver/h10/lcd-as-h10.S
1030 #endif /* IRIVER_H10 */
1032 #ifdef IRIVER_H10_5GB
1033 target/arm/iriver/h10/lcd-h10_5gb.c
1034 #endif /* IRIVER_H10_5GB */
1036 #ifdef GIGABEAT_F
1037 drivers/lcd-memframe.c
1038 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
1039 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
1040 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
1041 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
1042 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
1043 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
1044 #ifndef BOOTLOADER
1045 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
1046 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
1047 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
1048 #endif
1049 #endif /* GIGABEAT_F */
1051 #ifdef GIGABEAT_S
1052 drivers/lcd-memframe.c
1053 target/arm/bits-armv6.S
1054 target/arm/mmu-armv6.S
1055 target/arm/imx31/ata-imx31.c
1056 target/arm/imx31/avic-imx31.c
1057 target/arm/imx31/ccm-imx31.c
1058 target/arm/imx31/debug-imx31.c
1059 target/arm/imx31/dvfs_dptc-imx31.c
1060 target/arm/imx31/gpio-imx31.c
1061 target/arm/imx31/i2c-imx31.c
1062 target/arm/imx31/iomuxc-imx31.c
1063 target/arm/imx31/mc13783-imx31.c
1064 target/arm/imx31/mmu-imx31.c
1065 target/arm/imx31/rolo_restart_firmware.S
1066 target/arm/imx31/sdma-imx31.c
1067 target/arm/imx31/spi-imx31.c
1068 target/arm/imx31/uart-imx31.c
1069 target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
1070 target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
1071 target/arm/imx31/gigabeat-s/button-gigabeat-s.c
1072 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
1073 target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
1074 target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
1075 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
1076 target/arm/imx31/gigabeat-s/power-gigabeat-s.c
1077 target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
1078 target/arm/imx31/gigabeat-s/system-gigabeat-s.c
1079 target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
1080 target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
1081 #ifndef BOOTLOADER
1082 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
1083 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
1084 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
1085 target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
1086 target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
1087 #endif
1088 #endif /* GIGABEAT_S */
1090 #if CONFIG_CPU == DM320
1091 target/arm/tms320dm320/debug-dm320.c
1092 target/arm/tms320dm320/dsp-dm320.c
1093 target/arm/tms320dm320/i2c-dm320.c
1094 #ifdef HAVE_SOFTWARE_I2C
1095 drivers/generic_i2c.c
1096 #endif
1097 target/arm/tms320dm320/kernel-dm320.c
1098 target/arm/tms320dm320/spi-dm320.c
1099 target/arm/tms320dm320/system-dm320.c
1100 target/arm/tms320dm320/timer-dm320.c
1101 target/arm/tms320dm320/uart-dm320.c
1102 #endif /* CONFIG_CPU == DM320 */
1104 #ifdef MROBE_500
1105 target/arm/tms320dm320/mrobe-500/crt0-board.S
1106 target/arm/tms320dm320/mrobe-500/adc-mr500.c
1107 target/arm/tms320dm320/mrobe-500/ata-mr500.c
1108 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
1109 target/arm/tms320dm320/mrobe-500/button-mr500.c
1110 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
1111 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
1112 #if defined(HAVE_REMOTE_LCD)
1113 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
1114 #endif
1115 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
1116 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
1117 target/arm/tms320dm320/mrobe-500/power-mr500.c
1118 target/arm/tms320dm320/mrobe-500/usb-mr500.c
1119 #endif /* MROBE_500 */
1121 #ifdef CREATIVE_ZVx
1122 drivers/lcd-memframe.c
1123 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
1124 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
1125 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
1126 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
1127 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
1128 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
1129 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
1130 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
1131 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
1132 #endif /* CREATIVE_ZVx */
1134 #ifdef CREATIVE_ZENXFI2
1135 target/arm/imx233/creative-zenxfi2/backlight-zenxfi2.c
1136 target/arm/imx233/creative-zenxfi2/lcd-zenxfi2.c
1137 target/arm/imx233/creative-zenxfi2/button-zenxfi2.c
1138 target/arm/imx233/creative-zenxfi2/debug-zenxfi2.c
1139 target/arm/imx233/creative-zenxfi2/power-zenxfi2.c
1140 target/arm/imx233/creative-zenxfi2/adc-zenxfi2.c
1141 target/arm/imx233/creative-zenxfi2/powermgmt-zenxfi2.c
1142 #ifndef BOOTLOADER
1143 target/arm/imx233/creative-zenxfi2/audio-zenxfi2.c
1144 #endif
1145 #endif
1147 #ifdef CREATIVE_ZENXFI3
1148 drivers/mpr121.c
1149 target/arm/imx233/creative-zenxfi3/fmradio-i2c-zenxfi3.c
1150 target/arm/imx233/creative-zenxfi3/backlight-zenxfi3.c
1151 target/arm/imx233/creative-zenxfi3/lcd-zenxfi3.c
1152 target/arm/imx233/creative-zenxfi3/button-zenxfi3.c
1153 target/arm/imx233/creative-zenxfi3/debug-zenxfi3.c
1154 target/arm/imx233/creative-zenxfi3/power-zenxfi3.c
1155 target/arm/imx233/creative-zenxfi3/adc-zenxfi3.c
1156 target/arm/imx233/creative-zenxfi3/powermgmt-zenxfi3.c
1157 #ifndef BOOTLOADER
1158 target/arm/imx233/creative-zenxfi3/audio-zenxfi3.c
1159 #endif
1160 #endif
1162 #ifdef SANSA_CONNECT
1163 drivers/lcd-memframe.c
1164 target/arm/tms320dm320/sdmmc-dm320.c
1165 target/arm/tms320dm320/sansa-connect/crt0-board.S
1166 target/arm/tms320dm320/sansa-connect/lcd-sansaconnect.c
1167 target/arm/tms320dm320/sansa-connect/adc-sansaconnect.c
1168 target/arm/tms320dm320/sansa-connect/power-sansaconnect.c
1169 target/arm/tms320dm320/sansa-connect/powermgmt-sansaconnect.c
1170 target/arm/tms320dm320/sansa-connect/usb-sansaconnect.c
1171 target/arm/tms320dm320/sansa-connect/avr-sansaconnect.c
1172 target/arm/tms320dm320/sansa-connect/backlight-sansaconnect.c
1173 target/arm/tms320dm320/sansa-connect/pcm-sansaconnect.c
1174 target/arm/tms320dm320/dma-dm320.c
1175 #endif /* SANSA_CONNECT */
1177 #ifdef MROBE_100
1178 #ifndef BOOTLOADER
1179 drivers/synaptics-mep.c
1180 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
1181 #endif /* BOOTLOADER */
1182 drivers/sw_i2c.c
1183 target/arm/olympus/mrobe-100/backlight-mr100.c
1184 target/arm/olympus/mrobe-100/button-mr100.c
1185 target/arm/olympus/mrobe-100/lcd-mr100.c
1186 target/arm/olympus/mrobe-100/lcd-as-mr100.S
1187 target/arm/olympus/mrobe-100/power-mr100.c
1188 target/arm/olympus/mrobe-100/powermgmt-mr100.c
1189 #endif /* MROBE_100 */
1191 #ifdef TATUNG_TPJ1022
1192 target/arm/tatung/tpj1022/backlight-tpj1022.c
1193 target/arm/tatung/tpj1022/button-tpj1022.c
1194 target/arm/tatung/tpj1022/lcd-tpj1022.c
1195 target/arm/tatung/tpj1022/power-tpj1022.c
1196 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
1197 #endif /* TATUNG_TPJ1022 */
1199 #ifdef IPOD_4G
1200 target/arm/ipod/backlight-4g_color.c
1201 target/arm/ipod/button-clickwheel.c
1202 #endif /* IPOD_4G */
1204 #ifdef IPOD_COLOR
1205 target/arm/ipod/backlight-4g_color.c
1206 target/arm/ipod/button-clickwheel.c
1207 target/arm/ipod/lcd-as-color-nano.S
1208 #endif /* IPOD_COLOR */
1210 #ifdef IPOD_NANO
1211 target/arm/ipod/backlight-nano_video.c
1212 target/arm/ipod/button-clickwheel.c
1213 target/arm/ipod/lcd-as-color-nano.S
1214 #endif /* IPOD_NANO */
1216 #ifdef IPOD_VIDEO
1217 target/arm/ipod/backlight-nano_video.c
1218 target/arm/ipod/button-clickwheel.c
1219 target/arm/ipod/video/lcd-as-video.S
1220 target/arm/ipod/video/lcd-video.c
1221 #ifndef BOOTLOADER
1222 target/arm/ipod/video/battery-video.c
1223 #endif /* BOOTLOADER */
1224 #endif /* IPOD_VIDEO */
1226 #ifdef IPOD_3G
1227 target/arm/ipod/3g/backlight-3g.c
1228 target/arm/ipod/button-1g-3g.c
1229 #endif /* IPOD_3G */
1231 #ifdef IPOD_1G2G
1232 target/arm/ipod/1g2g/backlight-1g2g.c
1233 target/arm/ipod/1g2g/powermgmt-1g2g.c
1234 target/arm/ipod/button-1g-3g.c
1235 #endif /* IPOD_1G2G */
1237 #if defined(IPOD_MINI) || defined(IPOD_MINI2G)
1238 target/arm/ipod/backlight-mini1g_mini2g.c
1239 #endif
1241 #ifdef IPOD_MINI
1242 target/arm/ipod/button-mini1g.c
1243 #endif /* IPOD_MINI */
1245 #ifdef IPOD_MINI2G
1246 target/arm/ipod/button-clickwheel.c
1247 #endif /* IPOD_MINI2G */
1249 #ifdef IRIVER_IFP7XX
1250 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1251 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1252 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1253 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1254 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1255 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1256 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1257 #ifndef BOOTLOADER
1258 target/arm/pnx0101/pcm-pnx0101.c
1259 #endif /* BOOTLOADER */
1260 #endif /* IRIVER_IFP7XX */
1262 #ifdef LOGIK_DAX
1263 drivers/nand_id.c
1264 target/arm/tcc77x/logikdax/button-logikdax.c
1265 target/arm/tcc77x/logikdax/power-logikdax.c
1266 #ifndef BOOTLOADER
1267 target/arm/tcc77x/logikdax/audio-logikdax.c
1268 #endif /* BOOTLOADER */
1269 #endif /* LOGIK_DAX */
1271 #ifdef SANSA_M200
1272 drivers/nand_id.c
1273 target/arm/tcc77x/m200/button-m200.c
1274 target/arm/tcc77x/m200/power-m200.c
1275 #ifndef BOOTLOADER
1276 target/arm/tcc77x/m200/audio-m200.c
1277 #endif /* BOOTLOADER */
1278 #endif /* SANSA_M200 */
1280 #ifdef SANSA_C100
1281 drivers/nand_id.c
1282 target/arm/tcc77x/c100/lcd-S6B33B2.c
1283 target/arm/tcc77x/c100/button-c100.c
1284 target/arm/tcc77x/c100/power-c100.c
1285 #ifndef BOOTLOADER
1286 target/arm/tcc77x/c100/audio-c100.c
1287 #endif /* BOOTLOADER */
1288 #endif /* SANSA_C100 */
1290 #ifdef SANSA_CLIPPLUS
1291 target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
1292 target/arm/as3525/sansa-clipplus/button-clip.c
1293 target/arm/as3525/sansa-clipplus/backlight-clip.c
1294 #ifndef BOOTLOADER
1295 target/arm/as3525/sansa-clipplus/powermgmt-clipplus.c
1296 target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
1297 #endif /* !BOOTLOADER */
1298 #endif /* SANSA_CLIPPLUS */
1300 #ifdef SANSA_CLIPV2
1301 target/arm/as3525/sansa-clipv2/lcd-clipv2.c
1302 target/arm/as3525/button-clip.c
1303 target/arm/as3525/sansa-clipv2/backlight-clipv2.c
1304 #ifndef BOOTLOADER
1305 target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
1306 target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
1307 #endif /* !BOOTLOADER */
1308 #endif /* SANSA_CLIPV2 */
1310 #ifdef SANSA_CLIP
1311 target/arm/as3525/sansa-clip/lcd-clip.c
1312 target/arm/as3525/button-clip.c
1313 #ifndef BOOTLOADER
1314 target/arm/as3525/sansa-clip/powermgmt-clip.c
1315 target/arm/as3525/sansa-clip/lcd-as-clip.S
1316 #endif /* !BOOTLOADER */
1317 #endif /* SANSA_CLIP */
1319 #ifdef SANSA_E200V2
1320 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1321 target/arm/as3525/button-e200v2-fuze.c
1322 target/arm/as3525/backlight-e200v2-fuze.c
1323 target/arm/as3525/dbop-as3525.c
1324 #ifndef BOOTLOADER
1325 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1326 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1327 #endif /* !BOOTLOADER */
1328 #endif /* SANSA_E200V2 */
1330 #ifdef SANSA_C200V2
1331 target/arm/as3525/sansa-c200v2/button-c200v2.c
1332 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1333 target/arm/as3525/dbop-as3525.c
1334 #ifndef BOOTLOADER
1335 target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
1336 #endif /* !BOOTLOADER */
1337 #endif /* SANSA_E200V2 */
1339 #ifdef SANSA_M200V4
1340 target/arm/as3525/sansa-m200v4/button-m200v4.c
1341 #ifndef BOOTLOADER
1342 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1343 #endif /* !BOOTLOADER */
1344 #endif /* SANSA_M200V4 */
1346 #ifdef SANSA_FUZE
1347 target/arm/as3525/button-e200v2-fuze.c
1348 target/arm/as3525/sansa-fuze/lcd-fuzev1.c
1349 target/arm/as3525/backlight-e200v2-fuze.c
1350 target/arm/as3525/dbop-as3525.c
1351 #ifndef BOOTLOADER
1352 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1353 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1354 #endif /* !BOOTLOADER */
1355 #endif /* SANSA_FUZE */
1357 #ifdef SANSA_FUZEV2
1358 target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
1359 target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
1360 target/arm/as3525/sansa-fuzev2/button-fuzev2.c
1361 target/arm/as3525/dbop-as3525.c
1362 #ifndef BOOTLOADER
1363 target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
1364 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1365 #endif /* !BOOTLOADER */
1366 #endif /* SANSA_FUZEV2 */
1368 #ifdef SANSA_FUZEPLUS
1369 drivers/synaptics-rmi.c
1370 drivers/generic_i2c.c
1371 target/arm/imx233/sansa-fuzeplus/fmradio-i2c-fuzeplus.c
1372 target/arm/imx233/sansa-fuzeplus/backlight-fuzeplus.c
1373 target/arm/imx233/sansa-fuzeplus/lcd-fuzeplus.c
1374 target/arm/imx233/sansa-fuzeplus/button-fuzeplus.c
1375 target/arm/imx233/sansa-fuzeplus/debug-fuzeplus.c
1376 target/arm/imx233/sansa-fuzeplus/power-fuzeplus.c
1377 target/arm/imx233/sansa-fuzeplus/adc-fuzeplus.c
1378 target/arm/imx233/sansa-fuzeplus/powermgmt-fuzeplus.c
1379 #ifndef BOOTLOADER
1380 target/arm/imx233/sansa-fuzeplus/audio-fuzeplus.c
1381 #endif
1382 #endif
1384 #ifdef SANSA_CLIPZIP
1385 target/arm/as3525/sansa-clipzip/lcd-clipzip.c
1386 target/arm/as3525/sansa-clipzip/button-clipzip.c
1387 target/arm/as3525/sansa-clipzip/backlight-clipzip.c
1388 #ifndef BOOTLOADER
1389 target/arm/as3525/sansa-clipzip/powermgmt-clipzip.c
1390 #endif /* !BOOTLOADER */
1391 #endif /* SANSA_CLIPZIP */
1393 #ifdef IAUDIO_7
1394 drivers/nand_id.c
1395 drivers/pcf50606.c
1396 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1397 target/arm/tcc77x/iaudio7/power-iaudio7.c
1398 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1399 target/arm/tcc77x/iaudio7/button-iaudio7.c
1400 target/arm/tcc77x/iaudio7/ata2501.c
1401 #ifndef BOOTLOADER
1402 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1403 #endif /* BOOTLOADER */
1404 #endif /* IAUDIO_7 */
1406 #ifdef COWON_D2
1407 drivers/lcd-memframe.c
1408 drivers/nand_id.c
1409 drivers/pcf50606.c
1410 drivers/pcf50635.c
1411 drivers/tsc200x.c
1412 target/arm/tcc780x/adc-tcc780x.c
1413 target/arm/tcc780x/system-tcc780x.c
1414 target/arm/tcc780x/kernel-tcc780x.c
1415 target/arm/tcc780x/sd-tcc780x.c
1416 target/arm/tcc780x/cowond2/button-cowond2.c
1417 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1418 target/arm/tcc780x/cowond2/lcd-cowond2.c
1419 target/arm/tcc780x/cowond2/power-cowond2.c
1420 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1421 target/arm/tcc780x/cowond2/backlight-cowond2.c
1422 target/arm/usb-tcc.c
1423 #ifndef BOOTLOADER
1424 target/arm/tcc780x/timer-tcc780x.c
1425 target/arm/wmcodec-telechips.c
1426 target/arm/tcc780x/debug-tcc780x.c
1427 target/arm/pcm-telechips.c
1428 target/arm/tcc780x/cowond2/audio-cowond2.c
1429 #endif /* BOOTLOADER */
1430 #endif /* COWON_D2 */
1432 #ifdef MEIZU_M6SL
1433 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1434 drivers/qt1106.c
1435 #endif /* MEIZU_M6SL */
1437 #ifdef MEIZU_M6SP
1438 target/arm/s5l8700/backlight-meizu.c
1439 target/arm/s5l8700/power-meizu.c
1440 target/arm/s5l8700/meizu-m6sp/button-m6sp.c
1441 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1442 #ifndef BOOTLOADER
1443 drivers/generic_i2c.c
1444 drivers/rtc/rtc_s35390a.c
1445 target/arm/s5l8700/audio-meizu.c
1446 target/arm/s5l8700/ftl-meizu.c
1447 target/arm/s5l8700/nand-meizu.c
1448 target/arm/s5l8700/fmradio-i2c-meizu.c
1449 target/arm/s5l8700/powermgmt-meizu.c
1450 target/arm/s5l8700/usb-s5l8700.c
1451 #endif /* BOOTLOADER */
1452 #endif /* MEIZU_M6SP */
1454 #ifdef MEIZU_M3
1455 target/arm/s5l8700/backlight-meizu.c
1456 target/arm/s5l8700/meizu-m3/lcd-m3.c
1457 drivers/qt1106.c
1458 #ifndef BOOTLOADER
1459 target/arm/s5l8700/udacodec-meizu.c
1460 #endif /* BOOTLOADER */
1461 #endif /* MEIZU_M3 */
1463 #ifdef IPOD_NANO2G
1464 target/arm/ipod/button-clickwheel.c
1465 target/arm/s5l8700/postmortemstub.S
1466 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1467 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1468 target/arm/s5l8700/ipodnano2g/lcd-asm-nano2g.S
1469 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1470 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1471 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1472 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1473 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1474 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1475 target/arm/s5l8700/usb-nano2g-6g.c
1476 #ifndef BOOTLOADER
1477 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1478 target/arm/s5l8700/ipodnano2g/piezo-nano2g.c
1479 #endif
1480 #endif
1482 #ifdef IPOD_6G
1483 target/arm/ipod/button-clickwheel.c
1484 target/arm/s5l8702/ipod6g/storage_ata-ipod6g.c
1485 target/arm/s5l8702/ipod6g/cscodec-ipod6g.c
1486 target/arm/s5l8702/ipod6g/backlight-ipod6g.c
1487 target/arm/s5l8702/ipod6g/powermgmt-ipod6g.c
1488 target/arm/s5l8702/ipod6g/power-ipod6g.c
1489 target/arm/s5l8702/kernel-s5l8702.c
1490 target/arm/s5l8702/system-s5l8702.c
1491 target/arm/s5l8702/ipod6g/lcd-ipod6g.c
1492 target/arm/s5l8702/ipod6g/lcd-asm-ipod6g.S
1493 #if 0 //TODO
1494 target/arm/s5l8702/postmortemstub.S
1495 #endif
1496 target/arm/s5l8702/ipod6g/pmu-ipod6g.c
1497 target/arm/s5l8702/ipod6g/rtc-ipod6g.c
1498 target/arm/s5l8700/usb-nano2g-6g.c
1499 #ifndef BOOTLOADER
1500 target/arm/s5l8702/timer-s5l8702.c
1501 target/arm/s5l8702/debug-s5l8702.c
1502 target/arm/s5l8702/pcm-s5l8702.c
1503 target/arm/s5l8702/ipod6g/audio-ipod6g.c
1504 target/arm/s5l8702/ipod6g/adc-ipod6g.c
1505 target/arm/s5l8702/ipod6g/piezo-ipod6g.c
1506 #endif
1507 #endif
1509 #if CONFIG_CPU == RK27XX
1510 target/arm/rk27xx/kernel-rk27xx.c
1511 target/arm/rk27xx/system-rk27xx.c
1512 target/arm/rk27xx/backlight-rk27xx.c
1513 target/arm/rk27xx/adc-rk27xx.c
1514 target/arm/rk27xx/sd-rk27xx.c
1515 target/arm/rk27xx/ftl-rk27xx.c
1516 target/arm/rk27xx/nand-rk27xx.c
1517 target/arm/rk27xx/usb-rk27xx.c
1518 target/arm/rk27xx/lcdif-rk27xx.c
1519 target/arm/rk27xx/rkw-loader.c
1520 #ifndef BOOTLOADER
1521 target/arm/rk27xx/timer-rk27xx.c
1522 target/arm/rk27xx/rolo_restart.S
1523 target/arm/rk27xx/pcm-rk27xx.c
1524 target/arm/rk27xx/debug-rk27xx.c
1525 #endif
1526 #endif
1528 #if defined(RK27_GENERIC)
1529 target/arm/rk27xx/rk27generic/button-rk27generic.c
1530 target/arm/rk27xx/rk27generic/powermgmt-rk27generic.c
1531 target/arm/rk27xx/rk27generic/power-rk27generic.c
1532 target/arm/rk27xx/rk27generic/lcd-rk27generic.c
1533 #endif
1535 #if CONFIG_CPU == JZ4732
1536 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1537 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1538 target/mips/ingenic_jz47xx/debug-jz4740.c
1539 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1540 target/mips/ingenic_jz47xx/kernel-jz4740.c
1541 target/mips/ingenic_jz47xx/i2c-jz4740.c
1542 target/mips/ingenic_jz47xx/lcd-jz4740.c
1543 target/mips/ingenic_jz47xx/system-jz4740.c
1544 target/mips/ingenic_jz47xx/usb-jz4740.c
1545 target/mips/ingenic_jz47xx/timer-jz4740.c
1546 #ifndef BOOTLOADER
1547 target/mips/ingenic_jz47xx/codec-jz4740.c
1548 target/mips/ingenic_jz47xx/pcm-jz4740.c
1549 #endif /* BOOTLOADER */
1550 drivers/nand_id.c
1551 #endif /* CONFIG_CPU == JZ4732 */
1553 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1554 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1555 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1556 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1557 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1558 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1559 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1561 #ifdef ONDA_VX767
1562 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1563 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1564 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1565 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1566 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1567 #endif /* ONDA_VX767 */
1569 #if defined(LYRE_PROTO1)
1570 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1571 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1572 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1573 target/arm/at91sam/lyre_proto1/crt0.S
1574 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1575 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1576 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1577 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1578 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1579 #endif
1581 #if defined(MINI2440)
1582 drivers/lcd-memframe.c
1583 target/arm/s3c2440/dma-s3c2440.c
1584 target/arm/s3c2440/sd-s3c2440.c
1585 target/arm/s3c2440/uart-s3c2440.c
1586 target/arm/s3c2440/mini2440/backlight-mini2440.c
1587 target/arm/s3c2440/mini2440/button-mini2440.c
1588 target/arm/s3c2440/mini2440/led-mini2440.c
1589 target/arm/s3c2440/mini2440/power-mini2440.c
1590 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1591 #ifndef BOOTLOADER
1592 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1593 target/arm/s3c2440/mini2440/pcm-mini2440.c
1594 #endif
1595 #endif /* MINI2440 */
1597 #if defined(SAMSUNG_YH820) || defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)
1598 target/arm/samsung/akcodec-yh82x_yh92x.c
1599 target/arm/samsung/button-yh82x_yh92x.c
1600 target/arm/samsung/power-yh82x_yh92x.c
1601 #endif /* SAMSUNG_YH820 ||  SAMSUNG_YH920 || SAMSUNG_YH925 */
1603 #ifdef SAMSUNG_YH820
1604 target/arm/samsung/yh820/backlight-yh820.c
1605 target/arm/samsung/yh820/lcd-yh820.c
1606 target/arm/samsung/yh820/lcd-as-yh820.S
1607 target/arm/samsung/yh820/powermgmt-yh820.c
1608 #endif /* SAMSUNG_YH820 */
1610 #ifdef SAMSUNG_YH920
1611 target/arm/samsung/yh920/backlight-yh920.c
1612 target/arm/samsung/yh920/lcd-yh920.c
1613 target/arm/samsung/yh920/lcd-as-yh920.S
1614 target/arm/samsung/yh920/powermgmt-yh920.c
1615 #endif /* SAMSUNG_YH920 */
1617 #ifdef SAMSUNG_YH925
1618 target/arm/samsung/yh925/backlight-yh925.c
1619 target/arm/samsung/yh925/lcd-yh925.c
1620 target/arm/samsung/yh925/lcd-as-yh925.S
1621 target/arm/samsung/yh925/powermgmt-yh925.c
1622 #endif /* SAMSUNG_YH925 */
1624 #ifdef SAMSUNG_YPS3
1625 target/arm/s5l8700/yps3/button-yps3.c
1626 target/arm/s5l8700/yps3/lcd-yps3.c
1627 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1628 target/arm/s5l8700/yps3/backlight-yps3.c
1629 target/arm/s5l8700/yps3/nand-yps3.c
1630 target/arm/s5l8700/yps3/power-yps3.c
1631 #endif /* SAMSUNG_YPS3 */
1633 #ifdef PBELL_VIBE500
1634 drivers/synaptics-mep.c
1635 target/arm/pbell/vibe500/lcd-vibe500.c
1636 target/arm/pbell/vibe500/button-vibe500.c
1637 target/arm/pbell/vibe500/power-vibe500.c
1638 target/arm/pbell/vibe500/backlight-vibe500.c
1639 target/arm/pbell/vibe500/lcd-as-vibe500.S
1640 target/arm/pbell/vibe500/powermgmt-vibe500.c
1641 #endif
1643 #if defined(MPIO_HD200) || defined(MPIO_HD300)
1644 target/coldfire/wmcodec-coldfire.c
1645 target/coldfire/mpio/system-mpio.c
1646 target/coldfire/mpio/power-mpio.c
1647 target/coldfire/mpio/backlight-mpio.c
1648 target/coldfire/mpio/usb-mpio.c
1649 target/coldfire/mpio/ata-mpio.c
1650 target/coldfire/mpio/adc-mpio.c
1651 #ifndef BOOTLOADER
1652 target/coldfire/mpio/audio-mpio.c
1653 target/coldfire/mpio/fmradio_i2c-mpio.c
1654 #endif /* BOOTLOADER */
1655 #endif
1657 #ifdef MPIO_HD200
1658 target/coldfire/mpio/hd200/button-hd200.c
1659 target/coldfire/mpio/hd200/lcd-hd200.c
1660 target/coldfire/mpio/hd200/lcd-as-hd200.S
1661 target/coldfire/mpio/hd200/powermgmt-hd200.c
1662 #endif
1664 #ifdef MPIO_HD300
1665 target/coldfire/mpio/hd300/button-hd300.c
1666 target/coldfire/mpio/hd300/lcd-hd300.c
1667 target/coldfire/mpio/hd300/lcd-as-hd300.S
1668 target/coldfire/mpio/hd300/powermgmt-hd300.c
1669 #endif
1671 #if defined(HM60X)
1672 target/arm/rk27xx/hm60x/button-hm60x.c
1673 target/arm/rk27xx/hm60x/powermgmt-hm60x.c
1674 target/arm/rk27xx/hm60x/power-hm60x.c
1675 #endif
1677 #if defined(HM801)
1678 target/arm/rk27xx/hm801/button-hm801.c
1679 target/arm/rk27xx/hm801/powermgmt-hm801.c
1680 target/arm/rk27xx/hm801/power-hm801.c
1681 #endif
1683 #if (CONFIG_PLATFORM & PLATFORM_ANDROID)
1684 target/hosted/kernel-unix.c
1685 target/hosted/filesystem-unix.c
1686 target/hosted/lc-unix.c
1687 target/hosted/android/lcd-android.c
1688 target/hosted/android/button-android.c
1689 #ifdef DEBUG
1690 target/hosted/android/debug-android.c
1691 #endif
1692 target/hosted/android/pcm-android.c
1693 target/hosted/android/powermgmt-android.c
1694 target/hosted/android/system-android.c
1695 target/hosted/android/telephony-android.c
1696 #ifdef APPLICATION
1697 target/hosted/android/app/button-application.c
1698 #endif
1699 drivers/audio/android.c
1700 thread.c
1701 #endif
1703 #endif /* defined(SIMULATOR) */