aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu-Hsuan Hsu <yuhsuan@google.com>2022-03-28 17:49:50 +0800
committerRaul Rangel <rrangel@chromium.org>2022-03-30 14:26:04 +0000
commit2363f0563ceec1ea87b8ff4cd7523051768ab338 (patch)
tree4cbac7f7c0ef63f600ef8e07208b267f8d72d71a
parent0b158d43dfbbb72bbbed26ef87fddecfe072756d (diff)
mb/google/guybrush: Disable EN_SPKR on init
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 guybrush and verify the devbeep and gpio value in kernel Change-Id: Ic949cc95556913a2afef4a683a49eaa1e07e6147 Signed-off-by: Yu-Hsuan Hsu <yuhsuan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/63145 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Raul Rangel <rrangel@chromium.org>
-rw-r--r--src/mainboard/google/guybrush/variants/guybrush/gpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/guybrush/variants/guybrush/gpio.c b/src/mainboard/google/guybrush/variants/guybrush/gpio.c
index cea1f42cca..f3ed09fa29 100644
--- a/src/mainboard/google/guybrush/variants/guybrush/gpio.c
+++ b/src/mainboard/google/guybrush/variants/guybrush/gpio.c
@@ -35,7 +35,7 @@ static const struct soc_amd_gpio bid2_ramstage_gpio_table[] = {
/* EN_PWR_FP */
PAD_GPO(GPIO_32, LOW),
/* EN_SPKR */
- PAD_GPO(GPIO_31, HIGH),
+ PAD_GPO(GPIO_31, LOW),
/* Unused TP27 */
PAD_NC(GPIO_70),
};