blob: f83a5ee50525b61d556933779dd76822791dc7d0 [file] [log] [blame]
Boyan Karatotev05504ba2023-02-15 13:21:50 +00001/*
2 * Copyright (c) 2023, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
8#include <arch_features.h>
9#include <arch_helpers.h>
10#include <lib/extensions/pmuv3.h>
11
12static u_register_t init_mdcr_el2_hpmn(u_register_t mdcr_el2)
13{
14 /*
15 * Initialize MDCR_EL2.HPMN to its hardware reset value so we don't
16 * throw anyone off who expects this to be sensible.
17 */
18 mdcr_el2 &= ~MDCR_EL2_HPMN_MASK;
19 mdcr_el2 |= ((read_pmcr_el0() >> PMCR_EL0_N_SHIFT) & PMCR_EL0_N_MASK);
20
21 return mdcr_el2;
22}
23
24void pmuv3_enable(cpu_context_t *ctx)
25{
26#if CTX_INCLUDE_EL2_REGS
27 u_register_t mdcr_el2;
28
29 mdcr_el2 = read_ctx_reg(get_el2_sysregs_ctx(ctx), CTX_MDCR_EL2);
30 mdcr_el2 = init_mdcr_el2_hpmn(mdcr_el2);
31 write_ctx_reg(get_el2_sysregs_ctx(ctx), CTX_MDCR_EL2, mdcr_el2);
32#endif /* CTX_INCLUDE_EL2_REGS */
33}
34
Boyan Karatotev677ed8a2023-02-16 09:45:29 +000035static u_register_t mtpmu_disable_el3(u_register_t mdcr_el3)
36{
37 if (!is_feat_mtpmu_supported()) {
38 return mdcr_el3;
39 }
40
41 /*
42 * MDCR_EL3.MTPME = 0
43 * FEAT_MTPMU is disabled. The Effective value of PMEVTYPER<n>_EL0.MT is
44 * zero.
45 */
46 mdcr_el3 &= ~MDCR_MTPME_BIT;
47
48 return mdcr_el3;
49}
50
Boyan Karatotev05504ba2023-02-15 13:21:50 +000051void pmuv3_disable_el3(void)
52{
53 u_register_t mdcr_el3 = read_mdcr_el3();
54
55 /* ---------------------------------------------------------------------
56 * Initialise MDCR_EL3, setting all fields rather than relying on hw.
57 * Some fields are architecturally UNKNOWN on reset.
58 *
59 * MDCR_EL3.MPMX: Set to zero to not affect event counters (when
60 * SPME = 0).
61 *
62 * MDCR_EL3.MCCD: Set to one so that cycle counting by PMCCNTR_EL0 is
63 * prohibited in EL3. This bit is RES0 in versions of the
64 * architecture with FEAT_PMUv3p7 not implemented.
65 *
66 * MDCR_EL3.SCCD: Set to one so that cycle counting by PMCCNTR_EL0 is
67 * prohibited in Secure state. This bit is RES0 in versions of the
68 * architecture with FEAT_PMUv3p5 not implemented.
69 *
70 * MDCR_EL3.SPME: Set to zero so that event counting is prohibited in
71 * Secure state (and explicitly EL3 with later revisions). If ARMv8.2
72 * Debug is not implemented this bit does not have any effect on the
73 * counters unless there is support for the implementation defined
74 * authentication interface ExternalSecureNoninvasiveDebugEnabled().
75 *
76 * The SPME/MPMX combination is a little tricky. Below is a small
77 * summary if another combination is ever needed:
78 * SPME | MPMX | secure world | EL3
79 * -------------------------------------
80 * 0 | 0 | disabled | disabled
81 * 1 | 0 | enabled | enabled
82 * 0 | 1 | enabled | disabled
83 * 1 | 1 | enabled | disabled only for counters 0 to
84 * MDCR_EL2.HPMN - 1. Enabled for the rest
85 */
86 mdcr_el3 = (mdcr_el3 | MDCR_SCCD_BIT | MDCR_MCCD_BIT) &
87 ~(MDCR_MPMX_BIT | MDCR_SPME_BIT);
Boyan Karatotev677ed8a2023-02-16 09:45:29 +000088 mdcr_el3 = mtpmu_disable_el3(mdcr_el3);
Boyan Karatotev05504ba2023-02-15 13:21:50 +000089 write_mdcr_el3(mdcr_el3);
90
91 /* ---------------------------------------------------------------------
92 * Initialise PMCR_EL0 setting all fields rather than relying
93 * on hw. Some fields are architecturally UNKNOWN on reset.
94 *
95 * PMCR_EL0.DP: Set to one so that the cycle counter,
96 * PMCCNTR_EL0 does not count when event counting is prohibited.
97 * Necessary on PMUv3 <= p7 where MDCR_EL3.{SCCD,MCCD} are not
98 * available
99 *
100 * PMCR_EL0.X: Set to zero to disable export of events.
101 *
102 * PMCR_EL0.C: Set to one to reset PMCCNTR_EL0 to zero.
103 *
104 * PMCR_EL0.P: Set to one to reset each event counter PMEVCNTR<n>_EL0 to
105 * zero.
106 *
107 * PMCR_EL0.E: Set to zero to disable cycle and event counters.
108 * ---------------------------------------------------------------------
109 */
110 write_pmcr_el0((read_pmcr_el0() | PMCR_EL0_DP_BIT | PMCR_EL0_C_BIT |
111 PMCR_EL0_P_BIT) & ~(PMCR_EL0_X_BIT | PMCR_EL0_E_BIT));
112}
113
Boyan Karatotev677ed8a2023-02-16 09:45:29 +0000114static u_register_t mtpmu_disable_el2(u_register_t mdcr_el2)
115{
116 if (!is_feat_mtpmu_supported()) {
117 return mdcr_el2;
118 }
119
120 /*
121 * MDCR_EL2.MTPME = 0
122 * FEAT_MTPMU is disabled. The Effective value of PMEVTYPER<n>_EL0.MT is
123 * zero.
124 */
125 mdcr_el2 &= ~MDCR_EL2_MTPME;
126
127 return mdcr_el2;
128}
129
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000130void pmuv3_init_el2_unused(void)
131{
132 u_register_t mdcr_el2 = read_mdcr_el2();
133
134 /*
135 * Initialise MDCR_EL2, setting all fields rather than
136 * relying on hw. Some fields are architecturally
137 * UNKNOWN on reset.
138 *
139 * MDCR_EL2.HLP: Set to one so that event counter overflow, that is
140 * recorded in PMOVSCLR_EL0[0-30], occurs on the increment that changes
141 * PMEVCNTR<n>_EL0[63] from 1 to 0, when ARMv8.5-PMU is implemented.
142 * This bit is RES0 in versions of the architecture earlier than
143 * ARMv8.5, setting it to 1 doesn't have any effect on them.
144 *
145 * MDCR_EL2.HCCD: Set to one to prohibit cycle counting at EL2. This bit
146 * is RES0 in versions of the architecture with FEAT_PMUv3p5 not
147 * implemented.
148 *
149 * MDCR_EL2.HPMD: Set to one so that event counting is
150 * prohibited at EL2 for counter n < MDCR_EL2.HPMN. This bit is RES0
151 * in versions of the architecture with FEAT_PMUv3p1 not implemented.
152 *
153 * MDCR_EL2.HPME: Set to zero to disable event counters for counters
154 * n >= MDCR_EL2.HPMN.
155 *
156 * MDCR_EL2.TPM: Set to zero so that Non-secure EL0 and
157 * EL1 accesses to all Performance Monitors registers
158 * are not trapped to EL2.
159 *
160 * MDCR_EL2.TPMCR: Set to zero so that Non-secure EL0
161 * and EL1 accesses to the PMCR_EL0 or PMCR are not
162 * trapped to EL2.
163 */
164 mdcr_el2 = (mdcr_el2 | MDCR_EL2_HLP_BIT | MDCR_EL2_HPMD_BIT |
165 MDCR_EL2_HCCD_BIT) &
166 ~(MDCR_EL2_HPME_BIT | MDCR_EL2_TPM_BIT | MDCR_EL2_TPMCR_BIT);
167 mdcr_el2 = init_mdcr_el2_hpmn(mdcr_el2);
Boyan Karatotev677ed8a2023-02-16 09:45:29 +0000168 mdcr_el2 = mtpmu_disable_el2(mdcr_el2);
Boyan Karatotev05504ba2023-02-15 13:21:50 +0000169 write_mdcr_el2(mdcr_el2);
170}