2012-07-20 07:11:21 +02:00
|
|
|
################################################################################
|
|
|
|
## Subdirectories
|
|
|
|
################################################################################
|
2009-08-12 17:56:17 +02:00
|
|
|
subdirs-y += amd
|
2013-02-11 17:07:38 +01:00
|
|
|
subdirs-y += armltd
|
2009-08-12 17:00:51 +02:00
|
|
|
subdirs-y += intel
|
2012-12-08 02:18:43 +01:00
|
|
|
subdirs-y += samsung
|
2009-08-12 17:00:51 +02:00
|
|
|
subdirs-y += via
|
2013-05-10 07:33:32 +02:00
|
|
|
subdirs-y += x86
|
2012-07-20 07:11:21 +02:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
## Rules for building the microcode blob in CBFS
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# External microcode file, or are we generating one ?
|
|
|
|
ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL), y)
|
2013-02-27 20:24:11 +01:00
|
|
|
cbfs-files-y += cpu_microcode_blob.bin
|
|
|
|
cpu_microcode_blob.bin-type = 0x53
|
2012-07-20 07:11:21 +02:00
|
|
|
cpu_microcode_blob.bin-file = $(call strip_quotes,$(CONFIG_CPU_MICROCODE_FILE))
|
2013-02-27 20:24:11 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE), y)
|
|
|
|
cbfs-files-y += cpu_microcode_blob.bin
|
|
|
|
cpu_microcode_blob.bin-type = 0x53
|
2012-07-20 07:11:21 +02:00
|
|
|
cpu_microcode_blob.bin-file = $(obj)/cpu_microcode_blob.bin
|
|
|
|
endif
|
|
|
|
|
|
|
|
# In case we have more than one "source" (cough) files containing microcode, we
|
2013-02-27 20:24:11 +01:00
|
|
|
# link them together in one large blob, so that we get all the microcode updates
|
2012-07-20 07:11:21 +02:00
|
|
|
# in one file. This makes it easier for objcopy in the final step.
|
|
|
|
# The --entry=0 is just here to suppress the LD warning. It does not affect the
|
|
|
|
# final microcode file.
|
|
|
|
$(obj)/cpu_microcode_blob.o: $$(cpu_microcode-objs)
|
|
|
|
@printf " LD $(subst $(obj)/,,$(@))\n"
|
|
|
|
$(LD) -static --entry=0 $< -o $@
|
|
|
|
|
|
|
|
# We have a lot of useless data in the large blob, and we are only interested in
|
|
|
|
# the data section, so we only copy that part to the final microcode file
|
|
|
|
$(obj)/cpu_microcode_blob.bin: $(obj)/cpu_microcode_blob.o
|
|
|
|
@printf " MICROCODE $(subst $(obj)/,,$(@))\n"
|
|
|
|
$(OBJCOPY) -j .data -O binary $< $@
|