mb/google/brask: fix boot beep
Fix the issue that can't hear the boot beep at dev screen. GPP_B14 is used for PWM_PP3300_BUZZER and it should set to GPO. Modify GPP_B14 from PAD_CFG_NF_LOCK to PAD_CFG_GPO_LOCK. BUG=b:229345416 BRANCH=firmware-brya-14505.B TEST=emerge-brask coreboot and verify if the buzzer beeps. Signed-off-by: Dtrain Hsu <dtrain_hsu@compal.corp-partner.google.com> Change-Id: I601735ab20974cd992ca5dd6dbaca1517a395aa2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63645 Reviewed-by: Frank Wu <frank_wu@compal.corp-partner.google.com> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
4b642fd512
commit
f17f6d9334
|
@ -80,7 +80,7 @@ static const struct pad_config gpio_table[] = {
|
|||
/* B13 : PLTRST# ==> PLT_RST_L */
|
||||
PAD_CFG_NF(GPP_B13, NONE, DEEP, NF1),
|
||||
/* B14 : SPKR ==> PWM_PP3300_BUZZER */
|
||||
PAD_CFG_NF_LOCK(GPP_B14, NONE, NF1, LOCK_CONFIG),
|
||||
PAD_CFG_GPO_LOCK(GPP_B14, 0, LOCK_CONFIG),
|
||||
/* B15 : TIME_SYNC0 ==> TP159 */
|
||||
PAD_NC_LOCK(GPP_B15, NONE, LOCK_CONFIG),
|
||||
/* B16 : I2C5_SDA ==> NC */
|
||||
|
|
Loading…
Reference in New Issue