diff options
author | Soby Mathew <soby.mathew@arm.com> | 2015-07-13 11:21:11 +0100 |
---|---|---|
committer | Achin Gupta <achin.gupta@arm.com> | 2015-08-13 23:48:06 +0100 |
commit | 85a181ce3878187ba684f28b3c93cc098bc971fc (patch) | |
tree | df517eb231d57f0135d2433a014b93916d4e359b /include/common | |
parent | 5c8babcd70149db57734a38be432fe6625f3888f (diff) |
PSCI: Migrate TF to the new platform API and CM helpers
This patch migrates the rest of Trusted Firmware excluding Secure Payload and
the dispatchers to the new platform and context management API. The per-cpu
data framework APIs which took MPIDRs as their arguments are deleted and only
the ones which take core index as parameter are retained.
Change-Id: I839d05ad995df34d2163a1cfed6baa768a5a595d
Diffstat (limited to 'include/common')
-rw-r--r-- | include/common/el3_common_macros.S | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/common/el3_common_macros.S b/include/common/el3_common_macros.S index eb033a6e..3b960815 100644 --- a/include/common/el3_common_macros.S +++ b/include/common/el3_common_macros.S @@ -164,8 +164,7 @@ * then it means it is a warm boot so jump to this address. * ------------------------------------------------------------- */ - mrs x0, mpidr_el1 - bl platform_get_entrypoint + bl plat_get_my_entrypoint cbz x0, do_cold_boot br x0 @@ -181,8 +180,7 @@ * of that state and allows entry into the OS. * ------------------------------------------------------------- */ - mrs x0, mpidr_el1 - bl platform_is_primary_cpu + bl plat_is_my_cpu_primary cbnz x0, do_primary_cold_boot /* This is a cold boot on a secondary CPU */ @@ -249,8 +247,7 @@ * moment. * --------------------------------------------------------------------- */ - mrs x0, mpidr_el1 - bl platform_set_stack + bl plat_set_my_stack .endm #endif /* __EL3_COMMON_MACROS_S__ */ |