diff options
author | T Michael Turney <mturney@codeaurora.org> | 2019-09-20 11:27:08 -0700 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2020-09-10 00:22:39 +0000 |
commit | 0b493bbb9e065fc1b266f92400b42e1637739967 (patch) | |
tree | cdab823fada2f8cb7f2b744379a2e9d4b815ef43 /src/soc/qualcomm | |
parent | 43810cb1798b7c264dfebf394ff551b9d8590738 (diff) |
sc7180: enable bl31
Developer/Reviewer, be aware of this patch from Napali:
https://review.coreboot.org/c/coreboot/+/28014/44
Change-Id: Ia961ee0e30478e21fd786ce464655977449df510
Signed-off-by: Ashwin Kumar <ashk@codeaurora.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35504
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/soc/qualcomm')
-rw-r--r-- | src/soc/qualcomm/sc7180/Kconfig | 1 | ||||
-rw-r--r-- | src/soc/qualcomm/sc7180/Makefile.inc | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7180/Kconfig b/src/soc/qualcomm/sc7180/Kconfig index db7350f79d..17df0d036f 100644 --- a/src/soc/qualcomm/sc7180/Kconfig +++ b/src/soc/qualcomm/sc7180/Kconfig @@ -6,6 +6,7 @@ config SOC_QUALCOMM_SC7180 select ARCH_RAMSTAGE_ARMV8_64 select ARCH_ROMSTAGE_ARMV8_64 select ARCH_VERSTAGE_ARMV8_64 + select ARM64_USE_ARM_TRUSTED_FIRMWARE select GENERIC_GPIO_LIB select GENERIC_UDELAY select HAVE_MONOTONIC_TIMER diff --git a/src/soc/qualcomm/sc7180/Makefile.inc b/src/soc/qualcomm/sc7180/Makefile.inc index fc1e3f67e7..bcb49657f7 100644 --- a/src/soc/qualcomm/sc7180/Makefile.inc +++ b/src/soc/qualcomm/sc7180/Makefile.inc @@ -71,6 +71,13 @@ BL31_MAKEARGS += PLAT=sc7180 SC7180_BLOB := $(top)/3rdparty/qc_blobs/sc7180 +ifeq ($(CONFIG_QC_SDI_ENABLE),y) +BL31_MAKEARGS += QTI_SDI_BUILD=1 +BL31_MAKEARGS += QTISECLIB_PATH=$(SC7180_BLOB)/qtiseclib/libqtisec_dbg.a +else +BL31_MAKEARGS += QTISECLIB_PATH=$(SC7180_BLOB)/qtiseclib/libqtisec.a +endif # CONFIG_QC_SDI_ENABLE + ################################################################################ ifeq ($(CONFIG_QC_SDI_ENABLE),y) QCSDI_FILE := $(SC7180_BLOB)/boot/QcSdi.elf |