diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-03-25 01:26:04 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-03-29 19:08:09 +0000 |
commit | a228279ed795cb9fe89b38a4b5cbe40a38662767 (patch) | |
tree | 5365622cf897fd8a7915b9f4468b263f563f9a14 /src/mainboard/google/guybrush/mainboard.c | |
parent | 27b295b98b65e05635ee5a40967adb0f9ca79afa (diff) |
mb/google/guybrush: select DISABLE_KEYBOARD_RESET_PIN
Now that we have the DISABLE_KEYBOARD_RESET_PIN Kconfig option, select
it and remove the temporary workaround that was implemented in the
mainboard code in commit 39ef89033624a2d14b0c77cdbdf287dd7d7059e1.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I634d11290dad8c93f10979f06243b1bf84737ae2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51785
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/google/guybrush/mainboard.c')
-rw-r--r-- | src/mainboard/google/guybrush/mainboard.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/mainboard/google/guybrush/mainboard.c b/src/mainboard/google/guybrush/mainboard.c index ffa682218d..72ad7a8a0f 100644 --- a/src/mainboard/google/guybrush/mainboard.c +++ b/src/mainboard/google/guybrush/mainboard.c @@ -1,11 +1,9 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ -#include <amdblocks/acpimmio.h> #include <amdblocks/amd_pci_util.h> #include <baseboard/variants.h> #include <device/device.h> #include <soc/acpi.h> -#include <soc/southbridge.h> #include <variant/ec.h> #include <vendorcode/google/chromeos/chromeos.h> @@ -90,16 +88,6 @@ static void mainboard_configure_gpios(void) { size_t base_num_gpios, override_num_gpios; const struct soc_amd_gpio *base_gpios, *override_gpios; - u32 reg; - - /* - * Disable KBRST feature - * KBRSTEN is set to 1 on reset and this causes system reset - * if GPIO 129 is configured as GPO_LOW. - * */ - reg = pm_read8(PM_RST_CTRL1); - reg &= ~KBRSTEN; - pm_write8(PM_RST_CTRL1, reg); base_gpios = variant_base_gpio_table(&base_num_gpios); override_gpios = variant_override_gpio_table(&override_num_gpios); |