blob: eb4ac8d733d4f18f6ba1c695b49268614d1d8afa [file] [log] [blame]
David Cunadoce88eee2017-10-20 11:30:57 +01001/*
Jayanth Dodderi Chidanandd62c6812023-03-07 10:43:19 +00002 * Copyright (c) 2017-2023, ARM Limited and Contributors. All rights reserved.
David Cunadoce88eee2017-10-20 11:30:57 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <stdbool.h>
8
David Cunadoce88eee2017-10-20 11:30:57 +01009#include <arch.h>
10#include <arch_helpers.h>
Mark Brown64869972022-04-20 18:14:32 +010011#include <lib/cassert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <lib/el3_runtime/pubsub.h>
13#include <lib/extensions/sve.h>
David Cunadoce88eee2017-10-20 11:30:57 +010014
Mark Brown64869972022-04-20 18:14:32 +010015CASSERT(SVE_VECTOR_LEN <= 2048, assert_sve_vl_too_long);
16CASSERT(SVE_VECTOR_LEN >= 128, assert_sve_vl_too_short);
17CASSERT((SVE_VECTOR_LEN % 128) == 0, assert_sve_vl_granule);
18
Max Shvetsovc4502772021-03-22 11:59:37 +000019/*
20 * Converts SVE vector size restriction in bytes to LEN according to ZCR_EL3 documentation.
21 * VECTOR_SIZE = (LEN+1) * 128
22 */
23#define CONVERT_SVE_LENGTH(x) (((x / 128) - 1))
24
Max Shvetsovc4502772021-03-22 11:59:37 +000025void sve_enable(cpu_context_t *context)
David Cunadoce88eee2017-10-20 11:30:57 +010026{
Arunachalam Ganapathycac7d162021-07-08 09:35:57 +010027 u_register_t cptr_el3;
28
Arunachalam Ganapathycac7d162021-07-08 09:35:57 +010029 cptr_el3 = read_ctx_reg(get_el3state_ctx(context), CTX_CPTR_EL3);
David Cunadoce88eee2017-10-20 11:30:57 +010030
Max Shvetsovc4502772021-03-22 11:59:37 +000031 /* Enable access to SVE functionality for all ELs. */
32 cptr_el3 = (cptr_el3 | CPTR_EZ_BIT) & ~(TFP_BIT);
33 write_ctx_reg(get_el3state_ctx(context), CTX_CPTR_EL3, cptr_el3);
David Cunadoce88eee2017-10-20 11:30:57 +010034
Mark Brown64869972022-04-20 18:14:32 +010035 /* Restrict maximum SVE vector length (SVE_VECTOR_LEN+1) * 128. */
Max Shvetsovc4502772021-03-22 11:59:37 +000036 write_ctx_reg(get_el3state_ctx(context), CTX_ZCR_EL3,
Mark Brown64869972022-04-20 18:14:32 +010037 (ZCR_EL3_LEN_MASK & CONVERT_SVE_LENGTH(SVE_VECTOR_LEN)));
David Cunadoce88eee2017-10-20 11:30:57 +010038}
johpow019baade32021-07-08 14:14:00 -050039
Boyan Karatotev6468d4a2023-02-16 15:12:45 +000040void sve_init_el2_unused(void)
41{
42 /*
43 * CPTR_EL2.TFP: Set to zero so that Non-secure accesses to Advanced
44 * SIMD and floating-point functionality from both Execution states do
45 * not trap to EL2.
46 */
47 write_cptr_el2(read_cptr_el2() & ~CPTR_EL2_TFP_BIT);
48}
49
johpow019baade32021-07-08 14:14:00 -050050void sve_disable(cpu_context_t *context)
51{
52 u_register_t reg;
53 el3_state_t *state;
54
johpow019baade32021-07-08 14:14:00 -050055 /* Get the context state. */
56 state = get_el3state_ctx(context);
57
58 /* Disable SVE and FPU since they share registers. */
59 reg = read_ctx_reg(state, CTX_CPTR_EL3);
60 reg &= ~CPTR_EZ_BIT; /* Trap SVE */
61 reg |= TFP_BIT; /* Trap FPU/SIMD */
62 write_ctx_reg(state, CTX_CPTR_EL3, reg);
63}