Firewire detection with reboot into diskmode for all iPods that support it (all but...
[Rockbox.git] / firmware / SOURCES
blobccd6f115701e283d1f7bc7a2316fe9a38d27c846
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 #ifndef TARGET_TREE
99 drivers/power.c
100 #endif /* TARGET_TREE */
101 #ifndef SIMULATOR
102 drivers/button.c
103 drivers/dac.c
104 drivers/serial.c
105 #endif /* SIMULATOR */
107 /* Storage */
108 #ifndef SIMULATOR
109 #ifdef HAVE_MMC
110 drivers/ata_mmc.c
111 #else  /* !HAVE_MMC */
112 #ifdef HAVE_FLASH_DISK
113 drivers/ata_flash.c
114 #else  /* !HAVE_FLASH_DISK */
115 #ifndef SANSA_E200
116 drivers/ata.c
117 #endif /* SANSA_E200 */
118 #endif /* HAVE_FLASH_DISK */
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 #endif /* (CONFIG_RTC == RTC_) */
151 #endif /* SIMULATOR */
153 /* Tuner */
154 #if CONFIG_TUNER
155 tuner.c
156 #ifndef SIMULATOR
157 #if (CONFIG_TUNER & LV24020LP)
158 drivers/tuner/lv24020lp.c
159 #endif /* (CONFIG_TUNER & LV24020LP) */
160 #if (CONFIG_TUNER & S1A0903X01)
161 drivers/fmradio.c
162 drivers/tuner/s1a0903x01.c
163 #endif /* (CONFIG_TUNER & S1A0903X01) */
164 #if (CONFIG_TUNER & TEA5767)
165 drivers/fmradio_i2c.c
166 drivers/tuner/tea5767.c
167 #endif /* (CONFIG_TUNER & TEA5767) */
168 #endif /*SIMULATOR */
169 #endif /* CONFIG_TUNER */
171 /* Sound */
172 #if CONFIG_CODEC != SWCODEC
173 mp3_playback.c
174 #endif /* CONFIG_CODEC != SWCODEC */
175 mp3data.c
176 sound.c
178 #if CONFIG_CODEC == SWCODEC
180 #ifndef BOOTLOADER
181 general.c
182 pcm_sampr.c
183 replaygain.c
184 #ifndef SIMULATOR
185 pcm_playback.c
186 #endif /* SIMULATOR */
187 #ifdef HAVE_RECORDING
188 enc_base.c
189 #ifndef SIMULATOR
190 pcm_record.c
191 #endif /* SIMULATOR */
192 #endif /* HAVE_RECORDING */
193 #endif /* BOOTLOADER */
195 #else  /* !SWCODEC */
197 #ifndef BOOTLOADER
198 mpeg.c
199 #ifndef SIMULATOR
200 drivers/mas.c
201 #endif /* SIMULATOR */
202 #endif /* BOOTLOADER */
204 #endif /* SWCODEC */
206 /* Audio codec */
207 #ifndef SIMULATOR
208 #if defined(HAVE_UDA1380)
209 drivers/audio/uda1380.c
210 #elif defined(HAVE_WM8751)
211 drivers/audio/wm8751.c
212 #elif defined(HAVE_WM8975)
213 drivers/audio/wm8975.c
214 #elif defined(HAVE_WM8758)
215 drivers/audio/wm8758.c
216 #elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
217 drivers/audio/wm8731l.c
218 #elif defined(HAVE_AS3514)
219 drivers/audio/as3514.c
220 #elif defined(HAVE_TLV320)
221 drivers/audio/tlv320.c
222 #elif defined(HAVE_MAS35XX)
223 drivers/audio/mas35xx.c
224 #endif /* defined(HAVE_*) */
225 #endif /* SIMULATOR */
227 /* USBOTG */
228 #if !defined(SIMULATOR)
229 #if CONFIG_USBOTG == USBOTG_ISP1362
230 drivers/isp1362.c
231 #endif
232 #if defined(SANSA_E200) || !defined(BOOTLOADER)
233 #if CONFIG_USBOTG == USBOTG_M5636
234 drivers/m5636.c
235 #elif CONFIG_USBOTG == USBOTG_ARC
236 drivers/arcotg_udc.c
237 #endif /* CONFIG_USBOTG */
238 #endif /* !defined(BOOTLOADER) */
239 #endif /* !defined(SIMULATOR) */
241 /* CPU Specific - By class then particular chip if applicable */
242 #if defined(CPU_SH)
244 #ifndef SIMULATOR
245 bitswap.S
246 descramble.S
247 drivers/i2c.c
248 target/sh/adc-sh.c
249 target/sh/crt0.S
250 target/sh/memcpy-sh.S
251 target/sh/memmove-sh.S
252 target/sh/memset-sh.S
253 target/sh/strlen-sh.S
254 target/sh/system-sh.c
255 #endif /* SIMULATOR */
257 #elif defined(CPU_COLDFIRE)
259 #ifndef SIMULATOR
260 target/coldfire/crt0.S
261 target/coldfire/memcpy-coldfire.S
262 target/coldfire/memmove-coldfire.S
263 target/coldfire/memset-coldfire.S
264 target/coldfire/memswap128-coldfire.S
265 target/coldfire/strlen-coldfire.S
266 #if defined(HAVE_LCD_COLOR) \
267  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
268 target/coldfire/memset16-coldfire.S
269 #endif
270 target/coldfire/system-coldfire.c
271 #ifndef BOOTLOADER
272 target/coldfire/pcm-coldfire.c
273 #endif /* BOOTLOADER */
274 #if CONFIG_I2C == I2C_COLDFIRE
275 target/coldfire/i2c-coldfire.c
276 #endif /* CONFIG_I2C == I2C_COLDFIRE */
277 #endif /* SIMULATOR */
279 #elif defined(CPU_PP) || defined(CPU_ARM)
280 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
281 target/arm/memcpy-arm.S
282 target/arm/memmove-arm.S
283 common/strlen.c
284 #ifndef SIMULATOR
285 target/arm/memset-arm.S
286 target/arm/memset16-arm.S
287 target/arm/memswap128-arm.S
288 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
289 target/arm/i2c-pp.c
290 #elif CONFIG_I2C == I2C_PNX0101
291 target/arm/pnx0101/i2c-pnx0101.c
292 #elif CONFIG_I2C == I2C_S3C2440
293 /* no i2c driver yet */
294 #endif
295 #if CONFIG_CPU == PNX0101
296 target/arm/pnx0101/system-pnx0101.c
297 #endif
298 #if defined(CPU_PP)
299 #if CONFIG_CPU == PP5002
300 target/arm/system-pp5002.c
301 #elif defined CPU_PP502x
302 target/arm/system-pp502x.c
303 #endif
304 #ifdef BOOTLOADER
305 target/arm/crt0-pp-bl.S
306 #else
307 target/arm/pcm-pp.c
308 #ifndef SANSA_E200
309 target/arm/audio-pp.c
310 #endif /* SANSA_E200 */
311 target/arm/crt0-pp.S
312 #endif
313 #elif CONFIG_CPU == PNX0101
314 target/arm/pnx0101/crt0-pnx0101.S
315 #elif defined(CPU_ARM)
316 target/arm/crt0.S
317 #endif /* defined(CPU_*) */
318 #endif /* SIMULATOR */
320 #else
322 common/memcpy.c
323 common/memmove.c
324 common/memset.c
325 common/memset16.c
326 common/memswap128.c
327 common/strlen.c
328 #ifndef SIMULATOR
329 crt0.S
330 drivers/i2c.c
331 #endif /* SIMULATOR */
333 #endif /* defined(CPU_*) */
335 #ifdef ARCHOS_PLAYER
336 #ifndef SIMULATOR
337 target/sh/archos/ata-archos.c
338 target/sh/archos/ata-as-archos.S
339 target/sh/archos/player/button-player.c
340 target/sh/archos/player/hwcompat-player.c
341 target/sh/archos/player/lcd-as-player.S
342 target/sh/archos/player/lcd-player.c
343 target/sh/archos/player/usb-player.c
344 #endif /* SIMULATOR */
345 #endif /* ARCHOS_PLAYER */
347 #ifdef ARCHOS_RECORDER
348 #ifndef SIMULATOR
349 target/sh/archos/ata-archos.c
350 target/sh/archos/ata-as-archos.S
351 target/sh/archos/lcd-archos-bitmap.c
352 target/sh/archos/lcd-as-archos-bitmap.S   
353 target/sh/archos/recorder/button-recorder.c
354 target/sh/archos/recorder/usb-recorder.c
355 #endif /* SIMULATOR */
356 #endif /* ARCHOS_RECORDER */
358 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
359 #ifndef SIMULATOR
360 target/sh/archos/ata-archos.c
361 target/sh/archos/ata-as-archos.S
362 target/sh/archos/lcd-archos-bitmap.c
363 target/sh/archos/lcd-as-archos-bitmap.S
364 target/sh/archos/fm_v2/button-fm_v2.c
365 target/sh/archos/fm_v2/usb-fm_v2.c
366 #endif /* SIMULATOR */
367 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
369 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
370 #ifndef SIMULATOR
371 target/sh/archos/lcd-archos-bitmap.c
372 target/sh/archos/lcd-as-archos-bitmap.S
373 target/sh/archos/ondio/button-ondio.c
374 target/sh/archos/ondio/usb-ondio.c
375 #endif /* SIMULATOR */
376 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
378 #ifdef SANSA_E200
379 #ifndef SIMULATOR
380 target/arm/sandisk/sansa-e200/ata-e200.c
381 target/arm/sandisk/sansa-e200/lcd-e200.c
382 target/arm/sandisk/sansa-e200/lcd-as-e200.S
383 target/arm/sandisk/sansa-e200/adc-e200.c
384 target/arm/sandisk/sansa-e200/backlight-e200.c
385 target/arm/usb-fw-pp502x.c
386 target/arm/sandisk/sansa-e200/button-e200.c
387 target/arm/sandisk/sansa-e200/power-e200.c
388 target/arm/i2s-pp.c
389 #ifndef BOOTLOADER
390 target/arm/sandisk/sansa-e200/audio-e200.c
391 #endif /* BOOTLOADER */
392 #endif /* SIMULATOR */
393 #endif /* SANSA_E200 */
395 #ifdef IAUDIO_X5
396 target/coldfire/iaudio/x5/power-x5.c
397 #ifndef SIMULATOR
398 target/coldfire/ata-as-coldfire.S
399 target/coldfire/pcf50606-coldfire.c
400 target/coldfire/iaudio/adc-iaudio.c
401 target/coldfire/iaudio/ata-iaudio.c
402 target/coldfire/iaudio/lcd-remote-iaudio.c
403 target/coldfire/iaudio/pcf50606-iaudio.c
404 target/coldfire/iaudio/system-iaudio.c
405 target/coldfire/iaudio/usb-iaudio.c
406 target/coldfire/iaudio/x5/backlight-x5.c
407 target/coldfire/iaudio/x5/button-x5.c
408 target/coldfire/iaudio/x5/ds2411-x5.c
409 target/coldfire/iaudio/x5/lcd-as-x5.S
410 target/coldfire/iaudio/x5/lcd-x5.c
411 target/coldfire/iaudio/x5/m5636-x5.c
412 #ifndef BOOTLOADER
413 target/coldfire/iaudio/x5/audio-x5.c
414 #endif
415 #endif /* SIMULATOR */
416 #endif /* IAUDIO_X5 */
418 #ifdef IAUDIO_M5
419 target/coldfire/iaudio/m5/power-m5.c
420 #ifndef SIMULATOR
421 target/coldfire/ata-as-coldfire.S
422 target/coldfire/pcf50606-coldfire.c
423 target/coldfire/iaudio/adc-iaudio.c
424 target/coldfire/iaudio/ata-iaudio.c
425 target/coldfire/iaudio/lcd-remote-iaudio.c
426 target/coldfire/iaudio/m5/backlight-m5.c
427 target/coldfire/iaudio/m5/button-m5.c
428 target/coldfire/iaudio/m5/lcd-as-m5.S
429 target/coldfire/iaudio/m5/lcd-m5.c
430 target/coldfire/iaudio/pcf50606-iaudio.c
431 target/coldfire/iaudio/system-iaudio.c
432 target/coldfire/iaudio/usb-iaudio.c
433 #ifndef BOOTLOADER
434 target/coldfire/iaudio/m5/audio-m5.c
435 #endif
436 #endif /* SIMULATOR */
437 #endif /* IAUDIO_M5 */
439 #ifdef IRIVER_IFP7XX_SERIES
440 #ifdef STUB
441 usb_serial.c
442 common/sscanf.c
443 #endif /* STUB */
444 #endif /* IRIVER_IFP7XX_SERIES */
446 #ifdef IRIVER_H300_SERIES
447 target/coldfire/iriver/h300/power-h300.c
448 #ifndef SIMULATOR
449 target/coldfire/ata-as-coldfire.S
450 target/coldfire/pcf50606-coldfire.c
451 target/coldfire/iriver/ata-iriver.c
452 target/coldfire/iriver/lcd-remote-iriver.c
453 target/coldfire/iriver/system-iriver.c
454 target/coldfire/iriver/h300/sw_i2c-h300.c
455 target/coldfire/iriver/h300/adc-h300.c
456 target/coldfire/iriver/h300/backlight-h300.c
457 target/coldfire/iriver/h300/button-h300.c
458 target/coldfire/iriver/h300/pcf50606-h300.c
459 target/coldfire/iriver/h300/lcd-as-h300.S
460 target/coldfire/iriver/h300/lcd-h300.c
461 target/coldfire/iriver/h300/usb-h300.c
462 #ifndef BOOTLOADER
463 target/coldfire/iriver/audio-iriver.c
464 #endif
465 #endif /* SIMULATOR */
466 #endif /* IRIVER_H300_SERIES */
468 #ifdef IRIVER_H100_SERIES
469 target/coldfire/iriver/h100/power-h100.c
470 #ifndef SIMULATOR
471 target/coldfire/ata-as-coldfire.S
472 target/coldfire/iriver/ata-iriver.c
473 target/coldfire/iriver/lcd-remote-iriver.c
474 target/coldfire/iriver/system-iriver.c
475 target/coldfire/iriver/h100/sw_i2c-h100.c
476 target/coldfire/iriver/h100/adc-h100.c
477 target/coldfire/iriver/h100/backlight-h100.c
478 target/coldfire/iriver/h100/button-h100.c
479 target/coldfire/iriver/h100/lcd-as-h100.S
480 target/coldfire/iriver/h100/lcd-h100.c
481 #ifndef BOOTLOADER
482 target/coldfire/iriver/audio-iriver.c
483 target/coldfire/iriver/h100/spdif-h100.c
484 #endif
485 target/coldfire/iriver/h100/usb-h100.c
486 #endif /* SIMULATOR */
487 #endif /* IRIVER_H100_SERIES */
489 #ifdef IRIVER_H10
490 #ifndef SIMULATOR
491 target/arm/ata-as-arm.S
492 target/arm/ata-pp5020.c
493 target/arm/wmcodec-pp.c
494 target/arm/i2s-pp.c
495 target/arm/iriver/h10/adc-h10.c
496 target/arm/iriver/h10/backlight-h10.c
497 target/arm/iriver/h10/button-h10.c
498 target/arm/iriver/h10/lcd-h10_20gb.c
499 target/arm/iriver/h10/power-h10.c
500 target/arm/usb-fw-pp502x.c
501 #endif /* SIMULATOR */
502 #endif /* IRIVER_H10 */
504 #ifdef IRIVER_H10_5GB
505 #ifndef SIMULATOR
506 target/arm/ata-as-arm.S
507 target/arm/ata-pp5020.c
508 target/arm/wmcodec-pp.c
509 target/arm/i2s-pp.c
510 target/arm/iriver/h10/adc-h10.c
511 target/arm/iriver/h10/backlight-h10.c
512 target/arm/iriver/h10/button-h10.c
513 target/arm/iriver/h10/lcd-h10_5gb.c
514 target/arm/iriver/h10/power-h10.c
515 target/arm/usb-fw-pp502x.c
516 #endif /* SIMULATOR */
517 #endif /* IRIVER_H10_5GB */
519 #ifdef GIGABEAT_F
520 #ifndef SIMULATOR
521 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
522 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
523 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
524 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
525 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
526 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
527 target/arm/s3c2440/gigabeat-fx/lcd-as-meg-fx.S
528 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
529 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
530 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
531 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
532 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
533 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
534 target/arm/s3c2440/gigabeat-fx/dma_start.c
535 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
536 target/arm/s3c2440/gigabeat-fx/mmu-meg-fx.c
537 #ifndef BOOTLOADER
538 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
539 #endif
540 #endif /* SIMULATOR */
541 #endif /* GIGABEAT_F */
543 #ifdef ELIO_TPJ1022
544 #ifndef SIMULATOR
545 target/arm/ata-as-arm.S
546 target/arm/ata-pp5020.c
547 target/arm/wmcodec-pp.c
548 target/arm/i2s-pp.c
549 target/arm/tatung/tpj1022/adc-tpj1022.c
550 target/arm/tatung/tpj1022/backlight-tpj1022.c
551 target/arm/tatung/tpj1022/button-tpj1022.c
552 target/arm/tatung/tpj1022/lcd-tpj1022.c
553 target/arm/tatung/tpj1022/power-tpj1022.c
554 target/arm/usb-fw-pp502x.c
555 #endif /* SIMULATOR */
556 #endif /* ELIO_TPJ1022 */
558 #ifdef IPOD_4G
559 #ifndef SIMULATOR
560 drivers/pcf50605.c
561 target/arm/wmcodec-pp.c
562 target/arm/i2s-pp.c
563 target/arm/ata-as-arm.S
564 target/arm/ata-pp5020.c
565 target/arm/ipod/adc-ipod-pcf.c
566 target/arm/ipod/backlight-4g_color.c
567 target/arm/ipod/button-clickwheel.c
568 target/arm/ipod/lcd-gray.c
569 target/arm/ipod/power-ipod.c
570 target/arm/usb-fw-pp502x.c
571 #endif /* SIMULATOR */
572 #endif /* IPOD_4G */
574 #ifdef IPOD_COLOR
575 #ifndef SIMULATOR
576 drivers/pcf50605.c
577 target/arm/ata-as-arm.S
578 target/arm/ata-pp5020.c
579 target/arm/wmcodec-pp.c
580 target/arm/i2s-pp.c
581 target/arm/ipod/adc-ipod-pcf.c
582 target/arm/ipod/backlight-4g_color.c
583 target/arm/ipod/button-clickwheel.c
584 target/arm/ipod/lcd-color_nano.c
585 target/arm/ipod/power-ipod.c
586 target/arm/usb-fw-pp502x.c
587 #endif /* SIMULATOR */
588 #endif /* IPOD_COLOR */
590 #ifdef IPOD_NANO
591 #ifndef SIMULATOR
592 drivers/pcf50605.c
593 target/arm/ata-as-arm.S
594 target/arm/ata-pp5020.c
595 target/arm/wmcodec-pp.c
596 target/arm/i2s-pp.c
597 target/arm/ipod/adc-ipod-pcf.c
598 target/arm/ipod/backlight-nano_video.c
599 target/arm/ipod/button-clickwheel.c
600 target/arm/ipod/lcd-color_nano.c
601 target/arm/ipod/power-ipod.c
602 target/arm/usb-fw-pp502x.c
603 #endif /* SIMULATOR */
604 #endif /* IPOD_NANO */
606 #ifdef IPOD_VIDEO
607 #ifndef SIMULATOR
608 drivers/pcf50605.c
609 target/arm/ata-as-arm.S
610 target/arm/ata-pp5020.c
611 target/arm/wmcodec-pp.c
612 target/arm/i2s-pp.c
613 target/arm/ipod/adc-ipod-pcf.c
614 target/arm/ipod/backlight-nano_video.c
615 target/arm/ipod/button-clickwheel.c
616 target/arm/ipod/power-ipod.c
617 target/arm/ipod/video/lcd-video.c
618 target/arm/usb-fw-pp502x.c
619 #endif /* SIMULATOR */
620 #endif /* IPOD_VIDEO */
622 #ifdef IPOD_3G
623 #ifndef SIMULATOR
624 drivers/pcf50605.c
625 target/arm/ata-pp5002.c
626 target/arm/wmcodec-pp.c
627 target/arm/i2s-pp.c
628 target/arm/ipod/adc-ipod-pcf.c
629 target/arm/ipod/3g/backlight-3g.c
630 target/arm/ipod/button-1g-3g.c
631 target/arm/ipod/lcd-gray.c
632 target/arm/ipod/power-ipod.c
633 target/arm/usb-fw-pp5002.c
634 #endif /* SIMULATOR */
635 #endif /* IPOD_3G */
637 #ifdef IPOD_1G2G
638 #ifndef SIMULATOR
639 target/arm/ata-pp5002.c
640 target/arm/wmcodec-pp.c
641 target/arm/i2s-pp.c
642 target/arm/ipod/1g2g/adc-ipod-1g2g.c
643 target/arm/ipod/1g2g/backlight-1g2g.c
644 target/arm/ipod/button-1g-3g.c
645 target/arm/ipod/lcd-gray.c
646 target/arm/ipod/power-ipod.c
647 target/arm/usb-fw-pp5002.c
648 #endif /* SIMULATOR */
649 #endif /* IPOD_1G2G */
651 #ifdef IPOD_MINI
652 #ifndef SIMULATOR
653 drivers/pcf50605.c
654 target/arm/ata-as-arm.S
655 target/arm/ata-pp5020.c
656 target/arm/wmcodec-pp.c
657 target/arm/i2s-pp.c
658 target/arm/ipod/adc-ipod-pcf.c
659 target/arm/ipod/backlight-mini1g_mini2g.c
660 target/arm/ipod/button-mini1g.c
661 target/arm/ipod/lcd-gray.c
662 target/arm/ipod/power-ipod.c
663 target/arm/usb-fw-pp502x.c
664 #endif /* SIMULATOR */
665 #endif /* IPOD_MINI */
667 #ifdef IPOD_MINI2G
668 #ifndef SIMULATOR
669 drivers/pcf50605.c
670 target/arm/ata-as-arm.S
671 target/arm/ata-pp5020.c
672 target/arm/wmcodec-pp.c
673 target/arm/i2s-pp.c
674 target/arm/ipod/adc-ipod-pcf.c
675 target/arm/ipod/backlight-mini1g_mini2g.c
676 target/arm/ipod/button-clickwheel.c
677 target/arm/ipod/lcd-gray.c
678 target/arm/ipod/power-ipod.c
679 target/arm/usb-fw-pp502x.c
680 #endif /* SIMULATOR */
681 #endif /* IPOD_MINI2G */
683 #ifdef IRIVER_IFP7XX
684 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
685 #ifndef SIMULATOR
686 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
687 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
688 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
689 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
690 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c
691 #endif
692 #endif