summaryrefslogtreecommitdiff
path: root/src/mainboard/google/dedede
diff options
context:
space:
mode:
authorKarthikeyan Ramasubramanian <kramasub@google.com>2021-07-26 16:23:14 -0600
committerKarthik Ramasubramanian <kramasub@google.com>2021-07-28 16:12:51 +0000
commitd678f655647f9f378eea35e116e97df12d2cc020 (patch)
treeed71ff1281ffd3c7dbe272ff45b305881303daa5 /src/mainboard/google/dedede
parentb8c2fcca7358839b46b63951712c9b87dbc69c43 (diff)
Revert "mb/google/dedede: Program VCCIO selection for EN_SPKR GPIO"
This reverts commit ce79ceec86a38145b3a27aa4c78cf83a76cd51d0. 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. Change-Id: Ifea5d4d0f474873f8bf4818ec1986e534f455216 Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56615 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/mainboard/google/dedede')
-rw-r--r--src/mainboard/google/dedede/Makefile.inc1
-rw-r--r--src/mainboard/google/dedede/fw_config.c17
2 files changed, 0 insertions, 18 deletions
diff --git a/src/mainboard/google/dedede/Makefile.inc b/src/mainboard/google/dedede/Makefile.inc
index cc815d857b..1b5503d40f 100644
--- a/src/mainboard/google/dedede/Makefile.inc
+++ b/src/mainboard/google/dedede/Makefile.inc
@@ -9,7 +9,6 @@ ramstage-$(CONFIG_CHROMEOS) += chromeos.c
ramstage-y += mainboard.c
ramstage-y += ec.c
ramstage-y += board_info.c
-ramstage-$(CONFIG_FW_CONFIG) += fw_config.c
VARIANT_DIR:=$(call strip_quotes,$(CONFIG_VARIANT_DIR))
diff --git a/src/mainboard/google/dedede/fw_config.c b/src/mainboard/google/dedede/fw_config.c
deleted file mode 100644
index 178f0e1679..0000000000
--- a/src/mainboard/google/dedede/fw_config.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <bootstate.h>
-#include <fw_config.h>
-#include <gpio.h>
-
-static const struct pad_config spkr_pads[] = {
- PAD_CFG_GPO_VCCIOSEL(GPP_D17, 0, PLTRST, 1V8),
-};
-
-static void fw_config_handle(void *unused)
-{
- if (fw_config_probe(FW_CONFIG(AUDIO_AMP, RT1015P_AUTO))) {
- gpio_configure_pads(spkr_pads, ARRAY_SIZE(spkr_pads));
- }
-}
-BOOT_STATE_INIT_ENTRY(BS_DEV_ENABLE, BS_ON_ENTRY, fw_config_handle, NULL);