summaryrefslogtreecommitdiff
path: root/bl31
diff options
context:
space:
mode:
authorSughosh Ganu <sughosh.ganu@arm.com>2018-11-14 10:40:33 +0530
committerSughosh Ganu <sughosh.ganu@arm.com>2018-11-14 11:18:22 +0530
commit8a3588a7c8d15d53aeaa0080f47e1f949390ab71 (patch)
tree44cdd5c6f51369d9585e9ae2bc0445dec0e973ee /bl31
parenta6febeab812269d68ac4dae3e0e6c2adb88fb2aa (diff)
SPM: EHF: Build EHF module along with Secure Partition Manager
Add a dependency for building EL3 exception handling framework(EHF) module with the secure partition manager(SPM). The EHF module is needed for raising the core's running priority before the core enters the secure partition, and lowering it subsequently on exit from the secure partition. Change-Id: Icbe2d0a63f00b46dc593ff3d86b676c9333506c3 Signed-off-by: Sughosh Ganu <sughosh.ganu@arm.com>
Diffstat (limited to 'bl31')
-rw-r--r--bl31/bl31.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/bl31/bl31.mk b/bl31/bl31.mk
index 77779548..019a19ec 100644
--- a/bl31/bl31.mk
+++ b/bl31/bl31.mk
@@ -8,6 +8,9 @@
# Include SPM Makefile
################################################################################
ifeq (${ENABLE_SPM},1)
+ifeq (${EL3_EXCEPTION_HANDLING},0)
+ $(error EL3_EXCEPTION_HANDLING must be 1 for SPM support)
+endif
$(info Including SPM makefile)
include services/std_svc/spm/spm.mk
endif