summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2017-02-20 13:59:50 +0000
committerGitHub <noreply@github.com>2017-02-20 13:59:50 +0000
commit8da12f612e72f269272bb674c59c60fcf7393737 (patch)
tree7464559fd9395a3904c5e5c87ee32a2e93049719 /Makefile
parent1f786b0f77665f7f9961c30edd979948b99cb980 (diff)
parentc877b414870bb3e421518caf9c7652a9807419b5 (diff)
Merge pull request #843 from jeenu-arm/cas-lock
Introduce locking primitives using CAS instruction
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5185de7b..9f900db3 100644
--- a/Makefile
+++ b/Makefile
@@ -392,6 +392,9 @@ $(eval $(call assert_boolean,SPIN_ON_BL1_EXIT))
$(eval $(call assert_boolean,TRUSTED_BOARD_BOOT))
$(eval $(call assert_boolean,USE_COHERENT_MEM))
+$(eval $(call assert_numeric,ARM_ARCH_MAJOR))
+$(eval $(call assert_numeric,ARM_ARCH_MINOR))
+
################################################################################
# Add definitions to the cpp preprocessor based on the current build options.
# This is done after including the platform specific makefile to allow the
@@ -399,6 +402,8 @@ $(eval $(call assert_boolean,USE_COHERENT_MEM))
################################################################################
$(eval $(call add_define,ARM_CCI_PRODUCT_ID))
+$(eval $(call add_define,ARM_ARCH_MAJOR))
+$(eval $(call add_define,ARM_ARCH_MINOR))
$(eval $(call add_define,ARM_GIC_ARCH))
$(eval $(call add_define,ASM_ASSERTION))
$(eval $(call add_define,COLD_BOOT_SINGLE_CPU))