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