Device detection based on USB PIDs. This is currently linux only and requires libusb...
[Rockbox.git] / firmware / SOURCES
blobab99167a8fed46b982c8803f18f8c824bbce7bba
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/structec.c
57 common/timefuncs.c
58 common/unicode.c
60 /* Display */
61 scroll_engine.c
63 #ifdef HAVE_LCD_CHARCELLS
64 drivers/lcd-charcell.c
65 drivers/lcd-charset-player.c
66 #endif /* HAVE_LCD_CHARCELLS */
68 #ifdef HAVE_LCD_BITMAP
69 arabjoin.c
70 bidi.c
71 font_cache.c
72 font.c
73 hangul.c
74 lru.c
75 #if LCD_DEPTH == 1
76 drivers/lcd-1bit-vert.c
77 #elif LCD_DEPTH == 2
78 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
79 drivers/lcd-2bit-horz.c
80 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
81 drivers/lcd-2bit-vert.c
82 #endif /* LCD_PIXELFORMAT */
83 #elif LCD_DEPTH == 16
84 drivers/lcd-16bit.c
85 #endif /* LCD_DEPTH */
86 #endif /* HAVE_LCD_BITMAP */
88 #ifdef HAVE_REMOTE_LCD
89 #if LCD_REMOTE_DEPTH == 1
90 drivers/lcd-remote-1bit-v.c
91 #elif LCD_REMOTE_DEPTH == 2
92 drivers/lcd-remote-2bit-vi.c
93 #endif /* LCD_REMOTE_DEPTH */
94 #endif /* HAVE_REMOTE_LCD */
96 /* Misc. */
97 drivers/led.c
98 drivers/button.c
99 #ifndef SIMULATOR
100 drivers/dac.c
101 drivers/serial.c
102 #endif /* SIMULATOR */
105 /* Storage */
106 #ifndef SIMULATOR
107 #ifdef HAVE_MMC
108 drivers/ata_mmc.c
109 #else  /* !HAVE_MMC */
110 #ifdef HAVE_FLASH_DISK
111 drivers/ata_flash.c
112 #else  /* !HAVE_FLASH_DISK */
113 #if !defined(SANSA_E200) && !defined(SANSA_C200)
114 drivers/ata.c
115 #endif /* SANSA_E200 */
116 #endif /* HAVE_FLASH_DISK */
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 #endif /* (CONFIG_RTC == RTC_) */
149 #endif /* SIMULATOR */
151 /* Tuner */
152 #if CONFIG_TUNER
153 tuner.c
154 #ifndef SIMULATOR
155 #if (CONFIG_TUNER & LV24020LP)
156 drivers/tuner/lv24020lp.c
157 #endif /* (CONFIG_TUNER & LV24020LP) */
158 #if (CONFIG_TUNER & S1A0903X01)
159 drivers/fmradio.c
160 drivers/tuner/s1a0903x01.c
161 #endif /* (CONFIG_TUNER & S1A0903X01) */
162 #if (CONFIG_TUNER & TEA5767)
163 drivers/fmradio_i2c.c
164 drivers/tuner/tea5767.c
165 #endif /* (CONFIG_TUNER & TEA5767) */
166 #endif /*SIMULATOR */
167 #endif /* CONFIG_TUNER */
169 /* Sound */
170 #if CONFIG_CODEC != SWCODEC
171 mp3_playback.c
172 #endif /* CONFIG_CODEC != SWCODEC */
173 mp3data.c
174 sound.c
176 #if CONFIG_CODEC == SWCODEC
178 #ifndef BOOTLOADER
179 general.c
180 pcm_sampr.c
181 replaygain.c
182 #ifndef SIMULATOR
183 pcm_playback.c
184 #endif /* SIMULATOR */
185 #ifdef HAVE_RECORDING
186 enc_base.c
187 #ifndef SIMULATOR
188 pcm_record.c
189 #endif /* SIMULATOR */
190 #endif /* HAVE_RECORDING */
191 #endif /* BOOTLOADER */
193 #else  /* !SWCODEC */
195 #ifndef BOOTLOADER
196 mpeg.c
197 #ifndef SIMULATOR
198 drivers/mas.c
199 #endif /* SIMULATOR */
200 #endif /* BOOTLOADER */
202 #endif /* SWCODEC */
204 /* Audio codec */
205 #ifndef SIMULATOR
206 #if defined(HAVE_UDA1380)
207 drivers/audio/uda1380.c
208 #elif defined(HAVE_WM8751)
209 drivers/audio/wm8751.c
210 #elif defined(HAVE_WM8975)
211 drivers/audio/wm8975.c
212 #elif defined(HAVE_WM8758)
213 drivers/audio/wm8758.c
214 #elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
215 drivers/audio/wm8731l.c
216 #elif defined(HAVE_AS3514)
217 drivers/audio/as3514.c
218 #elif defined(HAVE_TLV320)
219 drivers/audio/tlv320.c
220 #elif defined(HAVE_MAS35XX)
221 drivers/audio/mas35xx.c
222 #endif /* defined(HAVE_*) */
223 #endif /* SIMULATOR */
225 /* USB Stack */
226 #if !defined(SIMULATOR)
227 #ifdef HAVE_USBSTACK
228 usbstack/core/core.c
229 usbstack/core/epsetup.c
230 usbstack/core/utils.c
231 usbstack/core/config.c
232 usbstack/drivers/device/usb_serial.c
233 usbstack/drivers/device/usb_storage.c
234 #endif
235 #endif
237 /* USBOTG */
238 #if !defined(SIMULATOR)
239 #if CONFIG_USBOTG == USBOTG_ISP1362
240 drivers/isp1362.c
241 #endif
242 #if defined(SANSA_E200) || defined(SANSA_C200) || !defined(BOOTLOADER)
243 #if CONFIG_USBOTG == USBOTG_M5636
244 drivers/m5636.c
245 #elif CONFIG_USBOTG == USBOTG_ARC
246 #ifdef HAVE_USBSTACK
247 drivers/usb/arcotg_dcd.c
248 #else
249 drivers/usb/arcotg_udc.c
250 #endif
251 #endif /* CONFIG_USBOTG */
252 #endif /* !defined(BOOTLOADER) */
253 #endif /* !defined(SIMULATOR) */
255 /* CPU Specific - By class then particular chip if applicable */
256 #if defined(CPU_SH)
258 #ifndef SIMULATOR
259 bitswap.S
260 descramble.S
261 drivers/i2c.c
262 target/sh/adc-sh.c
263 target/sh/crt0.S
264 target/sh/memcpy-sh.S
265 target/sh/memmove-sh.S
266 target/sh/memset-sh.S
267 target/sh/strlen-sh.S
268 target/sh/system-sh.c
269 #endif /* SIMULATOR */
271 #elif defined(CPU_COLDFIRE)
273 #ifndef SIMULATOR
274 target/coldfire/crt0.S
275 target/coldfire/memcpy-coldfire.S
276 target/coldfire/memmove-coldfire.S
277 target/coldfire/memset-coldfire.S
278 target/coldfire/memswap128-coldfire.S
279 target/coldfire/strlen-coldfire.S
280 #if defined(HAVE_LCD_COLOR) \
281  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
282 target/coldfire/memset16-coldfire.S
283 #endif
284 target/coldfire/system-coldfire.c
285 #ifndef BOOTLOADER
286 target/coldfire/pcm-coldfire.c
287 #endif /* BOOTLOADER */
288 #if CONFIG_I2C == I2C_COLDFIRE
289 target/coldfire/i2c-coldfire.c
290 #endif /* CONFIG_I2C == I2C_COLDFIRE */
291 #endif /* SIMULATOR */
293 #elif defined(CPU_PP) || defined(CPU_ARM)
294 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
295 target/arm/memcpy-arm.S
296 target/arm/memmove-arm.S
297 common/strlen.c
298 #ifndef SIMULATOR
299 target/arm/memset-arm.S
300 target/arm/memset16-arm.S
301 target/arm/memswap128-arm.S
302 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
303 target/arm/i2c-pp.c
304 #elif CONFIG_I2C == I2C_PNX0101
305 target/arm/pnx0101/i2c-pnx0101.c
306 #elif CONFIG_I2C == I2C_S3C2440
307 /* no i2c driver yet */
308 #endif
309 #if CONFIG_CPU == PNX0101
310 target/arm/pnx0101/system-pnx0101.c
311 #endif
312 #if defined(CPU_PP)
313 #if CONFIG_CPU == PP5002
314 target/arm/system-pp5002.c
315 #elif defined CPU_PP502x
316 target/arm/system-pp502x.c
317 #endif
318 #ifdef BOOTLOADER
319 target/arm/crt0-pp-bl.S
320 #else
321 target/arm/pcm-pp.c
322 #if !defined(SANSA_E200) && !defined(SANSA_C200)
323 target/arm/audio-pp.c
324 #endif /* SANSA_E200 */
325 target/arm/crt0-pp.S
326 #endif
327 #elif CONFIG_CPU == PNX0101
328 target/arm/pnx0101/crt0-pnx0101.S
329 #elif defined(CPU_ARM)
330 target/arm/crt0.S
331 #endif /* defined(CPU_*) */
332 #endif /* SIMULATOR */
334 #else
336 common/memcpy.c
337 common/memmove.c
338 common/memset.c
339 common/memset16.c
340 common/memswap128.c
341 common/strlen.c
342 #ifndef SIMULATOR
343 crt0.S
344 drivers/i2c.c
345 #endif /* SIMULATOR */
347 #endif /* defined(CPU_*) */
349 #ifdef ARCHOS_PLAYER
350 #ifndef SIMULATOR
351 target/sh/archos/ata-archos.c
352 target/sh/archos/ata-as-archos.S
353 target/sh/archos/player/button-player.c
354 target/sh/archos/player/hwcompat-player.c
355 target/sh/archos/player/lcd-as-player.S
356 target/sh/archos/player/lcd-player.c
357 target/sh/archos/player/power-player.c
358 target/sh/archos/player/powermgmt-player.c
359 target/sh/archos/player/usb-player.c
360 #endif /* SIMULATOR */
361 #endif /* ARCHOS_PLAYER */
363 #ifdef ARCHOS_RECORDER
364 #ifndef SIMULATOR
365 target/sh/archos/ata-archos.c
366 target/sh/archos/ata-as-archos.S
367 target/sh/archos/lcd-archos-bitmap.c
368 target/sh/archos/lcd-as-archos-bitmap.S   
369 target/sh/archos/recorder/button-recorder.c
370 target/sh/archos/recorder/power-recorder.c
371 target/sh/archos/recorder/powermgmt-recorder.c
372 target/sh/archos/recorder/usb-recorder.c
373 #endif /* SIMULATOR */
374 #endif /* ARCHOS_RECORDER */
376 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
377 #ifndef SIMULATOR
378 target/sh/archos/ata-archos.c
379 target/sh/archos/ata-as-archos.S
380 target/sh/archos/lcd-archos-bitmap.c
381 target/sh/archos/lcd-as-archos-bitmap.S
382 target/sh/archos/fm_v2/button-fm_v2.c
383 target/sh/archos/fm_v2/power-fm_v2.c
384 target/sh/archos/fm_v2/powermgmt-fm_v2.c
385 target/sh/archos/fm_v2/usb-fm_v2.c
386 #endif /* SIMULATOR */
387 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
389 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
390 #ifndef SIMULATOR
391 target/sh/archos/lcd-archos-bitmap.c
392 target/sh/archos/lcd-as-archos-bitmap.S
393 target/sh/archos/ondio/button-ondio.c
394 target/sh/archos/ondio/power-ondio.c
395 target/sh/archos/ondio/powermgmt-ondio.c
396 target/sh/archos/ondio/usb-ondio.c
397 #endif /* SIMULATOR */
398 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
400 #ifdef SANSA_E200
401 #ifndef SIMULATOR
402 target/arm/sandisk/ata-c200_e200.c
403 target/arm/sandisk/sansa-e200/lcd-e200.c
404 target/arm/sandisk/sansa-e200/lcd-as-e200.S
405 target/arm/sandisk/adc-c200_e200.c
406 target/arm/sandisk/backlight-c200_e200.c
407 target/arm/usb-fw-pp502x.c
408 target/arm/sandisk/sansa-e200/button-e200.c
409 target/arm/sandisk/power-c200_e200.c
410 target/arm/sandisk/sansa-e200/powermgmt-e200.c
411 target/arm/i2s-pp.c
412 #ifndef BOOTLOADER
413 target/arm/sandisk/audio-c200_e200.c
414 #endif /* BOOTLOADER */
415 #endif /* SIMULATOR */
416 #endif /* SANSA_E200 */
418 #ifdef SANSA_C200
419 #ifndef SIMULATOR
420 target/arm/sandisk/ata-c200_e200.c
421 target/arm/sandisk/sansa-c200/lcd-c200.c
422 target/arm/sandisk/adc-c200_e200.c
423 target/arm/sandisk/backlight-c200_e200.c
424 target/arm/usb-fw-pp502x.c
425 target/arm/sandisk/sansa-c200/button-c200.c
426 target/arm/sandisk/power-c200_e200.c
427 target/arm/sandisk/sansa-c200/powermgmt-c200.c
428 target/arm/i2s-pp.c
429 #ifndef BOOTLOADER
430 target/arm/sandisk/audio-c200_e200.c
431 #endif /* BOOTLOADER */
432 #endif /* SIMULATOR */
433 #endif /* SANSA_C200 */
435 #ifdef IAUDIO_X5
436 #ifndef SIMULATOR
437 target/coldfire/ata-as-coldfire.S
438 target/coldfire/pcf50606-coldfire.c
439 target/coldfire/iaudio/adc-iaudio.c
440 target/coldfire/iaudio/ata-iaudio.c
441 target/coldfire/iaudio/lcd-remote-iaudio.c
442 target/coldfire/iaudio/pcf50606-iaudio.c
443 target/coldfire/iaudio/powermgmt-iaudio.c
444 target/coldfire/iaudio/system-iaudio.c
445 target/coldfire/iaudio/usb-iaudio.c
446 target/coldfire/iaudio/x5/backlight-x5.c
447 target/coldfire/iaudio/x5/button-x5.c
448 target/coldfire/iaudio/x5/ds2411-x5.c
449 target/coldfire/iaudio/x5/lcd-as-x5.S
450 target/coldfire/iaudio/x5/lcd-x5.c
451 target/coldfire/iaudio/x5/m5636-x5.c
452 target/coldfire/iaudio/x5/power-x5.c
453 #ifndef BOOTLOADER
454 target/coldfire/iaudio/x5/audio-x5.c
455 #endif
456 #endif /* SIMULATOR */
457 #endif /* IAUDIO_X5 */
459 #ifdef IAUDIO_M5
460 #ifndef SIMULATOR
461 target/coldfire/ata-as-coldfire.S
462 target/coldfire/pcf50606-coldfire.c
463 target/coldfire/iaudio/adc-iaudio.c
464 target/coldfire/iaudio/ata-iaudio.c
465 target/coldfire/iaudio/lcd-remote-iaudio.c
466 target/coldfire/iaudio/m5/backlight-m5.c
467 target/coldfire/iaudio/m5/button-m5.c
468 target/coldfire/iaudio/m5/lcd-as-m5.S
469 target/coldfire/iaudio/m5/lcd-m5.c
470 target/coldfire/iaudio/m5/power-m5.c
471 target/coldfire/iaudio/pcf50606-iaudio.c
472 target/coldfire/iaudio/powermgmt-iaudio.c
473 target/coldfire/iaudio/system-iaudio.c
474 target/coldfire/iaudio/usb-iaudio.c
475 #ifndef BOOTLOADER
476 target/coldfire/iaudio/m5/audio-m5.c
477 #endif
478 #endif /* SIMULATOR */
479 #endif /* IAUDIO_M5 */
481 #ifdef IRIVER_IFP7XX_SERIES
482 #ifdef STUB
483 usb_serial.c
484 common/sscanf.c
485 #endif /* STUB */
486 #endif /* IRIVER_IFP7XX_SERIES */
488 #ifdef IRIVER_H300_SERIES
489 #ifndef SIMULATOR
490 target/coldfire/ata-as-coldfire.S
491 target/coldfire/pcf50606-coldfire.c
492 target/coldfire/iriver/ata-iriver.c
493 target/coldfire/iriver/lcd-remote-iriver.c
494 target/coldfire/iriver/system-iriver.c
495 target/coldfire/iriver/h300/sw_i2c-h300.c
496 target/coldfire/iriver/h300/adc-h300.c
497 target/coldfire/iriver/h300/backlight-h300.c
498 target/coldfire/iriver/h300/button-h300.c
499 target/coldfire/iriver/h300/pcf50606-h300.c
500 target/coldfire/iriver/h300/lcd-as-h300.S
501 target/coldfire/iriver/h300/lcd-h300.c
502 target/coldfire/iriver/h300/power-h300.c
503 target/coldfire/iriver/h300/powermgmt-h300.c
504 target/coldfire/iriver/h300/usb-h300.c
505 #ifndef BOOTLOADER
506 target/coldfire/iriver/audio-iriver.c
507 #endif
508 #endif /* SIMULATOR */
509 #endif /* IRIVER_H300_SERIES */
511 #ifdef IRIVER_H100_SERIES
512 #ifndef SIMULATOR
513 target/coldfire/ata-as-coldfire.S
514 target/coldfire/iriver/ata-iriver.c
515 target/coldfire/iriver/lcd-remote-iriver.c
516 target/coldfire/iriver/system-iriver.c
517 target/coldfire/iriver/h100/sw_i2c-h100.c
518 target/coldfire/iriver/h100/adc-h100.c
519 target/coldfire/iriver/h100/backlight-h100.c
520 target/coldfire/iriver/h100/button-h100.c
521 target/coldfire/iriver/h100/lcd-as-h100.S
522 target/coldfire/iriver/h100/lcd-h100.c
523 target/coldfire/iriver/h100/power-h100.c
524 target/coldfire/iriver/h100/powermgmt-h100.c
525 #ifndef BOOTLOADER
526 target/coldfire/iriver/audio-iriver.c
527 target/coldfire/iriver/h100/spdif-h100.c
528 #endif
529 target/coldfire/iriver/h100/usb-h100.c
530 #endif /* SIMULATOR */
531 #endif /* IRIVER_H100_SERIES */
533 #ifdef IRIVER_H10
534 #ifndef SIMULATOR
535 target/arm/ata-as-arm.S
536 target/arm/ata-pp5020.c
537 target/arm/wmcodec-pp.c
538 target/arm/i2s-pp.c
539 target/arm/iriver/h10/adc-h10.c
540 target/arm/iriver/h10/backlight-h10.c
541 target/arm/iriver/h10/button-h10.c
542 target/arm/iriver/h10/lcd-h10_20gb.c
543 target/arm/iriver/h10/power-h10.c
544 target/arm/iriver/h10/powermgmt-h10.c
545 target/arm/usb-fw-pp502x.c
546 #endif /* SIMULATOR */
547 #endif /* IRIVER_H10 */
549 #ifdef IRIVER_H10_5GB
550 #ifndef SIMULATOR
551 target/arm/ata-as-arm.S
552 target/arm/ata-pp5020.c
553 target/arm/wmcodec-pp.c
554 target/arm/i2s-pp.c
555 target/arm/iriver/h10/adc-h10.c
556 target/arm/iriver/h10/backlight-h10.c
557 target/arm/iriver/h10/button-h10.c
558 target/arm/iriver/h10/lcd-h10_5gb.c
559 target/arm/iriver/h10/power-h10.c
560 target/arm/iriver/h10/powermgmt-h10.c
561 target/arm/usb-fw-pp502x.c
562 #endif /* SIMULATOR */
563 #endif /* IRIVER_H10_5GB */
565 #ifdef GIGABEAT_F
566 #ifndef SIMULATOR
567 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
568 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
569 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
570 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
571 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
572 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
573 target/arm/s3c2440/gigabeat-fx/lcd-as-meg-fx.S
574 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
575 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
576 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
577 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
578 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
579 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
580 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
581 target/arm/s3c2440/gigabeat-fx/dma_start.c
582 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
583 target/arm/s3c2440/gigabeat-fx/mmu-meg-fx.c
584 #ifndef BOOTLOADER
585 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
586 #endif
587 #endif /* SIMULATOR */
588 #endif /* GIGABEAT_F */
590 #ifdef ELIO_TPJ1022
591 #ifndef SIMULATOR
592 target/arm/ata-as-arm.S
593 target/arm/ata-pp5020.c
594 target/arm/wmcodec-pp.c
595 target/arm/i2s-pp.c
596 target/arm/tatung/tpj1022/adc-tpj1022.c
597 target/arm/tatung/tpj1022/backlight-tpj1022.c
598 target/arm/tatung/tpj1022/button-tpj1022.c
599 target/arm/tatung/tpj1022/lcd-tpj1022.c
600 target/arm/tatung/tpj1022/power-tpj1022.c
601 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
602 target/arm/usb-fw-pp502x.c
603 #endif /* SIMULATOR */
604 #endif /* ELIO_TPJ1022 */
606 #ifdef IPOD_4G
607 #ifndef SIMULATOR
608 drivers/pcf50605.c
609 target/arm/wmcodec-pp.c
610 target/arm/i2s-pp.c
611 target/arm/ata-as-arm.S
612 target/arm/ata-pp5020.c
613 target/arm/ipod/adc-ipod-pcf.c
614 target/arm/ipod/backlight-4g_color.c
615 target/arm/ipod/button-clickwheel.c
616 target/arm/ipod/lcd-gray.c
617 target/arm/ipod/power-ipod.c
618 target/arm/ipod/powermgmt-ipod-pcf.c
619 target/arm/usb-fw-pp502x.c
620 #endif /* SIMULATOR */
621 #endif /* IPOD_4G */
623 #ifdef IPOD_COLOR
624 #ifndef SIMULATOR
625 drivers/pcf50605.c
626 target/arm/ata-as-arm.S
627 target/arm/ata-pp5020.c
628 target/arm/wmcodec-pp.c
629 target/arm/i2s-pp.c
630 target/arm/ipod/adc-ipod-pcf.c
631 target/arm/ipod/backlight-4g_color.c
632 target/arm/ipod/button-clickwheel.c
633 target/arm/ipod/lcd-color_nano.c
634 target/arm/ipod/power-ipod.c
635 target/arm/ipod/powermgmt-ipod-pcf.c
636 target/arm/usb-fw-pp502x.c
637 #endif /* SIMULATOR */
638 #endif /* IPOD_COLOR */
640 #ifdef IPOD_NANO
641 #ifndef SIMULATOR
642 drivers/pcf50605.c
643 target/arm/ata-as-arm.S
644 target/arm/ata-pp5020.c
645 target/arm/wmcodec-pp.c
646 target/arm/i2s-pp.c
647 target/arm/ipod/adc-ipod-pcf.c
648 target/arm/ipod/backlight-nano_video.c
649 target/arm/ipod/button-clickwheel.c
650 target/arm/ipod/lcd-color_nano.c
651 target/arm/ipod/power-ipod.c
652 target/arm/ipod/powermgmt-ipod-pcf.c
653 target/arm/usb-fw-pp502x.c
654 #endif /* SIMULATOR */
655 #endif /* IPOD_NANO */
657 #ifdef IPOD_VIDEO
658 #ifndef SIMULATOR
659 drivers/pcf50605.c
660 target/arm/ata-as-arm.S
661 target/arm/ata-pp5020.c
662 target/arm/wmcodec-pp.c
663 target/arm/i2s-pp.c
664 target/arm/ipod/adc-ipod-pcf.c
665 target/arm/ipod/backlight-nano_video.c
666 target/arm/ipod/button-clickwheel.c
667 target/arm/ipod/power-ipod.c
668 target/arm/ipod/powermgmt-ipod-pcf.c
669 target/arm/ipod/video/lcd-video.c
670 target/arm/usb-fw-pp502x.c
671 #endif /* SIMULATOR */
672 #endif /* IPOD_VIDEO */
674 #ifdef IPOD_3G
675 #ifndef SIMULATOR
676 drivers/pcf50605.c
677 target/arm/ata-pp5002.c
678 target/arm/wmcodec-pp.c
679 target/arm/i2s-pp.c
680 target/arm/ipod/adc-ipod-pcf.c
681 target/arm/ipod/3g/backlight-3g.c
682 target/arm/ipod/button-1g-3g.c
683 target/arm/ipod/lcd-gray.c
684 target/arm/ipod/power-ipod.c
685 target/arm/ipod/powermgmt-ipod-pcf.c
686 target/arm/usb-fw-pp5002.c
687 #endif /* SIMULATOR */
688 #endif /* IPOD_3G */
690 #ifdef IPOD_1G2G
691 #ifndef SIMULATOR
692 target/arm/ata-pp5002.c
693 target/arm/wmcodec-pp.c
694 target/arm/i2s-pp.c
695 target/arm/ipod/1g2g/adc-ipod-1g2g.c
696 target/arm/ipod/1g2g/backlight-1g2g.c
697 target/arm/ipod/1g2g/powermgmt-1g2g.c
698 target/arm/ipod/button-1g-3g.c
699 target/arm/ipod/lcd-gray.c
700 target/arm/ipod/power-ipod.c
701 target/arm/usb-fw-pp5002.c
702 #endif /* SIMULATOR */
703 #endif /* IPOD_1G2G */
705 #ifdef IPOD_MINI
706 #ifndef SIMULATOR
707 drivers/pcf50605.c
708 target/arm/ata-as-arm.S
709 target/arm/ata-pp5020.c
710 target/arm/wmcodec-pp.c
711 target/arm/i2s-pp.c
712 target/arm/ipod/adc-ipod-pcf.c
713 target/arm/ipod/backlight-mini1g_mini2g.c
714 target/arm/ipod/button-mini1g.c
715 target/arm/ipod/lcd-gray.c
716 target/arm/ipod/power-ipod.c
717 target/arm/ipod/powermgmt-ipod-pcf.c
718 target/arm/usb-fw-pp502x.c
719 #endif /* SIMULATOR */
720 #endif /* IPOD_MINI */
722 #ifdef IPOD_MINI2G
723 #ifndef SIMULATOR
724 drivers/pcf50605.c
725 target/arm/ata-as-arm.S
726 target/arm/ata-pp5020.c
727 target/arm/wmcodec-pp.c
728 target/arm/i2s-pp.c
729 target/arm/ipod/adc-ipod-pcf.c
730 target/arm/ipod/backlight-mini1g_mini2g.c
731 target/arm/ipod/button-clickwheel.c
732 target/arm/ipod/lcd-gray.c
733 target/arm/ipod/power-ipod.c
734 target/arm/ipod/powermgmt-ipod-pcf.c
735 target/arm/usb-fw-pp502x.c
736 #endif /* SIMULATOR */
737 #endif /* IPOD_MINI2G */
739 #ifdef IRIVER_IFP7XX
740 #ifndef SIMULATOR
741 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
742 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
743 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
744 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
745 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
746 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
747 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c
748 #ifndef BOOTLOADER
749 target/arm/pnx0101/pcm-pnx0101.c
750 #endif
751 #endif
752 #endif