Const correctness
[kugel-rb.git] / firmware / SOURCES
blob0371cea684afc25bf837b99893b215cce854b25f
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 #endif /* (CONFIG_RTC == RTC_) */
198 #endif /* SIMULATOR */
200 /* Tuner */
201 #if CONFIG_TUNER
202 tuner.c
203 #ifndef SIMULATOR
204 #if (CONFIG_TUNER & LV24020LP)
205 drivers/tuner/lv24020lp.c
206 #endif /* (CONFIG_TUNER & LV24020LP) */
207 #if (CONFIG_TUNER & S1A0903X01)
208 drivers/fmradio.c
209 drivers/tuner/s1a0903x01.c
210 #endif /* (CONFIG_TUNER & S1A0903X01) */
211 #if (CONFIG_TUNER & TEA5760)
212 drivers/tuner/tea5760uk.c
213 #endif
214 #if (CONFIG_TUNER & TEA5767)
215 drivers/tuner/tea5767.c
216 #endif /* (CONFIG_TUNER & TEA5767) */
217 #if (CONFIG_TUNER & SI4700)
218 drivers/tuner/si4700.c
219 #endif /* (CONFIG_TUNER & SI4700) */
220 #endif /*SIMULATOR */
221 #endif /* CONFIG_TUNER */
223 /* Sound */
224 #if CONFIG_CODEC != SWCODEC
225 mp3_playback.c
226 #endif /* CONFIG_CODEC != SWCODEC */
227 sound.c
229 #if CONFIG_CODEC == SWCODEC
231 #ifndef BOOTLOADER
232 pcm_sampr.c
233 pcm.c
234 #ifdef HAVE_RECORDING
235 enc_base.c
236 #endif /* HAVE_RECORDING */
237 #endif /* BOOTLOADER */
239 #else  /* !SWCODEC */
241 #ifndef BOOTLOADER
242 #ifndef SIMULATOR
243 drivers/mas.c
244 #endif /* SIMULATOR */
245 #endif /* BOOTLOADER */
247 #endif /* SWCODEC */
249 /* Audio codec */
250 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
251 #if defined(HAVE_UDA1380)
252 drivers/audio/uda1380.c
253 #elif defined(HAVE_WM8751)
254 drivers/audio/wm8751.c
255 #elif defined(HAVE_WM8978)
256 drivers/audio/wm8978.c
257 #elif defined(HAVE_WM8975)
258 drivers/audio/wm8975.c
259 #elif defined(HAVE_WM8985)
260 drivers/audio/wm8985.c
261 #elif defined(HAVE_WM8758)
262 drivers/audio/wm8758.c
263 #elif defined(HAVE_WM8711) \
264    || defined(HAVE_WM8721) \
265    || defined(HAVE_WM8731)
266 drivers/audio/wm8731.c
267 #elif defined(HAVE_AS3514)
268 drivers/audio/as3514.c
269 #elif defined(HAVE_TLV320)
270 drivers/audio/tlv320.c
271 #elif defined(HAVE_MAS35XX)
272 drivers/audio/mas35xx.c
273 #elif defined(HAVE_AK4537)
274 drivers/audio/ak4537.c
275 #endif /* defined(HAVE_*) */
276 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
278 /* USB Stack */
279 #if !defined(SIMULATOR)
280 #ifdef HAVE_USBSTACK
281 usbstack/usb_core.c
282 #ifdef USB_ENABLE_STORAGE
283 usbstack/usb_storage.c
284 #endif
285 #ifdef USB_ENABLE_SERIAL
286 usbstack/usb_serial.c
287 #endif
288 #ifdef USB_ENABLE_CHARGING_ONLY
289 usbstack/usb_charging_only.c
290 #endif
291 #ifdef USB_ENABLE_HID
292 usbstack/usb_hid.c
293 #endif
294 #if CONFIG_USBOTG == USBOTG_M66591
295 drivers/m66591.c
296 #elif CONFIG_USBOTG == USBOTG_ARC
297 target/arm/usb-drv-arc.c
298 #elif CONFIG_USBOTG == USBOTG_AS3525
299 target/arm/as3525/usb-drv-as3525.c
300 #elif CONFIG_USBOTG == USBOTG_ISP1583
301 drivers/isp1583.c
302 #endif
303 #else /* !defined(HAVE_USBSTACK) */
304 #if CONFIG_USBOTG == USBOTG_ISP1362      
305 drivers/isp1362.c
306 #elif CONFIG_USBOTG == USBOTG_M5636      
307 drivers/m5636.c
308 #endif
309 #endif /* !defined(HAVE_USBSTACK) */
310 #endif /* !defined(SIMULATOR) */
312 /* Other Random Hardware */
313 #ifdef HAVE_TSC2100
314 #if !defined(SIMULATOR)
315 drivers/tsc2100.c
316 drivers/audio/tsc2100.c
317 #endif /* !SIMULATOR */
318 #endif
320 /* CPU Specific - By class then particular chip if applicable */
321 #if defined(CPU_SH)
323 #ifndef SIMULATOR
324 drivers/i2c.c
325 target/sh/adc-sh.c
326 target/sh/bitswap.S
327 target/sh/crt0.S
328 target/sh/kernel-sh.c
329 target/sh/memcpy-sh.S
330 target/sh/memmove-sh.S
331 target/sh/memset-sh.S
332 target/sh/strlen-sh.S
333 target/sh/system-sh.c
334 target/sh/archos/descramble.S
335 #endif /* SIMULATOR */
337 #elif defined(CPU_COLDFIRE)
339 #ifndef SIMULATOR
340 target/coldfire/crt0.S
341 #ifdef HAVE_PRIORITY_SCHEDULING
342 common/ffs.c
343 target/coldfire/ffs-coldfire.S
344 #endif
345 target/coldfire/memcpy-coldfire.S
346 target/coldfire/memmove-coldfire.S
347 target/coldfire/memset-coldfire.S
348 target/coldfire/strlen-coldfire.S
349 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
350  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
351 target/coldfire/memset16-coldfire.S
352 #endif
353 target/coldfire/kernel-coldfire.c
354 target/coldfire/system-coldfire.c
355 target/coldfire/timer-coldfire.c
356 #ifndef BOOTLOADER
357 target/coldfire/pcm-coldfire.c
358 #endif /* BOOTLOADER */
359 #if CONFIG_I2C == I2C_COLDFIRE
360 target/coldfire/i2c-coldfire.c
361 #endif /* CONFIG_I2C == I2C_COLDFIRE */
362 #endif /* SIMULATOR */
364 #elif defined(CPU_PP) || defined(CPU_ARM)
365 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
366 target/arm/memcpy-arm.S
367 target/arm/memmove-arm.S
368 common/strlen.c
369 #ifndef SIMULATOR
370 target/arm/memset-arm.S
371 target/arm/memset16-arm.S
372 #ifdef HAVE_PRIORITY_SCHEDULING
373 target/arm/ffs-arm.S
374 #endif
375 target/arm/system-arm.c
376 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
377 target/arm/i2c-pp.c
378 #elif CONFIG_I2C == I2C_PNX0101
379 target/arm/pnx0101/i2c-pnx0101.c
380 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
381 target/arm/i2c-telechips.c
382 #elif CONFIG_I2C == I2C_S3C2440
383 /* no i2c driver yet */
384 #elif CONFIG_I2C == I2C_S5L8700
385 target/arm/s5l8700/i2c-s5l8700.c
386 #endif
388 #if CONFIG_CPU == PNX0101
389 target/arm/pnx0101/kernel-pnx0101.c
390 target/arm/pnx0101/system-pnx0101.c
391 target/arm/pnx0101/timer-pnx0101.c
392 #endif
394 #if CONFIG_CPU == AS3525
395 target/arm/as3525/system-as3525.c
396 target/arm/as3525/kernel-as3525.c
397 target/arm/as3525/timer-as3525.c
398 target/arm/as3525/ata_sd_as3525.c
399 target/arm/as3525/power-as3525.c
400 target/arm/as3525/usb-as3525.c
401 target/arm/as3525/dma-pl081.c
402 target/arm/as3525/ascodec-as3525.c
403 #ifndef BOOTLOADER
404 target/arm/mmu-arm.S
405 drivers/generic_i2c.c
406 target/arm/adc-as3514.c
407 target/arm/as3525/audio-as3525.c
408 target/arm/as3525/debug-as3525.c
409 target/arm/as3525/fmradio-i2c-as3525.c
410 target/arm/as3525/i2s-as3525.c
411 target/arm/as3525/pcm-as3525.c
412 #endif /* BOOTLOADER */
413 #endif /* CONFIG_CPU == AS3525 */
415 #if defined(CPU_PP)
416 target/arm/kernel-pp.c
417 target/arm/timer-pp.c
418 #if CONFIG_CPU == PP5002
419 target/arm/system-pp5002.c
420 #elif defined CPU_PP502x
421 target/arm/system-pp502x.c
422 #endif
423 #ifdef BOOTLOADER
424 target/arm/crt0-pp-bl.S
425 #else
426 target/arm/pcm-pp.c
427 #if !defined(SANSA_E200) && !defined(SANSA_C200)
428 target/arm/audio-pp.c
429 #endif /* SANSA_E200 */
430 target/arm/crt0-pp.S
431 #endif
432 #elif CONFIG_CPU == PNX0101
433 target/arm/pnx0101/crt0-pnx0101.S
434 #elif CONFIG_CPU==DM320
435 target/arm/tms320dm320/crt0.S
436 #elif CONFIG_CPU==S3C2440
437 target/arm/s3c2440/crt0.S
438 #elif defined(CPU_TCC77X)
439 target/arm/tcc77x/crt0.S
440 #elif defined(CPU_TCC780X)
441 target/arm/tcc780x/crt0.S
442 #elif CONFIG_CPU==IMX31L
443 target/arm/imx31/crt0.S
444 #elif defined(CPU_S5L870X)
445 target/arm/s5l8700/crt0.S
446 #elif defined(CPU_ARM)
447 target/arm/crt0.S
448 #endif /* defined(CPU_*) */
449 #endif /* SIMULATOR */
451 #elif defined(CPU_MIPS)
452 #undef mips
453 /*target/mips/strlen.S*/
454 common/memmove.c
455 common/memset16.c
456 common/strlen.c
457 target/mips/ffs-mips.S
458 target/mips/memcpy-mips.S
459 target/mips/memset-mips.S
460 target/mips/mmu-mips.c
461 #if CONFIG_CPU==JZ4732
462 target/mips/ingenic_jz47xx/crt0.S
463 #endif /* CONFIG_CPU == JZ4732 */
465 #else
467 #ifdef HAVE_PRIORITY_SCHEDULING
468 common/ffs.c
469 #endif
470 common/memcpy.c
471 common/memmove.c
472 common/memset.c
473 common/memset16.c
474 common/strlen.c
475 #ifndef SIMULATOR
476 crt0.S
477 drivers/i2c.c
478 #endif /* SIMULATOR */
480 #endif /* defined(CPU_*) */
482 #ifdef ARCHOS_PLAYER
483 #ifndef SIMULATOR
484 target/sh/archos/ata-archos.c
485 target/sh/archos/timer-archos.c
486 target/sh/archos/ata-as-archos.S
487 target/sh/archos/player/button-player.c
488 target/sh/archos/player/hwcompat-player.c
489 target/sh/archos/player/lcd-as-player.S
490 target/sh/archos/player/lcd-player.c
491 target/sh/archos/player/power-player.c
492 target/sh/archos/player/powermgmt-player.c
493 target/sh/archos/player/usb-player.c
494 #endif /* SIMULATOR */
495 #endif /* ARCHOS_PLAYER */
497 #ifdef ARCHOS_RECORDER
498 #ifndef SIMULATOR
499 target/sh/archos/ata-archos.c
500 target/sh/archos/timer-archos.c
501 target/sh/archos/ata-as-archos.S
502 target/sh/archos/lcd-archos-bitmap.c
503 target/sh/archos/lcd-as-archos-bitmap.S   
504 target/sh/archos/recorder/button-recorder.c
505 target/sh/archos/recorder/power-recorder.c
506 target/sh/archos/recorder/powermgmt-recorder.c
507 target/sh/archos/recorder/usb-recorder.c
508 #endif /* SIMULATOR */
509 #endif /* ARCHOS_RECORDER */
511 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
512 #ifndef SIMULATOR
513 target/sh/archos/ata-archos.c
514 target/sh/archos/timer-archos.c
515 target/sh/archos/ata-as-archos.S
516 target/sh/archos/lcd-archos-bitmap.c
517 target/sh/archos/lcd-as-archos-bitmap.S
518 target/sh/archos/fm_v2/button-fm_v2.c
519 target/sh/archos/fm_v2/power-fm_v2.c
520 target/sh/archos/fm_v2/powermgmt-fm_v2.c
521 target/sh/archos/fm_v2/usb-fm_v2.c
522 #endif /* SIMULATOR */
523 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
525 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
526 #ifndef SIMULATOR
527 target/sh/archos/timer-archos.c
528 target/sh/archos/lcd-archos-bitmap.c
529 target/sh/archos/lcd-as-archos-bitmap.S
530 target/sh/archos/ondio/button-ondio.c
531 target/sh/archos/ondio/power-ondio.c
532 target/sh/archos/ondio/powermgmt-ondio.c
533 target/sh/archos/ondio/usb-ondio.c
534 #if (CONFIG_TUNER & TEA5767)
535 target/sh/archos/ondio/fmradio_i2c-ondio.c
536 #endif
537 #endif /* SIMULATOR */
538 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
540 #ifdef SANSA_E200
541 #ifndef SIMULATOR
542 target/arm/adc-as3514.c
543 target/arm/ascodec-pp.c
544 target/arm/ata-sd-pp.c
545 target/arm/lcd-as-memframe.S
546 target/arm/powermgmt-ascodec.c
547 target/arm/i2s-pp.c
548 target/arm/usb-fw-pp502x.c
549 target/arm/sandisk/backlight-c200_e200.c
550 target/arm/sandisk/power-c200_e200.c
551 target/arm/sandisk/sansa-e200/lcd-e200.c
552 target/arm/sandisk/sansa-e200/button-e200.c
553 target/arm/sandisk/sansa-e200/powermgmt-e200.c
554 #ifndef BOOTLOADER
555 target/arm/sandisk/audio-c200_e200.c
556 #endif /* BOOTLOADER */
557 #endif /* SIMULATOR */
558 #endif /* SANSA_E200 */
560 #ifdef SANSA_C200
561 #ifndef SIMULATOR
562 target/arm/adc-as3514.c
563 target/arm/ascodec-pp.c
564 target/arm/ata-sd-pp.c
565 target/arm/i2s-pp.c
566 target/arm/powermgmt-ascodec.c
567 target/arm/usb-fw-pp502x.c
568 target/arm/sandisk/backlight-c200_e200.c
569 target/arm/sandisk/power-c200_e200.c
570 target/arm/lcd-c200_c200v2.c
571 target/arm/sandisk/sansa-c200/lcd-as-c200.S
572 target/arm/sandisk/sansa-c200/button-c200.c
573 target/arm/sandisk/sansa-c200/powermgmt-c200.c
574 #ifndef BOOTLOADER
575 target/arm/sandisk/audio-c200_e200.c
576 #endif /* BOOTLOADER */
577 #endif /* SIMULATOR */
578 #endif /* SANSA_C200 */
580 #ifdef SANSA_VIEW
581 #ifndef SIMULATOR
582 /* target/arm/ascodec-pp.c */
583 target/arm/ata-sd-pp.c
584 target/arm/lcd-as-memframe.S
585 target/arm/i2s-pp.c
586 /* target/arm/usb-fw-pp502x.c */
587 target/arm/sandisk/sansa-view/backlight-view.c
588 target/arm/sandisk/sansa-view/adc-view.c
589 target/arm/sandisk/sansa-view/power-view.c
590 target/arm/sandisk/sansa-view/lcd-view.c
591 target/arm/sandisk/sansa-view/button-view.c
592 target/arm/sandisk/sansa-view/powermgmt-view.c
593 #ifndef BOOTLOADER
594 /* target/arm/sandisk/audio-view.c */
595 #endif /* BOOTLOADER */
596 #endif /* SIMULATOR */
597 #endif /* SANSA_VIEW */
599 #ifdef PHILIPS_SA9200
600 #ifndef SIMULATOR
601 #ifndef BOOTLOADER
602 drivers/synaptics-mep.c
603 #endif /* BOOTLOADER */
604 target/arm/adc-as3514.c
605 target/arm/ascodec-pp.c
606 target/arm/ata-sd-pp.c
607 target/arm/i2s-pp.c
608 target/arm/powermgmt-ascodec.c
609 target/arm/usb-fw-pp502x.c
610 target/arm/philips/sa9200/backlight-sa9200.c
611 target/arm/philips/sa9200/button-sa9200.c
612 target/arm/philips/sa9200/lcd-sa9200.c
613 target/arm/philips/sa9200/power-sa9200.c
614 target/arm/philips/sa9200/powermgmt-sa9200.c
615 #endif /* SIMULATOR */
616 #endif /* PHILIPS_SA9200 */
618 #ifdef PHILIPS_HDD1630
619 #ifndef SIMULATOR
620 #ifndef BOOTLOADER
621 drivers/synaptics-mep.c
622 #endif /* BOOTLOADER */
623 target/arm/ata-as-arm.S
624 target/arm/ata-pp5020.c
625 target/arm/wmcodec-pp.c
626 target/arm/i2s-pp.c
627 target/arm/adc-pp5020.c
628 target/arm/philips/hdd1630/backlight-hdd1630.c
629 target/arm/philips/hdd1630/button-hdd1630.c
630 target/arm/philips/hdd1630/fmradio_i2c-hdd1630.c
631 target/arm/philips/hdd1630/lcd-hdd1630.c
632 target/arm/philips/hdd1630/lcd-as-hdd1630.S
633 target/arm/philips/hdd1630/power-hdd1630.c
634 target/arm/philips/hdd1630/powermgmt-hdd1630.c
635 target/arm/usb-fw-pp502x.c
636 #endif /* SIMULATOR */
637 #endif /* PHILIPS_HDD1630 */
639 #ifdef IAUDIO_X5
640 #ifndef SIMULATOR
641 target/coldfire/ata-as-coldfire.S
642 target/coldfire/pcf50606-coldfire.c
643 target/coldfire/iaudio/adc-iaudio.c
644 target/coldfire/iaudio/ata-iaudio.c
645 target/coldfire/iaudio/fmradio_i2c-iaudio.c
646 target/coldfire/iaudio/lcd-remote-as-iaudio.S
647 target/coldfire/iaudio/lcd-remote-iaudio.c
648 target/coldfire/iaudio/pcf50606-iaudio.c
649 target/coldfire/iaudio/power-x5m5.c
650 target/coldfire/iaudio/powermgmt-iaudio.c
651 target/coldfire/iaudio/system-iaudio.c
652 target/coldfire/iaudio/usb-iaudio.c
653 target/coldfire/iaudio/x5/backlight-x5.c
654 target/coldfire/iaudio/x5/button-x5.c
655 target/coldfire/iaudio/x5/ds2411-x5.c
656 target/coldfire/iaudio/x5/lcd-as-x5.S
657 target/coldfire/iaudio/x5/lcd-x5.c
658 target/coldfire/iaudio/x5/m5636-x5.c
659 #ifndef BOOTLOADER
660 target/coldfire/iaudio/audio-iaudio.c
661 #endif
662 #endif /* SIMULATOR */
663 #endif /* IAUDIO_X5 */
665 #ifdef IAUDIO_M5
666 #ifndef SIMULATOR
667 target/coldfire/ata-as-coldfire.S
668 target/coldfire/pcf50606-coldfire.c
669 target/coldfire/iaudio/adc-iaudio.c
670 target/coldfire/iaudio/ata-iaudio.c
671 #ifdef HAVE_FMRADIO_IN  /* FM radio mod */
672 target/coldfire/iaudio/fmradio_i2c-iaudio.c
673 #endif
674 target/coldfire/iaudio/lcd-remote-as-iaudio.S
675 target/coldfire/iaudio/lcd-remote-iaudio.c
676 target/coldfire/iaudio/m5/backlight-m5.c
677 target/coldfire/iaudio/m5/button-m5.c
678 target/coldfire/iaudio/m5/lcd-as-m5.S
679 target/coldfire/iaudio/m5/lcd-m5.c
680 target/coldfire/iaudio/pcf50606-iaudio.c
681 target/coldfire/iaudio/power-x5m5.c
682 target/coldfire/iaudio/powermgmt-iaudio.c
683 target/coldfire/iaudio/system-iaudio.c
684 target/coldfire/iaudio/usb-iaudio.c
685 #ifndef BOOTLOADER
686 target/coldfire/iaudio/audio-iaudio.c
687 #endif
688 #endif /* SIMULATOR */
689 #endif /* IAUDIO_M5 */
691 #ifdef IAUDIO_M3
692 #ifndef SIMULATOR
693 target/coldfire/ata-as-coldfire.S
694 target/coldfire/iaudio/fmradio_i2c-iaudio.c
695 target/coldfire/iaudio/m3/adc-m3.c
696 target/coldfire/iaudio/m3/ata-m3.c
697 target/coldfire/iaudio/m3/backlight-m3.c
698 target/coldfire/iaudio/m3/button-m3.c
699 target/coldfire/iaudio/m3/lcd-m3.c
700 target/coldfire/iaudio/m3/lcd-as-m3.S
701 target/coldfire/iaudio/m3/power-m3.c
702 target/coldfire/iaudio/m3/powermgmt-m3.c
703 target/coldfire/iaudio/m3/system-m3.c
704 target/coldfire/iaudio/m3/usb-m3.c
705 #ifndef BOOTLOADER
706 target/coldfire/iaudio/audio-iaudio.c
707 #endif
708 #endif /* SIMULATOR */
709 #endif /* IAUDIO_M3 */
711 #ifdef IRIVER_IFP7XX_SERIES
712 #ifdef STUB
713 ifp_usb_serial.c
714 common/sscanf.c
715 #endif /* STUB */
716 #endif /* IRIVER_IFP7XX_SERIES */
718 #ifdef IRIVER_H300_SERIES
719 #ifndef SIMULATOR
720 target/coldfire/ata-as-coldfire.S
721 target/coldfire/pcf50606-coldfire.c
722 target/coldfire/iriver/ata-iriver.c
723 target/coldfire/iriver/lcd-remote-iriver.c
724 target/coldfire/iriver/lcd-remote-as-iriver.S
725 target/coldfire/iriver/system-iriver.c
726 target/coldfire/iriver/fmradio_i2c-iriver.c
727 target/coldfire/iriver/h300/sw_i2c-h300.c
728 target/coldfire/iriver/h300/adc-h300.c
729 target/coldfire/iriver/h300/backlight-h300.c
730 target/coldfire/iriver/h300/button-h300.c
731 target/coldfire/iriver/h300/pcf50606-h300.c
732 target/coldfire/iriver/h300/lcd-as-h300.S
733 target/coldfire/iriver/h300/lcd-h300.c
734 target/coldfire/iriver/h300/power-h300.c
735 target/coldfire/iriver/h300/powermgmt-h300.c
736 target/coldfire/iriver/h300/usb-h300.c
737 #ifndef BOOTLOADER
738 target/coldfire/iriver/audio-iriver.c
739 target/coldfire/iriver/udacodec-iriver.c
740 #endif
741 #endif /* SIMULATOR */
742 #endif /* IRIVER_H300_SERIES */
744 #ifdef IRIVER_H100_SERIES
745 #ifndef SIMULATOR
746 drivers/sw_i2c.c
747 target/coldfire/ata-as-coldfire.S
748 target/coldfire/iriver/ata-iriver.c
749 target/coldfire/iriver/lcd-remote-iriver.c
750 target/coldfire/iriver/lcd-remote-as-iriver.S
751 target/coldfire/iriver/system-iriver.c
752 target/coldfire/iriver/fmradio_i2c-iriver.c
753 target/coldfire/iriver/h100/adc-h100.c
754 target/coldfire/iriver/h100/backlight-h100.c
755 target/coldfire/iriver/h100/button-h100.c
756 target/coldfire/iriver/h100/lcd-as-h100.S
757 target/coldfire/iriver/h100/lcd-h100.c
758 target/coldfire/iriver/h100/power-h100.c
759 target/coldfire/iriver/h100/powermgmt-h100.c
760 #ifndef BOOTLOADER
761 target/coldfire/iriver/audio-iriver.c
762 target/coldfire/iriver/udacodec-iriver.c
763 target/coldfire/iriver/h100/spdif-h100.c
764 #endif
765 target/coldfire/iriver/h100/usb-h100.c
766 #endif /* SIMULATOR */
767 #endif /* IRIVER_H100_SERIES */
769 #ifdef IRIVER_H10
770 #ifndef SIMULATOR
771 target/arm/ata-as-arm.S
772 target/arm/ata-pp5020.c
773 target/arm/wmcodec-pp.c
774 target/arm/i2s-pp.c
775 target/arm/adc-pp5020.c
776 target/arm/iriver/h10/backlight-h10.c
777 target/arm/iriver/h10/button-h10.c
778 target/arm/iriver/h10/fmradio_i2c-h10.c
779 target/arm/iriver/h10/lcd-h10_20gb.c
780 target/arm/iriver/h10/lcd-as-h10.S
781 target/arm/iriver/h10/power-h10.c
782 target/arm/iriver/h10/powermgmt-h10.c
783 target/arm/usb-fw-pp502x.c
784 #endif /* SIMULATOR */
785 #endif /* IRIVER_H10 */
787 #ifdef IRIVER_H10_5GB
788 #ifndef SIMULATOR
789 target/arm/ata-as-arm.S
790 target/arm/ata-pp5020.c
791 target/arm/wmcodec-pp.c
792 target/arm/i2s-pp.c
793 target/arm/adc-pp5020.c
794 target/arm/iriver/h10/backlight-h10.c
795 target/arm/iriver/h10/button-h10.c
796 target/arm/iriver/h10/fmradio_i2c-h10.c
797 target/arm/iriver/h10/lcd-h10_5gb.c
798 target/arm/iriver/h10/power-h10.c
799 target/arm/iriver/h10/powermgmt-h10.c
800 target/arm/usb-fw-pp502x.c
801 #endif /* SIMULATOR */
802 #endif /* IRIVER_H10_5GB */
804 #ifdef GIGABEAT_F
805 #ifndef SIMULATOR
806 target/arm/lcd-as-memframe.S
807 target/arm/mmu-arm.S
808 target/arm/s3c2440/debug-s3c2440.c
809 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
810 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
811 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
812 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
813 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
814 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
815 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
816 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
817 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
818 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
819 #ifndef BOOTLOADER
820 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
821 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
822 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
823 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
824 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
825 #endif
826 #endif /* SIMULATOR */
827 #endif /* GIGABEAT_F */
829 #ifdef GIGABEAT_S
830 #ifndef SIMULATOR
831 target/arm/lcd-as-memframe.S
832 target/arm/mmu-arm.S
833 target/arm/imx31/ccm-imx31.c
834 target/arm/imx31/debug-imx31.c
835 target/arm/imx31/rolo_restart.S
836 target/arm/imx31/sdma-imx31.c
837 target/arm/imx31/gigabeat-s/adc-imx31.c
838 target/arm/imx31/gigabeat-s/ata-imx31.c
839 target/arm/imx31/gigabeat-s/avic-imx31.c
840 target/arm/imx31/gigabeat-s/backlight-imx31.c
841 target/arm/imx31/gigabeat-s/button-imx31.c
842 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
843 target/arm/imx31/gigabeat-s/gpio-imx31.c
844 target/arm/imx31/gigabeat-s/kernel-imx31.c
845 target/arm/imx31/gigabeat-s/i2c-imx31.c
846 target/arm/imx31/gigabeat-s/i2s-imx31.c
847 target/arm/imx31/gigabeat-s/lcd-imx31.c
848 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
849 target/arm/imx31/gigabeat-s/mc13783-imx31.c
850 target/arm/imx31/gigabeat-s/mmu-imx31.c
851 target/arm/imx31/gigabeat-s/power-imx31.c
852 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
853 target/arm/imx31/gigabeat-s/spi-imx31.c
854 target/arm/imx31/gigabeat-s/system-imx31.c
855 target/arm/imx31/gigabeat-s/usb-imx31.c
856 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
857 #ifndef BOOTLOADER
858 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
859 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
860 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
861 target/arm/imx31/gigabeat-s/pcm-imx31.c
862 target/arm/imx31/gigabeat-s/timer-imx31.c
863 #endif
864 #endif /* SIMULATOR */
865 #endif /* GIGABEAT_S */
867 #if CONFIG_CPU == DM320
868 target/arm/tms320dm320/debug-dm320.c
869 target/arm/tms320dm320/dsp-dm320.c
870 target/arm/tms320dm320/i2c-dm320.c
871 target/arm/tms320dm320/kernel-dm320.c
872 target/arm/tms320dm320/spi-dm320.c
873 target/arm/tms320dm320/system-dm320.c
874 target/arm/tms320dm320/timer-dm320.c
875 target/arm/tms320dm320/uart-dm320.c
876 #endif /* CONFIG_CPU == DM320 */
878 #ifdef MROBE_500
879 #ifndef SIMULATOR
880 target/arm/lcd-as-memframe.S
881 target/arm/mmu-arm.S
882 target/arm/tms320dm320/mrobe-500/adc-mr500.c
883 target/arm/tms320dm320/mrobe-500/ata-mr500.c
884 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
885 target/arm/tms320dm320/mrobe-500/button-mr500.c
886 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
887 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
888 #if defined(HAVE_REMOTE_LCD)
889 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
890 #endif
891 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
892 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
893 target/arm/tms320dm320/mrobe-500/power-mr500.c
894 target/arm/tms320dm320/mrobe-500/usb-mr500.c
895 #endif /* SIMULATOR */
896 #endif /* MROBE_500 */
898 #ifdef CREATIVE_ZVx
899 #ifndef SIMULATOR
900 target/arm/ata-as-arm.S
901 target/arm/lcd-as-memframe.S
902 target/arm/mmu-arm.S
903 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
904 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
905 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
906 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
907 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
908 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
909 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
910 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
911 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
912 #endif /* SIMULATOR */
913 #endif /* CREATIVE_ZVx */
915 #ifdef MROBE_100
916 #ifndef SIMULATOR
917 #ifndef BOOTLOADER
918 drivers/synaptics-mep.c
919 target/arm/olympus/mrobe-100/lcd-remote-mr100.c
920 #endif /* BOOTLOADER */
921 drivers/sw_i2c.c
922 target/arm/ata-as-arm.S
923 target/arm/ata-pp5020.c
924 target/arm/wmcodec-pp.c
925 target/arm/i2s-pp.c
926 target/arm/adc-pp5020.c
927 target/arm/olympus/mrobe-100/backlight-mr100.c
928 target/arm/olympus/mrobe-100/button-mr100.c
929 target/arm/olympus/mrobe-100/lcd-mr100.c
930 target/arm/olympus/mrobe-100/lcd-as-mr100.S
931 target/arm/olympus/mrobe-100/power-mr100.c
932 target/arm/olympus/mrobe-100/powermgmt-mr100.c
933 target/arm/usb-fw-pp502x.c
934 #endif /* SIMULATOR */
935 #endif /* MROBE_100 */
937 #ifdef ELIO_TPJ1022
938 #ifndef SIMULATOR
939 target/arm/ata-as-arm.S
940 target/arm/ata-pp5020.c
941 target/arm/wmcodec-pp.c
942 target/arm/i2s-pp.c
943 target/arm/adc-pp5020.c
944 target/arm/tatung/tpj1022/backlight-tpj1022.c
945 target/arm/tatung/tpj1022/button-tpj1022.c
946 target/arm/tatung/tpj1022/lcd-tpj1022.c
947 target/arm/tatung/tpj1022/power-tpj1022.c
948 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
949 target/arm/usb-fw-pp502x.c
950 #endif /* SIMULATOR */
951 #endif /* ELIO_TPJ1022 */
953 #ifdef IPOD_4G
954 #ifndef SIMULATOR
955 drivers/pcf50605.c
956 target/arm/wmcodec-pp.c
957 target/arm/i2s-pp.c
958 target/arm/ata-as-arm.S
959 target/arm/ata-pp5020.c
960 target/arm/ipod/adc-ipod-pcf.c
961 target/arm/ipod/backlight-4g_color.c
962 target/arm/ipod/button-clickwheel.c
963 target/arm/ipod/lcd-as-gray.S
964 target/arm/ipod/lcd-gray.c
965 target/arm/ipod/power-ipod.c
966 target/arm/ipod/powermgmt-ipod-pcf.c
967 target/arm/usb-fw-pp502x.c
968 #endif /* SIMULATOR */
969 #endif /* IPOD_4G */
971 #ifdef IPOD_COLOR
972 #ifndef SIMULATOR
973 drivers/pcf50605.c
974 target/arm/ata-as-arm.S
975 target/arm/ata-pp5020.c
976 target/arm/wmcodec-pp.c
977 target/arm/i2s-pp.c
978 target/arm/ipod/adc-ipod-pcf.c
979 target/arm/ipod/backlight-4g_color.c
980 target/arm/ipod/button-clickwheel.c
981 target/arm/ipod/lcd-color_nano.c
982 target/arm/ipod/power-ipod.c
983 target/arm/ipod/powermgmt-ipod-pcf.c
984 target/arm/usb-fw-pp502x.c
985 #endif /* SIMULATOR */
986 #endif /* IPOD_COLOR */
988 #ifdef IPOD_NANO
989 #ifndef SIMULATOR
990 drivers/pcf50605.c
991 target/arm/ata-as-arm.S
992 target/arm/ata-pp5020.c
993 target/arm/wmcodec-pp.c
994 target/arm/i2s-pp.c
995 target/arm/ipod/adc-ipod-pcf.c
996 target/arm/ipod/backlight-nano_video.c
997 target/arm/ipod/button-clickwheel.c
998 target/arm/ipod/lcd-color_nano.c
999 target/arm/ipod/power-ipod.c
1000 target/arm/ipod/powermgmt-ipod-pcf.c
1001 target/arm/usb-fw-pp502x.c
1002 #endif /* SIMULATOR */
1003 #endif /* IPOD_NANO */
1005 #ifdef IPOD_VIDEO
1006 #ifndef SIMULATOR
1007 drivers/pcf50605.c
1008 target/arm/ata-as-arm.S
1009 target/arm/ata-pp5020.c
1010 target/arm/wmcodec-pp.c
1011 target/arm/i2s-pp.c
1012 target/arm/ipod/adc-ipod-pcf.c
1013 target/arm/ipod/backlight-nano_video.c
1014 target/arm/ipod/button-clickwheel.c
1015 target/arm/ipod/power-ipod.c
1016 target/arm/ipod/powermgmt-ipod-pcf.c
1017 target/arm/ipod/video/lcd-as-video.S
1018 target/arm/ipod/video/lcd-video.c
1019 target/arm/usb-fw-pp502x.c
1020 #endif /* SIMULATOR */
1021 #endif /* IPOD_VIDEO */
1023 #ifdef IPOD_3G
1024 #ifndef SIMULATOR
1025 drivers/pcf50605.c
1026 target/arm/ata-pp5002.c
1027 target/arm/wmcodec-pp.c
1028 target/arm/i2s-pp.c
1029 target/arm/ipod/adc-ipod-pcf.c
1030 target/arm/ipod/3g/backlight-3g.c
1031 target/arm/ipod/button-1g-3g.c
1032 target/arm/ipod/lcd-as-gray.S
1033 target/arm/ipod/lcd-gray.c
1034 target/arm/ipod/power-ipod.c
1035 target/arm/ipod/powermgmt-ipod-pcf.c
1036 target/arm/usb-fw-pp5002.c
1037 #endif /* SIMULATOR */
1038 #endif /* IPOD_3G */
1040 #ifdef IPOD_1G2G
1041 #ifndef SIMULATOR
1042 target/arm/ata-pp5002.c
1043 target/arm/wmcodec-pp.c
1044 target/arm/i2s-pp.c
1045 target/arm/ipod/1g2g/adc-ipod-1g2g.c
1046 target/arm/ipod/1g2g/backlight-1g2g.c
1047 target/arm/ipod/1g2g/powermgmt-1g2g.c
1048 target/arm/ipod/button-1g-3g.c
1049 target/arm/ipod/lcd-as-gray.S
1050 target/arm/ipod/lcd-gray.c
1051 target/arm/ipod/power-ipod.c
1052 target/arm/usb-fw-pp5002.c
1053 #endif /* SIMULATOR */
1054 #endif /* IPOD_1G2G */
1056 #ifdef IPOD_MINI
1057 #ifndef SIMULATOR
1058 drivers/pcf50605.c
1059 target/arm/ata-as-arm.S
1060 target/arm/ata-pp5020.c
1061 target/arm/wmcodec-pp.c
1062 target/arm/i2s-pp.c
1063 target/arm/ipod/adc-ipod-pcf.c
1064 target/arm/ipod/backlight-mini1g_mini2g.c
1065 target/arm/ipod/button-mini1g.c
1066 target/arm/ipod/lcd-as-gray.S
1067 target/arm/ipod/lcd-gray.c
1068 target/arm/ipod/power-ipod.c
1069 target/arm/ipod/powermgmt-ipod-pcf.c
1070 target/arm/usb-fw-pp502x.c
1071 #endif /* SIMULATOR */
1072 #endif /* IPOD_MINI */
1074 #ifdef IPOD_MINI2G
1075 #ifndef SIMULATOR
1076 drivers/pcf50605.c
1077 target/arm/ata-as-arm.S
1078 target/arm/ata-pp5020.c
1079 target/arm/wmcodec-pp.c
1080 target/arm/i2s-pp.c
1081 target/arm/ipod/adc-ipod-pcf.c
1082 target/arm/ipod/backlight-mini1g_mini2g.c
1083 target/arm/ipod/button-clickwheel.c
1084 target/arm/ipod/lcd-as-gray.S
1085 target/arm/ipod/lcd-gray.c
1086 target/arm/ipod/power-ipod.c
1087 target/arm/ipod/powermgmt-ipod-pcf.c
1088 target/arm/usb-fw-pp502x.c
1089 #endif /* SIMULATOR */
1090 #endif /* IPOD_MINI2G */
1092 #ifdef IRIVER_IFP7XX
1093 #ifndef SIMULATOR
1094 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1095 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1096 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1097 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1098 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1099 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1100 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1101 #ifndef BOOTLOADER
1102 target/arm/pnx0101/pcm-pnx0101.c
1103 #endif /* BOOTLOADER */
1104 #endif /* SIMULATOR */
1105 #endif /* IRIVER_IFP7XX */
1107 #ifdef LOGIK_DAX
1108 #ifndef SIMULATOR
1109 drivers/nand_id.c
1110 target/arm/lcd-ssd1815.c
1111 target/arm/tcc77x/adc-tcc77x.c
1112 target/arm/tcc77x/kernel-tcc77x.c
1113 target/arm/tcc77x/powermgmt-tcc77x.c
1114 target/arm/tcc77x/system-tcc77x.c
1115 target/arm/tcc77x/timer-tcc77x.c
1116 target/arm/usb-tcc.c
1117 target/arm/tcc77x/logikdax/button-logikdax.c
1118 target/arm/tcc77x/logikdax/power-logikdax.c
1119 #ifndef BOOTLOADER
1120 target/arm/wmcodec-telechips.c
1121 target/arm/tcc77x/debug-tcc77x.c
1122 target/arm/pcm-telechips.c
1123 target/arm/tcc77x/logikdax/audio-logikdax.c
1124 #endif /* BOOTLOADER */
1125 #endif /* SIMULATOR */
1126 #endif /* LOGIK_DAX */
1128 #ifdef SANSA_M200
1129 #ifndef SIMULATOR
1130 drivers/nand_id.c
1131 target/arm/lcd-ssd1815.c
1132 target/arm/tcc77x/adc-tcc77x.c
1133 target/arm/tcc77x/kernel-tcc77x.c
1134 target/arm/tcc77x/powermgmt-tcc77x.c
1135 target/arm/tcc77x/system-tcc77x.c
1136 target/arm/tcc77x/timer-tcc77x.c
1137 target/arm/usb-tcc.c
1138 target/arm/tcc77x/m200/button-m200.c
1139 target/arm/tcc77x/m200/power-m200.c
1140 #ifndef BOOTLOADER
1141 target/arm/wmcodec-telechips.c
1142 target/arm/tcc77x/debug-tcc77x.c
1143 target/arm/pcm-telechips.c
1144 target/arm/tcc77x/m200/audio-m200.c
1145 #endif /* BOOTLOADER */
1146 #endif /* SIMULATOR */
1147 #endif /* SANSA_M200 */
1149 #ifdef SANSA_C100
1150 #ifndef SIMULATOR
1151 drivers/nand_id.c
1152 target/arm/usb-tcc.c
1153 target/arm/tcc77x/system-tcc77x.c
1154 target/arm/tcc77x/kernel-tcc77x.c
1155 target/arm/tcc77x/timer-tcc77x.c
1156 target/arm/tcc77x/adc-tcc77x.c
1157 target/arm/tcc77x/powermgmt-tcc77x.c
1158 target/arm/tcc77x/c100/lcd-S6B33B2.c
1159 target/arm/tcc77x/c100/button-c100.c
1160 target/arm/tcc77x/c100/power-c100.c
1161 #ifndef BOOTLOADER
1162 target/arm/tcc77x/debug-tcc77x.c
1163 target/arm/pcm-telechips.c
1164 target/arm/tcc77x/c100/audio-c100.c
1165 #endif /* BOOTLOADER */
1166 #endif /* SIMULATOR */
1167 #endif /* SANSA_C100 */
1169 #ifdef SANSA_CLIP
1170 #ifndef SIMULATOR
1171 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1172 target/arm/as3525/sansa-clip/lcd-as-clip.S
1173 target/arm/as3525/sansa-clip/button-clip.c
1174 target/arm/as3525/sansa-clip/backlight-clip.c
1175 #ifndef BOOTLOADER
1176 target/arm/powermgmt-ascodec.c
1177 target/arm/as3525/sansa-clip/powermgmt-clip.c
1178 #endif /* !BOOTLOADER */
1179 #endif /* !SIMULATOR */
1180 #endif /* SANSA_CLIP */
1182 #ifdef SANSA_E200V2
1183 #ifndef SIMULATOR
1184 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1185 target/arm/as3525/lcd-as-e200v2-fuze.S
1186 target/arm/as3525/button-e200v2-fuze.c
1187 target/arm/as3525/backlight-e200v2-fuze.c
1188 #ifndef BOOTLOADER
1189 target/arm/powermgmt-ascodec.c
1190 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1191 #endif /* !BOOTLOADER */
1192 #endif /* !SIMULATOR */
1193 #endif /* SANSA_E200V2 */
1195 #ifdef SANSA_C200V2
1196 #ifndef SIMULATOR
1197 target/arm/lcd-c200_c200v2.c
1198 target/arm/as3525/sansa-c200v2/button-c200v2.c
1199 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1200 #ifndef BOOTLOADER
1201 target/arm/as3525/powermgmt-as3525.c
1202 #endif /* !BOOTLOADER */
1203 #endif /* !SIMULATOR */
1204 #endif /* SANSA_E200V2 */
1206 #ifdef SANSA_M200V4
1207 #ifndef SIMULATOR
1208 target/arm/lcd-ssd1815.c
1209 target/arm/as3525/sansa-m200v4/button-m200v4.c
1210 #ifndef BOOTLOADER
1211 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1212 #endif /* !BOOTLOADER */
1213 #endif /* !SIMULATOR */
1214 #endif /* SANSA_M200V4 */
1216 #ifdef SANSA_FUZE
1217 #ifndef SIMULATOR
1218 target/arm/as3525/button-e200v2-fuze.c
1219 target/arm/as3525/sansa-fuze/lcd-fuze.c
1220 target/arm/as3525/lcd-as-e200v2-fuze.S
1221 target/arm/as3525/backlight-e200v2-fuze.c
1222 #ifndef BOOTLOADER
1223 target/arm/powermgmt-ascodec.c
1224 target/arm/as3525/sansa-fuze/powermgmt-fuze.c
1225 #endif /* !BOOTLOADER */
1226 #endif /* !SIMULATOR */
1227 #endif /* SANSA_FUZE */
1229 #ifdef IAUDIO_7
1230 #ifndef SIMULATOR
1231 drivers/nand_id.c
1232 drivers/pcf50606.c
1233 target/arm/usb-tcc.c
1234 target/arm/tcc77x/system-tcc77x.c
1235 target/arm/tcc77x/kernel-tcc77x.c
1236 target/arm/tcc77x/timer-tcc77x.c
1237 target/arm/tcc77x/adc-tcc77x.c
1238 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1239 target/arm/tcc77x/iaudio7/power-iaudio7.c
1240 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1241 target/arm/tcc77x/iaudio7/button-iaudio7.c
1242 target/arm/tcc77x/iaudio7/ata2501.c
1243 #ifndef BOOTLOADER
1244 target/arm/wmcodec-telechips.c
1245 target/arm/pcm-telechips.c
1246 target/arm/tcc77x/debug-tcc77x.c
1247 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1248 #endif /* BOOTLOADER */
1249 #endif /* SIMULATOR */
1250 #endif /* IAUDIO_7 */
1252 #ifdef COWON_D2
1253 #ifndef SIMULATOR
1254 drivers/nand_id.c
1255 drivers/pcf50606.c
1256 drivers/pcf50635.c
1257 target/arm/lcd-as-memframe.S
1258 target/arm/tcc780x/adc-tcc780x.c
1259 target/arm/tcc780x/system-tcc780x.c
1260 target/arm/tcc780x/kernel-tcc780x.c
1261 target/arm/tcc780x/sd-tcc780x.c
1262 target/arm/tcc780x/cowond2/button-cowond2.c
1263 target/arm/tcc780x/cowond2/lcd-cowond2.c
1264 target/arm/tcc780x/cowond2/power-cowond2.c
1265 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1266 target/arm/tcc780x/cowond2/backlight-cowond2.c
1267 target/arm/usb-tcc.c
1268 target/arm/mmu-arm.S
1269 #ifndef BOOTLOADER
1270 target/arm/tcc780x/timer-tcc780x.c
1271 target/arm/wmcodec-telechips.c
1272 target/arm/tcc780x/debug-tcc780x.c
1273 target/arm/pcm-telechips.c
1274 target/arm/tcc780x/cowond2/audio-cowond2.c
1275 #endif /* BOOTLOADER */
1276 #endif /* SIMULATOR */
1277 #endif /* COWON_D2 */
1279 #ifdef CPU_S5L870X
1280 target/arm/mmu-arm.S
1281 target/arm/s5l8700/system-s5l8700.c
1282 #ifndef SIMULATOR
1283 #ifndef BOOTLOADER
1284 target/arm/s5l8700/timer-s5l8700.c
1285 #endif /* BOOTLOADER */
1286 #endif /* SIMULATOR */
1287 #endif
1289 #ifdef MEIZU_M6SL
1290 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1291 drivers/qt1106.c
1292 #ifndef SIMULATOR
1293 #ifndef BOOTLOADER
1294 #endif /* BOOTLOADER */
1295 #endif /* SIMULATOR */
1296 #endif /* MEIZU_M6SL */
1298 #ifdef MEIZU_M6SP
1299 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1300 #ifndef SIMULATOR
1301 #ifndef BOOTLOADER
1302 #endif /* BOOTLOADER */
1303 #endif /* SIMULATOR */
1304 #endif /* MEIZU_M6SP */
1306 #ifdef MEIZU_M3
1307 target/arm/s5l8700/backlight-meizu.c
1308 target/arm/s5l8700/kernel-s5l8700.c
1309 target/arm/s5l8700/meizu-m3/lcd-m3.c
1310 drivers/qt1106.c
1311 #ifndef SIMULATOR
1312 #ifndef BOOTLOADER
1313 target/arm/s5l8700/dma-s5l8700.c
1314 target/arm/s5l8700/pcm-s5l8700.c
1315 target/arm/s5l8700/udacodec-meizu.c
1316 #endif /* BOOTLOADER */
1317 #endif /* SIMULATOR */
1318 #endif /* MEIZU_M3 */
1320 #ifdef IPOD_NANO2G
1321 drivers/audio/wm8975.c
1322 target/arm/ipod/button-clickwheel.c
1323 target/arm/s5l8700/kernel-s5l8700.c
1324 target/arm/s5l8700/wmcodec-s5l8700.c
1325 target/arm/s5l8700/pcm-s5l8700.c
1326 target/arm/s5l8700/adc-s5l8700.c
1327 target/arm/s5l8700/debug-s5l8700.c
1328 target/arm/s5l8700/dma-s5l8700.c
1329 target/arm/s5l8700/usb-s5l8700.c
1330 target/arm/s5l8700/ipodnano2g/backlight-nano2g.c
1331 target/arm/s5l8700/ipodnano2g/lcd-nano2g.c
1332 target/arm/s5l8700/ipodnano2g/powermgmt-nano2g.c
1333 target/arm/s5l8700/ipodnano2g/power-nano2g.c
1334 target/arm/s5l8700/ipodnano2g/audio-nano2g.c
1335 target/arm/s5l8700/ipodnano2g/ftl-nano2g.c
1336 target/arm/s5l8700/ipodnano2g/nand-nano2g.c
1337 target/arm/s5l8700/ipodnano2g/pmu-nano2g.c
1338 target/arm/s5l8700/ipodnano2g/rtc-nano2g.c
1339 #endif
1341 #ifndef SIMULATOR
1342 #if CONFIG_CPU == JZ4732
1343 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1344 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1345 target/mips/ingenic_jz47xx/debug-jz4740.c
1346 target/mips/ingenic_jz47xx/fmradio-i2c-jz4740.c
1347 target/mips/ingenic_jz47xx/kernel-jz4740.c
1348 target/mips/ingenic_jz47xx/i2c-jz4740.c
1349 target/mips/ingenic_jz47xx/lcd-jz4740.c
1350 target/mips/ingenic_jz47xx/system-jz4740.c
1351 target/mips/ingenic_jz47xx/usb-jz4740.c
1352 target/mips/ingenic_jz47xx/timer-jz4740.c
1353 #ifndef BOOTLOADER
1354 target/mips/ingenic_jz47xx/codec-jz4740.c
1355 target/mips/ingenic_jz47xx/pcm-jz4740.c
1356 #endif /* BOOTLOADER */
1357 drivers/nand_id.c
1358 #endif /* CONFIG_CPU == JZ4732 */
1360 #if defined(ONDA_VX747) || defined(ONDA_VX747P) || defined(ONDA_VX777)
1361 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1362 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1363 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1364 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1365 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1366 #endif /* ONDA_VX747 || ONDA_VX747P || ONDA_VX777 */
1368 #ifdef ONDA_VX767
1369 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1370 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1371 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1372 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1373 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1374 #endif /* ONDA_VX767 */
1376 #if defined(LYRE_PROTO1)
1377 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1378 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1379 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1380 target/arm/at91sam/lyre_proto1/crt0.S
1381 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1382 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1383 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1384 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1385 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1386 #endif
1387 #endif /* SIMULATOR */
1389 #ifdef SAMSUNG_YH820
1390 #ifndef SIMULATOR
1391 target/arm/ata-as-arm.S
1392 target/arm/ata-pp5020.c
1393 target/arm/adc-pp5020.c
1394 target/arm/i2s-pp.c
1395 target/arm/usb-fw-pp502x.c
1396 target/arm/samsung/akcodec-yh82x_yh92x.c
1397 target/arm/samsung/button-yh82x_yh92x.c
1398 target/arm/samsung/power-yh82x_yh92x.c
1399 target/arm/samsung/yh820/backlight-yh820.c
1400 target/arm/samsung/yh820/lcd-yh820.c
1401 target/arm/samsung/yh820/lcd-as-yh820.S
1402 target/arm/samsung/yh820/powermgmt-yh820.c
1403 #endif /* SIMULATOR */
1404 #endif /* SAMSUNG_YH820 */
1406 #ifdef SAMSUNG_YH920
1407 #ifndef SIMULATOR
1408 target/arm/ata-as-arm.S
1409 target/arm/ata-pp5020.c
1410 target/arm/adc-pp5020.c
1411 target/arm/i2s-pp.c
1412 target/arm/usb-fw-pp502x.c
1413 target/arm/samsung/akcodec-yh82x_yh92x.c
1414 target/arm/samsung/button-yh82x_yh92x.c
1415 target/arm/samsung/power-yh82x_yh92x.c
1416 target/arm/samsung/yh920/backlight-yh920.c
1417 target/arm/samsung/yh920/lcd-yh920.c
1418 target/arm/samsung/yh920/lcd-as-yh920.S
1419 target/arm/samsung/yh920/powermgmt-yh920.c
1420 #endif /* SIMULATOR */
1421 #endif /* SAMSUNG_YH920 */
1423 #ifdef SAMSUNG_YH925
1424 #ifndef SIMULATOR
1425 target/arm/ata-as-arm.S
1426 target/arm/ata-pp5020.c
1427 target/arm/adc-pp5020.c
1428 target/arm/i2s-pp.c
1429 target/arm/usb-fw-pp502x.c
1430 target/arm/samsung/akcodec-yh82x_yh92x.c
1431 target/arm/samsung/button-yh82x_yh92x.c
1432 target/arm/samsung/power-yh82x_yh92x.c
1433 target/arm/samsung/yh925/backlight-yh925.c
1434 target/arm/samsung/yh925/lcd-yh925.c
1435 target/arm/samsung/yh925/lcd-as-yh925.S
1436 target/arm/samsung/yh925/powermgmt-yh925.c
1437 #endif /* SIMULATOR */
1438 #endif /* SAMSUNG_YH925 */
1440 #ifdef SAMSUNG_YPS3
1441 /* TODO: currently including all files for the bootloader DFU test program */
1442 target/arm/s5l8700/adc-s5l8700.c
1443 target/arm/s5l8700/i2c-s5l8700.c
1444 target/arm/s5l8700/kernel-s5l8700.c
1445 target/arm/s5l8700/timer-s5l8700.c
1446 target/arm/s5l8700/wmcodec-s5l8700.c
1447 target/arm/s5l8700/yps3/button-yps3.c
1448 target/arm/s5l8700/yps3/lcd-yps3.c
1449 target/arm/s5l8700/yps3/fmradio-i2c-yps3.c
1450 target/arm/s5l8700/yps3/backlight-yps3.c
1451 target/arm/s5l8700/yps3/nand-yps3.c
1452 target/arm/s5l8700/yps3/power-yps3.c
1453 #endif /* SAMSUNG_YPS3 */