blob: b1c1b1bb3e676f51fd38d9f8236b19537719e53a [file] [log] [blame]
Martin Rothf6ca89c2023-08-04 12:06:21 -06001## SPDX-License-Identifier: GPL-2.0-only
2
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -05003################################################################################
4## Subdirectories
5################################################################################
Ronald G. Minnichfd4519b2009-08-12 15:56:17 +00006subdirs-y += amd
Hung-Te Lin7635a602013-02-12 00:07:38 +08007subdirs-y += armltd
Patrick Georgi0588d192009-08-12 15:00:51 +00008subdirs-y += intel
Gabe Black3c7e9392013-05-26 07:15:57 -07009subdirs-y += ti
Alexandru Gagniuccc328422015-10-04 19:34:08 -070010subdirs-$(CONFIG_ARCH_X86) += x86
Gerd Hoffmanncbf30732013-05-31 09:23:26 +020011subdirs-$(CONFIG_CPU_QEMU_X86) += qemu-x86
Igor Bagnucki252fc292020-12-14 14:52:50 +010012subdirs-$(CONFIG_CPU_POWER9) += power9
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050013
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070014$(eval $(call create_class_compiler,cpu_microcode,x86_32))
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050015################################################################################
16## Rules for building the microcode blob in CBFS
17################################################################################
18
Nico Huberf5ca9222018-11-29 17:05:32 +010019cbfs-files-$(CONFIG_USE_CPU_MICROCODE_CBFS_BINS) += cpu_microcode_blob.bin
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050020
Martin Roth4c502692015-11-05 08:03:45 -070021ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
22cbfs-files-y += cpu_microcode_blob.bin
23cpu_microcode_blob.bin-file = $(objgenerated)/microcode.bin
24
Julien Viard de Galbertc4673342017-11-03 14:07:55 +010025$(objgenerated)/microcode.bin: $(call strip_quotes,$(CONFIG_CPU_MICROCODE_HEADER_FILES))
Martin Roth4c502692015-11-05 08:03:45 -070026 echo " util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin \"$(CONFIG_CPU_MICROCODE_HEADER_FILES)\""
27 util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin $(CONFIG_CPU_MICROCODE_HEADER_FILES)
28endif
29
Nico Huberf5ca9222018-11-29 17:05:32 +010030ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_BINS),y)
Nico Huber63266c72020-02-20 20:20:00 +010031$(obj)/cpu_microcode_blob.bin: cpu_microcode_bins := $(call strip_quotes,$(CONFIG_CPU_UCODE_BINARIES))
Nico Huberf5ca9222018-11-29 17:05:32 +010032endif
33# otherwise `cpu_microcode_bins` should be filled by platform makefiles
34
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070035# We just mash all microcode binaries together into one binary to rule them all.
36# This approach assumes that the microcode binaries are properly padded, and
37# their headers specify the correct size. This works fairly well on isolatied
38# updates, such as Intel and some AMD microcode, but won't work very well if the
39# updates are wrapped in a container, like AMD's microcode update container. If
40# there is only one microcode binary (i.e. one container), then we don't have
41# this issue, and this rule will continue to work.
Arthur Heymans12053452022-06-15 10:35:14 +020042$(obj)/cpu_microcode_blob.bin: $$(wildcard $$(cpu_microcode_bins)) $(DOTCONFIG)
Martin Roth85653742016-12-22 10:29:20 -070043 for bin in $(cpu_microcode_bins); do \
44 if [ ! -f "$$bin" ]; then \
45 echo "Microcode error: $$bin does not exist"; \
46 NO_MICROCODE_FILE=1; \
47 fi; \
48 done; \
49 if [ -n "$$NO_MICROCODE_FILE" ]; then \
Nico Huberf5ca9222018-11-29 17:05:32 +010050 if [ -z "$(CONFIG_USE_BLOBS)" ] && [ -n "$(CONFIG_CPU_MICROCODE_CBFS_DEFAULT_BINS)" ]; then \
Martin Roth85653742016-12-22 10:29:20 -070051 echo "Try enabling binary-only repository in Kconfig 'General setup' menu."; \
52 fi; \
53 false; \
54 fi
Arthur Heymans12053452022-06-15 10:35:14 +020055 $(if $(cpu_microcode_bins),,false) # fail if no file is given at all
Daniele Forsi21fbc082014-08-10 15:18:42 +020056 @printf " MICROCODE $(subst $(obj)/,,$(@))\n"
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070057 @echo $(cpu_microcode_bins)
Arthur Heymans12053452022-06-15 10:35:14 +020058 cat $(cpu_microcode_bins) > $@
Aaron Durbin32ab2832013-06-11 16:36:37 -050059
Martin Roth4c502692015-11-05 08:03:45 -070060cpu_microcode_blob.bin-file ?= $(obj)/cpu_microcode_blob.bin
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070061cpu_microcode_blob.bin-type := microcode
Raul E Rangel4b5a4902021-11-19 11:38:35 -070062# The AMD LPC SPI DMA controller requires source files to be 64 byte aligned.
63ifeq ($(CONFIG_SOC_AMD_COMMON_BLOCK_LPC_SPI_DMA),y)
64cpu_microcode_blob.bin-align := 64
65else
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070066cpu_microcode_blob.bin-align := 16
Raul E Rangel4b5a4902021-11-19 11:38:35 -070067endif
Andrey Petrovd1f7c6f2020-01-28 10:51:36 -080068
69ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
70cpu_microcode_blob.bin-COREBOOT-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
71endif