soc/intel/skylake: Configure L1 substates for PCH root ports
Exposes PcieRpL1Substates to devicetree to allow boards to override this configuration. Tested on an Acer Aspire VN7-572G (Skylake-U). Change-Id: I36150858485715016158595c832c142b0582ddb8 Signed-off-by: Benjamin Doron <benjamin.doron00@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39538 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
3e314636a6
commit
adcb870837
|
@ -212,6 +212,8 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
|||
params->PcieRpMaxPayload[i] = config->PcieRpMaxPayload[i];
|
||||
if (config->PcieRpAspm[i])
|
||||
params->PcieRpAspm[i] = config->PcieRpAspm[i] - 1;
|
||||
if (config->pcie_rp_l1substates[i])
|
||||
params->PcieRpL1Substates[i] = config->pcie_rp_l1substates[i] - 1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -264,6 +264,14 @@ struct soc_intel_skylake_config {
|
|||
AspmAutoConfig,
|
||||
} PcieRpAspm[CONFIG_MAX_ROOT_PORTS];
|
||||
|
||||
/* PCIe RP L1 substate */
|
||||
enum {
|
||||
L1SS_Default,
|
||||
L1SS_Disabled,
|
||||
L1SS_L1_1,
|
||||
L1SS_L1_2,
|
||||
} pcie_rp_l1substates[CONFIG_MAX_ROOT_PORTS];
|
||||
|
||||
/* USB related */
|
||||
struct usb2_port_config usb2_ports[16];
|
||||
struct usb3_port_config usb3_ports[10];
|
||||
|
|
Loading…
Reference in New Issue