diff options
author | Patrick Huang <patrick.huang@amd.corp-partner.google.com> | 2023-03-22 13:18:03 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-27 12:06:31 +0000 |
commit | 509321f5a815f67e5d22526fdfbd94519f23bd7d (patch) | |
tree | b3f7f7658fe17186a7490b5d9a2db602b4fc6468 /src/soc/amd | |
parent | 292e67327649a4c731ea8d65d8ba39a33e8f8cb8 (diff) |
soc/amd/mendocino: Add UPD to support USB3 force to gen1 by port
Add UPD usb3_port_force_gen1 to support USB3 port force to gen1
BUG=b:273841155
BRANCH=skyrim
TEST=Build, verify USB3 port setting to gen1.
Change-Id: Iaa476f56cf10588d7de2203deca4122958c00783
Signed-off-by: Patrick Huang <patrick.huang@amd.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73916
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/mendocino/chip.h | 14 | ||||
-rw-r--r-- | src/soc/amd/mendocino/fsp_m_params.c | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/soc/amd/mendocino/chip.h b/src/soc/amd/mendocino/chip.h index 42f27cb3a5..f16f5fd4be 100644 --- a/src/soc/amd/mendocino/chip.h +++ b/src/soc/amd/mendocino/chip.h @@ -13,6 +13,16 @@ #include <types.h> #include <vendorcode/amd/fsp/mendocino/FspUsb.h> +/* force USB3 port to gen1, bit0 - controller0 Port0, bit1 - Port1, etc */ +union __packed usb3_force_gen1 { + struct { + uint8_t xhci0_port0:1; + uint8_t xhci1_port0:1; + uint8_t xhci1_port1:1; + } ports; + uint8_t usb3_port_force_gen1_en; +}; + struct soc_amd_mendocino_config { struct soc_amd_common_config common_config; u8 i2c_scl_reset; @@ -163,6 +173,10 @@ struct soc_amd_mendocino_config { /* Set for PCIe optimization w/a and a double confirming on the result of PCIe Signal Integrity is highly recommended. */ uint8_t dxio_tx_vboost_enable; + + /* Force USB3 port to gen1, bit0 - controller0 Port0, bit1 - Port1 */ + union usb3_force_gen1 usb3_port_force_gen1; + }; #endif /* MENDOCINO_CHIP_H */ diff --git a/src/soc/amd/mendocino/fsp_m_params.c b/src/soc/amd/mendocino/fsp_m_params.c index 8533743d51..37d4048a80 100644 --- a/src/soc/amd/mendocino/fsp_m_params.c +++ b/src/soc/amd/mendocino/fsp_m_params.c @@ -174,4 +174,6 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version) fsp_fill_pcie_ddi_descriptors(mcfg); fsp_assign_ioapic_upds(mcfg); mb_pre_fspm(mcfg); + + mcfg->fch_usb_3_port_force_gen1 = config->usb3_port_force_gen1.usb3_port_force_gen1_en; } |