blob: 24c3737b7fb2a1941a9d85612f2ed26d4c321fae [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>
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +01008#include <stdbool.h>
Dimitris Papastamose08005a2017-10-12 13:02:29 +01009
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <arch.h>
johpow01fa59c6f2020-10-02 13:41:11 -050011#include <arch_features.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <arch_helpers.h>
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010013
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <lib/el3_runtime/pubsub_events.h>
15#include <lib/extensions/amu.h>
16#include <lib/extensions/amu_private.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010018#include <plat/common/platform.h>
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +000019
20static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT];
21
johpow01fa59c6f2020-10-02 13:41:11 -050022/*
23 * Get AMU version value from aa64pfr0.
24 * Return values
25 * ID_AA64PFR0_AMU_V1: FEAT_AMUv1 supported (introduced in ARM v8.4)
26 * ID_AA64PFR0_AMU_V1P1: FEAT_AMUv1p1 supported (introduced in ARM v8.6)
27 * ID_AA64PFR0_AMU_NOT_SUPPORTED: not supported
28 */
29unsigned int amu_get_version(void)
Dimitris Papastamose08005a2017-10-12 13:02:29 +010030{
johpow01fa59c6f2020-10-02 13:41:11 -050031 return (unsigned int)(read_id_aa64pfr0_el1() >> ID_AA64PFR0_AMU_SHIFT) &
32 ID_AA64PFR0_AMU_MASK;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010033}
34
35#if AMU_GROUP1_NR_COUNTERS
36/* Check if group 1 counters is implemented */
37bool amu_group1_supported(void)
38{
39 uint64_t features = read_amcfgr_el0() >> AMCFGR_EL0_NCG_SHIFT;
Dimitris Papastamose08005a2017-10-12 13:02:29 +010040
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010041 return (features & AMCFGR_EL0_NCG_MASK) == 1U;
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000042}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010043#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000044
45/*
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010046 * Enable counters. This function is meant to be invoked
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000047 * by the context management library before exiting from EL3.
48 */
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010049void amu_enable(bool el2_unused)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000050{
51 uint64_t v;
johpow01fa59c6f2020-10-02 13:41:11 -050052 unsigned int amu_version = amu_get_version();
Dimitris Papastamose08005a2017-10-12 13:02:29 +010053
johpow01fa59c6f2020-10-02 13:41:11 -050054 if (amu_version == ID_AA64PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000055 return;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010056 }
57
58#if AMU_GROUP1_NR_COUNTERS
59 /* Check and set presence of group 1 counters */
60 if (!amu_group1_supported()) {
61 ERROR("AMU Counter Group 1 is not implemented\n");
62 panic();
63 }
64
65 /* Check number of group 1 counters */
66 uint64_t cnt_num = (read_amcgcr_el0() >> AMCGCR_EL0_CG1NC_SHIFT) &
67 AMCGCR_EL0_CG1NC_MASK;
68 VERBOSE("%s%llu. %s%u\n",
69 "Number of AMU Group 1 Counters ", cnt_num,
70 "Requested number ", AMU_GROUP1_NR_COUNTERS);
71
72 if (cnt_num < AMU_GROUP1_NR_COUNTERS) {
73 ERROR("%s%llu is less than %s%u\n",
74 "Number of AMU Group 1 Counters ", cnt_num,
75 "Requested number ", AMU_GROUP1_NR_COUNTERS);
76 panic();
77 }
78#endif
Dimitris Papastamose08005a2017-10-12 13:02:29 +010079
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000080 if (el2_unused) {
Dimitris Papastamose08005a2017-10-12 13:02:29 +010081 /*
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000082 * CPTR_EL2.TAM: Set to zero so any accesses to
83 * the Activity Monitor registers do not trap to EL2.
Dimitris Papastamose08005a2017-10-12 13:02:29 +010084 */
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000085 v = read_cptr_el2();
86 v &= ~CPTR_EL2_TAM_BIT;
87 write_cptr_el2(v);
Dimitris Papastamose08005a2017-10-12 13:02:29 +010088 }
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000089
90 /*
91 * CPTR_EL3.TAM: Set to zero so that any accesses to
92 * the Activity Monitor registers do not trap to EL3.
93 */
94 v = read_cptr_el3();
95 v &= ~TAM_BIT;
96 write_cptr_el3(v);
97
98 /* Enable group 0 counters */
99 write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100100
101#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000102 /* Enable group 1 counters */
103 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100104#endif
johpow01fa59c6f2020-10-02 13:41:11 -0500105
106 /* Initialize FEAT_AMUv1p1 features if present. */
107 if (amu_version < ID_AA64PFR0_AMU_V1P1) {
108 return;
109 }
110
111 if (el2_unused) {
112 /* Make sure virtual offsets are disabled if EL2 not used. */
113 write_hcr_el2(read_hcr_el2() & ~HCR_AMVOFFEN_BIT);
114 }
115
116#if AMU_RESTRICT_COUNTERS
117 /*
118 * FEAT_AMUv1p1 adds a register field to restrict access to group 1
119 * counters at all but the highest implemented EL. This is controlled
120 * with the AMU_RESTRICT_COUNTERS compile time flag, when set, system
121 * register reads at lower ELs return zero. Reads from the memory
122 * mapped view are unaffected.
123 */
124 VERBOSE("AMU group 1 counter access restricted.\n");
125 write_amcr_el0(read_amcr_el0() | AMCR_CG1RZ_BIT);
126#else
127 write_amcr_el0(read_amcr_el0() & ~AMCR_CG1RZ_BIT);
128#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000129}
130
131/* Read the group 0 counter identified by the given `idx`. */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100132uint64_t amu_group0_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000133{
johpow01fa59c6f2020-10-02 13:41:11 -0500134 assert(amu_get_version() != ID_AA64PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100135 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000136
137 return amu_group0_cnt_read_internal(idx);
138}
139
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100140/* Write the group 0 counter identified by the given `idx` with `val` */
141void amu_group0_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000142{
johpow01fa59c6f2020-10-02 13:41:11 -0500143 assert(amu_get_version() != ID_AA64PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100144 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000145
146 amu_group0_cnt_write_internal(idx, val);
147 isb();
148}
149
johpow01fa59c6f2020-10-02 13:41:11 -0500150/*
151 * Read the group 0 offset register for a given index. Index must be 0, 2,
152 * or 3, the register for 1 does not exist.
153 *
154 * Using this function requires FEAT_AMUv1p1 support.
155 */
156uint64_t amu_group0_voffset_read(unsigned int idx)
157{
158 assert(amu_get_version() >= ID_AA64PFR0_AMU_V1P1);
159 assert(idx < AMU_GROUP0_NR_COUNTERS);
160 assert(idx != 1U);
161
162 return amu_group0_voffset_read_internal(idx);
163}
164
165/*
166 * Write the group 0 offset register for a given index. Index must be 0, 2, or
167 * 3, the register for 1 does not exist.
168 *
169 * Using this function requires FEAT_AMUv1p1 support.
170 */
171void amu_group0_voffset_write(unsigned int idx, uint64_t val)
172{
173 assert(amu_get_version() >= ID_AA64PFR0_AMU_V1P1);
174 assert(idx < AMU_GROUP0_NR_COUNTERS);
175 assert(idx != 1U);
176
177 amu_group0_voffset_write_internal(idx, val);
178 isb();
179}
180
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100181#if AMU_GROUP1_NR_COUNTERS
182/* Read the group 1 counter identified by the given `idx` */
johpow01fa59c6f2020-10-02 13:41:11 -0500183uint64_t amu_group1_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000184{
johpow01fa59c6f2020-10-02 13:41:11 -0500185 assert(amu_get_version() != ID_AA64PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100186 assert(amu_group1_supported());
187 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000188
189 return amu_group1_cnt_read_internal(idx);
190}
191
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100192/* Write the group 1 counter identified by the given `idx` with `val` */
johpow01fa59c6f2020-10-02 13:41:11 -0500193void amu_group1_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000194{
johpow01fa59c6f2020-10-02 13:41:11 -0500195 assert(amu_get_version() != ID_AA64PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100196 assert(amu_group1_supported());
197 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000198
199 amu_group1_cnt_write_internal(idx, val);
200 isb();
201}
202
203/*
johpow01fa59c6f2020-10-02 13:41:11 -0500204 * Read the group 1 offset register for a given index.
205 *
206 * Using this function requires FEAT_AMUv1p1 support.
207 */
208uint64_t amu_group1_voffset_read(unsigned int idx)
209{
210 assert(amu_get_version() >= ID_AA64PFR0_AMU_V1P1);
211 assert(amu_group1_supported());
212 assert(idx < AMU_GROUP1_NR_COUNTERS);
213 assert(((read_amcg1idr_el0() >> AMCG1IDR_VOFF_SHIFT) &
214 (1ULL << idx)) != 0ULL);
215
216 return amu_group1_voffset_read_internal(idx);
217}
218
219/*
220 * Write the group 1 offset register for a given index.
221 *
222 * Using this function requires FEAT_AMUv1p1 support.
223 */
224void amu_group1_voffset_write(unsigned int idx, uint64_t val)
225{
226 assert(amu_get_version() >= ID_AA64PFR0_AMU_V1P1);
227 assert(amu_group1_supported());
228 assert(idx < AMU_GROUP1_NR_COUNTERS);
229 assert(((read_amcg1idr_el0() >> AMCG1IDR_VOFF_SHIFT) &
230 (1ULL << idx)) != 0ULL);
231
232 amu_group1_voffset_write_internal(idx, val);
233 isb();
234}
235
236/*
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000237 * Program the event type register for the given `idx` with
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100238 * the event number `val`
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000239 */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100240void amu_group1_set_evtype(unsigned int idx, unsigned int val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000241{
johpow01fa59c6f2020-10-02 13:41:11 -0500242 assert(amu_get_version() != ID_AA64PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100243 assert(amu_group1_supported());
244 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000245
246 amu_group1_set_evtype_internal(idx, val);
247 isb();
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100248}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100249#endif /* AMU_GROUP1_NR_COUNTERS */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000250
251static void *amu_context_save(const void *arg)
252{
253 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100254 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000255
johpow01fa59c6f2020-10-02 13:41:11 -0500256 if (amu_get_version() == ID_AA64PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000257 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100258 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000259
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100260#if AMU_GROUP1_NR_COUNTERS
261 if (!amu_group1_supported()) {
262 return (void *)-1;
263 }
264#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000265 /* Assert that group 0/1 counter configuration is what we expect */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100266 assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000267
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100268#if AMU_GROUP1_NR_COUNTERS
269 assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
270#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000271 /*
272 * Disable group 0/1 counters to avoid other observers like SCP sampling
273 * counter values from the future via the memory mapped view.
274 */
275 write_amcntenclr0_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100276
277#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000278 write_amcntenclr1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100279#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000280 isb();
281
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100282 /* Save all group 0 counters */
283 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000284 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100285 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000286
johpow01fa59c6f2020-10-02 13:41:11 -0500287 /* Save group 0 virtual offsets if supported and enabled. */
288 if ((amu_get_version() >= ID_AA64PFR0_AMU_V1P1) &&
289 ((read_hcr_el2() & HCR_AMVOFFEN_BIT) != 0ULL)) {
290 /* Not using a loop because count is fixed and index 1 DNE. */
291 ctx->group0_voffsets[0U] = amu_group0_voffset_read(0U);
292 ctx->group0_voffsets[1U] = amu_group0_voffset_read(2U);
293 ctx->group0_voffsets[2U] = amu_group0_voffset_read(3U);
294 }
295
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100296#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000297 /* Save group 1 counters */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100298 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
johpow01fa59c6f2020-10-02 13:41:11 -0500299 if ((AMU_GROUP1_COUNTERS_MASK & (1UL << i)) != 0U) {
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100300 ctx->group1_cnts[i] = amu_group1_cnt_read(i);
301 }
302 }
johpow01fa59c6f2020-10-02 13:41:11 -0500303
304 /* Save group 1 virtual offsets if supported and enabled. */
305 if ((amu_get_version() >= ID_AA64PFR0_AMU_V1P1) &&
306 ((read_hcr_el2() & HCR_AMVOFFEN_BIT) != 0ULL)) {
307 u_register_t amcg1idr = read_amcg1idr_el0() >>
308 AMCG1IDR_VOFF_SHIFT;
309 amcg1idr = amcg1idr & AMU_GROUP1_COUNTERS_MASK;
310
311 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
312 if (((amcg1idr >> i) & 1ULL) != 0ULL) {
313 ctx->group1_voffsets[i] =
314 amu_group1_voffset_read(i);
315 }
316 }
317 }
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100318#endif
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100319 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000320}
321
322static void *amu_context_restore(const void *arg)
323{
324 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100325 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000326
johpow01fa59c6f2020-10-02 13:41:11 -0500327 if (amu_get_version() == ID_AA64PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000328 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100329 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000330
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100331#if AMU_GROUP1_NR_COUNTERS
332 if (!amu_group1_supported()) {
333 return (void *)-1;
334 }
335#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000336 /* Counters were disabled in `amu_context_save()` */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100337 assert(read_amcntenset0_el0() == 0U);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000338
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100339#if AMU_GROUP1_NR_COUNTERS
340 assert(read_amcntenset1_el0() == 0U);
341#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000342
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100343 /* Restore all group 0 counters */
344 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
345 amu_group0_cnt_write(i, ctx->group0_cnts[i]);
346 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000347
johpow01fa59c6f2020-10-02 13:41:11 -0500348 /* Restore group 0 virtual offsets if supported and enabled. */
349 if ((amu_get_version() >= ID_AA64PFR0_AMU_V1P1) &&
350 ((read_hcr_el2() & HCR_AMVOFFEN_BIT) != 0ULL)) {
351 /* Not using a loop because count is fixed and index 1 DNE. */
352 amu_group0_voffset_write(0U, ctx->group0_voffsets[0U]);
353 amu_group0_voffset_write(2U, ctx->group0_voffsets[1U]);
354 amu_group0_voffset_write(3U, ctx->group0_voffsets[2U]);
355 }
356
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100357 /* Restore group 0 counter configuration */
358 write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
359
360#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000361 /* Restore group 1 counters */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100362 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
johpow01fa59c6f2020-10-02 13:41:11 -0500363 if ((AMU_GROUP1_COUNTERS_MASK & (1UL << i)) != 0U) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000364 amu_group1_cnt_write(i, ctx->group1_cnts[i]);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100365 }
366 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000367
johpow01fa59c6f2020-10-02 13:41:11 -0500368 /* Restore group 1 virtual offsets if supported and enabled. */
369 if ((amu_get_version() >= ID_AA64PFR0_AMU_V1P1) &&
370 ((read_hcr_el2() & HCR_AMVOFFEN_BIT) != 0ULL)) {
371 u_register_t amcg1idr = read_amcg1idr_el0() >>
372 AMCG1IDR_VOFF_SHIFT;
373 amcg1idr = amcg1idr & AMU_GROUP1_COUNTERS_MASK;
374
375 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
376 if (((amcg1idr >> i) & 1ULL) != 0ULL) {
377 amu_group1_voffset_write(i,
378 ctx->group1_voffsets[i]);
379 }
380 }
381 }
382
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100383 /* Restore group 1 counter configuration */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000384 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100385#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000386
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100387 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000388}
389
390SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save);
391SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore);