Yu-hsuan Hsu has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63145 )
Change subject: mb/google/guybrush: Disable EN_SPKR on init ......................................................................
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 --- M src/mainboard/google/guybrush/variants/guybrush/gpio.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/63145/1
diff --git a/src/mainboard/google/guybrush/variants/guybrush/gpio.c b/src/mainboard/google/guybrush/variants/guybrush/gpio.c index cea1f42..f3ed09f 100644 --- a/src/mainboard/google/guybrush/variants/guybrush/gpio.c +++ b/src/mainboard/google/guybrush/variants/guybrush/gpio.c @@ -35,7 +35,7 @@ /* 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), };