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