blob: 092bc02b304ef6dc9f8cfd6230a5c1ebbf653618 [file] [log] [blame]
Masahiro Yamadaed363232014-09-16 16:32:58 +09001menu "Device Drivers"
2
Simon Glassf26c8a82015-06-23 15:39:15 -06003source "drivers/clk/Kconfig"
4
Masahiro Yamadaed363232014-09-16 16:32:58 +09005source "drivers/core/Kconfig"
6
Simon Glass11f4dc12015-04-28 20:25:09 -06007source "drivers/cpu/Kconfig"
8
Simon Glass2a4eead2015-02-05 21:41:34 -07009source "drivers/demo/Kconfig"
10
Masahiro Yamadaed363232014-09-16 16:32:58 +090011source "drivers/pci/Kconfig"
12
13source "drivers/pcmcia/Kconfig"
14
15source "drivers/mtd/Kconfig"
16
17source "drivers/block/Kconfig"
18
19source "drivers/misc/Kconfig"
20
21source "drivers/net/Kconfig"
22
23source "drivers/input/Kconfig"
24
Simon Glass59171122015-06-23 15:38:45 -060025source "drivers/led/Kconfig"
26
Masahiro Yamadaed363232014-09-16 16:32:58 +090027source "drivers/serial/Kconfig"
28
29source "drivers/tpm/Kconfig"
30
31source "drivers/i2c/Kconfig"
32
33source "drivers/spi/Kconfig"
34
35source "drivers/gpio/Kconfig"
36
37source "drivers/power/Kconfig"
38
Simon Glass6c51df62015-06-23 15:39:04 -060039source "drivers/ram/Kconfig"
40
Masahiro Yamadaed363232014-09-16 16:32:58 +090041source "drivers/hwmon/Kconfig"
42
43source "drivers/watchdog/Kconfig"
44
45source "drivers/video/Kconfig"
46
47source "drivers/sound/Kconfig"
48
49source "drivers/usb/Kconfig"
50
51source "drivers/dfu/Kconfig"
52
53source "drivers/mmc/Kconfig"
54
55source "drivers/rtc/Kconfig"
56
57source "drivers/dma/Kconfig"
58
59source "drivers/crypto/Kconfig"
60
Simon Glassf94a1be2015-02-05 21:41:35 -070061source "drivers/thermal/Kconfig"
62
Masahiro Yamadaed363232014-09-16 16:32:58 +090063endmenu
Stephen Warren927c1fa2015-03-24 20:07:33 -060064
65config PHYS_TO_BUS
Joe Hershbergerc9bb9422015-06-22 16:15:29 -050066 bool "Custom physical to bus address mapping"
Stephen Warren927c1fa2015-03-24 20:07:33 -060067 help
68 Some SoCs use a different address map for CPU physical addresses and
69 peripheral DMA master accesses. If yours does, select this option in
70 your platform's Kconfig, and implement the appropriate mapping
71 functions in your platform's support code.