blob: eb7a95345b06c71c53b7420e56f5afd9dddc3b8c [file] [log] [blame]
Achin Gupta7aea9082014-02-01 07:51:28 +00001/*
Soby Mathewb911cc72017-02-13 12:46:28 +00002 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
Achin Gupta7aea9082014-02-01 07:51:28 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta7aea9082014-02-01 07:51:28 +00005 */
6
7#ifndef __CM_H__
8#define __CM_H__
9
Soby Mathewb911cc72017-02-13 12:46:28 +000010#ifndef AARCH32
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010011#include <arch.h>
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000012#include <assert.h>
13#include <stdint.h>
Soby Mathewb911cc72017-02-13 12:46:28 +000014#endif
Achin Gupta7aea9082014-02-01 07:51:28 +000015
Achin Gupta7aea9082014-02-01 07:51:28 +000016/*******************************************************************************
Andrew Thoelke4e126072014-06-04 21:10:52 +010017 * Forward declarations
18 ******************************************************************************/
19struct entry_point_info;
20
21/*******************************************************************************
Achin Gupta7aea9082014-02-01 07:51:28 +000022 * Function & variable prototypes
23 ******************************************************************************/
Dan Handleya17fefa2014-05-14 12:38:32 +010024void cm_init(void);
Soby Mathewb0082d22015-04-09 13:40:55 +010025void *cm_get_context_by_index(unsigned int cpu_idx,
26 unsigned int security_state);
27void cm_set_context_by_index(unsigned int cpu_idx,
28 void *context,
29 unsigned int security_state);
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010030void *cm_get_context(uint32_t security_state);
31void cm_set_context(void *context, uint32_t security_state);
Soby Mathewb0082d22015-04-09 13:40:55 +010032void cm_init_my_context(const struct entry_point_info *ep);
33void cm_init_context_by_index(unsigned int cpu_idx,
34 const struct entry_point_info *ep);
Andrew Thoelke4e126072014-06-04 21:10:52 +010035void cm_prepare_el3_exit(uint32_t security_state);
Soby Mathew748be1d2016-05-05 14:10:46 +010036
37#ifndef AARCH32
Dan Handleya17fefa2014-05-14 12:38:32 +010038void cm_el1_sysregs_context_save(uint32_t security_state);
39void cm_el1_sysregs_context_restore(uint32_t security_state);
Soby Mathewa0fedc42016-06-16 14:52:04 +010040void cm_set_elr_el3(uint32_t security_state, uintptr_t entrypoint);
Andrew Thoelke4e126072014-06-04 21:10:52 +010041void cm_set_elr_spsr_el3(uint32_t security_state,
Soby Mathewa0fedc42016-06-16 14:52:04 +010042 uintptr_t entrypoint, uint32_t spsr);
Dan Handleya17fefa2014-05-14 12:38:32 +010043void cm_write_scr_el3_bit(uint32_t security_state,
44 uint32_t bit_pos,
45 uint32_t value);
46void cm_set_next_eret_context(uint32_t security_state);
Dan Handleya17fefa2014-05-14 12:38:32 +010047uint32_t cm_get_scr_el3(uint32_t security_state);
Andrew Thoelke8c28fe02014-06-02 11:40:35 +010048
Soby Mathew748be1d2016-05-05 14:10:46 +010049
50void cm_init_context(uint64_t mpidr,
51 const struct entry_point_info *ep) __deprecated;
52
53void *cm_get_context_by_mpidr(uint64_t mpidr,
54 uint32_t security_state) __deprecated;
55void cm_set_context_by_mpidr(uint64_t mpidr,
56 void *context,
57 uint32_t security_state) __deprecated;
58
Andrew Thoelkec02dbd62014-06-02 10:00:25 +010059/* Inline definitions */
60
61/*******************************************************************************
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010062 * 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 Thoelkec02dbd62014-06-02 10:00:25 +010065 ******************************************************************************/
Sandrine Bailleux37a12df2016-04-11 13:17:50 +010066static inline void cm_set_next_context(void *context)
Andrew Thoelkec02dbd62014-06-02 10:00:25 +010067{
Antonio Nino Diaz3759e3f2017-03-22 15:48:51 +000068#if ENABLE_ASSERTIONS
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010069 uint64_t sp_mode;
Andrew Thoelkec02dbd62014-06-02 10:00:25 +010070
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010071 /*
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 Thoelkec02dbd62014-06-02 10:00:25 +010077
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010078 assert(sp_mode == MODE_SP_EL0);
Antonio Nino Diaz3759e3f2017-03-22 15:48:51 +000079#endif /* ENABLE_ASSERTIONS */
Andrew Thoelkec02dbd62014-06-02 10:00:25 +010080
Yatharth Kochar6c0566c2015-10-02 17:56:48 +010081 __asm__ volatile("msr spsel, #1\n"
82 "mov sp, %0\n"
83 "msr spsel, #0\n"
84 : : "r" (context));
Andrew Thoelkec02dbd62014-06-02 10:00:25 +010085}
Yatharth Kochar5d361212016-06-28 17:07:09 +010086
87#else
88void *cm_get_next_context(void);
Etienne Carriere662bf932017-06-23 09:37:49 +020089void cm_set_next_context(void *context);
Soby Mathew748be1d2016-05-05 14:10:46 +010090#endif /* AARCH32 */
Yatharth Kochar5d361212016-06-28 17:07:09 +010091
Achin Gupta7aea9082014-02-01 07:51:28 +000092#endif /* __CM_H__ */