blob: 9d0df9b8c14180297f9eccae94659c102928b369 [file] [log] [blame]
Masahiro Yamadaf3e12b72014-09-16 16:32:58 +09001menu "Device Drivers"
2
3source "drivers/core/Kconfig"
4
Bin Meng51c7df22015-08-20 22:44:14 -07005source "drivers/clk/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
Stephen Warrenf4b67532015-03-24 20:07:33 -060063config PHYS_TO_BUS
Joe Hershberger17491a82015-06-22 16:15:29 -050064 bool "Custom physical to bus address mapping"
Stephen Warrenf4b67532015-03-24 20:07:33 -060065 help
66 Some SoCs use a different address map for CPU physical addresses and
67 peripheral DMA master accesses. If yours does, select this option in
68 your platform's Kconfig, and implement the appropriate mapping
69 functions in your platform's support code.
Bin Meng82d0f6b2015-08-20 22:44:15 -070070
71endmenu