Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 1 | /* |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CM_H__ |
| 8 | #define __CM_H__ |
| 9 | |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 10 | #ifndef AARCH32 |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 11 | #include <arch.h> |
Jeenu Viswambharan | bc1a929 | 2017-02-16 14:55:15 +0000 | [diff] [blame] | 12 | #include <assert.h> |
| 13 | #include <stdint.h> |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 14 | #endif |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 15 | |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 16 | /******************************************************************************* |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 17 | * Forward declarations |
| 18 | ******************************************************************************/ |
| 19 | struct entry_point_info; |
| 20 | |
| 21 | /******************************************************************************* |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 22 | * Function & variable prototypes |
| 23 | ******************************************************************************/ |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 24 | void cm_init(void); |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 25 | void *cm_get_context_by_index(unsigned int cpu_idx, |
| 26 | unsigned int security_state); |
| 27 | void cm_set_context_by_index(unsigned int cpu_idx, |
| 28 | void *context, |
| 29 | unsigned int security_state); |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 30 | void *cm_get_context(uint32_t security_state); |
| 31 | void cm_set_context(void *context, uint32_t security_state); |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 32 | void cm_init_my_context(const struct entry_point_info *ep); |
| 33 | void cm_init_context_by_index(unsigned int cpu_idx, |
| 34 | const struct entry_point_info *ep); |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 35 | void cm_prepare_el3_exit(uint32_t security_state); |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 36 | |
| 37 | #ifndef AARCH32 |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 38 | void cm_el1_sysregs_context_save(uint32_t security_state); |
| 39 | void cm_el1_sysregs_context_restore(uint32_t security_state); |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 40 | void cm_set_elr_el3(uint32_t security_state, uintptr_t entrypoint); |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 41 | void cm_set_elr_spsr_el3(uint32_t security_state, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 42 | uintptr_t entrypoint, uint32_t spsr); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 43 | void cm_write_scr_el3_bit(uint32_t security_state, |
| 44 | uint32_t bit_pos, |
| 45 | uint32_t value); |
| 46 | void cm_set_next_eret_context(uint32_t security_state); |
Dan Handley | a17fefa | 2014-05-14 12:38:32 +0100 | [diff] [blame] | 47 | uint32_t cm_get_scr_el3(uint32_t security_state); |
Andrew Thoelke | 8c28fe0 | 2014-06-02 11:40:35 +0100 | [diff] [blame] | 48 | |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 49 | |
| 50 | void cm_init_context(uint64_t mpidr, |
| 51 | const struct entry_point_info *ep) __deprecated; |
| 52 | |
| 53 | void *cm_get_context_by_mpidr(uint64_t mpidr, |
| 54 | uint32_t security_state) __deprecated; |
| 55 | void cm_set_context_by_mpidr(uint64_t mpidr, |
| 56 | void *context, |
| 57 | uint32_t security_state) __deprecated; |
| 58 | |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 59 | /* Inline definitions */ |
| 60 | |
| 61 | /******************************************************************************* |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 62 | * This function is used to program the context that's used for exception |
| 63 | * return. This initializes the SP_EL3 to a pointer to a 'cpu_context' set for |
| 64 | * the required security state |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 65 | ******************************************************************************/ |
Sandrine Bailleux | 37a12df | 2016-04-11 13:17:50 +0100 | [diff] [blame] | 66 | static inline void cm_set_next_context(void *context) |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 67 | { |
Antonio Nino Diaz | 3759e3f | 2017-03-22 15:48:51 +0000 | [diff] [blame] | 68 | #if ENABLE_ASSERTIONS |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 69 | uint64_t sp_mode; |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 70 | |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 71 | /* |
| 72 | * Check that this function is called with SP_EL0 as the stack |
| 73 | * pointer |
| 74 | */ |
| 75 | __asm__ volatile("mrs %0, SPSel\n" |
| 76 | : "=r" (sp_mode)); |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 77 | |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 78 | assert(sp_mode == MODE_SP_EL0); |
Antonio Nino Diaz | 3759e3f | 2017-03-22 15:48:51 +0000 | [diff] [blame] | 79 | #endif /* ENABLE_ASSERTIONS */ |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 80 | |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 81 | __asm__ volatile("msr spsel, #1\n" |
| 82 | "mov sp, %0\n" |
| 83 | "msr spsel, #0\n" |
| 84 | : : "r" (context)); |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 85 | } |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 86 | |
| 87 | #else |
| 88 | void *cm_get_next_context(void); |
Etienne Carriere | 662bf93 | 2017-06-23 09:37:49 +0200 | [diff] [blame] | 89 | void cm_set_next_context(void *context); |
Soby Mathew | 748be1d | 2016-05-05 14:10:46 +0100 | [diff] [blame] | 90 | #endif /* AARCH32 */ |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 91 | |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 92 | #endif /* __CM_H__ */ |