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