Abstract the PortalPlayer AS3514 handling with an "ascodec" API - inspired by the...
[kugel-rb.git] / firmware / SOURCES
blobe73e94b453782091fc2d74be168dbf921dc209dc
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 /* Misc. */
100 drivers/led.c
101 drivers/button.c
102 #ifndef SIMULATOR
103 #ifdef HAVE_DAC3550A
104 drivers/dac.c
105 #endif
106 drivers/serial.c
107 #endif /* SIMULATOR */
110 /* Storage */
111 #ifndef SIMULATOR
112 #ifdef HAVE_MMC
113 drivers/ata_mmc.c
114 #elif defined(HAVE_FLASH_DISK)
115 drivers/ata_flash.c
116 #elif defined(HAVE_ATA)
117 drivers/ata.c
118 #endif /* HAVE_MMC */
119 drivers/fat.c
120 #if defined(HAVE_MMC) || defined(HAVE_ATA_SD)
121 hotswap.c
122 #endif
123 #endif /* SIMULATOR */
125 /* EEPROM */
126 #ifdef HAVE_EEPROM
127 drivers/eeprom_24cxx.c
128 #ifdef HAVE_EEPROM_SETTINGS
129 eeprom_settings.c
130 #endif /* HAVE_EEPROM_SETTINGS */
131 #endif /* HAVE_EEPROM */
133 /* RTC */
134 #ifndef SIMULATOR
135 #if (CONFIG_RTC == RTC_M41ST84W)
136 drivers/rtc/rtc_m41st84w.c
137 #elif (CONFIG_RTC == RTC_PCF50606)
138 drivers/rtc/rtc_pcf50606.c
139 #elif (CONFIG_RTC == RTC_PCF50605)
140 drivers/rtc/rtc_pcf50605.c
141 #elif (CONFIG_RTC == RTC_E8564)
142 drivers/rtc/rtc_e8564.c
143 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
144 drivers/rtc/rtc_ds1339_ds3231.c
145 #elif (CONFIG_RTC == RTC_S3C2440)
146 drivers/rtc/rtc_s3c2440.c
147 #elif (CONFIG_RTC == RTC_AS3514)
148 drivers/rtc/rtc_as3514.c
149 #elif (CONFIG_RTC == RTC_RX5X348AB)
150 drivers/rtc/rtc_rx5x348ab.c
151 #elif (CONFIG_RTC == RTC_MR100)
152 drivers/rtc/rtc_mr100.c
153 #elif (CONFIG_RTC == RTC_MC13783)
154 drivers/rtc/rtc_mc13783.c
155 #elif (CONFIG_RTC == RTC_TCC77X)
156 drivers/rtc/rtc_tcc77x.c
157 #elif (CONFIG_RTC == RTC_JZ47XX)
158 drivers/rtc/rtc_jz4740.c
159 #endif /* (CONFIG_RTC == RTC_) */
160 #endif /* SIMULATOR */
162 /* Tuner */
163 #if CONFIG_TUNER
164 tuner.c
165 #ifndef SIMULATOR
166 #if (CONFIG_TUNER & LV24020LP)
167 drivers/tuner/lv24020lp.c
168 #endif /* (CONFIG_TUNER & LV24020LP) */
169 #if (CONFIG_TUNER & S1A0903X01)
170 drivers/fmradio.c
171 drivers/tuner/s1a0903x01.c
172 #endif /* (CONFIG_TUNER & S1A0903X01) */
173 #if (CONFIG_TUNER & TEA5767)
174 drivers/tuner/tea5767.c
175 #endif /* (CONFIG_TUNER & TEA5767) */
176 #endif /*SIMULATOR */
177 #endif /* CONFIG_TUNER */
179 /* Sound */
180 #if CONFIG_CODEC != SWCODEC
181 mp3_playback.c
182 #endif /* CONFIG_CODEC != SWCODEC */
183 sound.c
185 #if CONFIG_CODEC == SWCODEC
187 #ifndef BOOTLOADER
188 general.c
189 pcm_sampr.c
190 pcm.c
191 #ifdef HAVE_RECORDING
192 enc_base.c
193 #endif /* HAVE_RECORDING */
194 #endif /* BOOTLOADER */
196 #else  /* !SWCODEC */
198 #ifndef BOOTLOADER
199 #ifndef SIMULATOR
200 drivers/mas.c
201 #endif /* SIMULATOR */
202 #endif /* BOOTLOADER */
204 #endif /* SWCODEC */
206 /* Audio codec */
207 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
208 #if defined(HAVE_UDA1380)
209 drivers/audio/uda1380.c
210 #elif defined(HAVE_WM8751)
211 drivers/audio/wm8751.c
212 #elif defined(HAVE_WM8978)
213 drivers/audio/wm8978.c
214 #elif defined(HAVE_WM8975)
215 drivers/audio/wm8975.c
216 #elif defined(HAVE_WM8985)
217 drivers/audio/wm8985.c
218 #elif defined(HAVE_WM8758)
219 drivers/audio/wm8758.c
220 #elif defined(HAVE_WM8721)
221 drivers/audio/wm8721.c
222 #elif defined(HAVE_WM8731)
223 drivers/audio/wm8731.c
224 #elif defined(HAVE_AS3514)
225 drivers/audio/as3514.c
226 #elif defined(HAVE_TLV320)
227 drivers/audio/tlv320.c
228 #elif defined(HAVE_MAS35XX)
229 drivers/audio/mas35xx.c
230 #endif /* defined(HAVE_*) */
231 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
233 /* USB Stack */
234 #if !defined(SIMULATOR)
235 #ifdef HAVE_USBSTACK
236 usbstack/usb_core.c
237 usbstack/usb_storage.c
238 usbstack/usb_serial.c
239 usbstack/usb_charging_only.c
240 #if CONFIG_USBOTG == USBOTG_ARC
241 target/arm/usb-drv-arc.c
242 #elif CONFIG_USBOTG == USBOTG_ISP1583
243 drivers/isp1583.c
244 #endif
245 #else /* !defined(HAVE_USBSTACK) */
246 #if CONFIG_USBOTG == USBOTG_ISP1362      
247 drivers/isp1362.c
248 #elif CONFIG_USBOTG == USBOTG_M5636      
249 drivers/m5636.c
250 #endif
251 #endif /* !defined(HAVE_USBSTACK) */
252 #endif /* !defined(SIMULATOR) */
254 /* Other Random Hardware */
255 #ifdef HAVE_TSC2100
256 #if !defined(SIMULATOR)
257 drivers/tsc2100.c
258 drivers/audio/tsc2100.c
259 #endif /* !SIMULATOR */
260 #endif
262 /* CPU Specific - By class then particular chip if applicable */
263 #if defined(CPU_SH)
265 #ifndef SIMULATOR
266 drivers/i2c.c
267 target/sh/adc-sh.c
268 target/sh/bitswap.S
269 target/sh/crt0.S
270 target/sh/kernel-sh.c
271 target/sh/memcpy-sh.S
272 target/sh/memmove-sh.S
273 target/sh/memset-sh.S
274 target/sh/strlen-sh.S
275 target/sh/system-sh.c
276 target/sh/archos/descramble.S
277 #endif /* SIMULATOR */
279 #elif defined(CPU_COLDFIRE)
281 #ifndef SIMULATOR
282 target/coldfire/crt0.S
283 #ifdef HAVE_PRIORITY_SCHEDULING
284 common/ffs.c
285 target/coldfire/ffs-coldfire.S
286 #endif
287 target/coldfire/memcpy-coldfire.S
288 target/coldfire/memmove-coldfire.S
289 target/coldfire/memset-coldfire.S
290 target/coldfire/strlen-coldfire.S
291 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
292  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
293 target/coldfire/memset16-coldfire.S
294 #endif
295 target/coldfire/kernel-coldfire.c
296 target/coldfire/system-coldfire.c
297 #ifndef BOOTLOADER
298 target/coldfire/pcm-coldfire.c
299 #endif /* BOOTLOADER */
300 #if CONFIG_I2C == I2C_COLDFIRE
301 target/coldfire/i2c-coldfire.c
302 #endif /* CONFIG_I2C == I2C_COLDFIRE */
303 #endif /* SIMULATOR */
305 #elif defined(CPU_PP) || defined(CPU_ARM)
306 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
307 target/arm/memcpy-arm.S
308 target/arm/memmove-arm.S
309 common/strlen.c
310 #ifndef SIMULATOR
311 target/arm/memset-arm.S
312 target/arm/memset16-arm.S
313 #ifdef HAVE_PRIORITY_SCHEDULING
314 target/arm/ffs-arm.S
315 #endif
316 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
317 target/arm/i2c-pp.c
318 #elif CONFIG_I2C == I2C_PNX0101
319 target/arm/pnx0101/i2c-pnx0101.c
320 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
321 target/arm/i2c-telechips.c
322 #elif CONFIG_I2C == I2C_S3C2440
323 /* no i2c driver yet */
324 #endif
326 #if CONFIG_CPU == PNX0101
327 target/arm/pnx0101/kernel-pnx0101.c
328 target/arm/pnx0101/system-pnx0101.c
329 #endif
331 #if CONFIG_CPU == AS3525
332 target/arm/as3525/system-as3525.c
333 target/arm/as3525/ata_sd_as3525.c
334 #endif
336 #if defined(CPU_PP)
337 target/arm/kernel-pp.c
338 #if CONFIG_CPU == PP5002
339 target/arm/system-pp5002.c
340 #elif defined CPU_PP502x
341 target/arm/system-pp502x.c
342 #endif
343 #ifdef BOOTLOADER
344 target/arm/crt0-pp-bl.S
345 #else
346 target/arm/pcm-pp.c
347 #if !defined(SANSA_E200) && !defined(SANSA_C200)
348 target/arm/audio-pp.c
349 #endif /* SANSA_E200 */
350 target/arm/crt0-pp.S
351 #endif
352 #elif CONFIG_CPU == PNX0101
353 target/arm/pnx0101/crt0-pnx0101.S
354 #elif CONFIG_CPU==DM320
355 target/arm/tms320dm320/crt0.S
356 #elif CONFIG_CPU==S3C2440
357 target/arm/s3c2440/crt0.S
358 #elif defined(CPU_TCC77X)
359 target/arm/tcc77x/crt0.S
360 #elif defined(CPU_TCC780X)
361 target/arm/tcc780x/crt0.S
362 #elif CONFIG_CPU==IMX31L
363 target/arm/imx31/crt0.S
364 #elif CONFIG_CPU==S5L8700
365 target/arm/s5l8700/crt0.S
366 #elif defined(CPU_ARM)
367 target/arm/crt0.S
368 #endif /* defined(CPU_*) */
369 #endif /* SIMULATOR */
371 #elif defined(CPU_MIPS)
372 #undef mips
373 /*target/mips/memcpy.S
374 target/mips/memset.S
375 common/memset16.c
376 target/mips/strlen.S*/
377 common/memcpy.c
378 common/memmove.c
379 common/memset.c
380 common/memset16.c
381 common/strlen.c
382 #if CONFIG_CPU==JZ4732
383 target/mips/ingenic_jz47xx/crt0.S
384 #endif /* CONFIG_CPU == JZ4732 */
386 #else
388 #ifdef HAVE_PRIORITY_SCHEDULING
389 common/ffs.c
390 #endif
391 common/memcpy.c
392 common/memmove.c
393 common/memset.c
394 common/memset16.c
395 common/strlen.c
396 #ifndef SIMULATOR
397 crt0.S
398 drivers/i2c.c
399 #endif /* SIMULATOR */
401 #endif /* defined(CPU_*) */
403 #ifdef ARCHOS_PLAYER
404 #ifndef SIMULATOR
405 target/sh/archos/ata-archos.c
406 target/sh/archos/ata-as-archos.S
407 target/sh/archos/player/button-player.c
408 target/sh/archos/player/hwcompat-player.c
409 target/sh/archos/player/lcd-as-player.S
410 target/sh/archos/player/lcd-player.c
411 target/sh/archos/player/power-player.c
412 target/sh/archos/player/powermgmt-player.c
413 target/sh/archos/player/usb-player.c
414 #endif /* SIMULATOR */
415 #endif /* ARCHOS_PLAYER */
417 #ifdef ARCHOS_RECORDER
418 #ifndef SIMULATOR
419 target/sh/archos/ata-archos.c
420 target/sh/archos/ata-as-archos.S
421 target/sh/archos/lcd-archos-bitmap.c
422 target/sh/archos/lcd-as-archos-bitmap.S   
423 target/sh/archos/recorder/button-recorder.c
424 target/sh/archos/recorder/power-recorder.c
425 target/sh/archos/recorder/powermgmt-recorder.c
426 target/sh/archos/recorder/usb-recorder.c
427 #endif /* SIMULATOR */
428 #endif /* ARCHOS_RECORDER */
430 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
431 #ifndef SIMULATOR
432 target/sh/archos/ata-archos.c
433 target/sh/archos/ata-as-archos.S
434 target/sh/archos/lcd-archos-bitmap.c
435 target/sh/archos/lcd-as-archos-bitmap.S
436 target/sh/archos/fm_v2/button-fm_v2.c
437 target/sh/archos/fm_v2/power-fm_v2.c
438 target/sh/archos/fm_v2/powermgmt-fm_v2.c
439 target/sh/archos/fm_v2/usb-fm_v2.c
440 #endif /* SIMULATOR */
441 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
443 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
444 #ifndef SIMULATOR
445 target/sh/archos/lcd-archos-bitmap.c
446 target/sh/archos/lcd-as-archos-bitmap.S
447 target/sh/archos/ondio/button-ondio.c
448 target/sh/archos/ondio/power-ondio.c
449 target/sh/archos/ondio/powermgmt-ondio.c
450 target/sh/archos/ondio/usb-ondio.c
451 #if (CONFIG_TUNER & TEA5767)
452 target/sh/archos/ondio/fmradio_i2c-ondio.c
453 #endif
454 #endif /* SIMULATOR */
455 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
457 #ifdef SANSA_E200
458 #ifndef SIMULATOR
459 target/arm/lcd-as-memframe.S
460 target/arm/ata-sd-pp.c
461 target/arm/sandisk/sansa-e200/lcd-e200.c
462 target/arm/adc-as3514.c
463 target/arm/ascodec-pp.c
464 target/arm/sandisk/backlight-c200_e200.c
465 target/arm/usb-fw-pp502x.c
466 target/arm/sandisk/sansa-e200/button-e200.c
467 target/arm/sandisk/power-c200_e200.c
468 target/arm/sandisk/sansa-e200/powermgmt-e200.c
469 target/arm/i2s-pp.c
470 #ifndef BOOTLOADER
471 target/arm/sandisk/audio-c200_e200.c
472 #endif /* BOOTLOADER */
473 #endif /* SIMULATOR */
474 #endif /* SANSA_E200 */
476 #ifdef SANSA_C200
477 #ifndef SIMULATOR
478 target/arm/ata-sd-pp.c
479 target/arm/sandisk/sansa-c200/lcd-c200.c
480 target/arm/sandisk/sansa-c200/lcd-as-c200.S
481 target/arm/adc-as3514.c
482 target/arm/ascodec-pp.c
483 target/arm/sandisk/backlight-c200_e200.c
484 target/arm/usb-fw-pp502x.c
485 target/arm/sandisk/sansa-c200/button-c200.c
486 target/arm/sandisk/power-c200_e200.c
487 target/arm/sandisk/sansa-c200/powermgmt-c200.c
488 target/arm/i2s-pp.c
489 #ifndef BOOTLOADER
490 target/arm/sandisk/audio-c200_e200.c
491 #endif /* BOOTLOADER */
492 #endif /* SIMULATOR */
493 #endif /* SANSA_C200 */
495 #ifdef PHILIPS_SA9200
496 #ifndef SIMULATOR
497 target/arm/ata-sd-pp.c
498 target/arm/philips/sa9200/lcd-sa9200.c
499 target/arm/adc-as3514.c
500 target/arm/ascodec-pp.c
501 target/arm/philips/sa9200/backlight-sa9200.c
502 target/arm/usb-fw-pp502x.c
503 target/arm/philips/sa9200/button-sa9200.c
504 target/arm/philips/sa9200/power-sa9200.c
505 target/arm/philips/sa9200/powermgmt-sa9200.c
506 target/arm/i2s-pp.c
507 #endif /* SIMULATOR */
508 #endif /* PHILIPS_SA9200 */
510 #ifdef PHILIPS_HDD1630
511 #ifndef SIMULATOR
512 target/arm/ata-as-arm.S
513 target/arm/ata-pp5020.c
514 target/arm/wmcodec-pp.c
515 target/arm/i2s-pp.c
516 target/arm/adc-pp5020.c
517 target/arm/philips/hdd1630/backlight-hdd1630.c
518 target/arm/philips/hdd1630/button-hdd1630.c
519 target/arm/philips/hdd1630/lcd-hdd1630.c
520 target/arm/philips/hdd1630/power-hdd1630.c
521 target/arm/philips/hdd1630/powermgmt-hdd1630.c
522 target/arm/usb-fw-pp502x.c
523 #endif /* SIMULATOR */
524 #endif /* PHILIPS_HDD1630 */
526 #ifdef IAUDIO_X5
527 #ifndef SIMULATOR
528 target/coldfire/ata-as-coldfire.S
529 target/coldfire/pcf50606-coldfire.c
530 target/coldfire/iaudio/adc-iaudio.c
531 target/coldfire/iaudio/ata-iaudio.c
532 target/coldfire/iaudio/lcd-remote-as-iaudio.S
533 target/coldfire/iaudio/lcd-remote-iaudio.c
534 target/coldfire/iaudio/pcf50606-iaudio.c
535 target/coldfire/iaudio/powermgmt-iaudio.c
536 target/coldfire/iaudio/system-iaudio.c
537 target/coldfire/iaudio/usb-iaudio.c
538 target/coldfire/iaudio/x5/backlight-x5.c
539 target/coldfire/iaudio/x5/button-x5.c
540 target/coldfire/iaudio/x5/ds2411-x5.c
541 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
542 target/coldfire/iaudio/x5/lcd-as-x5.S
543 target/coldfire/iaudio/x5/lcd-x5.c
544 target/coldfire/iaudio/x5/m5636-x5.c
545 target/coldfire/iaudio/x5/power-x5.c
546 #ifndef BOOTLOADER
547 target/coldfire/iaudio/x5/audio-x5.c
548 #endif
549 #endif /* SIMULATOR */
550 #endif /* IAUDIO_X5 */
552 #ifdef IAUDIO_M5
553 #ifndef SIMULATOR
554 target/coldfire/ata-as-coldfire.S
555 target/coldfire/pcf50606-coldfire.c
556 target/coldfire/iaudio/adc-iaudio.c
557 target/coldfire/iaudio/ata-iaudio.c
558 target/coldfire/iaudio/lcd-remote-as-iaudio.S
559 target/coldfire/iaudio/lcd-remote-iaudio.c
560 target/coldfire/iaudio/m5/backlight-m5.c
561 target/coldfire/iaudio/m5/button-m5.c
562 target/coldfire/iaudio/m5/lcd-as-m5.S
563 target/coldfire/iaudio/m5/lcd-m5.c
564 target/coldfire/iaudio/m5/power-m5.c
565 target/coldfire/iaudio/pcf50606-iaudio.c
566 target/coldfire/iaudio/powermgmt-iaudio.c
567 target/coldfire/iaudio/system-iaudio.c
568 target/coldfire/iaudio/usb-iaudio.c
569 #ifndef BOOTLOADER
570 target/coldfire/iaudio/m5/audio-m5.c
571 #endif
572 #endif /* SIMULATOR */
573 #endif /* IAUDIO_M5 */
575 #ifdef IAUDIO_M3
576 #ifndef SIMULATOR
577 target/coldfire/ata-as-coldfire.S
578 target/coldfire/iaudio/m3/adc-m3.c
579 target/coldfire/iaudio/m3/ata-m3.c
580 target/coldfire/iaudio/m3/backlight-m3.c
581 target/coldfire/iaudio/m3/button-m3.c
582 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
583 target/coldfire/iaudio/m3/lcd-m3.c
584 target/coldfire/iaudio/m3/lcd-as-m3.S
585 target/coldfire/iaudio/m3/power-m3.c
586 target/coldfire/iaudio/m3/powermgmt-m3.c
587 target/coldfire/iaudio/m3/system-m3.c
588 target/coldfire/iaudio/m3/usb-m3.c
589 #ifndef BOOTLOADER
590 target/coldfire/iaudio/m3/audio-m3.c
591 #endif
592 #endif /* SIMULATOR */
593 #endif /* IAUDIO_M3 */
595 #ifdef IRIVER_IFP7XX_SERIES
596 #ifdef STUB
597 ifp_usb_serial.c
598 common/sscanf.c
599 #endif /* STUB */
600 #endif /* IRIVER_IFP7XX_SERIES */
602 #ifdef IRIVER_H300_SERIES
603 #ifndef SIMULATOR
604 target/coldfire/ata-as-coldfire.S
605 target/coldfire/pcf50606-coldfire.c
606 target/coldfire/iriver/ata-iriver.c
607 target/coldfire/iriver/lcd-remote-iriver.c
608 target/coldfire/iriver/lcd-remote-as-iriver.S
609 target/coldfire/iriver/system-iriver.c
610 target/coldfire/iriver/fmradio_i2c-iriver.c
611 target/coldfire/iriver/h300/sw_i2c-h300.c
612 target/coldfire/iriver/h300/adc-h300.c
613 target/coldfire/iriver/h300/backlight-h300.c
614 target/coldfire/iriver/h300/button-h300.c
615 target/coldfire/iriver/h300/pcf50606-h300.c
616 target/coldfire/iriver/h300/lcd-as-h300.S
617 target/coldfire/iriver/h300/lcd-h300.c
618 target/coldfire/iriver/h300/power-h300.c
619 target/coldfire/iriver/h300/powermgmt-h300.c
620 target/coldfire/iriver/h300/usb-h300.c
621 #ifndef BOOTLOADER
622 target/coldfire/iriver/audio-iriver.c
623 #endif
624 #endif /* SIMULATOR */
625 #endif /* IRIVER_H300_SERIES */
627 #ifdef IRIVER_H100_SERIES
628 #ifndef SIMULATOR
629 drivers/sw_i2c.c
630 target/coldfire/ata-as-coldfire.S
631 target/coldfire/iriver/ata-iriver.c
632 target/coldfire/iriver/lcd-remote-iriver.c
633 target/coldfire/iriver/lcd-remote-as-iriver.S
634 target/coldfire/iriver/system-iriver.c
635 target/coldfire/iriver/fmradio_i2c-iriver.c
636 target/coldfire/iriver/h100/adc-h100.c
637 target/coldfire/iriver/h100/backlight-h100.c
638 target/coldfire/iriver/h100/button-h100.c
639 target/coldfire/iriver/h100/lcd-as-h100.S
640 target/coldfire/iriver/h100/lcd-h100.c
641 target/coldfire/iriver/h100/power-h100.c
642 target/coldfire/iriver/h100/powermgmt-h100.c
643 #ifndef BOOTLOADER
644 target/coldfire/iriver/audio-iriver.c
645 target/coldfire/iriver/h100/spdif-h100.c
646 #endif
647 target/coldfire/iriver/h100/usb-h100.c
648 #endif /* SIMULATOR */
649 #endif /* IRIVER_H100_SERIES */
651 #ifdef IRIVER_H10
652 #ifndef SIMULATOR
653 target/arm/ata-as-arm.S
654 target/arm/ata-pp5020.c
655 target/arm/wmcodec-pp.c
656 target/arm/i2s-pp.c
657 target/arm/adc-pp5020.c
658 target/arm/iriver/h10/backlight-h10.c
659 target/arm/iriver/h10/button-h10.c
660 target/arm/iriver/h10/fmradio_i2c-h10.c
661 target/arm/iriver/h10/lcd-h10_20gb.c
662 target/arm/iriver/h10/lcd-as-h10.S
663 target/arm/iriver/h10/power-h10.c
664 target/arm/iriver/h10/powermgmt-h10.c
665 target/arm/usb-fw-pp502x.c
666 #endif /* SIMULATOR */
667 #endif /* IRIVER_H10 */
669 #ifdef IRIVER_H10_5GB
670 #ifndef SIMULATOR
671 target/arm/ata-as-arm.S
672 target/arm/ata-pp5020.c
673 target/arm/wmcodec-pp.c
674 target/arm/i2s-pp.c
675 target/arm/adc-pp5020.c
676 target/arm/iriver/h10/backlight-h10.c
677 target/arm/iriver/h10/button-h10.c
678 target/arm/iriver/h10/fmradio_i2c-h10.c
679 target/arm/iriver/h10/lcd-h10_5gb.c
680 target/arm/iriver/h10/power-h10.c
681 target/arm/iriver/h10/powermgmt-h10.c
682 target/arm/usb-fw-pp502x.c
683 #endif /* SIMULATOR */
684 #endif /* IRIVER_H10_5GB */
686 #ifdef GIGABEAT_F
687 #ifndef SIMULATOR
688 target/arm/lcd-as-memframe.S
689 target/arm/mmu-arm.c
690 target/arm/s3c2440/debug-s3c2440.c
691 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
692 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
693 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
694 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
695 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
696 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
697 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
698 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
699 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
700 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
701 #ifndef BOOTLOADER
702 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
703 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
704 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
705 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
706 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
707 #endif
708 #endif /* SIMULATOR */
709 #endif /* GIGABEAT_F */
711 #ifdef GIGABEAT_S
712 #ifndef SIMULATOR
713 target/arm/lcd-as-memframe.S
714 target/arm/mmu-arm.c
715 target/arm/imx31/debug-imx31.c
716 target/arm/imx31/rolo_restart.S
717 target/arm/imx31/gigabeat-s/adc-imx31.c
718 target/arm/imx31/gigabeat-s/ata-imx31.c
719 target/arm/imx31/gigabeat-s/avic-imx31.c
720 target/arm/imx31/gigabeat-s/backlight-imx31.c
721 target/arm/imx31/gigabeat-s/button-imx31.c
722 target/arm/imx31/gigabeat-s/clkctl-imx31.c
723 target/arm/imx31/gigabeat-s/dma_start.c
724 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
725 target/arm/imx31/gigabeat-s/gpio-imx31.c
726 target/arm/imx31/gigabeat-s/kernel-imx31.c
727 target/arm/imx31/gigabeat-s/i2c-imx31.c
728 target/arm/imx31/gigabeat-s/i2s-imx31.c
729 target/arm/imx31/gigabeat-s/lcd-imx31.c
730 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
731 target/arm/imx31/gigabeat-s/mc13783-imx31.c
732 target/arm/imx31/gigabeat-s/mmu-imx31.c
733 target/arm/imx31/gigabeat-s/power-imx31.c
734 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
735 target/arm/imx31/gigabeat-s/spi-imx31.c
736 target/arm/imx31/gigabeat-s/system-imx31.c
737 target/arm/imx31/gigabeat-s/usb-imx31.c
738 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
739 #ifndef BOOTLOADER
740 target/arm/imx31/gigabeat-s/pcm-imx31.c
741 #endif
742 #endif /* SIMULATOR */
743 #endif /* GIGABEAT_S */
745 #if CONFIG_CPU == DM320
746 target/arm/tms320dm320/debug-dm320.c
747 target/arm/tms320dm320/dsp-dm320.c
748 target/arm/tms320dm320/i2c-dm320.c
749 target/arm/tms320dm320/kernel-dm320.c
750 target/arm/tms320dm320/spi-dm320.c
751 target/arm/tms320dm320/system-dm320.c
752 target/arm/tms320dm320/timer-dm320.c
753 target/arm/tms320dm320/uart-dm320.c
754 #endif /* CONFIG_CPU == DM320 */
756 #ifdef MROBE_500
757 #ifndef SIMULATOR
758 target/arm/lcd-as-memframe.S
759 target/arm/mmu-arm.c
760 target/arm/tms320dm320/mrobe-500/adc-mr500.c
761 target/arm/tms320dm320/mrobe-500/ata-mr500.c
762 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
763 target/arm/tms320dm320/mrobe-500/button-mr500.c
764 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
765 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
766 #if defined(HAVE_REMOTE_LCD)
767 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
768 #endif
769 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
770 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
771 target/arm/tms320dm320/mrobe-500/power-mr500.c
772 target/arm/tms320dm320/mrobe-500/usb-mr500.c
773 #endif /* SIMULATOR */
774 #endif /* MROBE_500 */
776 #ifdef CREATIVE_ZVx
777 #ifndef SIMULATOR
778 target/arm/ata-as-arm.S
779 target/arm/lcd-as-memframe.S
780 target/arm/mmu-arm.c
781 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
782 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
783 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
784 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
785 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
786 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
787 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
788 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
789 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
790 #endif /* SIMULATOR */
791 #endif /* CREATIVE_ZVx */
793 #ifdef MROBE_100
794 #ifndef SIMULATOR
795 drivers/sw_i2c.c
796 target/arm/ata-as-arm.S
797 target/arm/ata-pp5020.c
798 target/arm/wmcodec-pp.c
799 target/arm/i2s-pp.c
800 target/arm/adc-pp5020.c
801 target/arm/olympus/mrobe-100/backlight-mr100.c
802 target/arm/olympus/mrobe-100/button-mr100.c
803 target/arm/olympus/mrobe-100/lcd-mr100.c
804 target/arm/olympus/mrobe-100/lcd-as-mr100.S
805 target/arm/olympus/mrobe-100/power-mr100.c
806 target/arm/olympus/mrobe-100/powermgmt-mr100.c
807 target/arm/usb-fw-pp502x.c
808 #endif /* SIMULATOR */
809 #endif /* MROBE_100 */
811 #ifdef ELIO_TPJ1022
812 #ifndef SIMULATOR
813 target/arm/ata-as-arm.S
814 target/arm/ata-pp5020.c
815 target/arm/wmcodec-pp.c
816 target/arm/i2s-pp.c
817 target/arm/tatung/tpj1022/adc-tpj1022.c
818 target/arm/tatung/tpj1022/backlight-tpj1022.c
819 target/arm/tatung/tpj1022/button-tpj1022.c
820 target/arm/tatung/tpj1022/lcd-tpj1022.c
821 target/arm/tatung/tpj1022/power-tpj1022.c
822 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
823 target/arm/usb-fw-pp502x.c
824 #endif /* SIMULATOR */
825 #endif /* ELIO_TPJ1022 */
827 #ifdef IPOD_4G
828 #ifndef SIMULATOR
829 drivers/pcf50605.c
830 target/arm/wmcodec-pp.c
831 target/arm/i2s-pp.c
832 target/arm/ata-as-arm.S
833 target/arm/ata-pp5020.c
834 target/arm/ipod/adc-ipod-pcf.c
835 target/arm/ipod/backlight-4g_color.c
836 target/arm/ipod/button-clickwheel.c
837 target/arm/ipod/lcd-as-gray.S
838 target/arm/ipod/lcd-gray.c
839 target/arm/ipod/power-ipod.c
840 target/arm/ipod/powermgmt-ipod-pcf.c
841 target/arm/usb-fw-pp502x.c
842 #endif /* SIMULATOR */
843 #endif /* IPOD_4G */
845 #ifdef IPOD_COLOR
846 #ifndef SIMULATOR
847 drivers/pcf50605.c
848 target/arm/ata-as-arm.S
849 target/arm/ata-pp5020.c
850 target/arm/wmcodec-pp.c
851 target/arm/i2s-pp.c
852 target/arm/ipod/adc-ipod-pcf.c
853 target/arm/ipod/backlight-4g_color.c
854 target/arm/ipod/button-clickwheel.c
855 target/arm/ipod/lcd-color_nano.c
856 target/arm/ipod/power-ipod.c
857 target/arm/ipod/powermgmt-ipod-pcf.c
858 target/arm/usb-fw-pp502x.c
859 #endif /* SIMULATOR */
860 #endif /* IPOD_COLOR */
862 #ifdef IPOD_NANO
863 #ifndef SIMULATOR
864 drivers/pcf50605.c
865 target/arm/ata-as-arm.S
866 target/arm/ata-pp5020.c
867 target/arm/wmcodec-pp.c
868 target/arm/i2s-pp.c
869 target/arm/ipod/adc-ipod-pcf.c
870 target/arm/ipod/backlight-nano_video.c
871 target/arm/ipod/button-clickwheel.c
872 target/arm/ipod/lcd-color_nano.c
873 target/arm/ipod/power-ipod.c
874 target/arm/ipod/powermgmt-ipod-pcf.c
875 target/arm/usb-fw-pp502x.c
876 #endif /* SIMULATOR */
877 #endif /* IPOD_NANO */
879 #ifdef IPOD_VIDEO
880 #ifndef SIMULATOR
881 drivers/pcf50605.c
882 target/arm/ata-as-arm.S
883 target/arm/ata-pp5020.c
884 target/arm/wmcodec-pp.c
885 target/arm/i2s-pp.c
886 target/arm/ipod/adc-ipod-pcf.c
887 target/arm/ipod/backlight-nano_video.c
888 target/arm/ipod/button-clickwheel.c
889 target/arm/ipod/power-ipod.c
890 target/arm/ipod/powermgmt-ipod-pcf.c
891 target/arm/ipod/video/lcd-as-video.S
892 target/arm/ipod/video/lcd-video.c
893 target/arm/usb-fw-pp502x.c
894 #endif /* SIMULATOR */
895 #endif /* IPOD_VIDEO */
897 #ifdef IPOD_3G
898 #ifndef SIMULATOR
899 drivers/pcf50605.c
900 target/arm/ata-pp5002.c
901 target/arm/wmcodec-pp.c
902 target/arm/i2s-pp.c
903 target/arm/ipod/adc-ipod-pcf.c
904 target/arm/ipod/3g/backlight-3g.c
905 target/arm/ipod/button-1g-3g.c
906 target/arm/ipod/lcd-as-gray.S
907 target/arm/ipod/lcd-gray.c
908 target/arm/ipod/power-ipod.c
909 target/arm/ipod/powermgmt-ipod-pcf.c
910 target/arm/usb-fw-pp5002.c
911 #endif /* SIMULATOR */
912 #endif /* IPOD_3G */
914 #ifdef IPOD_1G2G
915 #ifndef SIMULATOR
916 target/arm/ata-pp5002.c
917 target/arm/wmcodec-pp.c
918 target/arm/i2s-pp.c
919 target/arm/ipod/1g2g/adc-ipod-1g2g.c
920 target/arm/ipod/1g2g/backlight-1g2g.c
921 target/arm/ipod/1g2g/powermgmt-1g2g.c
922 target/arm/ipod/button-1g-3g.c
923 target/arm/ipod/lcd-as-gray.S
924 target/arm/ipod/lcd-gray.c
925 target/arm/ipod/power-ipod.c
926 target/arm/usb-fw-pp5002.c
927 #endif /* SIMULATOR */
928 #endif /* IPOD_1G2G */
930 #ifdef IPOD_MINI
931 #ifndef SIMULATOR
932 drivers/pcf50605.c
933 target/arm/ata-as-arm.S
934 target/arm/ata-pp5020.c
935 target/arm/wmcodec-pp.c
936 target/arm/i2s-pp.c
937 target/arm/ipod/adc-ipod-pcf.c
938 target/arm/ipod/backlight-mini1g_mini2g.c
939 target/arm/ipod/button-mini1g.c
940 target/arm/ipod/lcd-as-gray.S
941 target/arm/ipod/lcd-gray.c
942 target/arm/ipod/power-ipod.c
943 target/arm/ipod/powermgmt-ipod-pcf.c
944 target/arm/usb-fw-pp502x.c
945 #endif /* SIMULATOR */
946 #endif /* IPOD_MINI */
948 #ifdef IPOD_MINI2G
949 #ifndef SIMULATOR
950 drivers/pcf50605.c
951 target/arm/ata-as-arm.S
952 target/arm/ata-pp5020.c
953 target/arm/wmcodec-pp.c
954 target/arm/i2s-pp.c
955 target/arm/ipod/adc-ipod-pcf.c
956 target/arm/ipod/backlight-mini1g_mini2g.c
957 target/arm/ipod/button-clickwheel.c
958 target/arm/ipod/lcd-as-gray.S
959 target/arm/ipod/lcd-gray.c
960 target/arm/ipod/power-ipod.c
961 target/arm/ipod/powermgmt-ipod-pcf.c
962 target/arm/usb-fw-pp502x.c
963 #endif /* SIMULATOR */
964 #endif /* IPOD_MINI2G */
966 #ifdef IRIVER_IFP7XX
967 #ifndef SIMULATOR
968 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
969 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
970 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
971 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
972 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
973 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
974 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
975 #ifndef BOOTLOADER
976 target/arm/pnx0101/pcm-pnx0101.c
977 #endif /* BOOTLOADER */
978 #endif /* SIMULATOR */
979 #endif /* IRIVER_IFP7XX */
981 #ifdef LOGIK_DAX
982 #ifndef SIMULATOR
983 drivers/nand_id.c
984 target/arm/ata-nand-telechips.c
985 target/arm/lcd-ssd1815.c
986 target/arm/tcc77x/adc-tcc77x.c
987 target/arm/tcc77x/kernel-tcc77x.c
988 target/arm/tcc77x/powermgmt-tcc77x.c
989 target/arm/tcc77x/system-tcc77x.c
990 target/arm/tcc77x/timer-tcc77x.c
991 target/arm/tcc77x/usb-tcc77x.c
992 target/arm/tcc77x/logikdax/button-logikdax.c
993 target/arm/tcc77x/logikdax/power-logikdax.c
994 #ifndef BOOTLOADER
995 target/arm/wmcodec-telechips.c
996 target/arm/tcc77x/debug-tcc77x.c
997 target/arm/pcm-telechips.c
998 target/arm/tcc77x/logikdax/audio-logikdax.c
999 #endif /* BOOTLOADER */
1000 #endif /* SIMULATOR */
1001 #endif /* LOGIK_DAX */
1003 #ifdef SANSA_M200
1004 #ifndef SIMULATOR
1005 drivers/nand_id.c
1006 target/arm/lcd-ssd1815.c
1007 target/arm/ata-nand-telechips.c
1008 target/arm/tcc77x/adc-tcc77x.c
1009 target/arm/tcc77x/kernel-tcc77x.c
1010 target/arm/tcc77x/powermgmt-tcc77x.c
1011 target/arm/tcc77x/system-tcc77x.c
1012 target/arm/tcc77x/timer-tcc77x.c
1013 target/arm/tcc77x/usb-tcc77x.c
1014 target/arm/tcc77x/m200/button-m200.c
1015 target/arm/tcc77x/m200/power-m200.c
1016 #ifndef BOOTLOADER
1017 target/arm/wmcodec-telechips.c
1018 target/arm/tcc77x/debug-tcc77x.c
1019 target/arm/pcm-telechips.c
1020 target/arm/tcc77x/m200/audio-m200.c
1021 #endif /* BOOTLOADER */
1022 #endif /* SIMULATOR */
1023 #endif /* SANSA_M200 */
1025 #ifdef SANSA_C100
1026 #ifndef SIMULATOR
1027 drivers/nand_id.c
1028 target/arm/ata-nand-telechips.c
1029 target/arm/tcc77x/adc-tcc77x.c
1030 target/arm/tcc77x/kernel-tcc77x.c
1031 target/arm/tcc77x/c100/lcd-S6B33B2.c
1032 target/arm/tcc77x/powermgmt-tcc77x.c
1033 target/arm/tcc77x/system-tcc77x.c
1034 target/arm/tcc77x/timer-tcc77x.c
1035 target/arm/tcc77x/usb-tcc77x.c
1036 target/arm/tcc77x/c100/button-c100.c
1037 target/arm/tcc77x/c100/power-c100.c
1038 #ifndef BOOTLOADER
1039 target/arm/tcc77x/debug-tcc77x.c
1040 target/arm/pcm-telechips.c
1041 #endif /* BOOTLOADER */
1042 #endif /* SIMULATOR */
1043 #endif /* SANSA_C100 */
1045 #ifdef SANSA_CLIP
1046 #ifndef SIMULATOR
1047 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1048 target/arm/as3525/sansa-clip/button-clip.c
1049 target/arm/as3525/as3525-codec.c
1050 #endif /* !SIMULATOR */
1051 #endif /* SANSA_CLIP */
1053 #ifdef SANSA_E200V2
1054 #ifndef SIMULATOR
1055 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1056 target/arm/as3525/sansa-e200v2/button-e200v2.c
1057 target/arm/as3525/sansa-e200v2/backlight-e200v2.c
1058 target/arm/as3525/as3525-codec.c
1059 #endif /* !SIMULATOR */
1060 #endif /* SANSA_E200V2 */
1062 #ifdef SANSA_M200V2
1063 #ifndef SIMULATOR
1064 target/arm/lcd-ssd1815.c
1065 target/arm/as3525/sansa-m200v2/button-m200v2.c
1066 target/arm/as3525/as3525-codec.c
1067 #endif /* !SIMULATOR */
1068 #endif /* SANSA_M200V2 */
1070 #ifdef IAUDIO_7
1071 #ifndef SIMULATOR
1072 drivers/nand_id.c
1073 drivers/pcf50606.c
1074 target/arm/ata-nand-telechips.c
1075 target/arm/tcc77x/system-tcc77x.c
1076 target/arm/tcc77x/kernel-tcc77x.c
1077 target/arm/tcc77x/timer-tcc77x.c
1078 target/arm/tcc77x/adc-tcc77x.c
1079 target/arm/tcc77x/powermgmt-tcc77x.c
1080 target/arm/tcc77x/usb-tcc77x.c
1081 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1082 target/arm/tcc77x/iaudio7/power-iaudio7.c
1083 target/arm/tcc77x/iaudio7/button-iaudio7.c
1084 target/arm/tcc77x/iaudio7/ata2501.c
1085 #ifndef BOOTLOADER
1086 target/arm/wmcodec-telechips.c
1087 target/arm/pcm-telechips.c
1088 target/arm/tcc77x/debug-tcc77x.c
1089 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1090 #endif /* BOOTLOADER */
1091 #endif /* SIMULATOR */
1092 #endif /* IAUDIO_7 */
1094 #ifdef COWON_D2
1095 #ifndef SIMULATOR
1096 drivers/nand_id.c
1097 drivers/pcf50606.c
1098 target/arm/lcd-as-memframe.S
1099 target/arm/ata-nand-telechips.c
1100 target/arm/tcc780x/adc-tcc780x.c
1101 target/arm/tcc780x/system-tcc780x.c
1102 target/arm/tcc780x/cowond2/button-cowond2.c
1103 target/arm/tcc780x/cowond2/lcd-cowond2.c
1104 target/arm/tcc780x/cowond2/power-cowond2.c
1105 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1106 target/arm/tcc780x/cowond2/usb-cowond2.c
1107 target/arm/tcc780x/cowond2/backlight-cowond2.c
1108 #ifndef BOOTLOADER
1109 target/arm/tcc780x/kernel-tcc780x.c
1110 target/arm/tcc780x/timer-tcc780x.c
1111 target/arm/wmcodec-telechips.c
1112 target/arm/tcc780x/debug-tcc780x.c
1113 target/arm/pcm-telechips.c
1114 target/arm/tcc780x/cowond2/audio-cowond2.c
1115 #endif /* BOOTLOADER */
1116 #endif /* SIMULATOR */
1117 #endif /* COWON_D2 */
1119 #if CONFIG_CPU==S5L8700
1120 target/arm/s5l8700/system-s5l8700.c
1121 target/arm/s5l8700/ata-nand-s5l8700.c
1122 #endif
1124 #ifdef MEIZU_M6SL
1125 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1126 drivers/qt1106.c
1127 #ifndef SIMULATOR
1128 #ifndef BOOTLOADER
1129 #endif /* BOOTLOADER */
1130 #endif /* SIMULATOR */
1131 #endif /* MEIZU_M6SL */
1133 #ifdef MEIZU_M6SP
1134 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1135 #ifndef SIMULATOR
1136 #ifndef BOOTLOADER
1137 #endif /* BOOTLOADER */
1138 #endif /* SIMULATOR */
1139 #endif /* MEIZU_M6SP */
1141 #ifdef MEIZU_M3
1142 target/arm/s5l8700/meizu-m3/lcd-m3.c
1143 drivers/qt1106.c
1144 #ifndef SIMULATOR
1145 #ifndef BOOTLOADER
1146 #endif /* BOOTLOADER */
1147 #endif /* SIMULATOR */
1148 #endif /* MEIZU_M3 */
1150 #if CONFIG_CPU==JZ4732
1151 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1152 target/mips/ingenic_jz47xx/lcd-jz4740.c
1153 target/mips/ingenic_jz47xx/kernel-jz4740.c
1154 target/mips/ingenic_jz47xx/system-jz4740.c
1155 target/mips/ingenic_jz47xx/usb-jz4740.c
1156 drivers/nand_id.c
1157 #endif
1159 #ifdef ONDA_VX747
1160 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx747.c
1161 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1162 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1163 #endif
1165 #ifdef ONDA_VX767
1166 target/mips/ingenic_jz47xx/onda_vx767/backlight-ondavx767.c
1167 target/mips/ingenic_jz47xx/onda_vx767/button-ondavx767.c
1168 target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c
1169 #endif