blob: c650629cbbb1a6b91078b455ac5a66c9316b4700 [file] [log] [blame]
Dimitris Papastamose08005a2017-10-12 13:02:29 +01001/*
johpow01fa59c6f2020-10-02 13:41:11 -05002 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
Dimitris Papastamose08005a2017-10-12 13:02:29 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Dimitris Papastamos525c37a2017-11-13 09:49:45 +00007#include <assert.h>
Chris Kaya5fde282021-05-26 11:58:23 +01008#include <cdefs.h>
Scott Brandene5dcf982020-08-25 13:49:32 -07009#include <inttypes.h>
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010010#include <stdbool.h>
Scott Brandene5dcf982020-08-25 13:49:32 -070011#include <stdint.h>
Dimitris Papastamose08005a2017-10-12 13:02:29 +010012
Chris Kay26a79612021-05-24 20:35:26 +010013#include "../amu_private.h"
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <arch.h>
johpow01fa59c6f2020-10-02 13:41:11 -050015#include <arch_features.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000016#include <arch_helpers.h>
Chris Kayf11909f2021-08-19 11:21:52 +010017#include <common/debug.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <lib/el3_runtime/pubsub_events.h>
19#include <lib/extensions/amu.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000020
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010021#include <plat/common/platform.h>
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +000022
Chris Kayf11909f2021-08-19 11:21:52 +010023#if ENABLE_AMU_FCONF
24# include <lib/fconf/fconf.h>
25# include <lib/fconf/fconf_amu_getter.h>
26#endif
27
Chris Kay03be39d2021-05-05 13:38:30 +010028#if ENABLE_MPMM
29# include <lib/mpmm/mpmm.h>
30#endif
31
Chris Kay26a79612021-05-24 20:35:26 +010032struct amu_ctx {
33 uint64_t group0_cnts[AMU_GROUP0_MAX_COUNTERS];
34#if ENABLE_AMU_AUXILIARY_COUNTERS
35 uint64_t group1_cnts[AMU_GROUP1_MAX_COUNTERS];
36#endif
37
38 /* Architected event counter 1 does not have an offset register */
39 uint64_t group0_voffsets[AMU_GROUP0_MAX_COUNTERS - 1U];
40#if ENABLE_AMU_AUXILIARY_COUNTERS
41 uint64_t group1_voffsets[AMU_GROUP1_MAX_COUNTERS];
42#endif
43
44 uint16_t group0_enable;
45#if ENABLE_AMU_AUXILIARY_COUNTERS
46 uint16_t group1_enable;
47#endif
48};
49
50static struct amu_ctx amu_ctxs_[PLATFORM_CORE_COUNT];
51
52CASSERT((sizeof(amu_ctxs_[0].group0_enable) * CHAR_BIT) <= AMU_GROUP0_MAX_COUNTERS,
53 amu_ctx_group0_enable_cannot_represent_all_group0_counters);
54
55#if ENABLE_AMU_AUXILIARY_COUNTERS
56CASSERT((sizeof(amu_ctxs_[0].group1_enable) * CHAR_BIT) <= AMU_GROUP1_MAX_COUNTERS,
57 amu_ctx_group1_enable_cannot_represent_all_group1_counters);
58#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +000059
Chris Kaya5fde282021-05-26 11:58:23 +010060static inline __unused uint64_t read_hcr_el2_amvoffen(void)
61{
62 return (read_hcr_el2() & HCR_AMVOFFEN_BIT) >>
63 HCR_AMVOFFEN_SHIFT;
64}
65
66static inline __unused void write_cptr_el2_tam(uint64_t value)
67{
68 write_cptr_el2((read_cptr_el2() & ~CPTR_EL2_TAM_BIT) |
69 ((value << CPTR_EL2_TAM_SHIFT) & CPTR_EL2_TAM_BIT));
70}
71
John Powellcc799272022-03-29 00:25:59 -050072static inline __unused void ctx_write_cptr_el3_tam(cpu_context_t *ctx, uint64_t tam)
Chris Kaya5fde282021-05-26 11:58:23 +010073{
74 uint64_t value = read_ctx_reg(get_el3state_ctx(ctx), CTX_CPTR_EL3);
75
76 value &= ~TAM_BIT;
77 value |= (tam << TAM_SHIFT) & TAM_BIT;
78
79 write_ctx_reg(get_el3state_ctx(ctx), CTX_CPTR_EL3, value);
80}
81
John Powellcc799272022-03-29 00:25:59 -050082static inline __unused void ctx_write_scr_el3_amvoffen(cpu_context_t *ctx, uint64_t amvoffen)
83{
84 uint64_t value = read_ctx_reg(get_el3state_ctx(ctx), CTX_SCR_EL3);
85
86 value &= ~SCR_AMVOFFEN_BIT;
87 value |= (amvoffen << SCR_AMVOFFEN_SHIFT) & SCR_AMVOFFEN_BIT;
88
89 write_ctx_reg(get_el3state_ctx(ctx), CTX_SCR_EL3, value);
90}
91
Chris Kaya5fde282021-05-26 11:58:23 +010092static inline __unused void write_hcr_el2_amvoffen(uint64_t value)
93{
94 write_hcr_el2((read_hcr_el2() & ~HCR_AMVOFFEN_BIT) |
95 ((value << HCR_AMVOFFEN_SHIFT) & HCR_AMVOFFEN_BIT));
96}
97
98static inline __unused void write_amcr_el0_cg1rz(uint64_t value)
99{
100 write_amcr_el0((read_amcr_el0() & ~AMCR_CG1RZ_BIT) |
101 ((value << AMCR_CG1RZ_SHIFT) & AMCR_CG1RZ_BIT));
102}
103
104static inline __unused uint64_t read_amcfgr_el0_ncg(void)
105{
106 return (read_amcfgr_el0() >> AMCFGR_EL0_NCG_SHIFT) &
107 AMCFGR_EL0_NCG_MASK;
108}
109
Chris Kay26a79612021-05-24 20:35:26 +0100110static inline __unused uint64_t read_amcgcr_el0_cg0nc(void)
Chris Kaya40141d2021-05-25 12:33:18 +0100111{
112 return (read_amcgcr_el0() >> AMCGCR_EL0_CG0NC_SHIFT) &
113 AMCGCR_EL0_CG0NC_MASK;
114}
115
Chris Kaya5fde282021-05-26 11:58:23 +0100116static inline __unused uint64_t read_amcg1idr_el0_voff(void)
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100117{
Chris Kaya5fde282021-05-26 11:58:23 +0100118 return (read_amcg1idr_el0() >> AMCG1IDR_VOFF_SHIFT) &
119 AMCG1IDR_VOFF_MASK;
120}
121
122static inline __unused uint64_t read_amcgcr_el0_cg1nc(void)
123{
124 return (read_amcgcr_el0() >> AMCGCR_EL0_CG1NC_SHIFT) &
125 AMCGCR_EL0_CG1NC_MASK;
126}
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100127
Chris Kaya5fde282021-05-26 11:58:23 +0100128static inline __unused uint64_t read_amcntenset0_el0_px(void)
129{
130 return (read_amcntenset0_el0() >> AMCNTENSET0_EL0_Pn_SHIFT) &
131 AMCNTENSET0_EL0_Pn_MASK;
132}
133
134static inline __unused uint64_t read_amcntenset1_el0_px(void)
135{
136 return (read_amcntenset1_el0() >> AMCNTENSET1_EL0_Pn_SHIFT) &
137 AMCNTENSET1_EL0_Pn_MASK;
138}
139
140static inline __unused void write_amcntenset0_el0_px(uint64_t px)
141{
142 uint64_t value = read_amcntenset0_el0();
143
144 value &= ~AMCNTENSET0_EL0_Pn_MASK;
145 value |= (px << AMCNTENSET0_EL0_Pn_SHIFT) & AMCNTENSET0_EL0_Pn_MASK;
146
147 write_amcntenset0_el0(value);
148}
149
150static inline __unused void write_amcntenset1_el0_px(uint64_t px)
151{
152 uint64_t value = read_amcntenset1_el0();
153
154 value &= ~AMCNTENSET1_EL0_Pn_MASK;
155 value |= (px << AMCNTENSET1_EL0_Pn_SHIFT) & AMCNTENSET1_EL0_Pn_MASK;
156
157 write_amcntenset1_el0(value);
158}
159
160static inline __unused void write_amcntenclr0_el0_px(uint64_t px)
161{
162 uint64_t value = read_amcntenclr0_el0();
163
164 value &= ~AMCNTENCLR0_EL0_Pn_MASK;
165 value |= (px << AMCNTENCLR0_EL0_Pn_SHIFT) & AMCNTENCLR0_EL0_Pn_MASK;
166
167 write_amcntenclr0_el0(value);
168}
169
170static inline __unused void write_amcntenclr1_el0_px(uint64_t px)
171{
172 uint64_t value = read_amcntenclr1_el0();
173
174 value &= ~AMCNTENCLR1_EL0_Pn_MASK;
175 value |= (px << AMCNTENCLR1_EL0_Pn_SHIFT) & AMCNTENCLR1_EL0_Pn_MASK;
176
177 write_amcntenclr1_el0(value);
178}
179
Chris Kaya5fde282021-05-26 11:58:23 +0100180#if ENABLE_AMU_AUXILIARY_COUNTERS
Chris Kay26a79612021-05-24 20:35:26 +0100181static __unused bool amu_group1_supported(void)
Chris Kaya5fde282021-05-26 11:58:23 +0100182{
183 return read_amcfgr_el0_ncg() > 0U;
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000184}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100185#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000186
187/*
Chris Kay26a79612021-05-24 20:35:26 +0100188 * Enable counters. This function is meant to be invoked by the context
189 * management library before exiting from EL3.
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000190 */
Arunachalam Ganapathycac7d162021-07-08 09:35:57 +0100191void amu_enable(bool el2_unused, cpu_context_t *ctx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000192{
Chris Kay26a79612021-05-24 20:35:26 +0100193 uint64_t amcfgr_el0_ncg; /* Number of counter groups */
194 uint64_t amcgcr_el0_cg0nc; /* Number of group 0 counters */
195
196 uint64_t amcntenset0_el0_px = 0x0; /* Group 0 enable mask */
197 uint64_t amcntenset1_el0_px = 0x0; /* Group 1 enable mask */
198
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000199 if (el2_unused) {
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100200 /*
Chris Kay26a79612021-05-24 20:35:26 +0100201 * CPTR_EL2.TAM: Set to zero so any accesses to the Activity
202 * Monitor registers do not trap to EL2.
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100203 */
Chris Kaya5fde282021-05-26 11:58:23 +0100204 write_cptr_el2_tam(0U);
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100205 }
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000206
207 /*
Arunachalam Ganapathycac7d162021-07-08 09:35:57 +0100208 * Retrieve and update the CPTR_EL3 value from the context mentioned
209 * in 'ctx'. Set CPTR_EL3.TAM to zero so that any accesses to
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000210 * the Activity Monitor registers do not trap to EL3.
211 */
John Powellcc799272022-03-29 00:25:59 -0500212 ctx_write_cptr_el3_tam(ctx, 0U);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000213
Chris Kay26a79612021-05-24 20:35:26 +0100214 /*
215 * Retrieve the number of architected counters. All of these counters
216 * are enabled by default.
217 */
218
219 amcgcr_el0_cg0nc = read_amcgcr_el0_cg0nc();
220 amcntenset0_el0_px = (UINT64_C(1) << (amcgcr_el0_cg0nc)) - 1U;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100221
Chris Kay26a79612021-05-24 20:35:26 +0100222 assert(amcgcr_el0_cg0nc <= AMU_AMCGCR_CG0NC_MAX);
223
224 /*
Chris Kayf11909f2021-08-19 11:21:52 +0100225 * The platform may opt to enable specific auxiliary counters. This can
226 * be done via the common FCONF getter, or via the platform-implemented
227 * function.
228 */
229
230#if ENABLE_AMU_AUXILIARY_COUNTERS
231 const struct amu_topology *topology;
232
233#if ENABLE_AMU_FCONF
234 topology = FCONF_GET_PROPERTY(amu, config, topology);
235#else
236 topology = plat_amu_topology();
237#endif /* ENABLE_AMU_FCONF */
238
239 if (topology != NULL) {
240 unsigned int core_pos = plat_my_core_pos();
241
242 amcntenset1_el0_px = topology->cores[core_pos].enable;
243 } else {
244 ERROR("AMU: failed to generate AMU topology\n");
245 }
246#endif /* ENABLE_AMU_AUXILIARY_COUNTERS */
247
248 /*
Chris Kay26a79612021-05-24 20:35:26 +0100249 * Enable the requested counters.
250 */
251
252 write_amcntenset0_el0_px(amcntenset0_el0_px);
253
254 amcfgr_el0_ncg = read_amcfgr_el0_ncg();
255 if (amcfgr_el0_ncg > 0U) {
256 write_amcntenset1_el0_px(amcntenset1_el0_px);
Chris Kayf11909f2021-08-19 11:21:52 +0100257
258#if !ENABLE_AMU_AUXILIARY_COUNTERS
259 VERBOSE("AMU: auxiliary counters detected but support is disabled\n");
260#endif
Chris Kay925fda42021-05-25 10:42:56 +0100261 }
johpow01fa59c6f2020-10-02 13:41:11 -0500262
263 /* Initialize FEAT_AMUv1p1 features if present. */
Andre Przywara906776e2023-03-03 10:30:06 +0000264 if (is_feat_amuv1p1_supported()) {
Chris Kay03be39d2021-05-05 13:38:30 +0100265 if (el2_unused) {
266 /*
267 * Make sure virtual offsets are disabled if EL2 not
268 * used.
269 */
270 write_hcr_el2_amvoffen(0U);
John Powellcc799272022-03-29 00:25:59 -0500271 } else {
272 /*
273 * Virtual offset registers are only accessible from EL3
274 * and EL2, when clear, this bit traps accesses from EL2
275 * so we set it to 1 when EL2 is present.
276 */
277 ctx_write_scr_el3_amvoffen(ctx, 1U);
Chris Kay03be39d2021-05-05 13:38:30 +0100278 }
johpow01fa59c6f2020-10-02 13:41:11 -0500279
280#if AMU_RESTRICT_COUNTERS
Chris Kay03be39d2021-05-05 13:38:30 +0100281 /*
282 * FEAT_AMUv1p1 adds a register field to restrict access to
283 * group 1 counters at all but the highest implemented EL. This
284 * is controlled with the `AMU_RESTRICT_COUNTERS` compile time
285 * flag, when set, system register reads at lower ELs return
286 * zero. Reads from the memory mapped view are unaffected.
287 */
288 VERBOSE("AMU group 1 counter access restricted.\n");
289 write_amcr_el0_cg1rz(1U);
johpow01fa59c6f2020-10-02 13:41:11 -0500290#else
Chris Kay03be39d2021-05-05 13:38:30 +0100291 write_amcr_el0_cg1rz(0U);
292#endif
293 }
294
295#if ENABLE_MPMM
296 mpmm_enable();
johpow01fa59c6f2020-10-02 13:41:11 -0500297#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000298}
299
300/* Read the group 0 counter identified by the given `idx`. */
Chris Kayf13c6b52021-05-24 21:00:07 +0100301static uint64_t amu_group0_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000302{
Andre Przywara906776e2023-03-03 10:30:06 +0000303 assert(is_feat_amu_supported());
Chris Kaya40141d2021-05-25 12:33:18 +0100304 assert(idx < read_amcgcr_el0_cg0nc());
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000305
306 return amu_group0_cnt_read_internal(idx);
307}
308
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100309/* Write the group 0 counter identified by the given `idx` with `val` */
Chris Kayf13c6b52021-05-24 21:00:07 +0100310static void amu_group0_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000311{
Andre Przywara906776e2023-03-03 10:30:06 +0000312 assert(is_feat_amu_supported());
Chris Kaya40141d2021-05-25 12:33:18 +0100313 assert(idx < read_amcgcr_el0_cg0nc());
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000314
315 amu_group0_cnt_write_internal(idx, val);
316 isb();
317}
318
johpow01fa59c6f2020-10-02 13:41:11 -0500319/*
Chris Kay26a79612021-05-24 20:35:26 +0100320 * Unlike with auxiliary counters, we cannot detect at runtime whether an
321 * architected counter supports a virtual offset. These are instead fixed
322 * according to FEAT_AMUv1p1, but this switch will need to be updated if later
323 * revisions of FEAT_AMU add additional architected counters.
324 */
325static bool amu_group0_voffset_supported(uint64_t idx)
326{
327 switch (idx) {
328 case 0U:
329 case 2U:
330 case 3U:
331 return true;
332
333 case 1U:
334 return false;
335
336 default:
337 ERROR("AMU: can't set up virtual offset for unknown "
Scott Brandene5dcf982020-08-25 13:49:32 -0700338 "architected counter %" PRIu64 "!\n", idx);
Chris Kay26a79612021-05-24 20:35:26 +0100339
340 panic();
341 }
342}
343
344/*
johpow01fa59c6f2020-10-02 13:41:11 -0500345 * Read the group 0 offset register for a given index. Index must be 0, 2,
346 * or 3, the register for 1 does not exist.
347 *
348 * Using this function requires FEAT_AMUv1p1 support.
349 */
Chris Kayf13c6b52021-05-24 21:00:07 +0100350static uint64_t amu_group0_voffset_read(unsigned int idx)
johpow01fa59c6f2020-10-02 13:41:11 -0500351{
Andre Przywara906776e2023-03-03 10:30:06 +0000352 assert(is_feat_amuv1p1_supported());
Chris Kaya40141d2021-05-25 12:33:18 +0100353 assert(idx < read_amcgcr_el0_cg0nc());
johpow01fa59c6f2020-10-02 13:41:11 -0500354 assert(idx != 1U);
355
356 return amu_group0_voffset_read_internal(idx);
357}
358
359/*
360 * Write the group 0 offset register for a given index. Index must be 0, 2, or
361 * 3, the register for 1 does not exist.
362 *
363 * Using this function requires FEAT_AMUv1p1 support.
364 */
Chris Kayf13c6b52021-05-24 21:00:07 +0100365static void amu_group0_voffset_write(unsigned int idx, uint64_t val)
johpow01fa59c6f2020-10-02 13:41:11 -0500366{
Andre Przywara906776e2023-03-03 10:30:06 +0000367 assert(is_feat_amuv1p1_supported());
Chris Kaya40141d2021-05-25 12:33:18 +0100368 assert(idx < read_amcgcr_el0_cg0nc());
johpow01fa59c6f2020-10-02 13:41:11 -0500369 assert(idx != 1U);
370
371 amu_group0_voffset_write_internal(idx, val);
372 isb();
373}
374
Chris Kay925fda42021-05-25 10:42:56 +0100375#if ENABLE_AMU_AUXILIARY_COUNTERS
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100376/* Read the group 1 counter identified by the given `idx` */
Chris Kayf13c6b52021-05-24 21:00:07 +0100377static uint64_t amu_group1_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000378{
Andre Przywara906776e2023-03-03 10:30:06 +0000379 assert(is_feat_amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100380 assert(amu_group1_supported());
Chris Kayda819142021-05-25 15:24:18 +0100381 assert(idx < read_amcgcr_el0_cg1nc());
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000382
383 return amu_group1_cnt_read_internal(idx);
384}
385
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100386/* Write the group 1 counter identified by the given `idx` with `val` */
Chris Kayf13c6b52021-05-24 21:00:07 +0100387static void amu_group1_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000388{
Andre Przywara906776e2023-03-03 10:30:06 +0000389 assert(is_feat_amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100390 assert(amu_group1_supported());
Chris Kayda819142021-05-25 15:24:18 +0100391 assert(idx < read_amcgcr_el0_cg1nc());
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000392
393 amu_group1_cnt_write_internal(idx, val);
394 isb();
395}
396
397/*
johpow01fa59c6f2020-10-02 13:41:11 -0500398 * Read the group 1 offset register for a given index.
399 *
400 * Using this function requires FEAT_AMUv1p1 support.
401 */
Chris Kayf13c6b52021-05-24 21:00:07 +0100402static uint64_t amu_group1_voffset_read(unsigned int idx)
johpow01fa59c6f2020-10-02 13:41:11 -0500403{
Andre Przywara906776e2023-03-03 10:30:06 +0000404 assert(is_feat_amuv1p1_supported());
johpow01fa59c6f2020-10-02 13:41:11 -0500405 assert(amu_group1_supported());
Chris Kayda819142021-05-25 15:24:18 +0100406 assert(idx < read_amcgcr_el0_cg1nc());
Chris Kaya5fde282021-05-26 11:58:23 +0100407 assert((read_amcg1idr_el0_voff() & (UINT64_C(1) << idx)) != 0U);
johpow01fa59c6f2020-10-02 13:41:11 -0500408
409 return amu_group1_voffset_read_internal(idx);
410}
411
412/*
413 * Write the group 1 offset register for a given index.
414 *
415 * Using this function requires FEAT_AMUv1p1 support.
416 */
Chris Kayf13c6b52021-05-24 21:00:07 +0100417static void amu_group1_voffset_write(unsigned int idx, uint64_t val)
johpow01fa59c6f2020-10-02 13:41:11 -0500418{
Andre Przywara906776e2023-03-03 10:30:06 +0000419 assert(is_feat_amuv1p1_supported());
johpow01fa59c6f2020-10-02 13:41:11 -0500420 assert(amu_group1_supported());
Chris Kayda819142021-05-25 15:24:18 +0100421 assert(idx < read_amcgcr_el0_cg1nc());
Chris Kaya5fde282021-05-26 11:58:23 +0100422 assert((read_amcg1idr_el0_voff() & (UINT64_C(1) << idx)) != 0U);
johpow01fa59c6f2020-10-02 13:41:11 -0500423
424 amu_group1_voffset_write_internal(idx, val);
425 isb();
426}
Chris Kay925fda42021-05-25 10:42:56 +0100427#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000428
429static void *amu_context_save(const void *arg)
430{
Chris Kay26a79612021-05-24 20:35:26 +0100431 uint64_t i, j;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000432
Chris Kay26a79612021-05-24 20:35:26 +0100433 unsigned int core_pos;
434 struct amu_ctx *ctx;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000435
Andre Przywara906776e2023-03-03 10:30:06 +0000436 uint64_t hcr_el2_amvoffen = 0; /* AMU virtual offsets enabled */
Chris Kay26a79612021-05-24 20:35:26 +0100437 uint64_t amcgcr_el0_cg0nc; /* Number of group 0 counters */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000438
Chris Kay925fda42021-05-25 10:42:56 +0100439#if ENABLE_AMU_AUXILIARY_COUNTERS
Chris Kay26a79612021-05-24 20:35:26 +0100440 uint64_t amcg1idr_el0_voff; /* Auxiliary counters with virtual offsets */
441 uint64_t amcfgr_el0_ncg; /* Number of counter groups */
442 uint64_t amcgcr_el0_cg1nc; /* Number of group 1 counters */
443#endif
444
Andre Przywara906776e2023-03-03 10:30:06 +0000445 if (!is_feat_amu_supported()) {
Chris Kay26a79612021-05-24 20:35:26 +0100446 return (void *)0;
Chris Kay925fda42021-05-25 10:42:56 +0100447 }
Chris Kay26a79612021-05-24 20:35:26 +0100448
449 core_pos = plat_my_core_pos();
450 ctx = &amu_ctxs_[core_pos];
451
452 amcgcr_el0_cg0nc = read_amcgcr_el0_cg0nc();
Andre Przywara906776e2023-03-03 10:30:06 +0000453 if (is_feat_amuv1p1_supported()) {
454 hcr_el2_amvoffen = read_hcr_el2_amvoffen();
455 }
Chris Kay26a79612021-05-24 20:35:26 +0100456
457#if ENABLE_AMU_AUXILIARY_COUNTERS
458 amcfgr_el0_ncg = read_amcfgr_el0_ncg();
459 amcgcr_el0_cg1nc = (amcfgr_el0_ncg > 0U) ? read_amcgcr_el0_cg1nc() : 0U;
460 amcg1idr_el0_voff = (hcr_el2_amvoffen != 0U) ? read_amcg1idr_el0_voff() : 0U;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100461#endif
Chris Kay925fda42021-05-25 10:42:56 +0100462
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000463 /*
Chris Kay26a79612021-05-24 20:35:26 +0100464 * Disable all AMU counters.
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000465 */
Chris Kay26a79612021-05-24 20:35:26 +0100466
467 ctx->group0_enable = read_amcntenset0_el0_px();
468 write_amcntenclr0_el0_px(ctx->group0_enable);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100469
Chris Kay925fda42021-05-25 10:42:56 +0100470#if ENABLE_AMU_AUXILIARY_COUNTERS
Chris Kay26a79612021-05-24 20:35:26 +0100471 if (amcfgr_el0_ncg > 0U) {
472 ctx->group1_enable = read_amcntenset1_el0_px();
473 write_amcntenclr1_el0_px(ctx->group1_enable);
Chris Kay925fda42021-05-25 10:42:56 +0100474 }
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100475#endif
Chris Kay925fda42021-05-25 10:42:56 +0100476
Chris Kay26a79612021-05-24 20:35:26 +0100477 /*
478 * Save the counters to the local context.
479 */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000480
Chris Kay26a79612021-05-24 20:35:26 +0100481 isb(); /* Ensure counters have been stopped */
482
483 for (i = 0U; i < amcgcr_el0_cg0nc; i++) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000484 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100485 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000486
Chris Kay26a79612021-05-24 20:35:26 +0100487#if ENABLE_AMU_AUXILIARY_COUNTERS
488 for (i = 0U; i < amcgcr_el0_cg1nc; i++) {
489 ctx->group1_cnts[i] = amu_group1_cnt_read(i);
johpow01fa59c6f2020-10-02 13:41:11 -0500490 }
Chris Kay26a79612021-05-24 20:35:26 +0100491#endif
johpow01fa59c6f2020-10-02 13:41:11 -0500492
Chris Kay26a79612021-05-24 20:35:26 +0100493 /*
494 * Save virtual offsets for counters that offer them.
495 */
496
497 if (hcr_el2_amvoffen != 0U) {
498 for (i = 0U, j = 0U; i < amcgcr_el0_cg0nc; i++) {
499 if (!amu_group0_voffset_supported(i)) {
500 continue; /* No virtual offset */
Chris Kay925fda42021-05-25 10:42:56 +0100501 }
johpow01fa59c6f2020-10-02 13:41:11 -0500502
Chris Kay26a79612021-05-24 20:35:26 +0100503 ctx->group0_voffsets[j++] = amu_group0_voffset_read(i);
504 }
johpow01fa59c6f2020-10-02 13:41:11 -0500505
Chris Kay26a79612021-05-24 20:35:26 +0100506#if ENABLE_AMU_AUXILIARY_COUNTERS
507 for (i = 0U, j = 0U; i < amcgcr_el0_cg1nc; i++) {
508 if ((amcg1idr_el0_voff >> i) & 1U) {
509 continue; /* No virtual offset */
johpow01fa59c6f2020-10-02 13:41:11 -0500510 }
Chris Kay26a79612021-05-24 20:35:26 +0100511
512 ctx->group1_voffsets[j++] = amu_group1_voffset_read(i);
johpow01fa59c6f2020-10-02 13:41:11 -0500513 }
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100514#endif
Chris Kay26a79612021-05-24 20:35:26 +0100515 }
Chris Kay925fda42021-05-25 10:42:56 +0100516
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100517 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000518}
519
520static void *amu_context_restore(const void *arg)
521{
Chris Kay26a79612021-05-24 20:35:26 +0100522 uint64_t i, j;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000523
Chris Kay26a79612021-05-24 20:35:26 +0100524 unsigned int core_pos;
525 struct amu_ctx *ctx;
526
Andre Przywara906776e2023-03-03 10:30:06 +0000527 uint64_t hcr_el2_amvoffen = 0; /* AMU virtual offsets enabled */
Chris Kay26a79612021-05-24 20:35:26 +0100528
529 uint64_t amcfgr_el0_ncg; /* Number of counter groups */
530 uint64_t amcgcr_el0_cg0nc; /* Number of group 0 counters */
531
532#if ENABLE_AMU_AUXILIARY_COUNTERS
533 uint64_t amcgcr_el0_cg1nc; /* Number of group 1 counters */
534 uint64_t amcg1idr_el0_voff; /* Auxiliary counters with virtual offsets */
535#endif
536
Andre Przywara906776e2023-03-03 10:30:06 +0000537 if (!is_feat_amu_supported()) {
Chris Kay26a79612021-05-24 20:35:26 +0100538 return (void *)0;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100539 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000540
Chris Kay26a79612021-05-24 20:35:26 +0100541 core_pos = plat_my_core_pos();
542 ctx = &amu_ctxs_[core_pos];
543
544 amcfgr_el0_ncg = read_amcfgr_el0_ncg();
545 amcgcr_el0_cg0nc = read_amcgcr_el0_cg0nc();
546
Andre Przywara906776e2023-03-03 10:30:06 +0000547 if (is_feat_amuv1p1_supported()) {
548 hcr_el2_amvoffen = read_hcr_el2_amvoffen();
549 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000550
Chris Kay925fda42021-05-25 10:42:56 +0100551#if ENABLE_AMU_AUXILIARY_COUNTERS
Chris Kay26a79612021-05-24 20:35:26 +0100552 amcgcr_el0_cg1nc = (amcfgr_el0_ncg > 0U) ? read_amcgcr_el0_cg1nc() : 0U;
553 amcg1idr_el0_voff = (hcr_el2_amvoffen != 0U) ? read_amcg1idr_el0_voff() : 0U;
554#endif
555
556 /*
557 * Sanity check that all counters were disabled when the context was
558 * previously saved.
559 */
560
561 assert(read_amcntenset0_el0_px() == 0U);
562
563 if (amcfgr_el0_ncg > 0U) {
Chris Kay925fda42021-05-25 10:42:56 +0100564 assert(read_amcntenset1_el0_px() == 0U);
565 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000566
Chris Kay26a79612021-05-24 20:35:26 +0100567 /*
568 * Restore the counter values from the local context.
569 */
570
571 for (i = 0U; i < amcgcr_el0_cg0nc; i++) {
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100572 amu_group0_cnt_write(i, ctx->group0_cnts[i]);
573 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000574
Chris Kay26a79612021-05-24 20:35:26 +0100575#if ENABLE_AMU_AUXILIARY_COUNTERS
576 for (i = 0U; i < amcgcr_el0_cg1nc; i++) {
577 amu_group1_cnt_write(i, ctx->group1_cnts[i]);
johpow01fa59c6f2020-10-02 13:41:11 -0500578 }
Chris Kay26a79612021-05-24 20:35:26 +0100579#endif
johpow01fa59c6f2020-10-02 13:41:11 -0500580
Chris Kay26a79612021-05-24 20:35:26 +0100581 /*
582 * Restore virtual offsets for counters that offer them.
583 */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100584
Chris Kay26a79612021-05-24 20:35:26 +0100585 if (hcr_el2_amvoffen != 0U) {
586 for (i = 0U, j = 0U; i < amcgcr_el0_cg0nc; i++) {
587 if (!amu_group0_voffset_supported(i)) {
588 continue; /* No virtual offset */
Chris Kay925fda42021-05-25 10:42:56 +0100589 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000590
Chris Kay26a79612021-05-24 20:35:26 +0100591 amu_group0_voffset_write(i, ctx->group0_voffsets[j++]);
592 }
johpow01fa59c6f2020-10-02 13:41:11 -0500593
Chris Kay26a79612021-05-24 20:35:26 +0100594#if ENABLE_AMU_AUXILIARY_COUNTERS
595 for (i = 0U, j = 0U; i < amcgcr_el0_cg1nc; i++) {
596 if ((amcg1idr_el0_voff >> i) & 1U) {
597 continue; /* No virtual offset */
johpow01fa59c6f2020-10-02 13:41:11 -0500598 }
Chris Kay26a79612021-05-24 20:35:26 +0100599
600 amu_group1_voffset_write(i, ctx->group1_voffsets[j++]);
johpow01fa59c6f2020-10-02 13:41:11 -0500601 }
Chris Kay26a79612021-05-24 20:35:26 +0100602#endif
603 }
604
605 /*
606 * Re-enable counters that were disabled during context save.
607 */
608
609 write_amcntenset0_el0_px(ctx->group0_enable);
johpow01fa59c6f2020-10-02 13:41:11 -0500610
Chris Kay26a79612021-05-24 20:35:26 +0100611#if ENABLE_AMU_AUXILIARY_COUNTERS
612 if (amcfgr_el0_ncg > 0) {
613 write_amcntenset1_el0_px(ctx->group1_enable);
Chris Kay925fda42021-05-25 10:42:56 +0100614 }
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100615#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000616
Chris Kay03be39d2021-05-05 13:38:30 +0100617#if ENABLE_MPMM
618 mpmm_enable();
619#endif
620
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100621 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000622}
623
624SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save);
625SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore);