Fix for FS#8082:
[Rockbox.git] / firmware / SOURCES
blob94b98979ce6fc78ec0cf40e18f7ebe322c4e7166
1 ata_idle_notify.c
2 backlight.c
3 buffer.c
4 id3.c
5 powermgmt.c
6 system.c
7 usb.c
8 #ifdef ROCKBOX_HAS_LOGF
9 logf.c
10 #endif /* ROCKBOX_HAS_LOGF */
11 #ifndef SIMULATOR
12 #ifdef RB_PROFILE
13 profile.c
14 #endif /* RB_PROFILE */
15 kernel.c
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 #endif /* LCD_PIXELFORMAT */
84 #elif LCD_DEPTH == 16
85 drivers/lcd-16bit.c
86 #endif /* LCD_DEPTH */
87 #endif /* HAVE_LCD_BITMAP */
89 #ifdef HAVE_REMOTE_LCD
90 #if LCD_REMOTE_DEPTH == 1
91 drivers/lcd-remote-1bit-v.c
92 #elif LCD_REMOTE_DEPTH == 2
93 drivers/lcd-remote-2bit-vi.c
94 #endif /* LCD_REMOTE_DEPTH */
95 #endif /* HAVE_REMOTE_LCD */
97 /* Misc. */
98 drivers/led.c
99 drivers/button.c
100 #ifndef SIMULATOR
101 drivers/dac.c
102 drivers/serial.c
103 #endif /* SIMULATOR */
106 /* Storage */
107 #ifndef SIMULATOR
108 #ifdef HAVE_MMC
109 drivers/ata_mmc.c
110 #else  /* !HAVE_MMC */
111 #ifdef HAVE_FLASH_DISK
112 drivers/ata_flash.c
113 #else  /* !HAVE_FLASH_DISK */
114 #if !defined(SANSA_E200) && !defined(SANSA_C200) && !defined(LOGIK_DAX) && !defined(IAUDIO_7)
115 drivers/ata.c
116 #endif /* SANSA_E200 */
117 #endif /* HAVE_FLASH_DISK */
118 #endif /* HAVE_MMC */
119 drivers/fat.c
120 #ifdef HAVE_HOTSWAP
121 hotswap.c
122 #endif
123 #endif /* SIMULATOR */
125 /* EEPROM */
126 #ifdef HAVE_EEPROM
127 drivers/eeprom_24cxx.c
128 #ifdef HAVE_EEPROM_SETTINGS
129 eeprom_settings.c
130 #endif /* HAVE_EEPROM_SETTINGS */
131 #endif /* HAVE_EEPROM */
133 /* RTC */
134 #ifndef SIMULATOR
135 #if (CONFIG_RTC == RTC_M41ST84W)
136 drivers/rtc/rtc_m41st84w.c
137 #elif (CONFIG_RTC == RTC_PCF50606)
138 drivers/rtc/rtc_pcf50606.c
139 #elif (CONFIG_RTC == RTC_PCF50605)
140 drivers/rtc/rtc_pcf50605.c
141 #elif (CONFIG_RTC == RTC_E8564)
142 drivers/rtc/rtc_e8564.c
143 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
144 drivers/rtc/rtc_ds1339_ds3231.c
145 #elif (CONFIG_RTC == RTC_S3C2440)
146 drivers/rtc/rtc_s3c2440.c
147 #elif (CONFIG_RTC == RTC_AS3514)
148 drivers/rtc/rtc_as3514.c
149 #elif (CONFIG_RTC == RTC_RX5X348AB)
150 drivers/rtc/rtc_rx5x348ab.c
151 #endif /* (CONFIG_RTC == RTC_) */
152 #endif /* SIMULATOR */
154 /* Tuner */
155 #if CONFIG_TUNER
156 tuner.c
157 #ifndef SIMULATOR
158 #if (CONFIG_TUNER & LV24020LP)
159 drivers/tuner/lv24020lp.c
160 #endif /* (CONFIG_TUNER & LV24020LP) */
161 #if (CONFIG_TUNER & S1A0903X01)
162 drivers/fmradio.c
163 drivers/tuner/s1a0903x01.c
164 #endif /* (CONFIG_TUNER & S1A0903X01) */
165 #if (CONFIG_TUNER & TEA5767)
166 drivers/fmradio_i2c.c
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 #ifndef SIMULATOR
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_WM8758)
214 drivers/audio/wm8758.c
215 #elif defined(HAVE_WM8721)
216 drivers/audio/wm8721.c
217 #elif defined(HAVE_WM8731)
218 drivers/audio/wm8731.c
219 #elif defined(HAVE_AS3514)
220 drivers/audio/as3514.c
221 #elif defined(HAVE_TLV320)
222 drivers/audio/tlv320.c
223 #elif defined(HAVE_MAS35XX)
224 drivers/audio/mas35xx.c
225 #endif /* defined(HAVE_*) */
226 #endif /* SIMULATOR */
228 /* USB Stack */
229 #if !defined(SIMULATOR)
230 #ifdef HAVE_USBSTACK
231 usbstack/core/core.c
232 usbstack/core/epsetup.c
233 usbstack/core/utils.c
234 usbstack/core/config.c
235 usbstack/drivers/device/usb_serial.c
236 usbstack/drivers/device/usb_storage.c
237 #endif
238 #endif
240 /* USBOTG */
241 #if !defined(SIMULATOR)
242 #if CONFIG_USBOTG == USBOTG_ISP1362
243 drivers/isp1362.c
244 #endif
245 #if defined(SANSA_E200) || defined(SANSA_C200) || !defined(BOOTLOADER)
246 #if CONFIG_USBOTG == USBOTG_M5636
247 drivers/m5636.c
248 #elif CONFIG_USBOTG == USBOTG_ARC
249 #ifdef HAVE_USBSTACK
250 drivers/usb/arcotg_dcd.c
251 #else
252 drivers/usb/arcotg_udc.c
253 #endif
254 #endif /* CONFIG_USBOTG */
255 #endif /* !defined(BOOTLOADER) */
256 #endif /* !defined(SIMULATOR) */
258 /* Other Random Hardware */
259 #ifdef HAVE_TSC2100
260 drivers/tsc2100.c
261 #endif
263 /* CPU Specific - By class then particular chip if applicable */
264 #if defined(CPU_SH)
266 #ifndef SIMULATOR
267 bitswap.S
268 descramble.S
269 drivers/i2c.c
270 target/sh/adc-sh.c
271 target/sh/crt0.S
272 target/sh/memcpy-sh.S
273 target/sh/memmove-sh.S
274 target/sh/memset-sh.S
275 target/sh/strlen-sh.S
276 target/sh/system-sh.c
277 #endif /* SIMULATOR */
279 #elif defined(CPU_COLDFIRE)
281 #ifndef SIMULATOR
282 target/coldfire/crt0.S
283 target/coldfire/memcpy-coldfire.S
284 target/coldfire/memmove-coldfire.S
285 target/coldfire/memset-coldfire.S
286 target/coldfire/memswap128-coldfire.S
287 target/coldfire/strlen-coldfire.S
288 #if defined(HAVE_LCD_COLOR) \
289  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
290 target/coldfire/memset16-coldfire.S
291 #endif
292 target/coldfire/system-coldfire.c
293 #ifndef BOOTLOADER
294 target/coldfire/pcm-coldfire.c
295 #endif /* BOOTLOADER */
296 #if CONFIG_I2C == I2C_COLDFIRE
297 target/coldfire/i2c-coldfire.c
298 #endif /* CONFIG_I2C == I2C_COLDFIRE */
299 #endif /* SIMULATOR */
301 #elif defined(CPU_PP) || defined(CPU_ARM)
302 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
303 target/arm/memcpy-arm.S
304 target/arm/memmove-arm.S
305 common/strlen.c
306 #ifndef SIMULATOR
307 target/arm/memset-arm.S
308 target/arm/memset16-arm.S
309 target/arm/memswap128-arm.S
310 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
311 target/arm/i2c-pp.c
312 #elif CONFIG_I2C == I2C_PNX0101
313 target/arm/pnx0101/i2c-pnx0101.c
314 #elif CONFIG_I2C == I2C_S3C2440
315 /* no i2c driver yet */
316 #endif
317 #if CONFIG_CPU == PNX0101
318 target/arm/pnx0101/system-pnx0101.c
319 #endif
320 #if defined(CPU_PP)
321 #if CONFIG_CPU == PP5002
322 target/arm/system-pp5002.c
323 #elif defined CPU_PP502x
324 target/arm/system-pp502x.c
325 #endif
326 #ifdef BOOTLOADER
327 target/arm/crt0-pp-bl.S
328 #else
329 target/arm/pcm-pp.c
330 #if !defined(SANSA_E200) && !defined(SANSA_C200)
331 target/arm/audio-pp.c
332 #endif /* SANSA_E200 */
333 target/arm/crt0-pp.S
334 #endif
335 #elif CONFIG_CPU == PNX0101
336 target/arm/pnx0101/crt0-pnx0101.S
337 #elif defined(OLYMPUS_MROBE_500)
338 target/arm/tms320dm320/crt0.S
339 #elif defined(CPU_TCC77X)
340 target/arm/tcc77x/crt0.S
341 #elif defined(CPU_ARM)
342 target/arm/crt0.S
343 #endif /* defined(CPU_*) */
344 #endif /* SIMULATOR */
346 #else
348 common/memcpy.c
349 common/memmove.c
350 common/memset.c
351 common/memset16.c
352 common/memswap128.c
353 common/strlen.c
354 #ifndef SIMULATOR
355 crt0.S
356 drivers/i2c.c
357 #endif /* SIMULATOR */
359 #endif /* defined(CPU_*) */
361 #ifdef ARCHOS_PLAYER
362 #ifndef SIMULATOR
363 target/sh/archos/ata-archos.c
364 target/sh/archos/ata-as-archos.S
365 target/sh/archos/player/button-player.c
366 target/sh/archos/player/hwcompat-player.c
367 target/sh/archos/player/lcd-as-player.S
368 target/sh/archos/player/lcd-player.c
369 target/sh/archos/player/power-player.c
370 target/sh/archos/player/powermgmt-player.c
371 target/sh/archos/player/usb-player.c
372 #endif /* SIMULATOR */
373 #endif /* ARCHOS_PLAYER */
375 #ifdef ARCHOS_RECORDER
376 #ifndef SIMULATOR
377 target/sh/archos/ata-archos.c
378 target/sh/archos/ata-as-archos.S
379 target/sh/archos/lcd-archos-bitmap.c
380 target/sh/archos/lcd-as-archos-bitmap.S   
381 target/sh/archos/recorder/button-recorder.c
382 target/sh/archos/recorder/power-recorder.c
383 target/sh/archos/recorder/powermgmt-recorder.c
384 target/sh/archos/recorder/usb-recorder.c
385 #endif /* SIMULATOR */
386 #endif /* ARCHOS_RECORDER */
388 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
389 #ifndef SIMULATOR
390 target/sh/archos/ata-archos.c
391 target/sh/archos/ata-as-archos.S
392 target/sh/archos/lcd-archos-bitmap.c
393 target/sh/archos/lcd-as-archos-bitmap.S
394 target/sh/archos/fm_v2/button-fm_v2.c
395 target/sh/archos/fm_v2/power-fm_v2.c
396 target/sh/archos/fm_v2/powermgmt-fm_v2.c
397 target/sh/archos/fm_v2/usb-fm_v2.c
398 #endif /* SIMULATOR */
399 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
401 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
402 #ifndef SIMULATOR
403 target/sh/archos/lcd-archos-bitmap.c
404 target/sh/archos/lcd-as-archos-bitmap.S
405 target/sh/archos/ondio/button-ondio.c
406 target/sh/archos/ondio/power-ondio.c
407 target/sh/archos/ondio/powermgmt-ondio.c
408 target/sh/archos/ondio/usb-ondio.c
409 #endif /* SIMULATOR */
410 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
412 #ifdef SANSA_E200
413 #ifndef SIMULATOR
414 target/arm/lcd-as-memframe.S
415 target/arm/sandisk/ata-c200_e200.c
416 target/arm/sandisk/sansa-e200/lcd-e200.c
417 target/arm/sandisk/adc-c200_e200.c
418 target/arm/sandisk/backlight-c200_e200.c
419 target/arm/usb-fw-pp502x.c
420 target/arm/sandisk/sansa-e200/button-e200.c
421 target/arm/sandisk/power-c200_e200.c
422 target/arm/sandisk/sansa-e200/powermgmt-e200.c
423 target/arm/i2s-pp.c
424 #ifndef BOOTLOADER
425 target/arm/sandisk/audio-c200_e200.c
426 #endif /* BOOTLOADER */
427 #endif /* SIMULATOR */
428 #endif /* SANSA_E200 */
430 #ifdef SANSA_C200
431 #ifndef SIMULATOR
432 target/arm/sandisk/ata-c200_e200.c
433 target/arm/sandisk/sansa-c200/lcd-c200.c
434 target/arm/sandisk/sansa-c200/lcd-as-c200.S
435 target/arm/sandisk/adc-c200_e200.c
436 target/arm/sandisk/backlight-c200_e200.c
437 target/arm/usb-fw-pp502x.c
438 target/arm/sandisk/sansa-c200/button-c200.c
439 target/arm/sandisk/power-c200_e200.c
440 target/arm/sandisk/sansa-c200/powermgmt-c200.c
441 target/arm/i2s-pp.c
442 #ifndef BOOTLOADER
443 target/arm/sandisk/audio-c200_e200.c
444 #endif /* BOOTLOADER */
445 #endif /* SIMULATOR */
446 #endif /* SANSA_C200 */
448 #ifdef IAUDIO_X5
449 #ifndef SIMULATOR
450 target/coldfire/ata-as-coldfire.S
451 target/coldfire/pcf50606-coldfire.c
452 target/coldfire/iaudio/adc-iaudio.c
453 target/coldfire/iaudio/ata-iaudio.c
454 target/coldfire/iaudio/lcd-remote-iaudio.c
455 target/coldfire/iaudio/pcf50606-iaudio.c
456 target/coldfire/iaudio/powermgmt-iaudio.c
457 target/coldfire/iaudio/system-iaudio.c
458 target/coldfire/iaudio/usb-iaudio.c
459 target/coldfire/iaudio/x5/backlight-x5.c
460 target/coldfire/iaudio/x5/button-x5.c
461 target/coldfire/iaudio/x5/ds2411-x5.c
462 target/coldfire/iaudio/x5/lcd-as-x5.S
463 target/coldfire/iaudio/x5/lcd-x5.c
464 target/coldfire/iaudio/x5/m5636-x5.c
465 target/coldfire/iaudio/x5/power-x5.c
466 #ifndef BOOTLOADER
467 target/coldfire/iaudio/x5/audio-x5.c
468 #endif
469 #endif /* SIMULATOR */
470 #endif /* IAUDIO_X5 */
472 #ifdef IAUDIO_M5
473 #ifndef SIMULATOR
474 target/coldfire/ata-as-coldfire.S
475 target/coldfire/pcf50606-coldfire.c
476 target/coldfire/iaudio/adc-iaudio.c
477 target/coldfire/iaudio/ata-iaudio.c
478 target/coldfire/iaudio/lcd-remote-iaudio.c
479 target/coldfire/iaudio/m5/backlight-m5.c
480 target/coldfire/iaudio/m5/button-m5.c
481 target/coldfire/iaudio/m5/lcd-as-m5.S
482 target/coldfire/iaudio/m5/lcd-m5.c
483 target/coldfire/iaudio/m5/power-m5.c
484 target/coldfire/iaudio/pcf50606-iaudio.c
485 target/coldfire/iaudio/powermgmt-iaudio.c
486 target/coldfire/iaudio/system-iaudio.c
487 target/coldfire/iaudio/usb-iaudio.c
488 #ifndef BOOTLOADER
489 target/coldfire/iaudio/m5/audio-m5.c
490 #endif
491 #endif /* SIMULATOR */
492 #endif /* IAUDIO_M5 */
494 #ifdef IRIVER_IFP7XX_SERIES
495 #ifdef STUB
496 usb_serial.c
497 common/sscanf.c
498 #endif /* STUB */
499 #endif /* IRIVER_IFP7XX_SERIES */
501 #ifdef IRIVER_H300_SERIES
502 #ifndef SIMULATOR
503 target/coldfire/ata-as-coldfire.S
504 target/coldfire/pcf50606-coldfire.c
505 target/coldfire/iriver/ata-iriver.c
506 target/coldfire/iriver/lcd-remote-iriver.c
507 target/coldfire/iriver/system-iriver.c
508 target/coldfire/iriver/h300/sw_i2c-h300.c
509 target/coldfire/iriver/h300/adc-h300.c
510 target/coldfire/iriver/h300/backlight-h300.c
511 target/coldfire/iriver/h300/button-h300.c
512 target/coldfire/iriver/h300/pcf50606-h300.c
513 target/coldfire/iriver/h300/lcd-as-h300.S
514 target/coldfire/iriver/h300/lcd-h300.c
515 target/coldfire/iriver/h300/power-h300.c
516 target/coldfire/iriver/h300/powermgmt-h300.c
517 target/coldfire/iriver/h300/usb-h300.c
518 #ifndef BOOTLOADER
519 target/coldfire/iriver/audio-iriver.c
520 #endif
521 #endif /* SIMULATOR */
522 #endif /* IRIVER_H300_SERIES */
524 #ifdef IRIVER_H100_SERIES
525 #ifndef SIMULATOR
526 target/coldfire/ata-as-coldfire.S
527 target/coldfire/iriver/ata-iriver.c
528 target/coldfire/iriver/lcd-remote-iriver.c
529 target/coldfire/iriver/system-iriver.c
530 target/coldfire/iriver/h100/sw_i2c-h100.c
531 target/coldfire/iriver/h100/adc-h100.c
532 target/coldfire/iriver/h100/backlight-h100.c
533 target/coldfire/iriver/h100/button-h100.c
534 target/coldfire/iriver/h100/lcd-as-h100.S
535 target/coldfire/iriver/h100/lcd-h100.c
536 target/coldfire/iriver/h100/power-h100.c
537 target/coldfire/iriver/h100/powermgmt-h100.c
538 #ifndef BOOTLOADER
539 target/coldfire/iriver/audio-iriver.c
540 target/coldfire/iriver/h100/spdif-h100.c
541 #endif
542 target/coldfire/iriver/h100/usb-h100.c
543 #endif /* SIMULATOR */
544 #endif /* IRIVER_H100_SERIES */
546 #ifdef IRIVER_H10
547 #ifndef SIMULATOR
548 target/arm/ata-as-arm.S
549 target/arm/ata-pp5020.c
550 target/arm/wmcodec-pp.c
551 target/arm/i2s-pp.c
552 target/arm/iriver/h10/adc-h10.c
553 target/arm/iriver/h10/backlight-h10.c
554 target/arm/iriver/h10/button-h10.c
555 target/arm/iriver/h10/lcd-h10_20gb.c
556 target/arm/iriver/h10/power-h10.c
557 target/arm/iriver/h10/powermgmt-h10.c
558 target/arm/usb-fw-pp502x.c
559 #endif /* SIMULATOR */
560 #endif /* IRIVER_H10 */
562 #ifdef IRIVER_H10_5GB
563 #ifndef SIMULATOR
564 target/arm/ata-as-arm.S
565 target/arm/ata-pp5020.c
566 target/arm/wmcodec-pp.c
567 target/arm/i2s-pp.c
568 target/arm/iriver/h10/adc-h10.c
569 target/arm/iriver/h10/backlight-h10.c
570 target/arm/iriver/h10/button-h10.c
571 target/arm/iriver/h10/lcd-h10_5gb.c
572 target/arm/iriver/h10/power-h10.c
573 target/arm/iriver/h10/powermgmt-h10.c
574 target/arm/usb-fw-pp502x.c
575 #endif /* SIMULATOR */
576 #endif /* IRIVER_H10_5GB */
578 #ifdef GIGABEAT_F
579 #ifndef SIMULATOR
580 target/arm/lcd-as-memframe.S
581 target/arm/mmu-arm.c
582 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
583 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
584 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
585 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
586 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
587 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
588 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
589 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
590 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
591 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
592 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
593 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
594 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
595 target/arm/s3c2440/gigabeat-fx/dma_start.c
596 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
597 #ifndef BOOTLOADER
598 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
599 #endif
600 #endif /* SIMULATOR */
601 #endif /* GIGABEAT_F */
603 #ifdef GIGABEAT_S
604 #ifndef SIMULATOR
605 target/arm/imx31/gigabeat-s/adc-imx31.c
606 target/arm/imx31/gigabeat-s/ata-imx31.c
607 target/arm/imx31/gigabeat-s/backlight-imx31.c
608 target/arm/imx31/gigabeat-s/button-imx31.c
609 target/arm/imx31/gigabeat-s/i2c-imx31.c
610 target/arm/imx31/gigabeat-s/i2s-imx31.c
611 target/arm/imx31/gigabeat-s/lcd-as-imx31.S
612 target/arm/imx31/gigabeat-s/lcd-imx31.c
613 target/arm/imx31/gigabeat-s/power-imx31.c
614 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
615 target/arm/imx31/gigabeat-s/usb-imx31.c
616 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
617 target/arm/imx31/gigabeat-s/dma_start.c
618 target/arm/imx31/gigabeat-s/system-imx31.c
619 target/arm/imx31/gigabeat-s/mmu-imx31.c
620 target/arm/imx31/gigabeat-s/avic-imx31.c
621 target/arm/imx31/gigabeat-s/spi-imx31.c
622 #ifndef BOOTLOADER
623 target/arm/imx31/gigabeat-s/pcm-imx31.c
624 #endif
625 #endif /* SIMULATOR */
626 #endif /* GIGABEAT_S */
628 #ifdef MROBE_500
629 #ifndef SIMULATOR
630 target/arm/lcd-as-memframe.S
631 target/arm/mmu-arm.c
632 target/arm/tms320dm320/mrobe-500/adc-mr500.c
633 target/arm/tms320dm320/mrobe-500/ata-mr500.c
634 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
635 target/arm/tms320dm320/mrobe-500/button-mr500.c
636 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
637 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
638 #if defined(HAVE_REMOTE_LCD)
639 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
640 #endif
641 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
642 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
643 target/arm/tms320dm320/mrobe-500/power-mr500.c
644 target/arm/tms320dm320/mrobe-500/usb-mr500.c
645 target/arm/tms320dm320/i2c-dm320.c
646 target/arm/tms320dm320/kernel-dm320.c
647 target/arm/tms320dm320/spi-dm320.c
648 target/arm/tms320dm320/system-dm320.c
649 target/arm/tms320dm320/timer-dm320.c
650 target/arm/tms320dm320/uart-dm320.c
651 #endif /* SIMULATOR */
652 #endif /* MROBE_500 */
654 #ifdef ELIO_TPJ1022
655 #ifndef SIMULATOR
656 target/arm/ata-as-arm.S
657 target/arm/ata-pp5020.c
658 target/arm/wmcodec-pp.c
659 target/arm/i2s-pp.c
660 target/arm/tatung/tpj1022/adc-tpj1022.c
661 target/arm/tatung/tpj1022/backlight-tpj1022.c
662 target/arm/tatung/tpj1022/button-tpj1022.c
663 target/arm/tatung/tpj1022/lcd-tpj1022.c
664 target/arm/tatung/tpj1022/power-tpj1022.c
665 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
666 target/arm/usb-fw-pp502x.c
667 #endif /* SIMULATOR */
668 #endif /* ELIO_TPJ1022 */
670 #ifdef IPOD_4G
671 #ifndef SIMULATOR
672 drivers/pcf50605.c
673 target/arm/wmcodec-pp.c
674 target/arm/i2s-pp.c
675 target/arm/ata-as-arm.S
676 target/arm/ata-pp5020.c
677 target/arm/ipod/adc-ipod-pcf.c
678 target/arm/ipod/backlight-4g_color.c
679 target/arm/ipod/button-clickwheel.c
680 target/arm/ipod/lcd-gray.c
681 target/arm/ipod/power-ipod.c
682 target/arm/ipod/powermgmt-ipod-pcf.c
683 target/arm/usb-fw-pp502x.c
684 #endif /* SIMULATOR */
685 #endif /* IPOD_4G */
687 #ifdef IPOD_COLOR
688 #ifndef SIMULATOR
689 drivers/pcf50605.c
690 target/arm/ata-as-arm.S
691 target/arm/ata-pp5020.c
692 target/arm/wmcodec-pp.c
693 target/arm/i2s-pp.c
694 target/arm/ipod/adc-ipod-pcf.c
695 target/arm/ipod/backlight-4g_color.c
696 target/arm/ipod/button-clickwheel.c
697 target/arm/ipod/lcd-color_nano.c
698 target/arm/ipod/power-ipod.c
699 target/arm/ipod/powermgmt-ipod-pcf.c
700 target/arm/usb-fw-pp502x.c
701 #endif /* SIMULATOR */
702 #endif /* IPOD_COLOR */
704 #ifdef IPOD_NANO
705 #ifndef SIMULATOR
706 drivers/pcf50605.c
707 target/arm/ata-as-arm.S
708 target/arm/ata-pp5020.c
709 target/arm/wmcodec-pp.c
710 target/arm/i2s-pp.c
711 target/arm/ipod/adc-ipod-pcf.c
712 target/arm/ipod/backlight-nano_video.c
713 target/arm/ipod/button-clickwheel.c
714 target/arm/ipod/lcd-color_nano.c
715 target/arm/ipod/power-ipod.c
716 target/arm/ipod/powermgmt-ipod-pcf.c
717 target/arm/usb-fw-pp502x.c
718 #endif /* SIMULATOR */
719 #endif /* IPOD_NANO */
721 #ifdef IPOD_VIDEO
722 #ifndef SIMULATOR
723 drivers/pcf50605.c
724 target/arm/ata-as-arm.S
725 target/arm/ata-pp5020.c
726 target/arm/wmcodec-pp.c
727 target/arm/i2s-pp.c
728 target/arm/ipod/adc-ipod-pcf.c
729 target/arm/ipod/backlight-nano_video.c
730 target/arm/ipod/button-clickwheel.c
731 target/arm/ipod/power-ipod.c
732 target/arm/ipod/powermgmt-ipod-pcf.c
733 target/arm/ipod/video/lcd-as-video.S
734 target/arm/ipod/video/lcd-video.c
735 target/arm/usb-fw-pp502x.c
736 #endif /* SIMULATOR */
737 #endif /* IPOD_VIDEO */
739 #ifdef IPOD_3G
740 #ifndef SIMULATOR
741 drivers/pcf50605.c
742 target/arm/ata-pp5002.c
743 target/arm/wmcodec-pp.c
744 target/arm/i2s-pp.c
745 target/arm/ipod/adc-ipod-pcf.c
746 target/arm/ipod/3g/backlight-3g.c
747 target/arm/ipod/button-1g-3g.c
748 target/arm/ipod/lcd-gray.c
749 target/arm/ipod/power-ipod.c
750 target/arm/ipod/powermgmt-ipod-pcf.c
751 target/arm/usb-fw-pp5002.c
752 #endif /* SIMULATOR */
753 #endif /* IPOD_3G */
755 #ifdef IPOD_1G2G
756 #ifndef SIMULATOR
757 target/arm/ata-pp5002.c
758 target/arm/wmcodec-pp.c
759 target/arm/i2s-pp.c
760 target/arm/ipod/1g2g/adc-ipod-1g2g.c
761 target/arm/ipod/1g2g/backlight-1g2g.c
762 target/arm/ipod/1g2g/powermgmt-1g2g.c
763 target/arm/ipod/button-1g-3g.c
764 target/arm/ipod/lcd-gray.c
765 target/arm/ipod/power-ipod.c
766 target/arm/usb-fw-pp5002.c
767 #endif /* SIMULATOR */
768 #endif /* IPOD_1G2G */
770 #ifdef IPOD_MINI
771 #ifndef SIMULATOR
772 drivers/pcf50605.c
773 target/arm/ata-as-arm.S
774 target/arm/ata-pp5020.c
775 target/arm/wmcodec-pp.c
776 target/arm/i2s-pp.c
777 target/arm/ipod/adc-ipod-pcf.c
778 target/arm/ipod/backlight-mini1g_mini2g.c
779 target/arm/ipod/button-mini1g.c
780 target/arm/ipod/lcd-gray.c
781 target/arm/ipod/power-ipod.c
782 target/arm/ipod/powermgmt-ipod-pcf.c
783 target/arm/usb-fw-pp502x.c
784 #endif /* SIMULATOR */
785 #endif /* IPOD_MINI */
787 #ifdef IPOD_MINI2G
788 #ifndef SIMULATOR
789 drivers/pcf50605.c
790 target/arm/ata-as-arm.S
791 target/arm/ata-pp5020.c
792 target/arm/wmcodec-pp.c
793 target/arm/i2s-pp.c
794 target/arm/ipod/adc-ipod-pcf.c
795 target/arm/ipod/backlight-mini1g_mini2g.c
796 target/arm/ipod/button-clickwheel.c
797 target/arm/ipod/lcd-gray.c
798 target/arm/ipod/power-ipod.c
799 target/arm/ipod/powermgmt-ipod-pcf.c
800 target/arm/usb-fw-pp502x.c
801 #endif /* SIMULATOR */
802 #endif /* IPOD_MINI2G */
804 #ifdef IRIVER_IFP7XX
805 #ifndef SIMULATOR
806 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
807 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
808 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
809 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
810 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
811 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
812 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
813 #ifndef BOOTLOADER
814 target/arm/pnx0101/pcm-pnx0101.c
815 #endif /* BOOTLOADER */
816 #endif /* SIMULATOR */
817 #endif /* IRIVER_IFP7XX */
819 #ifdef LOGIK_DAX
820 #ifndef SIMULATOR
821 target/arm/tcc77x/adc-tcc77x.c
822 target/arm/tcc77x/ata-nand-tcc77x.c
823 target/arm/tcc77x/system-tcc77x.c
824 target/arm/tcc77x/logikdax/button-logikdax.c
825 target/arm/tcc77x/logikdax/lcd-logikdax.c
826 target/arm/tcc77x/logikdax/power-logikdax.c
827 #endif /* SIMULATOR */
828 #endif /* LOGIK_DAX */
830 #ifdef IAUDIO_7
831 #ifndef SIMULATOR
832 target/arm/tcc77x/adc-tcc77x.c
833 target/arm/tcc77x/ata-nand-tcc77x.c
834 target/arm/tcc77x/system-tcc77x.c
835 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
836 target/arm/tcc77x/iaudio7/power-iaudio7.c
837 #endif /* SIMULATOR */
838 #endif /* IAUDIO_7 */