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