summaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/pi/Makefile.inc
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-06-28 17:33:25 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-02-15 17:49:31 +0000
commite90b632e97bb8e7ea05133efdf7d489f6e1e20c8 (patch)
treeb030e449f3e182f6b9cceb4cdad443fd29a340d3 /src/soc/amd/common/block/pi/Makefile.inc
parent7340a499fb4ba37a4b58df7f949b1d6279c05742 (diff)
downloadcoreboot-e90b632e97bb8e7ea05133efdf7d489f6e1e20c8.tar.xz
soc/amd/common: Move PI refcode loader
The moved functions are only about locating and loading the refcode blobs. Separate them from the actual calls into the blob. Eventually previous binaryPI blobs should be unified to share same loader code. Change-Id: I68885e7f855b195c178e746c8f3f0f49166d0def Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/31318 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Richard Spiegel <richard.spiegel@silverbackltd.com> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/common/block/pi/Makefile.inc')
-rw-r--r--src/soc/amd/common/block/pi/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/pi/Makefile.inc b/src/soc/amd/common/block/pi/Makefile.inc
index ba0812343b..5afbb3ebdb 100644
--- a/src/soc/amd/common/block/pi/Makefile.inc
+++ b/src/soc/amd/common/block/pi/Makefile.inc
@@ -4,6 +4,7 @@ romstage-y += agesawrapper.c
romstage-y += def_callouts.c
romstage-y += heapmanager.c
romstage-y += image.c
+romstage-y += refcode_loader.c
ramstage-y += agesawrapper.c
ramstage-y += amd_late_init.c
@@ -11,5 +12,6 @@ ramstage-$(CONFIG_HAVE_ACPI_RESUME) += amd_resume_final.c
ramstage-y += def_callouts.c
ramstage-y += heapmanager.c
ramstage-y += image.c
+ramstage-y += refcode_loader.c
endif