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