mb/google/brya: Configure H21 as GPO and A17 as low
As per the schematics, UFC has on card oscillator so we donot need H21 in NF1 that is IMGCLKOUT H21 is used to enable this oscialltor so configuring it as 1 A17 is configured as high while _ON method is called by driver and it is configured as low when _OFF method is called by driver. Hence coreboot should configure it as low on boot. BUG=b:190674542 Signed-off-by: Varshit B Pandya <varshit.b.pandya@intel.com> Change-Id: I745169a5ab6a9c20b6e1bda792a43193d04ac48d Reviewed-on: https://review.coreboot.org/c/coreboot/+/56655 Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
a23d0b6634
commit
7a8c68ad97
|
@ -37,7 +37,7 @@ static const struct pad_config gpio_table[] = {
|
||||||
/* A16 : USB_OC3# ==> USB_A0_OC_ODL */
|
/* A16 : USB_OC3# ==> USB_A0_OC_ODL */
|
||||||
PAD_CFG_NF(GPP_A16, NONE, DEEP, NF1),
|
PAD_CFG_NF(GPP_A16, NONE, DEEP, NF1),
|
||||||
/* A17 : DISP_MISCC ==> EN_FCAM_PWR */
|
/* A17 : DISP_MISCC ==> EN_FCAM_PWR */
|
||||||
PAD_CFG_GPO(GPP_A17, 1, DEEP),
|
PAD_CFG_GPO(GPP_A17, 0, DEEP),
|
||||||
/* A18 : DDSP_HPDB ==> HDMI_HPD */
|
/* A18 : DDSP_HPDB ==> HDMI_HPD */
|
||||||
PAD_CFG_NF(GPP_A18, NONE, DEEP, NF1),
|
PAD_CFG_NF(GPP_A18, NONE, DEEP, NF1),
|
||||||
/* A19 : DDSP_HPD1 ==> USB_C2_AUX_DC_P */
|
/* A19 : DDSP_HPD1 ==> USB_C2_AUX_DC_P */
|
||||||
|
@ -299,7 +299,7 @@ static const struct pad_config gpio_table[] = {
|
||||||
/* H20 : IMGCLKOUT1 ==> WLAN_PERST_L */
|
/* H20 : IMGCLKOUT1 ==> WLAN_PERST_L */
|
||||||
PAD_CFG_GPO(GPP_H20, 1, DEEP),
|
PAD_CFG_GPO(GPP_H20, 1, DEEP),
|
||||||
/* H21 : IMGCLKOUT2 ==> UCAM_MCLK */
|
/* H21 : IMGCLKOUT2 ==> UCAM_MCLK */
|
||||||
PAD_CFG_NF(GPP_H21, NONE, DEEP, NF1),
|
PAD_CFG_GPO(GPP_H21, 0, DEEP),
|
||||||
/* H22 : IMGCLKOUT3 ==> WCAM_MCLK_R */
|
/* H22 : IMGCLKOUT3 ==> WCAM_MCLK_R */
|
||||||
PAD_CFG_NF(GPP_H22, NONE, DEEP, NF1),
|
PAD_CFG_NF(GPP_H22, NONE, DEEP, NF1),
|
||||||
/* H23 : SRCCLKREQ5# ==> WWAN_CLKREQ_ODL */
|
/* H23 : SRCCLKREQ5# ==> WWAN_CLKREQ_ODL */
|
||||||
|
|
Loading…
Reference in New Issue