aboutsummaryrefslogtreecommitdiff
path: root/plat/qti
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2020-08-24 18:34:38 -0700
committerJulius Werner <jwerner@chromium.org>2020-08-24 18:38:47 -0700
commit2acf00433023a16ff5f076e2d551961567c022d5 (patch)
tree9226fa7c2be4dc1bb09127b0214a0bac4ae6ae0a /plat/qti
parent2b4103f7863f2b9f45029835cc948a53a03b3bdf (diff)
downloadtrusted-firmware-a-2acf00433023a16ff5f076e2d551961567c022d5.tar.gz
qti/sc7180: Fix GIC-600 support setting
The patch adding platform support for sc7180 landed around roughly the same time as the patch that changed GICV3_IMPL to GICV3_SUPPORT_GIC600. Thus the sc7180 Makefile is still using the old variable name which now no longer does anything, and it hangs on boot due to the lacking GIC-600 support. This patch fixes the issue. Signed-off-by: Julius Werner <jwerner@chromium.org> Change-Id: Id76ada1445c3c5ac9a5a3697b4e749088b89d796
Diffstat (limited to 'plat/qti')
-rw-r--r--plat/qti/sc7180/platform.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/qti/sc7180/platform.mk b/plat/qti/sc7180/platform.mk
index e551355676..562fe7cd8e 100644
--- a/plat/qti/sc7180/platform.mk
+++ b/plat/qti/sc7180/platform.mk
@@ -79,7 +79,7 @@ include lib/coreboot/coreboot.mk
PSCI_SOURCES := plat/common/plat_psci_common.c \
# GIC-600 configuration
-GICV3_IMPL := GIC600
+GICV3_SUPPORT_GIC600 := 1
# Include GICv3 driver files
include drivers/arm/gic/v3/gicv3.mk