soc/intel/skylake: Rename PcieRpAspm devicetree config
This configuration option shares a name with the FSP UPD, but is enumerated differently. Change its name to minimise confusion about the options. Change-Id: Id74f043ecd549bde4501320bff1dc080bde64057 Signed-off-by: Benjamin Doron <benjamin.doron00@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45001 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
3f1de9add9
commit
b53858bace
|
@ -151,7 +151,7 @@ chip soc/intel/skylake
|
|||
# Enable Advanced Error Reporting
|
||||
register "PcieRpAdvancedErrorReporting[2]" = "1"
|
||||
# Disable Aspm
|
||||
register "PcieRpAspm[2]" = "AspmDisabled"
|
||||
register "pcie_rp_aspm[2]" = "AspmDisabled"
|
||||
|
||||
# PCIE Port 4 disabled
|
||||
# PCIE Port 5 x1 -> MODULE i219
|
||||
|
@ -166,7 +166,7 @@ chip soc/intel/skylake
|
|||
# Enable Advanced Error Reporting
|
||||
register "PcieRpAdvancedErrorReporting[5]" = "1"
|
||||
# Disable Aspm
|
||||
register "PcieRpAspm[5]" = "AspmDisabled"
|
||||
register "pcie_rp_aspm[5]" = "AspmDisabled"
|
||||
|
||||
# PCIE Port 7 Disabled
|
||||
# PCIE Port 8 Disabled
|
||||
|
@ -184,7 +184,7 @@ chip soc/intel/skylake
|
|||
# Enable Advanced Error Reporting
|
||||
register "PcieRpAdvancedErrorReporting[8]" = "1"
|
||||
# Disable Aspm
|
||||
register "PcieRpAspm[8]" = "AspmDisabled"
|
||||
register "pcie_rp_aspm[8]" = "AspmDisabled"
|
||||
|
||||
# USB 2.0 Enable all ports
|
||||
register "usb2_ports[0]" = "USB2_PORT_TYPE_C(OC_SKIP)" # USB-C Port 2
|
||||
|
|
|
@ -210,8 +210,8 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
|||
sizeof(params->PcieRpHotPlug));
|
||||
for (i = 0; i < CONFIG_MAX_ROOT_PORTS; i++) {
|
||||
params->PcieRpMaxPayload[i] = config->PcieRpMaxPayload[i];
|
||||
if (config->PcieRpAspm[i])
|
||||
params->PcieRpAspm[i] = config->PcieRpAspm[i] - 1;
|
||||
if (config->pcie_rp_aspm[i])
|
||||
params->PcieRpAspm[i] = config->pcie_rp_aspm[i] - 1;
|
||||
if (config->pcie_rp_l1substates[i])
|
||||
params->PcieRpL1Substates[i] = config->pcie_rp_l1substates[i] - 1;
|
||||
}
|
||||
|
|
|
@ -262,7 +262,7 @@ struct soc_intel_skylake_config {
|
|||
AspmL1,
|
||||
AspmL0sL1,
|
||||
AspmAutoConfig,
|
||||
} PcieRpAspm[CONFIG_MAX_ROOT_PORTS];
|
||||
} pcie_rp_aspm[CONFIG_MAX_ROOT_PORTS];
|
||||
|
||||
/* PCIe RP L1 substate */
|
||||
enum {
|
||||
|
|
Loading…
Reference in New Issue