FS#10047 : Clipv2
[kugel-rb.git] / firmware / SOURCES
bloba0c06298681cd1bf2ec6fe2aec87cc985b034653
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/strlcpy.c
57 common/strrchr.c
58 common/strtok.c
59 common/strstr.c
60 common/structec.c
61 common/timefuncs.c
62 common/unicode.c
64 /* Display */
65 scroll_engine.c
67 #ifdef HAVE_LCD_CHARCELLS
68 drivers/lcd-charcell.c
69 drivers/lcd-charset-player.c
70 #endif /* HAVE_LCD_CHARCELLS */
72 #ifdef HAVE_LCD_BITMAP
73 arabjoin.c
74 bidi.c
75 font_cache.c
76 font.c
77 hangul.c
78 lru.c
79 #ifndef BOOTLOADER
80 screendump.c
81 #endif
82 #if LCD_DEPTH == 1
83 drivers/lcd-1bit-vert.c
84 #elif LCD_DEPTH == 2
85 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
86 drivers/lcd-2bit-horz.c
87 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
88 drivers/lcd-2bit-vert.c
89 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
90 drivers/lcd-2bit-vi.c
91 #endif /* LCD_PIXELFORMAT */
92 #elif LCD_DEPTH == 16
93 #if   defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
94 drivers/lcd-16bit-vert.c
95 #else
96 drivers/lcd-16bit.c
97 #endif
98 #endif /* LCD_DEPTH */
99 drivers/diacritic.c
100 #endif /* HAVE_LCD_BITMAP */
102 #ifdef HAVE_REMOTE_LCD
103 #if LCD_REMOTE_DEPTH == 1
104 drivers/lcd-remote-1bit-v.c
105 #elif LCD_REMOTE_DEPTH == 2
106 drivers/lcd-remote-2bit-vi.c
107 #endif /* LCD_REMOTE_DEPTH */
108 #endif /* HAVE_REMOTE_LCD */
110 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
111     || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
112 backlight-sw-fading.c
113 #endif /* CONFIG_BACKLIGHT_FADING */
115 /* Misc. */
116 drivers/led.c
117 drivers/button.c
118 #ifndef SIMULATOR
119 #ifdef HAVE_DAC3550A
120 drivers/dac.c
121 #endif
122 #ifdef HAVE_SERIAL
123 drivers/serial.c
124 #endif
125 #endif /* SIMULATOR */
126 #ifdef HAVE_TOUCHSCREEN
127 drivers/touchscreen.c
128 #endif
131 /* Storage */
132 #ifndef SIMULATOR
133 #if (CONFIG_STORAGE & STORAGE_MMC)
134 drivers/ata_mmc.c
135 #endif
136 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
137 drivers/ata_flash.c
138 #endif
139 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
140 target/arm/ata-nand-telechips.c
141 #endif
142 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
143 target/arm/s5l8700/ata-nand-s5l8700.c
144 #endif
145 #if (CONFIG_STORAGE & STORAGE_ATA)
146 drivers/ata.c
147 #endif
148 #if (CONFIG_STORAGE & STORAGE_SD)
149 drivers/sd.c
150 #endif
151 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
152 drivers/ramdisk.c
153 #endif
154 #ifdef CONFIG_STORAGE_MULTI
155 storage.c
156 #endif
157 drivers/fat.c
158 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
159 hotswap.c
160 #endif
161 #endif /* SIMULATOR */
163 /* EEPROM */
164 #ifdef HAVE_EEPROM
165 drivers/eeprom_24cxx.c
166 #ifdef HAVE_EEPROM_SETTINGS
167 eeprom_settings.c
168 #endif /* HAVE_EEPROM_SETTINGS */
169 #endif /* HAVE_EEPROM */
171 /* RTC */
172 #ifndef SIMULATOR
173 #if (CONFIG_RTC == RTC_M41ST84W)
174 drivers/rtc/rtc_m41st84w.c
175 #elif (CONFIG_RTC == RTC_PCF50606)
176 drivers/rtc/rtc_pcf50606.c
177 #elif (CONFIG_RTC == RTC_PCF50605)
178 drivers/rtc/rtc_pcf50605.c
179 #elif (CONFIG_RTC == RTC_E8564)
180 drivers/rtc/rtc_e8564.c
181 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
182 drivers/rtc/rtc_ds1339_ds3231.c
183 #elif (CONFIG_RTC == RTC_S3C2440)
184 drivers/rtc/rtc_s3c2440.c
185 #elif (CONFIG_RTC == RTC_AS3514)
186 drivers/rtc/rtc_as3514.c
187 #elif (CONFIG_RTC == RTC_RX5X348AB)
188 drivers/rtc/rtc_rx5x348ab.c
189 #elif (CONFIG_RTC == RTC_MR100)
190 drivers/rtc/rtc_mr100.c
191 #elif (CONFIG_RTC == RTC_MC13783)
192 drivers/rtc/rtc_mc13783.c
193 #elif (CONFIG_RTC == RTC_TCC77X)
194 drivers/rtc/rtc_tcc77x.c
195 #elif (CONFIG_RTC == RTC_JZ47XX)
196 drivers/rtc/rtc_jz4740.c
197 #elif (CONFIG_RTC == RTC_S35390A)
198 drivers/rtc/rtc_s35390a.c
199 #elif (CONFIG_RTC == RTC_D2)
200 drivers/rtc/rtc_d2.c
201 #endif /* (CONFIG_RTC == RTC_) */
202 #endif /* SIMULATOR */
204 #ifndef BOOTLOADER
205 /* Tuner */
206 #if CONFIG_TUNER
207 tuner.c
208 #ifndef SIMULATOR
209 #if (CONFIG_TUNER & LV24020LP)
210 drivers/tuner/lv24020lp.c
211 #endif /* (CONFIG_TUNER & LV24020LP) */
212 #if (CONFIG_TUNER & S1A0903X01)
213 drivers/fmradio.c
214 drivers/tuner/s1a0903x01.c
215 #endif /* (CONFIG_TUNER & S1A0903X01) */
216 #if (CONFIG_TUNER & TEA5760)
217 drivers/tuner/tea5760uk.c
218 #endif
219 #if (CONFIG_TUNER & TEA5767)
220 drivers/tuner/tea5767.c
221 #endif /* (CONFIG_TUNER & TEA5767) */
222 #if (CONFIG_TUNER & SI4700)
223 drivers/tuner/si4700.c
224 #endif /* (CONFIG_TUNER & SI4700) */
225 #if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
226 drivers/tuner/ipod_remote_tuner.c
227 #endif /* (CONFIG_TUNER & IPOD_REMOTE_TUNER) */
228 #endif /*SIMULATOR */
229 #endif /* CONFIG_TUNER */
230 #endif /* BOOTLOADER */
232 /* Sound */
233 #if CONFIG_CODEC != SWCODEC
234 mp3_playback.c
235 #endif /* CONFIG_CODEC != SWCODEC */
236 sound.c
238 #if CONFIG_CODEC == SWCODEC
240 #ifndef BOOTLOADER
241 pcm_sampr.c
242 pcm.c
243 #ifdef HAVE_RECORDING
244 enc_base.c
245 #endif /* HAVE_RECORDING */
246 #endif /* BOOTLOADER */
248 #else  /* !SWCODEC */
250 #ifndef BOOTLOADER
251 #ifndef SIMULATOR
252 drivers/mas.c
253 #endif /* SIMULATOR */
254 #endif /* BOOTLOADER */
256 #endif /* SWCODEC */
258 /* Audio codec */
259 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
260 #if defined(HAVE_UDA1380)
261 drivers/audio/uda1380.c
262 #elif defined(HAVE_WM8751)
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/memcpy-arm.S
378 target/arm/memmove-arm.S
379 common/strlen.c
380 #ifndef SIMULATOR
381 target/arm/memset-arm.S
382 target/arm/memset16-arm.S
383 #ifdef HAVE_PRIORITY_SCHEDULING
384 target/arm/ffs-arm.S
385 #endif
386 target/arm/system-arm.c
387 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
388 target/arm/i2c-pp.c
389 #elif CONFIG_I2C == I2C_PNX0101
390 target/arm/pnx0101/i2c-pnx0101.c
391 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
392 target/arm/i2c-telechips.c
393 #elif CONFIG_I2C == I2C_S3C2440
394 /* no i2c driver yet */
395 #elif CONFIG_I2C == I2C_S5L8700
396 target/arm/s5l8700/i2c-s5l8700.c
397 #endif
399 #if CONFIG_CPU == PNX0101
400 target/arm/pnx0101/kernel-pnx0101.c
401 target/arm/pnx0101/system-pnx0101.c
402 target/arm/pnx0101/timer-pnx0101.c
403 #endif
405 #if CONFIG_CPU == AS3525 || CONFIG_CPU == AS3525v2
406 target/arm/as3525/system-as3525.c
407 target/arm/as3525/kernel-as3525.c
408 target/arm/as3525/timer-as3525.c
409 #ifndef SANSA_CLIPV2
410 target/arm/as3525/ata_sd_as3525.c
411 #endif
412 target/arm/as3525/power-as3525.c
413 target/arm/as3525/usb-as3525.c
414 target/arm/as3525/dma-pl081.c
415 target/arm/as3525/ascodec-as3525.c
416 #ifndef BOOTLOADER
417 target/arm/mmu-arm.S
418 drivers/generic_i2c.c
419 target/arm/adc-as3514.c
420 target/arm/as3525/audio-as3525.c
421 target/arm/as3525/debug-as3525.c
422 target/arm/as3525/fmradio-i2c-as3525.c
423 target/arm/as3525/i2s-as3525.c
424 target/arm/as3525/pcm-as3525.c
425 #endif /* BOOTLOADER */
426 #endif /* CONFIG_CPU == AS3525 */
428 #if defined(CPU_PP)
429 target/arm/kernel-pp.c
430 target/arm/timer-pp.c
431 #if CONFIG_CPU == PP5002
432 target/arm/system-pp5002.c
433 #elif defined CPU_PP502x
434 target/arm/system-pp502x.c
435 #endif
436 #ifdef BOOTLOADER
437 target/arm/crt0-pp-bl.S
438 #else
439 target/arm/pcm-pp.c
440 #if !defined(SANSA_E200) && !defined(SANSA_C200)
441 target/arm/audio-pp.c
442 #endif /* SANSA_E200 */
443 target/arm/crt0-pp.S
444 #endif
445 #elif CONFIG_CPU == PNX0101
446 target/arm/pnx0101/crt0-pnx0101.S
447 #elif CONFIG_CPU==DM320
448 target/arm/tms320dm320/crt0.S
449 #elif CONFIG_CPU==S3C2440
450 target/arm/s3c2440/crt0.S
451 #elif defined(CPU_TCC77X)
452 target/arm/tcc77x/crt0.S
453 #elif defined(CPU_TCC780X)
454 target/arm/tcc780x/crt0.S
455 #elif CONFIG_CPU==IMX31L
456 target/arm/imx31/crt0.S
457 #elif defined(CPU_S5L870X)
458 target/arm/s5l8700/crt0.S
459 #elif defined(CPU_ARM)
460 target/arm/crt0.S
461 #endif /* defined(CPU_*) */
462 #endif /* SIMULATOR */
464 #elif defined(CPU_MIPS)
465 #undef mips
466 /*target/mips/strlen.S*/
467 common/memmove.c
468 common/memset16.c
469 common/strlen.c
470 target/mips/ffs-mips.S
471 target/mips/memcpy-mips.S
472 target/mips/memset-mips.S
473 target/mips/mmu-mips.c
474 #if CONFIG_CPU==JZ4732
475 target/mips/ingenic_jz47xx/crt0.S
476 #endif /* CONFIG_CPU == JZ4732 */
478 #else
480 #ifdef HAVE_PRIORITY_SCHEDULING
481 common/ffs.c
482 #endif
483 common/memcpy.c
484 common/memmove.c
485 common/memset.c
486 common/memset16.c
487 common/strlen.c
488 #ifndef SIMULATOR
489 crt0.S
490 drivers/i2c.c
491 #endif /* SIMULATOR */
493 #endif /* defined(CPU_*) */
495 #ifdef ARCHOS_PLAYER
496 #ifndef SIMULATOR
497 target/sh/archos/ata-archos.c
498 target/sh/archos/timer-archos.c
499 target/sh/archos/ata-as-archos.S
500 target/sh/archos/player/button-player.c
501 target/sh/archos/player/hwcompat-player.c
502 target/sh/archos/player/lcd-as-player.S
503 target/sh/archos/player/lcd-player.c
504 target/sh/archos/player/power-player.c
505 target/sh/archos/player/powermgmt-player.c
506 target/sh/archos/player/usb-player.c
507 #endif /* SIMULATOR */
508 #endif /* ARCHOS_PLAYER */
510 #ifdef ARCHOS_RECORDER
511 #ifndef SIMULATOR
512 target/sh/archos/ata-archos.c
513 target/sh/archos/timer-archos.c
514 target/sh/archos/ata-as-archos.S
515 target/sh/archos/lcd-archos-bitmap.c
516 target/sh/archos/lcd-as-archos-bitmap.S   
517 target/sh/archos/recorder/button-recorder.c
518 target/sh/archos/recorder/power-recorder.c
519 target/sh/archos/recorder/powermgmt-recorder.c
520 target/sh/archos/recorder/usb-recorder.c
521 #endif /* SIMULATOR */
522 #endif /* ARCHOS_RECORDER */
524 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
525 #ifndef SIMULATOR
526 target/sh/archos/ata-archos.c
527 target/sh/archos/timer-archos.c
528 target/sh/archos/ata-as-archos.S
529 target/sh/archos/lcd-archos-bitmap.c
530 target/sh/archos/lcd-as-archos-bitmap.S
531 target/sh/archos/fm_v2/button-fm_v2.c
532 target/sh/archos/fm_v2/power-fm_v2.c
533 target/sh/archos/fm_v2/powermgmt-fm_v2.c
534 target/sh/archos/fm_v2/usb-fm_v2.c
535 #endif /* SIMULATOR */
536 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
538 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
539 #ifndef SIMULATOR
540 target/sh/archos/timer-archos.c
541 target/sh/archos/lcd-archos-bitmap.c
542 target/sh/archos/lcd-as-archos-bitmap.S
543 target/sh/archos/ondio/button-ondio.c
544 target/sh/archos/ondio/power-ondio.c
545 target/sh/archos/ondio/powermgmt-ondio.c
546 target/sh/archos/ondio/usb-ondio.c
547 #if (CONFIG_TUNER & TEA5767)
548 target/sh/archos/ondio/fmradio_i2c-ondio.c
549 #endif
550 #endif /* SIMULATOR */
551 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
553 #ifdef SANSA_E200
554 #ifndef SIMULATOR
555 target/arm/adc-as3514.c
556 target/arm/ascodec-pp.c
557 target/arm/ata-sd-pp.c
558 target/arm/lcd-as-memframe.S
559 target/arm/powermgmt-ascodec.c
560 target/arm/i2s-pp.c
561 target/arm/usb-fw-pp502x.c
562 target/arm/sandisk/backlight-c200_e200.c
563 target/arm/sandisk/power-c200_e200.c
564 target/arm/sandisk/sansa-e200/lcd-e200.c
565 target/arm/sandisk/sansa-e200/button-e200.c
566 target/arm/sandisk/sansa-e200/powermgmt-e200.c
567 #ifndef BOOTLOADER
568 target/arm/sandisk/audio-c200_e200.c
569 #endif /* BOOTLOADER */
570 #endif /* SIMULATOR */
571 #endif /* SANSA_E200 */
573 #ifdef SANSA_C200
574 #ifndef SIMULATOR
575 target/arm/adc-as3514.c
576 target/arm/ascodec-pp.c
577 target/arm/ata-sd-pp.c
578 target/arm/i2s-pp.c
579 target/arm/powermgmt-ascodec.c
580 target/arm/usb-fw-pp502x.c
581 target/arm/sandisk/backlight-c200_e200.c
582 target/arm/sandisk/power-c200_e200.c
583 target/arm/lcd-c200_c200v2.c
584 target/arm/sandisk/sansa-c200/lcd-as-c200.S
585 target/arm/sandisk/sansa-c200/button-c200.c
586 target/arm/sandisk/sansa-c200/powermgmt-c200.c
587 #ifndef BOOTLOADER
588 target/arm/sandisk/audio-c200_e200.c
589 #endif /* BOOTLOADER */
590 #endif /* SIMULATOR */
591 #endif /* SANSA_C200 */
593 #ifdef SANSA_VIEW
594 #ifndef SIMULATOR
595 /* target/arm/ascodec-pp.c */
596 target/arm/ata-sd-pp.c
597 target/arm/lcd-as-memframe.S
598 target/arm/i2s-pp.c
599 /* target/arm/usb-fw-pp502x.c */
600 target/arm/sandisk/sansa-view/backlight-view.c
601 target/arm/sandisk/sansa-view/adc-view.c
602 target/arm/sandisk/sansa-view/power-view.c
603 target/arm/sandisk/sansa-view/lcd-view.c
604 target/arm/sandisk/sansa-view/button-view.c
605 target/arm/sandisk/sansa-view/powermgmt-view.c
606 #ifndef BOOTLOADER
607 /* target/arm/sandisk/audio-view.c */
608 #endif /* BOOTLOADER */
609 #endif /* SIMULATOR */
610 #endif /* SANSA_VIEW */
612 #ifdef PHILIPS_SA9200
613 #ifndef SIMULATOR
614 #ifndef BOOTLOADER
615 drivers/synaptics-mep.c
616 #endif /* BOOTLOADER */
617 target/arm/adc-as3514.c
618 target/arm/ascodec-pp.c
619 target/arm/ata-sd-pp.c
620 target/arm/i2s-pp.c
621 target/arm/powermgmt-ascodec.c
622 target/arm/usb-fw-pp502x.c
623 target/arm/philips/sa9200/backlight-sa9200.c
624 target/arm/philips/sa9200/button-sa9200.c
625 target/arm/philips/sa9200/lcd-sa9200.c
626 target/arm/philips/sa9200/power-sa9200.c
627 target/arm/philips/sa9200/powermgmt-sa9200.c
628 #endif /* SIMULATOR */
629 #endif /* PHILIPS_SA9200 */
631 #ifdef PHILIPS_HDD1630
632 #ifndef SIMULATOR
633 #ifndef BOOTLOADER
634 drivers/synaptics-mep.c
635 #endif /* BOOTLOADER */
636 target/arm/ata-as-arm.S
637 target/arm/ata-pp5020.c
638 target/arm/wmcodec-pp.c
639 target/arm/i2s-pp.c
640 target/arm/adc-pp5020.c
641 target/arm/philips/backlight-hdd.c
642 target/arm/philips/power-hdd.c
643 target/arm/philips/fmradio_i2c-hdd.c
644 target/arm/philips/hdd1630/button-hdd1630.c
645 target/arm/philips/hdd1630/lcd-hdd1630.c
646 target/arm/philips/hdd1630/lcd-as-hdd1630.S
647 target/arm/philips/hdd1630/powermgmt-hdd1630.c
648 target/arm/usb-fw-pp502x.c
649 #endif /* SIMULATOR */
650 #endif /* PHILIPS_HDD1630 */
652 #ifdef PHILIPS_HDD6330
653 #ifndef SIMULATOR
654 #ifndef BOOTLOADER
655 drivers/synaptics-mep.c
656 #endif /* BOOTLOADER */
657 target/arm/ata-as-arm.S
658 target/arm/ata-pp5020.c
659 target/arm/wmcodec-pp.c
660 target/arm/i2s-pp.c
661 target/arm/adc-pp5020.c
662 target/arm/philips/backlight-hdd.c
663 target/arm/philips/power-hdd.c
664 target/arm/philips/fmradio_i2c-hdd.c
665 target/arm/philips/hdd6330/button-hdd6330.c
666 target/arm/philips/hdd6330/lcd-hdd6330.c
667 target/arm/philips/hdd6330/powermgmt-hdd6330.c
668 target/arm/usb-fw-pp502x.c
669 #endif /* SIMULATOR */
670 #endif /* PHILIPS_HDD6330 */
672 #ifdef IAUDIO_X5
673 #ifndef SIMULATOR
674 target/coldfire/ata-as-coldfire.S
675 target/coldfire/pcf50606-coldfire.c
676 target/coldfire/iaudio/adc-iaudio.c
677 target/coldfire/iaudio/ata-iaudio.c
678 target/coldfire/iaudio/fmradio_i2c-iaudio.c
679 target/coldfire/iaudio/lcd-remote-as-iaudio.S
680 target/coldfire/iaudio/lcd-remote-iaudio.c
681 target/coldfire/iaudio/pcf50606-iaudio.c
682 target/coldfire/iaudio/power-x5m5.c
683 target/coldfire/iaudio/powermgmt-iaudio.c
684 target/coldfire/iaudio/system-iaudio.c
685 target/coldfire/iaudio/usb-iaudio.c
686 target/coldfire/iaudio/x5/backlight-x5.c
687 target/coldfire/iaudio/x5/button-x5.c
688 target/coldfire/iaudio/x5/ds2411-x5.c
689 target/coldfire/iaudio/x5/lcd-as-x5.S
690 target/coldfire/iaudio/x5/lcd-x5.c
691 target/coldfire/iaudio/x5/m5636-x5.c
692 #ifndef BOOTLOADER
693 target/coldfire/iaudio/audio-iaudio.c
694 #endif
695 #endif /* SIMULATOR */
696 #endif /* IAUDIO_X5 */
698 #ifdef IAUDIO_M5
699 #ifndef SIMULATOR
700 target/coldfire/ata-as-coldfire.S
701 target/coldfire/pcf50606-coldfire.c
702 target/coldfire/iaudio/adc-iaudio.c
703 target/coldfire/iaudio/ata-iaudio.c
704 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
705 target/coldfire/iaudio/fmradio_i2c-iaudio.c
706 #endif
707 target/coldfire/iaudio/lcd-remote-as-iaudio.S
708 target/coldfire/iaudio/lcd-remote-iaudio.c
709 target/coldfire/iaudio/m5/backlight-m5.c
710 target/coldfire/iaudio/m5/button-m5.c
711 target/coldfire/iaudio/m5/lcd-as-m5.S
712 target/coldfire/iaudio/m5/lcd-m5.c
713 target/coldfire/iaudio/pcf50606-iaudio.c
714 target/coldfire/iaudio/power-x5m5.c
715 target/coldfire/iaudio/powermgmt-iaudio.c
716 target/coldfire/iaudio/system-iaudio.c
717 target/coldfire/iaudio/usb-iaudio.c
718 #ifndef BOOTLOADER
719 target/coldfire/iaudio/audio-iaudio.c
720 #endif
721 #endif /* SIMULATOR */
722 #endif /* IAUDIO_M5 */
724 #ifdef IAUDIO_M3
725 #ifndef SIMULATOR
726 target/coldfire/ata-as-coldfire.S
727 target/coldfire/iaudio/fmradio_i2c-iaudio.c
728 target/coldfire/iaudio/m3/adc-m3.c
729 target/coldfire/iaudio/m3/ata-m3.c
730 target/coldfire/iaudio/m3/backlight-m3.c
731 target/coldfire/iaudio/m3/button-m3.c
732 target/coldfire/iaudio/m3/lcd-m3.c
733 target/coldfire/iaudio/m3/lcd-as-m3.S
734 target/coldfire/iaudio/m3/power-m3.c
735 target/coldfire/iaudio/m3/powermgmt-m3.c
736 target/coldfire/iaudio/m3/system-m3.c
737 target/coldfire/iaudio/m3/usb-m3.c
738 #ifndef BOOTLOADER
739 target/coldfire/iaudio/audio-iaudio.c
740 #endif
741 #endif /* SIMULATOR */
742 #endif /* IAUDIO_M3 */
744 #ifdef IRIVER_IFP7XX_SERIES
745 #ifdef STUB
746 ifp_usb_serial.c
747 common/sscanf.c
748 #endif /* STUB */
749 #endif /* IRIVER_IFP7XX_SERIES */
751 #ifdef IRIVER_H300_SERIES
752 #ifndef SIMULATOR
753 target/coldfire/ata-as-coldfire.S
754 target/coldfire/pcf50606-coldfire.c
755 target/coldfire/iriver/ata-iriver.c
756 target/coldfire/iriver/lcd-remote-iriver.c
757 target/coldfire/iriver/lcd-remote-as-iriver.S
758 target/coldfire/iriver/system-iriver.c
759 target/coldfire/iriver/fmradio_i2c-iriver.c
760 target/coldfire/iriver/h300/sw_i2c-h300.c
761 target/coldfire/iriver/h300/adc-h300.c
762 target/coldfire/iriver/h300/backlight-h300.c
763 target/coldfire/iriver/h300/button-h300.c
764 target/coldfire/iriver/h300/pcf50606-h300.c
765 target/coldfire/iriver/h300/lcd-as-h300.S
766 target/coldfire/iriver/h300/lcd-h300.c
767 target/coldfire/iriver/h300/power-h300.c
768 target/coldfire/iriver/h300/powermgmt-h300.c
769 target/coldfire/iriver/h300/usb-h300.c
770 #ifndef BOOTLOADER
771 target/coldfire/iriver/audio-iriver.c
772 target/coldfire/iriver/udacodec-iriver.c
773 #endif
774 #endif /* SIMULATOR */
775 #endif /* IRIVER_H300_SERIES */
777 #ifdef IRIVER_H100_SERIES
778 #ifndef SIMULATOR
779 drivers/sw_i2c.c
780 target/coldfire/ata-as-coldfire.S
781 target/coldfire/iriver/ata-iriver.c
782 target/coldfire/iriver/lcd-remote-iriver.c
783 target/coldfire/iriver/lcd-remote-as-iriver.S
784 target/coldfire/iriver/system-iriver.c
785 target/coldfire/iriver/fmradio_i2c-iriver.c
786 target/coldfire/iriver/h100/adc-h100.c
787 target/coldfire/iriver/h100/backlight-h100.c
788 target/coldfire/iriver/h100/button-h100.c
789 target/coldfire/iriver/h100/lcd-as-h100.S
790 target/coldfire/iriver/h100/lcd-h100.c
791 target/coldfire/iriver/h100/power-h100.c
792 target/coldfire/iriver/h100/powermgmt-h100.c
793 #ifndef BOOTLOADER
794 target/coldfire/iriver/audio-iriver.c
795 target/coldfire/iriver/udacodec-iriver.c
796 target/coldfire/iriver/h100/spdif-h100.c
797 #endif
798 target/coldfire/iriver/h100/usb-h100.c
799 #endif /* SIMULATOR */
800 #endif /* IRIVER_H100_SERIES */
802 #ifdef IRIVER_H10
803 #ifndef SIMULATOR
804 target/arm/ata-as-arm.S
805 target/arm/ata-pp5020.c
806 target/arm/wmcodec-pp.c
807 target/arm/i2s-pp.c
808 target/arm/adc-pp5020.c
809 target/arm/iriver/h10/backlight-h10.c
810 target/arm/iriver/h10/button-h10.c
811 target/arm/iriver/h10/fmradio_i2c-h10.c
812 target/arm/iriver/h10/lcd-h10_20gb.c
813 target/arm/iriver/h10/lcd-as-h10.S
814 target/arm/iriver/h10/power-h10.c
815 target/arm/iriver/h10/powermgmt-h10.c
816 target/arm/usb-fw-pp502x.c
817 #endif /* SIMULATOR */
818 #endif /* IRIVER_H10 */
820 #ifdef IRIVER_H10_5GB
821 #ifndef SIMULATOR
822 target/arm/ata-as-arm.S
823 target/arm/ata-pp5020.c
824 target/arm/wmcodec-pp.c
825 target/arm/i2s-pp.c
826 target/arm/adc-pp5020.c
827 target/arm/iriver/h10/backlight-h10.c
828 target/arm/iriver/h10/button-h10.c
829 target/arm/iriver/h10/fmradio_i2c-h10.c
830 target/arm/iriver/h10/lcd-h10_5gb.c
831 target/arm/iriver/h10/power-h10.c
832 target/arm/iriver/h10/powermgmt-h10.c
833 target/arm/usb-fw-pp502x.c
834 #endif /* SIMULATOR */
835 #endif /* IRIVER_H10_5GB */
837 #ifdef GIGABEAT_F
838 #ifndef SIMULATOR
839 target/arm/lcd-as-memframe.S
840 target/arm/mmu-arm.S
841 target/arm/s3c2440/adc-s3c2440.c
842 target/arm/s3c2440/debug-s3c2440.c
843 target/arm/s3c2440/kernel-s3c2440.c
844 target/arm/s3c2440/lcd-s3c2440.c
845 target/arm/s3c2440/system-s3c2440.c
846 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
847 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
848 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
849 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
850 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
851 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
852 #ifndef BOOTLOADER
853 target/arm/s3c2440/i2c-s3c2440.c
854 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
855 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
856 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
857 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
858 #endif
859 #endif /* SIMULATOR */
860 #endif /* GIGABEAT_F */
862 #ifdef GIGABEAT_S
863 #ifndef SIMULATOR
864 target/arm/lcd-as-memframe.S
865 target/arm/mmu-armv6.S
866 target/arm/imx31/ccm-imx31.c
867 target/arm/imx31/debug-imx31.c
868 target/arm/imx31/rolo_restart.S
869 target/arm/imx31/sdma-imx31.c
870 target/arm/imx31/gigabeat-s/adc-imx31.c
871 target/arm/imx31/gigabeat-s/ata-imx31.c
872 target/arm/imx31/gigabeat-s/avic-imx31.c
873 target/arm/imx31/gigabeat-s/backlight-imx31.c
874 target/arm/imx31/gigabeat-s/button-imx31.c
875 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
876 target/arm/imx31/gigabeat-s/gpio-imx31.c
877 target/arm/imx31/gigabeat-s/kernel-imx31.c
878 target/arm/imx31/gigabeat-s/i2c-imx31.c
879 target/arm/imx31/gigabeat-s/i2s-imx31.c
880 target/arm/imx31/gigabeat-s/lcd-imx31.c
881 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
882 target/arm/imx31/gigabeat-s/mc13783-imx31.c
883 target/arm/imx31/gigabeat-s/mmu-imx31.c
884 target/arm/imx31/gigabeat-s/power-imx31.c
885 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
886 target/arm/imx31/gigabeat-s/spi-imx31.c
887 target/arm/imx31/gigabeat-s/system-imx31.c
888 target/arm/imx31/gigabeat-s/usb-imx31.c
889 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
890 #ifndef BOOTLOADER
891 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
892 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
893 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
894 target/arm/imx31/gigabeat-s/pcm-imx31.c
895 target/arm/imx31/gigabeat-s/timer-imx31.c
896 #endif
897 #endif /* SIMULATOR */
898 #endif /* GIGABEAT_S */
900 #if CONFIG_CPU == DM320
901 target/arm/tms320dm320/debug-dm320.c
902 target/arm/tms320dm320/dsp-dm320.c
903 target/arm/tms320dm320/i2c-dm320.c
904 target/arm/tms320dm320/kernel-dm320.c
905 target/arm/tms320dm320/spi-dm320.c
906 target/arm/tms320dm320/system-dm320.c
907 target/arm/tms320dm320/timer-dm320.c
908 target/arm/tms320dm320/uart-dm320.c
909 #endif /* CONFIG_CPU == DM320 */
911 #ifdef MROBE_500
912 #ifndef SIMULATOR
913 target/arm/ata-as-arm.S
914 target/arm/lcd-as-memframe.S
915 target/arm/mmu-arm.S
916 target/arm/tms320dm320/mrobe-500/adc-mr500.c
917 target/arm/tms320dm320/mrobe-500/ata-mr500.c
918 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
919 target/arm/tms320dm320/mrobe-500/button-mr500.c
920 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
921 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
922 #if defined(HAVE_REMOTE_LCD)
923 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
924 #endif
925 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
926 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
927 target/arm/tms320dm320/mrobe-500/power-mr500.c
928 target/arm/tms320dm320/mrobe-500/usb-mr500.c
929 #endif /* SIMULATOR */
930 #endif /* MROBE_500 */
932 #ifdef CREATIVE_ZVx
933 #ifndef SIMULATOR
934 target/arm/ata-as-arm.S
935 target/arm/lcd-as-memframe.S
936 target/arm/mmu-arm.S
937 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
938 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
939 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
940 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
941 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
942 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
943 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
944 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
945 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
946 #endif /* SIMULATOR */
947 #endif /* CREATIVE_ZVx */
949 #ifdef MROBE_100
950 #ifndef SIMULATOR
951 #ifndef BOOTLOADER
952 drivers/synaptics-mep.c
953 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
954 #endif /* BOOTLOADER */
955 drivers/sw_i2c.c
956 target/arm/ata-as-arm.S
957 target/arm/ata-pp5020.c
958 target/arm/wmcodec-pp.c
959 target/arm/i2s-pp.c
960 target/arm/adc-pp5020.c
961 target/arm/olympus/mrobe-100/backlight-mr100.c
962 target/arm/olympus/mrobe-100/button-mr100.c
963 target/arm/olympus/mrobe-100/lcd-mr100.c
964 target/arm/olympus/mrobe-100/lcd-as-mr100.S
965 target/arm/olympus/mrobe-100/power-mr100.c
966 target/arm/olympus/mrobe-100/powermgmt-mr100.c
967 target/arm/usb-fw-pp502x.c
968 #endif /* SIMULATOR */
969 #endif /* MROBE_100 */
971 #ifdef TATUNG_TPJ1022
972 #ifndef SIMULATOR
973 target/arm/ata-as-arm.S
974 target/arm/ata-pp5020.c
975 target/arm/wmcodec-pp.c
976 target/arm/i2s-pp.c
977 target/arm/adc-pp5020.c
978 target/arm/tatung/tpj1022/backlight-tpj1022.c
979 target/arm/tatung/tpj1022/button-tpj1022.c
980 target/arm/tatung/tpj1022/lcd-tpj1022.c
981 target/arm/tatung/tpj1022/power-tpj1022.c
982 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
983 target/arm/usb-fw-pp502x.c
984 #endif /* SIMULATOR */
985 #endif /* TATUNG_TPJ1022 */
987 #ifdef IPOD_4G
988 #ifndef SIMULATOR
989 drivers/pcf50605.c
990 target/arm/wmcodec-pp.c
991 target/arm/i2s-pp.c
992 target/arm/ata-as-arm.S
993 target/arm/ata-pp5020.c
994 target/arm/ipod/adc-ipod-pcf.c
995 target/arm/ipod/backlight-4g_color.c
996 target/arm/ipod/button-clickwheel.c
997 target/arm/ipod/lcd-as-gray.S
998 target/arm/ipod/lcd-gray.c
999 target/arm/ipod/power-ipod.c
1000 target/arm/ipod/powermgmt-ipod-pcf.c
1001 target/arm/usb-fw-pp502x.c
1002 #endif /* SIMULATOR */
1003 #endif /* IPOD_4G */
1005 #ifdef IPOD_COLOR
1006 #ifndef SIMULATOR
1007 drivers/pcf50605.c
1008 target/arm/ata-as-arm.S
1009 target/arm/ata-pp5020.c
1010 target/arm/wmcodec-pp.c
1011 target/arm/i2s-pp.c
1012 target/arm/ipod/adc-ipod-pcf.c
1013 target/arm/ipod/backlight-4g_color.c
1014 target/arm/ipod/button-clickwheel.c
1015 target/arm/ipod/lcd-color_nano.c
1016 target/arm/ipod/power-ipod.c
1017 target/arm/ipod/powermgmt-ipod-pcf.c
1018 target/arm/usb-fw-pp502x.c
1019 #endif /* SIMULATOR */
1020 #endif /* IPOD_COLOR */
1022 #ifdef IPOD_NANO
1023 #ifndef SIMULATOR
1024 drivers/pcf50605.c
1025 target/arm/ata-as-arm.S
1026 target/arm/ata-pp5020.c
1027 target/arm/wmcodec-pp.c
1028 target/arm/i2s-pp.c
1029 target/arm/ipod/adc-ipod-pcf.c
1030 target/arm/ipod/backlight-nano_video.c
1031 target/arm/ipod/button-clickwheel.c
1032 target/arm/ipod/lcd-color_nano.c
1033 target/arm/ipod/power-ipod.c
1034 target/arm/ipod/powermgmt-ipod-pcf.c
1035 target/arm/usb-fw-pp502x.c
1036 #endif /* SIMULATOR */
1037 #endif /* IPOD_NANO */
1039 #ifdef IPOD_VIDEO
1040 #ifndef SIMULATOR
1041 drivers/pcf50605.c
1042 target/arm/ata-as-arm.S
1043 target/arm/ata-pp5020.c
1044 target/arm/wmcodec-pp.c
1045 target/arm/i2s-pp.c
1046 target/arm/ipod/adc-ipod-pcf.c
1047 target/arm/ipod/backlight-nano_video.c
1048 target/arm/ipod/button-clickwheel.c
1049 target/arm/ipod/power-ipod.c
1050 target/arm/ipod/powermgmt-ipod-pcf.c
1051 target/arm/ipod/video/lcd-as-video.S
1052 target/arm/ipod/video/lcd-video.c
1053 target/arm/usb-fw-pp502x.c
1054 #endif /* SIMULATOR */
1055 #endif /* IPOD_VIDEO */
1057 #ifdef IPOD_3G
1058 #ifndef SIMULATOR
1059 drivers/pcf50605.c
1060 target/arm/ata-pp5002.c
1061 target/arm/wmcodec-pp.c
1062 target/arm/i2s-pp.c
1063 target/arm/ipod/adc-ipod-pcf.c
1064 target/arm/ipod/3g/backlight-3g.c
1065 target/arm/ipod/button-1g-3g.c
1066 target/arm/ipod/lcd-as-gray.S
1067 target/arm/ipod/lcd-gray.c
1068 target/arm/ipod/power-ipod.c
1069 target/arm/ipod/powermgmt-ipod-pcf.c
1070 target/arm/usb-fw-pp5002.c
1071 #endif /* SIMULATOR */
1072 #endif /* IPOD_3G */
1074 #ifdef IPOD_1G2G
1075 #ifndef SIMULATOR
1076 target/arm/ata-pp5002.c
1077 target/arm/wmcodec-pp.c
1078 target/arm/i2s-pp.c
1079 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1080 target/arm/ipod/1g2g/backlight-1g2g.c
1081 target/arm/ipod/1g2g/powermgmt-1g2g.c
1082 target/arm/ipod/button-1g-3g.c
1083 target/arm/ipod/lcd-as-gray.S
1084 target/arm/ipod/lcd-gray.c
1085 target/arm/ipod/power-ipod.c
1086 target/arm/usb-fw-pp5002.c
1087 #endif /* SIMULATOR */
1088 #endif /* IPOD_1G2G */
1090 #ifdef IPOD_MINI
1091 #ifndef SIMULATOR
1092 drivers/pcf50605.c
1093 target/arm/ata-as-arm.S
1094 target/arm/ata-pp5020.c
1095 target/arm/wmcodec-pp.c
1096 target/arm/i2s-pp.c
1097 target/arm/ipod/adc-ipod-pcf.c
1098 target/arm/ipod/backlight-mini1g_mini2g.c
1099 target/arm/ipod/button-mini1g.c
1100 target/arm/ipod/lcd-as-gray.S
1101 target/arm/ipod/lcd-gray.c
1102 target/arm/ipod/power-ipod.c
1103 target/arm/ipod/powermgmt-ipod-pcf.c
1104 target/arm/usb-fw-pp502x.c
1105 #endif /* SIMULATOR */
1106 #endif /* IPOD_MINI */
1108 #ifdef IPOD_MINI2G
1109 #ifndef SIMULATOR
1110 drivers/pcf50605.c
1111 target/arm/ata-as-arm.S
1112 target/arm/ata-pp5020.c
1113 target/arm/wmcodec-pp.c
1114 target/arm/i2s-pp.c
1115 target/arm/ipod/adc-ipod-pcf.c
1116 target/arm/ipod/backlight-mini1g_mini2g.c
1117 target/arm/ipod/button-clickwheel.c
1118 target/arm/ipod/lcd-as-gray.S
1119 target/arm/ipod/lcd-gray.c
1120 target/arm/ipod/power-ipod.c
1121 target/arm/ipod/powermgmt-ipod-pcf.c
1122 target/arm/usb-fw-pp502x.c
1123 #endif /* SIMULATOR */
1124 #endif /* IPOD_MINI2G */
1126 #ifdef IRIVER_IFP7XX
1127 #ifndef SIMULATOR
1128 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1129 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1130 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1131 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1132 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1133 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1134 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1135 #ifndef BOOTLOADER
1136 target/arm/pnx0101/pcm-pnx0101.c
1137 #endif /* BOOTLOADER */
1138 #endif /* SIMULATOR */
1139 #endif /* IRIVER_IFP7XX */
1141 #ifdef LOGIK_DAX
1142 #ifndef SIMULATOR
1143 drivers/nand_id.c
1144 target/arm/lcd-ssd1815.c
1145 target/arm/tcc77x/adc-tcc77x.c
1146 target/arm/tcc77x/kernel-tcc77x.c
1147 target/arm/tcc77x/powermgmt-tcc77x.c
1148 target/arm/tcc77x/system-tcc77x.c
1149 target/arm/tcc77x/timer-tcc77x.c
1150 target/arm/usb-tcc.c
1151 target/arm/tcc77x/logikdax/button-logikdax.c
1152 target/arm/tcc77x/logikdax/power-logikdax.c
1153 #ifndef BOOTLOADER
1154 target/arm/wmcodec-telechips.c
1155 target/arm/tcc77x/debug-tcc77x.c
1156 target/arm/pcm-telechips.c
1157 target/arm/tcc77x/logikdax/audio-logikdax.c
1158 #endif /* BOOTLOADER */
1159 #endif /* SIMULATOR */
1160 #endif /* LOGIK_DAX */
1162 #ifdef SANSA_M200
1163 #ifndef SIMULATOR
1164 drivers/nand_id.c
1165 target/arm/lcd-ssd1815.c
1166 target/arm/tcc77x/adc-tcc77x.c
1167 target/arm/tcc77x/kernel-tcc77x.c
1168 target/arm/tcc77x/powermgmt-tcc77x.c
1169 target/arm/tcc77x/system-tcc77x.c
1170 target/arm/tcc77x/timer-tcc77x.c
1171 target/arm/usb-tcc.c
1172 target/arm/tcc77x/m200/button-m200.c
1173 target/arm/tcc77x/m200/power-m200.c
1174 #ifndef BOOTLOADER
1175 target/arm/wmcodec-telechips.c
1176 target/arm/tcc77x/debug-tcc77x.c
1177 target/arm/pcm-telechips.c
1178 target/arm/tcc77x/m200/audio-m200.c
1179 #endif /* BOOTLOADER */
1180 #endif /* SIMULATOR */
1181 #endif /* SANSA_M200 */
1183 #ifdef SANSA_C100
1184 #ifndef SIMULATOR
1185 drivers/nand_id.c
1186 target/arm/usb-tcc.c
1187 target/arm/tcc77x/system-tcc77x.c
1188 target/arm/tcc77x/kernel-tcc77x.c
1189 target/arm/tcc77x/timer-tcc77x.c
1190 target/arm/tcc77x/adc-tcc77x.c
1191 target/arm/tcc77x/powermgmt-tcc77x.c
1192 target/arm/tcc77x/c100/lcd-S6B33B2.c
1193 target/arm/tcc77x/c100/button-c100.c
1194 target/arm/tcc77x/c100/power-c100.c
1195 #ifndef BOOTLOADER
1196 target/arm/tcc77x/debug-tcc77x.c
1197 target/arm/pcm-telechips.c
1198 target/arm/tcc77x/c100/audio-c100.c
1199 #endif /* BOOTLOADER */
1200 #endif /* SIMULATOR */
1201 #endif /* SANSA_C100 */
1203 #ifdef SANSA_CLIPV2
1204 #ifndef SIMULATOR
1205 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1206 target/arm/as3525/sansa-clip/lcd-as-clip.S
1208 target/arm/as3525/sansa-clipv2/sd-clipv2.c
1209 target/arm/as3525/sansa-clipv2/button-clip.c
1210 target/arm/as3525/sansa-clipv2/backlight-clip.c
1211 #ifndef BOOTLOADER
1212 target/arm/powermgmt-ascodec.c
1213 target/arm/as3525/sansa-clip/powermgmt-clip.c
1214 #endif /* !BOOTLOADER */
1215 #endif /* !SIMULATOR */
1216 #endif /* SANSA_CLIPV2 */
1218 #ifdef SANSA_CLIP
1219 #ifndef SIMULATOR
1220 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1221 target/arm/as3525/sansa-clip/lcd-as-clip.S
1222 target/arm/as3525/sansa-clip/button-clip.c
1223 target/arm/as3525/sansa-clip/backlight-clip.c
1224 #ifndef BOOTLOADER
1225 target/arm/powermgmt-ascodec.c
1226 target/arm/as3525/sansa-clip/powermgmt-clip.c
1227 #endif /* !BOOTLOADER */
1228 #endif /* !SIMULATOR */
1229 #endif /* SANSA_CLIP */
1231 #ifdef SANSA_E200V2
1232 #ifndef SIMULATOR
1233 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1234 target/arm/as3525/lcd-as-e200v2-fuze.S
1235 target/arm/as3525/button-e200v2-fuze.c
1236 target/arm/as3525/backlight-e200v2-fuze.c
1237 #ifndef BOOTLOADER
1238 target/arm/powermgmt-ascodec.c
1239 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1240 #endif /* !BOOTLOADER */
1241 #endif /* !SIMULATOR */
1242 #endif /* SANSA_E200V2 */
1244 #ifdef SANSA_C200V2
1245 #ifndef SIMULATOR
1246 target/arm/lcd-c200_c200v2.c
1247 target/arm/as3525/sansa-c200v2/button-c200v2.c
1248 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1249 #ifndef BOOTLOADER
1250 target/arm/as3525/powermgmt-as3525.c
1251 #endif /* !BOOTLOADER */
1252 #endif /* !SIMULATOR */
1253 #endif /* SANSA_E200V2 */
1255 #ifdef SANSA_M200V4
1256 #ifndef SIMULATOR
1257 target/arm/lcd-ssd1815.c
1258 target/arm/as3525/sansa-m200v4/button-m200v4.c
1259 #ifndef BOOTLOADER
1260 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1261 #endif /* !BOOTLOADER */
1262 #endif /* !SIMULATOR */
1263 #endif /* SANSA_M200V4 */
1265 #ifdef SANSA_FUZE
1266 #ifndef SIMULATOR
1267 target/arm/as3525/button-e200v2-fuze.c
1268 target/arm/as3525/sansa-fuze/lcd-fuze.c
1269 target/arm/as3525/lcd-as-e200v2-fuze.S
1270 target/arm/as3525/backlight-e200v2-fuze.c
1271 #ifndef BOOTLOADER
1272 target/arm/powermgmt-ascodec.c
1273 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1274 #endif /* !BOOTLOADER */
1275 #endif /* !SIMULATOR */
1276 #endif /* SANSA_FUZE */
1278 #ifdef IAUDIO_7
1279 #ifndef SIMULATOR
1280 drivers/nand_id.c
1281 drivers/pcf50606.c
1282 target/arm/usb-tcc.c
1283 target/arm/tcc77x/system-tcc77x.c
1284 target/arm/tcc77x/kernel-tcc77x.c
1285 target/arm/tcc77x/timer-tcc77x.c
1286 target/arm/tcc77x/adc-tcc77x.c
1287 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1288 target/arm/tcc77x/iaudio7/power-iaudio7.c
1289 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1290 target/arm/tcc77x/iaudio7/button-iaudio7.c
1291 target/arm/tcc77x/iaudio7/ata2501.c
1292 #ifndef BOOTLOADER
1293 target/arm/wmcodec-telechips.c
1294 target/arm/pcm-telechips.c
1295 target/arm/tcc77x/debug-tcc77x.c
1296 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1297 #endif /* BOOTLOADER */
1298 #endif /* SIMULATOR */
1299 #endif /* IAUDIO_7 */
1301 #ifdef COWON_D2
1302 #ifndef SIMULATOR
1303 drivers/nand_id.c
1304 drivers/pcf50606.c
1305 drivers/pcf50635.c
1306 drivers/tsc200x.c
1307 target/arm/lcd-as-memframe.S
1308 target/arm/tcc780x/adc-tcc780x.c
1309 target/arm/tcc780x/system-tcc780x.c
1310 target/arm/tcc780x/kernel-tcc780x.c
1311 target/arm/tcc780x/sd-tcc780x.c
1312 target/arm/tcc780x/cowond2/button-cowond2.c
1313 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1314 target/arm/tcc780x/cowond2/lcd-cowond2.c
1315 target/arm/tcc780x/cowond2/power-cowond2.c
1316 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1317 target/arm/tcc780x/cowond2/backlight-cowond2.c
1318 target/arm/usb-tcc.c
1319 target/arm/mmu-arm.S
1320 #ifndef BOOTLOADER
1321 target/arm/tcc780x/timer-tcc780x.c
1322 target/arm/wmcodec-telechips.c
1323 target/arm/tcc780x/debug-tcc780x.c
1324 target/arm/pcm-telechips.c
1325 target/arm/tcc780x/cowond2/audio-cowond2.c
1326 #endif /* BOOTLOADER */
1327 #endif /* SIMULATOR */
1328 #endif /* COWON_D2 */
1330 #ifdef CPU_S5L870X
1331 target/arm/s5l8700/system-s5l8700.c
1332 target/arm/s5l8700/mmu-s5l8700.S
1333 #ifndef SIMULATOR
1334 #ifndef BOOTLOADER
1335 target/arm/s5l8700/timer-s5l8700.c
1336 #endif /* BOOTLOADER */
1337 #endif /* SIMULATOR */
1338 #endif
1340 #ifdef MEIZU_M6SL
1341 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1342 drivers/qt1106.c
1343 #ifndef SIMULATOR
1344 #ifndef BOOTLOADER
1345 #endif /* BOOTLOADER */
1346 #endif /* SIMULATOR */
1347 #endif /* MEIZU_M6SL */
1349 #ifdef MEIZU_M6SP
1350 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1351 #ifndef SIMULATOR
1352 #ifndef BOOTLOADER
1353 #endif /* BOOTLOADER */
1354 #endif /* SIMULATOR */
1355 #endif /* MEIZU_M6SP */
1357 #ifdef MEIZU_M3
1358 target/arm/s5l8700/backlight-meizu.c
1359 target/arm/s5l8700/kernel-s5l8700.c
1360 target/arm/s5l8700/meizu-m3/lcd-m3.c
1361 drivers/qt1106.c
1362 #ifndef SIMULATOR
1363 #ifndef BOOTLOADER
1364 target/arm/s5l8700/dma-s5l8700.c
1365 target/arm/s5l8700/pcm-s5l8700.c
1366 target/arm/s5l8700/udacodec-meizu.c
1367 #endif /* BOOTLOADER */
1368 #endif /* SIMULATOR */
1369 #endif /* MEIZU_M3 */
1371 #ifdef IPOD_NANO2G
1372 #ifndef SIMULATOR
1373 drivers/audio/wm8975.c
1374 target/arm/usb-s3c6400x.c
1375 target/arm/ipod/button-clickwheel.c
1376 target/arm/s5l8700/kernel-s5l8700.c
1377 target/arm/s5l8700/wmcodec-s5l8700.c
1378 target/arm/s5l8700/pcm-s5l8700.c
1379 target/arm/s5l8700/adc-s5l8700.c
1380 target/arm/s5l8700/debug-s5l8700.c
1381 target/arm/s5l8700/dma-s5l8700.c
1382 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1383 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1384 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1385 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1386 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1387 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1388 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1389 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1390 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1391 #endif
1392 #endif
1394 #ifndef SIMULATOR
1395 #if CONFIG_CPU == JZ4732
1396 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1397 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1398 target/mips/ingenic_jz47xx/debug-jz4740.c
1399 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1400 target/mips/ingenic_jz47xx/kernel-jz4740.c
1401 target/mips/ingenic_jz47xx/i2c-jz4740.c
1402 target/mips/ingenic_jz47xx/lcd-jz4740.c
1403 target/mips/ingenic_jz47xx/system-jz4740.c
1404 target/mips/ingenic_jz47xx/usb-jz4740.c
1405 target/mips/ingenic_jz47xx/timer-jz4740.c
1406 #ifndef BOOTLOADER
1407 target/mips/ingenic_jz47xx/codec-jz4740.c
1408 target/mips/ingenic_jz47xx/pcm-jz4740.c
1409 #endif /* BOOTLOADER */
1410 drivers/nand_id.c
1411 #endif /* CONFIG_CPU == JZ4732 */
1413 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1414 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1415 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1416 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1417 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1418 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1419 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1421 #ifdef ONDA_VX767
1422 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1423 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1424 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1425 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1426 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1427 #endif /* ONDA_VX767 */
1429 #if defined(LYRE_PROTO1)
1430 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1431 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1432 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1433 target/arm/at91sam/lyre_proto1/crt0.S
1434 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1435 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1436 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1437 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1438 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1439 #endif
1440 #endif /* SIMULATOR */
1442 #if defined(MINI2440)
1443 #ifndef SIMULATOR
1444 target/arm/lcd-as-memframe.S
1445 target/arm/mmu-arm.S
1446 target/arm/s3c2440/debug-s3c2440.c
1447 target/arm/s3c2440/dma-s3c2440.c
1448 target/arm/s3c2440/kernel-s3c2440.c
1449 target/arm/s3c2440/lcd-s3c2440.c
1450 target/arm/s3c2440/sd-s3c2440.c
1451 target/arm/s3c2440/system-s3c2440.c
1452 target/arm/s3c2440/uart-s3c2440.c
1453 target/arm/s3c2440/adc-s3c2440.c
1454 target/arm/s3c2440/i2c-s3c2440.c
1455 target/arm/s3c2440/mini2440/backlight-mini2440.c
1456 target/arm/s3c2440/mini2440/button-mini2440.c
1457 target/arm/s3c2440/mini2440/led-mini2440.c
1458 target/arm/s3c2440/mini2440/power-mini2440.c
1459 target/arm/s3c2440/mini2440/touchscreen-mini2440.c
1460 #ifndef BOOTLOADER
1461 target/arm/s3c2440/mini2440/powermgmt-mini2440.c
1462 target/arm/s3c2440/mini2440/pcm-mini2440.c
1463 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
1464 #endif
1465 #endif /* SIMULATOR */
1466 #endif /* MINI2440 */
1468 #ifdef SAMSUNG_YH820
1469 #ifndef SIMULATOR
1470 target/arm/ata-as-arm.S
1471 target/arm/ata-pp5020.c
1472 target/arm/adc-pp5020.c
1473 target/arm/i2s-pp.c
1474 target/arm/usb-fw-pp502x.c
1475 target/arm/samsung/akcodec-yh82x_yh92x.c
1476 target/arm/samsung/button-yh82x_yh92x.c
1477 target/arm/samsung/power-yh82x_yh92x.c
1478 target/arm/samsung/yh820/backlight-yh820.c
1479 target/arm/samsung/yh820/lcd-yh820.c
1480 target/arm/samsung/yh820/lcd-as-yh820.S
1481 target/arm/samsung/yh820/powermgmt-yh820.c
1482 #endif /* SIMULATOR */
1483 #endif /* SAMSUNG_YH820 */
1485 #ifdef SAMSUNG_YH920
1486 #ifndef SIMULATOR
1487 target/arm/ata-as-arm.S
1488 target/arm/ata-pp5020.c
1489 target/arm/adc-pp5020.c
1490 target/arm/i2s-pp.c
1491 target/arm/usb-fw-pp502x.c
1492 target/arm/samsung/akcodec-yh82x_yh92x.c
1493 target/arm/samsung/button-yh82x_yh92x.c
1494 target/arm/samsung/power-yh82x_yh92x.c
1495 target/arm/samsung/yh920/backlight-yh920.c
1496 target/arm/samsung/yh920/lcd-yh920.c
1497 target/arm/samsung/yh920/lcd-as-yh920.S
1498 target/arm/samsung/yh920/powermgmt-yh920.c
1499 #endif /* SIMULATOR */
1500 #endif /* SAMSUNG_YH920 */
1502 #ifdef SAMSUNG_YH925
1503 #ifndef SIMULATOR
1504 target/arm/ata-as-arm.S
1505 target/arm/ata-pp5020.c
1506 target/arm/adc-pp5020.c
1507 target/arm/i2s-pp.c
1508 target/arm/usb-fw-pp502x.c
1509 target/arm/samsung/akcodec-yh82x_yh92x.c
1510 target/arm/samsung/button-yh82x_yh92x.c
1511 target/arm/samsung/power-yh82x_yh92x.c
1512 target/arm/samsung/yh925/backlight-yh925.c
1513 target/arm/samsung/yh925/lcd-yh925.c
1514 target/arm/samsung/yh925/lcd-as-yh925.S
1515 target/arm/samsung/yh925/powermgmt-yh925.c
1516 #endif /* SIMULATOR */
1517 #endif /* SAMSUNG_YH925 */
1519 #ifdef SAMSUNG_YPS3
1520 /* TODO: currently including all files for the bootloader DFU test program */
1521 target/arm/s5l8700/adc-s5l8700.c
1522 target/arm/s5l8700/i2c-s5l8700.c
1523 target/arm/s5l8700/kernel-s5l8700.c
1524 target/arm/s5l8700/timer-s5l8700.c
1525 target/arm/s5l8700/wmcodec-s5l8700.c
1526 target/arm/s5l8700/yps3/button-yps3.c
1527 target/arm/s5l8700/yps3/lcd-yps3.c
1528 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1529 target/arm/s5l8700/yps3/backlight-yps3.c
1530 target/arm/s5l8700/yps3/nand-yps3.c
1531 target/arm/s5l8700/yps3/power-yps3.c
1532 #endif /* SAMSUNG_YPS3 */