Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 1 | /* |
Varun Wadekar | 9388afa | 2019-01-10 15:45:15 -0800 | [diff] [blame] | 2 | * Copyright (c) 2014-2019, ARM Limited and Contributors. All rights reserved. |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <arch.h> |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 8 | #include <asm_macros.S> |
Soby Mathew | 49473e4 | 2015-06-10 13:49:59 +0100 | [diff] [blame] | 9 | #include <assert_macros.S> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 10 | #include <platform_def.h> |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 11 | |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 12 | .local platform_normal_stacks |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 13 | .weak plat_get_my_stack |
| 14 | .weak plat_set_my_stack |
Soby Mathew | 49473e4 | 2015-06-10 13:49:59 +0100 | [diff] [blame] | 15 | |
Soby Mathew | 70716d6 | 2015-07-13 16:26:11 +0100 | [diff] [blame] | 16 | /* --------------------------------------------------------------------- |
Antonio Nino Diaz | 56b68ad | 2019-02-28 13:35:21 +0000 | [diff] [blame] | 17 | * When the compatility layer is disabled, the platform APIs |
| 18 | * plat_get_my_stack() and plat_set_my_stack() are supported by the |
| 19 | * platform and the previous APIs platform_get_stack() and |
| 20 | * platform_set_stack() are defined in terms of new APIs making use of |
| 21 | * the fact that they are only ever invoked for the current CPU. This |
| 22 | * is to enable components of Trusted Firmware like SPDs using the old |
| 23 | * platform APIs to continue to work. |
Soby Mathew | 70716d6 | 2015-07-13 16:26:11 +0100 | [diff] [blame] | 24 | * -------------------------------------------------------------------- |
| 25 | */ |
| 26 | |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 27 | /* ----------------------------------------------------- |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 28 | * uintptr_t plat_get_my_stack () |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 29 | * |
| 30 | * For the current CPU, this function returns the stack |
| 31 | * pointer for a stack allocated in device memory. |
| 32 | * ----------------------------------------------------- |
| 33 | */ |
| 34 | func plat_get_my_stack |
| 35 | mov x10, x30 // lr |
| 36 | get_my_mp_stack platform_normal_stacks, PLATFORM_STACK_SIZE |
| 37 | ret x10 |
| 38 | endfunc plat_get_my_stack |
| 39 | |
| 40 | /* ----------------------------------------------------- |
| 41 | * void plat_set_my_stack () |
| 42 | * |
| 43 | * For the current CPU, this function sets the stack |
| 44 | * pointer to a stack allocated in normal memory. |
| 45 | * ----------------------------------------------------- |
| 46 | */ |
| 47 | func plat_set_my_stack |
| 48 | mov x9, x30 // lr |
| 49 | bl plat_get_my_stack |
| 50 | mov sp, x0 |
| 51 | ret x9 |
| 52 | endfunc plat_set_my_stack |
| 53 | |
| 54 | /* ----------------------------------------------------- |
Achin Gupta | 9c60d80 | 2014-06-26 11:12:37 +0100 | [diff] [blame] | 55 | * Per-cpu stacks in normal memory. Each cpu gets a |
| 56 | * stack of PLATFORM_STACK_SIZE bytes. |
Andrew Thoelke | 65668f9 | 2014-03-20 10:48:23 +0000 | [diff] [blame] | 57 | * ----------------------------------------------------- |
| 58 | */ |
| 59 | declare_stack platform_normal_stacks, tzfw_normal_stacks, \ |
Soby Mathew | bfdbecf | 2016-06-09 17:16:35 +0100 | [diff] [blame] | 60 | PLATFORM_STACK_SIZE, PLATFORM_CORE_COUNT, \ |
| 61 | CACHE_WRITEBACK_GRANULE |