Update the Telechips NAND driver to use the nand_identify() function introduced in...
[kugel-rb.git] / firmware / SOURCES
blobe6ff82d4a9ad79e462a6870824d087026720e845
1 ata_idle_notify.c
2 events.c
3 backlight.c
4 buffer.c
5 id3.c
6 powermgmt.c
7 system.c
8 usb.c
9 #ifdef ROCKBOX_HAS_LOGF
10 logf.c
11 #endif /* ROCKBOX_HAS_LOGF */
12 kernel.c
13 #ifndef SIMULATOR
14 #ifdef RB_PROFILE
15 profile.c
16 #endif /* RB_PROFILE */
17 rolo.c
18 thread.c
19 timer.c
20 #endif /* SIMULATOR */
21 panic.c
22 debug.c
24 /* Common */
25 common/atoi.c
26 common/crc32.c
27 #ifdef MI4_FORMAT
28 common/crc32-mi4.c
29 #endif
30 common/ctype.c
31 #ifndef SIMULATOR
32 common/dir_uncached.c
33 common/file.c
34 #endif /* SIMULATOR */
35 #ifdef HAVE_DIRCACHE
36 common/dircache.c
37 #endif /* HAVE_DIRCACHE */
38 common/disk.c
39 #if !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__)
40 common/errno.c
41 #endif /* !defined(SIMULATOR) || defined(__MINGW32__) || defined(__CYGWIN__) */
42 common/memcmp.c
43 common/memchr.c
44 common/qsort.c
45 common/random.c
46 common/sprintf.c
47 common/strcasecmp.c
48 common/strcasestr.c
49 common/strcat.c
50 common/strchr.c
51 common/strcmp.c
52 common/strcpy.c
53 common/strncmp.c
54 common/strncpy.c
55 common/strrchr.c
56 common/strtok.c
57 common/strstr.c
58 common/structec.c
59 common/timefuncs.c
60 common/unicode.c
62 /* Display */
63 scroll_engine.c
65 #ifdef HAVE_LCD_CHARCELLS
66 drivers/lcd-charcell.c
67 drivers/lcd-charset-player.c
68 #endif /* HAVE_LCD_CHARCELLS */
70 #ifdef HAVE_LCD_BITMAP
71 arabjoin.c
72 bidi.c
73 font_cache.c
74 font.c
75 hangul.c
76 lru.c
77 #if LCD_DEPTH == 1
78 drivers/lcd-1bit-vert.c
79 #elif LCD_DEPTH == 2
80 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
81 drivers/lcd-2bit-horz.c
82 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
83 drivers/lcd-2bit-vert.c
84 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
85 drivers/lcd-2bit-vi.c
86 #endif /* LCD_PIXELFORMAT */
87 #elif LCD_DEPTH == 16
88 drivers/lcd-16bit.c
89 #endif /* LCD_DEPTH */
90 #endif /* HAVE_LCD_BITMAP */
92 #ifdef HAVE_REMOTE_LCD
93 #if LCD_REMOTE_DEPTH == 1
94 drivers/lcd-remote-1bit-v.c
95 #elif LCD_REMOTE_DEPTH == 2
96 drivers/lcd-remote-2bit-vi.c
97 #endif /* LCD_REMOTE_DEPTH */
98 #endif /* HAVE_REMOTE_LCD */
100 /* Misc. */
101 drivers/led.c
102 drivers/button.c
103 #ifndef SIMULATOR
104 #ifdef HAVE_DAC3550A
105 drivers/dac.c
106 #endif
107 drivers/serial.c
108 #endif /* SIMULATOR */
111 /* Storage */
112 #ifndef SIMULATOR
113 #ifdef HAVE_MMC
114 drivers/ata_mmc.c
115 #elif defined(HAVE_FLASH_DISK)
116 drivers/ata_flash.c
117 #elif defined(HAVE_ATA)
118 drivers/ata.c
119 #endif /* HAVE_MMC */
120 drivers/fat.c
121 #if defined(HAVE_HOTSWAP) || defined(HAVE_ATA_SD)
122 hotswap.c
123 #endif
124 #endif /* SIMULATOR */
126 /* EEPROM */
127 #ifdef HAVE_EEPROM
128 drivers/eeprom_24cxx.c
129 #ifdef HAVE_EEPROM_SETTINGS
130 eeprom_settings.c
131 #endif /* HAVE_EEPROM_SETTINGS */
132 #endif /* HAVE_EEPROM */
134 /* RTC */
135 #ifndef SIMULATOR
136 #if (CONFIG_RTC == RTC_M41ST84W)
137 drivers/rtc/rtc_m41st84w.c
138 #elif (CONFIG_RTC == RTC_PCF50606)
139 drivers/rtc/rtc_pcf50606.c
140 #elif (CONFIG_RTC == RTC_PCF50605)
141 drivers/rtc/rtc_pcf50605.c
142 #elif (CONFIG_RTC == RTC_E8564)
143 drivers/rtc/rtc_e8564.c
144 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
145 drivers/rtc/rtc_ds1339_ds3231.c
146 #elif (CONFIG_RTC == RTC_S3C2440)
147 drivers/rtc/rtc_s3c2440.c
148 #elif (CONFIG_RTC == RTC_AS3514)
149 drivers/rtc/rtc_as3514.c
150 #elif (CONFIG_RTC == RTC_RX5X348AB)
151 drivers/rtc/rtc_rx5x348ab.c
152 #elif (CONFIG_RTC == RTC_MR100)
153 drivers/rtc/rtc_mr100.c
154 #elif (CONFIG_RTC == RTC_MC13783)
155 drivers/rtc/rtc_mc13783.c
156 #elif (CONFIG_RTC == RTC_TCC77X)
157 drivers/rtc/rtc_tcc77x.c
158 #elif (CONFIG_RTC == RTC_JZ47XX)
159 drivers/rtc/rtc_jz4740.c
160 #endif /* (CONFIG_RTC == RTC_) */
161 #endif /* SIMULATOR */
163 /* Tuner */
164 #if CONFIG_TUNER
165 tuner.c
166 #ifndef SIMULATOR
167 #if (CONFIG_TUNER & LV24020LP)
168 drivers/tuner/lv24020lp.c
169 #endif /* (CONFIG_TUNER & LV24020LP) */
170 #if (CONFIG_TUNER & S1A0903X01)
171 drivers/fmradio.c
172 drivers/tuner/s1a0903x01.c
173 #endif /* (CONFIG_TUNER & S1A0903X01) */
174 #if (CONFIG_TUNER & TEA5767)
175 drivers/tuner/tea5767.c
176 #endif /* (CONFIG_TUNER & TEA5767) */
177 #endif /*SIMULATOR */
178 #endif /* CONFIG_TUNER */
180 /* Sound */
181 #if CONFIG_CODEC != SWCODEC
182 mp3_playback.c
183 #endif /* CONFIG_CODEC != SWCODEC */
184 mp3data.c
185 sound.c
187 #if CONFIG_CODEC == SWCODEC
189 #ifndef BOOTLOADER
190 general.c
191 pcm_sampr.c
192 replaygain.c
193 pcm.c
194 #ifdef HAVE_RECORDING
195 enc_base.c
196 #ifndef SIMULATOR
197 pcm_record.c
198 #endif /* SIMULATOR */
199 #endif /* HAVE_RECORDING */
200 #endif /* BOOTLOADER */
202 #else  /* !SWCODEC */
204 #ifndef BOOTLOADER
205 mpeg.c
206 #ifndef SIMULATOR
207 drivers/mas.c
208 #endif /* SIMULATOR */
209 #endif /* BOOTLOADER */
211 #endif /* SWCODEC */
213 /* Audio codec */
214 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
215 #if defined(HAVE_UDA1380)
216 drivers/audio/uda1380.c
217 #elif defined(HAVE_WM8751)
218 drivers/audio/wm8751.c
219 #elif defined(HAVE_WM8978)
220 drivers/audio/wm8978.c
221 #elif defined(HAVE_WM8975)
222 drivers/audio/wm8975.c
223 #elif defined(HAVE_WM8985)
224 drivers/audio/wm8985.c
225 #elif defined(HAVE_WM8758)
226 drivers/audio/wm8758.c
227 #elif defined(HAVE_WM8721)
228 drivers/audio/wm8721.c
229 #elif defined(HAVE_WM8731)
230 drivers/audio/wm8731.c
231 #elif defined(HAVE_AS3514)
232 drivers/audio/as3514.c
233 #elif defined(HAVE_TLV320)
234 drivers/audio/tlv320.c
235 #elif defined(HAVE_MAS35XX)
236 drivers/audio/mas35xx.c
237 #endif /* defined(HAVE_*) */
238 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
240 /* USB Stack */
241 #if !defined(SIMULATOR)
242 #ifdef HAVE_USBSTACK
243 usbstack/usb_core.c
244 usbstack/usb_storage.c
245 usbstack/usb_serial.c
246 usbstack/usb_charging_only.c
247 #if CONFIG_USBOTG == USBOTG_ARC
248 target/arm/usb-drv-arc.c
249 #elif CONFIG_USBOTG == USBOTG_ISP1583
250 drivers/isp1583.c
251 #endif
252 #else /* !defined(HAVE_USBSTACK) */
253 #if CONFIG_USBOTG == USBOTG_ISP1362      
254 drivers/isp1362.c
255 #elif CONFIG_USBOTG == USBOTG_M5636      
256 drivers/m5636.c
257 #endif
258 #endif /* !defined(HAVE_USBSTACK) */
259 #endif /* !defined(SIMULATOR) */
261 /* Other Random Hardware */
262 #ifdef HAVE_TSC2100
263 #if !defined(SIMULATOR)
264 drivers/tsc2100.c
265 drivers/audio/tsc2100.c
266 #endif /* !SIMULATOR */
267 #endif
269 /* CPU Specific - By class then particular chip if applicable */
270 #if defined(CPU_SH)
272 #ifndef SIMULATOR
273 drivers/i2c.c
274 target/sh/adc-sh.c
275 target/sh/bitswap.S
276 target/sh/crt0.S
277 target/sh/memcpy-sh.S
278 target/sh/memmove-sh.S
279 target/sh/memset-sh.S
280 target/sh/strlen-sh.S
281 target/sh/system-sh.c
282 target/sh/archos/descramble.S
283 #endif /* SIMULATOR */
285 #elif defined(CPU_COLDFIRE)
287 #ifndef SIMULATOR
288 target/coldfire/crt0.S
289 #ifdef HAVE_PRIORITY_SCHEDULING
290 common/ffs.c
291 target/coldfire/ffs-coldfire.S
292 #endif
293 target/coldfire/memcpy-coldfire.S
294 target/coldfire/memmove-coldfire.S
295 target/coldfire/memset-coldfire.S
296 target/coldfire/strlen-coldfire.S
297 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
298  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
299 target/coldfire/memset16-coldfire.S
300 #endif
301 target/coldfire/system-coldfire.c
302 #ifndef BOOTLOADER
303 target/coldfire/pcm-coldfire.c
304 #endif /* BOOTLOADER */
305 #if CONFIG_I2C == I2C_COLDFIRE
306 target/coldfire/i2c-coldfire.c
307 #endif /* CONFIG_I2C == I2C_COLDFIRE */
308 #endif /* SIMULATOR */
310 #elif defined(CPU_PP) || defined(CPU_ARM)
311 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
312 target/arm/memcpy-arm.S
313 target/arm/memmove-arm.S
314 common/strlen.c
315 #ifndef SIMULATOR
316 target/arm/memset-arm.S
317 target/arm/memset16-arm.S
318 #ifdef HAVE_PRIORITY_SCHEDULING
319 target/arm/ffs-arm.S
320 #endif
321 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
322 target/arm/i2c-pp.c
323 #elif CONFIG_I2C == I2C_PNX0101
324 target/arm/pnx0101/i2c-pnx0101.c
325 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
326 target/arm/i2c-telechips.c
327 #elif CONFIG_I2C == I2C_S3C2440
328 /* no i2c driver yet */
329 #endif
331 #if CONFIG_CPU == PNX0101
332 target/arm/pnx0101/system-pnx0101.c
333 #endif
335 #if defined(CPU_PP)
336 #if CONFIG_CPU == PP5002
337 target/arm/system-pp5002.c
338 #elif defined CPU_PP502x
339 target/arm/system-pp502x.c
340 #endif
341 #ifdef BOOTLOADER
342 target/arm/crt0-pp-bl.S
343 #else
344 target/arm/pcm-pp.c
345 #if !defined(SANSA_E200) && !defined(SANSA_C200)
346 target/arm/audio-pp.c
347 #endif /* SANSA_E200 */
348 target/arm/crt0-pp.S
349 #endif
350 #elif CONFIG_CPU == PNX0101
351 target/arm/pnx0101/crt0-pnx0101.S
352 #elif CONFIG_CPU==DM320
353 target/arm/tms320dm320/crt0.S
354 #elif CONFIG_CPU==S3C2440
355 target/arm/s3c2440/crt0.S
356 #elif defined(CPU_TCC77X)
357 target/arm/tcc77x/crt0.S
358 #elif defined(CPU_TCC780X)
359 target/arm/tcc780x/crt0.S
360 #elif CONFIG_CPU==IMX31L
361 target/arm/imx31/crt0.S
362 #elif CONFIG_CPU==S5L8700
363 target/arm/s5l8700/crt0.S
364 #elif defined(CPU_ARM)
365 target/arm/crt0.S
366 #endif /* defined(CPU_*) */
367 #endif /* SIMULATOR */
369 #elif defined(CPU_MIPS)
370 #undef mips
371 /*target/mips/memcpy.S
372 target/mips/memset.S
373 common/memset16.c
374 target/mips/strlen.S*/
375 common/memcpy.c
376 common/memmove.c
377 common/memset.c
378 common/memset16.c
379 common/strlen.c
380 #if CONFIG_CPU==JZ4732
381 target/mips/ingenic_jz47xx/crt0.S
382 #endif /* CONFIG_CPU == JZ4732 */
384 #else
386 #ifdef HAVE_PRIORITY_SCHEDULING
387 common/ffs.c
388 #endif
389 common/memcpy.c
390 common/memmove.c
391 common/memset.c
392 common/memset16.c
393 common/strlen.c
394 #ifndef SIMULATOR
395 crt0.S
396 drivers/i2c.c
397 #endif /* SIMULATOR */
399 #endif /* defined(CPU_*) */
401 #ifdef ARCHOS_PLAYER
402 #ifndef SIMULATOR
403 target/sh/archos/ata-archos.c
404 target/sh/archos/ata-as-archos.S
405 target/sh/archos/player/button-player.c
406 target/sh/archos/player/hwcompat-player.c
407 target/sh/archos/player/lcd-as-player.S
408 target/sh/archos/player/lcd-player.c
409 target/sh/archos/player/power-player.c
410 target/sh/archos/player/powermgmt-player.c
411 target/sh/archos/player/usb-player.c
412 #endif /* SIMULATOR */
413 #endif /* ARCHOS_PLAYER */
415 #ifdef ARCHOS_RECORDER
416 #ifndef SIMULATOR
417 target/sh/archos/ata-archos.c
418 target/sh/archos/ata-as-archos.S
419 target/sh/archos/lcd-archos-bitmap.c
420 target/sh/archos/lcd-as-archos-bitmap.S   
421 target/sh/archos/recorder/button-recorder.c
422 target/sh/archos/recorder/power-recorder.c
423 target/sh/archos/recorder/powermgmt-recorder.c
424 target/sh/archos/recorder/usb-recorder.c
425 #endif /* SIMULATOR */
426 #endif /* ARCHOS_RECORDER */
428 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
429 #ifndef SIMULATOR
430 target/sh/archos/ata-archos.c
431 target/sh/archos/ata-as-archos.S
432 target/sh/archos/lcd-archos-bitmap.c
433 target/sh/archos/lcd-as-archos-bitmap.S
434 target/sh/archos/fm_v2/button-fm_v2.c
435 target/sh/archos/fm_v2/power-fm_v2.c
436 target/sh/archos/fm_v2/powermgmt-fm_v2.c
437 target/sh/archos/fm_v2/usb-fm_v2.c
438 #endif /* SIMULATOR */
439 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
441 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
442 #ifndef SIMULATOR
443 target/sh/archos/lcd-archos-bitmap.c
444 target/sh/archos/lcd-as-archos-bitmap.S
445 target/sh/archos/ondio/button-ondio.c
446 target/sh/archos/ondio/power-ondio.c
447 target/sh/archos/ondio/powermgmt-ondio.c
448 target/sh/archos/ondio/usb-ondio.c
449 #if (CONFIG_TUNER & TEA5767)
450 target/sh/archos/ondio/fmradio_i2c-ondio.c
451 #endif
452 #endif /* SIMULATOR */
453 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
455 #ifdef SANSA_E200
456 #ifndef SIMULATOR
457 target/arm/lcd-as-memframe.S
458 target/arm/ata-sd-pp.c
459 target/arm/sandisk/sansa-e200/lcd-e200.c
460 target/arm/adc-as3514.c
461 target/arm/sandisk/backlight-c200_e200.c
462 target/arm/usb-fw-pp502x.c
463 target/arm/sandisk/sansa-e200/button-e200.c
464 target/arm/sandisk/power-c200_e200.c
465 target/arm/sandisk/sansa-e200/powermgmt-e200.c
466 target/arm/i2s-pp.c
467 #ifndef BOOTLOADER
468 target/arm/sandisk/audio-c200_e200.c
469 #endif /* BOOTLOADER */
470 #endif /* SIMULATOR */
471 #endif /* SANSA_E200 */
473 #ifdef SANSA_C200
474 #ifndef SIMULATOR
475 target/arm/ata-sd-pp.c
476 target/arm/sandisk/sansa-c200/lcd-c200.c
477 target/arm/sandisk/sansa-c200/lcd-as-c200.S
478 target/arm/adc-as3514.c
479 target/arm/sandisk/backlight-c200_e200.c
480 target/arm/usb-fw-pp502x.c
481 target/arm/sandisk/sansa-c200/button-c200.c
482 target/arm/sandisk/power-c200_e200.c
483 target/arm/sandisk/sansa-c200/powermgmt-c200.c
484 target/arm/i2s-pp.c
485 #ifndef BOOTLOADER
486 target/arm/sandisk/audio-c200_e200.c
487 #endif /* BOOTLOADER */
488 #endif /* SIMULATOR */
489 #endif /* SANSA_C200 */
491 #ifdef PHILIPS_SA9200
492 #ifndef SIMULATOR
493 target/arm/ata-sd-pp.c
494 target/arm/philips/sa9200/lcd-sa9200.c
495 target/arm/adc-as3514.c
496 target/arm/philips/sa9200/backlight-sa9200.c
497 target/arm/usb-fw-pp502x.c
498 target/arm/philips/sa9200/button-sa9200.c
499 target/arm/philips/sa9200/power-sa9200.c
500 target/arm/philips/sa9200/powermgmt-sa9200.c
501 target/arm/i2s-pp.c
502 #endif /* SIMULATOR */
503 #endif /* PHILIPS_SA9200 */
505 #ifdef PHILIPS_HDD1630
506 #ifndef SIMULATOR
507 target/arm/ata-as-arm.S
508 target/arm/ata-pp5020.c
509 target/arm/wmcodec-pp.c
510 target/arm/i2s-pp.c
511 target/arm/adc-pp5020.c
512 target/arm/philips/hdd1630/backlight-hdd1630.c
513 target/arm/philips/hdd1630/button-hdd1630.c
514 target/arm/philips/hdd1630/lcd-hdd1630.c
515 target/arm/philips/hdd1630/power-hdd1630.c
516 target/arm/philips/hdd1630/powermgmt-hdd1630.c
517 target/arm/usb-fw-pp502x.c
518 #endif /* SIMULATOR */
519 #endif /* PHILIPS_HDD1630 */
521 #ifdef IAUDIO_X5
522 #ifndef SIMULATOR
523 target/coldfire/ata-as-coldfire.S
524 target/coldfire/pcf50606-coldfire.c
525 target/coldfire/iaudio/adc-iaudio.c
526 target/coldfire/iaudio/ata-iaudio.c
527 target/coldfire/iaudio/lcd-remote-as-iaudio.S
528 target/coldfire/iaudio/lcd-remote-iaudio.c
529 target/coldfire/iaudio/pcf50606-iaudio.c
530 target/coldfire/iaudio/powermgmt-iaudio.c
531 target/coldfire/iaudio/system-iaudio.c
532 target/coldfire/iaudio/usb-iaudio.c
533 target/coldfire/iaudio/x5/backlight-x5.c
534 target/coldfire/iaudio/x5/button-x5.c
535 target/coldfire/iaudio/x5/ds2411-x5.c
536 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
537 target/coldfire/iaudio/x5/lcd-as-x5.S
538 target/coldfire/iaudio/x5/lcd-x5.c
539 target/coldfire/iaudio/x5/m5636-x5.c
540 target/coldfire/iaudio/x5/power-x5.c
541 #ifndef BOOTLOADER
542 target/coldfire/iaudio/x5/audio-x5.c
543 #endif
544 #endif /* SIMULATOR */
545 #endif /* IAUDIO_X5 */
547 #ifdef IAUDIO_M5
548 #ifndef SIMULATOR
549 target/coldfire/ata-as-coldfire.S
550 target/coldfire/pcf50606-coldfire.c
551 target/coldfire/iaudio/adc-iaudio.c
552 target/coldfire/iaudio/ata-iaudio.c
553 target/coldfire/iaudio/lcd-remote-as-iaudio.S
554 target/coldfire/iaudio/lcd-remote-iaudio.c
555 target/coldfire/iaudio/m5/backlight-m5.c
556 target/coldfire/iaudio/m5/button-m5.c
557 target/coldfire/iaudio/m5/lcd-as-m5.S
558 target/coldfire/iaudio/m5/lcd-m5.c
559 target/coldfire/iaudio/m5/power-m5.c
560 target/coldfire/iaudio/pcf50606-iaudio.c
561 target/coldfire/iaudio/powermgmt-iaudio.c
562 target/coldfire/iaudio/system-iaudio.c
563 target/coldfire/iaudio/usb-iaudio.c
564 #ifndef BOOTLOADER
565 target/coldfire/iaudio/m5/audio-m5.c
566 #endif
567 #endif /* SIMULATOR */
568 #endif /* IAUDIO_M5 */
570 #ifdef IAUDIO_M3
571 #ifndef SIMULATOR
572 target/coldfire/ata-as-coldfire.S
573 target/coldfire/iaudio/m3/adc-m3.c
574 target/coldfire/iaudio/m3/ata-m3.c
575 target/coldfire/iaudio/m3/backlight-m3.c
576 target/coldfire/iaudio/m3/button-m3.c
577 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
578 target/coldfire/iaudio/m3/lcd-m3.c
579 target/coldfire/iaudio/m3/lcd-as-m3.S
580 target/coldfire/iaudio/m3/power-m3.c
581 target/coldfire/iaudio/m3/powermgmt-m3.c
582 target/coldfire/iaudio/m3/system-m3.c
583 target/coldfire/iaudio/m3/usb-m3.c
584 #ifndef BOOTLOADER
585 target/coldfire/iaudio/m3/audio-m3.c
586 #endif
587 #endif /* SIMULATOR */
588 #endif /* IAUDIO_M3 */
590 #ifdef IRIVER_IFP7XX_SERIES
591 #ifdef STUB
592 ifp_usb_serial.c
593 common/sscanf.c
594 #endif /* STUB */
595 #endif /* IRIVER_IFP7XX_SERIES */
597 #ifdef IRIVER_H300_SERIES
598 #ifndef SIMULATOR
599 target/coldfire/ata-as-coldfire.S
600 target/coldfire/pcf50606-coldfire.c
601 target/coldfire/iriver/ata-iriver.c
602 target/coldfire/iriver/lcd-remote-iriver.c
603 target/coldfire/iriver/lcd-remote-as-iriver.S
604 target/coldfire/iriver/system-iriver.c
605 target/coldfire/iriver/fmradio_i2c-iriver.c
606 target/coldfire/iriver/h300/sw_i2c-h300.c
607 target/coldfire/iriver/h300/adc-h300.c
608 target/coldfire/iriver/h300/backlight-h300.c
609 target/coldfire/iriver/h300/button-h300.c
610 target/coldfire/iriver/h300/pcf50606-h300.c
611 target/coldfire/iriver/h300/lcd-as-h300.S
612 target/coldfire/iriver/h300/lcd-h300.c
613 target/coldfire/iriver/h300/power-h300.c
614 target/coldfire/iriver/h300/powermgmt-h300.c
615 target/coldfire/iriver/h300/usb-h300.c
616 #ifndef BOOTLOADER
617 target/coldfire/iriver/audio-iriver.c
618 #endif
619 #endif /* SIMULATOR */
620 #endif /* IRIVER_H300_SERIES */
622 #ifdef IRIVER_H100_SERIES
623 #ifndef SIMULATOR
624 drivers/sw_i2c.c
625 target/coldfire/ata-as-coldfire.S
626 target/coldfire/iriver/ata-iriver.c
627 target/coldfire/iriver/lcd-remote-iriver.c
628 target/coldfire/iriver/lcd-remote-as-iriver.S
629 target/coldfire/iriver/system-iriver.c
630 target/coldfire/iriver/fmradio_i2c-iriver.c
631 target/coldfire/iriver/h100/adc-h100.c
632 target/coldfire/iriver/h100/backlight-h100.c
633 target/coldfire/iriver/h100/button-h100.c
634 target/coldfire/iriver/h100/lcd-as-h100.S
635 target/coldfire/iriver/h100/lcd-h100.c
636 target/coldfire/iriver/h100/power-h100.c
637 target/coldfire/iriver/h100/powermgmt-h100.c
638 #ifndef BOOTLOADER
639 target/coldfire/iriver/audio-iriver.c
640 target/coldfire/iriver/h100/spdif-h100.c
641 #endif
642 target/coldfire/iriver/h100/usb-h100.c
643 #endif /* SIMULATOR */
644 #endif /* IRIVER_H100_SERIES */
646 #ifdef IRIVER_H10
647 #ifndef SIMULATOR
648 target/arm/ata-as-arm.S
649 target/arm/ata-pp5020.c
650 target/arm/wmcodec-pp.c
651 target/arm/i2s-pp.c
652 target/arm/adc-pp5020.c
653 target/arm/iriver/h10/backlight-h10.c
654 target/arm/iriver/h10/button-h10.c
655 target/arm/iriver/h10/fmradio_i2c-h10.c
656 target/arm/iriver/h10/lcd-h10_20gb.c
657 target/arm/iriver/h10/lcd-as-h10.S
658 target/arm/iriver/h10/power-h10.c
659 target/arm/iriver/h10/powermgmt-h10.c
660 target/arm/usb-fw-pp502x.c
661 #endif /* SIMULATOR */
662 #endif /* IRIVER_H10 */
664 #ifdef IRIVER_H10_5GB
665 #ifndef SIMULATOR
666 target/arm/ata-as-arm.S
667 target/arm/ata-pp5020.c
668 target/arm/wmcodec-pp.c
669 target/arm/i2s-pp.c
670 target/arm/adc-pp5020.c
671 target/arm/iriver/h10/backlight-h10.c
672 target/arm/iriver/h10/button-h10.c
673 target/arm/iriver/h10/fmradio_i2c-h10.c
674 target/arm/iriver/h10/lcd-h10_5gb.c
675 target/arm/iriver/h10/power-h10.c
676 target/arm/iriver/h10/powermgmt-h10.c
677 target/arm/usb-fw-pp502x.c
678 #endif /* SIMULATOR */
679 #endif /* IRIVER_H10_5GB */
681 #ifdef GIGABEAT_F
682 #ifndef SIMULATOR
683 target/arm/lcd-as-memframe.S
684 target/arm/mmu-arm.c
685 target/arm/s3c2440/debug-s3c2440.c
686 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
687 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
688 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
689 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
690 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
691 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
692 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
693 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
694 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
695 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
696 #ifndef BOOTLOADER
697 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
698 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
699 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
700 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
701 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
702 #endif
703 #endif /* SIMULATOR */
704 #endif /* GIGABEAT_F */
706 #ifdef GIGABEAT_S
707 #ifndef SIMULATOR
708 target/arm/lcd-as-memframe.S
709 target/arm/mmu-arm.c
710 target/arm/imx31/debug-imx31.c
711 target/arm/imx31/rolo_restart.S
712 target/arm/imx31/gigabeat-s/adc-imx31.c
713 target/arm/imx31/gigabeat-s/ata-imx31.c
714 target/arm/imx31/gigabeat-s/avic-imx31.c
715 target/arm/imx31/gigabeat-s/backlight-imx31.c
716 target/arm/imx31/gigabeat-s/button-imx31.c
717 target/arm/imx31/gigabeat-s/clkctl-imx31.c
718 target/arm/imx31/gigabeat-s/dma_start.c
719 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
720 target/arm/imx31/gigabeat-s/gpio-imx31.c
721 target/arm/imx31/gigabeat-s/kernel-imx31.c
722 target/arm/imx31/gigabeat-s/i2c-imx31.c
723 target/arm/imx31/gigabeat-s/i2s-imx31.c
724 target/arm/imx31/gigabeat-s/lcd-imx31.c
725 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
726 target/arm/imx31/gigabeat-s/mc13783-imx31.c
727 target/arm/imx31/gigabeat-s/mmu-imx31.c
728 target/arm/imx31/gigabeat-s/power-imx31.c
729 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
730 target/arm/imx31/gigabeat-s/spi-imx31.c
731 target/arm/imx31/gigabeat-s/system-imx31.c
732 target/arm/imx31/gigabeat-s/usb-imx31.c
733 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
734 #ifndef BOOTLOADER
735 target/arm/imx31/gigabeat-s/pcm-imx31.c
736 #endif
737 #endif /* SIMULATOR */
738 #endif /* GIGABEAT_S */
740 #if CONFIG_CPU == DM320
741 target/arm/tms320dm320/debug-dm320.c
742 target/arm/tms320dm320/dsp-dm320.c
743 target/arm/tms320dm320/i2c-dm320.c
744 target/arm/tms320dm320/kernel-dm320.c
745 target/arm/tms320dm320/spi-dm320.c
746 target/arm/tms320dm320/system-dm320.c
747 target/arm/tms320dm320/timer-dm320.c
748 target/arm/tms320dm320/uart-dm320.c
749 #endif /* CONFIG_CPU == DM320 */
751 #ifdef MROBE_500
752 #ifndef SIMULATOR
753 target/arm/lcd-as-memframe.S
754 target/arm/mmu-arm.c
755 target/arm/tms320dm320/mrobe-500/adc-mr500.c
756 target/arm/tms320dm320/mrobe-500/ata-mr500.c
757 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
758 target/arm/tms320dm320/mrobe-500/button-mr500.c
759 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
760 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
761 #if defined(HAVE_REMOTE_LCD)
762 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
763 #endif
764 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
765 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
766 target/arm/tms320dm320/mrobe-500/power-mr500.c
767 target/arm/tms320dm320/mrobe-500/usb-mr500.c
768 #endif /* SIMULATOR */
769 #endif /* MROBE_500 */
771 #ifdef CREATIVE_ZVx
772 #ifndef SIMULATOR
773 target/arm/ata-as-arm.S
774 target/arm/lcd-as-memframe.S
775 target/arm/mmu-arm.c
776 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
777 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
778 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
779 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
780 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
781 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
782 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
783 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
784 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
785 #endif /* SIMULATOR */
786 #endif /* CREATIVE_ZVx */
788 #ifdef MROBE_100
789 #ifndef SIMULATOR
790 drivers/sw_i2c.c
791 target/arm/ata-as-arm.S
792 target/arm/ata-pp5020.c
793 target/arm/wmcodec-pp.c
794 target/arm/i2s-pp.c
795 target/arm/adc-pp5020.c
796 target/arm/olympus/mrobe-100/backlight-mr100.c
797 target/arm/olympus/mrobe-100/button-mr100.c
798 target/arm/olympus/mrobe-100/lcd-mr100.c
799 target/arm/olympus/mrobe-100/lcd-as-mr100.S
800 target/arm/olympus/mrobe-100/power-mr100.c
801 target/arm/olympus/mrobe-100/powermgmt-mr100.c
802 target/arm/usb-fw-pp502x.c
803 #endif /* SIMULATOR */
804 #endif /* MROBE_100 */
806 #ifdef ELIO_TPJ1022
807 #ifndef SIMULATOR
808 target/arm/ata-as-arm.S
809 target/arm/ata-pp5020.c
810 target/arm/wmcodec-pp.c
811 target/arm/i2s-pp.c
812 target/arm/tatung/tpj1022/adc-tpj1022.c
813 target/arm/tatung/tpj1022/backlight-tpj1022.c
814 target/arm/tatung/tpj1022/button-tpj1022.c
815 target/arm/tatung/tpj1022/lcd-tpj1022.c
816 target/arm/tatung/tpj1022/power-tpj1022.c
817 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
818 target/arm/usb-fw-pp502x.c
819 #endif /* SIMULATOR */
820 #endif /* ELIO_TPJ1022 */
822 #ifdef IPOD_4G
823 #ifndef SIMULATOR
824 drivers/pcf50605.c
825 target/arm/wmcodec-pp.c
826 target/arm/i2s-pp.c
827 target/arm/ata-as-arm.S
828 target/arm/ata-pp5020.c
829 target/arm/ipod/adc-ipod-pcf.c
830 target/arm/ipod/backlight-4g_color.c
831 target/arm/ipod/button-clickwheel.c
832 target/arm/ipod/lcd-as-gray.S
833 target/arm/ipod/lcd-gray.c
834 target/arm/ipod/power-ipod.c
835 target/arm/ipod/powermgmt-ipod-pcf.c
836 target/arm/usb-fw-pp502x.c
837 #endif /* SIMULATOR */
838 #endif /* IPOD_4G */
840 #ifdef IPOD_COLOR
841 #ifndef SIMULATOR
842 drivers/pcf50605.c
843 target/arm/ata-as-arm.S
844 target/arm/ata-pp5020.c
845 target/arm/wmcodec-pp.c
846 target/arm/i2s-pp.c
847 target/arm/ipod/adc-ipod-pcf.c
848 target/arm/ipod/backlight-4g_color.c
849 target/arm/ipod/button-clickwheel.c
850 target/arm/ipod/lcd-color_nano.c
851 target/arm/ipod/power-ipod.c
852 target/arm/ipod/powermgmt-ipod-pcf.c
853 target/arm/usb-fw-pp502x.c
854 #endif /* SIMULATOR */
855 #endif /* IPOD_COLOR */
857 #ifdef IPOD_NANO
858 #ifndef SIMULATOR
859 drivers/pcf50605.c
860 target/arm/ata-as-arm.S
861 target/arm/ata-pp5020.c
862 target/arm/wmcodec-pp.c
863 target/arm/i2s-pp.c
864 target/arm/ipod/adc-ipod-pcf.c
865 target/arm/ipod/backlight-nano_video.c
866 target/arm/ipod/button-clickwheel.c
867 target/arm/ipod/lcd-color_nano.c
868 target/arm/ipod/power-ipod.c
869 target/arm/ipod/powermgmt-ipod-pcf.c
870 target/arm/usb-fw-pp502x.c
871 #endif /* SIMULATOR */
872 #endif /* IPOD_NANO */
874 #ifdef IPOD_VIDEO
875 #ifndef SIMULATOR
876 drivers/pcf50605.c
877 target/arm/ata-as-arm.S
878 target/arm/ata-pp5020.c
879 target/arm/wmcodec-pp.c
880 target/arm/i2s-pp.c
881 target/arm/ipod/adc-ipod-pcf.c
882 target/arm/ipod/backlight-nano_video.c
883 target/arm/ipod/button-clickwheel.c
884 target/arm/ipod/power-ipod.c
885 target/arm/ipod/powermgmt-ipod-pcf.c
886 target/arm/ipod/video/lcd-as-video.S
887 target/arm/ipod/video/lcd-video.c
888 target/arm/usb-fw-pp502x.c
889 #endif /* SIMULATOR */
890 #endif /* IPOD_VIDEO */
892 #ifdef IPOD_3G
893 #ifndef SIMULATOR
894 drivers/pcf50605.c
895 target/arm/ata-pp5002.c
896 target/arm/wmcodec-pp.c
897 target/arm/i2s-pp.c
898 target/arm/ipod/adc-ipod-pcf.c
899 target/arm/ipod/3g/backlight-3g.c
900 target/arm/ipod/button-1g-3g.c
901 target/arm/ipod/lcd-as-gray.S
902 target/arm/ipod/lcd-gray.c
903 target/arm/ipod/power-ipod.c
904 target/arm/ipod/powermgmt-ipod-pcf.c
905 target/arm/usb-fw-pp5002.c
906 #endif /* SIMULATOR */
907 #endif /* IPOD_3G */
909 #ifdef IPOD_1G2G
910 #ifndef SIMULATOR
911 target/arm/ata-pp5002.c
912 target/arm/wmcodec-pp.c
913 target/arm/i2s-pp.c
914 target/arm/ipod/1g2g/adc-ipod-1g2g.c
915 target/arm/ipod/1g2g/backlight-1g2g.c
916 target/arm/ipod/1g2g/powermgmt-1g2g.c
917 target/arm/ipod/button-1g-3g.c
918 target/arm/ipod/lcd-as-gray.S
919 target/arm/ipod/lcd-gray.c
920 target/arm/ipod/power-ipod.c
921 target/arm/usb-fw-pp5002.c
922 #endif /* SIMULATOR */
923 #endif /* IPOD_1G2G */
925 #ifdef IPOD_MINI
926 #ifndef SIMULATOR
927 drivers/pcf50605.c
928 target/arm/ata-as-arm.S
929 target/arm/ata-pp5020.c
930 target/arm/wmcodec-pp.c
931 target/arm/i2s-pp.c
932 target/arm/ipod/adc-ipod-pcf.c
933 target/arm/ipod/backlight-mini1g_mini2g.c
934 target/arm/ipod/button-mini1g.c
935 target/arm/ipod/lcd-as-gray.S
936 target/arm/ipod/lcd-gray.c
937 target/arm/ipod/power-ipod.c
938 target/arm/ipod/powermgmt-ipod-pcf.c
939 target/arm/usb-fw-pp502x.c
940 #endif /* SIMULATOR */
941 #endif /* IPOD_MINI */
943 #ifdef IPOD_MINI2G
944 #ifndef SIMULATOR
945 drivers/pcf50605.c
946 target/arm/ata-as-arm.S
947 target/arm/ata-pp5020.c
948 target/arm/wmcodec-pp.c
949 target/arm/i2s-pp.c
950 target/arm/ipod/adc-ipod-pcf.c
951 target/arm/ipod/backlight-mini1g_mini2g.c
952 target/arm/ipod/button-clickwheel.c
953 target/arm/ipod/lcd-as-gray.S
954 target/arm/ipod/lcd-gray.c
955 target/arm/ipod/power-ipod.c
956 target/arm/ipod/powermgmt-ipod-pcf.c
957 target/arm/usb-fw-pp502x.c
958 #endif /* SIMULATOR */
959 #endif /* IPOD_MINI2G */
961 #ifdef IRIVER_IFP7XX
962 #ifndef SIMULATOR
963 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
964 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
965 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
966 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
967 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
968 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
969 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
970 #ifndef BOOTLOADER
971 target/arm/pnx0101/pcm-pnx0101.c
972 #endif /* BOOTLOADER */
973 #endif /* SIMULATOR */
974 #endif /* IRIVER_IFP7XX */
976 #ifdef LOGIK_DAX
977 #ifndef SIMULATOR
978 drivers/nand_id.c
979 target/arm/ata-nand-telechips.c
980 target/arm/tcc77x/adc-tcc77x.c
981 target/arm/tcc77x/kernel-tcc77x.c
982 target/arm/tcc77x/lcd-ssd1815.c
983 target/arm/tcc77x/powermgmt-tcc77x.c
984 target/arm/tcc77x/system-tcc77x.c
985 target/arm/tcc77x/timer-tcc77x.c
986 target/arm/tcc77x/usb-tcc77x.c
987 target/arm/tcc77x/logikdax/button-logikdax.c
988 target/arm/tcc77x/logikdax/power-logikdax.c
989 #ifndef BOOTLOADER
990 target/arm/tcc77x/debug-tcc77x.c
991 target/arm/tcc77x/pcm-tcc77x.c
992 #endif /* BOOTLOADER */
993 #endif /* SIMULATOR */
994 #endif /* LOGIK_DAX */
996 #ifdef SANSA_M200
997 #ifndef SIMULATOR
998 drivers/nand_id.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/lcd-ssd1815.c
1003 target/arm/tcc77x/powermgmt-tcc77x.c
1004 target/arm/tcc77x/system-tcc77x.c
1005 target/arm/tcc77x/timer-tcc77x.c
1006 target/arm/tcc77x/usb-tcc77x.c
1007 target/arm/tcc77x/m200/button-m200.c
1008 target/arm/tcc77x/m200/power-m200.c
1009 #ifndef BOOTLOADER
1010 target/arm/tcc77x/debug-tcc77x.c
1011 target/arm/tcc77x/pcm-tcc77x.c
1012 #endif /* BOOTLOADER */
1013 #endif /* SIMULATOR */
1014 #endif /* SANSA_M200 */
1016 #ifdef SANSA_C100
1017 #ifndef SIMULATOR
1018 drivers/nand_id.c
1019 target/arm/ata-nand-telechips.c
1020 target/arm/tcc77x/adc-tcc77x.c
1021 target/arm/tcc77x/kernel-tcc77x.c
1022 target/arm/tcc77x/c100/lcd-S6B33B2.c
1023 target/arm/tcc77x/powermgmt-tcc77x.c
1024 target/arm/tcc77x/system-tcc77x.c
1025 target/arm/tcc77x/timer-tcc77x.c
1026 target/arm/tcc77x/usb-tcc77x.c
1027 target/arm/tcc77x/c100/button-c100.c
1028 target/arm/tcc77x/c100/power-c100.c
1029 #ifndef BOOTLOADER
1030 target/arm/tcc77x/debug-tcc77x.c
1031 target/arm/tcc77x/pcm-tcc77x.c
1032 #endif /* BOOTLOADER */
1033 #endif /* SIMULATOR */
1034 #endif /* SANSA_C100 */
1036 #ifdef IAUDIO_7
1037 #ifndef SIMULATOR
1038 drivers/nand_id.c
1039 target/arm/ata-nand-telechips.c
1040 target/arm/tcc77x/adc-tcc77x.c
1041 target/arm/tcc77x/system-tcc77x.c
1042 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1043 target/arm/tcc77x/iaudio7/power-iaudio7.c
1044 #endif /* SIMULATOR */
1045 #endif /* IAUDIO_7 */
1047 #ifdef COWON_D2
1048 #ifndef SIMULATOR
1049 drivers/nand_id.c
1050 drivers/pcf50606.c
1051 target/arm/lcd-as-memframe.S
1052 target/arm/ata-nand-telechips.c
1053 target/arm/tcc780x/adc-tcc780x.c
1054 target/arm/tcc780x/system-tcc780x.c
1055 target/arm/tcc780x/cowond2/button-cowond2.c
1056 target/arm/tcc780x/cowond2/lcd-cowond2.c
1057 target/arm/tcc780x/cowond2/power-cowond2.c
1058 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1059 target/arm/tcc780x/cowond2/usb-cowond2.c
1060 target/arm/tcc780x/cowond2/backlight-cowond2.c
1061 #ifndef BOOTLOADER
1062 target/arm/tcc780x/kernel-tcc780x.c
1063 target/arm/tcc780x/timer-tcc780x.c
1064 target/arm/wmcodec-telechips.c
1065 target/arm/tcc780x/debug-tcc780x.c
1066 target/arm/tcc780x/pcm-tcc780x.c
1067 target/arm/tcc780x/cowond2/audio-cowond2.c
1068 #endif /* BOOTLOADER */
1069 #endif /* SIMULATOR */
1070 #endif /* COWON_D2 */
1072 #ifdef MEIZU_M6SL
1073 target/arm/s5l8700/system-s5l8700.c
1074 target/arm/s5l8700/ata-nand-s5l8700.c
1075 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1076 #ifndef SIMULATOR
1077 #ifndef BOOTLOADER
1078 #endif /* BOOTLOADER */
1079 #endif /* SIMULATOR */
1080 #endif /* MEIZU_M6SL */
1082 #if CONFIG_CPU==JZ4732
1083 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1084 target/mips/ingenic_jz47xx/lcd-jz4740.c
1085 target/mips/ingenic_jz47xx/system-jz4740.c
1086 drivers/nand_id.c
1087 #endif
1089 #ifdef ONDA_VX747
1090 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx747.c
1091 target/mips/ingenic_jz47xx/onda_vx747/button-onda_vx747.c
1092 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1093 #endif