diff options
author | Tan, Lean Sheng <lean.sheng.tan@intel.com> | 2021-05-26 06:40:56 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-06-01 05:58:39 +0000 |
commit | 09133c78dd2c5753802bcf5b7e7eb9b5be9ecf6d (patch) | |
tree | 72bd269e79922481dc71c7c81606836609a8ffa0 /src/soc/intel/elkhartlake | |
parent | cdb81500f1fbfef2865e692e1193e39a56f9bca2 (diff) |
soc/intel/elkhartlake: Update FSP-S UPD LPSS related configs
Add Silicon upd settings for LPSS (GSPI/UART/I2C).
Signed-off-by: Lean Sheng Tan <lean.sheng.tan@intel.com>
Change-Id: Ib0c3cd1d37ff9892d09d6d86ac50e230549c7e53
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54959
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/soc/intel/elkhartlake')
-rw-r--r-- | src/soc/intel/elkhartlake/chip.h | 17 | ||||
-rw-r--r-- | src/soc/intel/elkhartlake/fsp_params.c | 62 |
2 files changed, 78 insertions, 1 deletions
diff --git a/src/soc/intel/elkhartlake/chip.h b/src/soc/intel/elkhartlake/chip.h index ce0984124d..6b36792bde 100644 --- a/src/soc/intel/elkhartlake/chip.h +++ b/src/soc/intel/elkhartlake/chip.h @@ -167,6 +167,14 @@ struct soc_intel_elkhartlake_config { uint8_t SerialIoGSpiMode[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX]; uint8_t SerialIoUartMode[CONFIG_SOC_INTEL_UART_DEV_MAX]; /* + * UARTn Default DMA/PIO Mode Enable(1)/Disable(0): + */ + uint8_t SerialIoUartDmaEnable[CONFIG_SOC_INTEL_UART_DEV_MAX]; + /* + * GSPIn Default Chip Enable(1)/Disable(0): + */ + uint8_t SerialIoGSpiCsEnable[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX]; + /* * GSPIn Default Chip Select Mode: * 0:Hardware Mode, * 1:Software Mode @@ -178,6 +186,15 @@ struct soc_intel_elkhartlake_config { * 1: High */ uint8_t SerialIoGSpiCsState[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX]; +/* + * SerialIo I2C Pads Termination Config: + * 0x0:Hardware default, + * 0x1:None, + * 0x13:1kOhm weak pull-up, + * 0x15:5kOhm weak pull-up, + * 0x19:20kOhm weak pull-up + */ + uint8_t SerialIoI2cPadsTermination[CONFIG_SOC_INTEL_I2C_DEV_MAX]; /* * TraceHubMode config diff --git a/src/soc/intel/elkhartlake/fsp_params.c b/src/soc/intel/elkhartlake/fsp_params.c index 3ef3b5d638..5c25e95def 100644 --- a/src/soc/intel/elkhartlake/fsp_params.c +++ b/src/soc/intel/elkhartlake/fsp_params.c @@ -13,6 +13,7 @@ #include <soc/pci_devs.h> #include <soc/ramstage.h> #include <soc/soc_chip.h> +#include <string.h> /* * ME End of Post configuration @@ -45,7 +46,66 @@ static const pci_devfn_t serial_io_dev[] = { static void parse_devicetree(FSP_S_CONFIG *params) { - /* TODO: Update with UPD override as FSP matures */ + const struct soc_intel_elkhartlake_config *config = config_of_soc(); + + /* LPSS controllers configuration */ + + /* I2C */ + _Static_assert(ARRAY_SIZE(params->SerialIoI2cMode) >= + ARRAY_SIZE(config->SerialIoI2cMode), "copy buffer overflow!"); + memcpy(params->SerialIoI2cMode, config->SerialIoI2cMode, + sizeof(config->SerialIoI2cMode)); + + _Static_assert(ARRAY_SIZE(params->PchSerialIoI2cPadsTermination) >= + ARRAY_SIZE(config->SerialIoI2cPadsTermination), + "copy buffer overflow!"); + memcpy(params->PchSerialIoI2cPadsTermination, config->SerialIoI2cPadsTermination, + sizeof(config->SerialIoI2cPadsTermination)); + + params->PchSerialIoI2cSclPinMux[4] = 0x1B44AC09; //GPIO native mode for GPP_H9 + params->PchSerialIoI2cSdaPinMux[4] = 0x1B44CC08; //GPIO native mode for GPP_H8 + + /* GSPI */ + _Static_assert(ARRAY_SIZE(params->SerialIoSpiMode) >= + ARRAY_SIZE(config->SerialIoGSpiMode), "copy buffer overflow!"); + memcpy(params->SerialIoSpiMode, config->SerialIoGSpiMode, + sizeof(config->SerialIoGSpiMode)); + + _Static_assert(ARRAY_SIZE(params->SerialIoSpiCsEnable) >= + ARRAY_SIZE(config->SerialIoGSpiCsEnable), "copy buffer overflow!"); + memcpy(params->SerialIoSpiCsEnable, config->SerialIoGSpiCsEnable, + sizeof(config->SerialIoGSpiCsEnable)); + + _Static_assert(ARRAY_SIZE(params->SerialIoSpiCsMode) >= + ARRAY_SIZE(config->SerialIoGSpiCsMode), "copy buffer overflow!"); + memcpy(params->SerialIoSpiCsMode, config->SerialIoGSpiCsMode, + sizeof(config->SerialIoGSpiCsMode)); + + _Static_assert(ARRAY_SIZE(params->SerialIoSpiCsState) >= + ARRAY_SIZE(config->SerialIoGSpiCsState), "copy buffer overflow!"); + memcpy(params->SerialIoSpiCsState, config->SerialIoGSpiCsState, + sizeof(config->SerialIoGSpiCsState)); + + params->SerialIoSpiCsPolarity[2] = 0; + + /* UART */ + _Static_assert(ARRAY_SIZE(params->SerialIoUartMode) >= + ARRAY_SIZE(config->SerialIoUartMode), "copy buffer overflow!"); + memcpy(params->SerialIoUartMode, config->SerialIoUartMode, + sizeof(config->SerialIoUartMode)); + + _Static_assert(ARRAY_SIZE(params->SerialIoUartDmaEnable) >= + ARRAY_SIZE(config->SerialIoUartDmaEnable), "copy buffer overflow!"); + memcpy(params->SerialIoUartDmaEnable, config->SerialIoUartDmaEnable, + sizeof(config->SerialIoUartDmaEnable)); + + params->SerialIoUartCtsPinMuxPolicy[0] = 0x2B01320F; //GPIO native mode for GPP_T15 + params->SerialIoUartRtsPinMuxPolicy[0] = 0x2B01220E; //GPIO native mode for GPP_T14 + params->SerialIoUartRxPinMuxPolicy[0] = 0x2B01020C; //GPIO native mode for GPP_T12 + params->SerialIoUartTxPinMuxPolicy[0] = 0x2B01120D; //GPIO native mode for GPP_T13 + + /* Provide correct UART number for FSP debug logs */ + params->SerialIoDebugUartNumber = CONFIG_UART_FOR_CONSOLE; } /* UPD parameters to be initialized before SiliconInit */ |