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