1 /* 2 * Copyright (c) 2017-2025, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <stdbool.h> 8 9 #include <arch.h> 10 #include <arch_features.h> 11 #include <arch_helpers.h> 12 #include <lib/extensions/spe.h> 13 14 #include <plat/common/platform.h> 15 16 void spe_enable(cpu_context_t *ctx) 17 { 18 el3_state_t *state = get_el3state_ctx(ctx); 19 u_register_t mdcr_el3_val = read_ctx_reg(state, CTX_MDCR_EL3); 20 21 /* 22 * MDCR_EL3.NSPB (ARM v8.2): SPE enabled in Non-secure state 23 * and disabled in secure state. Accesses to SPE registers at 24 * S-EL1 generate trap exceptions to EL3. 25 * 26 * MDCR_EL3.NSPBE: Profiling Buffer uses Non-secure Virtual Addresses. 27 * When FEAT_RME is not implemented, this field is RES0. 28 * 29 * MDCR_EL3.EnPMSN (ARM v8.7): Do not trap access to PMSNEVFR_EL1 30 * register at NS-EL1 or NS-EL2 to EL3 if FEAT_SPEv1p2 is implemented. 31 * Setting this bit to 1 doesn't have any effect on it when 32 * FEAT_SPEv1p2 not implemented. 33 */ 34 mdcr_el3_val |= MDCR_NSPB(MDCR_NSPB_EL1) | MDCR_EnPMSN_BIT; 35 mdcr_el3_val &= ~(MDCR_NSPBE_BIT); 36 write_ctx_reg(state, CTX_MDCR_EL3, mdcr_el3_val); 37 } 38 39 void spe_disable(cpu_context_t *ctx) 40 { 41 el3_state_t *state = get_el3state_ctx(ctx); 42 u_register_t mdcr_el3_val = read_ctx_reg(state, CTX_MDCR_EL3); 43 44 /* 45 * MDCR_EL3.NSPB: set to 0x2. After, Non-Secure state owns 46 * the Profiling Buffer and accesses to Statistical Profiling and Profiling 47 * Buffer control registers at EL2 and EL1 generate Trap exceptions to EL3. 48 * Profiling is disabled in Secure and Realm states. 49 * 50 * MDCR_EL3.NSPBE: Don't care as it was cleared during spe_enable and setting 51 * this to 1 does not make sense as NSPBE{1} and NSPB{0b0x} is RESERVED. 52 * 53 * MDCR_EL3.EnPMSN (ARM v8.7): Clear the bit to trap access of PMSNEVFR_EL1 54 * from EL2/EL1 to EL3. 55 */ 56 mdcr_el3_val &= ~(MDCR_NSPB(MDCR_NSPB_EL1) | MDCR_EnPMSN_BIT); 57 mdcr_el3_val |= MDCR_NSPB(MDCR_NSPB_EL3); 58 write_ctx_reg(state, CTX_MDCR_EL3, mdcr_el3_val); 59 } 60 61 void spe_init_el2_unused(void) 62 { 63 uint64_t v; 64 65 /* 66 * MDCR_EL2.TPMS (ARM v8.2): Do not trap statistical 67 * profiling controls to EL2. 68 * 69 * MDCR_EL2.E2PB (ARM v8.2): SPE enabled in Non-secure 70 * state. Accesses to profiling buffer controls at 71 * Non-secure EL1 are not trapped to EL2. 72 */ 73 v = read_mdcr_el2(); 74 v &= ~MDCR_EL2_TPMS; 75 v |= MDCR_EL2_E2PB(MDCR_EL2_E2PB_EL1); 76 write_mdcr_el2(v); 77 } 78