summaryrefslogtreecommitdiff
path: root/drivers/pinctrl/intel/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-08 17:32:08 -0700
committerBin Meng <bmeng.cn@gmail.com>2019-12-15 11:44:26 +0800
commit0a6f333e8d1d05c0d8a0e67439d4ebbab885834d (patch)
tree636a9eed06848fc2e21ef20dcc879914af67cbda /drivers/pinctrl/intel/Kconfig
parent7656582378a3ff166080713d44cfc6fdc8cec6b0 (diff)
x86: apl: Add pinctrl driver
Add a driver for the Apollo Lake pinctrl. This mostly makes use of the common Intel pinctrl support. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/pinctrl/intel/Kconfig')
-rw-r--r--drivers/pinctrl/intel/Kconfig16
1 files changed, 13 insertions, 3 deletions
diff --git a/drivers/pinctrl/intel/Kconfig b/drivers/pinctrl/intel/Kconfig
index c01c6244d9..e62a2e0349 100644
--- a/drivers/pinctrl/intel/Kconfig
+++ b/drivers/pinctrl/intel/Kconfig
@@ -5,12 +5,22 @@
if PINCTRL_INTEL
config INTEL_PINCTRL_DUAL_ROUTE_SUPPORT
- def_bool y
+ bool
+ default y
config INTEL_PINCTRL_PADCFG_PADTOL
- def_bool n
+ bool n
config INTEL_PINCTRL_IOSTANDBY
- def_bool y
+ bool
+ default y
+
+config PINCTRL_INTEL_APL
+ bool "Support Intel Apollo Lake (APL)"
+ help
+ Add support for Intel Apollo Lake pin-control and pin-mux settings.
+ These are mostly read from the device tree, with the early-pads
+ property in the host bridge and the pads property in the fsp-s
+ subnode of the host bridge.
endif