blob: 60864ef5dd03c2091e5fbcbe406e655cddcdd420 [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
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
Aaron Durbin716738a2013-05-10 00:33:32 -050011subdirs-y += 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
Aaron Durbin32ab2832013-06-11 16:36:37 -050019cpu_ucode_cbfs_name = cpu_microcode_blob.bin
20
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050021# External microcode file, or are we generating one ?
22ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL), y)
Aaron Durbin32ab2832013-06-11 16:36:37 -050023cpu_ucode_cbfs_file = $(call strip_quotes,$(CONFIG_CPU_MICROCODE_FILE))
24cbfs_include_ucode = y
Stefan Reinauer9c29cfa2013-02-27 20:24:11 +010025endif
26
27ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE), y)
Aaron Durbin32ab2832013-06-11 16:36:37 -050028cpu_ucode_cbfs_file = $(obj)/cpu_microcode_blob.bin
29cbfs_include_ucode = y
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050030endif
31
Marc Jonesbdafcfa2013-10-29 17:46:54 -060032ifneq ($(CONFIG_CPU_MICROCODE_CBFS_LOC), 0)
33cpu_ucode_cbfs_offset = "-b $(CONFIG_CPU_MICROCODE_CBFS_LOC)"
34else
35cpu_ucode_cbfs_offset = "-b"
36endif
37
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050038# In case we have more than one "source" (cough) files containing microcode, we
Stefan Reinauer9c29cfa2013-02-27 20:24:11 +010039# link them together in one large blob, so that we get all the microcode updates
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050040# in one file. This makes it easier for objcopy in the final step.
41# The --entry=0 is just here to suppress the LD warning. It does not affect the
42# final microcode file.
43$(obj)/cpu_microcode_blob.o: $$(cpu_microcode-objs)
44 @printf " LD $(subst $(obj)/,,$(@))\n"
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070045 $(LD_cpu_microcode) -static --entry=0 $+ -o $@
Alexandru Gagniuc00b579a2012-07-20 00:11:21 -050046
47# We have a lot of useless data in the large blob, and we are only interested in
48# the data section, so we only copy that part to the final microcode file
49$(obj)/cpu_microcode_blob.bin: $(obj)/cpu_microcode_blob.o
Daniele Forsi21fbc082014-08-10 15:18:42 +020050 @printf " MICROCODE $(subst $(obj)/,,$(@))\n"
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070051 $(OBJCOPY_cpu_microcode) -j .data -O binary $< $@
Aaron Durbin32ab2832013-06-11 16:36:37 -050052
53ifeq ($(cbfs_include_ucode),y)
54# Add CPU microcode to specified rom image $(1)
55add-cpu-microcode-to-cbfs = \
Marc Jonesbdafcfa2013-10-29 17:46:54 -060056 $(CBFSTOOL) $(1) locate -f $(cpu_ucode_cbfs_file) -n $(cpu_ucode_cbfs_name) -a 16 | xargs $(CBFSTOOL) $(1) add -n $(cpu_ucode_cbfs_name) -f $(cpu_ucode_cbfs_file) -t 0x53 $(cpu_ucode_cbfs_offset)
Aaron Durbin32ab2832013-06-11 16:36:37 -050057else
58add-cpu-microcode-to-cbfs = true
59endif