Just correct a typo in a comment.
[kugel-rb.git] / firmware / SOURCES
blob4407b0e8b90b9e1dfd0181abee0a25f05190bb7c
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/memcpy-sh.S
271 target/sh/memmove-sh.S
272 target/sh/memset-sh.S
273 target/sh/strlen-sh.S
274 target/sh/system-sh.c
275 target/sh/archos/descramble.S
276 #endif /* SIMULATOR */
278 #elif defined(CPU_COLDFIRE)
280 #ifndef SIMULATOR
281 target/coldfire/crt0.S
282 #ifdef HAVE_PRIORITY_SCHEDULING
283 common/ffs.c
284 target/coldfire/ffs-coldfire.S
285 #endif
286 target/coldfire/memcpy-coldfire.S
287 target/coldfire/memmove-coldfire.S
288 target/coldfire/memset-coldfire.S
289 target/coldfire/strlen-coldfire.S
290 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
291  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
292 target/coldfire/memset16-coldfire.S
293 #endif
294 target/coldfire/system-coldfire.c
295 #ifndef BOOTLOADER
296 target/coldfire/pcm-coldfire.c
297 #endif /* BOOTLOADER */
298 #if CONFIG_I2C == I2C_COLDFIRE
299 target/coldfire/i2c-coldfire.c
300 #endif /* CONFIG_I2C == I2C_COLDFIRE */
301 #endif /* SIMULATOR */
303 #elif defined(CPU_PP) || defined(CPU_ARM)
304 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
305 target/arm/memcpy-arm.S
306 target/arm/memmove-arm.S
307 common/strlen.c
308 #ifndef SIMULATOR
309 target/arm/memset-arm.S
310 target/arm/memset16-arm.S
311 #ifdef HAVE_PRIORITY_SCHEDULING
312 target/arm/ffs-arm.S
313 #endif
314 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
315 target/arm/i2c-pp.c
316 #elif CONFIG_I2C == I2C_PNX0101
317 target/arm/pnx0101/i2c-pnx0101.c
318 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
319 target/arm/i2c-telechips.c
320 #elif CONFIG_I2C == I2C_S3C2440
321 /* no i2c driver yet */
322 #endif
324 #if CONFIG_CPU == PNX0101
325 target/arm/pnx0101/system-pnx0101.c
326 #endif
328 #if CONFIG_CPU == AS3525
329 target/arm/as3525/system-as3525.c
330 #endif
332 #if defined(CPU_PP)
333 #if CONFIG_CPU == PP5002
334 target/arm/system-pp5002.c
335 #elif defined CPU_PP502x
336 target/arm/system-pp502x.c
337 #endif
338 #ifdef BOOTLOADER
339 target/arm/crt0-pp-bl.S
340 #else
341 target/arm/pcm-pp.c
342 #if !defined(SANSA_E200) && !defined(SANSA_C200)
343 target/arm/audio-pp.c
344 #endif /* SANSA_E200 */
345 target/arm/crt0-pp.S
346 #endif
347 #elif CONFIG_CPU == PNX0101
348 target/arm/pnx0101/crt0-pnx0101.S
349 #elif CONFIG_CPU==DM320
350 target/arm/tms320dm320/crt0.S
351 #elif CONFIG_CPU==S3C2440
352 target/arm/s3c2440/crt0.S
353 #elif defined(CPU_TCC77X)
354 target/arm/tcc77x/crt0.S
355 #elif defined(CPU_TCC780X)
356 target/arm/tcc780x/crt0.S
357 #elif CONFIG_CPU==IMX31L
358 target/arm/imx31/crt0.S
359 #elif CONFIG_CPU==S5L8700
360 target/arm/s5l8700/crt0.S
361 #elif defined(CPU_ARM)
362 target/arm/crt0.S
363 #endif /* defined(CPU_*) */
364 #endif /* SIMULATOR */
366 #elif defined(CPU_MIPS)
367 #undef mips
368 /*target/mips/memcpy.S
369 target/mips/memset.S
370 common/memset16.c
371 target/mips/strlen.S*/
372 common/memcpy.c
373 common/memmove.c
374 common/memset.c
375 common/memset16.c
376 common/strlen.c
377 #if CONFIG_CPU==JZ4732
378 target/mips/ingenic_jz47xx/crt0.S
379 #endif /* CONFIG_CPU == JZ4732 */
381 #else
383 #ifdef HAVE_PRIORITY_SCHEDULING
384 common/ffs.c
385 #endif
386 common/memcpy.c
387 common/memmove.c
388 common/memset.c
389 common/memset16.c
390 common/strlen.c
391 #ifndef SIMULATOR
392 crt0.S
393 drivers/i2c.c
394 #endif /* SIMULATOR */
396 #endif /* defined(CPU_*) */
398 #ifdef ARCHOS_PLAYER
399 #ifndef SIMULATOR
400 target/sh/archos/ata-archos.c
401 target/sh/archos/ata-as-archos.S
402 target/sh/archos/player/button-player.c
403 target/sh/archos/player/hwcompat-player.c
404 target/sh/archos/player/lcd-as-player.S
405 target/sh/archos/player/lcd-player.c
406 target/sh/archos/player/power-player.c
407 target/sh/archos/player/powermgmt-player.c
408 target/sh/archos/player/usb-player.c
409 #endif /* SIMULATOR */
410 #endif /* ARCHOS_PLAYER */
412 #ifdef ARCHOS_RECORDER
413 #ifndef SIMULATOR
414 target/sh/archos/ata-archos.c
415 target/sh/archos/ata-as-archos.S
416 target/sh/archos/lcd-archos-bitmap.c
417 target/sh/archos/lcd-as-archos-bitmap.S   
418 target/sh/archos/recorder/button-recorder.c
419 target/sh/archos/recorder/power-recorder.c
420 target/sh/archos/recorder/powermgmt-recorder.c
421 target/sh/archos/recorder/usb-recorder.c
422 #endif /* SIMULATOR */
423 #endif /* ARCHOS_RECORDER */
425 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
426 #ifndef SIMULATOR
427 target/sh/archos/ata-archos.c
428 target/sh/archos/ata-as-archos.S
429 target/sh/archos/lcd-archos-bitmap.c
430 target/sh/archos/lcd-as-archos-bitmap.S
431 target/sh/archos/fm_v2/button-fm_v2.c
432 target/sh/archos/fm_v2/power-fm_v2.c
433 target/sh/archos/fm_v2/powermgmt-fm_v2.c
434 target/sh/archos/fm_v2/usb-fm_v2.c
435 #endif /* SIMULATOR */
436 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
438 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
439 #ifndef SIMULATOR
440 target/sh/archos/lcd-archos-bitmap.c
441 target/sh/archos/lcd-as-archos-bitmap.S
442 target/sh/archos/ondio/button-ondio.c
443 target/sh/archos/ondio/power-ondio.c
444 target/sh/archos/ondio/powermgmt-ondio.c
445 target/sh/archos/ondio/usb-ondio.c
446 #if (CONFIG_TUNER & TEA5767)
447 target/sh/archos/ondio/fmradio_i2c-ondio.c
448 #endif
449 #endif /* SIMULATOR */
450 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
452 #ifdef SANSA_E200
453 #ifndef SIMULATOR
454 target/arm/lcd-as-memframe.S
455 target/arm/ata-sd-pp.c
456 target/arm/sandisk/sansa-e200/lcd-e200.c
457 target/arm/adc-as3514.c
458 target/arm/sandisk/backlight-c200_e200.c
459 target/arm/usb-fw-pp502x.c
460 target/arm/sandisk/sansa-e200/button-e200.c
461 target/arm/sandisk/power-c200_e200.c
462 target/arm/sandisk/sansa-e200/powermgmt-e200.c
463 target/arm/i2s-pp.c
464 #ifndef BOOTLOADER
465 target/arm/sandisk/audio-c200_e200.c
466 #endif /* BOOTLOADER */
467 #endif /* SIMULATOR */
468 #endif /* SANSA_E200 */
470 #ifdef SANSA_C200
471 #ifndef SIMULATOR
472 target/arm/ata-sd-pp.c
473 target/arm/sandisk/sansa-c200/lcd-c200.c
474 target/arm/sandisk/sansa-c200/lcd-as-c200.S
475 target/arm/adc-as3514.c
476 target/arm/sandisk/backlight-c200_e200.c
477 target/arm/usb-fw-pp502x.c
478 target/arm/sandisk/sansa-c200/button-c200.c
479 target/arm/sandisk/power-c200_e200.c
480 target/arm/sandisk/sansa-c200/powermgmt-c200.c
481 target/arm/i2s-pp.c
482 #ifndef BOOTLOADER
483 target/arm/sandisk/audio-c200_e200.c
484 #endif /* BOOTLOADER */
485 #endif /* SIMULATOR */
486 #endif /* SANSA_C200 */
488 #ifdef PHILIPS_SA9200
489 #ifndef SIMULATOR
490 target/arm/ata-sd-pp.c
491 target/arm/philips/sa9200/lcd-sa9200.c
492 target/arm/adc-as3514.c
493 target/arm/philips/sa9200/backlight-sa9200.c
494 target/arm/usb-fw-pp502x.c
495 target/arm/philips/sa9200/button-sa9200.c
496 target/arm/philips/sa9200/power-sa9200.c
497 target/arm/philips/sa9200/powermgmt-sa9200.c
498 target/arm/i2s-pp.c
499 #endif /* SIMULATOR */
500 #endif /* PHILIPS_SA9200 */
502 #ifdef PHILIPS_HDD1630
503 #ifndef SIMULATOR
504 target/arm/ata-as-arm.S
505 target/arm/ata-pp5020.c
506 target/arm/wmcodec-pp.c
507 target/arm/i2s-pp.c
508 target/arm/adc-pp5020.c
509 target/arm/philips/hdd1630/backlight-hdd1630.c
510 target/arm/philips/hdd1630/button-hdd1630.c
511 target/arm/philips/hdd1630/lcd-hdd1630.c
512 target/arm/philips/hdd1630/power-hdd1630.c
513 target/arm/philips/hdd1630/powermgmt-hdd1630.c
514 target/arm/usb-fw-pp502x.c
515 #endif /* SIMULATOR */
516 #endif /* PHILIPS_HDD1630 */
518 #ifdef IAUDIO_X5
519 #ifndef SIMULATOR
520 target/coldfire/ata-as-coldfire.S
521 target/coldfire/pcf50606-coldfire.c
522 target/coldfire/iaudio/adc-iaudio.c
523 target/coldfire/iaudio/ata-iaudio.c
524 target/coldfire/iaudio/lcd-remote-as-iaudio.S
525 target/coldfire/iaudio/lcd-remote-iaudio.c
526 target/coldfire/iaudio/pcf50606-iaudio.c
527 target/coldfire/iaudio/powermgmt-iaudio.c
528 target/coldfire/iaudio/system-iaudio.c
529 target/coldfire/iaudio/usb-iaudio.c
530 target/coldfire/iaudio/x5/backlight-x5.c
531 target/coldfire/iaudio/x5/button-x5.c
532 target/coldfire/iaudio/x5/ds2411-x5.c
533 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
534 target/coldfire/iaudio/x5/lcd-as-x5.S
535 target/coldfire/iaudio/x5/lcd-x5.c
536 target/coldfire/iaudio/x5/m5636-x5.c
537 target/coldfire/iaudio/x5/power-x5.c
538 #ifndef BOOTLOADER
539 target/coldfire/iaudio/x5/audio-x5.c
540 #endif
541 #endif /* SIMULATOR */
542 #endif /* IAUDIO_X5 */
544 #ifdef IAUDIO_M5
545 #ifndef SIMULATOR
546 target/coldfire/ata-as-coldfire.S
547 target/coldfire/pcf50606-coldfire.c
548 target/coldfire/iaudio/adc-iaudio.c
549 target/coldfire/iaudio/ata-iaudio.c
550 target/coldfire/iaudio/lcd-remote-as-iaudio.S
551 target/coldfire/iaudio/lcd-remote-iaudio.c
552 target/coldfire/iaudio/m5/backlight-m5.c
553 target/coldfire/iaudio/m5/button-m5.c
554 target/coldfire/iaudio/m5/lcd-as-m5.S
555 target/coldfire/iaudio/m5/lcd-m5.c
556 target/coldfire/iaudio/m5/power-m5.c
557 target/coldfire/iaudio/pcf50606-iaudio.c
558 target/coldfire/iaudio/powermgmt-iaudio.c
559 target/coldfire/iaudio/system-iaudio.c
560 target/coldfire/iaudio/usb-iaudio.c
561 #ifndef BOOTLOADER
562 target/coldfire/iaudio/m5/audio-m5.c
563 #endif
564 #endif /* SIMULATOR */
565 #endif /* IAUDIO_M5 */
567 #ifdef IAUDIO_M3
568 #ifndef SIMULATOR
569 target/coldfire/ata-as-coldfire.S
570 target/coldfire/iaudio/m3/adc-m3.c
571 target/coldfire/iaudio/m3/ata-m3.c
572 target/coldfire/iaudio/m3/backlight-m3.c
573 target/coldfire/iaudio/m3/button-m3.c
574 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
575 target/coldfire/iaudio/m3/lcd-m3.c
576 target/coldfire/iaudio/m3/lcd-as-m3.S
577 target/coldfire/iaudio/m3/power-m3.c
578 target/coldfire/iaudio/m3/powermgmt-m3.c
579 target/coldfire/iaudio/m3/system-m3.c
580 target/coldfire/iaudio/m3/usb-m3.c
581 #ifndef BOOTLOADER
582 target/coldfire/iaudio/m3/audio-m3.c
583 #endif
584 #endif /* SIMULATOR */
585 #endif /* IAUDIO_M3 */
587 #ifdef IRIVER_IFP7XX_SERIES
588 #ifdef STUB
589 ifp_usb_serial.c
590 common/sscanf.c
591 #endif /* STUB */
592 #endif /* IRIVER_IFP7XX_SERIES */
594 #ifdef IRIVER_H300_SERIES
595 #ifndef SIMULATOR
596 target/coldfire/ata-as-coldfire.S
597 target/coldfire/pcf50606-coldfire.c
598 target/coldfire/iriver/ata-iriver.c
599 target/coldfire/iriver/lcd-remote-iriver.c
600 target/coldfire/iriver/lcd-remote-as-iriver.S
601 target/coldfire/iriver/system-iriver.c
602 target/coldfire/iriver/fmradio_i2c-iriver.c
603 target/coldfire/iriver/h300/sw_i2c-h300.c
604 target/coldfire/iriver/h300/adc-h300.c
605 target/coldfire/iriver/h300/backlight-h300.c
606 target/coldfire/iriver/h300/button-h300.c
607 target/coldfire/iriver/h300/pcf50606-h300.c
608 target/coldfire/iriver/h300/lcd-as-h300.S
609 target/coldfire/iriver/h300/lcd-h300.c
610 target/coldfire/iriver/h300/power-h300.c
611 target/coldfire/iriver/h300/powermgmt-h300.c
612 target/coldfire/iriver/h300/usb-h300.c
613 #ifndef BOOTLOADER
614 target/coldfire/iriver/audio-iriver.c
615 #endif
616 #endif /* SIMULATOR */
617 #endif /* IRIVER_H300_SERIES */
619 #ifdef IRIVER_H100_SERIES
620 #ifndef SIMULATOR
621 drivers/sw_i2c.c
622 target/coldfire/ata-as-coldfire.S
623 target/coldfire/iriver/ata-iriver.c
624 target/coldfire/iriver/lcd-remote-iriver.c
625 target/coldfire/iriver/lcd-remote-as-iriver.S
626 target/coldfire/iriver/system-iriver.c
627 target/coldfire/iriver/fmradio_i2c-iriver.c
628 target/coldfire/iriver/h100/adc-h100.c
629 target/coldfire/iriver/h100/backlight-h100.c
630 target/coldfire/iriver/h100/button-h100.c
631 target/coldfire/iriver/h100/lcd-as-h100.S
632 target/coldfire/iriver/h100/lcd-h100.c
633 target/coldfire/iriver/h100/power-h100.c
634 target/coldfire/iriver/h100/powermgmt-h100.c
635 #ifndef BOOTLOADER
636 target/coldfire/iriver/audio-iriver.c
637 target/coldfire/iriver/h100/spdif-h100.c
638 #endif
639 target/coldfire/iriver/h100/usb-h100.c
640 #endif /* SIMULATOR */
641 #endif /* IRIVER_H100_SERIES */
643 #ifdef IRIVER_H10
644 #ifndef SIMULATOR
645 target/arm/ata-as-arm.S
646 target/arm/ata-pp5020.c
647 target/arm/wmcodec-pp.c
648 target/arm/i2s-pp.c
649 target/arm/adc-pp5020.c
650 target/arm/iriver/h10/backlight-h10.c
651 target/arm/iriver/h10/button-h10.c
652 target/arm/iriver/h10/fmradio_i2c-h10.c
653 target/arm/iriver/h10/lcd-h10_20gb.c
654 target/arm/iriver/h10/lcd-as-h10.S
655 target/arm/iriver/h10/power-h10.c
656 target/arm/iriver/h10/powermgmt-h10.c
657 target/arm/usb-fw-pp502x.c
658 #endif /* SIMULATOR */
659 #endif /* IRIVER_H10 */
661 #ifdef IRIVER_H10_5GB
662 #ifndef SIMULATOR
663 target/arm/ata-as-arm.S
664 target/arm/ata-pp5020.c
665 target/arm/wmcodec-pp.c
666 target/arm/i2s-pp.c
667 target/arm/adc-pp5020.c
668 target/arm/iriver/h10/backlight-h10.c
669 target/arm/iriver/h10/button-h10.c
670 target/arm/iriver/h10/fmradio_i2c-h10.c
671 target/arm/iriver/h10/lcd-h10_5gb.c
672 target/arm/iriver/h10/power-h10.c
673 target/arm/iriver/h10/powermgmt-h10.c
674 target/arm/usb-fw-pp502x.c
675 #endif /* SIMULATOR */
676 #endif /* IRIVER_H10_5GB */
678 #ifdef GIGABEAT_F
679 #ifndef SIMULATOR
680 target/arm/lcd-as-memframe.S
681 target/arm/mmu-arm.c
682 target/arm/s3c2440/debug-s3c2440.c
683 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
684 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
685 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
686 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
687 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
688 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
689 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
690 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
691 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
692 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
693 #ifndef BOOTLOADER
694 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
695 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
696 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
697 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
698 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
699 #endif
700 #endif /* SIMULATOR */
701 #endif /* GIGABEAT_F */
703 #ifdef GIGABEAT_S
704 #ifndef SIMULATOR
705 target/arm/lcd-as-memframe.S
706 target/arm/mmu-arm.c
707 target/arm/imx31/debug-imx31.c
708 target/arm/imx31/rolo_restart.S
709 target/arm/imx31/gigabeat-s/adc-imx31.c
710 target/arm/imx31/gigabeat-s/ata-imx31.c
711 target/arm/imx31/gigabeat-s/avic-imx31.c
712 target/arm/imx31/gigabeat-s/backlight-imx31.c
713 target/arm/imx31/gigabeat-s/button-imx31.c
714 target/arm/imx31/gigabeat-s/clkctl-imx31.c
715 target/arm/imx31/gigabeat-s/dma_start.c
716 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
717 target/arm/imx31/gigabeat-s/gpio-imx31.c
718 target/arm/imx31/gigabeat-s/kernel-imx31.c
719 target/arm/imx31/gigabeat-s/i2c-imx31.c
720 target/arm/imx31/gigabeat-s/i2s-imx31.c
721 target/arm/imx31/gigabeat-s/lcd-imx31.c
722 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
723 target/arm/imx31/gigabeat-s/mc13783-imx31.c
724 target/arm/imx31/gigabeat-s/mmu-imx31.c
725 target/arm/imx31/gigabeat-s/power-imx31.c
726 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
727 target/arm/imx31/gigabeat-s/spi-imx31.c
728 target/arm/imx31/gigabeat-s/system-imx31.c
729 target/arm/imx31/gigabeat-s/usb-imx31.c
730 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
731 #ifndef BOOTLOADER
732 target/arm/imx31/gigabeat-s/pcm-imx31.c
733 #endif
734 #endif /* SIMULATOR */
735 #endif /* GIGABEAT_S */
737 #if CONFIG_CPU == DM320
738 target/arm/tms320dm320/debug-dm320.c
739 target/arm/tms320dm320/dsp-dm320.c
740 target/arm/tms320dm320/i2c-dm320.c
741 target/arm/tms320dm320/kernel-dm320.c
742 target/arm/tms320dm320/spi-dm320.c
743 target/arm/tms320dm320/system-dm320.c
744 target/arm/tms320dm320/timer-dm320.c
745 target/arm/tms320dm320/uart-dm320.c
746 #endif /* CONFIG_CPU == DM320 */
748 #ifdef MROBE_500
749 #ifndef SIMULATOR
750 target/arm/lcd-as-memframe.S
751 target/arm/mmu-arm.c
752 target/arm/tms320dm320/mrobe-500/adc-mr500.c
753 target/arm/tms320dm320/mrobe-500/ata-mr500.c
754 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
755 target/arm/tms320dm320/mrobe-500/button-mr500.c
756 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
757 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
758 #if defined(HAVE_REMOTE_LCD)
759 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
760 #endif
761 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
762 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
763 target/arm/tms320dm320/mrobe-500/power-mr500.c
764 target/arm/tms320dm320/mrobe-500/usb-mr500.c
765 #endif /* SIMULATOR */
766 #endif /* MROBE_500 */
768 #ifdef CREATIVE_ZVx
769 #ifndef SIMULATOR
770 target/arm/ata-as-arm.S
771 target/arm/lcd-as-memframe.S
772 target/arm/mmu-arm.c
773 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
774 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
775 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
776 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
777 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
778 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
779 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
780 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
781 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
782 #endif /* SIMULATOR */
783 #endif /* CREATIVE_ZVx */
785 #ifdef MROBE_100
786 #ifndef SIMULATOR
787 drivers/sw_i2c.c
788 target/arm/ata-as-arm.S
789 target/arm/ata-pp5020.c
790 target/arm/wmcodec-pp.c
791 target/arm/i2s-pp.c
792 target/arm/adc-pp5020.c
793 target/arm/olympus/mrobe-100/backlight-mr100.c
794 target/arm/olympus/mrobe-100/button-mr100.c
795 target/arm/olympus/mrobe-100/lcd-mr100.c
796 target/arm/olympus/mrobe-100/lcd-as-mr100.S
797 target/arm/olympus/mrobe-100/power-mr100.c
798 target/arm/olympus/mrobe-100/powermgmt-mr100.c
799 target/arm/usb-fw-pp502x.c
800 #endif /* SIMULATOR */
801 #endif /* MROBE_100 */
803 #ifdef ELIO_TPJ1022
804 #ifndef SIMULATOR
805 target/arm/ata-as-arm.S
806 target/arm/ata-pp5020.c
807 target/arm/wmcodec-pp.c
808 target/arm/i2s-pp.c
809 target/arm/tatung/tpj1022/adc-tpj1022.c
810 target/arm/tatung/tpj1022/backlight-tpj1022.c
811 target/arm/tatung/tpj1022/button-tpj1022.c
812 target/arm/tatung/tpj1022/lcd-tpj1022.c
813 target/arm/tatung/tpj1022/power-tpj1022.c
814 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
815 target/arm/usb-fw-pp502x.c
816 #endif /* SIMULATOR */
817 #endif /* ELIO_TPJ1022 */
819 #ifdef IPOD_4G
820 #ifndef SIMULATOR
821 drivers/pcf50605.c
822 target/arm/wmcodec-pp.c
823 target/arm/i2s-pp.c
824 target/arm/ata-as-arm.S
825 target/arm/ata-pp5020.c
826 target/arm/ipod/adc-ipod-pcf.c
827 target/arm/ipod/backlight-4g_color.c
828 target/arm/ipod/button-clickwheel.c
829 target/arm/ipod/lcd-as-gray.S
830 target/arm/ipod/lcd-gray.c
831 target/arm/ipod/power-ipod.c
832 target/arm/ipod/powermgmt-ipod-pcf.c
833 target/arm/usb-fw-pp502x.c
834 #endif /* SIMULATOR */
835 #endif /* IPOD_4G */
837 #ifdef IPOD_COLOR
838 #ifndef SIMULATOR
839 drivers/pcf50605.c
840 target/arm/ata-as-arm.S
841 target/arm/ata-pp5020.c
842 target/arm/wmcodec-pp.c
843 target/arm/i2s-pp.c
844 target/arm/ipod/adc-ipod-pcf.c
845 target/arm/ipod/backlight-4g_color.c
846 target/arm/ipod/button-clickwheel.c
847 target/arm/ipod/lcd-color_nano.c
848 target/arm/ipod/power-ipod.c
849 target/arm/ipod/powermgmt-ipod-pcf.c
850 target/arm/usb-fw-pp502x.c
851 #endif /* SIMULATOR */
852 #endif /* IPOD_COLOR */
854 #ifdef IPOD_NANO
855 #ifndef SIMULATOR
856 drivers/pcf50605.c
857 target/arm/ata-as-arm.S
858 target/arm/ata-pp5020.c
859 target/arm/wmcodec-pp.c
860 target/arm/i2s-pp.c
861 target/arm/ipod/adc-ipod-pcf.c
862 target/arm/ipod/backlight-nano_video.c
863 target/arm/ipod/button-clickwheel.c
864 target/arm/ipod/lcd-color_nano.c
865 target/arm/ipod/power-ipod.c
866 target/arm/ipod/powermgmt-ipod-pcf.c
867 target/arm/usb-fw-pp502x.c
868 #endif /* SIMULATOR */
869 #endif /* IPOD_NANO */
871 #ifdef IPOD_VIDEO
872 #ifndef SIMULATOR
873 drivers/pcf50605.c
874 target/arm/ata-as-arm.S
875 target/arm/ata-pp5020.c
876 target/arm/wmcodec-pp.c
877 target/arm/i2s-pp.c
878 target/arm/ipod/adc-ipod-pcf.c
879 target/arm/ipod/backlight-nano_video.c
880 target/arm/ipod/button-clickwheel.c
881 target/arm/ipod/power-ipod.c
882 target/arm/ipod/powermgmt-ipod-pcf.c
883 target/arm/ipod/video/lcd-as-video.S
884 target/arm/ipod/video/lcd-video.c
885 target/arm/usb-fw-pp502x.c
886 #endif /* SIMULATOR */
887 #endif /* IPOD_VIDEO */
889 #ifdef IPOD_3G
890 #ifndef SIMULATOR
891 drivers/pcf50605.c
892 target/arm/ata-pp5002.c
893 target/arm/wmcodec-pp.c
894 target/arm/i2s-pp.c
895 target/arm/ipod/adc-ipod-pcf.c
896 target/arm/ipod/3g/backlight-3g.c
897 target/arm/ipod/button-1g-3g.c
898 target/arm/ipod/lcd-as-gray.S
899 target/arm/ipod/lcd-gray.c
900 target/arm/ipod/power-ipod.c
901 target/arm/ipod/powermgmt-ipod-pcf.c
902 target/arm/usb-fw-pp5002.c
903 #endif /* SIMULATOR */
904 #endif /* IPOD_3G */
906 #ifdef IPOD_1G2G
907 #ifndef SIMULATOR
908 target/arm/ata-pp5002.c
909 target/arm/wmcodec-pp.c
910 target/arm/i2s-pp.c
911 target/arm/ipod/1g2g/adc-ipod-1g2g.c
912 target/arm/ipod/1g2g/backlight-1g2g.c
913 target/arm/ipod/1g2g/powermgmt-1g2g.c
914 target/arm/ipod/button-1g-3g.c
915 target/arm/ipod/lcd-as-gray.S
916 target/arm/ipod/lcd-gray.c
917 target/arm/ipod/power-ipod.c
918 target/arm/usb-fw-pp5002.c
919 #endif /* SIMULATOR */
920 #endif /* IPOD_1G2G */
922 #ifdef IPOD_MINI
923 #ifndef SIMULATOR
924 drivers/pcf50605.c
925 target/arm/ata-as-arm.S
926 target/arm/ata-pp5020.c
927 target/arm/wmcodec-pp.c
928 target/arm/i2s-pp.c
929 target/arm/ipod/adc-ipod-pcf.c
930 target/arm/ipod/backlight-mini1g_mini2g.c
931 target/arm/ipod/button-mini1g.c
932 target/arm/ipod/lcd-as-gray.S
933 target/arm/ipod/lcd-gray.c
934 target/arm/ipod/power-ipod.c
935 target/arm/ipod/powermgmt-ipod-pcf.c
936 target/arm/usb-fw-pp502x.c
937 #endif /* SIMULATOR */
938 #endif /* IPOD_MINI */
940 #ifdef IPOD_MINI2G
941 #ifndef SIMULATOR
942 drivers/pcf50605.c
943 target/arm/ata-as-arm.S
944 target/arm/ata-pp5020.c
945 target/arm/wmcodec-pp.c
946 target/arm/i2s-pp.c
947 target/arm/ipod/adc-ipod-pcf.c
948 target/arm/ipod/backlight-mini1g_mini2g.c
949 target/arm/ipod/button-clickwheel.c
950 target/arm/ipod/lcd-as-gray.S
951 target/arm/ipod/lcd-gray.c
952 target/arm/ipod/power-ipod.c
953 target/arm/ipod/powermgmt-ipod-pcf.c
954 target/arm/usb-fw-pp502x.c
955 #endif /* SIMULATOR */
956 #endif /* IPOD_MINI2G */
958 #ifdef IRIVER_IFP7XX
959 #ifndef SIMULATOR
960 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
961 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
962 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
963 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
964 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
965 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
966 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
967 #ifndef BOOTLOADER
968 target/arm/pnx0101/pcm-pnx0101.c
969 #endif /* BOOTLOADER */
970 #endif /* SIMULATOR */
971 #endif /* IRIVER_IFP7XX */
973 #ifdef LOGIK_DAX
974 #ifndef SIMULATOR
975 drivers/nand_id.c
976 target/arm/ata-nand-telechips.c
977 target/arm/lcd-ssd1815.c
978 target/arm/tcc77x/adc-tcc77x.c
979 target/arm/tcc77x/kernel-tcc77x.c
980 target/arm/tcc77x/powermgmt-tcc77x.c
981 target/arm/tcc77x/system-tcc77x.c
982 target/arm/tcc77x/timer-tcc77x.c
983 target/arm/tcc77x/usb-tcc77x.c
984 target/arm/tcc77x/logikdax/button-logikdax.c
985 target/arm/tcc77x/logikdax/power-logikdax.c
986 #ifndef BOOTLOADER
987 target/arm/wmcodec-telechips.c
988 target/arm/tcc77x/debug-tcc77x.c
989 target/arm/pcm-telechips.c
990 target/arm/tcc77x/logikdax/audio-logikdax.c
991 #endif /* BOOTLOADER */
992 #endif /* SIMULATOR */
993 #endif /* LOGIK_DAX */
995 #ifdef SANSA_M200
996 #ifndef SIMULATOR
997 drivers/nand_id.c
998 target/arm/lcd-ssd1815.c
999 target/arm/ata-nand-telechips.c
1000 target/arm/tcc77x/adc-tcc77x.c
1001 target/arm/tcc77x/kernel-tcc77x.c
1002 target/arm/tcc77x/powermgmt-tcc77x.c
1003 target/arm/tcc77x/system-tcc77x.c
1004 target/arm/tcc77x/timer-tcc77x.c
1005 target/arm/tcc77x/usb-tcc77x.c
1006 target/arm/tcc77x/m200/button-m200.c
1007 target/arm/tcc77x/m200/power-m200.c
1008 #ifndef BOOTLOADER
1009 target/arm/wmcodec-telechips.c
1010 target/arm/tcc77x/debug-tcc77x.c
1011 target/arm/pcm-telechips.c
1012 target/arm/tcc77x/m200/audio-m200.c
1013 #endif /* BOOTLOADER */
1014 #endif /* SIMULATOR */
1015 #endif /* SANSA_M200 */
1017 #ifdef SANSA_C100
1018 #ifndef SIMULATOR
1019 drivers/nand_id.c
1020 target/arm/ata-nand-telechips.c
1021 target/arm/tcc77x/adc-tcc77x.c
1022 target/arm/tcc77x/kernel-tcc77x.c
1023 target/arm/tcc77x/c100/lcd-S6B33B2.c
1024 target/arm/tcc77x/powermgmt-tcc77x.c
1025 target/arm/tcc77x/system-tcc77x.c
1026 target/arm/tcc77x/timer-tcc77x.c
1027 target/arm/tcc77x/usb-tcc77x.c
1028 target/arm/tcc77x/c100/button-c100.c
1029 target/arm/tcc77x/c100/power-c100.c
1030 #ifndef BOOTLOADER
1031 target/arm/tcc77x/debug-tcc77x.c
1032 target/arm/pcm-telechips.c
1033 #endif /* BOOTLOADER */
1034 #endif /* SIMULATOR */
1035 #endif /* SANSA_C100 */
1037 #ifdef SANSA_CLIP
1038 #ifndef SIMULATOR
1039 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1040 target/arm/as3525/sansa-clip/button-clip.c
1041 #endif /* !SIMULATOR */
1042 #endif /* SANSA_CLIP */
1044 #ifdef SANSA_E200V2
1045 #ifndef SIMULATOR
1046 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1047 target/arm/as3525/sansa-e200v2/button-e200v2.c
1048 #endif /* !SIMULATOR */
1049 #endif /* SANSA_E200V2 */
1051 #ifdef SANSA_M200V2
1052 #ifndef SIMULATOR
1053 target/arm/lcd-ssd1815.c
1054 target/arm/as3525/sansa-m200v2/button-m200v2.c
1055 #endif /* !SIMULATOR */
1056 #endif /* SANSA_M200V2 */
1058 #ifdef IAUDIO_7
1059 #ifndef SIMULATOR
1060 drivers/nand_id.c
1061 drivers/pcf50606.c
1062 target/arm/ata-nand-telechips.c
1063 target/arm/tcc77x/system-tcc77x.c
1064 target/arm/tcc77x/kernel-tcc77x.c
1065 target/arm/tcc77x/timer-tcc77x.c
1066 target/arm/tcc77x/adc-tcc77x.c
1067 target/arm/tcc77x/powermgmt-tcc77x.c
1068 target/arm/tcc77x/usb-tcc77x.c
1069 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1070 target/arm/tcc77x/iaudio7/power-iaudio7.c
1071 target/arm/tcc77x/iaudio7/button-iaudio7.c
1072 target/arm/tcc77x/iaudio7/ata2501.c
1073 #ifndef BOOTLOADER
1074 target/arm/wmcodec-telechips.c
1075 target/arm/pcm-telechips.c
1076 target/arm/tcc77x/debug-tcc77x.c
1077 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1078 #endif /* BOOTLOADER */
1079 #endif /* SIMULATOR */
1080 #endif /* IAUDIO_7 */
1082 #ifdef COWON_D2
1083 #ifndef SIMULATOR
1084 drivers/nand_id.c
1085 drivers/pcf50606.c
1086 target/arm/lcd-as-memframe.S
1087 target/arm/ata-nand-telechips.c
1088 target/arm/tcc780x/adc-tcc780x.c
1089 target/arm/tcc780x/system-tcc780x.c
1090 target/arm/tcc780x/cowond2/button-cowond2.c
1091 target/arm/tcc780x/cowond2/lcd-cowond2.c
1092 target/arm/tcc780x/cowond2/power-cowond2.c
1093 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1094 target/arm/tcc780x/cowond2/usb-cowond2.c
1095 target/arm/tcc780x/cowond2/backlight-cowond2.c
1096 #ifndef BOOTLOADER
1097 target/arm/tcc780x/kernel-tcc780x.c
1098 target/arm/tcc780x/timer-tcc780x.c
1099 target/arm/wmcodec-telechips.c
1100 target/arm/tcc780x/debug-tcc780x.c
1101 target/arm/pcm-telechips.c
1102 target/arm/tcc780x/cowond2/audio-cowond2.c
1103 #endif /* BOOTLOADER */
1104 #endif /* SIMULATOR */
1105 #endif /* COWON_D2 */
1107 #if CONFIG_CPU==S5L8700
1108 target/arm/s5l8700/system-s5l8700.c
1109 target/arm/s5l8700/ata-nand-s5l8700.c
1110 #endif
1112 #ifdef MEIZU_M6SL
1113 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1114 drivers/qt1106.c
1115 #ifndef SIMULATOR
1116 #ifndef BOOTLOADER
1117 #endif /* BOOTLOADER */
1118 #endif /* SIMULATOR */
1119 #endif /* MEIZU_M6SL */
1121 #ifdef MEIZU_M6SP
1122 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1123 #ifndef SIMULATOR
1124 #ifndef BOOTLOADER
1125 #endif /* BOOTLOADER */
1126 #endif /* SIMULATOR */
1127 #endif /* MEIZU_M6SP */
1129 #ifdef MEIZU_M3
1130 target/arm/s5l8700/meizu-m3/lcd-m3.c
1131 drivers/qt1106.c
1132 #ifndef SIMULATOR
1133 #ifndef BOOTLOADER
1134 #endif /* BOOTLOADER */
1135 #endif /* SIMULATOR */
1136 #endif /* MEIZU_M3 */
1138 #if CONFIG_CPU==JZ4732
1139 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1140 target/mips/ingenic_jz47xx/lcd-jz4740.c
1141 target/mips/ingenic_jz47xx/kernel-jz4740.c
1142 target/mips/ingenic_jz47xx/system-jz4740.c
1143 target/mips/ingenic_jz47xx/usb-jz4740.c
1144 drivers/nand_id.c
1145 #endif
1147 #ifdef ONDA_VX747
1148 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx747.c
1149 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1150 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1151 #endif
1153 #ifdef ONDA_VX767
1154 target/mips/ingenic_jz47xx/onda_vx767/backlight-ondavx767.c
1155 target/mips/ingenic_jz47xx/onda_vx767/button-ondavx767.c
1156 target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c
1157 #endif