diff options
author | Jonathan Zhang <jonzhang@meta.com> | 2023-01-26 15:02:43 -0800 |
---|---|---|
committer | David Hendricks <david.hendricks@gmail.com> | 2023-02-19 23:01:39 +0000 |
commit | b64fdcc0fab3d77a94a2053dd1231c60a2b5dc77 (patch) | |
tree | 295a2e6d35d974fc65e4b7d23fa94e9f049daae9 /src/soc/intel/common/block/include | |
parent | 17d9d897f0372cdabb69ddac5f25afe2e4c0bfed (diff) |
soc/intel/common/block/fast_spi: Add SPI Vendor Component Lock
Add fast_spi_set_vcl() to be called by the SOC lockdown function if SPI
Vendor Specific Component Capabilities are desired.
Change-Id: I6d9b58e90fa16c539b90c6b961862e97e1bf29a2
Signed-off-by: Marc Jones <marcjones@sysproconsulting.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72478
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common/block/include')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/fast_spi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/fast_spi.h b/src/soc/intel/common/block/include/intelblocks/fast_spi.h index 716f16a07a..46b4f48693 100644 --- a/src/soc/intel/common/block/include/intelblocks/fast_spi.h +++ b/src/soc/intel/common/block/include/intelblocks/fast_spi.h @@ -107,5 +107,9 @@ void fast_spi_cache_ext_bios_postcar(struct postcar_frame *pcf); * Set FAST_SPIBAR BIOS Decode Lock bit */ void fast_spi_set_bde(void); +/* + * Set FAST_SPIBAR Vendor Component Lock bit. + */ +void fast_spi_set_vcl(void); #endif /* SOC_INTEL_COMMON_BLOCK_FAST_SPI_H */ |