diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2021-07-26 16:18:43 -0600 |
---|---|---|
committer | Karthik Ramasubramanian <kramasub@google.com> | 2021-07-28 16:13:06 +0000 |
commit | ce227fe02d9695993e33403cd5eb3537c7bfff92 (patch) | |
tree | 0021fb03336e422ab2d973545c6fe8c8bbd4bdfe /src/soc/intel/common/block/gpio | |
parent | 2e17d7b89406c89217cfc0966b55b8a211ff8298 (diff) |
Revert "soc/intel/common/block/gpio: Add support to program VCCIO selection"
This reverts commit 4c569b52f6053fc39cb07eed4a0753ade567c5b6. This has
introduced a regression in mainboards using JSL SoC such that it
overrides the soft straps for all the GPIOs. This in turn has led to
some of the peripherals not working.
BUG=None
TEST=Build and boot to OS in Storo. Ensure that the regressed
peripherals are working back again.
Change-Id: Ibfeed1075fe28051b926ddd7ca771693dc19dae8
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56613
Reviewed-by: Evan Green <evgreen@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common/block/gpio')
-rw-r--r-- | src/soc/intel/common/block/gpio/Kconfig | 5 | ||||
-rw-r--r-- | src/soc/intel/common/block/gpio/gpio.c | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/soc/intel/common/block/gpio/Kconfig b/src/soc/intel/common/block/gpio/Kconfig index 1c76c0a319..c946545355 100644 --- a/src/soc/intel/common/block/gpio/Kconfig +++ b/src/soc/intel/common/block/gpio/Kconfig @@ -36,9 +36,4 @@ config SOC_INTEL_COMMON_BLOCK_GPIO_DUAL_ROUTE_SUPPORT bool default n -# Used to program VCCIO Selection as 1.8V or 3.3V -config SOC_INTEL_COMMON_BLOCK_GPIO_PADCFG_VCCIOSEL - bool - default n - endif diff --git a/src/soc/intel/common/block/gpio/gpio.c b/src/soc/intel/common/block/gpio/gpio.c index 5591805120..d4a312bf9a 100644 --- a/src/soc/intel/common/block/gpio/gpio.c +++ b/src/soc/intel/common/block/gpio/gpio.c @@ -39,11 +39,7 @@ PAD_CFG1_IOSSTATE_MASK) #endif -#if CONFIG(SOC_INTEL_COMMON_BLOCK_GPIO_PADCFG_VCCIOSEL) -#define PAD_DW2_MASK (PAD_CFG2_VCCIOSEL_MASK | PAD_CFG2_DEBOUNCE_MASK) -#else #define PAD_DW2_MASK (PAD_CFG2_DEBOUNCE_MASK) -#endif /* SOC_INTEL_COMMON_BLOCK_GPIO_PADCFG_VCCIOSEL */ #define PAD_DW3_MASK (0) #define MISCCFG_GPE0_DW0_SHIFT 8 |