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