diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-06 21:42:51 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-12-15 11:44:24 +0800 |
commit | e556d3d630d31fd966eb676fbe43a90bf06e6d29 (patch) | |
tree | b9d51c00d5f12c69df85b93a2dbbf40a988b8689 /arch/Kconfig | |
parent | 4806fcea1a4b0143fc57932bc5cbdffdf8afca4e (diff) | |
download | u-boot-e556d3d630d31fd966eb676fbe43a90bf06e6d29.tar.gz u-boot-e556d3d630d31fd966eb676fbe43a90bf06e6d29.tar.xz u-boot-e556d3d630d31fd966eb676fbe43a90bf06e6d29.zip |
x86: Enable pinctrl in SPL and TPL
If these phases are used we typically want to enable pinctrl in then, so
that pad setup and GPIO access are possible.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 54de91afb3..ae9c93ed7b 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -193,6 +193,7 @@ config X86 imply SPL_OF_LIBFDT imply SPL_DRIVERS_MISC_SUPPORT imply SPL_GPIO_SUPPORT + imply SPL_PINCTRL imply SPL_LIBCOMMON_SUPPORT imply SPL_LIBGENERIC_SUPPORT imply SPL_SERIAL_SUPPORT @@ -206,6 +207,7 @@ config X86 imply TPL_DM imply TPL_DRIVERS_MISC_SUPPORT imply TPL_GPIO_SUPPORT + imply TPL_PINCTRL imply TPL_LIBCOMMON_SUPPORT imply TPL_LIBGENERIC_SUPPORT imply TPL_SERIAL_SUPPORT |