FS#11354 - A few more islenska.lang fixes by Hinrik Örn Sigurðsson fixing a few more...
[kugel-rb.git] / firmware / SOURCES
blobcfc14a7274e1a5bf9ec45d2832f37655c0e51e42
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_AS3525v2
341 target/arm/as3525/usb-drv-as3525v2.c
342 #elif CONFIG_USBOTG == USBOTG_ISP1583
343 drivers/isp1583.c
344 #endif
345 #else /* !defined(HAVE_USBSTACK) */
346 #if CONFIG_USBOTG == USBOTG_ISP1362      
347 drivers/isp1362.c
348 #elif CONFIG_USBOTG == USBOTG_M5636      
349 drivers/m5636.c
350 #endif
351 #endif /* !defined(HAVE_USBSTACK) */
352 #endif /* !defined(SIMULATOR) */
354 /* Other Random Hardware */
355 #ifdef HAVE_TSC2100
356 #if !defined(SIMULATOR)
357 drivers/tsc2100.c
358 drivers/audio/tsc2100.c
359 #endif /* !SIMULATOR */
360 #endif
362 /* CPU Specific - By class then particular chip if applicable */
363 #if defined(CPU_SH)
365 #ifndef SIMULATOR
366 drivers/i2c.c
367 target/sh/adc-sh.c
368 target/sh/bitswap.S
369 target/sh/crt0.S
370 target/sh/kernel-sh.c
371 target/sh/memcpy-sh.S
372 target/sh/memmove-sh.S
373 target/sh/memset-sh.S
374 target/sh/strlen-sh.S
375 target/sh/system-sh.c
376 target/sh/archos/descramble.S
377 #endif /* SIMULATOR */
379 #elif defined(CPU_COLDFIRE)
381 #ifndef SIMULATOR
382 target/coldfire/crt0.S
383 #ifdef HAVE_PRIORITY_SCHEDULING
384 common/ffs.c
385 target/coldfire/ffs-coldfire.S
386 #endif
387 target/coldfire/memcpy-coldfire.S
388 target/coldfire/memmove-coldfire.S
389 target/coldfire/memset-coldfire.S
390 target/coldfire/strlen-coldfire.S
391 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
392  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
393 target/coldfire/memset16-coldfire.S
394 #endif
395 target/coldfire/kernel-coldfire.c
396 target/coldfire/system-coldfire.c
397 target/coldfire/timer-coldfire.c
398 #ifndef BOOTLOADER
399 target/coldfire/pcm-coldfire.c
400 #endif /* BOOTLOADER */
401 #if CONFIG_I2C == I2C_COLDFIRE
402 target/coldfire/i2c-coldfire.c
403 #endif /* CONFIG_I2C == I2C_COLDFIRE */
404 #endif /* SIMULATOR */
406 #elif defined(CPU_PP) || defined(CPU_ARM)
407 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
408 target/arm/support-arm.S
409 target/arm/memcpy-arm.S
410 target/arm/memmove-arm.S
411 libc/strlen.c
412 #ifndef SIMULATOR
413 target/arm/memset-arm.S
414 target/arm/memset16-arm.S
415 #ifdef HAVE_PRIORITY_SCHEDULING
416 target/arm/ffs-arm.S
417 #endif
418 target/arm/system-arm.c
419 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
420 target/arm/i2c-pp.c
421 #elif CONFIG_I2C == I2C_PNX0101
422 target/arm/pnx0101/i2c-pnx0101.c
423 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
424 target/arm/i2c-telechips.c
425 #elif CONFIG_I2C == I2C_S3C2440
426 /* no i2c driver yet */
427 #elif CONFIG_I2C == I2C_S5L8700
428 target/arm/s5l8700/i2c-s5l8700.c
429 #endif
431 #if CONFIG_CPU == PNX0101
432 target/arm/pnx0101/kernel-pnx0101.c
433 target/arm/pnx0101/system-pnx0101.c
434 target/arm/pnx0101/timer-pnx0101.c
435 #endif
437 #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
438 target/arm/as3525/system-as3525.c
439 target/arm/as3525/kernel-as3525.c
440 target/arm/as3525/timer-as3525.c
441 #if CONFIG_CPU == AS3525
442 target/arm/as3525/sd-as3525.c
443 #ifdef HAVE_SCROLLWHEEL
444 target/arm/as3525/scrollwheel-as3525.c
445 #endif /* HAVE_SCROLLWHEEL */
446 #else /* AS3535v2 */
447 target/arm/as3525/sd-as3525v2.c
448 #endif
449 target/arm/as3525/power-as3525.c
450 target/arm/as3525/usb-as3525.c
451 target/arm/as3525/dma-pl081.c
452 target/arm/as3525/ascodec-as3525.c
453 #ifndef BOOTLOADER
454 target/arm/mmu-arm.S
455 drivers/generic_i2c.c
456 target/arm/adc-as3514.c
457 target/arm/as3525/audio-as3525.c
458 target/arm/as3525/debug-as3525.c
459 #if CONFIG_TUNER
460 target/arm/as3525/fmradio-i2c-as3525.c
461 #endif /* CONFIG_TUNER */
462 target/arm/as3525/i2s-as3525.c
463 target/arm/as3525/pcm-as3525.c
464 #endif /* BOOTLOADER */
465 #endif /* CONFIG_CPU == AS3525 */
467 #if defined(CPU_PP)
468 target/arm/kernel-pp.c
469 target/arm/timer-pp.c
470 #if CONFIG_CPU == PP5002
471 target/arm/system-pp5002.c
472 #elif defined CPU_PP502x
473 target/arm/system-pp502x.c
474 #endif
475 #ifdef BOOTLOADER
476 target/arm/crt0-pp-bl.S
477 #else
478 target/arm/pcm-pp.c
479 #if !defined(SANSA_E200) && !defined(SANSA_C200)
480 target/arm/audio-pp.c
481 #endif /* SANSA_E200 */
482 target/arm/crt0-pp.S
483 #endif
484 #elif CONFIG_CPU == PNX0101
485 target/arm/pnx0101/crt0-pnx0101.S
486 #elif CONFIG_CPU==DM320
487 target/arm/tms320dm320/crt0.S
488 #elif CONFIG_CPU==S3C2440
489 target/arm/s3c2440/crt0.S
490 #elif defined(CPU_TCC77X)
491 target/arm/tcc77x/crt0.S
492 #elif defined(CPU_TCC780X)
493 target/arm/tcc780x/crt0.S
494 #elif CONFIG_CPU==IMX31L
495 target/arm/imx31/crt0.S
496 #elif defined(CPU_S5L870X)
497 target/arm/s5l8700/crt0.S
498 #elif defined(CPU_ARM)
499 target/arm/crt0.S
500 #endif /* defined(CPU_*) */
501 #endif /* SIMULATOR */
503 #elif defined(CPU_MIPS)
504 #undef mips
505 /*target/mips/strlen.S*/
506 libc/memmove.c
507 common/memset16.c
508 libc/strlen.c
509 target/mips/ffs-mips.S
510 target/mips/memcpy-mips.S
511 target/mips/memset-mips.S
512 target/mips/mmu-mips.c
513 #if CONFIG_CPU==JZ4732
514 target/mips/ingenic_jz47xx/crt0.S
515 #endif /* CONFIG_CPU == JZ4732 */
517 #else
519 #ifdef HAVE_PRIORITY_SCHEDULING
520 common/ffs.c
521 #endif
522 libc/memcpy.c
523 libc/memmove.c
524 libc/memset.c
525 common/memset16.c
526 libc/strlen.c
527 #ifndef SIMULATOR
528 crt0.S
529 drivers/i2c.c
530 #endif /* SIMULATOR */
532 #endif /* defined(CPU_*) */
534 #ifdef ARCHOS_PLAYER
535 #ifndef SIMULATOR
536 target/sh/archos/ata-archos.c
537 target/sh/archos/timer-archos.c
538 target/sh/archos/ata-as-archos.S
539 target/sh/archos/player/button-player.c
540 target/sh/archos/player/hwcompat-player.c
541 target/sh/archos/player/lcd-as-player.S
542 target/sh/archos/player/lcd-player.c
543 target/sh/archos/player/power-player.c
544 target/sh/archos/player/powermgmt-player.c
545 target/sh/archos/player/usb-player.c
546 #endif /* SIMULATOR */
547 #endif /* ARCHOS_PLAYER */
549 #ifdef ARCHOS_RECORDER
550 #ifndef SIMULATOR
551 target/sh/archos/ata-archos.c
552 target/sh/archos/timer-archos.c
553 target/sh/archos/ata-as-archos.S
554 target/sh/archos/lcd-archos-bitmap.c
555 target/sh/archos/lcd-as-archos-bitmap.S   
556 target/sh/archos/recorder/button-recorder.c
557 target/sh/archos/recorder/power-recorder.c
558 target/sh/archos/recorder/powermgmt-recorder.c
559 target/sh/archos/recorder/usb-recorder.c
560 #endif /* SIMULATOR */
561 #endif /* ARCHOS_RECORDER */
563 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
564 #ifndef SIMULATOR
565 target/sh/archos/ata-archos.c
566 target/sh/archos/timer-archos.c
567 target/sh/archos/ata-as-archos.S
568 target/sh/archos/lcd-archos-bitmap.c
569 target/sh/archos/lcd-as-archos-bitmap.S
570 target/sh/archos/fm_v2/button-fm_v2.c
571 target/sh/archos/fm_v2/power-fm_v2.c
572 target/sh/archos/fm_v2/powermgmt-fm_v2.c
573 target/sh/archos/fm_v2/usb-fm_v2.c
574 #endif /* SIMULATOR */
575 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
577 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
578 #ifndef SIMULATOR
579 target/sh/archos/timer-archos.c
580 target/sh/archos/lcd-archos-bitmap.c
581 target/sh/archos/lcd-as-archos-bitmap.S
582 target/sh/archos/ondio/button-ondio.c
583 target/sh/archos/ondio/power-ondio.c
584 target/sh/archos/ondio/powermgmt-ondio.c
585 target/sh/archos/ondio/usb-ondio.c
586 #if (CONFIG_TUNER & TEA5767)
587 target/sh/archos/ondio/fmradio_i2c-ondio.c
588 #endif
589 #endif /* SIMULATOR */
590 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
592 #ifdef SANSA_E200
593 #ifndef SIMULATOR
594 target/arm/adc-as3514.c
595 target/arm/ascodec-pp.c
596 target/arm/ata-sd-pp.c
597 target/arm/lcd-as-memframe.S
598 target/arm/powermgmt-ascodec.c
599 target/arm/i2s-pp.c
600 target/arm/usb-fw-pp502x.c
601 target/arm/sandisk/backlight-c200_e200.c
602 target/arm/sandisk/power-c200_e200.c
603 target/arm/sandisk/sansa-e200/lcd-e200.c
604 target/arm/sandisk/sansa-e200/button-e200.c
605 target/arm/sandisk/sansa-e200/powermgmt-e200.c
606 #ifndef BOOTLOADER
607 target/arm/sandisk/audio-c200_e200.c
608 #endif /* BOOTLOADER */
609 #endif /* SIMULATOR */
610 #endif /* SANSA_E200 */
612 #ifdef SANSA_C200
613 #ifndef SIMULATOR
614 target/arm/adc-as3514.c
615 target/arm/ascodec-pp.c
616 target/arm/ata-sd-pp.c
617 target/arm/i2s-pp.c
618 target/arm/powermgmt-ascodec.c
619 target/arm/usb-fw-pp502x.c
620 target/arm/sandisk/backlight-c200_e200.c
621 target/arm/sandisk/power-c200_e200.c
622 target/arm/lcd-c200_c200v2.c
623 target/arm/sandisk/sansa-c200/lcd-as-c200.S
624 target/arm/sandisk/sansa-c200/button-c200.c
625 target/arm/sandisk/sansa-c200/powermgmt-c200.c
626 #ifndef BOOTLOADER
627 target/arm/sandisk/audio-c200_e200.c
628 #endif /* BOOTLOADER */
629 #endif /* SIMULATOR */
630 #endif /* SANSA_C200 */
632 #ifdef SANSA_VIEW
633 #ifndef SIMULATOR
634 /* target/arm/ascodec-pp.c */
635 target/arm/ata-sd-pp.c
636 target/arm/lcd-as-memframe.S
637 target/arm/i2s-pp.c
638 /* target/arm/usb-fw-pp502x.c */
639 target/arm/sandisk/sansa-view/backlight-view.c
640 target/arm/sandisk/sansa-view/adc-view.c
641 target/arm/sandisk/sansa-view/power-view.c
642 target/arm/sandisk/sansa-view/lcd-view.c
643 target/arm/sandisk/sansa-view/button-view.c
644 target/arm/sandisk/sansa-view/powermgmt-view.c
645 #ifndef BOOTLOADER
646 /* target/arm/sandisk/audio-view.c */
647 #endif /* BOOTLOADER */
648 #endif /* SIMULATOR */
649 #endif /* SANSA_VIEW */
651 #ifdef PHILIPS_SA9200
652 #ifndef SIMULATOR
653 #ifndef BOOTLOADER
654 drivers/synaptics-mep.c
655 #endif /* BOOTLOADER */
656 target/arm/adc-as3514.c
657 target/arm/ascodec-pp.c
658 target/arm/ata-sd-pp.c
659 target/arm/i2s-pp.c
660 target/arm/powermgmt-ascodec.c
661 target/arm/usb-fw-pp502x.c
662 target/arm/philips/sa9200/backlight-sa9200.c
663 target/arm/philips/sa9200/button-sa9200.c
664 target/arm/philips/sa9200/lcd-sa9200.c
665 target/arm/philips/sa9200/power-sa9200.c
666 target/arm/philips/sa9200/powermgmt-sa9200.c
667 #endif /* SIMULATOR */
668 #endif /* PHILIPS_SA9200 */
670 #ifdef PHILIPS_HDD1630
671 #ifndef SIMULATOR
672 #ifndef BOOTLOADER
673 drivers/synaptics-mep.c
674 #endif /* BOOTLOADER */
675 target/arm/ata-as-arm.S
676 target/arm/ata-pp5020.c
677 target/arm/wmcodec-pp.c
678 target/arm/i2s-pp.c
679 target/arm/adc-pp5020.c
680 target/arm/philips/backlight-hdd.c
681 target/arm/philips/power-hdd.c
682 target/arm/philips/fmradio_i2c-hdd.c
683 target/arm/philips/hdd1630/button-hdd1630.c
684 target/arm/philips/hdd1630/lcd-hdd1630.c
685 target/arm/philips/hdd1630/lcd-as-hdd1630.S
686 target/arm/philips/hdd1630/powermgmt-hdd1630.c
687 target/arm/usb-fw-pp502x.c
688 #endif /* SIMULATOR */
689 #endif /* PHILIPS_HDD1630 */
691 #ifdef PHILIPS_HDD6330
692 #ifndef SIMULATOR
693 #ifndef BOOTLOADER
694 drivers/synaptics-mep.c
695 #endif /* BOOTLOADER */
696 target/arm/ata-as-arm.S
697 target/arm/ata-pp5020.c
698 target/arm/wmcodec-pp.c
699 target/arm/i2s-pp.c
700 target/arm/adc-pp5020.c
701 target/arm/philips/backlight-hdd.c
702 target/arm/philips/power-hdd.c
703 target/arm/philips/fmradio_i2c-hdd.c
704 target/arm/philips/hdd6330/button-hdd6330.c
705 target/arm/philips/hdd6330/lcd-hdd6330.c
706 target/arm/philips/hdd6330/powermgmt-hdd6330.c
707 target/arm/usb-fw-pp502x.c
708 #endif /* SIMULATOR */
709 #endif /* PHILIPS_HDD6330 */
711 #ifdef IAUDIO_X5
712 #ifndef SIMULATOR
713 target/coldfire/ata-as-coldfire.S
714 target/coldfire/pcf50606-coldfire.c
715 target/coldfire/iaudio/adc-iaudio.c
716 target/coldfire/iaudio/ata-iaudio.c
717 target/coldfire/iaudio/fmradio_i2c-iaudio.c
718 target/coldfire/iaudio/lcd-remote-as-iaudio.S
719 target/coldfire/iaudio/lcd-remote-iaudio.c
720 target/coldfire/iaudio/pcf50606-iaudio.c
721 target/coldfire/iaudio/power-x5m5.c
722 target/coldfire/iaudio/powermgmt-iaudio.c
723 target/coldfire/iaudio/system-iaudio.c
724 target/coldfire/iaudio/usb-iaudio.c
725 target/coldfire/iaudio/x5/backlight-x5.c
726 target/coldfire/iaudio/x5/button-x5.c
727 target/coldfire/iaudio/x5/ds2411-x5.c
728 target/coldfire/iaudio/x5/lcd-as-x5.S
729 target/coldfire/iaudio/x5/lcd-x5.c
730 target/coldfire/iaudio/x5/m5636-x5.c
731 #ifndef BOOTLOADER
732 target/coldfire/iaudio/audio-iaudio.c
733 #endif
734 #endif /* SIMULATOR */
735 #endif /* IAUDIO_X5 */
737 #ifdef IAUDIO_M5
738 #ifndef SIMULATOR
739 target/coldfire/ata-as-coldfire.S
740 target/coldfire/pcf50606-coldfire.c
741 target/coldfire/iaudio/adc-iaudio.c
742 target/coldfire/iaudio/ata-iaudio.c
743 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
744 target/coldfire/iaudio/fmradio_i2c-iaudio.c
745 #endif
746 target/coldfire/iaudio/lcd-remote-as-iaudio.S
747 target/coldfire/iaudio/lcd-remote-iaudio.c
748 target/coldfire/iaudio/m5/backlight-m5.c
749 target/coldfire/iaudio/m5/button-m5.c
750 target/coldfire/iaudio/m5/lcd-as-m5.S
751 target/coldfire/iaudio/m5/lcd-m5.c
752 target/coldfire/iaudio/pcf50606-iaudio.c
753 target/coldfire/iaudio/power-x5m5.c
754 target/coldfire/iaudio/powermgmt-iaudio.c
755 target/coldfire/iaudio/system-iaudio.c
756 target/coldfire/iaudio/usb-iaudio.c
757 #ifndef BOOTLOADER
758 target/coldfire/iaudio/audio-iaudio.c
759 #endif
760 #endif /* SIMULATOR */
761 #endif /* IAUDIO_M5 */
763 #ifdef IAUDIO_M3
764 #ifndef SIMULATOR
765 target/coldfire/ata-as-coldfire.S
766 target/coldfire/iaudio/fmradio_i2c-iaudio.c
767 target/coldfire/iaudio/m3/adc-m3.c
768 target/coldfire/iaudio/m3/ata-m3.c
769 target/coldfire/iaudio/m3/backlight-m3.c
770 target/coldfire/iaudio/m3/button-m3.c
771 target/coldfire/iaudio/m3/lcd-m3.c
772 target/coldfire/iaudio/m3/lcd-as-m3.S
773 target/coldfire/iaudio/m3/power-m3.c
774 target/coldfire/iaudio/m3/powermgmt-m3.c
775 target/coldfire/iaudio/m3/system-m3.c
776 target/coldfire/iaudio/m3/usb-m3.c
777 #ifndef BOOTLOADER
778 target/coldfire/iaudio/audio-iaudio.c
779 #endif
780 #endif /* SIMULATOR */
781 #endif /* IAUDIO_M3 */
783 #ifdef IRIVER_IFP7XX_SERIES
784 #ifdef STUB
785 ifp_usb_serial.c
786 libc/sscanf.c
787 #endif /* STUB */
788 #endif /* IRIVER_IFP7XX_SERIES */
790 #ifdef IRIVER_H300_SERIES
791 #ifndef SIMULATOR
792 target/coldfire/ata-as-coldfire.S
793 target/coldfire/pcf50606-coldfire.c
794 target/coldfire/iriver/ata-iriver.c
795 target/coldfire/iriver/lcd-remote-iriver.c
796 target/coldfire/iriver/lcd-remote-as-iriver.S
797 target/coldfire/iriver/system-iriver.c
798 target/coldfire/iriver/fmradio_i2c-iriver.c
799 target/coldfire/iriver/h300/sw_i2c-h300.c
800 target/coldfire/iriver/h300/adc-h300.c
801 target/coldfire/iriver/h300/backlight-h300.c
802 target/coldfire/iriver/h300/button-h300.c
803 target/coldfire/iriver/h300/pcf50606-h300.c
804 target/coldfire/iriver/h300/lcd-as-h300.S
805 target/coldfire/iriver/h300/lcd-h300.c
806 target/coldfire/iriver/h300/power-h300.c
807 target/coldfire/iriver/h300/powermgmt-h300.c
808 target/coldfire/iriver/h300/usb-h300.c
809 #ifndef BOOTLOADER
810 target/coldfire/iriver/audio-iriver.c
811 target/coldfire/iriver/udacodec-iriver.c
812 #endif
813 #endif /* SIMULATOR */
814 #endif /* IRIVER_H300_SERIES */
816 #ifdef IRIVER_H100_SERIES
817 #ifndef SIMULATOR
818 drivers/sw_i2c.c
819 target/coldfire/ata-as-coldfire.S
820 target/coldfire/iriver/ata-iriver.c
821 target/coldfire/iriver/lcd-remote-iriver.c
822 target/coldfire/iriver/lcd-remote-as-iriver.S
823 target/coldfire/iriver/system-iriver.c
824 target/coldfire/iriver/fmradio_i2c-iriver.c
825 target/coldfire/iriver/h100/adc-h100.c
826 target/coldfire/iriver/h100/backlight-h100.c
827 target/coldfire/iriver/h100/button-h100.c
828 target/coldfire/iriver/h100/lcd-as-h100.S
829 target/coldfire/iriver/h100/lcd-h100.c
830 target/coldfire/iriver/h100/power-h100.c
831 target/coldfire/iriver/h100/powermgmt-h100.c
832 #ifndef BOOTLOADER
833 target/coldfire/iriver/audio-iriver.c
834 target/coldfire/iriver/udacodec-iriver.c
835 target/coldfire/iriver/h100/spdif-h100.c
836 #endif
837 target/coldfire/iriver/h100/usb-h100.c
838 #endif /* SIMULATOR */
839 #endif /* IRIVER_H100_SERIES */
841 #ifdef IRIVER_H10
842 #ifndef SIMULATOR
843 target/arm/ata-as-arm.S
844 target/arm/ata-pp5020.c
845 target/arm/wmcodec-pp.c
846 target/arm/i2s-pp.c
847 target/arm/adc-pp5020.c
848 target/arm/iriver/h10/backlight-h10.c
849 target/arm/iriver/h10/button-h10.c
850 target/arm/iriver/h10/fmradio_i2c-h10.c
851 target/arm/iriver/h10/lcd-h10_20gb.c
852 target/arm/iriver/h10/lcd-as-h10.S
853 target/arm/iriver/h10/power-h10.c
854 target/arm/iriver/h10/powermgmt-h10.c
855 target/arm/usb-fw-pp502x.c
856 #endif /* SIMULATOR */
857 #endif /* IRIVER_H10 */
859 #ifdef IRIVER_H10_5GB
860 #ifndef SIMULATOR
861 target/arm/ata-as-arm.S
862 target/arm/ata-pp5020.c
863 target/arm/wmcodec-pp.c
864 target/arm/i2s-pp.c
865 target/arm/adc-pp5020.c
866 target/arm/iriver/h10/backlight-h10.c
867 target/arm/iriver/h10/button-h10.c
868 target/arm/iriver/h10/fmradio_i2c-h10.c
869 target/arm/iriver/h10/lcd-h10_5gb.c
870 target/arm/iriver/h10/power-h10.c
871 target/arm/iriver/h10/powermgmt-h10.c
872 target/arm/usb-fw-pp502x.c
873 #endif /* SIMULATOR */
874 #endif /* IRIVER_H10_5GB */
876 #ifdef GIGABEAT_F
877 #ifndef SIMULATOR
878 target/arm/lcd-as-memframe.S
879 target/arm/mmu-arm.S
880 target/arm/s3c2440/adc-s3c2440.c
881 target/arm/s3c2440/debug-s3c2440.c
882 target/arm/s3c2440/kernel-s3c2440.c
883 target/arm/s3c2440/lcd-s3c2440.c
884 target/arm/s3c2440/system-s3c2440.c
885 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
886 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
887 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
888 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
889 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
890 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
891 #ifndef BOOTLOADER
892 target/arm/s3c2440/i2c-s3c2440.c
893 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
894 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
895 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
896 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
897 #endif
898 #endif /* SIMULATOR */
899 #endif /* GIGABEAT_F */
901 #ifdef GIGABEAT_S
902 #ifndef SIMULATOR
903 target/arm/lcd-as-memframe.S
904 target/arm/mmu-armv6.S
905 target/arm/imx31/ata-imx31.c
906 target/arm/imx31/avic-imx31.c
907 target/arm/imx31/ccm-imx31.c
908 target/arm/imx31/debug-imx31.c
909 target/arm/imx31/dvfs_dptc-imx31.c
910 target/arm/imx31/gpio-imx31.c
911 target/arm/imx31/i2c-imx31.c
912 target/arm/imx31/iomuxc-imx31.c
913 target/arm/imx31/mc13783-imx31.c
914 target/arm/imx31/mmu-imx31.c
915 target/arm/imx31/rolo_restart_firmware.S
916 target/arm/imx31/sdma-imx31.c
917 target/arm/imx31/spi-imx31.c
918 target/arm/imx31/gigabeat-s/adc-gigabeat-s.c
919 target/arm/imx31/gigabeat-s/backlight-gigabeat-s.c
920 target/arm/imx31/gigabeat-s/button-gigabeat-s.c
921 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
922 target/arm/imx31/gigabeat-s/kernel-gigabeat-s.c
923 target/arm/imx31/gigabeat-s/i2s-gigabeat-s.c
924 target/arm/imx31/gigabeat-s/lcd-gigabeat-s.c
925 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
926 target/arm/imx31/gigabeat-s/power-gigabeat-s.c
927 target/arm/imx31/gigabeat-s/powermgmt-gigabeat-s.c
928 target/arm/imx31/gigabeat-s/system-gigabeat-s.c
929 target/arm/imx31/gigabeat-s/usb-gigabeat-s.c
930 target/arm/imx31/gigabeat-s/wmcodec-gigabeat-s.c
931 #ifndef BOOTLOADER
932 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
933 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
934 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
935 target/arm/imx31/gigabeat-s/pcm-gigabeat-s.c
936 target/arm/imx31/gigabeat-s/timer-gigabeat-s.c
937 #endif
938 #endif /* SIMULATOR */
939 #endif /* GIGABEAT_S */
941 #if CONFIG_CPU == DM320
942 target/arm/tms320dm320/debug-dm320.c
943 target/arm/tms320dm320/dsp-dm320.c
944 target/arm/tms320dm320/i2c-dm320.c
945 target/arm/tms320dm320/kernel-dm320.c
946 target/arm/tms320dm320/spi-dm320.c
947 target/arm/tms320dm320/system-dm320.c
948 target/arm/tms320dm320/timer-dm320.c
949 target/arm/tms320dm320/uart-dm320.c
950 #endif /* CONFIG_CPU == DM320 */
952 #ifdef MROBE_500
953 #ifndef SIMULATOR
954 target/arm/ata-as-arm.S
955 target/arm/lcd-as-memframe.S
956 target/arm/mmu-arm.S
957 target/arm/tms320dm320/mrobe-500/adc-mr500.c
958 target/arm/tms320dm320/mrobe-500/ata-mr500.c
959 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
960 target/arm/tms320dm320/mrobe-500/button-mr500.c
961 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
962 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
963 #if defined(HAVE_REMOTE_LCD)
964 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
965 #endif
966 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
967 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
968 target/arm/tms320dm320/mrobe-500/power-mr500.c
969 target/arm/tms320dm320/mrobe-500/usb-mr500.c
970 #endif /* SIMULATOR */
971 #endif /* MROBE_500 */
973 #ifdef CREATIVE_ZVx
974 #ifndef SIMULATOR
975 target/arm/ata-as-arm.S
976 target/arm/lcd-as-memframe.S
977 target/arm/mmu-arm.S
978 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
979 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
980 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
981 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
982 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
983 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
984 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
985 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
986 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
987 #endif /* SIMULATOR */
988 #endif /* CREATIVE_ZVx */
990 #ifdef MROBE_100
991 #ifndef SIMULATOR
992 #ifndef BOOTLOADER
993 drivers/synaptics-mep.c
994 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
995 #endif /* BOOTLOADER */
996 drivers/sw_i2c.c
997 target/arm/ata-as-arm.S
998 target/arm/ata-pp5020.c
999 target/arm/wmcodec-pp.c
1000 target/arm/i2s-pp.c
1001 target/arm/adc-pp5020.c
1002 target/arm/olympus/mrobe-100/backlight-mr100.c
1003 target/arm/olympus/mrobe-100/button-mr100.c
1004 target/arm/olympus/mrobe-100/lcd-mr100.c
1005 target/arm/olympus/mrobe-100/lcd-as-mr100.S
1006 target/arm/olympus/mrobe-100/power-mr100.c
1007 target/arm/olympus/mrobe-100/powermgmt-mr100.c
1008 target/arm/usb-fw-pp502x.c
1009 #endif /* SIMULATOR */
1010 #endif /* MROBE_100 */
1012 #ifdef TATUNG_TPJ1022
1013 #ifndef SIMULATOR
1014 target/arm/ata-as-arm.S
1015 target/arm/ata-pp5020.c
1016 target/arm/wmcodec-pp.c
1017 target/arm/i2s-pp.c
1018 target/arm/adc-pp5020.c
1019 target/arm/tatung/tpj1022/backlight-tpj1022.c
1020 target/arm/tatung/tpj1022/button-tpj1022.c
1021 target/arm/tatung/tpj1022/lcd-tpj1022.c
1022 target/arm/tatung/tpj1022/power-tpj1022.c
1023 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
1024 target/arm/usb-fw-pp502x.c
1025 #endif /* SIMULATOR */
1026 #endif /* TATUNG_TPJ1022 */
1028 #ifdef IPOD_4G
1029 #ifndef SIMULATOR
1030 drivers/pcf50605.c
1031 target/arm/wmcodec-pp.c
1032 target/arm/i2s-pp.c
1033 target/arm/ata-as-arm.S
1034 target/arm/ata-pp5020.c
1035 target/arm/ipod/adc-ipod-pcf.c
1036 target/arm/ipod/backlight-4g_color.c
1037 target/arm/ipod/button-clickwheel.c
1038 target/arm/ipod/lcd-as-gray.S
1039 target/arm/ipod/lcd-gray.c
1040 target/arm/ipod/power-ipod.c
1041 target/arm/ipod/powermgmt-ipod-pcf.c
1042 target/arm/usb-fw-pp502x.c
1043 #endif /* SIMULATOR */
1044 #endif /* IPOD_4G */
1046 #ifdef IPOD_COLOR
1047 #ifndef SIMULATOR
1048 drivers/pcf50605.c
1049 target/arm/ata-as-arm.S
1050 target/arm/ata-pp5020.c
1051 target/arm/wmcodec-pp.c
1052 target/arm/i2s-pp.c
1053 target/arm/ipod/adc-ipod-pcf.c
1054 target/arm/ipod/backlight-4g_color.c
1055 target/arm/ipod/button-clickwheel.c
1056 target/arm/ipod/lcd-color_nano.c
1057 target/arm/ipod/power-ipod.c
1058 target/arm/ipod/powermgmt-ipod-pcf.c
1059 target/arm/usb-fw-pp502x.c
1060 #endif /* SIMULATOR */
1061 #endif /* IPOD_COLOR */
1063 #ifdef IPOD_NANO
1064 #ifndef SIMULATOR
1065 drivers/pcf50605.c
1066 target/arm/ata-as-arm.S
1067 target/arm/ata-pp5020.c
1068 target/arm/wmcodec-pp.c
1069 target/arm/i2s-pp.c
1070 target/arm/ipod/adc-ipod-pcf.c
1071 target/arm/ipod/backlight-nano_video.c
1072 target/arm/ipod/button-clickwheel.c
1073 target/arm/ipod/lcd-color_nano.c
1074 target/arm/ipod/power-ipod.c
1075 target/arm/ipod/powermgmt-ipod-pcf.c
1076 target/arm/usb-fw-pp502x.c
1077 #endif /* SIMULATOR */
1078 #endif /* IPOD_NANO */
1080 #ifdef IPOD_VIDEO
1081 #ifndef SIMULATOR
1082 drivers/pcf50605.c
1083 target/arm/ata-as-arm.S
1084 target/arm/ata-pp5020.c
1085 target/arm/wmcodec-pp.c
1086 target/arm/i2s-pp.c
1087 target/arm/ipod/adc-ipod-pcf.c
1088 target/arm/ipod/backlight-nano_video.c
1089 target/arm/ipod/button-clickwheel.c
1090 target/arm/ipod/power-ipod.c
1091 target/arm/ipod/powermgmt-ipod-pcf.c
1092 target/arm/ipod/video/lcd-as-video.S
1093 target/arm/ipod/video/lcd-video.c
1094 target/arm/usb-fw-pp502x.c
1095 #endif /* SIMULATOR */
1096 #endif /* IPOD_VIDEO */
1098 #ifdef IPOD_3G
1099 #ifndef SIMULATOR
1100 drivers/pcf50605.c
1101 target/arm/ata-pp5002.c
1102 target/arm/wmcodec-pp.c
1103 target/arm/i2s-pp.c
1104 target/arm/ipod/adc-ipod-pcf.c
1105 target/arm/ipod/3g/backlight-3g.c
1106 target/arm/ipod/button-1g-3g.c
1107 target/arm/ipod/lcd-as-gray.S
1108 target/arm/ipod/lcd-gray.c
1109 target/arm/ipod/power-ipod.c
1110 target/arm/ipod/powermgmt-ipod-pcf.c
1111 target/arm/usb-fw-pp5002.c
1112 #endif /* SIMULATOR */
1113 #endif /* IPOD_3G */
1115 #ifdef IPOD_1G2G
1116 #ifndef SIMULATOR
1117 target/arm/ata-pp5002.c
1118 target/arm/wmcodec-pp.c
1119 target/arm/i2s-pp.c
1120 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1121 target/arm/ipod/1g2g/backlight-1g2g.c
1122 target/arm/ipod/1g2g/powermgmt-1g2g.c
1123 target/arm/ipod/button-1g-3g.c
1124 target/arm/ipod/lcd-as-gray.S
1125 target/arm/ipod/lcd-gray.c
1126 target/arm/ipod/power-ipod.c
1127 target/arm/usb-fw-pp5002.c
1128 #endif /* SIMULATOR */
1129 #endif /* IPOD_1G2G */
1131 #ifdef IPOD_MINI
1132 #ifndef SIMULATOR
1133 drivers/pcf50605.c
1134 target/arm/ata-as-arm.S
1135 target/arm/ata-pp5020.c
1136 target/arm/wmcodec-pp.c
1137 target/arm/i2s-pp.c
1138 target/arm/ipod/adc-ipod-pcf.c
1139 target/arm/ipod/backlight-mini1g_mini2g.c
1140 target/arm/ipod/button-mini1g.c
1141 target/arm/ipod/lcd-as-gray.S
1142 target/arm/ipod/lcd-gray.c
1143 target/arm/ipod/power-ipod.c
1144 target/arm/ipod/powermgmt-ipod-pcf.c
1145 target/arm/usb-fw-pp502x.c
1146 #endif /* SIMULATOR */
1147 #endif /* IPOD_MINI */
1149 #ifdef IPOD_MINI2G
1150 #ifndef SIMULATOR
1151 drivers/pcf50605.c
1152 target/arm/ata-as-arm.S
1153 target/arm/ata-pp5020.c
1154 target/arm/wmcodec-pp.c
1155 target/arm/i2s-pp.c
1156 target/arm/ipod/adc-ipod-pcf.c
1157 target/arm/ipod/backlight-mini1g_mini2g.c
1158 target/arm/ipod/button-clickwheel.c
1159 target/arm/ipod/lcd-as-gray.S
1160 target/arm/ipod/lcd-gray.c
1161 target/arm/ipod/power-ipod.c
1162 target/arm/ipod/powermgmt-ipod-pcf.c
1163 target/arm/usb-fw-pp502x.c
1164 #endif /* SIMULATOR */
1165 #endif /* IPOD_MINI2G */
1167 #ifdef IRIVER_IFP7XX
1168 #ifndef SIMULATOR
1169 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1170 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1171 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1172 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1173 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1174 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1175 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1176 #ifndef BOOTLOADER
1177 target/arm/pnx0101/pcm-pnx0101.c
1178 #endif /* BOOTLOADER */
1179 #endif /* SIMULATOR */
1180 #endif /* IRIVER_IFP7XX */
1182 #ifdef LOGIK_DAX
1183 #ifndef SIMULATOR
1184 drivers/nand_id.c
1185 target/arm/lcd-ssd1815.c
1186 target/arm/tcc77x/adc-tcc77x.c
1187 target/arm/tcc77x/kernel-tcc77x.c
1188 target/arm/tcc77x/powermgmt-tcc77x.c
1189 target/arm/tcc77x/system-tcc77x.c
1190 target/arm/tcc77x/timer-tcc77x.c
1191 target/arm/usb-tcc.c
1192 target/arm/tcc77x/logikdax/button-logikdax.c
1193 target/arm/tcc77x/logikdax/power-logikdax.c
1194 #ifndef BOOTLOADER
1195 target/arm/wmcodec-telechips.c
1196 target/arm/tcc77x/debug-tcc77x.c
1197 target/arm/pcm-telechips.c
1198 target/arm/tcc77x/logikdax/audio-logikdax.c
1199 #endif /* BOOTLOADER */
1200 #endif /* SIMULATOR */
1201 #endif /* LOGIK_DAX */
1203 #ifdef SANSA_M200
1204 #ifndef SIMULATOR
1205 drivers/nand_id.c
1206 target/arm/lcd-ssd1815.c
1207 target/arm/tcc77x/adc-tcc77x.c
1208 target/arm/tcc77x/kernel-tcc77x.c
1209 target/arm/tcc77x/powermgmt-tcc77x.c
1210 target/arm/tcc77x/system-tcc77x.c
1211 target/arm/tcc77x/timer-tcc77x.c
1212 target/arm/usb-tcc.c
1213 target/arm/tcc77x/m200/button-m200.c
1214 target/arm/tcc77x/m200/power-m200.c
1215 #ifndef BOOTLOADER
1216 target/arm/wmcodec-telechips.c
1217 target/arm/tcc77x/debug-tcc77x.c
1218 target/arm/pcm-telechips.c
1219 target/arm/tcc77x/m200/audio-m200.c
1220 #endif /* BOOTLOADER */
1221 #endif /* SIMULATOR */
1222 #endif /* SANSA_M200 */
1224 #ifdef SANSA_C100
1225 #ifndef SIMULATOR
1226 drivers/nand_id.c
1227 target/arm/usb-tcc.c
1228 target/arm/tcc77x/system-tcc77x.c
1229 target/arm/tcc77x/kernel-tcc77x.c
1230 target/arm/tcc77x/timer-tcc77x.c
1231 target/arm/tcc77x/adc-tcc77x.c
1232 target/arm/tcc77x/powermgmt-tcc77x.c
1233 target/arm/tcc77x/c100/lcd-S6B33B2.c
1234 target/arm/tcc77x/c100/button-c100.c
1235 target/arm/tcc77x/c100/power-c100.c
1236 #ifndef BOOTLOADER
1237 target/arm/tcc77x/debug-tcc77x.c
1238 target/arm/pcm-telechips.c
1239 target/arm/tcc77x/c100/audio-c100.c
1240 #endif /* BOOTLOADER */
1241 #endif /* SIMULATOR */
1242 #endif /* SANSA_C100 */
1244 #ifdef SANSA_CLIPPLUS
1245 #ifndef SIMULATOR
1246 target/arm/as3525/lcd-ssd1303.c
1247 target/arm/as3525/sansa-clipplus/lcd-clip-plus.c
1248 target/arm/as3525/sansa-clipplus/button-clip.c
1249 target/arm/as3525/sansa-clipplus/backlight-clip.c
1250 #ifndef BOOTLOADER
1251 target/arm/powermgmt-ascodec.c
1252 target/arm/as3525/sansa-clipplus/powermgmt-clipplus.c
1253 target/arm/as3525/sansa-clipplus/lcd-as-clip-plus.S
1254 #endif /* !BOOTLOADER */
1255 #endif /* !SIMULATOR */
1256 #endif /* SANSA_CLIPPLUS */
1258 #ifdef SANSA_CLIPV2
1259 #ifndef SIMULATOR
1260 target/arm/as3525/lcd-ssd1303.c
1261 target/arm/as3525/sansa-clipv2/lcd-clipv2.c
1262 target/arm/as3525/sansa-clipv2/button-clip.c
1263 target/arm/as3525/sansa-clipv2/backlight-clipv2.c
1264 #ifndef BOOTLOADER
1265 target/arm/powermgmt-ascodec.c
1266 target/arm/as3525/sansa-clipv2/powermgmt-clipv2.c
1267 target/arm/as3525/sansa-clipv2/lcd-as-clipv2.S
1268 #endif /* !BOOTLOADER */
1269 #endif /* !SIMULATOR */
1270 #endif /* SANSA_CLIPV2 */
1272 #ifdef SANSA_CLIP
1273 #ifndef SIMULATOR
1274 target/arm/as3525/lcd-ssd1303.c
1275 target/arm/as3525/sansa-clip/lcd-clip.c
1276 target/arm/as3525/sansa-clip/button-clip.c
1277 #ifndef BOOTLOADER
1278 target/arm/powermgmt-ascodec.c
1279 target/arm/as3525/sansa-clip/powermgmt-clip.c
1280 target/arm/as3525/sansa-clip/lcd-as-clip.S
1281 #endif /* !BOOTLOADER */
1282 #endif /* !SIMULATOR */
1283 #endif /* SANSA_CLIP */
1285 #ifdef SANSA_E200V2
1286 #ifndef SIMULATOR
1287 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1288 target/arm/as3525/button-e200v2-fuze.c
1289 target/arm/as3525/backlight-e200v2-fuze.c
1290 target/arm/as3525/dbop-as3525.c
1291 #ifndef BOOTLOADER
1292 target/arm/powermgmt-ascodec.c
1293 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1294 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1295 #endif /* !BOOTLOADER */
1296 #endif /* !SIMULATOR */
1297 #endif /* SANSA_E200V2 */
1299 #ifdef SANSA_C200V2
1300 #ifndef SIMULATOR
1301 target/arm/lcd-c200_c200v2.c
1302 target/arm/as3525/sansa-c200v2/button-c200v2.c
1303 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1304 target/arm/as3525/dbop-as3525.c
1305 #ifndef BOOTLOADER
1306 target/arm/powermgmt-ascodec.c
1307 target/arm/as3525/sansa-c200v2/powermgmt-c200v2.c
1308 #endif /* !BOOTLOADER */
1309 #endif /* !SIMULATOR */
1310 #endif /* SANSA_E200V2 */
1312 #ifdef SANSA_M200V4
1313 #ifndef SIMULATOR
1314 target/arm/lcd-ssd1815.c
1315 target/arm/as3525/sansa-m200v4/button-m200v4.c
1316 #ifndef BOOTLOADER
1317 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1318 #endif /* !BOOTLOADER */
1319 #endif /* !SIMULATOR */
1320 #endif /* SANSA_M200V4 */
1322 #ifdef SANSA_FUZE
1323 #ifndef SIMULATOR
1324 target/arm/as3525/button-e200v2-fuze.c
1325 target/arm/as3525/lcd-fuze.c
1326 target/arm/as3525/sansa-fuze/lcd-fuzev1.c
1327 target/arm/as3525/backlight-e200v2-fuze.c
1328 target/arm/as3525/dbop-as3525.c
1329 #ifndef BOOTLOADER
1330 target/arm/powermgmt-ascodec.c
1331 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1332 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1333 #endif /* !BOOTLOADER */
1334 #endif /* !SIMULATOR */
1335 #endif /* SANSA_FUZE */
1337 #ifdef SANSA_FUZEV2
1338 #ifndef SIMULATOR
1339 target/arm/as3525/lcd-fuze.c
1340 target/arm/as3525/sansa-fuzev2/lcd-fuzev2.c
1341 target/arm/as3525/sansa-fuzev2/backlight-fuzev2.c
1342 target/arm/as3525/sansa-fuzev2/button-fuzev2.c
1343 target/arm/as3525/dbop-as3525.c
1344 #ifndef BOOTLOADER
1345 target/arm/powermgmt-ascodec.c
1346 target/arm/as3525/sansa-fuzev2/powermgmt-fuzev2.c
1347 target/arm/as3525/lcd-as-e200v2-fuze-fuzev2.S
1348 #endif /* !BOOTLOADER */
1349 #endif /* !SIMULATOR */
1350 #endif /* SANSA_FUZEV2 */
1352 #ifdef IAUDIO_7
1353 #ifndef SIMULATOR
1354 drivers/nand_id.c
1355 drivers/pcf50606.c
1356 target/arm/usb-tcc.c
1357 target/arm/tcc77x/system-tcc77x.c
1358 target/arm/tcc77x/kernel-tcc77x.c
1359 target/arm/tcc77x/timer-tcc77x.c
1360 target/arm/tcc77x/adc-tcc77x.c
1361 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1362 target/arm/tcc77x/iaudio7/power-iaudio7.c
1363 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1364 target/arm/tcc77x/iaudio7/button-iaudio7.c
1365 target/arm/tcc77x/iaudio7/ata2501.c
1366 #ifndef BOOTLOADER
1367 target/arm/wmcodec-telechips.c
1368 target/arm/pcm-telechips.c
1369 target/arm/tcc77x/debug-tcc77x.c
1370 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1371 #endif /* BOOTLOADER */
1372 #endif /* SIMULATOR */
1373 #endif /* IAUDIO_7 */
1375 #ifdef COWON_D2
1376 #ifndef SIMULATOR
1377 drivers/nand_id.c
1378 drivers/pcf50606.c
1379 drivers/pcf50635.c
1380 drivers/tsc200x.c
1381 target/arm/lcd-as-memframe.S
1382 target/arm/tcc780x/adc-tcc780x.c
1383 target/arm/tcc780x/system-tcc780x.c
1384 target/arm/tcc780x/kernel-tcc780x.c
1385 target/arm/tcc780x/sd-tcc780x.c
1386 target/arm/tcc780x/cowond2/button-cowond2.c
1387 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1388 target/arm/tcc780x/cowond2/lcd-cowond2.c
1389 target/arm/tcc780x/cowond2/power-cowond2.c
1390 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1391 target/arm/tcc780x/cowond2/backlight-cowond2.c
1392 target/arm/usb-tcc.c
1393 target/arm/mmu-arm.S
1394 #ifndef BOOTLOADER
1395 target/arm/tcc780x/timer-tcc780x.c
1396 target/arm/wmcodec-telechips.c
1397 target/arm/tcc780x/debug-tcc780x.c
1398 target/arm/pcm-telechips.c
1399 target/arm/tcc780x/cowond2/audio-cowond2.c
1400 #endif /* BOOTLOADER */
1401 #endif /* SIMULATOR */
1402 #endif /* COWON_D2 */
1404 #ifdef CPU_S5L870X
1405 target/arm/s5l8700/system-s5l8700.c
1406 target/arm/mmu-arm.S
1407 #ifndef SIMULATOR
1408 #ifndef BOOTLOADER
1409 target/arm/s5l8700/timer-s5l8700.c
1410 #endif /* BOOTLOADER */
1411 #endif /* SIMULATOR */
1412 #endif
1414 #ifdef MEIZU_M6SL
1415 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1416 drivers/qt1106.c
1417 #ifndef SIMULATOR
1418 #ifndef BOOTLOADER
1419 #endif /* BOOTLOADER */
1420 #endif /* SIMULATOR */
1421 #endif /* MEIZU_M6SL */
1423 #ifdef MEIZU_M6SP
1424 target/arm/s5l8700/backlight-meizu.c
1425 target/arm/s5l8700/power-meizu.c
1426 target/arm/s5l8700/kernel-s5l8700.c
1427 target/arm/s5l8700/meizu-m6sp/button-m6sp.c
1428 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1429 #ifndef SIMULATOR
1430 #ifndef BOOTLOADER
1431 drivers/generic_i2c.c
1432 drivers/rtc/rtc_s35390a.c
1433 target/arm/s5l8700/adc-s5l8700.c
1434 target/arm/s5l8700/audio-meizu.c
1435 target/arm/s5l8700/debug-s5l8700.c
1436 target/arm/s5l8700/dma-s5l8700.c
1437 target/arm/s5l8700/ftl-meizu.c
1438 target/arm/s5l8700/nand-meizu.c
1439 target/arm/s5l8700/fmradio-i2c-meizu.c
1440 target/arm/s5l8700/pcm-s5l8700.c
1441 target/arm/s5l8700/powermgmt-meizu.c
1442 target/arm/s5l8700/usb-s5l8700.c
1443 target/arm/s5l8700/wmcodec-s5l8700.c
1444 #endif /* BOOTLOADER */
1445 #endif /* SIMULATOR */
1446 #endif /* MEIZU_M6SP */
1448 #ifdef MEIZU_M3
1449 target/arm/s5l8700/backlight-meizu.c
1450 target/arm/s5l8700/kernel-s5l8700.c
1451 target/arm/s5l8700/meizu-m3/lcd-m3.c
1452 drivers/qt1106.c
1453 #ifndef SIMULATOR
1454 #ifndef BOOTLOADER
1455 target/arm/s5l8700/dma-s5l8700.c
1456 target/arm/s5l8700/pcm-s5l8700.c
1457 target/arm/s5l8700/udacodec-meizu.c
1458 #endif /* BOOTLOADER */
1459 #endif /* SIMULATOR */
1460 #endif /* MEIZU_M3 */
1462 #ifdef IPOD_NANO2G
1463 #ifndef SIMULATOR
1464 target/arm/ipod/button-clickwheel.c
1465 target/arm/s5l8700/kernel-s5l8700.c
1466 target/arm/s5l8700/dma-s5l8700.c
1467 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1468 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1469 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1470 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1471 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1472 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1473 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1474 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1475 #ifndef BOOTLOADER
1476 drivers/audio/wm8975.c
1477 target/arm/usb-s3c6400x.c
1478 target/arm/s5l8700/debug-s5l8700.c
1479 target/arm/s5l8700/pcm-s5l8700.c
1480 target/arm/s5l8700/wmcodec-s5l8700.c
1481 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1482 target/arm/s5l8700/ipodnano2g/adc-nano2g.c
1483 #endif
1484 #endif
1485 #endif
1487 #ifndef SIMULATOR
1488 #if CONFIG_CPU == JZ4732
1489 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1490 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1491 target/mips/ingenic_jz47xx/debug-jz4740.c
1492 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1493 target/mips/ingenic_jz47xx/kernel-jz4740.c
1494 target/mips/ingenic_jz47xx/i2c-jz4740.c
1495 target/mips/ingenic_jz47xx/lcd-jz4740.c
1496 target/mips/ingenic_jz47xx/system-jz4740.c
1497 target/mips/ingenic_jz47xx/usb-jz4740.c
1498 target/mips/ingenic_jz47xx/timer-jz4740.c
1499 #ifndef BOOTLOADER
1500 target/mips/ingenic_jz47xx/codec-jz4740.c
1501 target/mips/ingenic_jz47xx/pcm-jz4740.c
1502 #endif /* BOOTLOADER */
1503 drivers/nand_id.c
1504 #endif /* CONFIG_CPU == JZ4732 */
1506 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1507 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1508 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1509 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1510 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1511 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1512 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1514 #ifdef ONDA_VX767
1515 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1516 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1517 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1518 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1519 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1520 #endif /* ONDA_VX767 */
1522 #if defined(LYRE_PROTO1)
1523 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1524 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1525 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1526 target/arm/at91sam/lyre_proto1/crt0.S
1527 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1528 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1529 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1530 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1531 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1532 #endif
1533 #endif /* SIMULATOR */
1535 #if defined(MINI2440)
1536 #ifndef SIMULATOR
1537 target/arm/lcd-as-memframe.S
1538 target/arm/mmu-arm.S
1539 target/arm/s3c2440/debug-s3c2440.c
1540 target/arm/s3c2440/dma-s3c2440.c
1541 target/arm/s3c2440/kernel-s3c2440.c
1542 target/arm/s3c2440/lcd-s3c2440.c
1543 target/arm/s3c2440/sd-s3c2440.c
1544 target/arm/s3c2440/system-s3c2440.c
1545 target/arm/s3c2440/uart-s3c2440.c
1546 target/arm/s3c2440/adc-s3c2440.c
1547 target/arm/s3c2440/i2c-s3c2440.c
1548 target/arm/s3c2440/mini2440/backlight-mini2440.c
1549 target/arm/s3c2440/mini2440/button-mini2440.c
1550 target/arm/s3c2440/mini2440/led-mini2440.c
1551 target/arm/s3c2440/mini2440/power-mini2440.c
1552 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1553 #ifndef BOOTLOADER
1554 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1555 target/arm/s3c2440/mini2440/pcm-mini2440.c
1556 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
1557 #endif
1558 #endif /* SIMULATOR */
1559 #endif /* MINI2440 */
1561 #ifdef SAMSUNG_YH820
1562 #ifndef SIMULATOR
1563 target/arm/ata-as-arm.S
1564 target/arm/ata-pp5020.c
1565 target/arm/adc-pp5020.c
1566 target/arm/i2s-pp.c
1567 target/arm/usb-fw-pp502x.c
1568 target/arm/samsung/akcodec-yh82x_yh92x.c
1569 target/arm/samsung/button-yh82x_yh92x.c
1570 target/arm/samsung/power-yh82x_yh92x.c
1571 target/arm/samsung/yh820/backlight-yh820.c
1572 target/arm/samsung/yh820/lcd-yh820.c
1573 target/arm/samsung/yh820/lcd-as-yh820.S
1574 target/arm/samsung/yh820/powermgmt-yh820.c
1575 #endif /* SIMULATOR */
1576 #endif /* SAMSUNG_YH820 */
1578 #ifdef SAMSUNG_YH920
1579 #ifndef SIMULATOR
1580 target/arm/ata-as-arm.S
1581 target/arm/ata-pp5020.c
1582 target/arm/adc-pp5020.c
1583 target/arm/i2s-pp.c
1584 target/arm/usb-fw-pp502x.c
1585 target/arm/samsung/akcodec-yh82x_yh92x.c
1586 target/arm/samsung/button-yh82x_yh92x.c
1587 target/arm/samsung/power-yh82x_yh92x.c
1588 target/arm/samsung/yh920/backlight-yh920.c
1589 target/arm/samsung/yh920/lcd-yh920.c
1590 target/arm/samsung/yh920/lcd-as-yh920.S
1591 target/arm/samsung/yh920/powermgmt-yh920.c
1592 #endif /* SIMULATOR */
1593 #endif /* SAMSUNG_YH920 */
1595 #ifdef SAMSUNG_YH925
1596 #ifndef SIMULATOR
1597 target/arm/ata-as-arm.S
1598 target/arm/ata-pp5020.c
1599 target/arm/adc-pp5020.c
1600 target/arm/i2s-pp.c
1601 target/arm/usb-fw-pp502x.c
1602 target/arm/samsung/akcodec-yh82x_yh92x.c
1603 target/arm/samsung/button-yh82x_yh92x.c
1604 target/arm/samsung/power-yh82x_yh92x.c
1605 target/arm/samsung/yh925/backlight-yh925.c
1606 target/arm/samsung/yh925/lcd-yh925.c
1607 target/arm/samsung/yh925/lcd-as-yh925.S
1608 target/arm/samsung/yh925/powermgmt-yh925.c
1609 #endif /* SIMULATOR */
1610 #endif /* SAMSUNG_YH925 */
1612 #ifdef SAMSUNG_YPS3
1613 /* TODO: currently including all files for the bootloader DFU test program */
1614 tuner.c
1615 drivers/tuner/si4700.c
1616 target/arm/s5l8700/adc-s5l8700.c
1617 target/arm/s5l8700/i2c-s5l8700.c
1618 target/arm/s5l8700/kernel-s5l8700.c
1619 target/arm/s5l8700/timer-s5l8700.c
1620 target/arm/s5l8700/wmcodec-s5l8700.c
1621 target/arm/s5l8700/yps3/button-yps3.c
1622 target/arm/s5l8700/yps3/lcd-yps3.c
1623 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1624 target/arm/s5l8700/yps3/backlight-yps3.c
1625 target/arm/s5l8700/yps3/nand-yps3.c
1626 target/arm/s5l8700/yps3/power-yps3.c
1627 #endif /* SAMSUNG_YPS3 */
1629 #ifdef PBELL_VIBE500
1630 #ifndef SIMULATOR
1631 drivers/synaptics-mep.c
1632 target/arm/ata-as-arm.S
1633 target/arm/ata-pp5020.c
1634 target/arm/wmcodec-pp.c
1635 target/arm/i2s-pp.c
1636 target/arm/adc-pp5020.c
1637 target/arm/pbell/vibe500/lcd-vibe500.c
1638 target/arm/pbell/vibe500/button-vibe500.c
1639 target/arm/pbell/vibe500/power-vibe500.c
1640 target/arm/pbell/vibe500/backlight-vibe500.c
1641 target/arm/pbell/vibe500/lcd-as-vibe500.S
1642 target/arm/pbell/vibe500/powermgmt-vibe500.c
1643 target/arm/usb-fw-pp502x.c
1644 #endif /* SIMULATOR */
1645 #endif
1647 #ifdef MPIO_HD200
1648 #ifndef SIMULATOR
1649 /* TODO: currently including all files */
1650 target/coldfire/mpio/hd200/adc-hd200.c
1651 target/coldfire/mpio/hd200/button-hd200.c
1652 target/coldfire/mpio/hd200/lcd-hd200.c
1653 target/coldfire/mpio/hd200/lcd-as-hd200.S
1654 target/coldfire/mpio/hd200/power-hd200.c
1655 target/coldfire/mpio/hd200/powermgmt-hd200.c
1656 target/coldfire/mpio/hd200/backlight-hd200.c
1657 target/coldfire/mpio/hd200/system-hd200.c
1658 target/coldfire/mpio/hd200/usb-hd200.c
1659 target/coldfire/mpio/ata-mpio.c
1660 target/coldfire/ata-as-coldfire.S
1661 #ifndef BOOTLOADER
1662 target/coldfire/mpio/audio-mpio.c
1663 target/coldfire/wmcodec-coldfire.c
1664 target/coldfire/mpio/fmradio_i2c-mpio.c
1665 #endif /* BOOTLOADER */
1666 #endif /* SIMULATOR */
1667 #endif