Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/21068
Change subject: soc/intel/skylake: Add LPC and SPI lock down config option ......................................................................
soc/intel/skylake: Add LPC and SPI lock down config option
This patch to provide new config options to perform LPC and SPI lock down.
Change-Id: If174915b4d0c581f36b54b2b8cd970a93c6454bc Signed-off-by: Subrata Banik subrata.banik@intel.com --- M src/soc/intel/skylake/chip.h 1 file changed, 10 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/68/21068/1
diff --git a/src/soc/intel/skylake/chip.h b/src/soc/intel/skylake/chip.h index efd3566..67ccec8 100644 --- a/src/soc/intel/skylake/chip.h +++ b/src/soc/intel/skylake/chip.h @@ -501,6 +501,16 @@ * end of POST for security concerns. */ u8 SpiFlashCfgLockDown; + /* LPC Lock Down + * 1b - Coreboot to handle lockdown + * 0b - FSP to handle lockdown + */ + u8 lpc_lockdown; + /* SPI Lock Down + * 1b - Coreboot to handle lockdown + * 0b - FSP to handle lockdown + */ + u8 spi_lockdown; };
typedef struct soc_intel_skylake_config config_t;