a86d1b8af5
SMI code is very similar across Intel platforms. Move this code to common/block/smi to allow it to be shared between platforms instead of duplicating the code for each platform. smihandler.h has already been made common so all it will contain is name changes and a move to the common block location. Due to moving smihandler code, APL changes are bundled here to show this change. Change-Id: I599358f23d5de7564ef1ca414bccd54cebab5a4c Signed-off-by: Brandon Breitenstein <brandon.breitenstein@intel.com> Reviewed-on: https://review.coreboot.org/19392 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
99 lines
3.2 KiB
Makefile
99 lines
3.2 KiB
Makefile
ifeq ($(CONFIG_SOC_INTEL_COMMON),y)
|
|
|
|
subdirs-y += basecode/
|
|
subdirs-y += block/
|
|
|
|
bootblock-y += util.c
|
|
|
|
verstage-$(CONFIG_SOC_INTEL_COMMON_RESET) += reset.c
|
|
|
|
bootblock-$(CONFIG_SOC_INTEL_COMMON_RESET) += reset.c
|
|
|
|
romstage-$(CONFIG_CACHE_MRC_SETTINGS) += mrc_cache.c
|
|
romstage-$(CONFIG_SOC_INTEL_COMMON_RESET) += reset.c
|
|
romstage-y += util.c
|
|
romstage-$(CONFIG_MMA) += mma.c
|
|
romstage-y += smbios.c
|
|
|
|
postcar-y += util.c
|
|
postcar-$(CONFIG_SOC_INTEL_COMMON_RESET) += reset.c
|
|
|
|
ramstage-y += hda_verb.c
|
|
ramstage-$(CONFIG_CACHE_MRC_SETTINGS) += mrc_cache.c
|
|
ramstage-$(CONFIG_CACHE_MRC_SETTINGS) += nvm.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_SPI_FLASH_PROTECT) += spi_flash.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_RESET) += reset.c
|
|
ramstage-y += util.c
|
|
ramstage-$(CONFIG_MMA) += mma.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_ACPI_WAKE_SOURCE) += acpi_wake_source.c
|
|
ramstage-y += vbt.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_GFX_OPREGION) += opregion.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_ACPI) += ./acpi/acpi.c
|
|
ramstage-$(CONFIG_SOC_INTEL_COMMON_NHLT) += nhlt.c
|
|
|
|
bootblock-$(CONFIG_MAINBOARD_HAS_TPM_CR50) += tpm_tis.c
|
|
verstage-$(CONFIG_MAINBOARD_HAS_TPM_CR50) += tpm_tis.c
|
|
romstage-$(CONFIG_MAINBOARD_HAS_TPM_CR50) += tpm_tis.c
|
|
ramstage-$(CONFIG_MAINBOARD_HAS_TPM_CR50) += tpm_tis.c
|
|
|
|
# Create and add the MRC cache to the cbfs image
|
|
ifneq ($(CONFIG_CHROMEOS),y)
|
|
$(obj)/mrc.cache: $(obj)/config.h
|
|
dd if=/dev/zero count=1 \
|
|
bs=$(shell printf "%d" $(CONFIG_MRC_SETTINGS_CACHE_SIZE) ) | \
|
|
tr '\000' '\377' > $@
|
|
|
|
cbfs-files-$(CONFIG_CACHE_MRC_SETTINGS) += mrc.cache
|
|
mrc.cache-file := $(obj)/mrc.cache
|
|
mrc.cache-position := $(CONFIG_MRC_SETTINGS_CACHE_BASE)
|
|
mrc.cache-type := mrc_cache
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MMA),y)
|
|
MMA_BLOBS_PATH = $(call strip_quotes,$(CONFIG_MMA_BLOBS_PATH))
|
|
MMA_TEST_NAMES = $(notdir $(wildcard $(MMA_BLOBS_PATH)/tests/*))
|
|
MMA_TEST_CONFIG_NAMES = $(notdir $(wildcard $(MMA_BLOBS_PATH)/configs/*))
|
|
|
|
#
|
|
# MMA_CBFS_template is the template to be expanded by eval
|
|
# where $(1) is file name
|
|
# $(2) is file path
|
|
# $(3) is file type, efi for test names (all .EFI files under $(MMA_BLOBS_PATH)/tests )
|
|
# , mma for test param (all .BIN files under $(MMA_BLOBS_PATH)/configs/<test name>)
|
|
#
|
|
# $(MMA_BLOBS_PATH)/tests/<testX>.efi has coresponding test params
|
|
# at $(MMA_BLOBS_PATH)/configs/<testX>/<XYZ>.bin
|
|
#
|
|
|
|
|
|
define MMA_CBFS_template =
|
|
cbfs-files-y += $(1)
|
|
$(1)-file := $(MMA_BLOBS_PATH)/$(2)/$(1)
|
|
$(1)-type := $(3)
|
|
endef
|
|
|
|
#
|
|
# following loop calls MMA_CBFS_template for each .EFI file under $(MMA_BLOBS_PATH)/tests with type = efi
|
|
#
|
|
$(foreach mma_test,$(MMA_TEST_NAMES),$(eval $(call MMA_CBFS_template,$(mma_test),tests,efi)))
|
|
|
|
|
|
#
|
|
# following nested loops calls MMA_CBFS_template for each .BIN file under each MMA_TEST_CONFIG_NAMES
|
|
#
|
|
# foreach <testX> do following
|
|
# foreach <XYZ>.bin in <testX> do following
|
|
# call MMA_CBFS_template for each <XYZ>.bin under current <testX> with type = mma
|
|
#
|
|
|
|
$(foreach mma_test, $(MMA_TEST_CONFIG_NAMES),\
|
|
$(eval $(foreach mma_config,$(notdir $(wildcard $(MMA_BLOBS_PATH)/configs/$(mma_test)/*)),\
|
|
$(eval $(call MMA_CBFS_template,$(mma_config),configs/$(mma_test),mma)))))
|
|
|
|
endif
|
|
|
|
cbfs-files-$(CONFIG_ADD_VBT_DATA_FILE) += vbt.bin
|
|
vbt.bin-file := $(call strip_quotes,$(CONFIG_VBT_FILE))
|
|
vbt.bin-type := raw
|
|
|
|
endif
|