convert to unix line endings.
[Rockbox.git] / firmware / SOURCES
blobecd5e69c223d8acd00e9f9844ce88fd187c85c6a
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 #ifdef HAVE_HOTSWAP
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 #endif /* (CONFIG_RTC == RTC_) */
159 #endif /* SIMULATOR */
161 /* Tuner */
162 #if CONFIG_TUNER
163 tuner.c
164 #ifndef SIMULATOR
165 #if (CONFIG_TUNER & LV24020LP)
166 drivers/tuner/lv24020lp.c
167 #endif /* (CONFIG_TUNER & LV24020LP) */
168 #if (CONFIG_TUNER & S1A0903X01)
169 drivers/fmradio.c
170 drivers/tuner/s1a0903x01.c
171 #endif /* (CONFIG_TUNER & S1A0903X01) */
172 #if (CONFIG_TUNER & TEA5767)
173 drivers/tuner/tea5767.c
174 #endif /* (CONFIG_TUNER & TEA5767) */
175 #endif /*SIMULATOR */
176 #endif /* CONFIG_TUNER */
178 /* Sound */
179 #if CONFIG_CODEC != SWCODEC
180 mp3_playback.c
181 #endif /* CONFIG_CODEC != SWCODEC */
182 mp3data.c
183 sound.c
185 #if CONFIG_CODEC == SWCODEC
187 #ifndef BOOTLOADER
188 general.c
189 pcm_sampr.c
190 replaygain.c
191 pcm.c
192 #ifdef HAVE_RECORDING
193 enc_base.c
194 #ifndef SIMULATOR
195 pcm_record.c
196 #endif /* SIMULATOR */
197 #endif /* HAVE_RECORDING */
198 #endif /* BOOTLOADER */
200 #else  /* !SWCODEC */
202 #ifndef BOOTLOADER
203 mpeg.c
204 #ifndef SIMULATOR
205 drivers/mas.c
206 #endif /* SIMULATOR */
207 #endif /* BOOTLOADER */
209 #endif /* SWCODEC */
211 /* Audio codec */
212 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
213 #if defined(HAVE_UDA1380)
214 drivers/audio/uda1380.c
215 #elif defined(HAVE_WM8751)
216 drivers/audio/wm8751.c
217 #elif defined(HAVE_WM8978)
218 drivers/audio/wm8978.c
219 #elif defined(HAVE_WM8975)
220 drivers/audio/wm8975.c
221 #elif defined(HAVE_WM8985)
222 drivers/audio/wm8985.c
223 #elif defined(HAVE_WM8758)
224 drivers/audio/wm8758.c
225 #elif defined(HAVE_WM8721)
226 drivers/audio/wm8721.c
227 #elif defined(HAVE_WM8731)
228 drivers/audio/wm8731.c
229 #elif defined(HAVE_AS3514)
230 drivers/audio/as3514.c
231 #elif defined(HAVE_TLV320)
232 drivers/audio/tlv320.c
233 #elif defined(HAVE_MAS35XX)
234 drivers/audio/mas35xx.c
235 #endif /* defined(HAVE_*) */
236 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
238 /* USB Stack */
239 #if !defined(SIMULATOR)
240 #ifdef HAVE_USBSTACK
241 usbstack/usb_core.c
242 usbstack/usb_storage.c
243 usbstack/usb_serial.c
244 usbstack/usb_charging_only.c
245 #if CONFIG_USBOTG == USBOTG_ARC
246 target/arm/usb-drv-arc.c
247 #elif CONFIG_USBOTG == USBOTG_ISP1583
248 drivers/isp1583.c
249 #endif
250 #else /* !defined(HAVE_USBSTACK) */
251 #if CONFIG_USBOTG == USBOTG_ISP1362      
252 drivers/isp1362.c
253 #elif CONFIG_USBOTG == USBOTG_M5636      
254 drivers/m5636.c
255 #endif
256 #endif /* !defined(HAVE_USBSTACK) */
257 #endif /* !defined(SIMULATOR) */
259 /* Other Random Hardware */
260 #ifdef HAVE_TSC2100
261 #if !defined(SIMULATOR)
262 drivers/tsc2100.c
263 drivers/audio/tsc2100.c
264 #endif /* !SIMULATOR */
265 #endif
267 /* CPU Specific - By class then particular chip if applicable */
268 #if defined(CPU_SH)
270 #ifndef SIMULATOR
271 drivers/i2c.c
272 target/sh/adc-sh.c
273 target/sh/bitswap.S
274 target/sh/crt0.S
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/system-coldfire.c
300 #ifndef BOOTLOADER
301 target/coldfire/pcm-coldfire.c
302 #endif /* BOOTLOADER */
303 #if CONFIG_I2C == I2C_COLDFIRE
304 target/coldfire/i2c-coldfire.c
305 #endif /* CONFIG_I2C == I2C_COLDFIRE */
306 #endif /* SIMULATOR */
308 #elif defined(CPU_PP) || defined(CPU_ARM)
309 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
310 target/arm/memcpy-arm.S
311 target/arm/memmove-arm.S
312 common/strlen.c
313 #ifndef SIMULATOR
314 target/arm/memset-arm.S
315 target/arm/memset16-arm.S
316 #ifdef HAVE_PRIORITY_SCHEDULING
317 target/arm/ffs-arm.S
318 #endif
319 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
320 target/arm/i2c-pp.c
321 #elif CONFIG_I2C == I2C_PNX0101
322 target/arm/pnx0101/i2c-pnx0101.c
323 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
324 target/arm/i2c-telechips.c
325 #elif CONFIG_I2C == I2C_S3C2440
326 /* no i2c driver yet */
327 #endif
328 #if CONFIG_CPU == PNX0101
329 target/arm/pnx0101/system-pnx0101.c
330 #endif
331 #if defined(CPU_PP)
332 #if CONFIG_CPU == PP5002
333 target/arm/system-pp5002.c
334 #elif defined CPU_PP502x
335 target/arm/system-pp502x.c
336 #endif
337 #ifdef BOOTLOADER
338 target/arm/crt0-pp-bl.S
339 #else
340 target/arm/pcm-pp.c
341 #if !defined(SANSA_E200) && !defined(SANSA_C200)
342 target/arm/audio-pp.c
343 #endif /* SANSA_E200 */
344 target/arm/crt0-pp.S
345 #endif
346 #elif CONFIG_CPU == PNX0101
347 target/arm/pnx0101/crt0-pnx0101.S
348 #elif CONFIG_CPU==DM320
349 target/arm/tms320dm320/crt0.S
350 #elif CONFIG_CPU==S3C2440
351 target/arm/s3c2440/crt0.S
352 #elif defined(CPU_TCC77X)
353 target/arm/tcc77x/crt0.S
354 #elif defined(CPU_TCC780X)
355 target/arm/tcc780x/crt0.S
356 #elif CONFIG_CPU==IMX31L
357 target/arm/imx31/crt0.S
358 #elif defined(CPU_ARM)
359 target/arm/crt0.S
360 #endif /* defined(CPU_*) */
361 #endif /* SIMULATOR */
363 #else
365 #ifdef HAVE_PRIORITY_SCHEDULING
366 common/ffs.c
367 #endif
368 common/memcpy.c
369 common/memmove.c
370 common/memset.c
371 common/memset16.c
372 common/strlen.c
373 #ifndef SIMULATOR
374 crt0.S
375 drivers/i2c.c
376 #endif /* SIMULATOR */
378 #endif /* defined(CPU_*) */
380 #ifdef ARCHOS_PLAYER
381 #ifndef SIMULATOR
382 target/sh/archos/ata-archos.c
383 target/sh/archos/ata-as-archos.S
384 target/sh/archos/player/button-player.c
385 target/sh/archos/player/hwcompat-player.c
386 target/sh/archos/player/lcd-as-player.S
387 target/sh/archos/player/lcd-player.c
388 target/sh/archos/player/power-player.c
389 target/sh/archos/player/powermgmt-player.c
390 target/sh/archos/player/usb-player.c
391 #endif /* SIMULATOR */
392 #endif /* ARCHOS_PLAYER */
394 #ifdef ARCHOS_RECORDER
395 #ifndef SIMULATOR
396 target/sh/archos/ata-archos.c
397 target/sh/archos/ata-as-archos.S
398 target/sh/archos/lcd-archos-bitmap.c
399 target/sh/archos/lcd-as-archos-bitmap.S   
400 target/sh/archos/recorder/button-recorder.c
401 target/sh/archos/recorder/power-recorder.c
402 target/sh/archos/recorder/powermgmt-recorder.c
403 target/sh/archos/recorder/usb-recorder.c
404 #endif /* SIMULATOR */
405 #endif /* ARCHOS_RECORDER */
407 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
408 #ifndef SIMULATOR
409 target/sh/archos/ata-archos.c
410 target/sh/archos/ata-as-archos.S
411 target/sh/archos/lcd-archos-bitmap.c
412 target/sh/archos/lcd-as-archos-bitmap.S
413 target/sh/archos/fm_v2/button-fm_v2.c
414 target/sh/archos/fm_v2/power-fm_v2.c
415 target/sh/archos/fm_v2/powermgmt-fm_v2.c
416 target/sh/archos/fm_v2/usb-fm_v2.c
417 #endif /* SIMULATOR */
418 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
420 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
421 #ifndef SIMULATOR
422 target/sh/archos/lcd-archos-bitmap.c
423 target/sh/archos/lcd-as-archos-bitmap.S
424 target/sh/archos/ondio/button-ondio.c
425 target/sh/archos/ondio/power-ondio.c
426 target/sh/archos/ondio/powermgmt-ondio.c
427 target/sh/archos/ondio/usb-ondio.c
428 #if (CONFIG_TUNER & TEA5767)
429 target/sh/archos/ondio/fmradio_i2c-ondio.c
430 #endif
431 #endif /* SIMULATOR */
432 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
434 #ifdef SANSA_E200
435 #ifndef SIMULATOR
436 target/arm/lcd-as-memframe.S
437 target/arm/sandisk/ata-c200_e200.c
438 target/arm/sandisk/sansa-e200/lcd-e200.c
439 target/arm/sandisk/adc-c200_e200.c
440 target/arm/sandisk/backlight-c200_e200.c
441 target/arm/usb-fw-pp502x.c
442 target/arm/sandisk/sansa-e200/button-e200.c
443 target/arm/sandisk/power-c200_e200.c
444 target/arm/sandisk/sansa-e200/powermgmt-e200.c
445 target/arm/i2s-pp.c
446 #ifndef BOOTLOADER
447 target/arm/sandisk/audio-c200_e200.c
448 #endif /* BOOTLOADER */
449 #endif /* SIMULATOR */
450 #endif /* SANSA_E200 */
452 #ifdef SANSA_C200
453 #ifndef SIMULATOR
454 target/arm/sandisk/ata-c200_e200.c
455 target/arm/sandisk/sansa-c200/lcd-c200.c
456 target/arm/sandisk/sansa-c200/lcd-as-c200.S
457 target/arm/sandisk/adc-c200_e200.c
458 target/arm/sandisk/backlight-c200_e200.c
459 target/arm/usb-fw-pp502x.c
460 target/arm/sandisk/sansa-c200/button-c200.c
461 target/arm/sandisk/power-c200_e200.c
462 target/arm/sandisk/sansa-c200/powermgmt-c200.c
463 target/arm/i2s-pp.c
464 #ifndef BOOTLOADER
465 target/arm/sandisk/audio-c200_e200.c
466 #endif /* BOOTLOADER */
467 #endif /* SIMULATOR */
468 #endif /* SANSA_C200 */
470 #ifdef IAUDIO_X5
471 #ifndef SIMULATOR
472 target/coldfire/ata-as-coldfire.S
473 target/coldfire/pcf50606-coldfire.c
474 target/coldfire/iaudio/adc-iaudio.c
475 target/coldfire/iaudio/ata-iaudio.c
476 target/coldfire/iaudio/lcd-remote-as-iaudio.S
477 target/coldfire/iaudio/lcd-remote-iaudio.c
478 target/coldfire/iaudio/pcf50606-iaudio.c
479 target/coldfire/iaudio/powermgmt-iaudio.c
480 target/coldfire/iaudio/system-iaudio.c
481 target/coldfire/iaudio/usb-iaudio.c
482 target/coldfire/iaudio/x5/backlight-x5.c
483 target/coldfire/iaudio/x5/button-x5.c
484 target/coldfire/iaudio/x5/ds2411-x5.c
485 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
486 target/coldfire/iaudio/x5/lcd-as-x5.S
487 target/coldfire/iaudio/x5/lcd-x5.c
488 target/coldfire/iaudio/x5/m5636-x5.c
489 target/coldfire/iaudio/x5/power-x5.c
490 #ifndef BOOTLOADER
491 target/coldfire/iaudio/x5/audio-x5.c
492 #endif
493 #endif /* SIMULATOR */
494 #endif /* IAUDIO_X5 */
496 #ifdef IAUDIO_M5
497 #ifndef SIMULATOR
498 target/coldfire/ata-as-coldfire.S
499 target/coldfire/pcf50606-coldfire.c
500 target/coldfire/iaudio/adc-iaudio.c
501 target/coldfire/iaudio/ata-iaudio.c
502 target/coldfire/iaudio/lcd-remote-as-iaudio.S
503 target/coldfire/iaudio/lcd-remote-iaudio.c
504 target/coldfire/iaudio/m5/backlight-m5.c
505 target/coldfire/iaudio/m5/button-m5.c
506 target/coldfire/iaudio/m5/lcd-as-m5.S
507 target/coldfire/iaudio/m5/lcd-m5.c
508 target/coldfire/iaudio/m5/power-m5.c
509 target/coldfire/iaudio/pcf50606-iaudio.c
510 target/coldfire/iaudio/powermgmt-iaudio.c
511 target/coldfire/iaudio/system-iaudio.c
512 target/coldfire/iaudio/usb-iaudio.c
513 #ifndef BOOTLOADER
514 target/coldfire/iaudio/m5/audio-m5.c
515 #endif
516 #endif /* SIMULATOR */
517 #endif /* IAUDIO_M5 */
519 #ifdef IAUDIO_M3
520 #ifndef SIMULATOR
521 target/coldfire/ata-as-coldfire.S
522 target/coldfire/iaudio/m3/adc-m3.c
523 target/coldfire/iaudio/m3/ata-m3.c
524 target/coldfire/iaudio/m3/backlight-m3.c
525 target/coldfire/iaudio/m3/button-m3.c
526 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
527 target/coldfire/iaudio/m3/lcd-m3.c
528 target/coldfire/iaudio/m3/lcd-as-m3.S
529 target/coldfire/iaudio/m3/power-m3.c
530 target/coldfire/iaudio/m3/powermgmt-m3.c
531 target/coldfire/iaudio/m3/system-m3.c
532 target/coldfire/iaudio/m3/usb-m3.c
533 #ifndef BOOTLOADER
534 target/coldfire/iaudio/m3/audio-m3.c
535 #endif
536 #endif /* SIMULATOR */
537 #endif /* IAUDIO_M3 */
539 #ifdef IRIVER_IFP7XX_SERIES
540 #ifdef STUB
541 ifp_usb_serial.c
542 common/sscanf.c
543 #endif /* STUB */
544 #endif /* IRIVER_IFP7XX_SERIES */
546 #ifdef IRIVER_H300_SERIES
547 #ifndef SIMULATOR
548 target/coldfire/ata-as-coldfire.S
549 target/coldfire/pcf50606-coldfire.c
550 target/coldfire/iriver/ata-iriver.c
551 target/coldfire/iriver/lcd-remote-iriver.c
552 target/coldfire/iriver/lcd-remote-as-iriver.S
553 target/coldfire/iriver/system-iriver.c
554 target/coldfire/iriver/fmradio_i2c-iriver.c
555 target/coldfire/iriver/h300/sw_i2c-h300.c
556 target/coldfire/iriver/h300/adc-h300.c
557 target/coldfire/iriver/h300/backlight-h300.c
558 target/coldfire/iriver/h300/button-h300.c
559 target/coldfire/iriver/h300/pcf50606-h300.c
560 target/coldfire/iriver/h300/lcd-as-h300.S
561 target/coldfire/iriver/h300/lcd-h300.c
562 target/coldfire/iriver/h300/power-h300.c
563 target/coldfire/iriver/h300/powermgmt-h300.c
564 target/coldfire/iriver/h300/usb-h300.c
565 #ifndef BOOTLOADER
566 target/coldfire/iriver/audio-iriver.c
567 #endif
568 #endif /* SIMULATOR */
569 #endif /* IRIVER_H300_SERIES */
571 #ifdef IRIVER_H100_SERIES
572 #ifndef SIMULATOR
573 drivers/sw_i2c.c
574 target/coldfire/ata-as-coldfire.S
575 target/coldfire/iriver/ata-iriver.c
576 target/coldfire/iriver/lcd-remote-iriver.c
577 target/coldfire/iriver/lcd-remote-as-iriver.S
578 target/coldfire/iriver/system-iriver.c
579 target/coldfire/iriver/fmradio_i2c-iriver.c
580 target/coldfire/iriver/h100/adc-h100.c
581 target/coldfire/iriver/h100/backlight-h100.c
582 target/coldfire/iriver/h100/button-h100.c
583 target/coldfire/iriver/h100/lcd-as-h100.S
584 target/coldfire/iriver/h100/lcd-h100.c
585 target/coldfire/iriver/h100/power-h100.c
586 target/coldfire/iriver/h100/powermgmt-h100.c
587 #ifndef BOOTLOADER
588 target/coldfire/iriver/audio-iriver.c
589 target/coldfire/iriver/h100/spdif-h100.c
590 #endif
591 target/coldfire/iriver/h100/usb-h100.c
592 #endif /* SIMULATOR */
593 #endif /* IRIVER_H100_SERIES */
595 #ifdef IRIVER_H10
596 #ifndef SIMULATOR
597 target/arm/ata-as-arm.S
598 target/arm/ata-pp5020.c
599 target/arm/wmcodec-pp.c
600 target/arm/i2s-pp.c
601 target/arm/adc-pp5020.c
602 target/arm/iriver/h10/backlight-h10.c
603 target/arm/iriver/h10/button-h10.c
604 target/arm/iriver/h10/fmradio_i2c-h10.c
605 target/arm/iriver/h10/lcd-h10_20gb.c
606 target/arm/iriver/h10/lcd-as-h10.S
607 target/arm/iriver/h10/power-h10.c
608 target/arm/iriver/h10/powermgmt-h10.c
609 target/arm/usb-fw-pp502x.c
610 #endif /* SIMULATOR */
611 #endif /* IRIVER_H10 */
613 #ifdef IRIVER_H10_5GB
614 #ifndef SIMULATOR
615 target/arm/ata-as-arm.S
616 target/arm/ata-pp5020.c
617 target/arm/wmcodec-pp.c
618 target/arm/i2s-pp.c
619 target/arm/adc-pp5020.c
620 target/arm/iriver/h10/backlight-h10.c
621 target/arm/iriver/h10/button-h10.c
622 target/arm/iriver/h10/fmradio_i2c-h10.c
623 target/arm/iriver/h10/lcd-h10_5gb.c
624 target/arm/iriver/h10/power-h10.c
625 target/arm/iriver/h10/powermgmt-h10.c
626 target/arm/usb-fw-pp502x.c
627 #endif /* SIMULATOR */
628 #endif /* IRIVER_H10_5GB */
630 #ifdef GIGABEAT_F
631 #ifndef SIMULATOR
632 target/arm/lcd-as-memframe.S
633 target/arm/mmu-arm.c
634 target/arm/s3c2440/debug-s3c2440.c
635 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
636 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
637 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
638 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
639 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
640 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
641 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
642 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
643 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
644 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
645 #ifndef BOOTLOADER
646 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
647 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
648 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
649 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
650 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
651 #endif
652 #endif /* SIMULATOR */
653 #endif /* GIGABEAT_F */
655 #ifdef GIGABEAT_S
656 #ifndef SIMULATOR
657 target/arm/lcd-as-memframe.S
658 target/arm/mmu-arm.c
659 target/arm/imx31/debug-imx31.c
660 target/arm/imx31/rolo_restart.S
661 target/arm/imx31/gigabeat-s/adc-imx31.c
662 target/arm/imx31/gigabeat-s/ata-imx31.c
663 target/arm/imx31/gigabeat-s/avic-imx31.c
664 target/arm/imx31/gigabeat-s/backlight-imx31.c
665 target/arm/imx31/gigabeat-s/button-imx31.c
666 target/arm/imx31/gigabeat-s/clkctl-imx31.c
667 target/arm/imx31/gigabeat-s/dma_start.c
668 target/arm/imx31/gigabeat-s/gpio-imx31.c
669 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
670 target/arm/imx31/gigabeat-s/kernel-imx31.c
671 target/arm/imx31/gigabeat-s/i2c-imx31.c
672 target/arm/imx31/gigabeat-s/i2s-imx31.c
673 target/arm/imx31/gigabeat-s/lcd-imx31.c
674 target/arm/imx31/gigabeat-s/mc13783-imx31.c
675 target/arm/imx31/gigabeat-s/mmu-imx31.c
676 target/arm/imx31/gigabeat-s/power-imx31.c
677 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
678 target/arm/imx31/gigabeat-s/spi-imx31.c
679 target/arm/imx31/gigabeat-s/system-imx31.c
680 target/arm/imx31/gigabeat-s/usb-imx31.c
681 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
682 #ifndef BOOTLOADER
683 target/arm/imx31/gigabeat-s/pcm-imx31.c
684 #endif
685 #endif /* SIMULATOR */
686 #endif /* GIGABEAT_S */
688 #if CONFIG_CPU == DM320
689 target/arm/tms320dm320/debug-dm320.c
690 target/arm/tms320dm320/dsp-dm320.c
691 target/arm/tms320dm320/i2c-dm320.c
692 target/arm/tms320dm320/kernel-dm320.c
693 target/arm/tms320dm320/spi-dm320.c
694 target/arm/tms320dm320/system-dm320.c
695 target/arm/tms320dm320/timer-dm320.c
696 target/arm/tms320dm320/uart-dm320.c
697 #endif /* CONFIG_CPU == DM320 */
699 #ifdef MROBE_500
700 #ifndef SIMULATOR
701 target/arm/lcd-as-memframe.S
702 target/arm/mmu-arm.c
703 target/arm/tms320dm320/mrobe-500/adc-mr500.c
704 target/arm/tms320dm320/mrobe-500/ata-mr500.c
705 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
706 target/arm/tms320dm320/mrobe-500/button-mr500.c
707 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
708 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
709 #if defined(HAVE_REMOTE_LCD)
710 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
711 #endif
712 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
713 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
714 target/arm/tms320dm320/mrobe-500/power-mr500.c
715 target/arm/tms320dm320/mrobe-500/usb-mr500.c
716 #endif /* SIMULATOR */
717 #endif /* MROBE_500 */
719 #ifdef CREATIVE_ZVM
720 #ifndef SIMULATOR
721 target/arm/ata-as-arm.S
722 target/arm/lcd-as-memframe.S
723 target/arm/mmu-arm.c
724 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
725 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
726 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
727 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
728 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
729 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
730 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
731 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
732 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
733 #endif /* SIMULATOR */
734 #endif /* CREATIVE_ZVM */
736 #ifdef MROBE_100
737 #ifndef SIMULATOR
738 drivers/sw_i2c.c
739 target/arm/ata-as-arm.S
740 target/arm/ata-pp5020.c
741 target/arm/wmcodec-pp.c
742 target/arm/i2s-pp.c
743 target/arm/adc-pp5020.c
744 target/arm/olympus/mrobe-100/backlight-mr100.c
745 target/arm/olympus/mrobe-100/button-mr100.c
746 target/arm/olympus/mrobe-100/lcd-mr100.c
747 target/arm/olympus/mrobe-100/lcd-as-mr100.S
748 target/arm/olympus/mrobe-100/power-mr100.c
749 target/arm/olympus/mrobe-100/powermgmt-mr100.c
750 target/arm/usb-fw-pp502x.c
751 #endif /* SIMULATOR */
752 #endif /* MROBE_100 */
754 #ifdef ELIO_TPJ1022
755 #ifndef SIMULATOR
756 target/arm/ata-as-arm.S
757 target/arm/ata-pp5020.c
758 target/arm/wmcodec-pp.c
759 target/arm/i2s-pp.c
760 target/arm/tatung/tpj1022/adc-tpj1022.c
761 target/arm/tatung/tpj1022/backlight-tpj1022.c
762 target/arm/tatung/tpj1022/button-tpj1022.c
763 target/arm/tatung/tpj1022/lcd-tpj1022.c
764 target/arm/tatung/tpj1022/power-tpj1022.c
765 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
766 target/arm/usb-fw-pp502x.c
767 #endif /* SIMULATOR */
768 #endif /* ELIO_TPJ1022 */
770 #ifdef IPOD_4G
771 #ifndef SIMULATOR
772 drivers/pcf50605.c
773 target/arm/wmcodec-pp.c
774 target/arm/i2s-pp.c
775 target/arm/ata-as-arm.S
776 target/arm/ata-pp5020.c
777 target/arm/ipod/adc-ipod-pcf.c
778 target/arm/ipod/backlight-4g_color.c
779 target/arm/ipod/button-clickwheel.c
780 target/arm/ipod/lcd-as-gray.S
781 target/arm/ipod/lcd-gray.c
782 target/arm/ipod/power-ipod.c
783 target/arm/ipod/powermgmt-ipod-pcf.c
784 target/arm/usb-fw-pp502x.c
785 #endif /* SIMULATOR */
786 #endif /* IPOD_4G */
788 #ifdef IPOD_COLOR
789 #ifndef SIMULATOR
790 drivers/pcf50605.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/ipod/adc-ipod-pcf.c
796 target/arm/ipod/backlight-4g_color.c
797 target/arm/ipod/button-clickwheel.c
798 target/arm/ipod/lcd-color_nano.c
799 target/arm/ipod/power-ipod.c
800 target/arm/ipod/powermgmt-ipod-pcf.c
801 target/arm/usb-fw-pp502x.c
802 #endif /* SIMULATOR */
803 #endif /* IPOD_COLOR */
805 #ifdef IPOD_NANO
806 #ifndef SIMULATOR
807 drivers/pcf50605.c
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/ipod/adc-ipod-pcf.c
813 target/arm/ipod/backlight-nano_video.c
814 target/arm/ipod/button-clickwheel.c
815 target/arm/ipod/lcd-color_nano.c
816 target/arm/ipod/power-ipod.c
817 target/arm/ipod/powermgmt-ipod-pcf.c
818 target/arm/usb-fw-pp502x.c
819 #endif /* SIMULATOR */
820 #endif /* IPOD_NANO */
822 #ifdef IPOD_VIDEO
823 #ifndef SIMULATOR
824 drivers/pcf50605.c
825 target/arm/ata-as-arm.S
826 target/arm/ata-pp5020.c
827 target/arm/wmcodec-pp.c
828 target/arm/i2s-pp.c
829 target/arm/ipod/adc-ipod-pcf.c
830 target/arm/ipod/backlight-nano_video.c
831 target/arm/ipod/button-clickwheel.c
832 target/arm/ipod/power-ipod.c
833 target/arm/ipod/powermgmt-ipod-pcf.c
834 target/arm/ipod/video/lcd-as-video.S
835 target/arm/ipod/video/lcd-video.c
836 target/arm/usb-fw-pp502x.c
837 #endif /* SIMULATOR */
838 #endif /* IPOD_VIDEO */
840 #ifdef IPOD_3G
841 #ifndef SIMULATOR
842 drivers/pcf50605.c
843 target/arm/ata-pp5002.c
844 target/arm/wmcodec-pp.c
845 target/arm/i2s-pp.c
846 target/arm/ipod/adc-ipod-pcf.c
847 target/arm/ipod/3g/backlight-3g.c
848 target/arm/ipod/button-1g-3g.c
849 target/arm/ipod/lcd-as-gray.S
850 target/arm/ipod/lcd-gray.c
851 target/arm/ipod/power-ipod.c
852 target/arm/ipod/powermgmt-ipod-pcf.c
853 target/arm/usb-fw-pp5002.c
854 #endif /* SIMULATOR */
855 #endif /* IPOD_3G */
857 #ifdef IPOD_1G2G
858 #ifndef SIMULATOR
859 target/arm/ata-pp5002.c
860 target/arm/wmcodec-pp.c
861 target/arm/i2s-pp.c
862 target/arm/ipod/1g2g/adc-ipod-1g2g.c
863 target/arm/ipod/1g2g/backlight-1g2g.c
864 target/arm/ipod/1g2g/powermgmt-1g2g.c
865 target/arm/ipod/button-1g-3g.c
866 target/arm/ipod/lcd-as-gray.S
867 target/arm/ipod/lcd-gray.c
868 target/arm/ipod/power-ipod.c
869 target/arm/usb-fw-pp5002.c
870 #endif /* SIMULATOR */
871 #endif /* IPOD_1G2G */
873 #ifdef IPOD_MINI
874 #ifndef SIMULATOR
875 drivers/pcf50605.c
876 target/arm/ata-as-arm.S
877 target/arm/ata-pp5020.c
878 target/arm/wmcodec-pp.c
879 target/arm/i2s-pp.c
880 target/arm/ipod/adc-ipod-pcf.c
881 target/arm/ipod/backlight-mini1g_mini2g.c
882 target/arm/ipod/button-mini1g.c
883 target/arm/ipod/lcd-as-gray.S
884 target/arm/ipod/lcd-gray.c
885 target/arm/ipod/power-ipod.c
886 target/arm/ipod/powermgmt-ipod-pcf.c
887 target/arm/usb-fw-pp502x.c
888 #endif /* SIMULATOR */
889 #endif /* IPOD_MINI */
891 #ifdef IPOD_MINI2G
892 #ifndef SIMULATOR
893 drivers/pcf50605.c
894 target/arm/ata-as-arm.S
895 target/arm/ata-pp5020.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/backlight-mini1g_mini2g.c
900 target/arm/ipod/button-clickwheel.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-pp502x.c
906 #endif /* SIMULATOR */
907 #endif /* IPOD_MINI2G */
909 #ifdef IRIVER_IFP7XX
910 #ifndef SIMULATOR
911 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
912 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
913 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
914 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
915 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
916 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
917 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
918 #ifndef BOOTLOADER
919 target/arm/pnx0101/pcm-pnx0101.c
920 #endif /* BOOTLOADER */
921 #endif /* SIMULATOR */
922 #endif /* IRIVER_IFP7XX */
924 #ifdef LOGIK_DAX
925 #ifndef SIMULATOR
926 target/arm/tcc77x/adc-tcc77x.c
927 target/arm/tcc77x/ata-nand-tcc77x.c
928 target/arm/tcc77x/kernel-tcc77x.c
929 target/arm/tcc77x/lcd-ssd1815.c
930 target/arm/tcc77x/powermgmt-tcc77x.c
931 target/arm/tcc77x/system-tcc77x.c
932 target/arm/tcc77x/timer-tcc77x.c
933 target/arm/tcc77x/usb-tcc77x.c
934 target/arm/tcc77x/logikdax/button-logikdax.c
935 target/arm/tcc77x/logikdax/power-logikdax.c
936 #ifndef BOOTLOADER
937 target/arm/tcc77x/debug-tcc77x.c
938 target/arm/tcc77x/pcm-tcc77x.c
939 #endif /* BOOTLOADER */
940 #endif /* SIMULATOR */
941 #endif /* LOGIK_DAX */
943 #ifdef SANSA_M200
944 #ifndef SIMULATOR
945 target/arm/tcc77x/adc-tcc77x.c
946 target/arm/tcc77x/ata-nand-tcc77x.c
947 target/arm/tcc77x/kernel-tcc77x.c
948 target/arm/tcc77x/lcd-ssd1815.c
949 target/arm/tcc77x/powermgmt-tcc77x.c
950 target/arm/tcc77x/system-tcc77x.c
951 target/arm/tcc77x/timer-tcc77x.c
952 target/arm/tcc77x/usb-tcc77x.c
953 target/arm/tcc77x/m200/button-m200.c
954 target/arm/tcc77x/m200/power-m200.c
955 #ifndef BOOTLOADER
956 target/arm/tcc77x/debug-tcc77x.c
957 target/arm/tcc77x/pcm-tcc77x.c
958 #endif /* BOOTLOADER */
959 #endif /* SIMULATOR */
960 #endif /* LOGIK_DAX */
962 #ifdef IAUDIO_7
963 #ifndef SIMULATOR
964 target/arm/tcc77x/adc-tcc77x.c
965 target/arm/tcc77x/ata-nand-tcc77x.c
966 target/arm/tcc77x/system-tcc77x.c
967 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
968 target/arm/tcc77x/iaudio7/power-iaudio7.c
969 #endif /* SIMULATOR */
970 #endif /* IAUDIO_7 */
972 #ifdef COWON_D2
973 #ifndef SIMULATOR
974 drivers/pcf50606.c
975 target/arm/lcd-as-memframe.S
976 target/arm/tcc780x/adc-tcc780x.c
977 target/arm/tcc780x/ata-nand-tcc780x.c
978 target/arm/tcc780x/system-tcc780x.c
979 target/arm/tcc780x/cowond2/button-cowond2.c
980 target/arm/tcc780x/cowond2/lcd-cowond2.c
981 target/arm/tcc780x/cowond2/power-cowond2.c
982 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
983 target/arm/tcc780x/cowond2/usb-cowond2.c
984 target/arm/tcc780x/cowond2/backlight-cowond2.c
985 #ifndef BOOTLOADER
986 target/arm/tcc780x/kernel-tcc780x.c
987 target/arm/tcc780x/timer-tcc780x.c
988 target/arm/wmcodec-telechips.c
989 target/arm/tcc780x/debug-tcc780x.c
990 target/arm/tcc780x/pcm-tcc780x.c
991 #endif /* BOOTLOADER */
992 #endif /* SIMULATOR */
993 #endif /* COWON_D2 */