David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 1 | /* |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 2 | * Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved. |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <stdbool.h> |
| 8 | |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 9 | #include <arch.h> |
| 10 | #include <arch_helpers.h> |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 11 | #include <lib/cassert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 12 | #include <lib/el3_runtime/pubsub.h> |
| 13 | #include <lib/extensions/sve.h> |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 14 | |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 15 | CASSERT(SVE_VECTOR_LEN <= 2048, assert_sve_vl_too_long); |
| 16 | CASSERT(SVE_VECTOR_LEN >= 128, assert_sve_vl_too_short); |
| 17 | CASSERT((SVE_VECTOR_LEN % 128) == 0, assert_sve_vl_granule); |
| 18 | |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 19 | /* |
| 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 | |
| 25 | static bool sve_supported(void) |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 26 | { |
| 27 | uint64_t features; |
| 28 | |
| 29 | features = read_id_aa64pfr0_el1() >> ID_AA64PFR0_SVE_SHIFT; |
Antonio Nino Diaz | 033b4bb | 2018-10-25 16:52:26 +0100 | [diff] [blame] | 30 | return (features & ID_AA64PFR0_SVE_MASK) == 1U; |
Dimitris Papastamos | 5e8cd79 | 2018-02-19 14:52:19 +0000 | [diff] [blame] | 31 | } |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 32 | |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 33 | void sve_enable(cpu_context_t *context) |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 34 | { |
Arunachalam Ganapathy | cac7d16 | 2021-07-08 09:35:57 +0100 | [diff] [blame] | 35 | u_register_t cptr_el3; |
| 36 | |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 37 | if (!sve_supported()) { |
Dimitris Papastamos | 5e8cd79 | 2018-02-19 14:52:19 +0000 | [diff] [blame] | 38 | return; |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 39 | } |
Dimitris Papastamos | 5e8cd79 | 2018-02-19 14:52:19 +0000 | [diff] [blame] | 40 | |
Arunachalam Ganapathy | cac7d16 | 2021-07-08 09:35:57 +0100 | [diff] [blame] | 41 | cptr_el3 = read_ctx_reg(get_el3state_ctx(context), CTX_CPTR_EL3); |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 42 | |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 43 | /* Enable access to SVE functionality for all ELs. */ |
| 44 | cptr_el3 = (cptr_el3 | CPTR_EZ_BIT) & ~(TFP_BIT); |
| 45 | write_ctx_reg(get_el3state_ctx(context), CTX_CPTR_EL3, cptr_el3); |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 46 | |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 47 | /* Restrict maximum SVE vector length (SVE_VECTOR_LEN+1) * 128. */ |
Max Shvetsov | c450277 | 2021-03-22 11:59:37 +0000 | [diff] [blame] | 48 | write_ctx_reg(get_el3state_ctx(context), CTX_ZCR_EL3, |
Mark Brown | 6486997 | 2022-04-20 18:14:32 +0100 | [diff] [blame] | 49 | (ZCR_EL3_LEN_MASK & CONVERT_SVE_LENGTH(SVE_VECTOR_LEN))); |
David Cunado | ce88eee | 2017-10-20 11:30:57 +0100 | [diff] [blame] | 50 | } |
johpow01 | 9baade3 | 2021-07-08 14:14:00 -0500 | [diff] [blame] | 51 | |
| 52 | void sve_disable(cpu_context_t *context) |
| 53 | { |
| 54 | u_register_t reg; |
| 55 | el3_state_t *state; |
| 56 | |
| 57 | /* Make sure SME is implemented in hardware before continuing. */ |
| 58 | if (!sve_supported()) { |
| 59 | return; |
| 60 | } |
| 61 | |
| 62 | /* Get the context state. */ |
| 63 | state = get_el3state_ctx(context); |
| 64 | |
| 65 | /* Disable SVE and FPU since they share registers. */ |
| 66 | reg = read_ctx_reg(state, CTX_CPTR_EL3); |
| 67 | reg &= ~CPTR_EZ_BIT; /* Trap SVE */ |
| 68 | reg |= TFP_BIT; /* Trap FPU/SIMD */ |
| 69 | write_ctx_reg(state, CTX_CPTR_EL3, reg); |
| 70 | } |