Philipp Deppenwiese has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/29863
Change subject: cpu/intel/fit: Make FIT microcode updates selectable ......................................................................
cpu/intel/fit: Make FIT microcode updates selectable
* Add a kconfig option for de-/selecting microcode updates via Firmware Interface Table. * Default didn't change and stays "yes".
Change-Id: I7da926943aef89e49e98d0b990ab46f5f8200e6e Signed-off-by: Philipp Deppenwiese zaolin.daisuki@gmail.com --- M Makefile.inc M src/cpu/intel/fit/Kconfig 2 files changed, 7 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/29863/1
diff --git a/Makefile.inc b/Makefile.inc index aaae7bc..ab4f31e 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -1041,7 +1041,7 @@ @printf " SeaBIOS Add sercon-port file\n" $(CBFSTOOL) $@.tmp add-int -i $(CONFIG_SEABIOS_SERCON_PORT_ADDR) -n etc/sercon-port endif -ifeq ($(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE),y) +ifeq ($(CONFIG_CPU_INTEL_FIT_MICROCODE_UPDATES),y) ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y) @printf " UPDATE-FIT\n" $(CBFSTOOL) $@.tmp update-fit -n cpu_microcode_blob.bin -x $(CONFIG_CPU_INTEL_NUM_FIT_ENTRIES) \ diff --git a/src/cpu/intel/fit/Kconfig b/src/cpu/intel/fit/Kconfig index e48dca9..e0c6dd9 100644 --- a/src/cpu/intel/fit/Kconfig +++ b/src/cpu/intel/fit/Kconfig @@ -9,3 +9,9 @@ depends on CPU_INTEL_FIRMWARE_INTERFACE_TABLE help This option selects the number of empty entries in the FIT table. + +config CPU_INTEL_FIT_MICROCODE_UPDATES + bool "Microcode updates in FIT" + default y + help + This option selects updating microcode via the Firmware Interface Table (FIT).