Minor quickscreen and pitchscreen fixes
[kugel-rb.git] / firmware / SOURCES
blobc08d8f2d665dd9137520f0fa93c99a7c57a0517e
1 ata_idle_notify.c
2 events.c
3 backlight.c
4 buffer.c
5 powermgmt.c
6 system.c
7 usb.c
8 #ifdef ROCKBOX_HAS_LOGF
9 logf.c
10 #endif /* ROCKBOX_HAS_LOGF */
11 kernel.c
12 #ifndef SIMULATOR
13 #ifdef RB_PROFILE
14 profile.c
15 #endif /* RB_PROFILE */
16 rolo.c
17 thread.c
18 timer.c
19 #endif /* SIMULATOR */
20 panic.c
21 debug.c
23 /* Common */
24 common/atoi.c
25 common/crc32.c
26 #ifdef MI4_FORMAT
27 common/crc32-mi4.c
28 #endif
29 common/ctype.c
30 #ifndef SIMULATOR
31 common/dir_uncached.c
32 common/file.c
33 #endif /* SIMULATOR */
34 #ifdef HAVE_DIRCACHE
35 common/dircache.c
36 #endif /* HAVE_DIRCACHE */
37 common/disk.c
38 #if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
39 common/errno.c
40 #endif /* !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) */
41 common/memcmp.c
42 common/memchr.c
43 common/qsort.c
44 common/random.c
45 common/sprintf.c
46 common/strcasecmp.c
47 common/strcasestr.c
48 common/strcat.c
49 common/strchr.c
50 common/strcmp.c
51 common/strcpy.c
52 common/strncmp.c
53 common/strncpy.c
54 common/strrchr.c
55 common/strtok.c
56 common/strstr.c
57 common/structec.c
58 common/timefuncs.c
59 common/unicode.c
61 /* Display */
62 scroll_engine.c
64 #ifdef HAVE_LCD_CHARCELLS
65 drivers/lcd-charcell.c
66 drivers/lcd-charset-player.c
67 #endif /* HAVE_LCD_CHARCELLS */
69 #ifdef HAVE_LCD_BITMAP
70 arabjoin.c
71 bidi.c
72 font_cache.c
73 font.c
74 hangul.c
75 lru.c
76 #if LCD_DEPTH == 1
77 drivers/lcd-1bit-vert.c
78 #elif LCD_DEPTH == 2
79 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
80 drivers/lcd-2bit-horz.c
81 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
82 drivers/lcd-2bit-vert.c
83 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
84 drivers/lcd-2bit-vi.c
85 #endif /* LCD_PIXELFORMAT */
86 #elif LCD_DEPTH == 16
87 drivers/lcd-16bit.c
88 #endif /* LCD_DEPTH */
89 #endif /* HAVE_LCD_BITMAP */
91 #ifdef HAVE_REMOTE_LCD
92 #if LCD_REMOTE_DEPTH == 1
93 drivers/lcd-remote-1bit-v.c
94 #elif LCD_REMOTE_DEPTH == 2
95 drivers/lcd-remote-2bit-vi.c
96 #endif /* LCD_REMOTE_DEPTH */
97 #endif /* HAVE_REMOTE_LCD */
99 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
100     || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
101 backlight-sw-fading.c
102 #endif /* CONFIG_BACKLIGHT_FADING */
104 /* Misc. */
105 drivers/led.c
106 drivers/button.c
107 #ifndef SIMULATOR
108 #ifdef HAVE_DAC3550A
109 drivers/dac.c
110 #endif
111 drivers/serial.c
112 #endif /* SIMULATOR */
115 /* Storage */
116 #ifndef SIMULATOR
117 #if (CONFIG_STORAGE & STORAGE_MMC)
118 drivers/ata_mmc.c
119 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
120 drivers/ata_flash.c
121 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
122 target/arm/ata-nand-telechips.c
123 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
124 target/arm/s5l8700/ata-nand-s5l8700.c
125 #elif (CONFIG_STORAGE & STORAGE_ATA)
126 drivers/ata.c
127 #elif (CONFIG_STORAGE & STORAGE_RAMDISK)
128 drivers/ramdisk.c
129 #endif /* CONFIG_STORAGE */
130 drivers/fat.c
131 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
132 hotswap.c
133 #endif
134 #endif /* SIMULATOR */
136 /* EEPROM */
137 #ifdef HAVE_EEPROM
138 drivers/eeprom_24cxx.c
139 #ifdef HAVE_EEPROM_SETTINGS
140 eeprom_settings.c
141 #endif /* HAVE_EEPROM_SETTINGS */
142 #endif /* HAVE_EEPROM */
144 /* RTC */
145 #ifndef SIMULATOR
146 #if (CONFIG_RTC == RTC_M41ST84W)
147 drivers/rtc/rtc_m41st84w.c
148 #elif (CONFIG_RTC == RTC_PCF50606)
149 drivers/rtc/rtc_pcf50606.c
150 #elif (CONFIG_RTC == RTC_PCF50605)
151 drivers/rtc/rtc_pcf50605.c
152 #elif (CONFIG_RTC == RTC_E8564)
153 drivers/rtc/rtc_e8564.c
154 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
155 drivers/rtc/rtc_ds1339_ds3231.c
156 #elif (CONFIG_RTC == RTC_S3C2440)
157 drivers/rtc/rtc_s3c2440.c
158 #elif (CONFIG_RTC == RTC_AS3514)
159 drivers/rtc/rtc_as3514.c
160 #elif (CONFIG_RTC == RTC_RX5X348AB)
161 drivers/rtc/rtc_rx5x348ab.c
162 #elif (CONFIG_RTC == RTC_MR100)
163 drivers/rtc/rtc_mr100.c
164 #elif (CONFIG_RTC == RTC_MC13783)
165 drivers/rtc/rtc_mc13783.c
166 #elif (CONFIG_RTC == RTC_TCC77X)
167 drivers/rtc/rtc_tcc77x.c
168 #elif (CONFIG_RTC == RTC_JZ47XX)
169 drivers/rtc/rtc_jz4740.c
170 #endif /* (CONFIG_RTC == RTC_) */
171 #endif /* SIMULATOR */
173 /* Tuner */
174 #if CONFIG_TUNER
175 tuner.c
176 #ifndef SIMULATOR
177 #if (CONFIG_TUNER & LV24020LP)
178 drivers/tuner/lv24020lp.c
179 #endif /* (CONFIG_TUNER & LV24020LP) */
180 #if (CONFIG_TUNER & S1A0903X01)
181 drivers/fmradio.c
182 drivers/tuner/s1a0903x01.c
183 #endif /* (CONFIG_TUNER & S1A0903X01) */
184 #if (CONFIG_TUNER & TEA5767)
185 drivers/tuner/tea5767.c
186 #endif /* (CONFIG_TUNER & TEA5767) */
187 #if (CONFIG_TUNER & SI4700)
188 drivers/tuner/si4700.c
189 #endif /* (CONFIG_TUNER & SI4700) */
190 #endif /*SIMULATOR */
191 #endif /* CONFIG_TUNER */
193 /* Sound */
194 #if CONFIG_CODEC != SWCODEC
195 mp3_playback.c
196 #endif /* CONFIG_CODEC != SWCODEC */
197 sound.c
199 #if CONFIG_CODEC == SWCODEC
201 #ifndef BOOTLOADER
202 general.c
203 pcm_sampr.c
204 pcm.c
205 #ifdef HAVE_RECORDING
206 enc_base.c
207 #endif /* HAVE_RECORDING */
208 #endif /* BOOTLOADER */
210 #else  /* !SWCODEC */
212 #ifndef BOOTLOADER
213 #ifndef SIMULATOR
214 drivers/mas.c
215 #endif /* SIMULATOR */
216 #endif /* BOOTLOADER */
218 #endif /* SWCODEC */
220 /* Audio codec */
221 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
222 #if defined(HAVE_UDA1380)
223 drivers/audio/uda1380.c
224 #elif defined(HAVE_WM8751)
225 drivers/audio/wm8751.c
226 #elif defined(HAVE_WM8978)
227 drivers/audio/wm8978.c
228 #elif defined(HAVE_WM8975)
229 drivers/audio/wm8975.c
230 #elif defined(HAVE_WM8985)
231 drivers/audio/wm8985.c
232 #elif defined(HAVE_WM8758)
233 drivers/audio/wm8758.c
234 #elif defined(HAVE_WM8711) \
235    || defined(HAVE_WM8721) \
236    || defined(HAVE_WM8731)
237 drivers/audio/wm8731.c
238 #elif defined(HAVE_AS3514)
239 drivers/audio/as3514.c
240 #elif defined(HAVE_TLV320)
241 drivers/audio/tlv320.c
242 #elif defined(HAVE_MAS35XX)
243 drivers/audio/mas35xx.c
244 #endif /* defined(HAVE_*) */
245 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
247 /* USB Stack */
248 #if !defined(SIMULATOR)
249 #ifdef HAVE_USBSTACK
250 usbstack/usb_core.c
251 usbstack/usb_storage.c
252 usbstack/usb_serial.c
253 usbstack/usb_charging_only.c
254 #if CONFIG_USBOTG == USBOTG_ARC
255 target/arm/usb-drv-arc.c
256 #elif CONFIG_USBOTG == USBOTG_ISP1583
257 drivers/isp1583.c
258 #endif
259 #else /* !defined(HAVE_USBSTACK) */
260 #if CONFIG_USBOTG == USBOTG_ISP1362      
261 drivers/isp1362.c
262 #elif CONFIG_USBOTG == USBOTG_M5636      
263 drivers/m5636.c
264 #endif
265 #endif /* !defined(HAVE_USBSTACK) */
266 #endif /* !defined(SIMULATOR) */
268 /* Other Random Hardware */
269 #ifdef HAVE_TSC2100
270 #if !defined(SIMULATOR)
271 drivers/tsc2100.c
272 drivers/audio/tsc2100.c
273 #endif /* !SIMULATOR */
274 #endif
276 /* CPU Specific - By class then particular chip if applicable */
277 #if defined(CPU_SH)
279 #ifndef SIMULATOR
280 drivers/i2c.c
281 target/sh/adc-sh.c
282 target/sh/bitswap.S
283 target/sh/crt0.S
284 target/sh/kernel-sh.c
285 target/sh/memcpy-sh.S
286 target/sh/memmove-sh.S
287 target/sh/memset-sh.S
288 target/sh/strlen-sh.S
289 target/sh/system-sh.c
290 target/sh/archos/descramble.S
291 #endif /* SIMULATOR */
293 #elif defined(CPU_COLDFIRE)
295 #ifndef SIMULATOR
296 target/coldfire/crt0.S
297 #ifdef HAVE_PRIORITY_SCHEDULING
298 common/ffs.c
299 target/coldfire/ffs-coldfire.S
300 #endif
301 target/coldfire/memcpy-coldfire.S
302 target/coldfire/memmove-coldfire.S
303 target/coldfire/memset-coldfire.S
304 target/coldfire/strlen-coldfire.S
305 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
306  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
307 target/coldfire/memset16-coldfire.S
308 #endif
309 target/coldfire/kernel-coldfire.c
310 target/coldfire/system-coldfire.c
311 #ifndef BOOTLOADER
312 target/coldfire/pcm-coldfire.c
313 #endif /* BOOTLOADER */
314 #if CONFIG_I2C == I2C_COLDFIRE
315 target/coldfire/i2c-coldfire.c
316 #endif /* CONFIG_I2C == I2C_COLDFIRE */
317 #endif /* SIMULATOR */
319 #elif defined(CPU_PP) || defined(CPU_ARM)
320 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
321 target/arm/memcpy-arm.S
322 target/arm/memmove-arm.S
323 common/strlen.c
324 #ifndef SIMULATOR
325 target/arm/memset-arm.S
326 target/arm/memset16-arm.S
327 #ifdef HAVE_PRIORITY_SCHEDULING
328 target/arm/ffs-arm.S
329 #endif
330 target/arm/system-arm.c
331 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
332 target/arm/i2c-pp.c
333 #elif CONFIG_I2C == I2C_PNX0101
334 target/arm/pnx0101/i2c-pnx0101.c
335 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
336 target/arm/i2c-telechips.c
337 #elif CONFIG_I2C == I2C_S3C2440
338 /* no i2c driver yet */
339 #endif
341 #if CONFIG_CPU == PNX0101
342 target/arm/pnx0101/kernel-pnx0101.c
343 target/arm/pnx0101/system-pnx0101.c
344 #endif
346 #if CONFIG_CPU == AS3525
347 target/arm/as3525/system-as3525.c
348 target/arm/as3525/kernel-as3525.c
349 target/arm/as3525/ata_sd_as3525.c
350 target/arm/as3525/power-as3525.c
351 target/arm/as3525/usb-as3525.c
352 target/arm/as3525/dma-pl081.c
353 target/arm/as3525/ascodec-as3525.c
354 #ifndef BOOTLOADER
355 drivers/generic_i2c.c
356 target/arm/adc-as3514.c
357 target/arm/as3525/audio-as3525.c
358 target/arm/as3525/debug-as3525.c
359 target/arm/as3525/fmradio-i2c-as3525.c
360 target/arm/as3525/i2c-as3525.c
361 target/arm/as3525/i2s-as3525.c
362 target/arm/as3525/pcm-as3525.c
363 #endif /* BOOTLOADER */
364 #endif /* CONFIG_CPU == AS3525 */
366 #if defined(CPU_PP)
367 target/arm/kernel-pp.c
368 #if CONFIG_CPU == PP5002
369 target/arm/system-pp5002.c
370 #elif defined CPU_PP502x
371 target/arm/system-pp502x.c
372 #endif
373 #ifdef BOOTLOADER
374 target/arm/crt0-pp-bl.S
375 #else
376 target/arm/pcm-pp.c
377 #if !defined(SANSA_E200) && !defined(SANSA_C200)
378 target/arm/audio-pp.c
379 #endif /* SANSA_E200 */
380 target/arm/crt0-pp.S
381 #endif
382 #elif CONFIG_CPU == PNX0101
383 target/arm/pnx0101/crt0-pnx0101.S
384 #elif CONFIG_CPU==DM320
385 target/arm/tms320dm320/crt0.S
386 #elif CONFIG_CPU==S3C2440
387 target/arm/s3c2440/crt0.S
388 #elif defined(CPU_TCC77X)
389 target/arm/tcc77x/crt0.S
390 #elif defined(CPU_TCC780X)
391 target/arm/tcc780x/crt0.S
392 #elif CONFIG_CPU==IMX31L
393 target/arm/imx31/crt0.S
394 #elif CONFIG_CPU==S5L8700
395 target/arm/s5l8700/crt0.S
396 #elif defined(CPU_ARM)
397 target/arm/crt0.S
398 #endif /* defined(CPU_*) */
399 #endif /* SIMULATOR */
401 #elif defined(CPU_MIPS)
402 #undef mips
403 /*target/mips/strlen.S*/
404 common/memmove.c
405 common/memset16.c
406 common/strlen.c
407 target/mips/ffs-mips.S
408 target/mips/memcpy-mips.S
409 target/mips/memset-mips.S
410 target/mips/mmu-mips.c
411 #if CONFIG_CPU==JZ4732
412 target/mips/ingenic_jz47xx/crt0.S
413 #endif /* CONFIG_CPU == JZ4732 */
415 #else
417 #ifdef HAVE_PRIORITY_SCHEDULING
418 common/ffs.c
419 #endif
420 common/memcpy.c
421 common/memmove.c
422 common/memset.c
423 common/memset16.c
424 common/strlen.c
425 #ifndef SIMULATOR
426 crt0.S
427 drivers/i2c.c
428 #endif /* SIMULATOR */
430 #endif /* defined(CPU_*) */
432 #ifdef ARCHOS_PLAYER
433 #ifndef SIMULATOR
434 target/sh/archos/ata-archos.c
435 target/sh/archos/ata-as-archos.S
436 target/sh/archos/player/button-player.c
437 target/sh/archos/player/hwcompat-player.c
438 target/sh/archos/player/lcd-as-player.S
439 target/sh/archos/player/lcd-player.c
440 target/sh/archos/player/power-player.c
441 target/sh/archos/player/powermgmt-player.c
442 target/sh/archos/player/usb-player.c
443 #endif /* SIMULATOR */
444 #endif /* ARCHOS_PLAYER */
446 #ifdef ARCHOS_RECORDER
447 #ifndef SIMULATOR
448 target/sh/archos/ata-archos.c
449 target/sh/archos/ata-as-archos.S
450 target/sh/archos/lcd-archos-bitmap.c
451 target/sh/archos/lcd-as-archos-bitmap.S   
452 target/sh/archos/recorder/button-recorder.c
453 target/sh/archos/recorder/power-recorder.c
454 target/sh/archos/recorder/powermgmt-recorder.c
455 target/sh/archos/recorder/usb-recorder.c
456 #endif /* SIMULATOR */
457 #endif /* ARCHOS_RECORDER */
459 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
460 #ifndef SIMULATOR
461 target/sh/archos/ata-archos.c
462 target/sh/archos/ata-as-archos.S
463 target/sh/archos/lcd-archos-bitmap.c
464 target/sh/archos/lcd-as-archos-bitmap.S
465 target/sh/archos/fm_v2/button-fm_v2.c
466 target/sh/archos/fm_v2/power-fm_v2.c
467 target/sh/archos/fm_v2/powermgmt-fm_v2.c
468 target/sh/archos/fm_v2/usb-fm_v2.c
469 #endif /* SIMULATOR */
470 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
472 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
473 #ifndef SIMULATOR
474 target/sh/archos/lcd-archos-bitmap.c
475 target/sh/archos/lcd-as-archos-bitmap.S
476 target/sh/archos/ondio/button-ondio.c
477 target/sh/archos/ondio/power-ondio.c
478 target/sh/archos/ondio/powermgmt-ondio.c
479 target/sh/archos/ondio/usb-ondio.c
480 #if (CONFIG_TUNER & TEA5767)
481 target/sh/archos/ondio/fmradio_i2c-ondio.c
482 #endif
483 #endif /* SIMULATOR */
484 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
486 #ifdef SANSA_E200
487 #ifndef SIMULATOR
488 target/arm/adc-as3514.c
489 target/arm/ascodec-pp.c
490 target/arm/ata-sd-pp.c
491 target/arm/lcd-as-memframe.S
492 target/arm/powermgmt-ascodec.c
493 target/arm/i2s-pp.c
494 target/arm/usb-fw-pp502x.c
495 target/arm/sandisk/backlight-c200_e200.c
496 target/arm/sandisk/power-c200_e200.c
497 target/arm/sandisk/sansa-e200/lcd-e200.c
498 target/arm/sandisk/sansa-e200/button-e200.c
499 target/arm/sandisk/sansa-e200/powermgmt-e200.c
500 #ifndef BOOTLOADER
501 target/arm/sandisk/audio-c200_e200.c
502 #endif /* BOOTLOADER */
503 #endif /* SIMULATOR */
504 #endif /* SANSA_E200 */
506 #ifdef SANSA_C200
507 #ifndef SIMULATOR
508 target/arm/adc-as3514.c
509 target/arm/ascodec-pp.c
510 target/arm/ata-sd-pp.c
511 target/arm/i2s-pp.c
512 target/arm/powermgmt-ascodec.c
513 target/arm/usb-fw-pp502x.c
514 target/arm/sandisk/backlight-c200_e200.c
515 target/arm/sandisk/power-c200_e200.c
516 target/arm/sandisk/sansa-c200/lcd-c200.c
517 target/arm/sandisk/sansa-c200/lcd-as-c200.S
518 target/arm/sandisk/sansa-c200/button-c200.c
519 target/arm/sandisk/sansa-c200/powermgmt-c200.c
520 #ifndef BOOTLOADER
521 target/arm/sandisk/audio-c200_e200.c
522 #endif /* BOOTLOADER */
523 #endif /* SIMULATOR */
524 #endif /* SANSA_C200 */
526 #ifdef PHILIPS_SA9200
527 #ifndef SIMULATOR
528 target/arm/ata-sd-pp.c
529 target/arm/philips/sa9200/lcd-sa9200.c
530 target/arm/adc-as3514.c
531 target/arm/ascodec-pp.c
532 target/arm/philips/sa9200/backlight-sa9200.c
533 target/arm/usb-fw-pp502x.c
534 target/arm/philips/sa9200/button-sa9200.c
535 target/arm/philips/sa9200/power-sa9200.c
536 target/arm/philips/sa9200/powermgmt-sa9200.c
537 target/arm/i2s-pp.c
538 #endif /* SIMULATOR */
539 #endif /* PHILIPS_SA9200 */
541 #ifdef PHILIPS_HDD1630
542 #ifndef SIMULATOR
543 #ifndef BOOTLOADER
544 drivers/synaptics-mep.c
545 #endif /* BOOTLOADER */
546 target/arm/ata-as-arm.S
547 target/arm/ata-pp5020.c
548 target/arm/wmcodec-pp.c
549 target/arm/i2s-pp.c
550 target/arm/adc-pp5020.c
551 target/arm/philips/hdd1630/backlight-hdd1630.c
552 target/arm/philips/hdd1630/button-hdd1630.c
553 target/arm/philips/hdd1630/lcd-hdd1630.c
554 target/arm/philips/hdd1630/power-hdd1630.c
555 target/arm/philips/hdd1630/powermgmt-hdd1630.c
556 target/arm/usb-fw-pp502x.c
557 #endif /* SIMULATOR */
558 #endif /* PHILIPS_HDD1630 */
560 #ifdef IAUDIO_X5
561 #ifndef SIMULATOR
562 target/coldfire/ata-as-coldfire.S
563 target/coldfire/pcf50606-coldfire.c
564 target/coldfire/iaudio/adc-iaudio.c
565 target/coldfire/iaudio/ata-iaudio.c
566 target/coldfire/iaudio/lcd-remote-as-iaudio.S
567 target/coldfire/iaudio/lcd-remote-iaudio.c
568 target/coldfire/iaudio/pcf50606-iaudio.c
569 target/coldfire/iaudio/powermgmt-iaudio.c
570 target/coldfire/iaudio/system-iaudio.c
571 target/coldfire/iaudio/usb-iaudio.c
572 target/coldfire/iaudio/x5/backlight-x5.c
573 target/coldfire/iaudio/x5/button-x5.c
574 target/coldfire/iaudio/x5/ds2411-x5.c
575 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
576 target/coldfire/iaudio/x5/lcd-as-x5.S
577 target/coldfire/iaudio/x5/lcd-x5.c
578 target/coldfire/iaudio/x5/m5636-x5.c
579 target/coldfire/iaudio/x5/power-x5.c
580 #ifndef BOOTLOADER
581 target/coldfire/iaudio/x5/audio-x5.c
582 #endif
583 #endif /* SIMULATOR */
584 #endif /* IAUDIO_X5 */
586 #ifdef IAUDIO_M5
587 #ifndef SIMULATOR
588 target/coldfire/ata-as-coldfire.S
589 target/coldfire/pcf50606-coldfire.c
590 target/coldfire/iaudio/adc-iaudio.c
591 target/coldfire/iaudio/ata-iaudio.c
592 target/coldfire/iaudio/lcd-remote-as-iaudio.S
593 target/coldfire/iaudio/lcd-remote-iaudio.c
594 target/coldfire/iaudio/m5/backlight-m5.c
595 target/coldfire/iaudio/m5/button-m5.c
596 target/coldfire/iaudio/m5/lcd-as-m5.S
597 target/coldfire/iaudio/m5/lcd-m5.c
598 target/coldfire/iaudio/m5/power-m5.c
599 target/coldfire/iaudio/pcf50606-iaudio.c
600 target/coldfire/iaudio/powermgmt-iaudio.c
601 target/coldfire/iaudio/system-iaudio.c
602 target/coldfire/iaudio/usb-iaudio.c
603 #ifndef BOOTLOADER
604 target/coldfire/iaudio/m5/audio-m5.c
605 #endif
606 #endif /* SIMULATOR */
607 #endif /* IAUDIO_M5 */
609 #ifdef IAUDIO_M3
610 #ifndef SIMULATOR
611 target/coldfire/ata-as-coldfire.S
612 target/coldfire/iaudio/m3/adc-m3.c
613 target/coldfire/iaudio/m3/ata-m3.c
614 target/coldfire/iaudio/m3/backlight-m3.c
615 target/coldfire/iaudio/m3/button-m3.c
616 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
617 target/coldfire/iaudio/m3/lcd-m3.c
618 target/coldfire/iaudio/m3/lcd-as-m3.S
619 target/coldfire/iaudio/m3/power-m3.c
620 target/coldfire/iaudio/m3/powermgmt-m3.c
621 target/coldfire/iaudio/m3/system-m3.c
622 target/coldfire/iaudio/m3/usb-m3.c
623 #ifndef BOOTLOADER
624 target/coldfire/iaudio/m3/audio-m3.c
625 #endif
626 #endif /* SIMULATOR */
627 #endif /* IAUDIO_M3 */
629 #ifdef IRIVER_IFP7XX_SERIES
630 #ifdef STUB
631 ifp_usb_serial.c
632 common/sscanf.c
633 #endif /* STUB */
634 #endif /* IRIVER_IFP7XX_SERIES */
636 #ifdef IRIVER_H300_SERIES
637 #ifndef SIMULATOR
638 target/coldfire/ata-as-coldfire.S
639 target/coldfire/pcf50606-coldfire.c
640 target/coldfire/iriver/ata-iriver.c
641 target/coldfire/iriver/lcd-remote-iriver.c
642 target/coldfire/iriver/lcd-remote-as-iriver.S
643 target/coldfire/iriver/system-iriver.c
644 target/coldfire/iriver/fmradio_i2c-iriver.c
645 target/coldfire/iriver/h300/sw_i2c-h300.c
646 target/coldfire/iriver/h300/adc-h300.c
647 target/coldfire/iriver/h300/backlight-h300.c
648 target/coldfire/iriver/h300/button-h300.c
649 target/coldfire/iriver/h300/pcf50606-h300.c
650 target/coldfire/iriver/h300/lcd-as-h300.S
651 target/coldfire/iriver/h300/lcd-h300.c
652 target/coldfire/iriver/h300/power-h300.c
653 target/coldfire/iriver/h300/powermgmt-h300.c
654 target/coldfire/iriver/h300/usb-h300.c
655 #ifndef BOOTLOADER
656 target/coldfire/iriver/audio-iriver.c
657 #endif
658 #endif /* SIMULATOR */
659 #endif /* IRIVER_H300_SERIES */
661 #ifdef IRIVER_H100_SERIES
662 #ifndef SIMULATOR
663 drivers/sw_i2c.c
664 target/coldfire/ata-as-coldfire.S
665 target/coldfire/iriver/ata-iriver.c
666 target/coldfire/iriver/lcd-remote-iriver.c
667 target/coldfire/iriver/lcd-remote-as-iriver.S
668 target/coldfire/iriver/system-iriver.c
669 target/coldfire/iriver/fmradio_i2c-iriver.c
670 target/coldfire/iriver/h100/adc-h100.c
671 target/coldfire/iriver/h100/backlight-h100.c
672 target/coldfire/iriver/h100/button-h100.c
673 target/coldfire/iriver/h100/lcd-as-h100.S
674 target/coldfire/iriver/h100/lcd-h100.c
675 target/coldfire/iriver/h100/power-h100.c
676 target/coldfire/iriver/h100/powermgmt-h100.c
677 #ifndef BOOTLOADER
678 target/coldfire/iriver/audio-iriver.c
679 target/coldfire/iriver/h100/spdif-h100.c
680 #endif
681 target/coldfire/iriver/h100/usb-h100.c
682 #endif /* SIMULATOR */
683 #endif /* IRIVER_H100_SERIES */
685 #ifdef IRIVER_H10
686 #ifndef SIMULATOR
687 target/arm/ata-as-arm.S
688 target/arm/ata-pp5020.c
689 target/arm/wmcodec-pp.c
690 target/arm/i2s-pp.c
691 target/arm/adc-pp5020.c
692 target/arm/iriver/h10/backlight-h10.c
693 target/arm/iriver/h10/button-h10.c
694 target/arm/iriver/h10/fmradio_i2c-h10.c
695 target/arm/iriver/h10/lcd-h10_20gb.c
696 target/arm/iriver/h10/lcd-as-h10.S
697 target/arm/iriver/h10/power-h10.c
698 target/arm/iriver/h10/powermgmt-h10.c
699 target/arm/usb-fw-pp502x.c
700 #endif /* SIMULATOR */
701 #endif /* IRIVER_H10 */
703 #ifdef IRIVER_H10_5GB
704 #ifndef SIMULATOR
705 target/arm/ata-as-arm.S
706 target/arm/ata-pp5020.c
707 target/arm/wmcodec-pp.c
708 target/arm/i2s-pp.c
709 target/arm/adc-pp5020.c
710 target/arm/iriver/h10/backlight-h10.c
711 target/arm/iriver/h10/button-h10.c
712 target/arm/iriver/h10/fmradio_i2c-h10.c
713 target/arm/iriver/h10/lcd-h10_5gb.c
714 target/arm/iriver/h10/power-h10.c
715 target/arm/iriver/h10/powermgmt-h10.c
716 target/arm/usb-fw-pp502x.c
717 #endif /* SIMULATOR */
718 #endif /* IRIVER_H10_5GB */
720 #ifdef GIGABEAT_F
721 #ifndef SIMULATOR
722 target/arm/lcd-as-memframe.S
723 target/arm/mmu-arm.c
724 target/arm/s3c2440/debug-s3c2440.c
725 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
726 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
727 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
728 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
729 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
730 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
731 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
732 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
733 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
734 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
735 #ifndef BOOTLOADER
736 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
737 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
738 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
739 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
740 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
741 #endif
742 #endif /* SIMULATOR */
743 #endif /* GIGABEAT_F */
745 #ifdef GIGABEAT_S
746 #ifndef SIMULATOR
747 target/arm/lcd-as-memframe.S
748 target/arm/mmu-arm.c
749 target/arm/imx31/debug-imx31.c
750 target/arm/imx31/rolo_restart.S
751 target/arm/imx31/gigabeat-s/adc-imx31.c
752 target/arm/imx31/gigabeat-s/ata-imx31.c
753 target/arm/imx31/gigabeat-s/avic-imx31.c
754 target/arm/imx31/gigabeat-s/backlight-imx31.c
755 target/arm/imx31/gigabeat-s/button-imx31.c
756 target/arm/imx31/gigabeat-s/clkctl-imx31.c
757 target/arm/imx31/gigabeat-s/dma_start.c
758 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
759 target/arm/imx31/gigabeat-s/gpio-imx31.c
760 target/arm/imx31/gigabeat-s/kernel-imx31.c
761 target/arm/imx31/gigabeat-s/i2c-imx31.c
762 target/arm/imx31/gigabeat-s/i2s-imx31.c
763 target/arm/imx31/gigabeat-s/lcd-imx31.c
764 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
765 target/arm/imx31/gigabeat-s/mc13783-imx31.c
766 target/arm/imx31/gigabeat-s/mmu-imx31.c
767 target/arm/imx31/gigabeat-s/power-imx31.c
768 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
769 target/arm/imx31/gigabeat-s/spi-imx31.c
770 target/arm/imx31/gigabeat-s/system-imx31.c
771 target/arm/imx31/gigabeat-s/usb-imx31.c
772 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
773 #ifndef BOOTLOADER
774 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
775 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
776 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
777 target/arm/imx31/gigabeat-s/pcm-imx31.c
778 target/arm/imx31/gigabeat-s/timer-imx31.c
779 #endif
780 #endif /* SIMULATOR */
781 #endif /* GIGABEAT_S */
783 #if CONFIG_CPU == DM320
784 target/arm/tms320dm320/debug-dm320.c
785 target/arm/tms320dm320/dsp-dm320.c
786 target/arm/tms320dm320/i2c-dm320.c
787 target/arm/tms320dm320/kernel-dm320.c
788 target/arm/tms320dm320/spi-dm320.c
789 target/arm/tms320dm320/system-dm320.c
790 target/arm/tms320dm320/timer-dm320.c
791 target/arm/tms320dm320/uart-dm320.c
792 #endif /* CONFIG_CPU == DM320 */
794 #ifdef MROBE_500
795 #ifndef SIMULATOR
796 target/arm/lcd-as-memframe.S
797 target/arm/mmu-arm.c
798 target/arm/tms320dm320/mrobe-500/adc-mr500.c
799 target/arm/tms320dm320/mrobe-500/ata-mr500.c
800 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
801 target/arm/tms320dm320/mrobe-500/button-mr500.c
802 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
803 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
804 #if defined(HAVE_REMOTE_LCD)
805 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
806 #endif
807 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
808 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
809 target/arm/tms320dm320/mrobe-500/power-mr500.c
810 target/arm/tms320dm320/mrobe-500/usb-mr500.c
811 #endif /* SIMULATOR */
812 #endif /* MROBE_500 */
814 #ifdef CREATIVE_ZVx
815 #ifndef SIMULATOR
816 target/arm/ata-as-arm.S
817 target/arm/lcd-as-memframe.S
818 target/arm/mmu-arm.c
819 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
820 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
821 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
822 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
823 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
824 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
825 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
826 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
827 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
828 #endif /* SIMULATOR */
829 #endif /* CREATIVE_ZVx */
831 #ifdef MROBE_100
832 #ifndef SIMULATOR
833 #ifndef BOOTLOADER
834 drivers/synaptics-mep.c
835 #endif /* BOOTLOADER */
836 drivers/sw_i2c.c
837 target/arm/ata-as-arm.S
838 target/arm/ata-pp5020.c
839 target/arm/wmcodec-pp.c
840 target/arm/i2s-pp.c
841 target/arm/adc-pp5020.c
842 target/arm/olympus/mrobe-100/backlight-mr100.c
843 target/arm/olympus/mrobe-100/button-mr100.c
844 target/arm/olympus/mrobe-100/lcd-mr100.c
845 target/arm/olympus/mrobe-100/lcd-as-mr100.S
846 target/arm/olympus/mrobe-100/power-mr100.c
847 target/arm/olympus/mrobe-100/powermgmt-mr100.c
848 target/arm/usb-fw-pp502x.c
849 #endif /* SIMULATOR */
850 #endif /* MROBE_100 */
852 #ifdef ELIO_TPJ1022
853 #ifndef SIMULATOR
854 target/arm/ata-as-arm.S
855 target/arm/ata-pp5020.c
856 target/arm/wmcodec-pp.c
857 target/arm/i2s-pp.c
858 target/arm/adc-pp5020.c
859 target/arm/tatung/tpj1022/backlight-tpj1022.c
860 target/arm/tatung/tpj1022/button-tpj1022.c
861 target/arm/tatung/tpj1022/lcd-tpj1022.c
862 target/arm/tatung/tpj1022/power-tpj1022.c
863 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
864 target/arm/usb-fw-pp502x.c
865 #endif /* SIMULATOR */
866 #endif /* ELIO_TPJ1022 */
868 #ifdef IPOD_4G
869 #ifndef SIMULATOR
870 drivers/pcf50605.c
871 target/arm/wmcodec-pp.c
872 target/arm/i2s-pp.c
873 target/arm/ata-as-arm.S
874 target/arm/ata-pp5020.c
875 target/arm/ipod/adc-ipod-pcf.c
876 target/arm/ipod/backlight-4g_color.c
877 target/arm/ipod/button-clickwheel.c
878 target/arm/ipod/lcd-as-gray.S
879 target/arm/ipod/lcd-gray.c
880 target/arm/ipod/power-ipod.c
881 target/arm/ipod/powermgmt-ipod-pcf.c
882 target/arm/usb-fw-pp502x.c
883 #endif /* SIMULATOR */
884 #endif /* IPOD_4G */
886 #ifdef IPOD_COLOR
887 #ifndef SIMULATOR
888 drivers/pcf50605.c
889 target/arm/ata-as-arm.S
890 target/arm/ata-pp5020.c
891 target/arm/wmcodec-pp.c
892 target/arm/i2s-pp.c
893 target/arm/ipod/adc-ipod-pcf.c
894 target/arm/ipod/backlight-4g_color.c
895 target/arm/ipod/button-clickwheel.c
896 target/arm/ipod/lcd-color_nano.c
897 target/arm/ipod/power-ipod.c
898 target/arm/ipod/powermgmt-ipod-pcf.c
899 target/arm/usb-fw-pp502x.c
900 #endif /* SIMULATOR */
901 #endif /* IPOD_COLOR */
903 #ifdef IPOD_NANO
904 #ifndef SIMULATOR
905 drivers/pcf50605.c
906 target/arm/ata-as-arm.S
907 target/arm/ata-pp5020.c
908 target/arm/wmcodec-pp.c
909 target/arm/i2s-pp.c
910 target/arm/ipod/adc-ipod-pcf.c
911 target/arm/ipod/backlight-nano_video.c
912 target/arm/ipod/button-clickwheel.c
913 target/arm/ipod/lcd-color_nano.c
914 target/arm/ipod/power-ipod.c
915 target/arm/ipod/powermgmt-ipod-pcf.c
916 target/arm/usb-fw-pp502x.c
917 #endif /* SIMULATOR */
918 #endif /* IPOD_NANO */
920 #ifdef IPOD_VIDEO
921 #ifndef SIMULATOR
922 drivers/pcf50605.c
923 target/arm/ata-as-arm.S
924 target/arm/ata-pp5020.c
925 target/arm/wmcodec-pp.c
926 target/arm/i2s-pp.c
927 target/arm/ipod/adc-ipod-pcf.c
928 target/arm/ipod/backlight-nano_video.c
929 target/arm/ipod/button-clickwheel.c
930 target/arm/ipod/power-ipod.c
931 target/arm/ipod/powermgmt-ipod-pcf.c
932 target/arm/ipod/video/lcd-as-video.S
933 target/arm/ipod/video/lcd-video.c
934 target/arm/usb-fw-pp502x.c
935 #endif /* SIMULATOR */
936 #endif /* IPOD_VIDEO */
938 #ifdef IPOD_3G
939 #ifndef SIMULATOR
940 drivers/pcf50605.c
941 target/arm/ata-pp5002.c
942 target/arm/wmcodec-pp.c
943 target/arm/i2s-pp.c
944 target/arm/ipod/adc-ipod-pcf.c
945 target/arm/ipod/3g/backlight-3g.c
946 target/arm/ipod/button-1g-3g.c
947 target/arm/ipod/lcd-as-gray.S
948 target/arm/ipod/lcd-gray.c
949 target/arm/ipod/power-ipod.c
950 target/arm/ipod/powermgmt-ipod-pcf.c
951 target/arm/usb-fw-pp5002.c
952 #endif /* SIMULATOR */
953 #endif /* IPOD_3G */
955 #ifdef IPOD_1G2G
956 #ifndef SIMULATOR
957 target/arm/ata-pp5002.c
958 target/arm/wmcodec-pp.c
959 target/arm/i2s-pp.c
960 target/arm/ipod/1g2g/adc-ipod-1g2g.c
961 target/arm/ipod/1g2g/backlight-1g2g.c
962 target/arm/ipod/1g2g/powermgmt-1g2g.c
963 target/arm/ipod/button-1g-3g.c
964 target/arm/ipod/lcd-as-gray.S
965 target/arm/ipod/lcd-gray.c
966 target/arm/ipod/power-ipod.c
967 target/arm/usb-fw-pp5002.c
968 #endif /* SIMULATOR */
969 #endif /* IPOD_1G2G */
971 #ifdef IPOD_MINI
972 #ifndef SIMULATOR
973 drivers/pcf50605.c
974 target/arm/ata-as-arm.S
975 target/arm/ata-pp5020.c
976 target/arm/wmcodec-pp.c
977 target/arm/i2s-pp.c
978 target/arm/ipod/adc-ipod-pcf.c
979 target/arm/ipod/backlight-mini1g_mini2g.c
980 target/arm/ipod/button-mini1g.c
981 target/arm/ipod/lcd-as-gray.S
982 target/arm/ipod/lcd-gray.c
983 target/arm/ipod/power-ipod.c
984 target/arm/ipod/powermgmt-ipod-pcf.c
985 target/arm/usb-fw-pp502x.c
986 #endif /* SIMULATOR */
987 #endif /* IPOD_MINI */
989 #ifdef IPOD_MINI2G
990 #ifndef SIMULATOR
991 drivers/pcf50605.c
992 target/arm/ata-as-arm.S
993 target/arm/ata-pp5020.c
994 target/arm/wmcodec-pp.c
995 target/arm/i2s-pp.c
996 target/arm/ipod/adc-ipod-pcf.c
997 target/arm/ipod/backlight-mini1g_mini2g.c
998 target/arm/ipod/button-clickwheel.c
999 target/arm/ipod/lcd-as-gray.S
1000 target/arm/ipod/lcd-gray.c
1001 target/arm/ipod/power-ipod.c
1002 target/arm/ipod/powermgmt-ipod-pcf.c
1003 target/arm/usb-fw-pp502x.c
1004 #endif /* SIMULATOR */
1005 #endif /* IPOD_MINI2G */
1007 #ifdef IRIVER_IFP7XX
1008 #ifndef SIMULATOR
1009 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1010 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1011 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1012 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1013 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1014 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1015 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1016 #ifndef BOOTLOADER
1017 target/arm/pnx0101/pcm-pnx0101.c
1018 #endif /* BOOTLOADER */
1019 #endif /* SIMULATOR */
1020 #endif /* IRIVER_IFP7XX */
1022 #ifdef LOGIK_DAX
1023 #ifndef SIMULATOR
1024 drivers/nand_id.c
1025 target/arm/lcd-ssd1815.c
1026 target/arm/tcc77x/adc-tcc77x.c
1027 target/arm/tcc77x/kernel-tcc77x.c
1028 target/arm/tcc77x/powermgmt-tcc77x.c
1029 target/arm/tcc77x/system-tcc77x.c
1030 target/arm/tcc77x/timer-tcc77x.c
1031 target/arm/usb-tcc.c
1032 target/arm/tcc77x/logikdax/button-logikdax.c
1033 target/arm/tcc77x/logikdax/power-logikdax.c
1034 #ifndef BOOTLOADER
1035 target/arm/wmcodec-telechips.c
1036 target/arm/tcc77x/debug-tcc77x.c
1037 target/arm/pcm-telechips.c
1038 target/arm/tcc77x/logikdax/audio-logikdax.c
1039 #endif /* BOOTLOADER */
1040 #endif /* SIMULATOR */
1041 #endif /* LOGIK_DAX */
1043 #ifdef SANSA_M200
1044 #ifndef SIMULATOR
1045 drivers/nand_id.c
1046 target/arm/lcd-ssd1815.c
1047 target/arm/tcc77x/adc-tcc77x.c
1048 target/arm/tcc77x/kernel-tcc77x.c
1049 target/arm/tcc77x/powermgmt-tcc77x.c
1050 target/arm/tcc77x/system-tcc77x.c
1051 target/arm/tcc77x/timer-tcc77x.c
1052 target/arm/usb-tcc.c
1053 target/arm/tcc77x/m200/button-m200.c
1054 target/arm/tcc77x/m200/power-m200.c
1055 #ifndef BOOTLOADER
1056 target/arm/wmcodec-telechips.c
1057 target/arm/tcc77x/debug-tcc77x.c
1058 target/arm/pcm-telechips.c
1059 target/arm/tcc77x/m200/audio-m200.c
1060 #endif /* BOOTLOADER */
1061 #endif /* SIMULATOR */
1062 #endif /* SANSA_M200 */
1064 #ifdef SANSA_C100
1065 #ifndef SIMULATOR
1066 drivers/nand_id.c
1067 target/arm/tcc77x/adc-tcc77x.c
1068 target/arm/tcc77x/kernel-tcc77x.c
1069 target/arm/tcc77x/c100/lcd-S6B33B2.c
1070 target/arm/tcc77x/powermgmt-tcc77x.c
1071 target/arm/tcc77x/system-tcc77x.c
1072 target/arm/tcc77x/timer-tcc77x.c
1073 target/arm/usb-tcc.c
1074 target/arm/tcc77x/c100/button-c100.c
1075 target/arm/tcc77x/c100/power-c100.c
1076 #ifndef BOOTLOADER
1077 target/arm/tcc77x/debug-tcc77x.c
1078 target/arm/pcm-telechips.c
1079 #endif /* BOOTLOADER */
1080 #endif /* SIMULATOR */
1081 #endif /* SANSA_C100 */
1083 #ifdef SANSA_CLIP
1084 #ifndef SIMULATOR
1085 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1086 target/arm/as3525/sansa-clip/lcd-as-clip.S
1087 target/arm/as3525/sansa-clip/button-clip.c
1088 target/arm/as3525/sansa-clip/backlight-clip.c
1089 #ifndef BOOTLOADER
1090 target/arm/as3525/sansa-clip/powermgmt-clip.c
1091 #endif /* !BOOTLOADER */
1092 #endif /* !SIMULATOR */
1093 #endif /* SANSA_CLIP */
1095 #ifdef SANSA_E200V2
1096 #ifndef SIMULATOR
1097 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1098 target/arm/as3525/sansa-e200v2/button-e200v2.c
1099 target/arm/as3525/backlight-e200v2-fuze.c
1100 #ifndef BOOTLOADER
1101 target/arm/as3525/powermgmt-as3525.c
1102 #endif /* !BOOTLOADER */
1103 #endif /* !SIMULATOR */
1104 #endif /* SANSA_E200V2 */
1106 #ifdef SANSA_C200V2
1107 #ifndef SIMULATOR
1108 target/arm/as3525/sansa-c200v2/lcd-c200v2.c
1109 target/arm/as3525/sansa-c200v2/button-c200v2.c
1110 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1111 #ifndef BOOTLOADER
1112 target/arm/as3525/powermgmt-as3525.c
1113 #endif /* !BOOTLOADER */
1114 #endif /* !SIMULATOR */
1115 #endif /* SANSA_E200V2 */
1117 #ifdef SANSA_M200V4
1118 #ifndef SIMULATOR
1119 target/arm/lcd-ssd1815.c
1120 target/arm/as3525/sansa-m200v4/button-m200v4.c
1121 #ifndef BOOTLOADER
1122 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1123 #endif /* !BOOTLOADER */
1124 #endif /* !SIMULATOR */
1125 #endif /* SANSA_M200V4 */
1127 #ifdef SANSA_FUZE
1128 #ifndef SIMULATOR
1129 target/arm/as3525/sansa-fuze/button-fuze.c
1130 target/arm/as3525/sansa-fuze/lcd-fuze.c
1131 target/arm/as3525/backlight-e200v2-fuze.c
1132 #ifndef BOOTLOADER
1133 target/arm/as3525/powermgmt-as3525.c
1134 #endif /* !BOOTLOADER */
1135 #endif /* !SIMULATOR */
1136 #endif /* SANSA_FUZE */
1138 #ifdef IAUDIO_7
1139 #ifndef SIMULATOR
1140 drivers/nand_id.c
1141 drivers/pcf50606.c
1142 target/arm/usb-tcc.c
1143 target/arm/tcc77x/system-tcc77x.c
1144 target/arm/tcc77x/kernel-tcc77x.c
1145 target/arm/tcc77x/timer-tcc77x.c
1146 target/arm/tcc77x/adc-tcc77x.c
1147 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1148 target/arm/tcc77x/iaudio7/power-iaudio7.c
1149 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1150 target/arm/tcc77x/iaudio7/button-iaudio7.c
1151 target/arm/tcc77x/iaudio7/ata2501.c
1152 #ifndef BOOTLOADER
1153 target/arm/wmcodec-telechips.c
1154 target/arm/pcm-telechips.c
1155 target/arm/tcc77x/debug-tcc77x.c
1156 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1157 #endif /* BOOTLOADER */
1158 #endif /* SIMULATOR */
1159 #endif /* IAUDIO_7 */
1161 #ifdef COWON_D2
1162 #ifndef SIMULATOR
1163 drivers/nand_id.c
1164 drivers/pcf50606.c
1165 target/arm/lcd-as-memframe.S
1166 target/arm/tcc780x/adc-tcc780x.c
1167 target/arm/tcc780x/system-tcc780x.c
1168 target/arm/tcc780x/cowond2/button-cowond2.c
1169 target/arm/tcc780x/cowond2/lcd-cowond2.c
1170 target/arm/tcc780x/cowond2/power-cowond2.c
1171 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1172 target/arm/tcc780x/cowond2/backlight-cowond2.c
1173 target/arm/usb-tcc.c
1174 #ifndef BOOTLOADER
1175 target/arm/tcc780x/kernel-tcc780x.c
1176 target/arm/tcc780x/timer-tcc780x.c
1177 target/arm/wmcodec-telechips.c
1178 target/arm/tcc780x/debug-tcc780x.c
1179 target/arm/pcm-telechips.c
1180 target/arm/tcc780x/cowond2/audio-cowond2.c
1181 #endif /* BOOTLOADER */
1182 #endif /* SIMULATOR */
1183 #endif /* COWON_D2 */
1185 #if CONFIG_CPU==S5L8700
1186 target/arm/s5l8700/system-s5l8700.c
1187 #endif
1189 #ifdef MEIZU_M6SL
1190 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1191 drivers/qt1106.c
1192 #ifndef SIMULATOR
1193 #ifndef BOOTLOADER
1194 #endif /* BOOTLOADER */
1195 #endif /* SIMULATOR */
1196 #endif /* MEIZU_M6SL */
1198 #ifdef MEIZU_M6SP
1199 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1200 #ifndef SIMULATOR
1201 #ifndef BOOTLOADER
1202 #endif /* BOOTLOADER */
1203 #endif /* SIMULATOR */
1204 #endif /* MEIZU_M6SP */
1206 #ifdef MEIZU_M3
1207 target/arm/s5l8700/meizu-m3/lcd-m3.c
1208 drivers/qt1106.c
1209 #ifndef SIMULATOR
1210 #ifndef BOOTLOADER
1211 #endif /* BOOTLOADER */
1212 #endif /* SIMULATOR */
1213 #endif /* MEIZU_M3 */
1215 #if CONFIG_CPU==JZ4732
1216 target/mips/ingenic_jz47xx/ata-jz4740.c
1217 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1218 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1219 target/mips/ingenic_jz47xx/codec-jz4740.c
1220 target/mips/ingenic_jz47xx/kernel-jz4740.c
1221 target/mips/ingenic_jz47xx/i2c-jz4740.c
1222 target/mips/ingenic_jz47xx/lcd-jz4740.c
1223 target/mips/ingenic_jz47xx/pcm-jz4740.c
1224 target/mips/ingenic_jz47xx/system-jz4740.c
1225 target/mips/ingenic_jz47xx/usb-jz4740.c
1226 drivers/nand_id.c
1227 #endif
1229 #if defined(ONDA_VX747) || defined(ONDA_VX747P)
1230 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx747.c
1231 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1232 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1233 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1234 #endif
1236 #ifdef ONDA_VX767
1237 target/mips/ingenic_jz47xx/onda_vx767/backlight-ondavx767.c
1238 target/mips/ingenic_jz47xx/onda_vx767/button-ondavx767.c
1239 target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c
1240 #endif