blob: ec2f19fd18d94e516af55c3a33c2d5a4e73822a5 [file] [log] [blame]
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -05001################################################################################
2## Subdirectories
3################################################################################
Ronald G. Minnichfd4519b2009-08-12 15:56:17 +00004subdirs-y += amd
Hung-Te Lin7635a602013-02-12 00:07:38 +08005subdirs-y += armltd
Patrick Georgi0588d192009-08-12 15:00:51 +00006subdirs-y += intel
Gabe Black3c7e9392013-05-26 07:15:57 -07007subdirs-y += ti
Alexandru Gagniuccc328422015-10-04 19:34:08 -07008subdirs-$(CONFIG_ARCH_X86) += x86
Gerd Hoffmanncbf30732013-05-31 09:23:26 +02009subdirs-$(CONFIG_CPU_QEMU_X86) += qemu-x86
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050010
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070011$(eval $(call create_class_compiler,cpu_microcode,x86_32))
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050012################################################################################
13## Rules for building the microcode blob in CBFS
14################################################################################
15
Nico Huberf5ca9222018-11-29 17:05:32 +010016cbfs-files-$(CONFIG_USE_CPU_MICROCODE_CBFS_BINS) += cpu_microcode_blob.bin
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050017
Martin Roth4c502692015-11-05 08:03:45 -070018ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
19cbfs-files-y += cpu_microcode_blob.bin
20cpu_microcode_blob.bin-file = $(objgenerated)/microcode.bin
21
Julien Viard de Galbertc4673342017-11-03 14:07:55 +010022$(objgenerated)/microcode.bin: $(call strip_quotes,$(CONFIG_CPU_MICROCODE_HEADER_FILES))
Martin Roth4c502692015-11-05 08:03:45 -070023 echo " util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin \"$(CONFIG_CPU_MICROCODE_HEADER_FILES)\""
24 util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin $(CONFIG_CPU_MICROCODE_HEADER_FILES)
25endif
26
Nico Huberf5ca9222018-11-29 17:05:32 +010027ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_BINS),y)
Nico Huber63266c72020-02-20 20:20:00 +010028$(obj)/cpu_microcode_blob.bin: cpu_microcode_bins := $(call strip_quotes,$(CONFIG_CPU_UCODE_BINARIES))
Nico Huberf5ca9222018-11-29 17:05:32 +010029endif
30# otherwise `cpu_microcode_bins` should be filled by platform makefiles
31
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070032# We just mash all microcode binaries together into one binary to rule them all.
33# This approach assumes that the microcode binaries are properly padded, and
34# their headers specify the correct size. This works fairly well on isolatied
35# updates, such as Intel and some AMD microcode, but won't work very well if the
36# updates are wrapped in a container, like AMD's microcode update container. If
37# there is only one microcode binary (i.e. one container), then we don't have
38# this issue, and this rule will continue to work.
Martin Roth85653742016-12-22 10:29:20 -070039$(obj)/cpu_microcode_blob.bin: $$(wildcard $$(cpu_microcode_bins))
40 for bin in $(cpu_microcode_bins); do \
41 if [ ! -f "$$bin" ]; then \
42 echo "Microcode error: $$bin does not exist"; \
43 NO_MICROCODE_FILE=1; \
44 fi; \
45 done; \
46 if [ -n "$$NO_MICROCODE_FILE" ]; then \
Nico Huberf5ca9222018-11-29 17:05:32 +010047 if [ -z "$(CONFIG_USE_BLOBS)" ] && [ -n "$(CONFIG_CPU_MICROCODE_CBFS_DEFAULT_BINS)" ]; then \
Martin Roth85653742016-12-22 10:29:20 -070048 echo "Try enabling binary-only repository in Kconfig 'General setup' menu."; \
49 fi; \
50 false; \
51 fi
Nico Huberf5ca9222018-11-29 17:05:32 +010052 $(if $^,,false) # fail if no file is given at all
Daniele Forsi21fbc082014-08-10 15:18:42 +020053 @printf " MICROCODE $(subst $(obj)/,,$(@))\n"
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070054 @echo $(cpu_microcode_bins)
Nico Huberf5ca9222018-11-29 17:05:32 +010055 cat $^ > $@
Aaron Durbin32ab2832013-06-11 16:36:37 -050056
Martin Roth4c502692015-11-05 08:03:45 -070057cpu_microcode_blob.bin-file ?= $(obj)/cpu_microcode_blob.bin
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070058cpu_microcode_blob.bin-type := microcode
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070059cpu_microcode_blob.bin-align := 16
Andrey Petrovd1f7c6f2020-01-28 10:51:36 -080060
61ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
62cpu_microcode_blob.bin-COREBOOT-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
63endif