rbutil: Change layout to RTL if Hebrew language is used
[kugel-rb.git] / firmware / SOURCES
blobe31231c9ec2ed1ccd10e4fd364a2a104da701244
1 ata_idle_notify.c
2 events.c
3 backlight.c
4 buffer.c
5 general.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/strnatcmp.c
53 common/strcpy.c
54 common/strncmp.c
55 common/strlcpy.c
56 common/strrchr.c
57 common/strtok.c
58 common/strstr.c
59 common/structec.c
60 common/timefuncs.c
61 common/unicode.c
63 /* Display */
64 scroll_engine.c
66 #ifdef HAVE_LCD_CHARCELLS
67 drivers/lcd-charcell.c
68 drivers/lcd-charset-player.c
69 #endif /* HAVE_LCD_CHARCELLS */
71 #ifdef HAVE_LCD_BITMAP
72 arabjoin.c
73 bidi.c
74 font_cache.c
75 font.c
76 hangul.c
77 lru.c
78 #ifndef BOOTLOADER
79 screendump.c
80 #endif
81 #if LCD_DEPTH == 1
82 drivers/lcd-1bit-vert.c
83 #elif LCD_DEPTH == 2
84 #if LCD_PIXELFORMAT == HORIZONTAL_PACKING
85 drivers/lcd-2bit-horz.c
86 #elif LCD_PIXELFORMAT == VERTICAL_PACKING
87 drivers/lcd-2bit-vert.c
88 #elif LCD_PIXELFORMAT == VERTICAL_INTERLEAVED
89 drivers/lcd-2bit-vi.c
90 #endif /* LCD_PIXELFORMAT */
91 #elif LCD_DEPTH == 16
92 #if   defined(LCD_STRIDEFORMAT) && LCD_STRIDEFORMAT == VERTICAL_STRIDE
93 drivers/lcd-16bit-vert.c
94 #else
95 drivers/lcd-16bit.c
96 #endif
97 #endif /* LCD_DEPTH */
98 #endif /* HAVE_LCD_BITMAP */
100 #ifdef HAVE_REMOTE_LCD
101 #if LCD_REMOTE_DEPTH == 1
102 drivers/lcd-remote-1bit-v.c
103 #elif LCD_REMOTE_DEPTH == 2
104 drivers/lcd-remote-2bit-vi.c
105 #endif /* LCD_REMOTE_DEPTH */
106 #endif /* HAVE_REMOTE_LCD */
108 #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_SETTING) \
109     || (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_SW_HW_REG)
110 backlight-sw-fading.c
111 #endif /* CONFIG_BACKLIGHT_FADING */
113 /* Misc. */
114 drivers/led.c
115 drivers/button.c
116 #ifndef SIMULATOR
117 #ifdef HAVE_DAC3550A
118 drivers/dac.c
119 #endif
120 #ifdef HAVE_SERIAL
121 drivers/serial.c
122 #endif
123 #endif /* SIMULATOR */
124 #ifdef HAVE_TOUCHSCREEN
125 drivers/touchscreen.c
126 #endif
129 /* Storage */
130 #ifndef SIMULATOR
131 #if (CONFIG_STORAGE & STORAGE_MMC)
132 drivers/ata_mmc.c
133 #endif
134 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
135 drivers/ata_flash.c
136 #endif
137 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
138 target/arm/ata-nand-telechips.c
139 #endif
140 #if (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
141 target/arm/s5l8700/ata-nand-s5l8700.c
142 #endif
143 #if (CONFIG_STORAGE & STORAGE_ATA)
144 drivers/ata.c
145 #endif
146 #if (CONFIG_STORAGE & STORAGE_SD)
147 drivers/sd.c
148 #endif
149 #if (CONFIG_STORAGE & STORAGE_RAMDISK)
150 drivers/ramdisk.c
151 #endif
152 #ifdef CONFIG_STORAGE_MULTI
153 storage.c
154 #endif
155 drivers/fat.c
156 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
157 hotswap.c
158 #endif
159 #endif /* SIMULATOR */
161 /* EEPROM */
162 #ifdef HAVE_EEPROM
163 drivers/eeprom_24cxx.c
164 #ifdef HAVE_EEPROM_SETTINGS
165 eeprom_settings.c
166 #endif /* HAVE_EEPROM_SETTINGS */
167 #endif /* HAVE_EEPROM */
169 /* RTC */
170 #ifndef SIMULATOR
171 #if (CONFIG_RTC == RTC_M41ST84W)
172 drivers/rtc/rtc_m41st84w.c
173 #elif (CONFIG_RTC == RTC_PCF50606)
174 drivers/rtc/rtc_pcf50606.c
175 #elif (CONFIG_RTC == RTC_PCF50605)
176 drivers/rtc/rtc_pcf50605.c
177 #elif (CONFIG_RTC == RTC_E8564)
178 drivers/rtc/rtc_e8564.c
179 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
180 drivers/rtc/rtc_ds1339_ds3231.c
181 #elif (CONFIG_RTC == RTC_S3C2440)
182 drivers/rtc/rtc_s3c2440.c
183 #elif (CONFIG_RTC == RTC_AS3514)
184 drivers/rtc/rtc_as3514.c
185 #elif (CONFIG_RTC == RTC_RX5X348AB)
186 drivers/rtc/rtc_rx5x348ab.c
187 #elif (CONFIG_RTC == RTC_MR100)
188 drivers/rtc/rtc_mr100.c
189 #elif (CONFIG_RTC == RTC_MC13783)
190 drivers/rtc/rtc_mc13783.c
191 #elif (CONFIG_RTC == RTC_TCC77X)
192 drivers/rtc/rtc_tcc77x.c
193 #elif (CONFIG_RTC == RTC_JZ47XX)
194 drivers/rtc/rtc_jz4740.c
195 #elif (CONFIG_RTC == RTC_S35390A)
196 drivers/rtc/rtc_s35390a.c
197 #elif (CONFIG_RTC == RTC_D2)
198 drivers/rtc/rtc_d2.c
199 #endif /* (CONFIG_RTC == RTC_) */
200 #endif /* SIMULATOR */
202 /* Tuner */
203 #if CONFIG_TUNER
204 tuner.c
205 #ifndef SIMULATOR
206 #if (CONFIG_TUNER & LV24020LP)
207 drivers/tuner/lv24020lp.c
208 #endif /* (CONFIG_TUNER & LV24020LP) */
209 #if (CONFIG_TUNER & S1A0903X01)
210 drivers/fmradio.c
211 drivers/tuner/s1a0903x01.c
212 #endif /* (CONFIG_TUNER & S1A0903X01) */
213 #if (CONFIG_TUNER & TEA5760)
214 drivers/tuner/tea5760uk.c
215 #endif
216 #if (CONFIG_TUNER & TEA5767)
217 drivers/tuner/tea5767.c
218 #endif /* (CONFIG_TUNER & TEA5767) */
219 #if (CONFIG_TUNER & SI4700)
220 drivers/tuner/si4700.c
221 #endif /* (CONFIG_TUNER & SI4700) */
222 #endif /*SIMULATOR */
223 #endif /* CONFIG_TUNER */
225 /* Sound */
226 #if CONFIG_CODEC != SWCODEC
227 mp3_playback.c
228 #endif /* CONFIG_CODEC != SWCODEC */
229 sound.c
231 #if CONFIG_CODEC == SWCODEC
233 #ifndef BOOTLOADER
234 pcm_sampr.c
235 pcm.c
236 #ifdef HAVE_RECORDING
237 enc_base.c
238 #endif /* HAVE_RECORDING */
239 #endif /* BOOTLOADER */
241 #else  /* !SWCODEC */
243 #ifndef BOOTLOADER
244 #ifndef SIMULATOR
245 drivers/mas.c
246 #endif /* SIMULATOR */
247 #endif /* BOOTLOADER */
249 #endif /* SWCODEC */
251 /* Audio codec */
252 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
253 #if defined(HAVE_UDA1380)
254 drivers/audio/uda1380.c
255 #elif defined(HAVE_WM8751)
256 drivers/audio/wm8751.c
257 #elif defined(HAVE_WM8978)
258 drivers/audio/wm8978.c
259 #elif defined(HAVE_WM8975)
260 drivers/audio/wm8975.c
261 #elif defined(HAVE_WM8985)
262 drivers/audio/wm8985.c
263 #elif defined(HAVE_WM8758)
264 drivers/audio/wm8758.c
265 #elif defined(HAVE_WM8711) \
266    || defined(HAVE_WM8721) \
267    || defined(HAVE_WM8731)
268 drivers/audio/wm8731.c
269 #elif defined(HAVE_AS3514)
270 drivers/audio/as3514.c
271 #elif defined(HAVE_TLV320)
272 drivers/audio/tlv320.c
273 #elif defined(HAVE_MAS35XX)
274 drivers/audio/mas35xx.c
275 #elif defined(HAVE_AK4537)
276 drivers/audio/ak4537.c
277 #endif /* defined(HAVE_*) */
278 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
280 /* USB Stack */
281 #if !defined(SIMULATOR)
282 #ifdef HAVE_USBSTACK
283 usbstack/usb_core.c
284 #ifdef USB_ENABLE_STORAGE
285 usbstack/usb_storage.c
286 #endif
287 #ifdef USB_ENABLE_SERIAL
288 usbstack/usb_serial.c
289 #endif
290 #ifdef USB_ENABLE_CHARGING_ONLY
291 usbstack/usb_charging_only.c
292 #endif
293 #ifdef USB_ENABLE_HID
294 usbstack/usb_hid.c
295 #endif
296 #if CONFIG_USBOTG == USBOTG_M66591
297 drivers/m66591.c
298 #elif CONFIG_USBOTG == USBOTG_ARC
299 target/arm/usb-drv-arc.c
300 #elif CONFIG_USBOTG == USBOTG_AS3525
301 target/arm/as3525/usb-drv-as3525.c
302 #elif CONFIG_USBOTG == USBOTG_ISP1583
303 drivers/isp1583.c
304 #endif
305 #else /* !defined(HAVE_USBSTACK) */
306 #if CONFIG_USBOTG == USBOTG_ISP1362      
307 drivers/isp1362.c
308 #elif CONFIG_USBOTG == USBOTG_M5636      
309 drivers/m5636.c
310 #endif
311 #endif /* !defined(HAVE_USBSTACK) */
312 #endif /* !defined(SIMULATOR) */
314 /* Other Random Hardware */
315 #ifdef HAVE_TSC2100
316 #if !defined(SIMULATOR)
317 drivers/tsc2100.c
318 drivers/audio/tsc2100.c
319 #endif /* !SIMULATOR */
320 #endif
322 /* CPU Specific - By class then particular chip if applicable */
323 #if defined(CPU_SH)
325 #ifndef SIMULATOR
326 drivers/i2c.c
327 target/sh/adc-sh.c
328 target/sh/bitswap.S
329 target/sh/crt0.S
330 target/sh/kernel-sh.c
331 target/sh/memcpy-sh.S
332 target/sh/memmove-sh.S
333 target/sh/memset-sh.S
334 target/sh/strlen-sh.S
335 target/sh/system-sh.c
336 target/sh/archos/descramble.S
337 #endif /* SIMULATOR */
339 #elif defined(CPU_COLDFIRE)
341 #ifndef SIMULATOR
342 target/coldfire/crt0.S
343 #ifdef HAVE_PRIORITY_SCHEDULING
344 common/ffs.c
345 target/coldfire/ffs-coldfire.S
346 #endif
347 target/coldfire/memcpy-coldfire.S
348 target/coldfire/memmove-coldfire.S
349 target/coldfire/memset-coldfire.S
350 target/coldfire/strlen-coldfire.S
351 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
352  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
353 target/coldfire/memset16-coldfire.S
354 #endif
355 target/coldfire/kernel-coldfire.c
356 target/coldfire/system-coldfire.c
357 target/coldfire/timer-coldfire.c
358 #ifndef BOOTLOADER
359 target/coldfire/pcm-coldfire.c
360 #endif /* BOOTLOADER */
361 #if CONFIG_I2C == I2C_COLDFIRE
362 target/coldfire/i2c-coldfire.c
363 #endif /* CONFIG_I2C == I2C_COLDFIRE */
364 #endif /* SIMULATOR */
366 #elif defined(CPU_PP) || defined(CPU_ARM)
367 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
368 target/arm/memcpy-arm.S
369 target/arm/memmove-arm.S
370 common/strlen.c
371 #ifndef SIMULATOR
372 target/arm/memset-arm.S
373 target/arm/memset16-arm.S
374 #ifdef HAVE_PRIORITY_SCHEDULING
375 target/arm/ffs-arm.S
376 #endif
377 target/arm/system-arm.c
378 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
379 target/arm/i2c-pp.c
380 #elif CONFIG_I2C == I2C_PNX0101
381 target/arm/pnx0101/i2c-pnx0101.c
382 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
383 target/arm/i2c-telechips.c
384 #elif CONFIG_I2C == I2C_S3C2440
385 /* no i2c driver yet */
386 #elif CONFIG_I2C == I2C_S5L8700
387 target/arm/s5l8700/i2c-s5l8700.c
388 #endif
390 #if CONFIG_CPU == PNX0101
391 target/arm/pnx0101/kernel-pnx0101.c
392 target/arm/pnx0101/system-pnx0101.c
393 target/arm/pnx0101/timer-pnx0101.c
394 #endif
396 #if CONFIG_CPU == AS3525
397 target/arm/as3525/system-as3525.c
398 target/arm/as3525/kernel-as3525.c
399 target/arm/as3525/timer-as3525.c
400 target/arm/as3525/ata_sd_as3525.c
401 target/arm/as3525/power-as3525.c
402 target/arm/as3525/usb-as3525.c
403 target/arm/as3525/dma-pl081.c
404 target/arm/as3525/ascodec-as3525.c
405 #ifndef BOOTLOADER
406 target/arm/mmu-arm.S
407 drivers/generic_i2c.c
408 target/arm/adc-as3514.c
409 target/arm/as3525/audio-as3525.c
410 target/arm/as3525/debug-as3525.c
411 target/arm/as3525/fmradio-i2c-as3525.c
412 target/arm/as3525/i2s-as3525.c
413 target/arm/as3525/pcm-as3525.c
414 #endif /* BOOTLOADER */
415 #endif /* CONFIG_CPU == AS3525 */
417 #if defined(CPU_PP)
418 target/arm/kernel-pp.c
419 target/arm/timer-pp.c
420 #if CONFIG_CPU == PP5002
421 target/arm/system-pp5002.c
422 #elif defined CPU_PP502x
423 target/arm/system-pp502x.c
424 #endif
425 #ifdef BOOTLOADER
426 target/arm/crt0-pp-bl.S
427 #else
428 target/arm/pcm-pp.c
429 #if !defined(SANSA_E200) && !defined(SANSA_C200)
430 target/arm/audio-pp.c
431 #endif /* SANSA_E200 */
432 target/arm/crt0-pp.S
433 #endif
434 #elif CONFIG_CPU == PNX0101
435 target/arm/pnx0101/crt0-pnx0101.S
436 #elif CONFIG_CPU==DM320
437 target/arm/tms320dm320/crt0.S
438 #elif CONFIG_CPU==S3C2440
439 target/arm/s3c2440/crt0.S
440 #elif defined(CPU_TCC77X)
441 target/arm/tcc77x/crt0.S
442 #elif defined(CPU_TCC780X)
443 target/arm/tcc780x/crt0.S
444 #elif CONFIG_CPU==IMX31L
445 target/arm/imx31/crt0.S
446 #elif defined(CPU_S5L870X)
447 target/arm/s5l8700/crt0.S
448 #elif defined(CPU_ARM)
449 target/arm/crt0.S
450 #endif /* defined(CPU_*) */
451 #endif /* SIMULATOR */
453 #elif defined(CPU_MIPS)
454 #undef mips
455 /*target/mips/strlen.S*/
456 common/memmove.c
457 common/memset16.c
458 common/strlen.c
459 target/mips/ffs-mips.S
460 target/mips/memcpy-mips.S
461 target/mips/memset-mips.S
462 target/mips/mmu-mips.c
463 #if CONFIG_CPU==JZ4732
464 target/mips/ingenic_jz47xx/crt0.S
465 #endif /* CONFIG_CPU == JZ4732 */
467 #else
469 #ifdef HAVE_PRIORITY_SCHEDULING
470 common/ffs.c
471 #endif
472 common/memcpy.c
473 common/memmove.c
474 common/memset.c
475 common/memset16.c
476 common/strlen.c
477 #ifndef SIMULATOR
478 crt0.S
479 drivers/i2c.c
480 #endif /* SIMULATOR */
482 #endif /* defined(CPU_*) */
484 #ifdef ARCHOS_PLAYER
485 #ifndef SIMULATOR
486 target/sh/archos/ata-archos.c
487 target/sh/archos/timer-archos.c
488 target/sh/archos/ata-as-archos.S
489 target/sh/archos/player/button-player.c
490 target/sh/archos/player/hwcompat-player.c
491 target/sh/archos/player/lcd-as-player.S
492 target/sh/archos/player/lcd-player.c
493 target/sh/archos/player/power-player.c
494 target/sh/archos/player/powermgmt-player.c
495 target/sh/archos/player/usb-player.c
496 #endif /* SIMULATOR */
497 #endif /* ARCHOS_PLAYER */
499 #ifdef ARCHOS_RECORDER
500 #ifndef SIMULATOR
501 target/sh/archos/ata-archos.c
502 target/sh/archos/timer-archos.c
503 target/sh/archos/ata-as-archos.S
504 target/sh/archos/lcd-archos-bitmap.c
505 target/sh/archos/lcd-as-archos-bitmap.S   
506 target/sh/archos/recorder/button-recorder.c
507 target/sh/archos/recorder/power-recorder.c
508 target/sh/archos/recorder/powermgmt-recorder.c
509 target/sh/archos/recorder/usb-recorder.c
510 #endif /* SIMULATOR */
511 #endif /* ARCHOS_RECORDER */
513 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
514 #ifndef SIMULATOR
515 target/sh/archos/ata-archos.c
516 target/sh/archos/timer-archos.c
517 target/sh/archos/ata-as-archos.S
518 target/sh/archos/lcd-archos-bitmap.c
519 target/sh/archos/lcd-as-archos-bitmap.S
520 target/sh/archos/fm_v2/button-fm_v2.c
521 target/sh/archos/fm_v2/power-fm_v2.c
522 target/sh/archos/fm_v2/powermgmt-fm_v2.c
523 target/sh/archos/fm_v2/usb-fm_v2.c
524 #endif /* SIMULATOR */
525 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
527 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
528 #ifndef SIMULATOR
529 target/sh/archos/timer-archos.c
530 target/sh/archos/lcd-archos-bitmap.c
531 target/sh/archos/lcd-as-archos-bitmap.S
532 target/sh/archos/ondio/button-ondio.c
533 target/sh/archos/ondio/power-ondio.c
534 target/sh/archos/ondio/powermgmt-ondio.c
535 target/sh/archos/ondio/usb-ondio.c
536 #if (CONFIG_TUNER & TEA5767)
537 target/sh/archos/ondio/fmradio_i2c-ondio.c
538 #endif
539 #endif /* SIMULATOR */
540 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
542 #ifdef SANSA_E200
543 #ifndef SIMULATOR
544 target/arm/adc-as3514.c
545 target/arm/ascodec-pp.c
546 target/arm/ata-sd-pp.c
547 target/arm/lcd-as-memframe.S
548 target/arm/powermgmt-ascodec.c
549 target/arm/i2s-pp.c
550 target/arm/usb-fw-pp502x.c
551 target/arm/sandisk/backlight-c200_e200.c
552 target/arm/sandisk/power-c200_e200.c
553 target/arm/sandisk/sansa-e200/lcd-e200.c
554 target/arm/sandisk/sansa-e200/button-e200.c
555 target/arm/sandisk/sansa-e200/powermgmt-e200.c
556 #ifndef BOOTLOADER
557 target/arm/sandisk/audio-c200_e200.c
558 #endif /* BOOTLOADER */
559 #endif /* SIMULATOR */
560 #endif /* SANSA_E200 */
562 #ifdef SANSA_C200
563 #ifndef SIMULATOR
564 target/arm/adc-as3514.c
565 target/arm/ascodec-pp.c
566 target/arm/ata-sd-pp.c
567 target/arm/i2s-pp.c
568 target/arm/powermgmt-ascodec.c
569 target/arm/usb-fw-pp502x.c
570 target/arm/sandisk/backlight-c200_e200.c
571 target/arm/sandisk/power-c200_e200.c
572 target/arm/lcd-c200_c200v2.c
573 target/arm/sandisk/sansa-c200/lcd-as-c200.S
574 target/arm/sandisk/sansa-c200/button-c200.c
575 target/arm/sandisk/sansa-c200/powermgmt-c200.c
576 #ifndef BOOTLOADER
577 target/arm/sandisk/audio-c200_e200.c
578 #endif /* BOOTLOADER */
579 #endif /* SIMULATOR */
580 #endif /* SANSA_C200 */
582 #ifdef SANSA_VIEW
583 #ifndef SIMULATOR
584 /* target/arm/ascodec-pp.c */
585 target/arm/ata-sd-pp.c
586 target/arm/lcd-as-memframe.S
587 target/arm/i2s-pp.c
588 /* target/arm/usb-fw-pp502x.c */
589 target/arm/sandisk/sansa-view/backlight-view.c
590 target/arm/sandisk/sansa-view/adc-view.c
591 target/arm/sandisk/sansa-view/power-view.c
592 target/arm/sandisk/sansa-view/lcd-view.c
593 target/arm/sandisk/sansa-view/button-view.c
594 target/arm/sandisk/sansa-view/powermgmt-view.c
595 #ifndef BOOTLOADER
596 /* target/arm/sandisk/audio-view.c */
597 #endif /* BOOTLOADER */
598 #endif /* SIMULATOR */
599 #endif /* SANSA_VIEW */
601 #ifdef PHILIPS_SA9200
602 #ifndef SIMULATOR
603 #ifndef BOOTLOADER
604 drivers/synaptics-mep.c
605 #endif /* BOOTLOADER */
606 target/arm/adc-as3514.c
607 target/arm/ascodec-pp.c
608 target/arm/ata-sd-pp.c
609 target/arm/i2s-pp.c
610 target/arm/powermgmt-ascodec.c
611 target/arm/usb-fw-pp502x.c
612 target/arm/philips/sa9200/backlight-sa9200.c
613 target/arm/philips/sa9200/button-sa9200.c
614 target/arm/philips/sa9200/lcd-sa9200.c
615 target/arm/philips/sa9200/power-sa9200.c
616 target/arm/philips/sa9200/powermgmt-sa9200.c
617 #endif /* SIMULATOR */
618 #endif /* PHILIPS_SA9200 */
620 #ifdef PHILIPS_HDD1630
621 #ifndef SIMULATOR
622 #ifndef BOOTLOADER
623 drivers/synaptics-mep.c
624 #endif /* BOOTLOADER */
625 target/arm/ata-as-arm.S
626 target/arm/ata-pp5020.c
627 target/arm/wmcodec-pp.c
628 target/arm/i2s-pp.c
629 target/arm/adc-pp5020.c
630 target/arm/philips/hdd1630/backlight-hdd1630.c
631 target/arm/philips/hdd1630/button-hdd1630.c
632 target/arm/philips/hdd1630/fmradio_i2c-hdd1630.c
633 target/arm/philips/hdd1630/lcd-hdd1630.c
634 target/arm/philips/hdd1630/lcd-as-hdd1630.S
635 target/arm/philips/hdd1630/power-hdd1630.c
636 target/arm/philips/hdd1630/powermgmt-hdd1630.c
637 target/arm/usb-fw-pp502x.c
638 #endif /* SIMULATOR */
639 #endif /* PHILIPS_HDD1630 */
641 #ifdef IAUDIO_X5
642 #ifndef SIMULATOR
643 target/coldfire/ata-as-coldfire.S
644 target/coldfire/pcf50606-coldfire.c
645 target/coldfire/iaudio/adc-iaudio.c
646 target/coldfire/iaudio/ata-iaudio.c
647 target/coldfire/iaudio/fmradio_i2c-iaudio.c
648 target/coldfire/iaudio/lcd-remote-as-iaudio.S
649 target/coldfire/iaudio/lcd-remote-iaudio.c
650 target/coldfire/iaudio/pcf50606-iaudio.c
651 target/coldfire/iaudio/power-x5m5.c
652 target/coldfire/iaudio/powermgmt-iaudio.c
653 target/coldfire/iaudio/system-iaudio.c
654 target/coldfire/iaudio/usb-iaudio.c
655 target/coldfire/iaudio/x5/backlight-x5.c
656 target/coldfire/iaudio/x5/button-x5.c
657 target/coldfire/iaudio/x5/ds2411-x5.c
658 target/coldfire/iaudio/x5/lcd-as-x5.S
659 target/coldfire/iaudio/x5/lcd-x5.c
660 target/coldfire/iaudio/x5/m5636-x5.c
661 #ifndef BOOTLOADER
662 target/coldfire/iaudio/audio-iaudio.c
663 #endif
664 #endif /* SIMULATOR */
665 #endif /* IAUDIO_X5 */
667 #ifdef IAUDIO_M5
668 #ifndef SIMULATOR
669 target/coldfire/ata-as-coldfire.S
670 target/coldfire/pcf50606-coldfire.c
671 target/coldfire/iaudio/adc-iaudio.c
672 target/coldfire/iaudio/ata-iaudio.c
673 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
674 target/coldfire/iaudio/fmradio_i2c-iaudio.c
675 #endif
676 target/coldfire/iaudio/lcd-remote-as-iaudio.S
677 target/coldfire/iaudio/lcd-remote-iaudio.c
678 target/coldfire/iaudio/m5/backlight-m5.c
679 target/coldfire/iaudio/m5/button-m5.c
680 target/coldfire/iaudio/m5/lcd-as-m5.S
681 target/coldfire/iaudio/m5/lcd-m5.c
682 target/coldfire/iaudio/pcf50606-iaudio.c
683 target/coldfire/iaudio/power-x5m5.c
684 target/coldfire/iaudio/powermgmt-iaudio.c
685 target/coldfire/iaudio/system-iaudio.c
686 target/coldfire/iaudio/usb-iaudio.c
687 #ifndef BOOTLOADER
688 target/coldfire/iaudio/audio-iaudio.c
689 #endif
690 #endif /* SIMULATOR */
691 #endif /* IAUDIO_M5 */
693 #ifdef IAUDIO_M3
694 #ifndef SIMULATOR
695 target/coldfire/ata-as-coldfire.S
696 target/coldfire/iaudio/fmradio_i2c-iaudio.c
697 target/coldfire/iaudio/m3/adc-m3.c
698 target/coldfire/iaudio/m3/ata-m3.c
699 target/coldfire/iaudio/m3/backlight-m3.c
700 target/coldfire/iaudio/m3/button-m3.c
701 target/coldfire/iaudio/m3/lcd-m3.c
702 target/coldfire/iaudio/m3/lcd-as-m3.S
703 target/coldfire/iaudio/m3/power-m3.c
704 target/coldfire/iaudio/m3/powermgmt-m3.c
705 target/coldfire/iaudio/m3/system-m3.c
706 target/coldfire/iaudio/m3/usb-m3.c
707 #ifndef BOOTLOADER
708 target/coldfire/iaudio/audio-iaudio.c
709 #endif
710 #endif /* SIMULATOR */
711 #endif /* IAUDIO_M3 */
713 #ifdef IRIVER_IFP7XX_SERIES
714 #ifdef STUB
715 ifp_usb_serial.c
716 common/sscanf.c
717 #endif /* STUB */
718 #endif /* IRIVER_IFP7XX_SERIES */
720 #ifdef IRIVER_H300_SERIES
721 #ifndef SIMULATOR
722 target/coldfire/ata-as-coldfire.S
723 target/coldfire/pcf50606-coldfire.c
724 target/coldfire/iriver/ata-iriver.c
725 target/coldfire/iriver/lcd-remote-iriver.c
726 target/coldfire/iriver/lcd-remote-as-iriver.S
727 target/coldfire/iriver/system-iriver.c
728 target/coldfire/iriver/fmradio_i2c-iriver.c
729 target/coldfire/iriver/h300/sw_i2c-h300.c
730 target/coldfire/iriver/h300/adc-h300.c
731 target/coldfire/iriver/h300/backlight-h300.c
732 target/coldfire/iriver/h300/button-h300.c
733 target/coldfire/iriver/h300/pcf50606-h300.c
734 target/coldfire/iriver/h300/lcd-as-h300.S
735 target/coldfire/iriver/h300/lcd-h300.c
736 target/coldfire/iriver/h300/power-h300.c
737 target/coldfire/iriver/h300/powermgmt-h300.c
738 target/coldfire/iriver/h300/usb-h300.c
739 #ifndef BOOTLOADER
740 target/coldfire/iriver/audio-iriver.c
741 target/coldfire/iriver/udacodec-iriver.c
742 #endif
743 #endif /* SIMULATOR */
744 #endif /* IRIVER_H300_SERIES */
746 #ifdef IRIVER_H100_SERIES
747 #ifndef SIMULATOR
748 drivers/sw_i2c.c
749 target/coldfire/ata-as-coldfire.S
750 target/coldfire/iriver/ata-iriver.c
751 target/coldfire/iriver/lcd-remote-iriver.c
752 target/coldfire/iriver/lcd-remote-as-iriver.S
753 target/coldfire/iriver/system-iriver.c
754 target/coldfire/iriver/fmradio_i2c-iriver.c
755 target/coldfire/iriver/h100/adc-h100.c
756 target/coldfire/iriver/h100/backlight-h100.c
757 target/coldfire/iriver/h100/button-h100.c
758 target/coldfire/iriver/h100/lcd-as-h100.S
759 target/coldfire/iriver/h100/lcd-h100.c
760 target/coldfire/iriver/h100/power-h100.c
761 target/coldfire/iriver/h100/powermgmt-h100.c
762 #ifndef BOOTLOADER
763 target/coldfire/iriver/audio-iriver.c
764 target/coldfire/iriver/udacodec-iriver.c
765 target/coldfire/iriver/h100/spdif-h100.c
766 #endif
767 target/coldfire/iriver/h100/usb-h100.c
768 #endif /* SIMULATOR */
769 #endif /* IRIVER_H100_SERIES */
771 #ifdef IRIVER_H10
772 #ifndef SIMULATOR
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/adc-pp5020.c
778 target/arm/iriver/h10/backlight-h10.c
779 target/arm/iriver/h10/button-h10.c
780 target/arm/iriver/h10/fmradio_i2c-h10.c
781 target/arm/iriver/h10/lcd-h10_20gb.c
782 target/arm/iriver/h10/lcd-as-h10.S
783 target/arm/iriver/h10/power-h10.c
784 target/arm/iriver/h10/powermgmt-h10.c
785 target/arm/usb-fw-pp502x.c
786 #endif /* SIMULATOR */
787 #endif /* IRIVER_H10 */
789 #ifdef IRIVER_H10_5GB
790 #ifndef SIMULATOR
791 target/arm/ata-as-arm.S
792 target/arm/ata-pp5020.c
793 target/arm/wmcodec-pp.c
794 target/arm/i2s-pp.c
795 target/arm/adc-pp5020.c
796 target/arm/iriver/h10/backlight-h10.c
797 target/arm/iriver/h10/button-h10.c
798 target/arm/iriver/h10/fmradio_i2c-h10.c
799 target/arm/iriver/h10/lcd-h10_5gb.c
800 target/arm/iriver/h10/power-h10.c
801 target/arm/iriver/h10/powermgmt-h10.c
802 target/arm/usb-fw-pp502x.c
803 #endif /* SIMULATOR */
804 #endif /* IRIVER_H10_5GB */
806 #ifdef GIGABEAT_F
807 #ifndef SIMULATOR
808 target/arm/lcd-as-memframe.S
809 target/arm/mmu-arm.S
810 target/arm/s3c2440/debug-s3c2440.c
811 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
812 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
813 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
814 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
815 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
816 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
817 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
818 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
819 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
820 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
821 #ifndef BOOTLOADER
822 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
823 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
824 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
825 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
826 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
827 #endif
828 #endif /* SIMULATOR */
829 #endif /* GIGABEAT_F */
831 #ifdef GIGABEAT_S
832 #ifndef SIMULATOR
833 target/arm/lcd-as-memframe.S
834 target/arm/mmu-armv6.S
835 target/arm/imx31/ccm-imx31.c
836 target/arm/imx31/debug-imx31.c
837 target/arm/imx31/rolo_restart.S
838 target/arm/imx31/sdma-imx31.c
839 target/arm/imx31/gigabeat-s/adc-imx31.c
840 target/arm/imx31/gigabeat-s/ata-imx31.c
841 target/arm/imx31/gigabeat-s/avic-imx31.c
842 target/arm/imx31/gigabeat-s/backlight-imx31.c
843 target/arm/imx31/gigabeat-s/button-imx31.c
844 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
845 target/arm/imx31/gigabeat-s/gpio-imx31.c
846 target/arm/imx31/gigabeat-s/kernel-imx31.c
847 target/arm/imx31/gigabeat-s/i2c-imx31.c
848 target/arm/imx31/gigabeat-s/i2s-imx31.c
849 target/arm/imx31/gigabeat-s/lcd-imx31.c
850 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
851 target/arm/imx31/gigabeat-s/mc13783-imx31.c
852 target/arm/imx31/gigabeat-s/mmu-imx31.c
853 target/arm/imx31/gigabeat-s/power-imx31.c
854 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
855 target/arm/imx31/gigabeat-s/spi-imx31.c
856 target/arm/imx31/gigabeat-s/system-imx31.c
857 target/arm/imx31/gigabeat-s/usb-imx31.c
858 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
859 #ifndef BOOTLOADER
860 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
861 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
862 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
863 target/arm/imx31/gigabeat-s/pcm-imx31.c
864 target/arm/imx31/gigabeat-s/timer-imx31.c
865 #endif
866 #endif /* SIMULATOR */
867 #endif /* GIGABEAT_S */
869 #if CONFIG_CPU == DM320
870 target/arm/tms320dm320/debug-dm320.c
871 target/arm/tms320dm320/dsp-dm320.c
872 target/arm/tms320dm320/i2c-dm320.c
873 target/arm/tms320dm320/kernel-dm320.c
874 target/arm/tms320dm320/spi-dm320.c
875 target/arm/tms320dm320/system-dm320.c
876 target/arm/tms320dm320/timer-dm320.c
877 target/arm/tms320dm320/uart-dm320.c
878 #endif /* CONFIG_CPU == DM320 */
880 #ifdef MROBE_500
881 #ifndef SIMULATOR
882 target/arm/lcd-as-memframe.S
883 target/arm/mmu-arm.S
884 target/arm/tms320dm320/mrobe-500/adc-mr500.c
885 target/arm/tms320dm320/mrobe-500/ata-mr500.c
886 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
887 target/arm/tms320dm320/mrobe-500/button-mr500.c
888 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
889 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
890 #if defined(HAVE_REMOTE_LCD)
891 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
892 #endif
893 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
894 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
895 target/arm/tms320dm320/mrobe-500/power-mr500.c
896 target/arm/tms320dm320/mrobe-500/usb-mr500.c
897 #endif /* SIMULATOR */
898 #endif /* MROBE_500 */
900 #ifdef CREATIVE_ZVx
901 #ifndef SIMULATOR
902 target/arm/ata-as-arm.S
903 target/arm/lcd-as-memframe.S
904 target/arm/mmu-arm.S
905 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
906 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
907 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
908 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
909 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
910 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
911 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
912 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
913 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
914 #endif /* SIMULATOR */
915 #endif /* CREATIVE_ZVx */
917 #ifdef MROBE_100
918 #ifndef SIMULATOR
919 #ifndef BOOTLOADER
920 drivers/synaptics-mep.c
921 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
922 #endif /* BOOTLOADER */
923 drivers/sw_i2c.c
924 target/arm/ata-as-arm.S
925 target/arm/ata-pp5020.c
926 target/arm/wmcodec-pp.c
927 target/arm/i2s-pp.c
928 target/arm/adc-pp5020.c
929 target/arm/olympus/mrobe-100/backlight-mr100.c
930 target/arm/olympus/mrobe-100/button-mr100.c
931 target/arm/olympus/mrobe-100/lcd-mr100.c
932 target/arm/olympus/mrobe-100/lcd-as-mr100.S
933 target/arm/olympus/mrobe-100/power-mr100.c
934 target/arm/olympus/mrobe-100/powermgmt-mr100.c
935 target/arm/usb-fw-pp502x.c
936 #endif /* SIMULATOR */
937 #endif /* MROBE_100 */
939 #ifdef ELIO_TPJ1022
940 #ifndef SIMULATOR
941 target/arm/ata-as-arm.S
942 target/arm/ata-pp5020.c
943 target/arm/wmcodec-pp.c
944 target/arm/i2s-pp.c
945 target/arm/adc-pp5020.c
946 target/arm/tatung/tpj1022/backlight-tpj1022.c
947 target/arm/tatung/tpj1022/button-tpj1022.c
948 target/arm/tatung/tpj1022/lcd-tpj1022.c
949 target/arm/tatung/tpj1022/power-tpj1022.c
950 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
951 target/arm/usb-fw-pp502x.c
952 #endif /* SIMULATOR */
953 #endif /* ELIO_TPJ1022 */
955 #ifdef IPOD_4G
956 #ifndef SIMULATOR
957 drivers/pcf50605.c
958 target/arm/wmcodec-pp.c
959 target/arm/i2s-pp.c
960 target/arm/ata-as-arm.S
961 target/arm/ata-pp5020.c
962 target/arm/ipod/adc-ipod-pcf.c
963 target/arm/ipod/backlight-4g_color.c
964 target/arm/ipod/button-clickwheel.c
965 target/arm/ipod/lcd-as-gray.S
966 target/arm/ipod/lcd-gray.c
967 target/arm/ipod/power-ipod.c
968 target/arm/ipod/powermgmt-ipod-pcf.c
969 target/arm/usb-fw-pp502x.c
970 #endif /* SIMULATOR */
971 #endif /* IPOD_4G */
973 #ifdef IPOD_COLOR
974 #ifndef SIMULATOR
975 drivers/pcf50605.c
976 target/arm/ata-as-arm.S
977 target/arm/ata-pp5020.c
978 target/arm/wmcodec-pp.c
979 target/arm/i2s-pp.c
980 target/arm/ipod/adc-ipod-pcf.c
981 target/arm/ipod/backlight-4g_color.c
982 target/arm/ipod/button-clickwheel.c
983 target/arm/ipod/lcd-color_nano.c
984 target/arm/ipod/power-ipod.c
985 target/arm/ipod/powermgmt-ipod-pcf.c
986 target/arm/usb-fw-pp502x.c
987 #endif /* SIMULATOR */
988 #endif /* IPOD_COLOR */
990 #ifdef IPOD_NANO
991 #ifndef SIMULATOR
992 drivers/pcf50605.c
993 target/arm/ata-as-arm.S
994 target/arm/ata-pp5020.c
995 target/arm/wmcodec-pp.c
996 target/arm/i2s-pp.c
997 target/arm/ipod/adc-ipod-pcf.c
998 target/arm/ipod/backlight-nano_video.c
999 target/arm/ipod/button-clickwheel.c
1000 target/arm/ipod/lcd-color_nano.c
1001 target/arm/ipod/power-ipod.c
1002 target/arm/ipod/powermgmt-ipod-pcf.c
1003 target/arm/usb-fw-pp502x.c
1004 #endif /* SIMULATOR */
1005 #endif /* IPOD_NANO */
1007 #ifdef IPOD_VIDEO
1008 #ifndef SIMULATOR
1009 drivers/pcf50605.c
1010 target/arm/ata-as-arm.S
1011 target/arm/ata-pp5020.c
1012 target/arm/wmcodec-pp.c
1013 target/arm/i2s-pp.c
1014 target/arm/ipod/adc-ipod-pcf.c
1015 target/arm/ipod/backlight-nano_video.c
1016 target/arm/ipod/button-clickwheel.c
1017 target/arm/ipod/power-ipod.c
1018 target/arm/ipod/powermgmt-ipod-pcf.c
1019 target/arm/ipod/video/lcd-as-video.S
1020 target/arm/ipod/video/lcd-video.c
1021 target/arm/usb-fw-pp502x.c
1022 #endif /* SIMULATOR */
1023 #endif /* IPOD_VIDEO */
1025 #ifdef IPOD_3G
1026 #ifndef SIMULATOR
1027 drivers/pcf50605.c
1028 target/arm/ata-pp5002.c
1029 target/arm/wmcodec-pp.c
1030 target/arm/i2s-pp.c
1031 target/arm/ipod/adc-ipod-pcf.c
1032 target/arm/ipod/3g/backlight-3g.c
1033 target/arm/ipod/button-1g-3g.c
1034 target/arm/ipod/lcd-as-gray.S
1035 target/arm/ipod/lcd-gray.c
1036 target/arm/ipod/power-ipod.c
1037 target/arm/ipod/powermgmt-ipod-pcf.c
1038 target/arm/usb-fw-pp5002.c
1039 #endif /* SIMULATOR */
1040 #endif /* IPOD_3G */
1042 #ifdef IPOD_1G2G
1043 #ifndef SIMULATOR
1044 target/arm/ata-pp5002.c
1045 target/arm/wmcodec-pp.c
1046 target/arm/i2s-pp.c
1047 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1048 target/arm/ipod/1g2g/backlight-1g2g.c
1049 target/arm/ipod/1g2g/powermgmt-1g2g.c
1050 target/arm/ipod/button-1g-3g.c
1051 target/arm/ipod/lcd-as-gray.S
1052 target/arm/ipod/lcd-gray.c
1053 target/arm/ipod/power-ipod.c
1054 target/arm/usb-fw-pp5002.c
1055 #endif /* SIMULATOR */
1056 #endif /* IPOD_1G2G */
1058 #ifdef IPOD_MINI
1059 #ifndef SIMULATOR
1060 drivers/pcf50605.c
1061 target/arm/ata-as-arm.S
1062 target/arm/ata-pp5020.c
1063 target/arm/wmcodec-pp.c
1064 target/arm/i2s-pp.c
1065 target/arm/ipod/adc-ipod-pcf.c
1066 target/arm/ipod/backlight-mini1g_mini2g.c
1067 target/arm/ipod/button-mini1g.c
1068 target/arm/ipod/lcd-as-gray.S
1069 target/arm/ipod/lcd-gray.c
1070 target/arm/ipod/power-ipod.c
1071 target/arm/ipod/powermgmt-ipod-pcf.c
1072 target/arm/usb-fw-pp502x.c
1073 #endif /* SIMULATOR */
1074 #endif /* IPOD_MINI */
1076 #ifdef IPOD_MINI2G
1077 #ifndef SIMULATOR
1078 drivers/pcf50605.c
1079 target/arm/ata-as-arm.S
1080 target/arm/ata-pp5020.c
1081 target/arm/wmcodec-pp.c
1082 target/arm/i2s-pp.c
1083 target/arm/ipod/adc-ipod-pcf.c
1084 target/arm/ipod/backlight-mini1g_mini2g.c
1085 target/arm/ipod/button-clickwheel.c
1086 target/arm/ipod/lcd-as-gray.S
1087 target/arm/ipod/lcd-gray.c
1088 target/arm/ipod/power-ipod.c
1089 target/arm/ipod/powermgmt-ipod-pcf.c
1090 target/arm/usb-fw-pp502x.c
1091 #endif /* SIMULATOR */
1092 #endif /* IPOD_MINI2G */
1094 #ifdef IRIVER_IFP7XX
1095 #ifndef SIMULATOR
1096 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1097 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1098 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1099 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1100 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1101 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1102 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1103 #ifndef BOOTLOADER
1104 target/arm/pnx0101/pcm-pnx0101.c
1105 #endif /* BOOTLOADER */
1106 #endif /* SIMULATOR */
1107 #endif /* IRIVER_IFP7XX */
1109 #ifdef LOGIK_DAX
1110 #ifndef SIMULATOR
1111 drivers/nand_id.c
1112 target/arm/lcd-ssd1815.c
1113 target/arm/tcc77x/adc-tcc77x.c
1114 target/arm/tcc77x/kernel-tcc77x.c
1115 target/arm/tcc77x/powermgmt-tcc77x.c
1116 target/arm/tcc77x/system-tcc77x.c
1117 target/arm/tcc77x/timer-tcc77x.c
1118 target/arm/usb-tcc.c
1119 target/arm/tcc77x/logikdax/button-logikdax.c
1120 target/arm/tcc77x/logikdax/power-logikdax.c
1121 #ifndef BOOTLOADER
1122 target/arm/wmcodec-telechips.c
1123 target/arm/tcc77x/debug-tcc77x.c
1124 target/arm/pcm-telechips.c
1125 target/arm/tcc77x/logikdax/audio-logikdax.c
1126 #endif /* BOOTLOADER */
1127 #endif /* SIMULATOR */
1128 #endif /* LOGIK_DAX */
1130 #ifdef SANSA_M200
1131 #ifndef SIMULATOR
1132 drivers/nand_id.c
1133 target/arm/lcd-ssd1815.c
1134 target/arm/tcc77x/adc-tcc77x.c
1135 target/arm/tcc77x/kernel-tcc77x.c
1136 target/arm/tcc77x/powermgmt-tcc77x.c
1137 target/arm/tcc77x/system-tcc77x.c
1138 target/arm/tcc77x/timer-tcc77x.c
1139 target/arm/usb-tcc.c
1140 target/arm/tcc77x/m200/button-m200.c
1141 target/arm/tcc77x/m200/power-m200.c
1142 #ifndef BOOTLOADER
1143 target/arm/wmcodec-telechips.c
1144 target/arm/tcc77x/debug-tcc77x.c
1145 target/arm/pcm-telechips.c
1146 target/arm/tcc77x/m200/audio-m200.c
1147 #endif /* BOOTLOADER */
1148 #endif /* SIMULATOR */
1149 #endif /* SANSA_M200 */
1151 #ifdef SANSA_C100
1152 #ifndef SIMULATOR
1153 drivers/nand_id.c
1154 target/arm/usb-tcc.c
1155 target/arm/tcc77x/system-tcc77x.c
1156 target/arm/tcc77x/kernel-tcc77x.c
1157 target/arm/tcc77x/timer-tcc77x.c
1158 target/arm/tcc77x/adc-tcc77x.c
1159 target/arm/tcc77x/powermgmt-tcc77x.c
1160 target/arm/tcc77x/c100/lcd-S6B33B2.c
1161 target/arm/tcc77x/c100/button-c100.c
1162 target/arm/tcc77x/c100/power-c100.c
1163 #ifndef BOOTLOADER
1164 target/arm/tcc77x/debug-tcc77x.c
1165 target/arm/pcm-telechips.c
1166 target/arm/tcc77x/c100/audio-c100.c
1167 #endif /* BOOTLOADER */
1168 #endif /* SIMULATOR */
1169 #endif /* SANSA_C100 */
1171 #ifdef SANSA_CLIP
1172 #ifndef SIMULATOR
1173 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1174 target/arm/as3525/sansa-clip/lcd-as-clip.S
1175 target/arm/as3525/sansa-clip/button-clip.c
1176 target/arm/as3525/sansa-clip/backlight-clip.c
1177 #ifndef BOOTLOADER
1178 target/arm/powermgmt-ascodec.c
1179 target/arm/as3525/sansa-clip/powermgmt-clip.c
1180 #endif /* !BOOTLOADER */
1181 #endif /* !SIMULATOR */
1182 #endif /* SANSA_CLIP */
1184 #ifdef SANSA_E200V2
1185 #ifndef SIMULATOR
1186 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1187 target/arm/as3525/lcd-as-e200v2-fuze.S
1188 target/arm/as3525/button-e200v2-fuze.c
1189 target/arm/as3525/backlight-e200v2-fuze.c
1190 #ifndef BOOTLOADER
1191 target/arm/powermgmt-ascodec.c
1192 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1193 #endif /* !BOOTLOADER */
1194 #endif /* !SIMULATOR */
1195 #endif /* SANSA_E200V2 */
1197 #ifdef SANSA_C200V2
1198 #ifndef SIMULATOR
1199 target/arm/lcd-c200_c200v2.c
1200 target/arm/as3525/sansa-c200v2/button-c200v2.c
1201 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1202 #ifndef BOOTLOADER
1203 target/arm/as3525/powermgmt-as3525.c
1204 #endif /* !BOOTLOADER */
1205 #endif /* !SIMULATOR */
1206 #endif /* SANSA_E200V2 */
1208 #ifdef SANSA_M200V4
1209 #ifndef SIMULATOR
1210 target/arm/lcd-ssd1815.c
1211 target/arm/as3525/sansa-m200v4/button-m200v4.c
1212 #ifndef BOOTLOADER
1213 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1214 #endif /* !BOOTLOADER */
1215 #endif /* !SIMULATOR */
1216 #endif /* SANSA_M200V4 */
1218 #ifdef SANSA_FUZE
1219 #ifndef SIMULATOR
1220 target/arm/as3525/button-e200v2-fuze.c
1221 target/arm/as3525/sansa-fuze/lcd-fuze.c
1222 target/arm/as3525/lcd-as-e200v2-fuze.S
1223 target/arm/as3525/backlight-e200v2-fuze.c
1224 #ifndef BOOTLOADER
1225 target/arm/powermgmt-ascodec.c
1226 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1227 #endif /* !BOOTLOADER */
1228 #endif /* !SIMULATOR */
1229 #endif /* SANSA_FUZE */
1231 #ifdef IAUDIO_7
1232 #ifndef SIMULATOR
1233 drivers/nand_id.c
1234 drivers/pcf50606.c
1235 target/arm/usb-tcc.c
1236 target/arm/tcc77x/system-tcc77x.c
1237 target/arm/tcc77x/kernel-tcc77x.c
1238 target/arm/tcc77x/timer-tcc77x.c
1239 target/arm/tcc77x/adc-tcc77x.c
1240 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1241 target/arm/tcc77x/iaudio7/power-iaudio7.c
1242 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1243 target/arm/tcc77x/iaudio7/button-iaudio7.c
1244 target/arm/tcc77x/iaudio7/ata2501.c
1245 #ifndef BOOTLOADER
1246 target/arm/wmcodec-telechips.c
1247 target/arm/pcm-telechips.c
1248 target/arm/tcc77x/debug-tcc77x.c
1249 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1250 #endif /* BOOTLOADER */
1251 #endif /* SIMULATOR */
1252 #endif /* IAUDIO_7 */
1254 #ifdef COWON_D2
1255 #ifndef SIMULATOR
1256 drivers/nand_id.c
1257 drivers/pcf50606.c
1258 drivers/pcf50635.c
1259 drivers/tsc200x.c
1260 target/arm/lcd-as-memframe.S
1261 target/arm/tcc780x/adc-tcc780x.c
1262 target/arm/tcc780x/system-tcc780x.c
1263 target/arm/tcc780x/kernel-tcc780x.c
1264 target/arm/tcc780x/sd-tcc780x.c
1265 target/arm/tcc780x/cowond2/button-cowond2.c
1266 target/arm/tcc780x/cowond2/touchscreen-cowond2.c
1267 target/arm/tcc780x/cowond2/lcd-cowond2.c
1268 target/arm/tcc780x/cowond2/power-cowond2.c
1269 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1270 target/arm/tcc780x/cowond2/backlight-cowond2.c
1271 target/arm/usb-tcc.c
1272 target/arm/mmu-arm.S
1273 #ifndef BOOTLOADER
1274 target/arm/tcc780x/timer-tcc780x.c
1275 target/arm/wmcodec-telechips.c
1276 target/arm/tcc780x/debug-tcc780x.c
1277 target/arm/pcm-telechips.c
1278 target/arm/tcc780x/cowond2/audio-cowond2.c
1279 #endif /* BOOTLOADER */
1280 #endif /* SIMULATOR */
1281 #endif /* COWON_D2 */
1283 #ifdef CPU_S5L870X
1284 target/arm/s5l8700/system-s5l8700.c
1285 target/arm/s5l8700/mmu-s5l8700.S
1286 #ifndef SIMULATOR
1287 #ifndef BOOTLOADER
1288 target/arm/s5l8700/timer-s5l8700.c
1289 #endif /* BOOTLOADER */
1290 #endif /* SIMULATOR */
1291 #endif
1293 #ifdef MEIZU_M6SL
1294 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1295 drivers/qt1106.c
1296 #ifndef SIMULATOR
1297 #ifndef BOOTLOADER
1298 #endif /* BOOTLOADER */
1299 #endif /* SIMULATOR */
1300 #endif /* MEIZU_M6SL */
1302 #ifdef MEIZU_M6SP
1303 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1304 #ifndef SIMULATOR
1305 #ifndef BOOTLOADER
1306 #endif /* BOOTLOADER */
1307 #endif /* SIMULATOR */
1308 #endif /* MEIZU_M6SP */
1310 #ifdef MEIZU_M3
1311 target/arm/s5l8700/backlight-meizu.c
1312 target/arm/s5l8700/kernel-s5l8700.c
1313 target/arm/s5l8700/meizu-m3/lcd-m3.c
1314 drivers/qt1106.c
1315 #ifndef SIMULATOR
1316 #ifndef BOOTLOADER
1317 target/arm/s5l8700/dma-s5l8700.c
1318 target/arm/s5l8700/pcm-s5l8700.c
1319 target/arm/s5l8700/udacodec-meizu.c
1320 #endif /* BOOTLOADER */
1321 #endif /* SIMULATOR */
1322 #endif /* MEIZU_M3 */
1324 #ifdef IPOD_NANO2G
1325 #ifndef SIMULATOR
1326 drivers/audio/wm8975.c
1327 target/arm/ipod/button-clickwheel.c
1328 target/arm/s5l8700/kernel-s5l8700.c
1329 target/arm/s5l8700/wmcodec-s5l8700.c
1330 target/arm/s5l8700/pcm-s5l8700.c
1331 target/arm/s5l8700/adc-s5l8700.c
1332 target/arm/s5l8700/debug-s5l8700.c
1333 target/arm/s5l8700/dma-s5l8700.c
1334 target/arm/s5l8700/usb-s5l8700.c
1335 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1336 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1337 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1338 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1339 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1340 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1341 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1342 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1343 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1344 #endif
1345 #endif
1347 #ifndef SIMULATOR
1348 #if CONFIG_CPU == JZ4732
1349 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1350 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1351 target/mips/ingenic_jz47xx/debug-jz4740.c
1352 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1353 target/mips/ingenic_jz47xx/kernel-jz4740.c
1354 target/mips/ingenic_jz47xx/i2c-jz4740.c
1355 target/mips/ingenic_jz47xx/lcd-jz4740.c
1356 target/mips/ingenic_jz47xx/system-jz4740.c
1357 target/mips/ingenic_jz47xx/usb-jz4740.c
1358 target/mips/ingenic_jz47xx/timer-jz4740.c
1359 #ifndef BOOTLOADER
1360 target/mips/ingenic_jz47xx/codec-jz4740.c
1361 target/mips/ingenic_jz47xx/pcm-jz4740.c
1362 #endif /* BOOTLOADER */
1363 drivers/nand_id.c
1364 #endif /* CONFIG_CPU == JZ4732 */
1366 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1367 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1368 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1369 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1370 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1371 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1372 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1374 #ifdef ONDA_VX767
1375 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1376 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1377 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1378 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1379 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1380 #endif /* ONDA_VX767 */
1382 #if defined(LYRE_PROTO1)
1383 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1384 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1385 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1386 target/arm/at91sam/lyre_proto1/crt0.S
1387 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1388 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1389 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1390 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1391 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1392 #endif
1393 #endif /* SIMULATOR */
1395 #ifdef SAMSUNG_YH820
1396 #ifndef SIMULATOR
1397 target/arm/ata-as-arm.S
1398 target/arm/ata-pp5020.c
1399 target/arm/adc-pp5020.c
1400 target/arm/i2s-pp.c
1401 target/arm/usb-fw-pp502x.c
1402 target/arm/samsung/akcodec-yh82x_yh92x.c
1403 target/arm/samsung/button-yh82x_yh92x.c
1404 target/arm/samsung/power-yh82x_yh92x.c
1405 target/arm/samsung/yh820/backlight-yh820.c
1406 target/arm/samsung/yh820/lcd-yh820.c
1407 target/arm/samsung/yh820/lcd-as-yh820.S
1408 target/arm/samsung/yh820/powermgmt-yh820.c
1409 #endif /* SIMULATOR */
1410 #endif /* SAMSUNG_YH820 */
1412 #ifdef SAMSUNG_YH920
1413 #ifndef SIMULATOR
1414 target/arm/ata-as-arm.S
1415 target/arm/ata-pp5020.c
1416 target/arm/adc-pp5020.c
1417 target/arm/i2s-pp.c
1418 target/arm/usb-fw-pp502x.c
1419 target/arm/samsung/akcodec-yh82x_yh92x.c
1420 target/arm/samsung/button-yh82x_yh92x.c
1421 target/arm/samsung/power-yh82x_yh92x.c
1422 target/arm/samsung/yh920/backlight-yh920.c
1423 target/arm/samsung/yh920/lcd-yh920.c
1424 target/arm/samsung/yh920/lcd-as-yh920.S
1425 target/arm/samsung/yh920/powermgmt-yh920.c
1426 #endif /* SIMULATOR */
1427 #endif /* SAMSUNG_YH920 */
1429 #ifdef SAMSUNG_YH925
1430 #ifndef SIMULATOR
1431 target/arm/ata-as-arm.S
1432 target/arm/ata-pp5020.c
1433 target/arm/adc-pp5020.c
1434 target/arm/i2s-pp.c
1435 target/arm/usb-fw-pp502x.c
1436 target/arm/samsung/akcodec-yh82x_yh92x.c
1437 target/arm/samsung/button-yh82x_yh92x.c
1438 target/arm/samsung/power-yh82x_yh92x.c
1439 target/arm/samsung/yh925/backlight-yh925.c
1440 target/arm/samsung/yh925/lcd-yh925.c
1441 target/arm/samsung/yh925/lcd-as-yh925.S
1442 target/arm/samsung/yh925/powermgmt-yh925.c
1443 #endif /* SIMULATOR */
1444 #endif /* SAMSUNG_YH925 */
1446 #ifdef SAMSUNG_YPS3
1447 /* TODO: currently including all files for the bootloader DFU test program */
1448 target/arm/s5l8700/adc-s5l8700.c
1449 target/arm/s5l8700/i2c-s5l8700.c
1450 target/arm/s5l8700/kernel-s5l8700.c
1451 target/arm/s5l8700/timer-s5l8700.c
1452 target/arm/s5l8700/wmcodec-s5l8700.c
1453 target/arm/s5l8700/yps3/button-yps3.c
1454 target/arm/s5l8700/yps3/lcd-yps3.c
1455 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1456 target/arm/s5l8700/yps3/backlight-yps3.c
1457 target/arm/s5l8700/yps3/nand-yps3.c
1458 target/arm/s5l8700/yps3/power-yps3.c
1459 #endif /* SAMSUNG_YPS3 */