blob: b1409b95d242d1caf319196b2e28849980f668d8 [file] [log] [blame]
johpow019baade32021-07-08 14:14:00 -05001/*
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +00002 * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved.
johpow019baade32021-07-08 14:14:00 -05003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdbool.h>
8
9#include <arch.h>
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +000010#include <arch_features.h>
johpow019baade32021-07-08 14:14:00 -050011#include <arch_helpers.h>
12#include <common/debug.h>
13#include <lib/el3_runtime/context_mgmt.h>
14#include <lib/extensions/sme.h>
15#include <lib/extensions/sve.h>
16
johpow019baade32021-07-08 14:14:00 -050017void sme_enable(cpu_context_t *context)
18{
19 u_register_t reg;
johpow019baade32021-07-08 14:14:00 -050020 el3_state_t *state;
21
johpow019baade32021-07-08 14:14:00 -050022 /* Get the context state. */
23 state = get_el3state_ctx(context);
24
johpow019baade32021-07-08 14:14:00 -050025 /* Set the ENTP2 bit in SCR_EL3 to enable access to TPIDR2_EL0. */
26 reg = read_ctx_reg(state, CTX_SCR_EL3);
27 reg |= SCR_ENTP2_BIT;
28 write_ctx_reg(state, CTX_SCR_EL3, reg);
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000029}
johpow019baade32021-07-08 14:14:00 -050030
Elizabeth Ho4fc00d22023-07-18 14:10:25 +010031void sme_enable_per_world(per_world_context_t *per_world_ctx)
32{
33 u_register_t reg;
34
35 /* Enable SME in CPTR_EL3. */
36 reg = per_world_ctx->ctx_cptr_el3;
37 reg |= ESM_BIT;
38 per_world_ctx->ctx_cptr_el3 = reg;
39}
40
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000041void sme_init_el3(void)
42{
43 u_register_t cptr_el3 = read_cptr_el3();
44 u_register_t smcr_el3;
45
46 /* Set CPTR_EL3.ESM bit so we can access SMCR_EL3 without trapping. */
johpow019baade32021-07-08 14:14:00 -050047 write_cptr_el3(cptr_el3 | ESM_BIT);
Boyan Karatotevbe028b42022-10-13 13:51:05 +010048 isb();
johpow019baade32021-07-08 14:14:00 -050049
50 /*
Elizabeth Ho4fc00d22023-07-18 14:10:25 +010051 * Set the max LEN value and FA64 bit. This register is set up per_world
johpow019baade32021-07-08 14:14:00 -050052 * to be the least restrictive, then lower ELs can restrict as needed
53 * using SMCR_EL2 and SMCR_EL1.
54 */
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000055 smcr_el3 = SMCR_ELX_LEN_MAX;
Jayanth Dodderi Chidanand605419a2023-03-06 23:56:14 +000056 if (read_feat_sme_fa64_id_field() != 0U) {
johpow019baade32021-07-08 14:14:00 -050057 VERBOSE("[SME] FA64 enabled\n");
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000058 smcr_el3 |= SMCR_ELX_FA64_BIT;
johpow019baade32021-07-08 14:14:00 -050059 }
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +000060
61 /*
62 * Enable access to ZT0 register.
63 * Make sure FEAT_SME2 is supported by the hardware before continuing.
64 * If supported, Set the EZT0 bit in SMCR_EL3 to allow instructions to
65 * access ZT0 register without trapping.
66 */
67 if (is_feat_sme2_supported()) {
68 VERBOSE("SME2 enabled\n");
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000069 smcr_el3 |= SMCR_ELX_EZT0_BIT;
Jayanth Dodderi Chidanandcfe053a2022-11-08 10:31:07 +000070 }
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000071 write_smcr_el3(smcr_el3);
johpow019baade32021-07-08 14:14:00 -050072
73 /* Reset CPTR_EL3 value. */
74 write_cptr_el3(cptr_el3);
Boyan Karatotevbe028b42022-10-13 13:51:05 +010075 isb();
johpow019baade32021-07-08 14:14:00 -050076}
77
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000078void sme_init_el2_unused(void)
79{
80 /*
81 * CPTR_EL2.TCPAC: Set to zero so that Non-secure EL1 accesses to the
82 * CPACR_EL1 or CPACR from both Execution states do not trap to EL2.
83 */
84 write_cptr_el2(read_cptr_el2() & ~CPTR_EL2_TCPAC_BIT);
85}
86
johpow019baade32021-07-08 14:14:00 -050087void sme_disable(cpu_context_t *context)
88{
89 u_register_t reg;
90 el3_state_t *state;
91
johpow019baade32021-07-08 14:14:00 -050092 /* Get the context state. */
93 state = get_el3state_ctx(context);
94
johpow019baade32021-07-08 14:14:00 -050095 /* Disable access to TPIDR2_EL0. */
96 reg = read_ctx_reg(state, CTX_SCR_EL3);
97 reg &= ~SCR_ENTP2_BIT;
98 write_ctx_reg(state, CTX_SCR_EL3, reg);
99}
Elizabeth Ho4fc00d22023-07-18 14:10:25 +0100100
101void sme_disable_per_world(per_world_context_t *per_world_ctx)
102{
103 u_register_t reg;
104
105 /* Disable SME, SVE, and FPU since they all share registers. */
106 reg = per_world_ctx->ctx_cptr_el3;
107 reg &= ~ESM_BIT; /* Trap SME */
108 reg &= ~CPTR_EZ_BIT; /* Trap SVE */
109 reg |= TFP_BIT; /* Trap FPU/SIMD */
110 per_world_ctx->ctx_cptr_el3 = reg;
111}