blob: 046c41855431d807adee5cd9fcdac0d3644ce967 [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.
40$(obj)/cpu_microcode_blob.bin: $$(cpu_microcode_bins)
Daniele Forsi21fbc082014-08-10 15:18:42 +020041 @printf " MICROCODE $(subst $(obj)/,,$(@))\n"
Alexandru Gagniuc1d857002015-09-09 22:38:06 -070042 @echo $(cpu_microcode_bins)
Alexander Couzensd1adafe2015-10-21 12:02:39 +020043 cat /dev/null $+ > $@
Aaron Durbin32ab2832013-06-11 16:36:37 -050044
Martin Roth4c502692015-11-05 08:03:45 -070045cpu_microcode_blob.bin-file ?= $(obj)/cpu_microcode_blob.bin
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070046cpu_microcode_blob.bin-type := microcode
47
48ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC),)
49cpu_microcode_blob.bin-position := $(CONFIG_CPU_MICROCODE_CBFS_LOC)
Aaron Durbin32ab2832013-06-11 16:36:37 -050050else
Alexandru Gagniucf55e6682015-09-07 00:35:55 -070051cpu_microcode_blob.bin-align := 16
Aaron Durbin32ab2832013-06-11 16:36:37 -050052endif