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