Data does not belong in .h files. Not even if it makes the .c file prettier.
[kugel-rb.git] / firmware / SOURCES
blob400074a0e978f8898f2c5eb7bb64ff9fde647523
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/sandisk/backlight-c200_e200.c
464 target/arm/usb-fw-pp502x.c
465 target/arm/sandisk/sansa-e200/button-e200.c
466 target/arm/sandisk/power-c200_e200.c
467 target/arm/sandisk/sansa-e200/powermgmt-e200.c
468 target/arm/i2s-pp.c
469 #ifndef BOOTLOADER
470 target/arm/sandisk/audio-c200_e200.c
471 #endif /* BOOTLOADER */
472 #endif /* SIMULATOR */
473 #endif /* SANSA_E200 */
475 #ifdef SANSA_C200
476 #ifndef SIMULATOR
477 target/arm/ata-sd-pp.c
478 target/arm/sandisk/sansa-c200/lcd-c200.c
479 target/arm/sandisk/sansa-c200/lcd-as-c200.S
480 target/arm/adc-as3514.c
481 target/arm/sandisk/backlight-c200_e200.c
482 target/arm/usb-fw-pp502x.c
483 target/arm/sandisk/sansa-c200/button-c200.c
484 target/arm/sandisk/power-c200_e200.c
485 target/arm/sandisk/sansa-c200/powermgmt-c200.c
486 target/arm/i2s-pp.c
487 #ifndef BOOTLOADER
488 target/arm/sandisk/audio-c200_e200.c
489 #endif /* BOOTLOADER */
490 #endif /* SIMULATOR */
491 #endif /* SANSA_C200 */
493 #ifdef PHILIPS_SA9200
494 #ifndef SIMULATOR
495 target/arm/ata-sd-pp.c
496 target/arm/philips/sa9200/lcd-sa9200.c
497 target/arm/adc-as3514.c
498 target/arm/philips/sa9200/backlight-sa9200.c
499 target/arm/usb-fw-pp502x.c
500 target/arm/philips/sa9200/button-sa9200.c
501 target/arm/philips/sa9200/power-sa9200.c
502 target/arm/philips/sa9200/powermgmt-sa9200.c
503 target/arm/i2s-pp.c
504 #endif /* SIMULATOR */
505 #endif /* PHILIPS_SA9200 */
507 #ifdef PHILIPS_HDD1630
508 #ifndef SIMULATOR
509 target/arm/ata-as-arm.S
510 target/arm/ata-pp5020.c
511 target/arm/wmcodec-pp.c
512 target/arm/i2s-pp.c
513 target/arm/adc-pp5020.c
514 target/arm/philips/hdd1630/backlight-hdd1630.c
515 target/arm/philips/hdd1630/button-hdd1630.c
516 target/arm/philips/hdd1630/lcd-hdd1630.c
517 target/arm/philips/hdd1630/power-hdd1630.c
518 target/arm/philips/hdd1630/powermgmt-hdd1630.c
519 target/arm/usb-fw-pp502x.c
520 #endif /* SIMULATOR */
521 #endif /* PHILIPS_HDD1630 */
523 #ifdef IAUDIO_X5
524 #ifndef SIMULATOR
525 target/coldfire/ata-as-coldfire.S
526 target/coldfire/pcf50606-coldfire.c
527 target/coldfire/iaudio/adc-iaudio.c
528 target/coldfire/iaudio/ata-iaudio.c
529 target/coldfire/iaudio/lcd-remote-as-iaudio.S
530 target/coldfire/iaudio/lcd-remote-iaudio.c
531 target/coldfire/iaudio/pcf50606-iaudio.c
532 target/coldfire/iaudio/powermgmt-iaudio.c
533 target/coldfire/iaudio/system-iaudio.c
534 target/coldfire/iaudio/usb-iaudio.c
535 target/coldfire/iaudio/x5/backlight-x5.c
536 target/coldfire/iaudio/x5/button-x5.c
537 target/coldfire/iaudio/x5/ds2411-x5.c
538 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
539 target/coldfire/iaudio/x5/lcd-as-x5.S
540 target/coldfire/iaudio/x5/lcd-x5.c
541 target/coldfire/iaudio/x5/m5636-x5.c
542 target/coldfire/iaudio/x5/power-x5.c
543 #ifndef BOOTLOADER
544 target/coldfire/iaudio/x5/audio-x5.c
545 #endif
546 #endif /* SIMULATOR */
547 #endif /* IAUDIO_X5 */
549 #ifdef IAUDIO_M5
550 #ifndef SIMULATOR
551 target/coldfire/ata-as-coldfire.S
552 target/coldfire/pcf50606-coldfire.c
553 target/coldfire/iaudio/adc-iaudio.c
554 target/coldfire/iaudio/ata-iaudio.c
555 target/coldfire/iaudio/lcd-remote-as-iaudio.S
556 target/coldfire/iaudio/lcd-remote-iaudio.c
557 target/coldfire/iaudio/m5/backlight-m5.c
558 target/coldfire/iaudio/m5/button-m5.c
559 target/coldfire/iaudio/m5/lcd-as-m5.S
560 target/coldfire/iaudio/m5/lcd-m5.c
561 target/coldfire/iaudio/m5/power-m5.c
562 target/coldfire/iaudio/pcf50606-iaudio.c
563 target/coldfire/iaudio/powermgmt-iaudio.c
564 target/coldfire/iaudio/system-iaudio.c
565 target/coldfire/iaudio/usb-iaudio.c
566 #ifndef BOOTLOADER
567 target/coldfire/iaudio/m5/audio-m5.c
568 #endif
569 #endif /* SIMULATOR */
570 #endif /* IAUDIO_M5 */
572 #ifdef IAUDIO_M3
573 #ifndef SIMULATOR
574 target/coldfire/ata-as-coldfire.S
575 target/coldfire/iaudio/m3/adc-m3.c
576 target/coldfire/iaudio/m3/ata-m3.c
577 target/coldfire/iaudio/m3/backlight-m3.c
578 target/coldfire/iaudio/m3/button-m3.c
579 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
580 target/coldfire/iaudio/m3/lcd-m3.c
581 target/coldfire/iaudio/m3/lcd-as-m3.S
582 target/coldfire/iaudio/m3/power-m3.c
583 target/coldfire/iaudio/m3/powermgmt-m3.c
584 target/coldfire/iaudio/m3/system-m3.c
585 target/coldfire/iaudio/m3/usb-m3.c
586 #ifndef BOOTLOADER
587 target/coldfire/iaudio/m3/audio-m3.c
588 #endif
589 #endif /* SIMULATOR */
590 #endif /* IAUDIO_M3 */
592 #ifdef IRIVER_IFP7XX_SERIES
593 #ifdef STUB
594 ifp_usb_serial.c
595 common/sscanf.c
596 #endif /* STUB */
597 #endif /* IRIVER_IFP7XX_SERIES */
599 #ifdef IRIVER_H300_SERIES
600 #ifndef SIMULATOR
601 target/coldfire/ata-as-coldfire.S
602 target/coldfire/pcf50606-coldfire.c
603 target/coldfire/iriver/ata-iriver.c
604 target/coldfire/iriver/lcd-remote-iriver.c
605 target/coldfire/iriver/lcd-remote-as-iriver.S
606 target/coldfire/iriver/system-iriver.c
607 target/coldfire/iriver/fmradio_i2c-iriver.c
608 target/coldfire/iriver/h300/sw_i2c-h300.c
609 target/coldfire/iriver/h300/adc-h300.c
610 target/coldfire/iriver/h300/backlight-h300.c
611 target/coldfire/iriver/h300/button-h300.c
612 target/coldfire/iriver/h300/pcf50606-h300.c
613 target/coldfire/iriver/h300/lcd-as-h300.S
614 target/coldfire/iriver/h300/lcd-h300.c
615 target/coldfire/iriver/h300/power-h300.c
616 target/coldfire/iriver/h300/powermgmt-h300.c
617 target/coldfire/iriver/h300/usb-h300.c
618 #ifndef BOOTLOADER
619 target/coldfire/iriver/audio-iriver.c
620 #endif
621 #endif /* SIMULATOR */
622 #endif /* IRIVER_H300_SERIES */
624 #ifdef IRIVER_H100_SERIES
625 #ifndef SIMULATOR
626 drivers/sw_i2c.c
627 target/coldfire/ata-as-coldfire.S
628 target/coldfire/iriver/ata-iriver.c
629 target/coldfire/iriver/lcd-remote-iriver.c
630 target/coldfire/iriver/lcd-remote-as-iriver.S
631 target/coldfire/iriver/system-iriver.c
632 target/coldfire/iriver/fmradio_i2c-iriver.c
633 target/coldfire/iriver/h100/adc-h100.c
634 target/coldfire/iriver/h100/backlight-h100.c
635 target/coldfire/iriver/h100/button-h100.c
636 target/coldfire/iriver/h100/lcd-as-h100.S
637 target/coldfire/iriver/h100/lcd-h100.c
638 target/coldfire/iriver/h100/power-h100.c
639 target/coldfire/iriver/h100/powermgmt-h100.c
640 #ifndef BOOTLOADER
641 target/coldfire/iriver/audio-iriver.c
642 target/coldfire/iriver/h100/spdif-h100.c
643 #endif
644 target/coldfire/iriver/h100/usb-h100.c
645 #endif /* SIMULATOR */
646 #endif /* IRIVER_H100_SERIES */
648 #ifdef IRIVER_H10
649 #ifndef SIMULATOR
650 target/arm/ata-as-arm.S
651 target/arm/ata-pp5020.c
652 target/arm/wmcodec-pp.c
653 target/arm/i2s-pp.c
654 target/arm/adc-pp5020.c
655 target/arm/iriver/h10/backlight-h10.c
656 target/arm/iriver/h10/button-h10.c
657 target/arm/iriver/h10/fmradio_i2c-h10.c
658 target/arm/iriver/h10/lcd-h10_20gb.c
659 target/arm/iriver/h10/lcd-as-h10.S
660 target/arm/iriver/h10/power-h10.c
661 target/arm/iriver/h10/powermgmt-h10.c
662 target/arm/usb-fw-pp502x.c
663 #endif /* SIMULATOR */
664 #endif /* IRIVER_H10 */
666 #ifdef IRIVER_H10_5GB
667 #ifndef SIMULATOR
668 target/arm/ata-as-arm.S
669 target/arm/ata-pp5020.c
670 target/arm/wmcodec-pp.c
671 target/arm/i2s-pp.c
672 target/arm/adc-pp5020.c
673 target/arm/iriver/h10/backlight-h10.c
674 target/arm/iriver/h10/button-h10.c
675 target/arm/iriver/h10/fmradio_i2c-h10.c
676 target/arm/iriver/h10/lcd-h10_5gb.c
677 target/arm/iriver/h10/power-h10.c
678 target/arm/iriver/h10/powermgmt-h10.c
679 target/arm/usb-fw-pp502x.c
680 #endif /* SIMULATOR */
681 #endif /* IRIVER_H10_5GB */
683 #ifdef GIGABEAT_F
684 #ifndef SIMULATOR
685 target/arm/lcd-as-memframe.S
686 target/arm/mmu-arm.c
687 target/arm/s3c2440/debug-s3c2440.c
688 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
689 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
690 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
691 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
692 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
693 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
694 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
695 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
696 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
697 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
698 #ifndef BOOTLOADER
699 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
700 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
701 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
702 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
703 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
704 #endif
705 #endif /* SIMULATOR */
706 #endif /* GIGABEAT_F */
708 #ifdef GIGABEAT_S
709 #ifndef SIMULATOR
710 target/arm/lcd-as-memframe.S
711 target/arm/mmu-arm.c
712 target/arm/imx31/debug-imx31.c
713 target/arm/imx31/rolo_restart.S
714 target/arm/imx31/gigabeat-s/adc-imx31.c
715 target/arm/imx31/gigabeat-s/ata-imx31.c
716 target/arm/imx31/gigabeat-s/avic-imx31.c
717 target/arm/imx31/gigabeat-s/backlight-imx31.c
718 target/arm/imx31/gigabeat-s/button-imx31.c
719 target/arm/imx31/gigabeat-s/clkctl-imx31.c
720 target/arm/imx31/gigabeat-s/dma_start.c
721 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
722 target/arm/imx31/gigabeat-s/gpio-imx31.c
723 target/arm/imx31/gigabeat-s/kernel-imx31.c
724 target/arm/imx31/gigabeat-s/i2c-imx31.c
725 target/arm/imx31/gigabeat-s/i2s-imx31.c
726 target/arm/imx31/gigabeat-s/lcd-imx31.c
727 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
728 target/arm/imx31/gigabeat-s/mc13783-imx31.c
729 target/arm/imx31/gigabeat-s/mmu-imx31.c
730 target/arm/imx31/gigabeat-s/power-imx31.c
731 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
732 target/arm/imx31/gigabeat-s/spi-imx31.c
733 target/arm/imx31/gigabeat-s/system-imx31.c
734 target/arm/imx31/gigabeat-s/usb-imx31.c
735 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
736 #ifndef BOOTLOADER
737 target/arm/imx31/gigabeat-s/pcm-imx31.c
738 #endif
739 #endif /* SIMULATOR */
740 #endif /* GIGABEAT_S */
742 #if CONFIG_CPU == DM320
743 target/arm/tms320dm320/debug-dm320.c
744 target/arm/tms320dm320/dsp-dm320.c
745 target/arm/tms320dm320/i2c-dm320.c
746 target/arm/tms320dm320/kernel-dm320.c
747 target/arm/tms320dm320/spi-dm320.c
748 target/arm/tms320dm320/system-dm320.c
749 target/arm/tms320dm320/timer-dm320.c
750 target/arm/tms320dm320/uart-dm320.c
751 #endif /* CONFIG_CPU == DM320 */
753 #ifdef MROBE_500
754 #ifndef SIMULATOR
755 target/arm/lcd-as-memframe.S
756 target/arm/mmu-arm.c
757 target/arm/tms320dm320/mrobe-500/adc-mr500.c
758 target/arm/tms320dm320/mrobe-500/ata-mr500.c
759 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
760 target/arm/tms320dm320/mrobe-500/button-mr500.c
761 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
762 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
763 #if defined(HAVE_REMOTE_LCD)
764 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
765 #endif
766 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
767 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
768 target/arm/tms320dm320/mrobe-500/power-mr500.c
769 target/arm/tms320dm320/mrobe-500/usb-mr500.c
770 #endif /* SIMULATOR */
771 #endif /* MROBE_500 */
773 #ifdef CREATIVE_ZVx
774 #ifndef SIMULATOR
775 target/arm/ata-as-arm.S
776 target/arm/lcd-as-memframe.S
777 target/arm/mmu-arm.c
778 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
779 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
780 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
781 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
782 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
783 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
784 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
785 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
786 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
787 #endif /* SIMULATOR */
788 #endif /* CREATIVE_ZVx */
790 #ifdef MROBE_100
791 #ifndef SIMULATOR
792 drivers/sw_i2c.c
793 target/arm/ata-as-arm.S
794 target/arm/ata-pp5020.c
795 target/arm/wmcodec-pp.c
796 target/arm/i2s-pp.c
797 target/arm/adc-pp5020.c
798 target/arm/olympus/mrobe-100/backlight-mr100.c
799 target/arm/olympus/mrobe-100/button-mr100.c
800 target/arm/olympus/mrobe-100/lcd-mr100.c
801 target/arm/olympus/mrobe-100/lcd-as-mr100.S
802 target/arm/olympus/mrobe-100/power-mr100.c
803 target/arm/olympus/mrobe-100/powermgmt-mr100.c
804 target/arm/usb-fw-pp502x.c
805 #endif /* SIMULATOR */
806 #endif /* MROBE_100 */
808 #ifdef ELIO_TPJ1022
809 #ifndef SIMULATOR
810 target/arm/ata-as-arm.S
811 target/arm/ata-pp5020.c
812 target/arm/wmcodec-pp.c
813 target/arm/i2s-pp.c
814 target/arm/tatung/tpj1022/adc-tpj1022.c
815 target/arm/tatung/tpj1022/backlight-tpj1022.c
816 target/arm/tatung/tpj1022/button-tpj1022.c
817 target/arm/tatung/tpj1022/lcd-tpj1022.c
818 target/arm/tatung/tpj1022/power-tpj1022.c
819 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
820 target/arm/usb-fw-pp502x.c
821 #endif /* SIMULATOR */
822 #endif /* ELIO_TPJ1022 */
824 #ifdef IPOD_4G
825 #ifndef SIMULATOR
826 drivers/pcf50605.c
827 target/arm/wmcodec-pp.c
828 target/arm/i2s-pp.c
829 target/arm/ata-as-arm.S
830 target/arm/ata-pp5020.c
831 target/arm/ipod/adc-ipod-pcf.c
832 target/arm/ipod/backlight-4g_color.c
833 target/arm/ipod/button-clickwheel.c
834 target/arm/ipod/lcd-as-gray.S
835 target/arm/ipod/lcd-gray.c
836 target/arm/ipod/power-ipod.c
837 target/arm/ipod/powermgmt-ipod-pcf.c
838 target/arm/usb-fw-pp502x.c
839 #endif /* SIMULATOR */
840 #endif /* IPOD_4G */
842 #ifdef IPOD_COLOR
843 #ifndef SIMULATOR
844 drivers/pcf50605.c
845 target/arm/ata-as-arm.S
846 target/arm/ata-pp5020.c
847 target/arm/wmcodec-pp.c
848 target/arm/i2s-pp.c
849 target/arm/ipod/adc-ipod-pcf.c
850 target/arm/ipod/backlight-4g_color.c
851 target/arm/ipod/button-clickwheel.c
852 target/arm/ipod/lcd-color_nano.c
853 target/arm/ipod/power-ipod.c
854 target/arm/ipod/powermgmt-ipod-pcf.c
855 target/arm/usb-fw-pp502x.c
856 #endif /* SIMULATOR */
857 #endif /* IPOD_COLOR */
859 #ifdef IPOD_NANO
860 #ifndef SIMULATOR
861 drivers/pcf50605.c
862 target/arm/ata-as-arm.S
863 target/arm/ata-pp5020.c
864 target/arm/wmcodec-pp.c
865 target/arm/i2s-pp.c
866 target/arm/ipod/adc-ipod-pcf.c
867 target/arm/ipod/backlight-nano_video.c
868 target/arm/ipod/button-clickwheel.c
869 target/arm/ipod/lcd-color_nano.c
870 target/arm/ipod/power-ipod.c
871 target/arm/ipod/powermgmt-ipod-pcf.c
872 target/arm/usb-fw-pp502x.c
873 #endif /* SIMULATOR */
874 #endif /* IPOD_NANO */
876 #ifdef IPOD_VIDEO
877 #ifndef SIMULATOR
878 drivers/pcf50605.c
879 target/arm/ata-as-arm.S
880 target/arm/ata-pp5020.c
881 target/arm/wmcodec-pp.c
882 target/arm/i2s-pp.c
883 target/arm/ipod/adc-ipod-pcf.c
884 target/arm/ipod/backlight-nano_video.c
885 target/arm/ipod/button-clickwheel.c
886 target/arm/ipod/power-ipod.c
887 target/arm/ipod/powermgmt-ipod-pcf.c
888 target/arm/ipod/video/lcd-as-video.S
889 target/arm/ipod/video/lcd-video.c
890 target/arm/usb-fw-pp502x.c
891 #endif /* SIMULATOR */
892 #endif /* IPOD_VIDEO */
894 #ifdef IPOD_3G
895 #ifndef SIMULATOR
896 drivers/pcf50605.c
897 target/arm/ata-pp5002.c
898 target/arm/wmcodec-pp.c
899 target/arm/i2s-pp.c
900 target/arm/ipod/adc-ipod-pcf.c
901 target/arm/ipod/3g/backlight-3g.c
902 target/arm/ipod/button-1g-3g.c
903 target/arm/ipod/lcd-as-gray.S
904 target/arm/ipod/lcd-gray.c
905 target/arm/ipod/power-ipod.c
906 target/arm/ipod/powermgmt-ipod-pcf.c
907 target/arm/usb-fw-pp5002.c
908 #endif /* SIMULATOR */
909 #endif /* IPOD_3G */
911 #ifdef IPOD_1G2G
912 #ifndef SIMULATOR
913 target/arm/ata-pp5002.c
914 target/arm/wmcodec-pp.c
915 target/arm/i2s-pp.c
916 target/arm/ipod/1g2g/adc-ipod-1g2g.c
917 target/arm/ipod/1g2g/backlight-1g2g.c
918 target/arm/ipod/1g2g/powermgmt-1g2g.c
919 target/arm/ipod/button-1g-3g.c
920 target/arm/ipod/lcd-as-gray.S
921 target/arm/ipod/lcd-gray.c
922 target/arm/ipod/power-ipod.c
923 target/arm/usb-fw-pp5002.c
924 #endif /* SIMULATOR */
925 #endif /* IPOD_1G2G */
927 #ifdef IPOD_MINI
928 #ifndef SIMULATOR
929 drivers/pcf50605.c
930 target/arm/ata-as-arm.S
931 target/arm/ata-pp5020.c
932 target/arm/wmcodec-pp.c
933 target/arm/i2s-pp.c
934 target/arm/ipod/adc-ipod-pcf.c
935 target/arm/ipod/backlight-mini1g_mini2g.c
936 target/arm/ipod/button-mini1g.c
937 target/arm/ipod/lcd-as-gray.S
938 target/arm/ipod/lcd-gray.c
939 target/arm/ipod/power-ipod.c
940 target/arm/ipod/powermgmt-ipod-pcf.c
941 target/arm/usb-fw-pp502x.c
942 #endif /* SIMULATOR */
943 #endif /* IPOD_MINI */
945 #ifdef IPOD_MINI2G
946 #ifndef SIMULATOR
947 drivers/pcf50605.c
948 target/arm/ata-as-arm.S
949 target/arm/ata-pp5020.c
950 target/arm/wmcodec-pp.c
951 target/arm/i2s-pp.c
952 target/arm/ipod/adc-ipod-pcf.c
953 target/arm/ipod/backlight-mini1g_mini2g.c
954 target/arm/ipod/button-clickwheel.c
955 target/arm/ipod/lcd-as-gray.S
956 target/arm/ipod/lcd-gray.c
957 target/arm/ipod/power-ipod.c
958 target/arm/ipod/powermgmt-ipod-pcf.c
959 target/arm/usb-fw-pp502x.c
960 #endif /* SIMULATOR */
961 #endif /* IPOD_MINI2G */
963 #ifdef IRIVER_IFP7XX
964 #ifndef SIMULATOR
965 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
966 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
967 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
968 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
969 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
970 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
971 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
972 #ifndef BOOTLOADER
973 target/arm/pnx0101/pcm-pnx0101.c
974 #endif /* BOOTLOADER */
975 #endif /* SIMULATOR */
976 #endif /* IRIVER_IFP7XX */
978 #ifdef LOGIK_DAX
979 #ifndef SIMULATOR
980 drivers/nand_id.c
981 target/arm/ata-nand-telechips.c
982 target/arm/lcd-ssd1815.c
983 target/arm/tcc77x/adc-tcc77x.c
984 target/arm/tcc77x/kernel-tcc77x.c
985 target/arm/tcc77x/powermgmt-tcc77x.c
986 target/arm/tcc77x/system-tcc77x.c
987 target/arm/tcc77x/timer-tcc77x.c
988 target/arm/tcc77x/usb-tcc77x.c
989 target/arm/tcc77x/logikdax/button-logikdax.c
990 target/arm/tcc77x/logikdax/power-logikdax.c
991 #ifndef BOOTLOADER
992 target/arm/wmcodec-telechips.c
993 target/arm/tcc77x/debug-tcc77x.c
994 target/arm/pcm-telechips.c
995 target/arm/tcc77x/logikdax/audio-logikdax.c
996 #endif /* BOOTLOADER */
997 #endif /* SIMULATOR */
998 #endif /* LOGIK_DAX */
1000 #ifdef SANSA_M200
1001 #ifndef SIMULATOR
1002 drivers/nand_id.c
1003 target/arm/lcd-ssd1815.c
1004 target/arm/ata-nand-telechips.c
1005 target/arm/tcc77x/adc-tcc77x.c
1006 target/arm/tcc77x/kernel-tcc77x.c
1007 target/arm/tcc77x/powermgmt-tcc77x.c
1008 target/arm/tcc77x/system-tcc77x.c
1009 target/arm/tcc77x/timer-tcc77x.c
1010 target/arm/tcc77x/usb-tcc77x.c
1011 target/arm/tcc77x/m200/button-m200.c
1012 target/arm/tcc77x/m200/power-m200.c
1013 #ifndef BOOTLOADER
1014 target/arm/wmcodec-telechips.c
1015 target/arm/tcc77x/debug-tcc77x.c
1016 target/arm/pcm-telechips.c
1017 target/arm/tcc77x/m200/audio-m200.c
1018 #endif /* BOOTLOADER */
1019 #endif /* SIMULATOR */
1020 #endif /* SANSA_M200 */
1022 #ifdef SANSA_C100
1023 #ifndef SIMULATOR
1024 drivers/nand_id.c
1025 target/arm/ata-nand-telechips.c
1026 target/arm/tcc77x/adc-tcc77x.c
1027 target/arm/tcc77x/kernel-tcc77x.c
1028 target/arm/tcc77x/c100/lcd-S6B33B2.c
1029 target/arm/tcc77x/powermgmt-tcc77x.c
1030 target/arm/tcc77x/system-tcc77x.c
1031 target/arm/tcc77x/timer-tcc77x.c
1032 target/arm/tcc77x/usb-tcc77x.c
1033 target/arm/tcc77x/c100/button-c100.c
1034 target/arm/tcc77x/c100/power-c100.c
1035 #ifndef BOOTLOADER
1036 target/arm/tcc77x/debug-tcc77x.c
1037 target/arm/pcm-telechips.c
1038 #endif /* BOOTLOADER */
1039 #endif /* SIMULATOR */
1040 #endif /* SANSA_C100 */
1042 #ifdef SANSA_CLIP
1043 #ifndef SIMULATOR
1044 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1045 target/arm/as3525/sansa-clip/button-clip.c
1046 target/arm/as3525/as3525-codec.c
1047 #endif /* !SIMULATOR */
1048 #endif /* SANSA_CLIP */
1050 #ifdef SANSA_E200V2
1051 #ifndef SIMULATOR
1052 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1053 target/arm/as3525/sansa-e200v2/button-e200v2.c
1054 target/arm/as3525/sansa-e200v2/backlight-e200v2.c
1055 target/arm/as3525/as3525-codec.c
1056 #endif /* !SIMULATOR */
1057 #endif /* SANSA_E200V2 */
1059 #ifdef SANSA_M200V2
1060 #ifndef SIMULATOR
1061 target/arm/lcd-ssd1815.c
1062 target/arm/as3525/sansa-m200v2/button-m200v2.c
1063 target/arm/as3525/as3525-codec.c
1064 #endif /* !SIMULATOR */
1065 #endif /* SANSA_M200V2 */
1067 #ifdef IAUDIO_7
1068 #ifndef SIMULATOR
1069 drivers/nand_id.c
1070 drivers/pcf50606.c
1071 target/arm/ata-nand-telechips.c
1072 target/arm/tcc77x/system-tcc77x.c
1073 target/arm/tcc77x/kernel-tcc77x.c
1074 target/arm/tcc77x/timer-tcc77x.c
1075 target/arm/tcc77x/adc-tcc77x.c
1076 target/arm/tcc77x/powermgmt-tcc77x.c
1077 target/arm/tcc77x/usb-tcc77x.c
1078 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1079 target/arm/tcc77x/iaudio7/power-iaudio7.c
1080 target/arm/tcc77x/iaudio7/button-iaudio7.c
1081 target/arm/tcc77x/iaudio7/ata2501.c
1082 #ifndef BOOTLOADER
1083 target/arm/wmcodec-telechips.c
1084 target/arm/pcm-telechips.c
1085 target/arm/tcc77x/debug-tcc77x.c
1086 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1087 #endif /* BOOTLOADER */
1088 #endif /* SIMULATOR */
1089 #endif /* IAUDIO_7 */
1091 #ifdef COWON_D2
1092 #ifndef SIMULATOR
1093 drivers/nand_id.c
1094 drivers/pcf50606.c
1095 target/arm/lcd-as-memframe.S
1096 target/arm/ata-nand-telechips.c
1097 target/arm/tcc780x/adc-tcc780x.c
1098 target/arm/tcc780x/system-tcc780x.c
1099 target/arm/tcc780x/cowond2/button-cowond2.c
1100 target/arm/tcc780x/cowond2/lcd-cowond2.c
1101 target/arm/tcc780x/cowond2/power-cowond2.c
1102 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1103 target/arm/tcc780x/cowond2/usb-cowond2.c
1104 target/arm/tcc780x/cowond2/backlight-cowond2.c
1105 #ifndef BOOTLOADER
1106 target/arm/tcc780x/kernel-tcc780x.c
1107 target/arm/tcc780x/timer-tcc780x.c
1108 target/arm/wmcodec-telechips.c
1109 target/arm/tcc780x/debug-tcc780x.c
1110 target/arm/pcm-telechips.c
1111 target/arm/tcc780x/cowond2/audio-cowond2.c
1112 #endif /* BOOTLOADER */
1113 #endif /* SIMULATOR */
1114 #endif /* COWON_D2 */
1116 #if CONFIG_CPU==S5L8700
1117 target/arm/s5l8700/system-s5l8700.c
1118 target/arm/s5l8700/ata-nand-s5l8700.c
1119 #endif
1121 #ifdef MEIZU_M6SL
1122 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1123 drivers/qt1106.c
1124 #ifndef SIMULATOR
1125 #ifndef BOOTLOADER
1126 #endif /* BOOTLOADER */
1127 #endif /* SIMULATOR */
1128 #endif /* MEIZU_M6SL */
1130 #ifdef MEIZU_M6SP
1131 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1132 #ifndef SIMULATOR
1133 #ifndef BOOTLOADER
1134 #endif /* BOOTLOADER */
1135 #endif /* SIMULATOR */
1136 #endif /* MEIZU_M6SP */
1138 #ifdef MEIZU_M3
1139 target/arm/s5l8700/meizu-m3/lcd-m3.c
1140 drivers/qt1106.c
1141 #ifndef SIMULATOR
1142 #ifndef BOOTLOADER
1143 #endif /* BOOTLOADER */
1144 #endif /* SIMULATOR */
1145 #endif /* MEIZU_M3 */
1147 #if CONFIG_CPU==JZ4732
1148 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1149 target/mips/ingenic_jz47xx/lcd-jz4740.c
1150 target/mips/ingenic_jz47xx/kernel-jz4740.c
1151 target/mips/ingenic_jz47xx/system-jz4740.c
1152 target/mips/ingenic_jz47xx/usb-jz4740.c
1153 drivers/nand_id.c
1154 #endif
1156 #ifdef ONDA_VX747
1157 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx747.c
1158 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1159 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1160 #endif
1162 #ifdef ONDA_VX767
1163 target/mips/ingenic_jz47xx/onda_vx767/backlight-ondavx767.c
1164 target/mips/ingenic_jz47xx/onda_vx767/button-ondavx767.c
1165 target/mips/ingenic_jz47xx/onda_vx767/lcd-ondavx767.c
1166 #endif