aboutsummaryrefslogtreecommitdiff
path: root/bl31/bl31.mk
diff options
context:
space:
mode:
authorJeenu Viswambharan <jeenu.viswambharan@arm.com>2014-02-28 10:08:33 +0000
committerDan Handley <dan.handley@arm.com>2014-03-20 11:16:23 +0000
commit64f6ea9be7d00f1d7a09c4d928124d93354d9e2f (patch)
tree1d1ca7c868cdbcde868430dd9d9833b38413d01b /bl31/bl31.mk
parent1c297bf015226c182b66498d5a64b8b51c7624f5 (diff)
downloadtrusted-firmware-a-64f6ea9be7d00f1d7a09c4d928124d93354d9e2f.tar.gz
Implement ARM Standard Service
This patch implements ARM Standard Service as a runtime service and adds support for call count, UID and revision information SMCs. The existing PSCI implementation is subsumed by the Standard Service calls and all PSCI calls are therefore dispatched by the Standard Service to the PSCI handler. At present, PSCI is the only specification under Standard Service. Thus call count returns the number of PSCI calls implemented. As this is the initial implementation, a revision number of 0.1 is returned for call revision. Fixes ARM-software/tf-issues#62 Change-Id: I6d4273f72ad6502636efa0f872e288b191a64bc1
Diffstat (limited to 'bl31/bl31.mk')
-rw-r--r--bl31/bl31.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/bl31/bl31.mk b/bl31/bl31.mk
index 5bc58c5978..8f6998c623 100644
--- a/bl31/bl31.mk
+++ b/bl31/bl31.mk
@@ -33,13 +33,15 @@ vpath %.c common \
arch/system/gic \
plat/${PLAT} \
arch/${ARCH} \
- services/psci \
+ services/std_svc \
+ services/std_svc/psci \
lib/sync/locks/bakery \
plat/${PLAT}/${ARCH} \
${PLAT_BL31_C_VPATH}
vpath %.S lib/arch/${ARCH} \
- services/psci \
+ services/std_svc \
+ services/std_svc/psci \
include \
plat/${PLAT}/${ARCH} \
lib/sync/locks/exclusive \
@@ -51,6 +53,7 @@ BL31_SOURCES += bl31_arch_setup.c \
bl31_entrypoint.S \
runtime_exceptions.S \
bl31_main.c \
+ std_svc_setup.c \
psci_entry.S \
psci_setup.c \
psci_common.c \