initial Meizu M6SL port
[Rockbox.git] / firmware / SOURCES
blob4937e6e6c603c4c7550ea0835b51c655c3178bb0
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 drivers/dac.c
105 drivers/serial.c
106 #endif /* SIMULATOR */
109 /* Storage */
110 #ifndef SIMULATOR
111 #ifdef HAVE_MMC
112 drivers/ata_mmc.c
113 #else  /* !HAVE_MMC */
114 #ifdef HAVE_FLASH_DISK
115 drivers/ata_flash.c
116 #else  /* !HAVE_FLASH_DISK */
117 #ifdef HAVE_ATA
118 drivers/ata.c
119 #endif /* SANSA_E200 */
120 #endif /* HAVE_FLASH_DISK */
121 #endif /* HAVE_MMC */
122 drivers/fat.c
123 #ifdef HAVE_HOTSWAP
124 hotswap.c
125 #endif
126 #endif /* SIMULATOR */
128 /* EEPROM */
129 #ifdef HAVE_EEPROM
130 drivers/eeprom_24cxx.c
131 #ifdef HAVE_EEPROM_SETTINGS
132 eeprom_settings.c
133 #endif /* HAVE_EEPROM_SETTINGS */
134 #endif /* HAVE_EEPROM */
136 /* RTC */
137 #ifndef SIMULATOR
138 #if (CONFIG_RTC == RTC_M41ST84W)
139 drivers/rtc/rtc_m41st84w.c
140 #elif (CONFIG_RTC == RTC_PCF50606)
141 drivers/rtc/rtc_pcf50606.c
142 #elif (CONFIG_RTC == RTC_PCF50605)
143 drivers/rtc/rtc_pcf50605.c
144 #elif (CONFIG_RTC == RTC_E8564)
145 drivers/rtc/rtc_e8564.c
146 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
147 drivers/rtc/rtc_ds1339_ds3231.c
148 #elif (CONFIG_RTC == RTC_S3C2440)
149 drivers/rtc/rtc_s3c2440.c
150 #elif (CONFIG_RTC == RTC_AS3514)
151 drivers/rtc/rtc_as3514.c
152 #elif (CONFIG_RTC == RTC_RX5X348AB)
153 drivers/rtc/rtc_rx5x348ab.c
154 #elif (CONFIG_RTC == RTC_MR100)
155 drivers/rtc/rtc_mr100.c
156 #endif /* (CONFIG_RTC == RTC_) */
157 #endif /* SIMULATOR */
159 /* Tuner */
160 #if CONFIG_TUNER
161 tuner.c
162 #ifndef SIMULATOR
163 #if (CONFIG_TUNER & LV24020LP)
164 drivers/tuner/lv24020lp.c
165 #endif /* (CONFIG_TUNER & LV24020LP) */
166 #if (CONFIG_TUNER & S1A0903X01)
167 drivers/fmradio.c
168 drivers/tuner/s1a0903x01.c
169 #endif /* (CONFIG_TUNER & S1A0903X01) */
170 #if (CONFIG_TUNER & TEA5767)
171 drivers/tuner/tea5767.c
172 #endif /* (CONFIG_TUNER & TEA5767) */
173 #endif /*SIMULATOR */
174 #endif /* CONFIG_TUNER */
176 /* Sound */
177 #if CONFIG_CODEC != SWCODEC
178 mp3_playback.c
179 #endif /* CONFIG_CODEC != SWCODEC */
180 mp3data.c
181 sound.c
183 #if CONFIG_CODEC == SWCODEC
185 #ifndef BOOTLOADER
186 general.c
187 pcm_sampr.c
188 replaygain.c
189 pcm.c
190 #ifdef HAVE_RECORDING
191 enc_base.c
192 #ifndef SIMULATOR
193 pcm_record.c
194 #endif /* SIMULATOR */
195 #endif /* HAVE_RECORDING */
196 #endif /* BOOTLOADER */
198 #else  /* !SWCODEC */
200 #ifndef BOOTLOADER
201 mpeg.c
202 #ifndef SIMULATOR
203 drivers/mas.c
204 #endif /* SIMULATOR */
205 #endif /* BOOTLOADER */
207 #endif /* SWCODEC */
209 /* Audio codec */
210 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
211 #if defined(HAVE_UDA1380)
212 drivers/audio/uda1380.c
213 #elif defined(HAVE_WM8751)
214 drivers/audio/wm8751.c
215 #elif defined(HAVE_WM8975) || defined(HAVE_WM8978)
216 drivers/audio/wm8975.c
217 #elif defined(HAVE_WM8985)
218 drivers/audio/wm8985.c
219 #elif defined(HAVE_WM8758)
220 drivers/audio/wm8758.c
221 #elif defined(HAVE_WM8721)
222 drivers/audio/wm8721.c
223 #elif defined(HAVE_WM8731)
224 drivers/audio/wm8731.c
225 #elif defined(HAVE_AS3514)
226 drivers/audio/as3514.c
227 #elif defined(HAVE_TLV320)
228 drivers/audio/tlv320.c
229 #elif defined(HAVE_MAS35XX)
230 drivers/audio/mas35xx.c
231 #endif /* defined(HAVE_*) */
232 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
234 /* USB Stack */
235 #if !defined(SIMULATOR)
236 #ifdef HAVE_USBSTACK
237 usbstack/usb_core.c
238 usbstack/usb_storage.c
239 usbstack/usb_serial.c
240 #ifdef CPU_PP502x
241 target/arm/usb-drv-pp502x.c
242 #endif
243 #else /* !defined(HAVE_USBSTACK) */
244 #if CONFIG_USBOTG == USBOTG_ISP1362      
245 drivers/isp1362.c        
246 #elif CONFIG_USBOTG == USBOTG_M5636      
247 drivers/m5636.c
248 #endif
249 #endif /* !defined(HAVE_USBSTACK) */
250 #endif /* !defined(SIMULATOR) */
252 /* Other Random Hardware */
253 #ifdef HAVE_TSC2100
254 drivers/tsc2100.c
255 #endif
257 /* CPU Specific - By class then particular chip if applicable */
258 #if defined(CPU_SH)
260 #ifndef SIMULATOR
261 drivers/i2c.c
262 target/sh/adc-sh.c
263 target/sh/bitswap.S
264 target/sh/crt0.S
265 target/sh/memcpy-sh.S
266 target/sh/memmove-sh.S
267 target/sh/memset-sh.S
268 target/sh/strlen-sh.S
269 target/sh/system-sh.c
270 target/sh/archos/descramble.S
271 #endif /* SIMULATOR */
273 #elif defined(CPU_COLDFIRE)
275 #ifndef SIMULATOR
276 target/coldfire/crt0.S
277 #ifdef HAVE_PRIORITY_SCHEDULING
278 common/ffs.c
279 target/coldfire/ffs-coldfire.S
280 #endif
281 target/coldfire/memcpy-coldfire.S
282 target/coldfire/memmove-coldfire.S
283 target/coldfire/memset-coldfire.S
284 target/coldfire/strlen-coldfire.S
285 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
286  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
287 target/coldfire/memset16-coldfire.S
288 #endif
289 target/coldfire/system-coldfire.c
290 #ifndef BOOTLOADER
291 target/coldfire/pcm-coldfire.c
292 #endif /* BOOTLOADER */
293 #if CONFIG_I2C == I2C_COLDFIRE
294 target/coldfire/i2c-coldfire.c
295 #endif /* CONFIG_I2C == I2C_COLDFIRE */
296 #endif /* SIMULATOR */
298 #elif defined(CPU_PP) || defined(CPU_ARM)
299 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
300 target/arm/memcpy-arm.S
301 target/arm/memmove-arm.S
302 common/strlen.c
303 #ifndef SIMULATOR
304 target/arm/memset-arm.S
305 target/arm/memset16-arm.S
306 #ifdef HAVE_PRIORITY_SCHEDULING
307 target/arm/ffs-arm.S
308 #endif
309 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
310 target/arm/i2c-pp.c
311 #elif CONFIG_I2C == I2C_PNX0101
312 target/arm/pnx0101/i2c-pnx0101.c
313 #elif CONFIG_I2C == I2C_TCC780X
314 target/arm/i2c-telechips.c
315 #elif CONFIG_I2C == I2C_S3C2440
316 /* no i2c driver yet */
317 #endif
318 #if CONFIG_CPU == PNX0101
319 target/arm/pnx0101/system-pnx0101.c
320 #endif
321 #if defined(CPU_PP)
322 #if CONFIG_CPU == PP5002
323 target/arm/system-pp5002.c
324 #elif defined CPU_PP502x
325 target/arm/system-pp502x.c
326 #endif
327 #ifdef BOOTLOADER
328 target/arm/crt0-pp-bl.S
329 #else
330 target/arm/pcm-pp.c
331 #if !defined(SANSA_E200) && !defined(SANSA_C200)
332 target/arm/audio-pp.c
333 #endif /* SANSA_E200 */
334 target/arm/crt0-pp.S
335 #endif
336 #elif CONFIG_CPU == PNX0101
337 target/arm/pnx0101/crt0-pnx0101.S
338 #elif CONFIG_CPU==DM320
339 target/arm/tms320dm320/crt0.S
340 #elif CONFIG_CPU==S3C2440
341 target/arm/s3c2440/crt0.S
342 #elif defined(CPU_TCC77X)
343 target/arm/tcc77x/crt0.S
344 #elif defined(CPU_TCC780X)
345 target/arm/tcc780x/crt0.S
346 #elif CONFIG_CPU==IMX31L
347 target/arm/imx31/crt0.S
348 #elif defined(CPU_ARM)
349 target/arm/crt0.S
350 #endif /* defined(CPU_*) */
351 #endif /* SIMULATOR */
353 #else
355 #ifdef HAVE_PRIORITY_SCHEDULING
356 common/ffs.c
357 #endif
358 common/memcpy.c
359 common/memmove.c
360 common/memset.c
361 common/memset16.c
362 common/strlen.c
363 #ifndef SIMULATOR
364 crt0.S
365 drivers/i2c.c
366 #endif /* SIMULATOR */
368 #endif /* defined(CPU_*) */
370 #ifdef ARCHOS_PLAYER
371 #ifndef SIMULATOR
372 target/sh/archos/ata-archos.c
373 target/sh/archos/ata-as-archos.S
374 target/sh/archos/player/button-player.c
375 target/sh/archos/player/hwcompat-player.c
376 target/sh/archos/player/lcd-as-player.S
377 target/sh/archos/player/lcd-player.c
378 target/sh/archos/player/power-player.c
379 target/sh/archos/player/powermgmt-player.c
380 target/sh/archos/player/usb-player.c
381 #endif /* SIMULATOR */
382 #endif /* ARCHOS_PLAYER */
384 #ifdef ARCHOS_RECORDER
385 #ifndef SIMULATOR
386 target/sh/archos/ata-archos.c
387 target/sh/archos/ata-as-archos.S
388 target/sh/archos/lcd-archos-bitmap.c
389 target/sh/archos/lcd-as-archos-bitmap.S   
390 target/sh/archos/recorder/button-recorder.c
391 target/sh/archos/recorder/power-recorder.c
392 target/sh/archos/recorder/powermgmt-recorder.c
393 target/sh/archos/recorder/usb-recorder.c
394 #endif /* SIMULATOR */
395 #endif /* ARCHOS_RECORDER */
397 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
398 #ifndef SIMULATOR
399 target/sh/archos/ata-archos.c
400 target/sh/archos/ata-as-archos.S
401 target/sh/archos/lcd-archos-bitmap.c
402 target/sh/archos/lcd-as-archos-bitmap.S
403 target/sh/archos/fm_v2/button-fm_v2.c
404 target/sh/archos/fm_v2/power-fm_v2.c
405 target/sh/archos/fm_v2/powermgmt-fm_v2.c
406 target/sh/archos/fm_v2/usb-fm_v2.c
407 #endif /* SIMULATOR */
408 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
410 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
411 #ifndef SIMULATOR
412 target/sh/archos/lcd-archos-bitmap.c
413 target/sh/archos/lcd-as-archos-bitmap.S
414 target/sh/archos/ondio/button-ondio.c
415 target/sh/archos/ondio/power-ondio.c
416 target/sh/archos/ondio/powermgmt-ondio.c
417 target/sh/archos/ondio/usb-ondio.c
418 #if (CONFIG_TUNER & TEA5767)
419 target/sh/archos/ondio/fmradio_i2c-ondio.c
420 #endif
421 #endif /* SIMULATOR */
422 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
424 #ifdef SANSA_E200
425 #ifndef SIMULATOR
426 target/arm/lcd-as-memframe.S
427 target/arm/sandisk/ata-c200_e200.c
428 target/arm/sandisk/sansa-e200/lcd-e200.c
429 target/arm/sandisk/adc-c200_e200.c
430 target/arm/sandisk/backlight-c200_e200.c
431 target/arm/usb-fw-pp502x.c
432 target/arm/sandisk/sansa-e200/button-e200.c
433 target/arm/sandisk/power-c200_e200.c
434 target/arm/sandisk/sansa-e200/powermgmt-e200.c
435 target/arm/i2s-pp.c
436 #ifndef BOOTLOADER
437 target/arm/sandisk/audio-c200_e200.c
438 #endif /* BOOTLOADER */
439 #endif /* SIMULATOR */
440 #endif /* SANSA_E200 */
442 #ifdef SANSA_C200
443 #ifndef SIMULATOR
444 target/arm/sandisk/ata-c200_e200.c
445 target/arm/sandisk/sansa-c200/lcd-c200.c
446 target/arm/sandisk/sansa-c200/lcd-as-c200.S
447 target/arm/sandisk/adc-c200_e200.c
448 target/arm/sandisk/backlight-c200_e200.c
449 target/arm/usb-fw-pp502x.c
450 target/arm/sandisk/sansa-c200/button-c200.c
451 target/arm/sandisk/power-c200_e200.c
452 target/arm/sandisk/sansa-c200/powermgmt-c200.c
453 target/arm/i2s-pp.c
454 #ifndef BOOTLOADER
455 target/arm/sandisk/audio-c200_e200.c
456 #endif /* BOOTLOADER */
457 #endif /* SIMULATOR */
458 #endif /* SANSA_C200 */
460 #ifdef IAUDIO_X5
461 #ifndef SIMULATOR
462 target/coldfire/ata-as-coldfire.S
463 target/coldfire/pcf50606-coldfire.c
464 target/coldfire/iaudio/adc-iaudio.c
465 target/coldfire/iaudio/ata-iaudio.c
466 target/coldfire/iaudio/lcd-remote-as-iaudio.S
467 target/coldfire/iaudio/lcd-remote-iaudio.c
468 target/coldfire/iaudio/pcf50606-iaudio.c
469 target/coldfire/iaudio/powermgmt-iaudio.c
470 target/coldfire/iaudio/system-iaudio.c
471 target/coldfire/iaudio/usb-iaudio.c
472 target/coldfire/iaudio/x5/backlight-x5.c
473 target/coldfire/iaudio/x5/button-x5.c
474 target/coldfire/iaudio/x5/ds2411-x5.c
475 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
476 target/coldfire/iaudio/x5/lcd-as-x5.S
477 target/coldfire/iaudio/x5/lcd-x5.c
478 target/coldfire/iaudio/x5/m5636-x5.c
479 target/coldfire/iaudio/x5/power-x5.c
480 #ifndef BOOTLOADER
481 target/coldfire/iaudio/x5/audio-x5.c
482 #endif
483 #endif /* SIMULATOR */
484 #endif /* IAUDIO_X5 */
486 #ifdef IAUDIO_M5
487 #ifndef SIMULATOR
488 target/coldfire/ata-as-coldfire.S
489 target/coldfire/pcf50606-coldfire.c
490 target/coldfire/iaudio/adc-iaudio.c
491 target/coldfire/iaudio/ata-iaudio.c
492 target/coldfire/iaudio/lcd-remote-as-iaudio.S
493 target/coldfire/iaudio/lcd-remote-iaudio.c
494 target/coldfire/iaudio/m5/backlight-m5.c
495 target/coldfire/iaudio/m5/button-m5.c
496 target/coldfire/iaudio/m5/lcd-as-m5.S
497 target/coldfire/iaudio/m5/lcd-m5.c
498 target/coldfire/iaudio/m5/power-m5.c
499 target/coldfire/iaudio/pcf50606-iaudio.c
500 target/coldfire/iaudio/powermgmt-iaudio.c
501 target/coldfire/iaudio/system-iaudio.c
502 target/coldfire/iaudio/usb-iaudio.c
503 #ifndef BOOTLOADER
504 target/coldfire/iaudio/m5/audio-m5.c
505 #endif
506 #endif /* SIMULATOR */
507 #endif /* IAUDIO_M5 */
509 #ifdef IAUDIO_M3
510 #ifndef SIMULATOR
511 target/coldfire/ata-as-coldfire.S
512 target/coldfire/iaudio/m3/adc-m3.c
513 target/coldfire/iaudio/m3/ata-m3.c
514 target/coldfire/iaudio/m3/backlight-m3.c
515 target/coldfire/iaudio/m3/button-m3.c
516 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
517 target/coldfire/iaudio/m3/lcd-m3.c
518 target/coldfire/iaudio/m3/lcd-as-m3.S
519 target/coldfire/iaudio/m3/power-m3.c
520 target/coldfire/iaudio/m3/powermgmt-m3.c
521 target/coldfire/iaudio/m3/system-m3.c
522 target/coldfire/iaudio/m3/usb-m3.c
523 #ifndef BOOTLOADER
524 target/coldfire/iaudio/m3/audio-m3.c
525 #endif
526 #endif /* SIMULATOR */
527 #endif /* IAUDIO_M3 */
529 #ifdef IRIVER_IFP7XX_SERIES
530 #ifdef STUB
531 ifp_usb_serial.c
532 common/sscanf.c
533 #endif /* STUB */
534 #endif /* IRIVER_IFP7XX_SERIES */
536 #ifdef IRIVER_H300_SERIES
537 #ifndef SIMULATOR
538 target/coldfire/ata-as-coldfire.S
539 target/coldfire/pcf50606-coldfire.c
540 target/coldfire/iriver/ata-iriver.c
541 target/coldfire/iriver/lcd-remote-iriver.c
542 target/coldfire/iriver/system-iriver.c
543 target/coldfire/iriver/fmradio_i2c-iriver.c
544 target/coldfire/iriver/h300/sw_i2c-h300.c
545 target/coldfire/iriver/h300/adc-h300.c
546 target/coldfire/iriver/h300/backlight-h300.c
547 target/coldfire/iriver/h300/button-h300.c
548 target/coldfire/iriver/h300/pcf50606-h300.c
549 target/coldfire/iriver/h300/lcd-as-h300.S
550 target/coldfire/iriver/h300/lcd-h300.c
551 target/coldfire/iriver/h300/power-h300.c
552 target/coldfire/iriver/h300/powermgmt-h300.c
553 target/coldfire/iriver/h300/usb-h300.c
554 #ifndef BOOTLOADER
555 target/coldfire/iriver/audio-iriver.c
556 #endif
557 #endif /* SIMULATOR */
558 #endif /* IRIVER_H300_SERIES */
560 #ifdef IRIVER_H100_SERIES
561 #ifndef SIMULATOR
562 drivers/sw_i2c.c
563 target/coldfire/ata-as-coldfire.S
564 target/coldfire/iriver/ata-iriver.c
565 target/coldfire/iriver/lcd-remote-iriver.c
566 target/coldfire/iriver/system-iriver.c
567 target/coldfire/iriver/fmradio_i2c-iriver.c
568 target/coldfire/iriver/h100/adc-h100.c
569 target/coldfire/iriver/h100/backlight-h100.c
570 target/coldfire/iriver/h100/button-h100.c
571 target/coldfire/iriver/h100/lcd-as-h100.S
572 target/coldfire/iriver/h100/lcd-h100.c
573 target/coldfire/iriver/h100/power-h100.c
574 target/coldfire/iriver/h100/powermgmt-h100.c
575 #ifndef BOOTLOADER
576 target/coldfire/iriver/audio-iriver.c
577 target/coldfire/iriver/h100/spdif-h100.c
578 #endif
579 target/coldfire/iriver/h100/usb-h100.c
580 #endif /* SIMULATOR */
581 #endif /* IRIVER_H100_SERIES */
583 #ifdef IRIVER_H10
584 #ifndef SIMULATOR
585 target/arm/ata-as-arm.S
586 target/arm/ata-pp5020.c
587 target/arm/wmcodec-pp.c
588 target/arm/i2s-pp.c
589 target/arm/adc-pp5020.c
590 target/arm/iriver/h10/backlight-h10.c
591 target/arm/iriver/h10/button-h10.c
592 target/arm/iriver/h10/fmradio_i2c-h10.c
593 target/arm/iriver/h10/lcd-h10_20gb.c
594 target/arm/iriver/h10/lcd-as-h10.S
595 target/arm/iriver/h10/power-h10.c
596 target/arm/iriver/h10/powermgmt-h10.c
597 target/arm/usb-fw-pp502x.c
598 #endif /* SIMULATOR */
599 #endif /* IRIVER_H10 */
601 #ifdef IRIVER_H10_5GB
602 #ifndef SIMULATOR
603 target/arm/ata-as-arm.S
604 target/arm/ata-pp5020.c
605 target/arm/wmcodec-pp.c
606 target/arm/i2s-pp.c
607 target/arm/adc-pp5020.c
608 target/arm/iriver/h10/backlight-h10.c
609 target/arm/iriver/h10/button-h10.c
610 target/arm/iriver/h10/fmradio_i2c-h10.c
611 target/arm/iriver/h10/lcd-h10_5gb.c
612 target/arm/iriver/h10/power-h10.c
613 target/arm/iriver/h10/powermgmt-h10.c
614 target/arm/usb-fw-pp502x.c
615 #endif /* SIMULATOR */
616 #endif /* IRIVER_H10_5GB */
618 #ifdef GIGABEAT_F
619 #ifndef SIMULATOR
620 target/arm/lcd-as-memframe.S
621 target/arm/mmu-arm.c
622 target/arm/s3c2440/debug-s3c2440.c
623 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
624 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
625 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
626 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
627 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
628 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
629 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
630 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
631 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
632 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
633 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
634 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
635 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
636 target/arm/s3c2440/gigabeat-fx/dma_start.c
637 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
638 #ifndef BOOTLOADER
639 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
640 #endif
641 #endif /* SIMULATOR */
642 #endif /* GIGABEAT_F */
644 #ifdef GIGABEAT_S
645 #ifndef SIMULATOR
646 target/arm/lcd-as-memframe.S
647 target/arm/mmu-arm.c
648 target/arm/imx31/gigabeat-s/adc-imx31.c
649 target/arm/imx31/gigabeat-s/ata-imx31.c
650 target/arm/imx31/gigabeat-s/avic-imx31.c
651 target/arm/imx31/gigabeat-s/backlight-imx31.c
652 target/arm/imx31/gigabeat-s/button-imx31.c
653 target/arm/imx31/gigabeat-s/dma_start.c
654 target/arm/imx31/gigabeat-s/kernel-imx31.c
655 target/arm/imx31/gigabeat-s/i2c-imx31.c
656 target/arm/imx31/gigabeat-s/i2s-imx31.c
657 target/arm/imx31/gigabeat-s/lcd-imx31.c
658 target/arm/imx31/gigabeat-s/mmu-imx31.c
659 target/arm/imx31/gigabeat-s/power-imx31.c
660 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
661 target/arm/imx31/gigabeat-s/spi-imx31.c
662 target/arm/imx31/gigabeat-s/system-imx31.c
663 target/arm/imx31/gigabeat-s/usb-imx31.c
664 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
665 #ifndef BOOTLOADER
666 target/arm/imx31/gigabeat-s/pcm-imx31.c
667 #endif
668 #endif /* SIMULATOR */
669 #endif /* GIGABEAT_S */
671 #ifdef MROBE_500
672 #ifndef SIMULATOR
673 target/arm/lcd-as-memframe.S
674 target/arm/mmu-arm.c
675 target/arm/tms320dm320/mrobe-500/adc-mr500.c
676 target/arm/tms320dm320/mrobe-500/ata-mr500.c
677 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
678 target/arm/tms320dm320/mrobe-500/button-mr500.c
679 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
680 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
681 #if defined(HAVE_REMOTE_LCD)
682 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
683 #endif
684 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
685 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
686 target/arm/tms320dm320/mrobe-500/power-mr500.c
687 target/arm/tms320dm320/mrobe-500/usb-mr500.c
688 target/arm/tms320dm320/debug-dm320.c
689 target/arm/tms320dm320/i2c-dm320.c
690 target/arm/tms320dm320/kernel-dm320.c
691 target/arm/tms320dm320/spi-dm320.c
692 target/arm/tms320dm320/system-dm320.c
693 target/arm/tms320dm320/timer-dm320.c
694 target/arm/tms320dm320/uart-dm320.c
695 target/arm/tms320dm320/dsp-dm320.c
696 #endif /* SIMULATOR */
697 #endif /* MROBE_500 */
699 #ifdef MROBE_100
700 #ifndef SIMULATOR
701 drivers/sw_i2c.c
702 target/arm/ata-as-arm.S
703 target/arm/ata-pp5020.c
704 target/arm/wmcodec-pp.c
705 target/arm/i2s-pp.c
706 target/arm/adc-pp5020.c
707 target/arm/olympus/mrobe-100/backlight-mr100.c
708 target/arm/olympus/mrobe-100/button-mr100.c
709 target/arm/olympus/mrobe-100/lcd-mr100.c
710 target/arm/olympus/mrobe-100/power-mr100.c
711 target/arm/olympus/mrobe-100/powermgmt-mr100.c
712 target/arm/usb-fw-pp502x.c
713 #endif /* SIMULATOR */
714 #endif /* MROBE_100 */
716 #ifdef ELIO_TPJ1022
717 #ifndef SIMULATOR
718 target/arm/ata-as-arm.S
719 target/arm/ata-pp5020.c
720 target/arm/wmcodec-pp.c
721 target/arm/i2s-pp.c
722 target/arm/tatung/tpj1022/adc-tpj1022.c
723 target/arm/tatung/tpj1022/backlight-tpj1022.c
724 target/arm/tatung/tpj1022/button-tpj1022.c
725 target/arm/tatung/tpj1022/lcd-tpj1022.c
726 target/arm/tatung/tpj1022/power-tpj1022.c
727 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
728 target/arm/usb-fw-pp502x.c
729 #endif /* SIMULATOR */
730 #endif /* ELIO_TPJ1022 */
732 #ifdef IPOD_4G
733 #ifndef SIMULATOR
734 drivers/pcf50605.c
735 target/arm/wmcodec-pp.c
736 target/arm/i2s-pp.c
737 target/arm/ata-as-arm.S
738 target/arm/ata-pp5020.c
739 target/arm/ipod/adc-ipod-pcf.c
740 target/arm/ipod/backlight-4g_color.c
741 target/arm/ipod/button-clickwheel.c
742 target/arm/ipod/lcd-as-gray.S
743 target/arm/ipod/lcd-gray.c
744 target/arm/ipod/power-ipod.c
745 target/arm/ipod/powermgmt-ipod-pcf.c
746 target/arm/usb-fw-pp502x.c
747 #endif /* SIMULATOR */
748 #endif /* IPOD_4G */
750 #ifdef IPOD_COLOR
751 #ifndef SIMULATOR
752 drivers/pcf50605.c
753 target/arm/ata-as-arm.S
754 target/arm/ata-pp5020.c
755 target/arm/wmcodec-pp.c
756 target/arm/i2s-pp.c
757 target/arm/ipod/adc-ipod-pcf.c
758 target/arm/ipod/backlight-4g_color.c
759 target/arm/ipod/button-clickwheel.c
760 target/arm/ipod/lcd-color_nano.c
761 target/arm/ipod/power-ipod.c
762 target/arm/ipod/powermgmt-ipod-pcf.c
763 target/arm/usb-fw-pp502x.c
764 #endif /* SIMULATOR */
765 #endif /* IPOD_COLOR */
767 #ifdef IPOD_NANO
768 #ifndef SIMULATOR
769 drivers/pcf50605.c
770 target/arm/ata-as-arm.S
771 target/arm/ata-pp5020.c
772 target/arm/wmcodec-pp.c
773 target/arm/i2s-pp.c
774 target/arm/ipod/adc-ipod-pcf.c
775 target/arm/ipod/backlight-nano_video.c
776 target/arm/ipod/button-clickwheel.c
777 target/arm/ipod/lcd-color_nano.c
778 target/arm/ipod/power-ipod.c
779 target/arm/ipod/powermgmt-ipod-pcf.c
780 target/arm/usb-fw-pp502x.c
781 #endif /* SIMULATOR */
782 #endif /* IPOD_NANO */
784 #ifdef IPOD_VIDEO
785 #ifndef SIMULATOR
786 drivers/pcf50605.c
787 target/arm/ata-as-arm.S
788 target/arm/ata-pp5020.c
789 target/arm/wmcodec-pp.c
790 target/arm/i2s-pp.c
791 target/arm/ipod/adc-ipod-pcf.c
792 target/arm/ipod/backlight-nano_video.c
793 target/arm/ipod/button-clickwheel.c
794 target/arm/ipod/power-ipod.c
795 target/arm/ipod/powermgmt-ipod-pcf.c
796 target/arm/ipod/video/lcd-as-video.S
797 target/arm/ipod/video/lcd-video.c
798 target/arm/usb-fw-pp502x.c
799 #endif /* SIMULATOR */
800 #endif /* IPOD_VIDEO */
802 #ifdef IPOD_3G
803 #ifndef SIMULATOR
804 drivers/pcf50605.c
805 target/arm/ata-pp5002.c
806 target/arm/wmcodec-pp.c
807 target/arm/i2s-pp.c
808 target/arm/ipod/adc-ipod-pcf.c
809 target/arm/ipod/3g/backlight-3g.c
810 target/arm/ipod/button-1g-3g.c
811 target/arm/ipod/lcd-as-gray.S
812 target/arm/ipod/lcd-gray.c
813 target/arm/ipod/power-ipod.c
814 target/arm/ipod/powermgmt-ipod-pcf.c
815 target/arm/usb-fw-pp5002.c
816 #endif /* SIMULATOR */
817 #endif /* IPOD_3G */
819 #ifdef IPOD_1G2G
820 #ifndef SIMULATOR
821 target/arm/ata-pp5002.c
822 target/arm/wmcodec-pp.c
823 target/arm/i2s-pp.c
824 target/arm/ipod/1g2g/adc-ipod-1g2g.c
825 target/arm/ipod/1g2g/backlight-1g2g.c
826 target/arm/ipod/1g2g/powermgmt-1g2g.c
827 target/arm/ipod/button-1g-3g.c
828 target/arm/ipod/lcd-as-gray.S
829 target/arm/ipod/lcd-gray.c
830 target/arm/ipod/power-ipod.c
831 target/arm/usb-fw-pp5002.c
832 #endif /* SIMULATOR */
833 #endif /* IPOD_1G2G */
835 #ifdef IPOD_MINI
836 #ifndef SIMULATOR
837 drivers/pcf50605.c
838 target/arm/ata-as-arm.S
839 target/arm/ata-pp5020.c
840 target/arm/wmcodec-pp.c
841 target/arm/i2s-pp.c
842 target/arm/ipod/adc-ipod-pcf.c
843 target/arm/ipod/backlight-mini1g_mini2g.c
844 target/arm/ipod/button-mini1g.c
845 target/arm/ipod/lcd-as-gray.S
846 target/arm/ipod/lcd-gray.c
847 target/arm/ipod/power-ipod.c
848 target/arm/ipod/powermgmt-ipod-pcf.c
849 target/arm/usb-fw-pp502x.c
850 #endif /* SIMULATOR */
851 #endif /* IPOD_MINI */
853 #ifdef IPOD_MINI2G
854 #ifndef SIMULATOR
855 drivers/pcf50605.c
856 target/arm/ata-as-arm.S
857 target/arm/ata-pp5020.c
858 target/arm/wmcodec-pp.c
859 target/arm/i2s-pp.c
860 target/arm/ipod/adc-ipod-pcf.c
861 target/arm/ipod/backlight-mini1g_mini2g.c
862 target/arm/ipod/button-clickwheel.c
863 target/arm/ipod/lcd-as-gray.S
864 target/arm/ipod/lcd-gray.c
865 target/arm/ipod/power-ipod.c
866 target/arm/ipod/powermgmt-ipod-pcf.c
867 target/arm/usb-fw-pp502x.c
868 #endif /* SIMULATOR */
869 #endif /* IPOD_MINI2G */
871 #ifdef IRIVER_IFP7XX
872 #ifndef SIMULATOR
873 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
874 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
875 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
876 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
877 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
878 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
879 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
880 #ifndef BOOTLOADER
881 target/arm/pnx0101/pcm-pnx0101.c
882 #endif /* BOOTLOADER */
883 #endif /* SIMULATOR */
884 #endif /* IRIVER_IFP7XX */
886 #ifdef LOGIK_DAX
887 #ifndef SIMULATOR
888 target/arm/tcc77x/adc-tcc77x.c
889 target/arm/tcc77x/ata-nand-tcc77x.c
890 target/arm/tcc77x/system-tcc77x.c
891 target/arm/tcc77x/logikdax/button-logikdax.c
892 target/arm/tcc77x/logikdax/lcd-logikdax.c
893 target/arm/tcc77x/logikdax/power-logikdax.c
894 #endif /* SIMULATOR */
895 #endif /* LOGIK_DAX */
897 #ifdef IAUDIO_7
898 #ifndef SIMULATOR
899 target/arm/tcc77x/adc-tcc77x.c
900 target/arm/tcc77x/ata-nand-tcc77x.c
901 target/arm/tcc77x/system-tcc77x.c
902 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
903 target/arm/tcc77x/iaudio7/power-iaudio7.c
904 #endif /* SIMULATOR */
905 #endif /* IAUDIO_7 */
907 #ifdef COWON_D2
908 #ifndef SIMULATOR
909 target/arm/lcd-as-memframe.S
910 target/arm/tcc780x/adc-tcc780x.c
911 target/arm/tcc780x/ata-nand-tcc780x.c
912 target/arm/tcc780x/system-tcc780x.c
913 target/arm/tcc780x/cowond2/button-cowond2.c
914 target/arm/tcc780x/cowond2/lcd-cowond2.c
915 target/arm/tcc780x/cowond2/power-cowond2.c
916 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
917 target/arm/tcc780x/cowond2/usb-cowond2.c
918 #ifndef BOOTLOADER
919 target/arm/tcc780x/kernel-tcc780x.c
920 target/arm/tcc780x/timer-tcc780x.c
921 target/arm/wmcodec-telechips.c
922 target/arm/tcc780x/debug-tcc780x.c
923 target/arm/tcc780x/cowond2/pcm-cowond2.c
924 #endif /* BOOTLOADER */
925 #endif /* SIMULATOR */
926 #endif /* COWON_D2 */
928 #ifdef MEIZU_M6SL
929 #ifndef SIMULATOR
930 #ifndef BOOTLOADER
931 #endif /* BOOTLOADER */
932 #endif /* SIMULATOR */
933 #endif /* MEIZU_M6SL */