blob: 5ebc89da9129c0e43b2bce4e581a7d8acd43cd1c [file] [log] [blame]
Masahiro Yamadaed363232014-09-16 16:32:58 +09001menu "Device Drivers"
2
3source "drivers/core/Kconfig"
4
Simon Glass11f4dc12015-04-28 20:25:09 -06005source "drivers/cpu/Kconfig"
6
Simon Glass2a4eead2015-02-05 21:41:34 -07007source "drivers/demo/Kconfig"
8
Masahiro Yamadaed363232014-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
Simon Glass59171122015-06-23 15:38:45 -060023source "drivers/led/Kconfig"
24
Masahiro Yamadaed363232014-09-16 16:32:58 +090025source "drivers/serial/Kconfig"
26
27source "drivers/tpm/Kconfig"
28
29source "drivers/i2c/Kconfig"
30
31source "drivers/spi/Kconfig"
32
33source "drivers/gpio/Kconfig"
34
35source "drivers/power/Kconfig"
36
37source "drivers/hwmon/Kconfig"
38
39source "drivers/watchdog/Kconfig"
40
41source "drivers/video/Kconfig"
42
43source "drivers/sound/Kconfig"
44
45source "drivers/usb/Kconfig"
46
47source "drivers/dfu/Kconfig"
48
49source "drivers/mmc/Kconfig"
50
51source "drivers/rtc/Kconfig"
52
53source "drivers/dma/Kconfig"
54
55source "drivers/crypto/Kconfig"
56
Simon Glassf94a1be2015-02-05 21:41:35 -070057source "drivers/thermal/Kconfig"
58
Masahiro Yamadaed363232014-09-16 16:32:58 +090059endmenu
Stephen Warren927c1fa2015-03-24 20:07:33 -060060
61config PHYS_TO_BUS
Joe Hershbergerc9bb9422015-06-22 16:15:29 -050062 bool "Custom physical to bus address mapping"
Stephen Warren927c1fa2015-03-24 20:07:33 -060063 help
64 Some SoCs use a different address map for CPU physical addresses and
65 peripheral DMA master accesses. If yours does, select this option in
66 your platform's Kconfig, and implement the appropriate mapping
67 functions in your platform's support code.