In order to detect USB Type C device port as Super Speed, we need to set corresponding bit in UPD UsbTcPortEn. This patch will use device path to determine which port should be enabled. BUG=b:184324979 Test=Boot board, USB Type C must be functional and operate at Super Speed. Signed-off-by: Bernardo Perez Priego <bernardo.perez.priego@intel.com> Change-Id: I7da63f21d51889a888699540f780cb26b480c26d Reviewed-on: https://review.coreboot.org/c/coreboot/+/55361 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sridhar Siricilla <sridhar.siricilla@intel.com> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
635 lines
18 KiB
C
635 lines
18 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <assert.h>
|
|
#include <cbfs.h>
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <fsp/api.h>
|
|
#include <fsp/ppi/mp_service_ppi.h>
|
|
#include <fsp/util.h>
|
|
#include <intelblocks/irq.h>
|
|
#include <intelblocks/lpss.h>
|
|
#include <intelblocks/xdci.h>
|
|
#include <intelpch/lockdown.h>
|
|
#include <intelblocks/mp_init.h>
|
|
#include <intelblocks/tcss.h>
|
|
#include <soc/gpio_soc_defs.h>
|
|
#include <soc/intel/common/vbt.h>
|
|
#include <soc/pci_devs.h>
|
|
#include <soc/pcie.h>
|
|
#include <soc/ramstage.h>
|
|
#include <soc/soc_chip.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
/* THC assignment definition */
|
|
#define THC_NONE 0
|
|
#define THC_0 1
|
|
#define THC_1 2
|
|
|
|
/* SATA DEVSLP idle timeout default values */
|
|
#define DEF_DMVAL 15
|
|
#define DEF_DITOVAL 625
|
|
|
|
/*
|
|
* ME End of Post configuration
|
|
* 0 - Disable EOP.
|
|
* 1 - Send in PEI (Applicable for FSP in API mode)
|
|
* 2 - Send in DXE (Not applicable for FSP in API mode)
|
|
*/
|
|
enum fsp_end_of_post {
|
|
EOP_DISABLE = 0,
|
|
EOP_PEI = 1,
|
|
EOP_DXE = 2,
|
|
};
|
|
|
|
static const struct slot_irq_constraints irq_constraints[] = {
|
|
{
|
|
.slot = SA_DEV_SLOT_IGD,
|
|
.fns = {
|
|
ANY_PIRQ(SA_DEVFN_IGD),
|
|
},
|
|
},
|
|
{
|
|
.slot = SA_DEV_SLOT_DPTF,
|
|
.fns = {
|
|
ANY_PIRQ(SA_DEVFN_DPTF),
|
|
},
|
|
},
|
|
{
|
|
.slot = SA_DEV_SLOT_IPU,
|
|
.fns = {
|
|
ANY_PIRQ(SA_DEVFN_IPU),
|
|
},
|
|
},
|
|
{
|
|
.slot = SA_DEV_SLOT_CPU_6,
|
|
.fns = {
|
|
ANY_PIRQ(SA_DEVFN_CPU_PCIE6_0),
|
|
ANY_PIRQ(SA_DEVFN_CPU_PCIE6_2),
|
|
},
|
|
},
|
|
{
|
|
.slot = SA_DEV_SLOT_TBT,
|
|
.fns = {
|
|
ANY_PIRQ(SA_DEVFN_TBT0),
|
|
ANY_PIRQ(SA_DEVFN_TBT1),
|
|
ANY_PIRQ(SA_DEVFN_TBT2),
|
|
ANY_PIRQ(SA_DEVFN_TBT3),
|
|
},
|
|
},
|
|
{
|
|
.slot = SA_DEV_SLOT_TCSS,
|
|
.fns = {
|
|
ANY_PIRQ(SA_DEVFN_TCSS_XHCI),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_ISH,
|
|
.fns = {
|
|
DIRECT_IRQ(PCH_DEVFN_ISH),
|
|
DIRECT_IRQ(PCH_DEVFN_GSPI2),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_XHCI,
|
|
.fns = {
|
|
ANY_PIRQ(PCH_DEVFN_XHCI),
|
|
ANY_PIRQ(PCH_DEVFN_CNVI_WIFI),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_SIO3,
|
|
.fns = {
|
|
DIRECT_IRQ(PCH_DEVFN_I2C0),
|
|
DIRECT_IRQ(PCH_DEVFN_I2C1),
|
|
DIRECT_IRQ(PCH_DEVFN_I2C2),
|
|
DIRECT_IRQ(PCH_DEVFN_I2C3),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_CSE,
|
|
.fns = {
|
|
ANY_PIRQ(PCH_DEVFN_CSE),
|
|
ANY_PIRQ(PCH_DEVFN_CSE_2),
|
|
ANY_PIRQ(PCH_DEVFN_CSE_IDER),
|
|
ANY_PIRQ(PCH_DEVFN_CSE_KT),
|
|
ANY_PIRQ(PCH_DEVFN_CSE_3),
|
|
ANY_PIRQ(PCH_DEVFN_CSE_4),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_SATA,
|
|
.fns = {
|
|
ANY_PIRQ(PCH_DEVFN_SATA),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_SIO4,
|
|
.fns = {
|
|
DIRECT_IRQ(PCH_DEVFN_I2C4),
|
|
DIRECT_IRQ(PCH_DEVFN_I2C5),
|
|
DIRECT_IRQ(PCH_DEVFN_UART2),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_PCIE,
|
|
.fns = {
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE1, PCI_INT_A, PIRQ_A),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE2, PCI_INT_B, PIRQ_B),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE3, PCI_INT_C, PIRQ_C),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE4, PCI_INT_D, PIRQ_D),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE5, PCI_INT_A, PIRQ_A),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE6, PCI_INT_B, PIRQ_B),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE7, PCI_INT_C, PIRQ_C),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE8, PCI_INT_D, PIRQ_D),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_PCIE_1,
|
|
.fns = {
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE9, PCI_INT_A, PIRQ_A),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE10, PCI_INT_B, PIRQ_B),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE11, PCI_INT_C, PIRQ_C),
|
|
FIXED_INT_PIRQ(PCH_DEVFN_PCIE12, PCI_INT_D, PIRQ_D),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_SIO5,
|
|
.fns = {
|
|
FIXED_INT_ANY_PIRQ(PCH_DEVFN_UART0, PCI_INT_A),
|
|
FIXED_INT_ANY_PIRQ(PCH_DEVFN_UART1, PCI_INT_B),
|
|
ANY_PIRQ(PCH_DEVFN_GSPI0),
|
|
ANY_PIRQ(PCH_DEVFN_GSPI1),
|
|
},
|
|
},
|
|
{
|
|
.slot = PCH_DEV_SLOT_ESPI,
|
|
.fns = {
|
|
ANY_PIRQ(PCH_DEVFN_HDA),
|
|
ANY_PIRQ(PCH_DEVFN_SMBUS),
|
|
ANY_PIRQ(PCH_DEVFN_GBE),
|
|
FIXED_INT_ANY_PIRQ(PCH_DEVFN_TRACEHUB, PCI_INT_A),
|
|
},
|
|
},
|
|
};
|
|
|
|
static const SI_PCH_DEVICE_INTERRUPT_CONFIG *pci_irq_to_fsp(size_t *out_count)
|
|
{
|
|
const struct pci_irq_entry *entry = get_cached_pci_irqs();
|
|
SI_PCH_DEVICE_INTERRUPT_CONFIG *config;
|
|
size_t pch_total = 0;
|
|
size_t cfg_count = 0;
|
|
|
|
if (!entry)
|
|
return NULL;
|
|
|
|
/* Count PCH devices */
|
|
while (entry) {
|
|
if (PCI_SLOT(entry->devfn) >= MIN_PCH_SLOT)
|
|
++pch_total;
|
|
entry = entry->next;
|
|
}
|
|
|
|
/* Convert PCH device entries to FSP format */
|
|
config = calloc(pch_total, sizeof(*config));
|
|
entry = get_cached_pci_irqs();
|
|
while (entry) {
|
|
if (PCI_SLOT(entry->devfn) < MIN_PCH_SLOT) {
|
|
entry = entry->next;
|
|
continue;
|
|
}
|
|
|
|
config[cfg_count].Device = PCI_SLOT(entry->devfn);
|
|
config[cfg_count].Function = PCI_FUNC(entry->devfn);
|
|
config[cfg_count].IntX = (SI_PCH_INT_PIN)entry->pin;
|
|
config[cfg_count].Irq = entry->irq;
|
|
++cfg_count;
|
|
|
|
entry = entry->next;
|
|
}
|
|
|
|
*out_count = cfg_count;
|
|
|
|
return config;
|
|
}
|
|
|
|
/*
|
|
* Chip config parameter PcieRpL1Substates uses (UPD value + 1)
|
|
* because UPD value of 0 for PcieRpL1Substates means disabled for FSP.
|
|
* In order to ensure that mainboard setting does not disable L1 substates
|
|
* incorrectly, chip config parameter values are offset by 1 with 0 meaning
|
|
* use FSP UPD default. get_l1_substate_control() ensures that the right UPD
|
|
* value is set in fsp_params.
|
|
* 0: Use FSP UPD default
|
|
* 1: Disable L1 substates
|
|
* 2: Use L1.1
|
|
* 3: Use L1.2 (FSP UPD default)
|
|
*/
|
|
static int get_l1_substate_control(enum L1_substates_control ctl)
|
|
{
|
|
if ((ctl > L1_SS_L1_2) || (ctl == L1_SS_FSP_DEFAULT))
|
|
ctl = L1_SS_L1_2;
|
|
return ctl - 1;
|
|
}
|
|
|
|
__weak void mainboard_update_soc_chip_config(struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Override settings per board. */
|
|
}
|
|
|
|
static void fill_fsps_lpss_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
for (int i = 0; i < CONFIG_SOC_INTEL_I2C_DEV_MAX; i++)
|
|
s_cfg->SerialIoI2cMode[i] = config->SerialIoI2cMode[i];
|
|
|
|
for (int i = 0; i < CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX; i++) {
|
|
s_cfg->SerialIoSpiMode[i] = config->SerialIoGSpiMode[i];
|
|
s_cfg->SerialIoSpiCsMode[i] = config->SerialIoGSpiCsMode[i];
|
|
s_cfg->SerialIoSpiCsState[i] = config->SerialIoGSpiCsState[i];
|
|
}
|
|
|
|
for (int i = 0; i < CONFIG_SOC_INTEL_UART_DEV_MAX; i++)
|
|
s_cfg->SerialIoUartMode[i] = config->SerialIoUartMode[i];
|
|
}
|
|
|
|
static void fill_fsps_cpu_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
const struct microcode *microcode_file;
|
|
size_t microcode_len;
|
|
|
|
/* Locate microcode and pass to FSP-S for 2nd microcode loading */
|
|
microcode_file = cbfs_map("cpu_microcode_blob.bin", µcode_len);
|
|
|
|
if ((microcode_file != NULL) && (microcode_len != 0)) {
|
|
/* Update CPU Microcode patch base address/size */
|
|
s_cfg->MicrocodeRegionBase = (uint32_t)microcode_file;
|
|
s_cfg->MicrocodeRegionSize = (uint32_t)microcode_len;
|
|
}
|
|
|
|
/* Use coreboot MP PPI services if Kconfig is enabled */
|
|
if (CONFIG(USE_INTEL_FSP_TO_CALL_COREBOOT_PUBLISH_MP_PPI))
|
|
s_cfg->CpuMpPpi = (uintptr_t) mp_fill_ppi_services_data();
|
|
}
|
|
|
|
static void fill_fsps_igd_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Load VBT before devicetree-specific config. */
|
|
s_cfg->GraphicsConfigPtr = (uintptr_t)vbt_get();
|
|
|
|
/* Check if IGD is present and fill Graphics init param accordingly */
|
|
s_cfg->PeiGraphicsPeimInit = CONFIG(RUN_FSP_GOP) && is_devfn_enabled(SA_DEVFN_IGD);
|
|
s_cfg->LidStatus = CONFIG(RUN_FSP_GOP);
|
|
}
|
|
|
|
static void fill_fsps_tcss_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
s_cfg->TcssAuxOri = config->TcssAuxOri;
|
|
|
|
/* Explicitly clear this field to avoid using defaults */
|
|
memset(s_cfg->IomTypeCPortPadCfg, 0, sizeof(s_cfg->IomTypeCPortPadCfg));
|
|
|
|
/*
|
|
* Set FSPS UPD ITbtConnectTopologyTimeoutInMs with value 0. FSP will
|
|
* evaluate this UPD value and skip sending command. There will be no
|
|
* delay for command completion.
|
|
*/
|
|
s_cfg->ITbtConnectTopologyTimeoutInMs = 0;
|
|
|
|
/* D3Hot and D3Cold for TCSS */
|
|
s_cfg->D3HotEnable = !config->TcssD3HotDisable;
|
|
s_cfg->D3ColdEnable = !config->TcssD3ColdDisable;
|
|
|
|
s_cfg->UsbTcPortEn = 0;
|
|
for (int i = 0; i < MAX_TYPE_C_PORTS; i++) {
|
|
/* TCSS xHCI --> Root Hub --> Type-C Port */
|
|
const struct device_path port_path[] = {
|
|
{.type = DEVICE_PATH_PCI, .pci.devfn = SA_DEVFN_TCSS_XHCI},
|
|
{.type = DEVICE_PATH_USB, .usb.port_type = 0, .usb.port_id = 0},
|
|
{.type = DEVICE_PATH_USB, .usb.port_type = 3, .usb.port_id = i} };
|
|
const struct device *port = find_dev_nested_path(pci_root_bus(), port_path,
|
|
ARRAY_SIZE(port_path));
|
|
|
|
if (is_dev_enabled(port))
|
|
s_cfg->UsbTcPortEn |= BIT(i);
|
|
}
|
|
}
|
|
|
|
static void fill_fsps_chipset_lockdown_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Chipset Lockdown */
|
|
if (get_lockdown_config() == CHIPSET_LOCKDOWN_COREBOOT) {
|
|
s_cfg->PchLockDownGlobalSmi = 0;
|
|
s_cfg->PchLockDownBiosInterface = 0;
|
|
s_cfg->PchUnlockGpioPads = 1;
|
|
s_cfg->RtcMemoryLock = 0;
|
|
} else {
|
|
s_cfg->PchLockDownGlobalSmi = 1;
|
|
s_cfg->PchLockDownBiosInterface = 1;
|
|
s_cfg->PchUnlockGpioPads = 0;
|
|
s_cfg->RtcMemoryLock = 1;
|
|
}
|
|
|
|
/* coreboot will send EOP before loading payload */
|
|
s_cfg->EndOfPostMessage = EOP_DISABLE;
|
|
}
|
|
|
|
static void fill_fsps_xhci_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
int i;
|
|
/* USB */
|
|
for (i = 0; i < ARRAY_SIZE(config->usb2_ports); i++) {
|
|
s_cfg->PortUsb20Enable[i] = config->usb2_ports[i].enable;
|
|
s_cfg->Usb2PhyPetxiset[i] = config->usb2_ports[i].pre_emp_bias;
|
|
s_cfg->Usb2PhyTxiset[i] = config->usb2_ports[i].tx_bias;
|
|
s_cfg->Usb2PhyPredeemp[i] = config->usb2_ports[i].tx_emp_enable;
|
|
s_cfg->Usb2PhyPehalfbit[i] = config->usb2_ports[i].pre_emp_bit;
|
|
|
|
if (config->usb2_ports[i].enable)
|
|
s_cfg->Usb2OverCurrentPin[i] = config->usb2_ports[i].ocpin;
|
|
else
|
|
s_cfg->Usb2OverCurrentPin[i] = OC_SKIP;
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(config->usb3_ports); i++) {
|
|
s_cfg->PortUsb30Enable[i] = config->usb3_ports[i].enable;
|
|
if (config->usb3_ports[i].enable)
|
|
s_cfg->Usb3OverCurrentPin[i] = config->usb3_ports[i].ocpin;
|
|
else
|
|
s_cfg->Usb3OverCurrentPin[i] = OC_SKIP;
|
|
|
|
if (config->usb3_ports[i].tx_de_emp) {
|
|
s_cfg->Usb3HsioTxDeEmphEnable[i] = 1;
|
|
s_cfg->Usb3HsioTxDeEmph[i] = config->usb3_ports[i].tx_de_emp;
|
|
}
|
|
if (config->usb3_ports[i].tx_downscale_amp) {
|
|
s_cfg->Usb3HsioTxDownscaleAmpEnable[i] = 1;
|
|
s_cfg->Usb3HsioTxDownscaleAmp[i] =
|
|
config->usb3_ports[i].tx_downscale_amp;
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < ARRAY_SIZE(config->tcss_ports); i++) {
|
|
if (config->tcss_ports[i].enable)
|
|
s_cfg->CpuUsb3OverCurrentPin[i] = config->tcss_ports[i].ocpin;
|
|
}
|
|
}
|
|
|
|
static void fill_fsps_xdci_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
s_cfg->XdciEnable = xdci_can_enable(PCH_DEVFN_USBOTG);
|
|
}
|
|
|
|
static void fill_fsps_uart_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* PCH UART selection for FSP Debug */
|
|
s_cfg->SerialIoDebugUartNumber = CONFIG_UART_FOR_CONSOLE;
|
|
ASSERT(ARRAY_SIZE(s_cfg->SerialIoUartAutoFlow) > CONFIG_UART_FOR_CONSOLE);
|
|
s_cfg->SerialIoUartAutoFlow[CONFIG_UART_FOR_CONSOLE] = 0;
|
|
}
|
|
|
|
static void fill_fsps_sata_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* SATA */
|
|
s_cfg->SataEnable = is_devfn_enabled(PCH_DEVFN_SATA);
|
|
if (s_cfg->SataEnable) {
|
|
s_cfg->SataMode = config->SataMode;
|
|
s_cfg->SataSalpSupport = config->SataSalpSupport;
|
|
memcpy(s_cfg->SataPortsEnable, config->SataPortsEnable,
|
|
sizeof(s_cfg->SataPortsEnable));
|
|
memcpy(s_cfg->SataPortsDevSlp, config->SataPortsDevSlp,
|
|
sizeof(s_cfg->SataPortsDevSlp));
|
|
}
|
|
|
|
/*
|
|
* Power Optimizer for SATA.
|
|
* SataPwrOptimizeDisable is default to 0.
|
|
* Boards not needing the optimizers explicitly disables them by setting
|
|
* these disable variables to 1 in devicetree overrides.
|
|
*/
|
|
s_cfg->SataPwrOptEnable = !(config->SataPwrOptimizeDisable);
|
|
/*
|
|
* Enable DEVSLP Idle Timeout settings DmVal and DitoVal.
|
|
* SataPortsDmVal is the DITO multiplier. Default is 15.
|
|
* SataPortsDitoVal is the DEVSLP Idle Timeout (DITO), Default is 625ms.
|
|
* The default values can be changed from devicetree.
|
|
*/
|
|
for (size_t i = 0; i < ARRAY_SIZE(config->SataPortsEnableDitoConfig); i++) {
|
|
if (config->SataPortsEnableDitoConfig[i]) {
|
|
s_cfg->SataPortsDmVal[i] = config->SataPortsDmVal[i];
|
|
s_cfg->SataPortsDitoVal[i] = config->SataPortsDitoVal[i];
|
|
}
|
|
}
|
|
}
|
|
|
|
static void fill_fsps_thermal_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Enable TCPU for processor thermal control */
|
|
s_cfg->Device4Enable = is_devfn_enabled(SA_DEVFN_DPTF);
|
|
|
|
/* Set TccActivationOffset */
|
|
s_cfg->TccActivationOffset = config->tcc_offset;
|
|
}
|
|
|
|
static void fill_fsps_lan_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* LAN */
|
|
s_cfg->PchLanEnable = is_devfn_enabled(PCH_DEVFN_GBE);
|
|
}
|
|
|
|
static void fill_fsps_cnvi_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* CNVi */
|
|
s_cfg->CnviMode = is_devfn_enabled(PCH_DEVFN_CNVI_WIFI);
|
|
s_cfg->CnviBtCore = config->CnviBtCore;
|
|
s_cfg->CnviBtAudioOffload = config->CnviBtAudioOffload;
|
|
/* Assert if CNVi BT is enabled without CNVi being enabled. */
|
|
assert(s_cfg->CnviMode || !s_cfg->CnviBtCore);
|
|
/* Assert if CNVi BT offload is enabled without CNVi BT being enabled. */
|
|
assert(s_cfg->CnviBtCore || !s_cfg->CnviBtAudioOffload);
|
|
}
|
|
|
|
static void fill_fsps_vmd_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* VMD */
|
|
s_cfg->VmdEnable = is_devfn_enabled(SA_DEVFN_VMD);
|
|
}
|
|
|
|
static void fill_fsps_thc_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* THC */
|
|
s_cfg->ThcPort0Assignment = is_devfn_enabled(PCH_DEVFN_THC0) ? THC_0 : THC_NONE;
|
|
s_cfg->ThcPort1Assignment = is_devfn_enabled(PCH_DEVFN_THC1) ? THC_1 : THC_NONE;
|
|
}
|
|
|
|
static void fill_fsps_tbt_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* USB4/TBT */
|
|
for (int i = 0; i < ARRAY_SIZE(s_cfg->ITbtPcieRootPortEn); i++)
|
|
s_cfg->ITbtPcieRootPortEn[i] = is_devfn_enabled(SA_DEVFN_TBT(i));
|
|
}
|
|
|
|
static void fill_fsps_8254_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Legacy 8254 timer support */
|
|
s_cfg->Enable8254ClockGating = !CONFIG(USE_LEGACY_8254_TIMER);
|
|
s_cfg->Enable8254ClockGatingOnS3 = !CONFIG(USE_LEGACY_8254_TIMER);
|
|
}
|
|
|
|
static void fill_fsps_storage_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Enable Hybrid storage auto detection */
|
|
s_cfg->HybridStorageMode = config->HybridStorageMode;
|
|
}
|
|
|
|
static void fill_fsps_pcie_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
uint32_t enable_mask = pcie_rp_enable_mask(get_pch_pcie_rp_table());
|
|
for (int i = 0; i < CONFIG_MAX_PCH_ROOT_PORTS; i++) {
|
|
if (!(enable_mask & BIT(i)))
|
|
continue;
|
|
const struct pcie_rp_config *rp_cfg = &config->pch_pcie_rp[i];
|
|
s_cfg->PcieRpL1Substates[i] =
|
|
get_l1_substate_control(rp_cfg->PcieRpL1Substates);
|
|
s_cfg->PcieRpLtrEnable[i] = !!(rp_cfg->flags & PCIE_RP_LTR);
|
|
s_cfg->PcieRpAdvancedErrorReporting[i] = !!(rp_cfg->flags & PCIE_RP_AER);
|
|
s_cfg->PcieRpHotPlug[i] = !!(rp_cfg->flags & PCIE_RP_HOTPLUG);
|
|
s_cfg->PcieRpClkReqDetect[i] = !!(rp_cfg->flags & PCIE_RP_CLK_REQ_DETECT);
|
|
}
|
|
}
|
|
|
|
static void fill_fsps_misc_power_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
/*
|
|
* Power Optimizer for DMI
|
|
* DmiPwrOptimizeDisable is default to 0.
|
|
* Boards not needing the optimizers explicitly disables them by setting
|
|
* these disable variables to 1 in devicetree overrides.
|
|
*/
|
|
s_cfg->PchPwrOptEnable = !(config->DmiPwrOptimizeDisable);
|
|
s_cfg->PmSupport = 1;
|
|
s_cfg->Hwp = 1;
|
|
s_cfg->Cx = 1;
|
|
s_cfg->PsOnEnable = 1;
|
|
/* Enable the energy efficient turbo mode */
|
|
s_cfg->EnergyEfficientTurbo = 1;
|
|
}
|
|
|
|
static void fill_fsps_irq_params(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config)
|
|
{
|
|
if (!assign_pci_irqs(irq_constraints, ARRAY_SIZE(irq_constraints)))
|
|
die("ERROR: Unable to assign PCI IRQs, and no _PRT table available\n");
|
|
|
|
size_t pch_count = 0;
|
|
const SI_PCH_DEVICE_INTERRUPT_CONFIG *upd_irqs = pci_irq_to_fsp(&pch_count);
|
|
|
|
s_cfg->DevIntConfigPtr = (UINT32)((uintptr_t)upd_irqs);
|
|
s_cfg->NumOfDevIntConfig = pch_count;
|
|
printk(BIOS_INFO, "IRQ: Using dynamically assigned PCI IO-APIC IRQs\n");
|
|
}
|
|
|
|
static void arch_silicon_init_params(FSPS_ARCH_UPD *s_arch_cfg)
|
|
{
|
|
/* EnableMultiPhaseSiliconInit for running MultiPhaseSiInit */
|
|
s_arch_cfg->EnableMultiPhaseSiliconInit = 1;
|
|
}
|
|
|
|
static void soc_silicon_init_params(FSP_S_CONFIG *s_cfg,
|
|
struct soc_intel_alderlake_config *config)
|
|
{
|
|
/* Override settings per board if required. */
|
|
mainboard_update_soc_chip_config(config);
|
|
|
|
const void (*fill_fsps_params[])(FSP_S_CONFIG *s_cfg,
|
|
const struct soc_intel_alderlake_config *config) = {
|
|
fill_fsps_lpss_params,
|
|
fill_fsps_cpu_params,
|
|
fill_fsps_igd_params,
|
|
fill_fsps_tcss_params,
|
|
fill_fsps_chipset_lockdown_params,
|
|
fill_fsps_xhci_params,
|
|
fill_fsps_xdci_params,
|
|
fill_fsps_uart_params,
|
|
fill_fsps_sata_params,
|
|
fill_fsps_thermal_params,
|
|
fill_fsps_lan_params,
|
|
fill_fsps_cnvi_params,
|
|
fill_fsps_vmd_params,
|
|
fill_fsps_thc_params,
|
|
fill_fsps_tbt_params,
|
|
fill_fsps_8254_params,
|
|
fill_fsps_storage_params,
|
|
fill_fsps_pcie_params,
|
|
fill_fsps_misc_power_params,
|
|
fill_fsps_irq_params,
|
|
};
|
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(fill_fsps_params); i++)
|
|
fill_fsps_params[i](s_cfg, config);
|
|
}
|
|
|
|
/* UPD parameters to be initialized before SiliconInit */
|
|
void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
|
{
|
|
struct soc_intel_alderlake_config *config;
|
|
FSP_S_CONFIG *s_cfg = &supd->FspsConfig;
|
|
FSPS_ARCH_UPD *s_arch_cfg = &supd->FspsArchUpd;
|
|
|
|
config = config_of_soc();
|
|
arch_silicon_init_params(s_arch_cfg);
|
|
soc_silicon_init_params(s_cfg, config);
|
|
mainboard_silicon_init_params(s_cfg);
|
|
}
|
|
|
|
/*
|
|
* Callbacks for SoC/Mainboard specific overrides for FspMultiPhaseSiInit
|
|
* This platform supports below MultiPhaseSIInit Phase(s):
|
|
* Phase | FSP return point | Purpose
|
|
* ------- + ------------------------------------------------ + -------------------------------
|
|
* 1 | After TCSS initialization completed | for TCSS specific init
|
|
*/
|
|
void platform_fsp_multi_phase_init_cb(uint32_t phase_index)
|
|
{
|
|
switch (phase_index) {
|
|
case 1:
|
|
/* TCSS specific initialization here */
|
|
printk(BIOS_DEBUG, "FSP MultiPhaseSiInit %s/%s called\n",
|
|
__FILE__, __func__);
|
|
|
|
if (CONFIG(SOC_INTEL_COMMON_BLOCK_TCSS)) {
|
|
const config_t *config = config_of_soc();
|
|
tcss_configure(config->typec_aux_bias_pads);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Mainboard GPIO Configuration */
|
|
__weak void mainboard_silicon_init_params(FSP_S_CONFIG *s_cfg)
|
|
{
|
|
printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
|
|
}
|