blob: c7e526cc8a7f5c0a62e97993f2048e4c21caa03e [file] [log] [blame]
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09001menu "Device Drivers"
2
3source "drivers/core/Kconfig"
4
Simon Glass131a6452015-04-28 20:25:09 -06005source "drivers/cpu/Kconfig"
6
Simon Glass2b98fb42015-02-05 21:41:34 -07007source "drivers/demo/Kconfig"
8
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09009source "drivers/pci/Kconfig"
10
11source "drivers/pcmcia/Kconfig"
12
13source "drivers/mtd/Kconfig"
14
15source "drivers/block/Kconfig"
16
17source "drivers/misc/Kconfig"
18
19source "drivers/net/Kconfig"
20
21source "drivers/input/Kconfig"
22
23source "drivers/serial/Kconfig"
24
25source "drivers/tpm/Kconfig"
26
27source "drivers/i2c/Kconfig"
28
29source "drivers/spi/Kconfig"
30
31source "drivers/gpio/Kconfig"
32
33source "drivers/power/Kconfig"
34
35source "drivers/hwmon/Kconfig"
36
37source "drivers/watchdog/Kconfig"
38
39source "drivers/video/Kconfig"
40
41source "drivers/sound/Kconfig"
42
43source "drivers/usb/Kconfig"
44
45source "drivers/dfu/Kconfig"
46
47source "drivers/mmc/Kconfig"
48
49source "drivers/rtc/Kconfig"
50
51source "drivers/dma/Kconfig"
52
53source "drivers/crypto/Kconfig"
54
Simon Glassd8b771d2015-02-05 21:41:35 -070055source "drivers/thermal/Kconfig"
56
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +090057endmenu
Stephen Warrenf4b67532015-03-24 20:07:33 -060058
59config PHYS_TO_BUS
Joe Hershberger17491a82015-06-22 16:15:29 -050060 bool "Custom physical to bus address mapping"
Stephen Warrenf4b67532015-03-24 20:07:33 -060061 help
62 Some SoCs use a different address map for CPU physical addresses and
63 peripheral DMA master accesses. If yours does, select this option in
64 your platform's Kconfig, and implement the appropriate mapping
65 functions in your platform's support code.