FS#6948 - Fix the broken 'follow playlist' feature
[Rockbox.git] / firmware / SOURCES
blob9ec97c191e62c040a6843a37665b3879f7fe63cf
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 hwcompat.c
16 kernel.c
17 rolo.c
18 thread.c
19 timer.c
20 #endif /* SIMULATOR */
21 #if !defined(WIN32) || defined(SDL)
22 panic.c
23 debug.c
24 #endif /* !defined(WIN32) || defined(SDL) */
26 /* Common */
27 common/atoi.c
28 common/crc32.c
29 common/ctype.c
30 #ifndef SIMULATOR
31 common/dir.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 #ifdef HAVE_LCD_CHARCELLS
62 drivers/lcd-charcell.c
63 drivers/lcd-charset-player.c
64 #endif /* HAVE_LCD_CHARCELLS */
66 #ifdef HAVE_LCD_BITMAP
67 arabjoin.c
68 bidi.c
69 font_cache.c
70 font.c
71 hangul.c
72 lru.c
73 #if LCD_DEPTH == 1
74 drivers/lcd-1bit-vert.c
75 #elif LCD_DEPTH == 2
76 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
77 drivers/lcd-2bit-horz.c
78 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
79 drivers/lcd-2bit-vert.c
80 #endif /* LCD_PIXELFORMAT */
81 #elif LCD_DEPTH == 16
82 drivers/lcd-16bit.c
83 #endif /* LCD_DEPTH */
84 #endif /* HAVE_LCD_BITMAP */
86 #ifdef HAVE_REMOTE_LCD
87 #if LCD_REMOTE_DEPTH == 1
88 drivers/lcd-remote-1bit-v.c
89 #elif LCD_REMOTE_DEPTH == 2
90 drivers/lcd-remote-2bit-vi.c
91 #endif /* LCD_REMOTE_DEPTH */
92 #endif /* HAVE_REMOTE_LCD */
94 /* Misc. */
95 drivers/led.c
96 #ifndef TARGET_TREE
97 drivers/adc.c
98 drivers/power.c
99 #endif /* TARGET_TREE */
100 #ifndef SIMULATOR
101 drivers/button.c
102 drivers/dac.c
103 drivers/serial.c
104 #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 #ifndef SANSA_E200
115 drivers/ata.c
116 #endif /* SANSA_E200 */
117 #endif /* HAVE_FLASH_DISK */
118 #endif /* HAVE_MMC */
119 drivers/fat.c
120 #endif /* SIMULATOR */
122 /* EEPROM */
123 #ifdef HAVE_EEPROM
124 drivers/eeprom_24cxx.c
125 #ifdef HAVE_EEPROM_SETTINGS
126 eeprom_settings.c
127 #endif /* HAVE_EEPROM_SETTINGS */
128 #endif /* HAVE_EEPROM */
130 /* RTC */
131 #ifndef SIMULATOR
132 #if (CONFIG_RTC == RTC_M41ST84W)
133 drivers/rtc/rtc_m41st84w.c
134 #elif (CONFIG_RTC == RTC_PCF50606)
135 drivers/rtc/rtc_pcf50606.c
136 #elif (CONFIG_RTC == RTC_PCF50605)
137 drivers/rtc/rtc_pcf50605.c
138 #elif (CONFIG_RTC == RTC_E8564)
139 drivers/rtc/rtc_e8564.c
140 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
141 drivers/rtc/rtc_ds1339_ds3231.c
142 #elif (CONFIG_RTC == RTC_S3C2440)
143 drivers/rtc/rtc_s3c2440.c
144 #elif (CONFIG_RTC == RTC_AS3514)
145 drivers/rtc/rtc_as3514.c
146 #endif /* (CONFIG_RTC == RTC_) */
147 #endif /* SIMULATOR */
149 /* Tuner */
150 #if CONFIG_TUNER
151 #ifndef SIMULATOR
152 #if (CONFIG_TUNER & S1A0903X01)
153 drivers/fmradio.c
154 tuner_samsung.c
155 #endif /* (CONFIG_TUNER & S1A0903X01) */
156 #if (CONFIG_TUNER & TEA5767)
157 drivers/fmradio_i2c.c
158 tuner_philips.c
159 #endif /* (CONFIG_TUNER & TEA5767) */
160 #endif /*SIMULATOR */
161 #endif /* CONFIG_TUNER */
163 /* Sound */
164 #if CONFIG_CODEC != SWCODEC
165 mp3_playback.c
166 #endif /* CONFIG_CODEC != SWCODEC */
167 mp3data.c
168 sound.c
170 #if CONFIG_CODEC == SWCODEC
172 #ifndef BOOTLOADER
173 general.c
174 pcm_sampr.c
175 replaygain.c
176 #ifndef SIMULATOR
177 pcm_playback.c
178 #endif /* SIMULATOR */
179 #ifdef HAVE_RECORDING
180 enc_base.c
181 #ifndef SIMULATOR
182 pcm_record.c
183 #endif /* SIMULATOR */
184 #endif /* HAVE_RECORDING */
185 #endif /* BOOTLOADER */
187 #else  /* !SWCODEC */
189 #ifndef BOOTLOADER
190 mpeg.c
191 #ifndef SIMULATOR
192 drivers/mas.c
193 #endif /* SIMULATOR */
194 #endif /* BOOTLOADER */
196 #endif /* SWCODEC */
198 /* Audio codec */
199 #ifndef SIMULATOR
200 #if defined(HAVE_UDA1380)
201 drivers/uda1380.c
202 #elif defined(HAVE_WM8975) || defined(HAVE_WM8751)
203 drivers/wm8975.c
204 #elif defined(HAVE_WM8758)
205 drivers/wm8758.c
206 #elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
207 drivers/wm8731l.c
208 #elif defined(HAVE_AS3514)
209 drivers/as3514.c
210 #elif defined(HAVE_TLV320)
211 drivers/tlv320.c
212 #endif /* defined(HAVE_*) */
213 #endif /* SIMULATOR */
215 /* USBOTG */
216 #if !defined(SIMULATOR)
217 #if CONFIG_USBOTG == USBOTG_ISP1362
218 drivers/isp1362.c
219 #endif
220 #if defined(SANSA_E200) || !defined(BOOTLOADER)
221 #if CONFIG_USBOTG == USBOTG_M5636
222 drivers/m5636.c
223 #elif CONFIG_USBOTG == USBOTG_ARC
224 drivers/arcotg_udc.c
225 #endif /* CONFIG_USBOTG */
226 #endif /* !defined(BOOTLOADER) */
227 #endif /* !defined(SIMULATOR) */
229 /* CPU Specific - By class then particular chip if applicable */
230 #if defined(CPU_SH)
232 #ifndef SIMULATOR
233 bitswap.S
234 descramble.S
235 drivers/i2c.c
236 target/sh/crt0.S
237 target/sh/memcpy-sh.S
238 target/sh/memmove-sh.S
239 target/sh/memset-sh.S
240 target/sh/strlen-sh.S
241 #endif /* SIMULATOR */
243 #elif defined(CPU_COLDFIRE)
245 common/strlen.c
246 #ifndef SIMULATOR
247 target/coldfire/crt0.S
248 target/coldfire/memcpy-coldfire.S
249 target/coldfire/memmove-coldfire.S
250 target/coldfire/memset-coldfire.S
251 target/coldfire/memswap128-coldfire.S
252 #if defined(HAVE_LCD_COLOR) \
253  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
254 target/coldfire/memset16-coldfire.S
255 #endif
256 target/coldfire/system-coldfire.c
257 #ifndef BOOTLOADER
258 target/coldfire/pcm-coldfire.c
259 #endif /* BOOTLOADER */
260 #if CONFIG_I2C == I2C_COLDFIRE
261 target/coldfire/i2c-coldfire.c
262 #endif /* CONFIG_I2C == I2C_COLDFIRE */
263 #endif /* SIMULATOR */
265 #elif defined(CPU_PP) || defined(CPU_ARM)
266 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
267 target/arm/memcpy-arm.S
268 target/arm/memmove-arm.S
269 common/strlen.c
270 #ifndef SIMULATOR
271 target/arm/memset-arm.S
272 target/arm/memset16-arm.S
273 target/arm/memswap128-arm.S
274 #if CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
275 target/arm/i2c-pp.c
276 #elif CONFIG_I2C == I2C_PNX0101
277 drivers/i2c-pnx0101.c
278 #elif CONFIG_I2C == I2C_S3C2440
279 /* no i2c driver yet */
280 #endif
281 #if CONFIG_CPU == PNX0101
282 target/arm/system-pnx0101.c
283 #endif
284 #if defined(CPU_PP)
285 #ifdef BOOTLOADER
286 target/arm/crt0-pp-bl.S
287 #else
288 target/arm/pcm-pp.c
289 target/arm/audio-pp.c
290 target/arm/crt0-pp.S
291 #endif
292 #elif CONFIG_CPU == PNX0101
293 target/arm/crt0-pnx0101.S
294 #elif defined(CPU_ARM)
295 target/arm/crt0.S
296 #endif /* defined(CPU_*) */
297 #endif /* SIMULATOR */
299 #else
301 common/memcpy.c
302 common/memmove.c
303 common/memset.c
304 common/memset16.c
305 common/memswap128.c
306 common/strlen.c
307 #ifndef SIMULATOR
308 crt0.S
309 drivers/i2c.c
310 #endif /* SIMULATOR */
312 #endif /* defined(CPU_*) */
314 #ifdef ARCHOS_PLAYER
315 #ifndef SIMULATOR
316 target/sh/archos/ata-archos.c
317 target/sh/archos/ata-as-archos.S
318 target/sh/archos/player/button-player.c
319 target/sh/archos/player/lcd-as-player.S
320 target/sh/archos/player/lcd-player.c
321 #endif /* SIMULATOR */
322 #endif /* ARCHOS_PLAYER */
324 #ifdef ARCHOS_RECORDER
325 #ifndef SIMULATOR
326 target/sh/archos/ata-archos.c
327 target/sh/archos/ata-as-archos.S
328 target/sh/archos/lcd-archos-bitmap.c
329 target/sh/archos/lcd-as-archos-bitmap.S
330 target/sh/archos/recorder/button-recorder.c
331 #endif /* SIMULATOR */
332 #endif /* ARCHOS_RECORDER */
334 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
335 #ifndef SIMULATOR
336 target/sh/archos/ata-archos.c
337 target/sh/archos/ata-as-archos.S
338 target/sh/archos/lcd-archos-bitmap.c
339 target/sh/archos/lcd-as-archos-bitmap.S
340 target/sh/archos/fm_v2/button-fm_v2.c
341 #endif /* SIMULATOR */
342 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
344 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
345 #ifndef SIMULATOR
346 target/sh/archos/lcd-archos-bitmap.c
347 target/sh/archos/lcd-as-archos-bitmap.S
348 target/sh/archos/ondio/button-ondio.c
349 #endif /* SIMULATOR */
350 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
352 #ifdef SANSA_E200
353 #ifndef SIMULATOR
354 target/arm/sandisk/sansa-e200/ata-e200.c
355 target/arm/sandisk/sansa-e200/lcd-e200.c
356 target/arm/sandisk/sansa-e200/adc-e200.c
357 target/arm/sandisk/sansa-e200/backlight-e200.c
358 target/arm/usb-pp.c
359 target/arm/sandisk/sansa-e200/button-e200.c
360 target/arm/sandisk/sansa-e200/power-e200.c
361 target/arm/i2s-pp.c
362 #endif /* SIMULATOR */
363 #endif /* SANSA_E200 */
365 #ifdef IAUDIO_X5
366 target/coldfire/iaudio/x5/power-x5.c
367 #ifndef SIMULATOR
368 target/coldfire/ata-as-coldfire.S
369 target/coldfire/pcf50606-coldfire.c
370 target/coldfire/iaudio/adc-iaudio.c
371 target/coldfire/iaudio/ata-iaudio.c
372 target/coldfire/iaudio/lcd-remote-iaudio.c
373 target/coldfire/iaudio/pcf50606-iaudio.c
374 target/coldfire/iaudio/system-iaudio.c
375 target/coldfire/iaudio/usb-iaudio.c
376 target/coldfire/iaudio/x5/backlight-x5.c
377 target/coldfire/iaudio/x5/button-x5.c
378 target/coldfire/iaudio/x5/ds2411-x5.c
379 target/coldfire/iaudio/x5/lcd-as-x5.S
380 target/coldfire/iaudio/x5/lcd-x5.c
381 target/coldfire/iaudio/x5/m5636-x5.c
382 #ifndef BOOTLOADER
383 target/coldfire/iaudio/x5/audio-x5.c
384 #endif
385 #endif /* SIMULATOR */
386 #endif /* IAUDIO_X5 */
388 #ifdef IAUDIO_M5
389 target/coldfire/iaudio/m5/power-m5.c
390 #ifndef SIMULATOR
391 target/coldfire/ata-as-coldfire.S
392 target/coldfire/pcf50606-coldfire.c
393 target/coldfire/iaudio/adc-iaudio.c
394 target/coldfire/iaudio/ata-iaudio.c
395 target/coldfire/iaudio/lcd-remote-iaudio.c
396 target/coldfire/iaudio/m5/backlight-m5.c
397 target/coldfire/iaudio/m5/button-m5.c
398 target/coldfire/iaudio/m5/lcd-as-m5.S
399 target/coldfire/iaudio/m5/lcd-m5.c
400 target/coldfire/iaudio/pcf50606-iaudio.c
401 target/coldfire/iaudio/system-iaudio.c
402 target/coldfire/iaudio/usb-iaudio.c
403 #ifndef BOOTLOADER
404 target/coldfire/iaudio/m5/audio-m5.c
405 #endif
406 #endif /* SIMULATOR */
407 #endif /* IAUDIO_M5 */
409 #ifdef IRIVER_IFP7XX_SERIES
410 #ifdef STUB
411 usb_serial.c
412 common/sscanf.c
413 #endif /* STUB */
414 #endif /* IRIVER_IFP7XX_SERIES */
416 #ifdef IRIVER_H300_SERIES
417 target/coldfire/iriver/h300/power-h300.c
418 #ifndef SIMULATOR
419 target/coldfire/ata-as-coldfire.S
420 target/coldfire/pcf50606-coldfire.c
421 target/coldfire/iriver/ata-iriver.c
422 target/coldfire/iriver/lcd-remote-iriver.c
423 target/coldfire/iriver/system-iriver.c
424 target/coldfire/iriver/h300/sw_i2c-h300.c
425 target/coldfire/iriver/h300/adc-h300.c
426 target/coldfire/iriver/h300/backlight-h300.c
427 target/coldfire/iriver/h300/button-h300.c
428 target/coldfire/iriver/h300/pcf50606-h300.c
429 target/coldfire/iriver/h300/lcd-as-h300.S
430 target/coldfire/iriver/h300/lcd-h300.c
431 target/coldfire/iriver/h300/usb-h300.c
432 #ifndef BOOTLOADER
433 target/coldfire/iriver/audio-iriver.c
434 #endif
435 #endif /* SIMULATOR */
436 #endif /* IRIVER_H300_SERIES */
438 #ifdef IRIVER_H100_SERIES
439 target/coldfire/iriver/h100/power-h100.c
440 #ifndef SIMULATOR
441 target/coldfire/ata-as-coldfire.S
442 target/coldfire/iriver/ata-iriver.c
443 target/coldfire/iriver/lcd-remote-iriver.c
444 target/coldfire/iriver/system-iriver.c
445 target/coldfire/iriver/h100/sw_i2c-h100.c
446 target/coldfire/iriver/h100/adc-h100.c
447 target/coldfire/iriver/h100/backlight-h100.c
448 target/coldfire/iriver/h100/button-h100.c
449 target/coldfire/iriver/h100/lcd-as-h100.S
450 target/coldfire/iriver/h100/lcd-h100.c
451 #ifndef BOOTLOADER
452 target/coldfire/iriver/audio-iriver.c
453 target/coldfire/iriver/h100/spdif-h100.c
454 #endif
455 target/coldfire/iriver/h100/usb-h100.c
456 #endif /* SIMULATOR */
457 #endif /* IRIVER_H100_SERIES */
459 #ifdef IRIVER_H10
460 #ifndef SIMULATOR
461 target/arm/ata-as-arm.S
462 target/arm/ata-pp5020.c
463 target/arm/wmcodec-pp.c
464 target/arm/i2s-pp.c
465 target/arm/iriver/h10/adc-h10.c
466 target/arm/iriver/h10/backlight-h10.c
467 target/arm/iriver/h10/button-h10.c
468 target/arm/iriver/h10/lcd-h10_20gb.c
469 target/arm/iriver/h10/power-h10.c
470 target/arm/usb-pp.c
471 #endif /* SIMULATOR */
472 #endif /* IRIVER_H10 */
474 #ifdef IRIVER_H10_5GB
475 #ifndef SIMULATOR
476 target/arm/ata-as-arm.S
477 target/arm/ata-pp5020.c
478 target/arm/wmcodec-pp.c
479 target/arm/i2s-pp.c
480 target/arm/iriver/h10/adc-h10.c
481 target/arm/iriver/h10/backlight-h10.c
482 target/arm/iriver/h10/button-h10.c
483 target/arm/iriver/h10/lcd-h10_5gb.c
484 target/arm/iriver/h10/power-h10.c
485 target/arm/usb-pp.c
486 #endif /* SIMULATOR */
487 #endif /* IRIVER_H10_5GB */
489 #ifdef GIGABEAT_F
490 #ifndef SIMULATOR
491 drivers/generic_i2c.c
492 target/arm/gigabeat/meg-fx/adc-meg-fx.c
493 target/arm/gigabeat/meg-fx/ata-meg-fx.c
494 target/arm/gigabeat/meg-fx/backlight-meg-fx.c
495 target/arm/gigabeat/meg-fx/button-meg-fx.c
496 target/arm/gigabeat/meg-fx/i2c-meg-fx.c
497 target/arm/gigabeat/meg-fx/lcd-meg-fx.c
498 target/arm/gigabeat/meg-fx/power-meg-fx.c
499 target/arm/gigabeat/meg-fx/sc606-meg-fx.c
500 target/arm/gigabeat/meg-fx/usb-meg-fx.c
501 target/arm/gigabeat/meg-fx/wmcodec-meg-fx.c
502 target/arm/gigabeat/meg-fx/dma_start.c
503 target/arm/gigabeat/meg-fx/system-meg-fx.c
504 target/arm/gigabeat/meg-fx/mmu-meg-fx.c
505 #ifndef BOOTLOADER
506 target/arm/gigabeat/meg-fx/pcm-meg-fx.c
507 #endif
508 #endif /* SIMULATOR */
509 #endif /* GIGABEAT_F */
511 #ifdef ELIO_TPJ1022
512 #ifndef SIMULATOR
513 target/arm/ata-as-arm.S
514 target/arm/ata-pp5020.c
515 target/arm/wmcodec-pp.c
516 target/arm/i2s-pp.c
517 target/arm/tatung/tpj1022/adc-tpj1022.c
518 target/arm/tatung/tpj1022/backlight-tpj1022.c
519 target/arm/tatung/tpj1022/button-tpj1022.c
520 target/arm/tatung/tpj1022/lcd-tpj1022.c
521 target/arm/tatung/tpj1022/power-tpj1022.c
522 target/arm/usb-pp.c
523 #endif /* SIMULATOR */
524 #endif /* ELIO_TPJ1022 */
526 #ifdef IPOD_4G
527 #ifndef SIMULATOR
528 drivers/pcf50605.c
529 target/arm/wmcodec-pp.c
530 target/arm/i2s-pp.c
531 target/arm/ata-as-arm.S
532 target/arm/ata-pp5020.c
533 target/arm/ipod/adc-ipod.c
534 target/arm/ipod/backlight-4g_color.c
535 target/arm/ipod/button-clickwheel.c
536 target/arm/ipod/lcd-gray.c
537 target/arm/ipod/power-ipod.c
538 target/arm/usb-pp.c
539 #endif /* SIMULATOR */
540 #endif /* IPOD_4G */
542 #ifdef IPOD_COLOR
543 #ifndef SIMULATOR
544 drivers/pcf50605.c
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/ipod/adc-ipod.c
550 target/arm/ipod/backlight-4g_color.c
551 target/arm/ipod/button-clickwheel.c
552 target/arm/ipod/lcd-color_nano.c
553 target/arm/ipod/power-ipod.c
554 target/arm/usb-pp.c
555 #endif /* SIMULATOR */
556 #endif /* IPOD_COLOR */
558 #ifdef IPOD_NANO
559 #ifndef SIMULATOR
560 drivers/pcf50605.c
561 target/arm/ata-as-arm.S
562 target/arm/ata-pp5020.c
563 target/arm/wmcodec-pp.c
564 target/arm/i2s-pp.c
565 target/arm/ipod/adc-ipod.c
566 target/arm/ipod/backlight-nano_video.c
567 target/arm/ipod/button-clickwheel.c
568 target/arm/ipod/lcd-color_nano.c
569 target/arm/ipod/power-ipod.c
570 target/arm/usb-pp.c
571 #endif /* SIMULATOR */
572 #endif /* IPOD_NANO */
574 #ifdef IPOD_VIDEO
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.c
582 target/arm/ipod/backlight-nano_video.c
583 target/arm/ipod/button-clickwheel.c
584 target/arm/ipod/power-ipod.c
585 target/arm/ipod/video/lcd-video.c
586 target/arm/usb-pp.c
587 #endif /* SIMULATOR */
588 #endif /* IPOD_VIDEO */
590 #ifdef IPOD_3G
591 #ifndef SIMULATOR
592 drivers/pcf50605.c
593 target/arm/ata-pp5002.c
594 target/arm/wmcodec-pp.c
595 target/arm/i2s-pp.c
596 target/arm/ipod/adc-ipod.c
597 target/arm/ipod/3g/backlight-3g.c
598 target/arm/ipod/3g/button-3g.c
599 target/arm/ipod/lcd-gray.c
600 target/arm/ipod/power-ipod.c
601 target/arm/usb-pp.c
602 #endif /* SIMULATOR */
603 #endif /* IPOD_3G */
605 #ifdef IPOD_MINI
606 #ifndef SIMULATOR
607 drivers/pcf50605.c
608 target/arm/ata-as-arm.S
609 target/arm/ata-pp5020.c
610 target/arm/wmcodec-pp.c
611 target/arm/i2s-pp.c
612 target/arm/ipod/adc-ipod.c
613 target/arm/ipod/backlight-mini1g_mini2g.c
614 target/arm/ipod/button-mini1g.c
615 target/arm/ipod/lcd-gray.c
616 target/arm/ipod/power-ipod.c
617 target/arm/usb-pp.c
618 #endif /* SIMULATOR */
619 #endif /* IPOD_MINI */
621 #ifdef IPOD_MINI2G
622 #ifndef SIMULATOR
623 drivers/pcf50605.c
624 target/arm/ata-as-arm.S
625 target/arm/ata-pp5020.c
626 target/arm/wmcodec-pp.c
627 target/arm/i2s-pp.c
628 target/arm/ipod/adc-ipod.c
629 target/arm/ipod/backlight-mini1g_mini2g.c
630 target/arm/ipod/button-clickwheel.c
631 target/arm/ipod/lcd-gray.c
632 target/arm/ipod/power-ipod.c
633 target/arm/usb-pp.c
634 #endif /* SIMULATOR */
635 #endif /* IPOD_MINI2G */
637 #ifdef IRIVER_IFP7XX
638 target/arm/iriver/ifp7xx/power-ifp7xx.c
639 #ifndef SIMULATOR
640 target/arm/iriver/ifp7xx/adc-ifp7xx.c
641 target/arm/iriver/ifp7xx/backlight-ifp7xx.c
642 target/arm/iriver/ifp7xx/button-ifp7xx.c
643 target/arm/iriver/ifp7xx/lcd-ifp7xx.c
644 target/arm/iriver/ifp7xx/usb-ifp7xx.c
645 #endif
646 #endif