Add HID keymap handling in usb screen. This allows to use the DAP as a keypad to...
[kugel-rb.git] / firmware / SOURCES
bloba3bc4f2a1f62e8d1ddbdf2efcdbb6b92fe9a15fd
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/strncpy.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 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_IFP7XX)
130 drivers/ata_flash.c
131 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_TCC)
132 target/arm/ata-nand-telechips.c
133 #elif (CONFIG_STORAGE & STORAGE_NAND) && (CONFIG_NAND == NAND_SAMSUNG)
134 target/arm/s5l8700/ata-nand-s5l8700.c
135 #elif (CONFIG_STORAGE & STORAGE_ATA)
136 drivers/ata.c
137 #elif (CONFIG_STORAGE & STORAGE_RAMDISK)
138 drivers/ramdisk.c
139 #endif /* CONFIG_STORAGE */
140 drivers/fat.c
141 #if (CONFIG_STORAGE & STORAGE_MMC) || (CONFIG_STORAGE & STORAGE_SD)
142 hotswap.c
143 #endif
144 #endif /* SIMULATOR */
146 /* EEPROM */
147 #ifdef HAVE_EEPROM
148 drivers/eeprom_24cxx.c
149 #ifdef HAVE_EEPROM_SETTINGS
150 eeprom_settings.c
151 #endif /* HAVE_EEPROM_SETTINGS */
152 #endif /* HAVE_EEPROM */
154 /* RTC */
155 #ifndef SIMULATOR
156 #if (CONFIG_RTC == RTC_M41ST84W)
157 drivers/rtc/rtc_m41st84w.c
158 #elif (CONFIG_RTC == RTC_PCF50606)
159 drivers/rtc/rtc_pcf50606.c
160 #elif (CONFIG_RTC == RTC_PCF50605)
161 drivers/rtc/rtc_pcf50605.c
162 #elif (CONFIG_RTC == RTC_E8564)
163 drivers/rtc/rtc_e8564.c
164 #elif (CONFIG_RTC == RTC_DS1339_DS3231)
165 drivers/rtc/rtc_ds1339_ds3231.c
166 #elif (CONFIG_RTC == RTC_S3C2440)
167 drivers/rtc/rtc_s3c2440.c
168 #elif (CONFIG_RTC == RTC_AS3514)
169 drivers/rtc/rtc_as3514.c
170 #elif (CONFIG_RTC == RTC_RX5X348AB)
171 drivers/rtc/rtc_rx5x348ab.c
172 #elif (CONFIG_RTC == RTC_MR100)
173 drivers/rtc/rtc_mr100.c
174 #elif (CONFIG_RTC == RTC_MC13783)
175 drivers/rtc/rtc_mc13783.c
176 #elif (CONFIG_RTC == RTC_TCC77X)
177 drivers/rtc/rtc_tcc77x.c
178 #elif (CONFIG_RTC == RTC_JZ47XX)
179 drivers/rtc/rtc_jz4740.c
180 #endif /* (CONFIG_RTC == RTC_) */
181 #endif /* SIMULATOR */
183 /* Tuner */
184 #if CONFIG_TUNER
185 tuner.c
186 #ifndef SIMULATOR
187 #if (CONFIG_TUNER & LV24020LP)
188 drivers/tuner/lv24020lp.c
189 #endif /* (CONFIG_TUNER & LV24020LP) */
190 #if (CONFIG_TUNER & S1A0903X01)
191 drivers/fmradio.c
192 drivers/tuner/s1a0903x01.c
193 #endif /* (CONFIG_TUNER & S1A0903X01) */
194 #if (CONFIG_TUNER & TEA5767)
195 drivers/tuner/tea5767.c
196 #endif /* (CONFIG_TUNER & TEA5767) */
197 #if (CONFIG_TUNER & SI4700)
198 drivers/tuner/si4700.c
199 #endif /* (CONFIG_TUNER & SI4700) */
200 #endif /*SIMULATOR */
201 #endif /* CONFIG_TUNER */
203 /* Sound */
204 #if CONFIG_CODEC != SWCODEC
205 mp3_playback.c
206 #endif /* CONFIG_CODEC != SWCODEC */
207 sound.c
209 #if CONFIG_CODEC == SWCODEC
211 #ifndef BOOTLOADER
212 pcm_sampr.c
213 pcm.c
214 #ifdef HAVE_RECORDING
215 enc_base.c
216 #endif /* HAVE_RECORDING */
217 #endif /* BOOTLOADER */
219 #else  /* !SWCODEC */
221 #ifndef BOOTLOADER
222 #ifndef SIMULATOR
223 drivers/mas.c
224 #endif /* SIMULATOR */
225 #endif /* BOOTLOADER */
227 #endif /* SWCODEC */
229 /* Audio codec */
230 #if !defined(SIMULATOR) && !defined(BOOTLOADER)
231 #if defined(HAVE_UDA1380)
232 drivers/audio/uda1380.c
233 #elif defined(HAVE_WM8751)
234 drivers/audio/wm8751.c
235 #elif defined(HAVE_WM8978)
236 drivers/audio/wm8978.c
237 #elif defined(HAVE_WM8975)
238 drivers/audio/wm8975.c
239 #elif defined(HAVE_WM8985)
240 drivers/audio/wm8985.c
241 #elif defined(HAVE_WM8758)
242 drivers/audio/wm8758.c
243 #elif defined(HAVE_WM8711) \
244    || defined(HAVE_WM8721) \
245    || defined(HAVE_WM8731)
246 drivers/audio/wm8731.c
247 #elif defined(HAVE_AS3514)
248 drivers/audio/as3514.c
249 #elif defined(HAVE_TLV320)
250 drivers/audio/tlv320.c
251 #elif defined(HAVE_MAS35XX)
252 drivers/audio/mas35xx.c
253 #endif /* defined(HAVE_*) */
254 #endif /* !defined(SIMULATOR) && !defined(BOOTLOADER) */
256 /* USB Stack */
257 #if !defined(SIMULATOR)
258 #ifdef HAVE_USBSTACK
259 usbstack/usb_core.c
260 #ifdef USB_ENABLE_STORAGE
261 usbstack/usb_storage.c
262 #endif
263 #ifdef USB_ENABLE_SERIAL
264 usbstack/usb_serial.c
265 #endif
266 #ifdef USB_ENABLE_CHARGING_ONLY
267 usbstack/usb_charging_only.c
268 #endif
269 #ifdef USB_ENABLE_HID
270 usbstack/usb_hid.c
271 #endif
272 #if CONFIG_USBOTG == USBOTG_ARC
273 target/arm/usb-drv-arc.c
274 #elif CONFIG_USBOTG == USBOTG_ISP1583
275 drivers/isp1583.c
276 #endif
277 #else /* !defined(HAVE_USBSTACK) */
278 #if CONFIG_USBOTG == USBOTG_ISP1362      
279 drivers/isp1362.c
280 #elif CONFIG_USBOTG == USBOTG_M5636      
281 drivers/m5636.c
282 #endif
283 #endif /* !defined(HAVE_USBSTACK) */
284 #endif /* !defined(SIMULATOR) */
286 /* Other Random Hardware */
287 #ifdef HAVE_TSC2100
288 #if !defined(SIMULATOR)
289 drivers/tsc2100.c
290 drivers/audio/tsc2100.c
291 #endif /* !SIMULATOR */
292 #endif
294 /* CPU Specific - By class then particular chip if applicable */
295 #if defined(CPU_SH)
297 #ifndef SIMULATOR
298 drivers/i2c.c
299 target/sh/adc-sh.c
300 target/sh/bitswap.S
301 target/sh/crt0.S
302 target/sh/kernel-sh.c
303 target/sh/memcpy-sh.S
304 target/sh/memmove-sh.S
305 target/sh/memset-sh.S
306 target/sh/strlen-sh.S
307 target/sh/system-sh.c
308 target/sh/archos/descramble.S
309 #endif /* SIMULATOR */
311 #elif defined(CPU_COLDFIRE)
313 #ifndef SIMULATOR
314 target/coldfire/crt0.S
315 #ifdef HAVE_PRIORITY_SCHEDULING
316 common/ffs.c
317 target/coldfire/ffs-coldfire.S
318 #endif
319 target/coldfire/memcpy-coldfire.S
320 target/coldfire/memmove-coldfire.S
321 target/coldfire/memset-coldfire.S
322 target/coldfire/strlen-coldfire.S
323 #if defined(HAVE_LCD_COLOR) || (LCD_PIXELFORMAT == VERTICAL_INTERLEAVED) \
324  || defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_PIXELFORMAT == VERTICAL_INTERLEAVED)
325 target/coldfire/memset16-coldfire.S
326 #endif
327 target/coldfire/kernel-coldfire.c
328 target/coldfire/system-coldfire.c
329 #ifndef BOOTLOADER
330 target/coldfire/pcm-coldfire.c
331 #endif /* BOOTLOADER */
332 #if CONFIG_I2C == I2C_COLDFIRE
333 target/coldfire/i2c-coldfire.c
334 #endif /* CONFIG_I2C == I2C_COLDFIRE */
335 #endif /* SIMULATOR */
337 #elif defined(CPU_PP) || defined(CPU_ARM)
338 /* CPU_PP => CPU_ARM, CPU_ARM !=> CPU_PP */
339 target/arm/memcpy-arm.S
340 target/arm/memmove-arm.S
341 common/strlen.c
342 #ifndef SIMULATOR
343 target/arm/memset-arm.S
344 target/arm/memset16-arm.S
345 #ifdef HAVE_PRIORITY_SCHEDULING
346 target/arm/ffs-arm.S
347 #endif
348 target/arm/system-arm.c
349 #if CONFIG_I2C == I2C_PP5024 || CONFIG_I2C == I2C_PP5020 || CONFIG_I2C == I2C_PP5002
350 target/arm/i2c-pp.c
351 #elif CONFIG_I2C == I2C_PNX0101
352 target/arm/pnx0101/i2c-pnx0101.c
353 #elif CONFIG_I2C == I2C_TCC780X || CONFIG_I2C == I2C_TCC77X 
354 target/arm/i2c-telechips.c
355 #elif CONFIG_I2C == I2C_S3C2440
356 /* no i2c driver yet */
357 #endif
359 #if CONFIG_CPU == PNX0101
360 target/arm/pnx0101/kernel-pnx0101.c
361 target/arm/pnx0101/system-pnx0101.c
362 #endif
364 #if CONFIG_CPU == AS3525
365 target/arm/as3525/system-as3525.c
366 target/arm/as3525/kernel-as3525.c
367 target/arm/as3525/ata_sd_as3525.c
368 target/arm/as3525/power-as3525.c
369 target/arm/as3525/usb-as3525.c
370 target/arm/as3525/dma-pl081.c
371 target/arm/as3525/ascodec-as3525.c
372 #ifndef BOOTLOADER
373 drivers/generic_i2c.c
374 target/arm/adc-as3514.c
375 target/arm/as3525/audio-as3525.c
376 target/arm/as3525/debug-as3525.c
377 target/arm/as3525/fmradio-i2c-as3525.c
378 target/arm/as3525/i2s-as3525.c
379 target/arm/as3525/pcm-as3525.c
380 #endif /* BOOTLOADER */
381 #endif /* CONFIG_CPU == AS3525 */
383 #if defined(CPU_PP)
384 target/arm/kernel-pp.c
385 #if CONFIG_CPU == PP5002
386 target/arm/system-pp5002.c
387 #elif defined CPU_PP502x
388 target/arm/system-pp502x.c
389 #endif
390 #ifdef BOOTLOADER
391 target/arm/crt0-pp-bl.S
392 #else
393 target/arm/pcm-pp.c
394 #if !defined(SANSA_E200) && !defined(SANSA_C200)
395 target/arm/audio-pp.c
396 #endif /* SANSA_E200 */
397 target/arm/crt0-pp.S
398 #endif
399 #elif CONFIG_CPU == PNX0101
400 target/arm/pnx0101/crt0-pnx0101.S
401 #elif CONFIG_CPU==DM320
402 target/arm/tms320dm320/crt0.S
403 #elif CONFIG_CPU==S3C2440
404 target/arm/s3c2440/crt0.S
405 #elif defined(CPU_TCC77X)
406 target/arm/tcc77x/crt0.S
407 #elif defined(CPU_TCC780X)
408 target/arm/tcc780x/crt0.S
409 #elif CONFIG_CPU==IMX31L
410 target/arm/imx31/crt0.S
411 #elif CONFIG_CPU==S5L8700
412 target/arm/s5l8700/crt0.S
413 #elif defined(CPU_ARM)
414 target/arm/crt0.S
415 #endif /* defined(CPU_*) */
416 #endif /* SIMULATOR */
418 #elif defined(CPU_MIPS)
419 #undef mips
420 /*target/mips/strlen.S*/
421 common/memmove.c
422 common/memset16.c
423 common/strlen.c
424 target/mips/ffs-mips.S
425 target/mips/memcpy-mips.S
426 target/mips/memset-mips.S
427 target/mips/mmu-mips.c
428 #if CONFIG_CPU==JZ4732
429 target/mips/ingenic_jz47xx/crt0.S
430 #endif /* CONFIG_CPU == JZ4732 */
432 #else
434 #ifdef HAVE_PRIORITY_SCHEDULING
435 common/ffs.c
436 #endif
437 common/memcpy.c
438 common/memmove.c
439 common/memset.c
440 common/memset16.c
441 common/strlen.c
442 #ifndef SIMULATOR
443 crt0.S
444 drivers/i2c.c
445 #endif /* SIMULATOR */
447 #endif /* defined(CPU_*) */
449 #ifdef ARCHOS_PLAYER
450 #ifndef SIMULATOR
451 target/sh/archos/ata-archos.c
452 target/sh/archos/ata-as-archos.S
453 target/sh/archos/player/button-player.c
454 target/sh/archos/player/hwcompat-player.c
455 target/sh/archos/player/lcd-as-player.S
456 target/sh/archos/player/lcd-player.c
457 target/sh/archos/player/power-player.c
458 target/sh/archos/player/powermgmt-player.c
459 target/sh/archos/player/usb-player.c
460 #endif /* SIMULATOR */
461 #endif /* ARCHOS_PLAYER */
463 #ifdef ARCHOS_RECORDER
464 #ifndef SIMULATOR
465 target/sh/archos/ata-archos.c
466 target/sh/archos/ata-as-archos.S
467 target/sh/archos/lcd-archos-bitmap.c
468 target/sh/archos/lcd-as-archos-bitmap.S   
469 target/sh/archos/recorder/button-recorder.c
470 target/sh/archos/recorder/power-recorder.c
471 target/sh/archos/recorder/powermgmt-recorder.c
472 target/sh/archos/recorder/usb-recorder.c
473 #endif /* SIMULATOR */
474 #endif /* ARCHOS_RECORDER */
476 #if defined(ARCHOS_FMRECORDER) || defined(ARCHOS_RECORDERV2)
477 #ifndef SIMULATOR
478 target/sh/archos/ata-archos.c
479 target/sh/archos/ata-as-archos.S
480 target/sh/archos/lcd-archos-bitmap.c
481 target/sh/archos/lcd-as-archos-bitmap.S
482 target/sh/archos/fm_v2/button-fm_v2.c
483 target/sh/archos/fm_v2/power-fm_v2.c
484 target/sh/archos/fm_v2/powermgmt-fm_v2.c
485 target/sh/archos/fm_v2/usb-fm_v2.c
486 #endif /* SIMULATOR */
487 #endif /* ARCHOS_FMRECORDER || ARCHOS_RECORDERV2 */
489 #if defined(ARCHOS_ONDIOFM) || defined(ARCHOS_ONDIOSP)
490 #ifndef SIMULATOR
491 target/sh/archos/lcd-archos-bitmap.c
492 target/sh/archos/lcd-as-archos-bitmap.S
493 target/sh/archos/ondio/button-ondio.c
494 target/sh/archos/ondio/power-ondio.c
495 target/sh/archos/ondio/powermgmt-ondio.c
496 target/sh/archos/ondio/usb-ondio.c
497 #if (CONFIG_TUNER & TEA5767)
498 target/sh/archos/ondio/fmradio_i2c-ondio.c
499 #endif
500 #endif /* SIMULATOR */
501 #endif /* ARCHOS_ONDIOFM || ARCHOS_ONDIOFM */
503 #ifdef SANSA_E200
504 #ifndef SIMULATOR
505 target/arm/adc-as3514.c
506 target/arm/ascodec-pp.c
507 target/arm/ata-sd-pp.c
508 target/arm/lcd-as-memframe.S
509 target/arm/powermgmt-ascodec.c
510 target/arm/i2s-pp.c
511 target/arm/usb-fw-pp502x.c
512 target/arm/sandisk/backlight-c200_e200.c
513 target/arm/sandisk/power-c200_e200.c
514 target/arm/sandisk/sansa-e200/lcd-e200.c
515 target/arm/sandisk/sansa-e200/button-e200.c
516 target/arm/sandisk/sansa-e200/powermgmt-e200.c
517 #ifndef BOOTLOADER
518 target/arm/sandisk/audio-c200_e200.c
519 #endif /* BOOTLOADER */
520 #endif /* SIMULATOR */
521 #endif /* SANSA_E200 */
523 #ifdef SANSA_C200
524 #ifndef SIMULATOR
525 target/arm/adc-as3514.c
526 target/arm/ascodec-pp.c
527 target/arm/ata-sd-pp.c
528 target/arm/i2s-pp.c
529 target/arm/powermgmt-ascodec.c
530 target/arm/usb-fw-pp502x.c
531 target/arm/sandisk/backlight-c200_e200.c
532 target/arm/sandisk/power-c200_e200.c
533 target/arm/sandisk/sansa-c200/lcd-c200.c
534 target/arm/sandisk/sansa-c200/lcd-as-c200.S
535 target/arm/sandisk/sansa-c200/button-c200.c
536 target/arm/sandisk/sansa-c200/powermgmt-c200.c
537 #ifndef BOOTLOADER
538 target/arm/sandisk/audio-c200_e200.c
539 #endif /* BOOTLOADER */
540 #endif /* SIMULATOR */
541 #endif /* SANSA_C200 */
543 #ifdef PHILIPS_SA9200
544 #ifndef SIMULATOR
545 target/arm/adc-as3514.c
546 target/arm/ascodec-pp.c
547 target/arm/ata-sd-pp.c
548 target/arm/i2s-pp.c
549 target/arm/powermgmt-ascodec.c
550 target/arm/usb-fw-pp502x.c
551 target/arm/philips/sa9200/backlight-sa9200.c
552 target/arm/philips/sa9200/button-sa9200.c
553 target/arm/philips/sa9200/lcd-sa9200.c
554 target/arm/philips/sa9200/power-sa9200.c
555 target/arm/philips/sa9200/powermgmt-sa9200.c
556 #endif /* SIMULATOR */
557 #endif /* PHILIPS_SA9200 */
559 #ifdef PHILIPS_HDD1630
560 #ifndef SIMULATOR
561 #ifndef BOOTLOADER
562 drivers/synaptics-mep.c
563 #endif /* BOOTLOADER */
564 target/arm/ata-as-arm.S
565 target/arm/ata-pp5020.c
566 target/arm/wmcodec-pp.c
567 target/arm/i2s-pp.c
568 target/arm/adc-pp5020.c
569 target/arm/philips/hdd1630/backlight-hdd1630.c
570 target/arm/philips/hdd1630/button-hdd1630.c
571 target/arm/philips/hdd1630/fmradio_i2c-hdd1630.c
572 target/arm/philips/hdd1630/lcd-hdd1630.c
573 target/arm/philips/hdd1630/lcd-as-hdd1630.S
574 target/arm/philips/hdd1630/power-hdd1630.c
575 target/arm/philips/hdd1630/powermgmt-hdd1630.c
576 target/arm/usb-fw-pp502x.c
577 #endif /* SIMULATOR */
578 #endif /* PHILIPS_HDD1630 */
580 #ifdef IAUDIO_X5
581 #ifndef SIMULATOR
582 target/coldfire/ata-as-coldfire.S
583 target/coldfire/pcf50606-coldfire.c
584 target/coldfire/iaudio/adc-iaudio.c
585 target/coldfire/iaudio/ata-iaudio.c
586 target/coldfire/iaudio/lcd-remote-as-iaudio.S
587 target/coldfire/iaudio/lcd-remote-iaudio.c
588 target/coldfire/iaudio/pcf50606-iaudio.c
589 target/coldfire/iaudio/powermgmt-iaudio.c
590 target/coldfire/iaudio/system-iaudio.c
591 target/coldfire/iaudio/usb-iaudio.c
592 target/coldfire/iaudio/x5/backlight-x5.c
593 target/coldfire/iaudio/x5/button-x5.c
594 target/coldfire/iaudio/x5/ds2411-x5.c
595 target/coldfire/iaudio/x5/fmradio_i2c-x5.c
596 target/coldfire/iaudio/x5/lcd-as-x5.S
597 target/coldfire/iaudio/x5/lcd-x5.c
598 target/coldfire/iaudio/x5/m5636-x5.c
599 target/coldfire/iaudio/x5/power-x5.c
600 #ifndef BOOTLOADER
601 target/coldfire/iaudio/x5/audio-x5.c
602 #endif
603 #endif /* SIMULATOR */
604 #endif /* IAUDIO_X5 */
606 #ifdef IAUDIO_M5
607 #ifndef SIMULATOR
608 target/coldfire/ata-as-coldfire.S
609 target/coldfire/pcf50606-coldfire.c
610 target/coldfire/iaudio/adc-iaudio.c
611 target/coldfire/iaudio/ata-iaudio.c
612 target/coldfire/iaudio/lcd-remote-as-iaudio.S
613 target/coldfire/iaudio/lcd-remote-iaudio.c
614 target/coldfire/iaudio/m5/backlight-m5.c
615 target/coldfire/iaudio/m5/button-m5.c
616 target/coldfire/iaudio/m5/lcd-as-m5.S
617 target/coldfire/iaudio/m5/lcd-m5.c
618 target/coldfire/iaudio/m5/power-m5.c
619 target/coldfire/iaudio/pcf50606-iaudio.c
620 target/coldfire/iaudio/powermgmt-iaudio.c
621 target/coldfire/iaudio/system-iaudio.c
622 target/coldfire/iaudio/usb-iaudio.c
623 #ifndef BOOTLOADER
624 target/coldfire/iaudio/m5/audio-m5.c
625 #endif
626 #endif /* SIMULATOR */
627 #endif /* IAUDIO_M5 */
629 #ifdef IAUDIO_M3
630 #ifndef SIMULATOR
631 target/coldfire/ata-as-coldfire.S
632 target/coldfire/iaudio/m3/adc-m3.c
633 target/coldfire/iaudio/m3/ata-m3.c
634 target/coldfire/iaudio/m3/backlight-m3.c
635 target/coldfire/iaudio/m3/button-m3.c
636 target/coldfire/iaudio/m3/fmradio_i2c-m3.c
637 target/coldfire/iaudio/m3/lcd-m3.c
638 target/coldfire/iaudio/m3/lcd-as-m3.S
639 target/coldfire/iaudio/m3/power-m3.c
640 target/coldfire/iaudio/m3/powermgmt-m3.c
641 target/coldfire/iaudio/m3/system-m3.c
642 target/coldfire/iaudio/m3/usb-m3.c
643 #ifndef BOOTLOADER
644 target/coldfire/iaudio/m3/audio-m3.c
645 #endif
646 #endif /* SIMULATOR */
647 #endif /* IAUDIO_M3 */
649 #ifdef IRIVER_IFP7XX_SERIES
650 #ifdef STUB
651 ifp_usb_serial.c
652 common/sscanf.c
653 #endif /* STUB */
654 #endif /* IRIVER_IFP7XX_SERIES */
656 #ifdef IRIVER_H300_SERIES
657 #ifndef SIMULATOR
658 target/coldfire/ata-as-coldfire.S
659 target/coldfire/pcf50606-coldfire.c
660 target/coldfire/iriver/ata-iriver.c
661 target/coldfire/iriver/lcd-remote-iriver.c
662 target/coldfire/iriver/lcd-remote-as-iriver.S
663 target/coldfire/iriver/system-iriver.c
664 target/coldfire/iriver/fmradio_i2c-iriver.c
665 target/coldfire/iriver/h300/sw_i2c-h300.c
666 target/coldfire/iriver/h300/adc-h300.c
667 target/coldfire/iriver/h300/backlight-h300.c
668 target/coldfire/iriver/h300/button-h300.c
669 target/coldfire/iriver/h300/pcf50606-h300.c
670 target/coldfire/iriver/h300/lcd-as-h300.S
671 target/coldfire/iriver/h300/lcd-h300.c
672 target/coldfire/iriver/h300/power-h300.c
673 target/coldfire/iriver/h300/powermgmt-h300.c
674 target/coldfire/iriver/h300/usb-h300.c
675 #ifndef BOOTLOADER
676 target/coldfire/iriver/audio-iriver.c
677 #endif
678 #endif /* SIMULATOR */
679 #endif /* IRIVER_H300_SERIES */
681 #ifdef IRIVER_H100_SERIES
682 #ifndef SIMULATOR
683 drivers/sw_i2c.c
684 target/coldfire/ata-as-coldfire.S
685 target/coldfire/iriver/ata-iriver.c
686 target/coldfire/iriver/lcd-remote-iriver.c
687 target/coldfire/iriver/lcd-remote-as-iriver.S
688 target/coldfire/iriver/system-iriver.c
689 target/coldfire/iriver/fmradio_i2c-iriver.c
690 target/coldfire/iriver/h100/adc-h100.c
691 target/coldfire/iriver/h100/backlight-h100.c
692 target/coldfire/iriver/h100/button-h100.c
693 target/coldfire/iriver/h100/lcd-as-h100.S
694 target/coldfire/iriver/h100/lcd-h100.c
695 target/coldfire/iriver/h100/power-h100.c
696 target/coldfire/iriver/h100/powermgmt-h100.c
697 #ifndef BOOTLOADER
698 target/coldfire/iriver/audio-iriver.c
699 target/coldfire/iriver/h100/spdif-h100.c
700 #endif
701 target/coldfire/iriver/h100/usb-h100.c
702 #endif /* SIMULATOR */
703 #endif /* IRIVER_H100_SERIES */
705 #ifdef IRIVER_H10
706 #ifndef SIMULATOR
707 target/arm/ata-as-arm.S
708 target/arm/ata-pp5020.c
709 target/arm/wmcodec-pp.c
710 target/arm/i2s-pp.c
711 target/arm/adc-pp5020.c
712 target/arm/iriver/h10/backlight-h10.c
713 target/arm/iriver/h10/button-h10.c
714 target/arm/iriver/h10/fmradio_i2c-h10.c
715 target/arm/iriver/h10/lcd-h10_20gb.c
716 target/arm/iriver/h10/lcd-as-h10.S
717 target/arm/iriver/h10/power-h10.c
718 target/arm/iriver/h10/powermgmt-h10.c
719 target/arm/usb-fw-pp502x.c
720 #endif /* SIMULATOR */
721 #endif /* IRIVER_H10 */
723 #ifdef IRIVER_H10_5GB
724 #ifndef SIMULATOR
725 target/arm/ata-as-arm.S
726 target/arm/ata-pp5020.c
727 target/arm/wmcodec-pp.c
728 target/arm/i2s-pp.c
729 target/arm/adc-pp5020.c
730 target/arm/iriver/h10/backlight-h10.c
731 target/arm/iriver/h10/button-h10.c
732 target/arm/iriver/h10/fmradio_i2c-h10.c
733 target/arm/iriver/h10/lcd-h10_5gb.c
734 target/arm/iriver/h10/power-h10.c
735 target/arm/iriver/h10/powermgmt-h10.c
736 target/arm/usb-fw-pp502x.c
737 #endif /* SIMULATOR */
738 #endif /* IRIVER_H10_5GB */
740 #ifdef GIGABEAT_F
741 #ifndef SIMULATOR
742 target/arm/lcd-as-memframe.S
743 target/arm/mmu-arm.S
744 target/arm/s3c2440/debug-s3c2440.c
745 target/arm/s3c2440/gigabeat-fx/adc-meg-fx.c
746 target/arm/s3c2440/gigabeat-fx/ata-meg-fx.c
747 target/arm/s3c2440/gigabeat-fx/backlight-meg-fx.c
748 target/arm/s3c2440/gigabeat-fx/button-meg-fx.c
749 target/arm/s3c2440/gigabeat-fx/kernel-meg-fx.c
750 target/arm/s3c2440/gigabeat-fx/lcd-meg-fx.c
751 target/arm/s3c2440/gigabeat-fx/power-meg-fx.c
752 target/arm/s3c2440/gigabeat-fx/sc606-meg-fx.c
753 target/arm/s3c2440/gigabeat-fx/system-meg-fx.c
754 target/arm/s3c2440/gigabeat-fx/usb-meg-fx.c
755 #ifndef BOOTLOADER
756 target/arm/s3c2440/gigabeat-fx/i2c-meg-fx.c
757 target/arm/s3c2440/gigabeat-fx/pcm-meg-fx.c
758 target/arm/s3c2440/gigabeat-fx/powermgmt-meg-fx.c
759 target/arm/s3c2440/gigabeat-fx/timer-meg-fx.c
760 target/arm/s3c2440/gigabeat-fx/wmcodec-meg-fx.c
761 #endif
762 #endif /* SIMULATOR */
763 #endif /* GIGABEAT_F */
765 #ifdef GIGABEAT_S
766 #ifndef SIMULATOR
767 target/arm/lcd-as-memframe.S
768 target/arm/mmu-arm.S
769 target/arm/imx31/ccm-imx31.c
770 target/arm/imx31/debug-imx31.c
771 target/arm/imx31/rolo_restart.S
772 target/arm/imx31/sdma-imx31.c
773 target/arm/imx31/gigabeat-s/adc-imx31.c
774 target/arm/imx31/gigabeat-s/ata-imx31.c
775 target/arm/imx31/gigabeat-s/avic-imx31.c
776 target/arm/imx31/gigabeat-s/backlight-imx31.c
777 target/arm/imx31/gigabeat-s/button-imx31.c
778 target/arm/imx31/gigabeat-s/gpio-gigabeat-s.c
779 target/arm/imx31/gigabeat-s/gpio-imx31.c
780 target/arm/imx31/gigabeat-s/kernel-imx31.c
781 target/arm/imx31/gigabeat-s/i2c-imx31.c
782 target/arm/imx31/gigabeat-s/i2s-imx31.c
783 target/arm/imx31/gigabeat-s/lcd-imx31.c
784 target/arm/imx31/gigabeat-s/mc13783-gigabeat-s.c
785 target/arm/imx31/gigabeat-s/mc13783-imx31.c
786 target/arm/imx31/gigabeat-s/mmu-imx31.c
787 target/arm/imx31/gigabeat-s/power-imx31.c
788 target/arm/imx31/gigabeat-s/powermgmt-imx31.c
789 target/arm/imx31/gigabeat-s/spi-imx31.c
790 target/arm/imx31/gigabeat-s/system-imx31.c
791 target/arm/imx31/gigabeat-s/usb-imx31.c
792 target/arm/imx31/gigabeat-s/wmcodec-imx31.c
793 #ifndef BOOTLOADER
794 target/arm/imx31/gigabeat-s/audio-gigabeat-s.c
795 target/arm/imx31/gigabeat-s/fmradio-i2c-gigabeat-s.c
796 target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c
797 target/arm/imx31/gigabeat-s/pcm-imx31.c
798 target/arm/imx31/gigabeat-s/timer-imx31.c
799 #endif
800 #endif /* SIMULATOR */
801 #endif /* GIGABEAT_S */
803 #if CONFIG_CPU == DM320
804 target/arm/tms320dm320/debug-dm320.c
805 target/arm/tms320dm320/dsp-dm320.c
806 target/arm/tms320dm320/i2c-dm320.c
807 target/arm/tms320dm320/kernel-dm320.c
808 target/arm/tms320dm320/spi-dm320.c
809 target/arm/tms320dm320/system-dm320.c
810 target/arm/tms320dm320/timer-dm320.c
811 target/arm/tms320dm320/uart-dm320.c
812 #endif /* CONFIG_CPU == DM320 */
814 #ifdef MROBE_500
815 #ifndef SIMULATOR
816 target/arm/lcd-as-memframe.S
817 target/arm/mmu-arm.S
818 target/arm/tms320dm320/mrobe-500/adc-mr500.c
819 target/arm/tms320dm320/mrobe-500/ata-mr500.c
820 target/arm/tms320dm320/mrobe-500/backlight-mr500.c
821 target/arm/tms320dm320/mrobe-500/button-mr500.c
822 target/arm/tms320dm320/mrobe-500/dm320codec-mr500.c
823 target/arm/tms320dm320/mrobe-500/lcd-mr500.c
824 #if defined(HAVE_REMOTE_LCD)
825 target/arm/tms320dm320/mrobe-500/lcd-remote-mr500.c
826 #endif
827 target/arm/tms320dm320/mrobe-500/pcm-mr500.c
828 target/arm/tms320dm320/mrobe-500/powermgmt-mr500.c
829 target/arm/tms320dm320/mrobe-500/power-mr500.c
830 target/arm/tms320dm320/mrobe-500/usb-mr500.c
831 #endif /* SIMULATOR */
832 #endif /* MROBE_500 */
834 #ifdef CREATIVE_ZVx
835 #ifndef SIMULATOR
836 target/arm/ata-as-arm.S
837 target/arm/lcd-as-memframe.S
838 target/arm/mmu-arm.S
839 target/arm/tms320dm320/creative-zvm/adc-creativezvm.c
840 target/arm/tms320dm320/creative-zvm/ata-creativezvm.c
841 target/arm/tms320dm320/creative-zvm/dma-creativezvm.c
842 target/arm/tms320dm320/creative-zvm/lcd-creativezvm.c
843 target/arm/tms320dm320/creative-zvm/pcm-creativezvm.c
844 target/arm/tms320dm320/creative-zvm/pic-creativezvm.c
845 target/arm/tms320dm320/creative-zvm/power-creativezvm.c
846 target/arm/tms320dm320/creative-zvm/powermgmt-creativezvm.c
847 target/arm/tms320dm320/creative-zvm/usb-creativezvm.c
848 #endif /* SIMULATOR */
849 #endif /* CREATIVE_ZVx */
851 #ifdef MROBE_100
852 #ifndef SIMULATOR
853 #ifndef BOOTLOADER
854 drivers/synaptics-mep.c
855 #endif /* BOOTLOADER */
856 drivers/sw_i2c.c
857 target/arm/ata-as-arm.S
858 target/arm/ata-pp5020.c
859 target/arm/wmcodec-pp.c
860 target/arm/i2s-pp.c
861 target/arm/adc-pp5020.c
862 target/arm/olympus/mrobe-100/backlight-mr100.c
863 target/arm/olympus/mrobe-100/button-mr100.c
864 target/arm/olympus/mrobe-100/lcd-mr100.c
865 target/arm/olympus/mrobe-100/lcd-as-mr100.S
866 target/arm/olympus/mrobe-100/power-mr100.c
867 target/arm/olympus/mrobe-100/powermgmt-mr100.c
868 target/arm/usb-fw-pp502x.c
869 #endif /* SIMULATOR */
870 #endif /* MROBE_100 */
872 #ifdef ELIO_TPJ1022
873 #ifndef SIMULATOR
874 target/arm/ata-as-arm.S
875 target/arm/ata-pp5020.c
876 target/arm/wmcodec-pp.c
877 target/arm/i2s-pp.c
878 target/arm/adc-pp5020.c
879 target/arm/tatung/tpj1022/backlight-tpj1022.c
880 target/arm/tatung/tpj1022/button-tpj1022.c
881 target/arm/tatung/tpj1022/lcd-tpj1022.c
882 target/arm/tatung/tpj1022/power-tpj1022.c
883 target/arm/tatung/tpj1022/powermgmt-tpj1022.c
884 target/arm/usb-fw-pp502x.c
885 #endif /* SIMULATOR */
886 #endif /* ELIO_TPJ1022 */
888 #ifdef IPOD_4G
889 #ifndef SIMULATOR
890 drivers/pcf50605.c
891 target/arm/wmcodec-pp.c
892 target/arm/i2s-pp.c
893 target/arm/ata-as-arm.S
894 target/arm/ata-pp5020.c
895 target/arm/ipod/adc-ipod-pcf.c
896 target/arm/ipod/backlight-4g_color.c
897 target/arm/ipod/button-clickwheel.c
898 target/arm/ipod/lcd-as-gray.S
899 target/arm/ipod/lcd-gray.c
900 target/arm/ipod/power-ipod.c
901 target/arm/ipod/powermgmt-ipod-pcf.c
902 target/arm/usb-fw-pp502x.c
903 #endif /* SIMULATOR */
904 #endif /* IPOD_4G */
906 #ifdef IPOD_COLOR
907 #ifndef SIMULATOR
908 drivers/pcf50605.c
909 target/arm/ata-as-arm.S
910 target/arm/ata-pp5020.c
911 target/arm/wmcodec-pp.c
912 target/arm/i2s-pp.c
913 target/arm/ipod/adc-ipod-pcf.c
914 target/arm/ipod/backlight-4g_color.c
915 target/arm/ipod/button-clickwheel.c
916 target/arm/ipod/lcd-color_nano.c
917 target/arm/ipod/power-ipod.c
918 target/arm/ipod/powermgmt-ipod-pcf.c
919 target/arm/usb-fw-pp502x.c
920 #endif /* SIMULATOR */
921 #endif /* IPOD_COLOR */
923 #ifdef IPOD_NANO
924 #ifndef SIMULATOR
925 drivers/pcf50605.c
926 target/arm/ata-as-arm.S
927 target/arm/ata-pp5020.c
928 target/arm/wmcodec-pp.c
929 target/arm/i2s-pp.c
930 target/arm/ipod/adc-ipod-pcf.c
931 target/arm/ipod/backlight-nano_video.c
932 target/arm/ipod/button-clickwheel.c
933 target/arm/ipod/lcd-color_nano.c
934 target/arm/ipod/power-ipod.c
935 target/arm/ipod/powermgmt-ipod-pcf.c
936 target/arm/usb-fw-pp502x.c
937 #endif /* SIMULATOR */
938 #endif /* IPOD_NANO */
940 #ifdef IPOD_VIDEO
941 #ifndef SIMULATOR
942 drivers/pcf50605.c
943 target/arm/ata-as-arm.S
944 target/arm/ata-pp5020.c
945 target/arm/wmcodec-pp.c
946 target/arm/i2s-pp.c
947 target/arm/ipod/adc-ipod-pcf.c
948 target/arm/ipod/backlight-nano_video.c
949 target/arm/ipod/button-clickwheel.c
950 target/arm/ipod/power-ipod.c
951 target/arm/ipod/powermgmt-ipod-pcf.c
952 target/arm/ipod/video/lcd-as-video.S
953 target/arm/ipod/video/lcd-video.c
954 target/arm/usb-fw-pp502x.c
955 #endif /* SIMULATOR */
956 #endif /* IPOD_VIDEO */
958 #ifdef IPOD_3G
959 #ifndef SIMULATOR
960 drivers/pcf50605.c
961 target/arm/ata-pp5002.c
962 target/arm/wmcodec-pp.c
963 target/arm/i2s-pp.c
964 target/arm/ipod/adc-ipod-pcf.c
965 target/arm/ipod/3g/backlight-3g.c
966 target/arm/ipod/button-1g-3g.c
967 target/arm/ipod/lcd-as-gray.S
968 target/arm/ipod/lcd-gray.c
969 target/arm/ipod/power-ipod.c
970 target/arm/ipod/powermgmt-ipod-pcf.c
971 target/arm/usb-fw-pp5002.c
972 #endif /* SIMULATOR */
973 #endif /* IPOD_3G */
975 #ifdef IPOD_1G2G
976 #ifndef SIMULATOR
977 target/arm/ata-pp5002.c
978 target/arm/wmcodec-pp.c
979 target/arm/i2s-pp.c
980 target/arm/ipod/1g2g/adc-ipod-1g2g.c
981 target/arm/ipod/1g2g/backlight-1g2g.c
982 target/arm/ipod/1g2g/powermgmt-1g2g.c
983 target/arm/ipod/button-1g-3g.c
984 target/arm/ipod/lcd-as-gray.S
985 target/arm/ipod/lcd-gray.c
986 target/arm/ipod/power-ipod.c
987 target/arm/usb-fw-pp5002.c
988 #endif /* SIMULATOR */
989 #endif /* IPOD_1G2G */
991 #ifdef IPOD_MINI
992 #ifndef SIMULATOR
993 drivers/pcf50605.c
994 target/arm/ata-as-arm.S
995 target/arm/ata-pp5020.c
996 target/arm/wmcodec-pp.c
997 target/arm/i2s-pp.c
998 target/arm/ipod/adc-ipod-pcf.c
999 target/arm/ipod/backlight-mini1g_mini2g.c
1000 target/arm/ipod/button-mini1g.c
1001 target/arm/ipod/lcd-as-gray.S
1002 target/arm/ipod/lcd-gray.c
1003 target/arm/ipod/power-ipod.c
1004 target/arm/ipod/powermgmt-ipod-pcf.c
1005 target/arm/usb-fw-pp502x.c
1006 #endif /* SIMULATOR */
1007 #endif /* IPOD_MINI */
1009 #ifdef IPOD_MINI2G
1010 #ifndef SIMULATOR
1011 drivers/pcf50605.c
1012 target/arm/ata-as-arm.S
1013 target/arm/ata-pp5020.c
1014 target/arm/wmcodec-pp.c
1015 target/arm/i2s-pp.c
1016 target/arm/ipod/adc-ipod-pcf.c
1017 target/arm/ipod/backlight-mini1g_mini2g.c
1018 target/arm/ipod/button-clickwheel.c
1019 target/arm/ipod/lcd-as-gray.S
1020 target/arm/ipod/lcd-gray.c
1021 target/arm/ipod/power-ipod.c
1022 target/arm/ipod/powermgmt-ipod-pcf.c
1023 target/arm/usb-fw-pp502x.c
1024 #endif /* SIMULATOR */
1025 #endif /* IPOD_MINI2G */
1027 #ifdef IRIVER_IFP7XX
1028 #ifndef SIMULATOR
1029 target/arm/pnx0101/iriver-ifp7xx/adc-ifp7xx.c
1030 target/arm/pnx0101/iriver-ifp7xx/backlight-ifp7xx.c
1031 target/arm/pnx0101/iriver-ifp7xx/button-ifp7xx.c
1032 target/arm/pnx0101/iriver-ifp7xx/lcd-ifp7xx.c
1033 target/arm/pnx0101/iriver-ifp7xx/power-ifp7xx.c
1034 target/arm/pnx0101/iriver-ifp7xx/powermgmt-ifp7xx.c
1035 target/arm/pnx0101/iriver-ifp7xx/usb-ifp7xx.c   
1036 #ifndef BOOTLOADER
1037 target/arm/pnx0101/pcm-pnx0101.c
1038 #endif /* BOOTLOADER */
1039 #endif /* SIMULATOR */
1040 #endif /* IRIVER_IFP7XX */
1042 #ifdef LOGIK_DAX
1043 #ifndef SIMULATOR
1044 drivers/nand_id.c
1045 target/arm/lcd-ssd1815.c
1046 target/arm/tcc77x/adc-tcc77x.c
1047 target/arm/tcc77x/kernel-tcc77x.c
1048 target/arm/tcc77x/powermgmt-tcc77x.c
1049 target/arm/tcc77x/system-tcc77x.c
1050 target/arm/tcc77x/timer-tcc77x.c
1051 target/arm/usb-tcc.c
1052 target/arm/tcc77x/logikdax/button-logikdax.c
1053 target/arm/tcc77x/logikdax/power-logikdax.c
1054 #ifndef BOOTLOADER
1055 target/arm/wmcodec-telechips.c
1056 target/arm/tcc77x/debug-tcc77x.c
1057 target/arm/pcm-telechips.c
1058 target/arm/tcc77x/logikdax/audio-logikdax.c
1059 #endif /* BOOTLOADER */
1060 #endif /* SIMULATOR */
1061 #endif /* LOGIK_DAX */
1063 #ifdef SANSA_M200
1064 #ifndef SIMULATOR
1065 drivers/nand_id.c
1066 target/arm/lcd-ssd1815.c
1067 target/arm/tcc77x/adc-tcc77x.c
1068 target/arm/tcc77x/kernel-tcc77x.c
1069 target/arm/tcc77x/powermgmt-tcc77x.c
1070 target/arm/tcc77x/system-tcc77x.c
1071 target/arm/tcc77x/timer-tcc77x.c
1072 target/arm/usb-tcc.c
1073 target/arm/tcc77x/m200/button-m200.c
1074 target/arm/tcc77x/m200/power-m200.c
1075 #ifndef BOOTLOADER
1076 target/arm/wmcodec-telechips.c
1077 target/arm/tcc77x/debug-tcc77x.c
1078 target/arm/pcm-telechips.c
1079 target/arm/tcc77x/m200/audio-m200.c
1080 #endif /* BOOTLOADER */
1081 #endif /* SIMULATOR */
1082 #endif /* SANSA_M200 */
1084 #ifdef SANSA_C100
1085 #ifndef SIMULATOR
1086 drivers/nand_id.c
1087 target/arm/tcc77x/adc-tcc77x.c
1088 target/arm/tcc77x/kernel-tcc77x.c
1089 target/arm/tcc77x/c100/lcd-S6B33B2.c
1090 target/arm/tcc77x/powermgmt-tcc77x.c
1091 target/arm/tcc77x/system-tcc77x.c
1092 target/arm/tcc77x/timer-tcc77x.c
1093 target/arm/usb-tcc.c
1094 target/arm/tcc77x/c100/button-c100.c
1095 target/arm/tcc77x/c100/power-c100.c
1096 #ifndef BOOTLOADER
1097 target/arm/tcc77x/debug-tcc77x.c
1098 target/arm/pcm-telechips.c
1099 #endif /* BOOTLOADER */
1100 #endif /* SIMULATOR */
1101 #endif /* SANSA_C100 */
1103 #ifdef SANSA_CLIP
1104 #ifndef SIMULATOR
1105 target/arm/as3525/sansa-clip/lcd-ssd1303.c
1106 target/arm/as3525/sansa-clip/lcd-as-clip.S
1107 target/arm/as3525/sansa-clip/button-clip.c
1108 target/arm/as3525/sansa-clip/backlight-clip.c
1109 #ifndef BOOTLOADER
1110 target/arm/powermgmt-ascodec.c
1111 target/arm/as3525/sansa-clip/powermgmt-clip.c
1112 #endif /* !BOOTLOADER */
1113 #endif /* !SIMULATOR */
1114 #endif /* SANSA_CLIP */
1116 #ifdef SANSA_E200V2
1117 #ifndef SIMULATOR
1118 target/arm/as3525/sansa-e200v2/lcd-e200v2.c
1119 target/arm/as3525/lcd-as-e200v2-fuze.S
1120 target/arm/as3525/sansa-e200v2/button-e200v2.c
1121 target/arm/as3525/backlight-e200v2-fuze.c
1122 #ifndef BOOTLOADER
1123 target/arm/powermgmt-ascodec.c
1124 target/arm/as3525/sansa-e200v2/powermgmt-e200v2.c
1125 #endif /* !BOOTLOADER */
1126 #endif /* !SIMULATOR */
1127 #endif /* SANSA_E200V2 */
1129 #ifdef SANSA_C200V2
1130 #ifndef SIMULATOR
1131 target/arm/as3525/sansa-c200v2/lcd-c200v2.c
1132 target/arm/as3525/sansa-c200v2/button-c200v2.c
1133 target/arm/as3525/sansa-c200v2/backlight-c200v2.c
1134 #ifndef BOOTLOADER
1135 target/arm/as3525/powermgmt-as3525.c
1136 #endif /* !BOOTLOADER */
1137 #endif /* !SIMULATOR */
1138 #endif /* SANSA_E200V2 */
1140 #ifdef SANSA_M200V4
1141 #ifndef SIMULATOR
1142 target/arm/lcd-ssd1815.c
1143 target/arm/as3525/sansa-m200v4/button-m200v4.c
1144 #ifndef BOOTLOADER
1145 target/arm/as3525/sansa-m200v4/powermgmt-m200v4.c
1146 #endif /* !BOOTLOADER */
1147 #endif /* !SIMULATOR */
1148 #endif /* SANSA_M200V4 */
1150 #ifdef SANSA_FUZE
1151 #ifndef SIMULATOR
1152 target/arm/as3525/sansa-fuze/button-fuze.c
1153 target/arm/as3525/sansa-fuze/lcd-fuze.c
1154 target/arm/as3525/lcd-as-e200v2-fuze.S
1155 target/arm/as3525/backlight-e200v2-fuze.c
1156 #ifndef BOOTLOADER
1157 target/arm/as3525/powermgmt-as3525.c
1158 #endif /* !BOOTLOADER */
1159 #endif /* !SIMULATOR */
1160 #endif /* SANSA_FUZE */
1162 #ifdef IAUDIO_7
1163 #ifndef SIMULATOR
1164 drivers/nand_id.c
1165 drivers/pcf50606.c
1166 target/arm/usb-tcc.c
1167 target/arm/tcc77x/system-tcc77x.c
1168 target/arm/tcc77x/kernel-tcc77x.c
1169 target/arm/tcc77x/timer-tcc77x.c
1170 target/arm/tcc77x/adc-tcc77x.c
1171 target/arm/tcc77x/iaudio7/lcd-iaudio7.c
1172 target/arm/tcc77x/iaudio7/power-iaudio7.c
1173 target/arm/tcc77x/iaudio7/powermgmt-iaudio7.c
1174 target/arm/tcc77x/iaudio7/button-iaudio7.c
1175 target/arm/tcc77x/iaudio7/ata2501.c
1176 #ifndef BOOTLOADER
1177 target/arm/wmcodec-telechips.c
1178 target/arm/pcm-telechips.c
1179 target/arm/tcc77x/debug-tcc77x.c
1180 target/arm/tcc77x/iaudio7/audio-iaudio7.c
1181 #endif /* BOOTLOADER */
1182 #endif /* SIMULATOR */
1183 #endif /* IAUDIO_7 */
1185 #ifdef COWON_D2
1186 #ifndef SIMULATOR
1187 drivers/nand_id.c
1188 drivers/pcf50606.c
1189 target/arm/lcd-as-memframe.S
1190 target/arm/tcc780x/adc-tcc780x.c
1191 target/arm/tcc780x/system-tcc780x.c
1192 target/arm/tcc780x/cowond2/button-cowond2.c
1193 target/arm/tcc780x/cowond2/lcd-cowond2.c
1194 target/arm/tcc780x/cowond2/power-cowond2.c
1195 target/arm/tcc780x/cowond2/powermgmt-cowond2.c
1196 target/arm/tcc780x/cowond2/backlight-cowond2.c
1197 target/arm/usb-tcc.c
1198 #ifndef BOOTLOADER
1199 target/arm/tcc780x/kernel-tcc780x.c
1200 target/arm/tcc780x/timer-tcc780x.c
1201 target/arm/wmcodec-telechips.c
1202 target/arm/tcc780x/debug-tcc780x.c
1203 target/arm/pcm-telechips.c
1204 target/arm/tcc780x/cowond2/audio-cowond2.c
1205 #endif /* BOOTLOADER */
1206 #endif /* SIMULATOR */
1207 #endif /* COWON_D2 */
1209 #if CONFIG_CPU==S5L8700
1210 target/arm/s5l8700/system-s5l8700.c
1211 #endif
1213 #ifdef MEIZU_M6SL
1214 target/arm/s5l8700/meizu-m6sl/lcd-m6sl.c
1215 drivers/qt1106.c
1216 #ifndef SIMULATOR
1217 #ifndef BOOTLOADER
1218 #endif /* BOOTLOADER */
1219 #endif /* SIMULATOR */
1220 #endif /* MEIZU_M6SL */
1222 #ifdef MEIZU_M6SP
1223 target/arm/s5l8700/meizu-m6sp/lcd-m6sp.c
1224 #ifndef SIMULATOR
1225 #ifndef BOOTLOADER
1226 #endif /* BOOTLOADER */
1227 #endif /* SIMULATOR */
1228 #endif /* MEIZU_M6SP */
1230 #ifdef MEIZU_M3
1231 target/arm/s5l8700/meizu-m3/lcd-m3.c
1232 drivers/qt1106.c
1233 #ifndef SIMULATOR
1234 #ifndef BOOTLOADER
1235 #endif /* BOOTLOADER */
1236 #endif /* SIMULATOR */
1237 #endif /* MEIZU_M3 */
1239 #ifndef SIMULATOR
1240 #if CONFIG_CPU == JZ4732
1241 target/mips/ingenic_jz47xx/ata-nand-jz4740.c
1242 target/mips/ingenic_jz47xx/ata-sd-jz4740.c
1243 target/mips/ingenic_jz47xx/debug-jz4740.c
1244 target/mips/ingenic_jz47xx/kernel-jz4740.c
1245 target/mips/ingenic_jz47xx/i2c-jz4740.c
1246 target/mips/ingenic_jz47xx/lcd-jz4740.c
1247 target/mips/ingenic_jz47xx/system-jz4740.c
1248 target/mips/ingenic_jz47xx/usb-jz4740.c
1249 target/mips/ingenic_jz47xx/timer-jz4740.c
1250 #ifndef BOOTLOADER
1251 target/mips/ingenic_jz47xx/codec-jz4740.c
1252 target/mips/ingenic_jz47xx/pcm-jz4740.c
1253 #endif /* BOOTLOADER */
1254 drivers/nand_id.c
1255 #endif /* CONFIG_CPU == JZ4732 */
1257 #if defined(ONDA_VX747) || defined(ONDA_VX747P)
1258 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1259 target/mips/ingenic_jz47xx/onda_vx747/lcd-onda_vx747.c
1260 target/mips/ingenic_jz47xx/onda_vx747/power-onda_vx747.c
1261 target/mips/ingenic_jz47xx/onda_vx747/sadc-onda_vx747.c
1262 target/mips/ingenic_jz47xx/onda_vx747/speaker-onda_vx747.c
1263 #endif /* ONDA_VX747 || ONDA_VX747P */
1265 #ifdef ONDA_VX767
1266 target/mips/ingenic_jz47xx/onda_vx747/backlight-onda_vx7X7.c
1267 target/mips/ingenic_jz47xx/onda_vx767/button-onda_vx767.c
1268 target/mips/ingenic_jz47xx/onda_vx767/lcd-onda_vx767.c
1269 target/mips/ingenic_jz47xx/onda_vx767/power-onda_vx767.c
1270 target/mips/ingenic_jz47xx/onda_vx767/sadc-onda_vx767.c
1271 #endif /* ONDA_VX767 */
1273 #if defined(LYRE_PROTO1)
1274 target/arm/at91sam/lyre_proto1/adc-lyre_proto1.c
1275 target/arm/at91sam/lyre_proto1/backlight-lyre_proto1.c
1276 target/arm/at91sam/lyre_proto1/button-lyre_proto1.c
1277 target/arm/at91sam/lyre_proto1/crt0.S
1278 target/arm/at91sam/lyre_proto1/debug-lyre_proto1.c
1279 target/arm/at91sam/lyre_proto1/kernel-lyre_proto1.c
1280 target/arm/at91sam/lyre_proto1/lcd-lyre_proto1.c
1281 target/arm/at91sam/lyre_proto1/system-lyre_proto1.c
1282 target/arm/at91sam/lyre_proto1/timer-lyre_proto1.c
1283 #endif
1284 #endif /* SIMULATOR */