blob: 72fc29c1e085e14c567748d677a2ce90d2a10c64 [file] [log] [blame]
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -05001################################################################################
2## Subdirectories
3################################################################################
Alexandru Gagniucf64111b2013-12-13 20:44:48 -06004subdirs-y += allwinner
Ronald G. Minnichfd4519b2009-08-12 15:56:17 +00005subdirs-y += amd
Hung-Te Lin7635a602013-02-12 00:07:38 +08006subdirs-y += armltd
Paul Burtonc1081a42014-06-14 00:08:02 +01007subdirs-y += imgtec
Patrick Georgi0588d192009-08-12 15:00:51 +00008subdirs-y += intel
Gabe Black3c7e9392013-05-26 07:15:57 -07009subdirs-y += ti
Patrick Georgi0588d192009-08-12 15:00:51 +000010subdirs-y += via
Alexandru Gagniuccc328422015-10-04 19:34:08 -070011subdirs-$(CONFIG_ARCH_X86) += x86
Gerd Hoffmanncbf30732013-05-31 09:23:26 +020012subdirs-$(CONFIG_CPU_QEMU_X86) += qemu-x86
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
Timothy Pearson24e6d042015-10-08 16:58:58 -050019ifneq ($(CONFIG_CPU_MICROCODE_MULTIPLE_FILES), y)
Timothy Pearson855fc1f2015-10-14 15:41:49 -050020cbfs-files-$(CONFIG_CPU_MICROCODE_CBFS_GENERATE) += cpu_microcode_blob.bin
Timothy Pearson24e6d042015-10-08 16:58:58 -050021endif
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050022
Martin Roth4c502692015-11-05 08:03:45 -070023ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
24cbfs-files-y += cpu_microcode_blob.bin
25cpu_microcode_blob.bin-file = $(objgenerated)/microcode.bin
26
Julien Viard de Galbertc4673342017-11-03 14:07:55 +010027$(objgenerated)/microcode.bin: $(call strip_quotes,$(CONFIG_CPU_MICROCODE_HEADER_FILES))
Martin Roth4c502692015-11-05 08:03:45 -070028 echo " util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin \"$(CONFIG_CPU_MICROCODE_HEADER_FILES)\""
29 util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin $(CONFIG_CPU_MICROCODE_HEADER_FILES)
30endif
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 \
47 if [ -z "$(CONFIG_USE_BLOBS)" ] && [ -n "$(CONFIG_CPU_MICROCODE_CBFS_GENERATE)" ]; then \
48 echo "Try enabling binary-only repository in Kconfig 'General setup' menu."; \
49 fi; \
50 false; \
51 fi
Daniele Forsi21fbc082014-08-10 15:18:42 +020052 @printf " MICROCODE $(subst $(obj)/,,$(@))\n"
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070053 @echo $(cpu_microcode_bins)
Alexander Couzensd1adafe2015-10-21 12:02:39 +020054 cat /dev/null $+ > $@
Aaron Durbin32ab2832013-06-11 16:36:37 -050055
Martin Roth4c502692015-11-05 08:03:45 -070056cpu_microcode_blob.bin-file ?= $(obj)/cpu_microcode_blob.bin
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070057cpu_microcode_blob.bin-type := microcode
58
59ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
Barnali Sarkar4aa295c2016-09-29 11:25:49 +053060cpu_microcode_blob.bin-COREBOOT-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
Aaron Durbin32ab2832013-06-11 16:36:37 -050061else
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070062cpu_microcode_blob.bin-align := 16
Aaron Durbin32ab2832013-06-11 16:36:37 -050063endif