This is declared weak so that platforms that do not have smm_subregion() can provide their own implementation. Change-Id: Ide815b45cbc21a295b8e58434644e82920e84e31 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34704 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
60 lines
1.6 KiB
Makefile
60 lines
1.6 KiB
Makefile
#
|
|
# This file is part of the coreboot project.
|
|
#
|
|
# Copyright (C) 2014 Sage Electronic Engineering, LLC.
|
|
# Copyright (C) 2015 Intel Corp.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
|
|
ifeq ($(CONFIG_PLATFORM_USES_FSP1_1),y)
|
|
|
|
verstage-y += car.c
|
|
verstage-y += fsp_util.c
|
|
verstage-$(CONFIG_SEPARATE_VERSTAGE) += verstage.c
|
|
|
|
bootblock-y += bootblock.c
|
|
bootblock-$(CONFIG_USE_GENERIC_FSP_CAR_INC) += cache_as_ram.S
|
|
bootblock-y += fsp_util.c
|
|
|
|
romstage-y += car.c
|
|
romstage-y += fsp_util.c
|
|
romstage-y += hob.c
|
|
romstage-y += raminit.c
|
|
romstage-y += romstage.c
|
|
romstage-$(CONFIG_MMA) += mma_core.c
|
|
|
|
ramstage-$(CONFIG_RUN_FSP_GOP) += fsp_gop.c
|
|
ramstage-y += fsp_relocate.c
|
|
ramstage-y += fsp_util.c
|
|
ramstage-y += hob.c
|
|
ramstage-y += ramstage.c
|
|
ramstage-$(CONFIG_INTEL_GMA_ADD_VBT) += vbt.c
|
|
ramstage-$(CONFIG_MMA) += mma_core.c
|
|
|
|
CPPFLAGS_common += -Isrc/drivers/intel/fsp1_1/include
|
|
|
|
ifneq ($(CONFIG_SKIP_FSP_CAR),y)
|
|
postcar-y += temp_ram_exit.c
|
|
postcar-y += exit_car.S
|
|
endif
|
|
postcar-y += fsp_util.c
|
|
|
|
# Add the FSP binary to the cbfs image
|
|
ifeq ($(CONFIG_HAVE_FSP_BIN),y)
|
|
cbfs-files-y += fsp.bin
|
|
fsp.bin-file := $(call strip_quotes,$(CONFIG_FSP_FILE))
|
|
fsp.bin-type := fsp
|
|
fsp.bin-options := --xip
|
|
fsp.bin-COREBOOT-position := $(CONFIG_FSP_LOC)
|
|
endif
|
|
|
|
endif
|