blob: f74e354f0ae01910f58504c56b06c8de340bbc4f [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
Andrew Wu52e665b2013-06-19 18:55:08 +08006subdirs-y += dmp
Hung-Te Lin7635a602013-02-12 00:07:38 +08007subdirs-y += armltd
Paul Burtonc1081a42014-06-14 00:08:02 +01008subdirs-y += imgtec
Patrick Georgi0588d192009-08-12 15:00:51 +00009subdirs-y += intel
Gabe Black3c7e9392013-05-26 07:15:57 -070010subdirs-y += ti
Patrick Georgi0588d192009-08-12 15:00:51 +000011subdirs-y += via
Alexandru Gagniuccc328422015-10-04 19:34:08 -070012subdirs-$(CONFIG_ARCH_X86) += x86
Gerd Hoffmanncbf30732013-05-31 09:23:26 +020013subdirs-$(CONFIG_CPU_QEMU_X86) += qemu-x86
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050014
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070015$(eval $(call create_class_compiler,cpu_microcode,x86_32))
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050016################################################################################
17## Rules for building the microcode blob in CBFS
18################################################################################
19
Timothy Pearson24e6d042015-10-08 16:58:58 -050020ifneq ($(CONFIG_CPU_MICROCODE_MULTIPLE_FILES), y)
Timothy Pearson855fc1f2015-10-14 15:41:49 -050021cbfs-files-$(CONFIG_CPU_MICROCODE_CBFS_GENERATE) += cpu_microcode_blob.bin
Timothy Pearson24e6d042015-10-08 16:58:58 -050022endif
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050023
Martin Roth4c502692015-11-05 08:03:45 -070024ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
25cbfs-files-y += cpu_microcode_blob.bin
26cpu_microcode_blob.bin-file = $(objgenerated)/microcode.bin
27
28$(objgenerated)/microcode.bin:
29 echo " util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin \"$(CONFIG_CPU_MICROCODE_HEADER_FILES)\""
30 util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin $(CONFIG_CPU_MICROCODE_HEADER_FILES)
31endif
32
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070033# We just mash all microcode binaries together into one binary to rule them all.
34# This approach assumes that the microcode binaries are properly padded, and
35# their headers specify the correct size. This works fairly well on isolatied
36# updates, such as Intel and some AMD microcode, but won't work very well if the
37# updates are wrapped in a container, like AMD's microcode update container. If
38# there is only one microcode binary (i.e. one container), then we don't have
39# this issue, and this rule will continue to work.
Martin Roth85653742016-12-22 10:29:20 -070040$(obj)/cpu_microcode_blob.bin: $$(wildcard $$(cpu_microcode_bins))
41 for bin in $(cpu_microcode_bins); do \
42 if [ ! -f "$$bin" ]; then \
43 echo "Microcode error: $$bin does not exist"; \
44 NO_MICROCODE_FILE=1; \
45 fi; \
46 done; \
47 if [ -n "$$NO_MICROCODE_FILE" ]; then \
48 if [ -z "$(CONFIG_USE_BLOBS)" ] && [ -n "$(CONFIG_CPU_MICROCODE_CBFS_GENERATE)" ]; then \
49 echo "Try enabling binary-only repository in Kconfig 'General setup' menu."; \
50 fi; \
51 false; \
52 fi
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)
Alexander Couzensd1adafe2015-10-21 12:02:39 +020055 cat /dev/null $+ > $@
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
59
60ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
Barnali Sarkar4aa295c2016-09-29 11:25:49 +053061cpu_microcode_blob.bin-COREBOOT-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
Aaron Durbin32ab2832013-06-11 16:36:37 -050062else
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070063cpu_microcode_blob.bin-align := 16
Aaron Durbin32ab2832013-06-11 16:36:37 -050064endif