diff options
author | Yu-Hsuan Hsu <yuhsuan@google.com> | 2022-04-11 14:34:35 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-04-13 15:14:48 +0000 |
commit | b3a042f6192f77a0f65fa56853fced2a41a0c904 (patch) | |
tree | c71cf360511e10c3fc88bed1252184044834c2ac | |
parent | d8ea360d3ea1944e76fbbc36f35199a52160a9e6 (diff) |
mb/google/guybrush: Disable EN_SPKR on init on Nipperkin and Dewatt
We don't want to enable the speaker on init. It will be enabled while
using GPIO AMP codec in depthcharge.
BUG=b:223289882
TEST=boot Nipperkin and Dewatt and then verify the devbeep and gpio
values in kernel
Signed-off-by: Yu-Hsuan Hsu <yuhsuan@google.com>
Change-Id: Id874421d7464b15be6e521576696bb97e6b22d6a
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63540
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
-rw-r--r-- | src/mainboard/google/guybrush/variants/baseboard/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/guybrush/variants/baseboard/gpio.c b/src/mainboard/google/guybrush/variants/baseboard/gpio.c index fff98d2d87..53ff85b455 100644 --- a/src/mainboard/google/guybrush/variants/baseboard/gpio.c +++ b/src/mainboard/google/guybrush/variants/baseboard/gpio.c @@ -82,7 +82,7 @@ static const struct soc_amd_gpio base_gpio_table[] = { /* SD_AUX_RESET_L */ PAD_GPO(GPIO_69, HIGH), /* EN_SPKR */ - PAD_GPO(GPIO_70, HIGH), + PAD_GPO(GPIO_70, LOW), /* GPIO_71 - GPIO_73: Not available */ /* Unused TP49 */ PAD_NC(GPIO_74), |