blob: 092bc02b304ef6dc9f8cfd6230a5c1ebbf653618 [file] [log] [blame]
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09001menu "Device Drivers"
2
Simon Glass36ad2342015-06-23 15:39:15 -06003source "drivers/clk/Kconfig"
4
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09005source "drivers/core/Kconfig"
6
Simon Glass131a6452015-04-28 20:25:09 -06007source "drivers/cpu/Kconfig"
8
Simon Glass2b98fb42015-02-05 21:41:34 -07009source "drivers/demo/Kconfig"
10
Masahiro Yamadaf3e12b72014-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 Glasscce3aed2015-06-23 15:38:45 -060025source "drivers/led/Kconfig"
26
Masahiro Yamadaf3e12b72014-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 Glass3a2f3bd2015-06-23 15:39:04 -060039source "drivers/ram/Kconfig"
40
Masahiro Yamadaf3e12b72014-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 Glassd8b771d2015-02-05 21:41:35 -070061source "drivers/thermal/Kconfig"
62
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +090063endmenu
Stephen Warrenf4b67532015-03-24 20:07:33 -060064
65config PHYS_TO_BUS
Joe Hershberger17491a82015-06-22 16:15:29 -050066 bool "Custom physical to bus address mapping"
Stephen Warrenf4b67532015-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.