blob: a072a8b23216064383f0fc51d6a98dc4d6b5a6bf [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
Timothy Pearson24e6d042015-10-08 16:58:58 -050016ifneq ($(CONFIG_CPU_MICROCODE_MULTIPLE_FILES), y)
Nico Huberf5ca9222018-11-29 17:05:32 +010017cbfs-files-$(CONFIG_USE_CPU_MICROCODE_CBFS_BINS) += cpu_microcode_blob.bin
Timothy Pearson24e6d042015-10-08 16:58:58 -050018endif
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050019
Martin Roth4c502692015-11-05 08:03:45 -070020ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
21cbfs-files-y += cpu_microcode_blob.bin
22cpu_microcode_blob.bin-file = $(objgenerated)/microcode.bin
23
Julien Viard de Galbertc4673342017-11-03 14:07:55 +010024$(objgenerated)/microcode.bin: $(call strip_quotes,$(CONFIG_CPU_MICROCODE_HEADER_FILES))
Martin Roth4c502692015-11-05 08:03:45 -070025 echo " util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin \"$(CONFIG_CPU_MICROCODE_HEADER_FILES)\""
26 util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin $(CONFIG_CPU_MICROCODE_HEADER_FILES)
27endif
28
Nico Huberf5ca9222018-11-29 17:05:32 +010029ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_BINS),y)
Nico Huber63266c72020-02-20 20:20:00 +010030$(obj)/cpu_microcode_blob.bin: cpu_microcode_bins := $(call strip_quotes,$(CONFIG_CPU_UCODE_BINARIES))
Nico Huberf5ca9222018-11-29 17:05:32 +010031endif
32# otherwise `cpu_microcode_bins` should be filled by platform makefiles
33
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070034# We just mash all microcode binaries together into one binary to rule them all.
35# This approach assumes that the microcode binaries are properly padded, and
36# their headers specify the correct size. This works fairly well on isolatied
37# updates, such as Intel and some AMD microcode, but won't work very well if the
38# updates are wrapped in a container, like AMD's microcode update container. If
39# there is only one microcode binary (i.e. one container), then we don't have
40# this issue, and this rule will continue to work.
Martin Roth85653742016-12-22 10:29:20 -070041$(obj)/cpu_microcode_blob.bin: $$(wildcard $$(cpu_microcode_bins))
42 for bin in $(cpu_microcode_bins); do \
43 if [ ! -f "$$bin" ]; then \
44 echo "Microcode error: $$bin does not exist"; \
45 NO_MICROCODE_FILE=1; \
46 fi; \
47 done; \
48 if [ -n "$$NO_MICROCODE_FILE" ]; then \
Nico Huberf5ca9222018-11-29 17:05:32 +010049 if [ -z "$(CONFIG_USE_BLOBS)" ] && [ -n "$(CONFIG_CPU_MICROCODE_CBFS_DEFAULT_BINS)" ]; then \
Martin Roth85653742016-12-22 10:29:20 -070050 echo "Try enabling binary-only repository in Kconfig 'General setup' menu."; \
51 fi; \
52 false; \
53 fi
Nico Huberf5ca9222018-11-29 17:05:32 +010054 $(if $^,,false) # fail if no file is given at all
Daniele Forsi21fbc082014-08-10 15:18:42 +020055 @printf " MICROCODE $(subst $(obj)/,,$(@))\n"
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070056 @echo $(cpu_microcode_bins)
Nico Huberf5ca9222018-11-29 17:05:32 +010057 cat $^ > $@
Aaron Durbin32ab2832013-06-11 16:36:37 -050058
Martin Roth4c502692015-11-05 08:03:45 -070059cpu_microcode_blob.bin-file ?= $(obj)/cpu_microcode_blob.bin
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070060cpu_microcode_blob.bin-type := microcode
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070061cpu_microcode_blob.bin-align := 16
Andrey Petrovd1f7c6f2020-01-28 10:51:36 -080062
63ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
64cpu_microcode_blob.bin-COREBOOT-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
65endif