summaryrefslogtreecommitdiffstats
path: root/soc/am64x
diff options
context:
space:
mode:
authorDave Gerlach2020-12-15 19:31:35 -0600
committerDave Gerlach2021-01-05 16:14:18 -0600
commitde91d432f9041213806f6fef5134b9676ece04aa (patch)
treea1ac7bf15c73c62391e0e1c459e4b9e77f76e374 /soc/am64x
parent418ae751208822619943f99184bfc9e08a916e09 (diff)
downloadk3-image-gen-de91d432f9041213806f6fef5134b9676ece04aa.tar.gz
k3-image-gen-de91d432f9041213806f6fef5134b9676ece04aa.tar.xz
k3-image-gen-de91d432f9041213806f6fef5134b9676ece04aa.zip
soc: am64x: Add data to enable combined boot flow
Add the required variables and build steps to allow ROM combined boot image to be generated if SBL variable is provided during build. Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Diffstat (limited to 'soc/am64x')
-rw-r--r--soc/am64x/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/soc/am64x/Makefile b/soc/am64x/Makefile
index 43bcad8dd..e8747376f 100644
--- a/soc/am64x/Makefile
+++ b/soc/am64x/Makefile
@@ -30,8 +30,14 @@
30# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31# 31#
32 32
33SBL_LOADADDDR ?= 0x70020000
34COMBINED_SYSFW_BRDCFG_LOADADDR ?= 0x70000
33LOADADDR ?= 0x44000 35LOADADDR ?= 0x44000
34SCIFS = sci 36SCIFS = sci
35 37
36.PHONY: all 38.PHONY: all
39ifeq (,$(SBL))
37all: _objtree_build $(ITB) sysfw.itb 40all: _objtree_build $(ITB) sysfw.itb
41else
42all: _objtree_build $(ITB) sysfw.itb tiboot3.bin
43endif