diff options
author | Felix Singer <felixsinger@posteo.net> | 2024-08-29 04:57:30 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-09-02 09:01:18 +0000 |
commit | cfcb3620acd4187f143fc3b129dd21b2aa34f1d8 (patch) | |
tree | d62ab6b6f0b3a0c66bb44118829235a5b5b95e06 /src | |
parent | d87321c8a5cefdf1fa5d99dbad2c0f3b1efc71b5 (diff) |
soc/intel/meteorlake: Hook up microcode from repository
Change-Id: I46021accacbb911d7a7ecfdbb52973a7da78f36e
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84125
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Dinesh Gehlot <digehlot@google.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/meteorlake/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/intel/meteorlake/Makefile.mk | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/intel/meteorlake/Kconfig b/src/soc/intel/meteorlake/Kconfig index 3b31e5380d..79ef3e8c75 100644 --- a/src/soc/intel/meteorlake/Kconfig +++ b/src/soc/intel/meteorlake/Kconfig @@ -37,7 +37,6 @@ config SOC_INTEL_METEORLAKE select INTEL_GMA_OPREGION_2_1 select INTEL_GMA_VERSION_2 select IOAPIC - select MICROCODE_BLOB_UNDISCLOSED select MP_SERVICES_PPI_V2 select MRC_CACHE_USING_MRC_VERSION select MRC_SETTINGS_PROTECT diff --git a/src/soc/intel/meteorlake/Makefile.mk b/src/soc/intel/meteorlake/Makefile.mk index 72d1117bb8..495ea5bcca 100644 --- a/src/soc/intel/meteorlake/Makefile.mk +++ b/src/soc/intel/meteorlake/Makefile.mk @@ -59,4 +59,8 @@ smm-y += xhci.c CPPFLAGS_common += -I$(src)/soc/intel/meteorlake CPPFLAGS_common += -I$(src)/soc/intel/meteorlake/include +ifeq ($(CONFIG_SOC_INTEL_METEORLAKE_U_H),y) +cpu_microcode_bins += 3rdparty/intel-microcode/intel-ucode/06-aa-04 +endif + endif |