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