summaryrefslogtreecommitdiff
path: root/bl32/tsp
diff options
context:
space:
mode:
authordanh-arm <dan.handley@arm.com>2014-08-01 12:17:51 +0100
committerdanh-arm <dan.handley@arm.com>2014-08-01 12:17:51 +0100
commitd9ec0c14d2b4d215fdd74be5c15a008cbd6a96b4 (patch)
tree8570f7a45b30ac70b8f6cdd326d8bf71c1666033 /bl32/tsp
parentdd2bdee61682df0ec65dfc43371c126a86a30c30 (diff)
parentfaaa2e7644ec6101de0e7d4f35b9dd2999f110a7 (diff)
Merge pull request #175 from vikramkanigiri/vk/spd-init-by-stack-unwinding
Vk/spd init by stack unwinding
Diffstat (limited to 'bl32/tsp')
-rw-r--r--bl32/tsp/tsp.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/bl32/tsp/tsp.mk b/bl32/tsp/tsp.mk
index b9084d54..02cc13d3 100644
--- a/bl32/tsp/tsp.mk
+++ b/bl32/tsp/tsp.mk
@@ -39,6 +39,14 @@ BL32_SOURCES += bl32/tsp/tsp_main.c \
BL32_LINKERFILE := bl32/tsp/tsp.ld.S
+# This flag determines if the TSPD initializes BL3-2 in tspd_init() (synchronous
+# method) or configures BL3-1 to pass control to BL3-2 instead of BL3-3
+# (asynchronous method).
+TSP_INIT_ASYNC := 0
+
+$(eval $(call assert_boolean,TSP_INIT_ASYNC))
+$(eval $(call add_define,TSP_INIT_ASYNC))
+
# Include the platform-specific TSP Makefile
# If no platform-specific TSP Makefile exists, it means TSP is not supported
# on this platform.