blob: 8896e5c69106b127588498f1220f6964a0d65c45 [file] [log] [blame]
Dimitris Papastamosef69e1e2017-10-17 14:03:14 +01001/*
johpow01873d4242020-10-02 13:41:11 -05002 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
Dimitris Papastamosef69e1e2017-10-17 14:03:14 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Alexei Fedorovf3ccf032020-07-14 08:17:56 +01007#include <assert.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00008#include <stdbool.h>
9
Dimitris Papastamosef69e1e2017-10-17 14:03:14 +010010#include <arch.h>
11#include <arch_helpers.h>
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010012
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000013#include <lib/el3_runtime/pubsub_events.h>
14#include <lib/extensions/amu.h>
15#include <lib/extensions/amu_private.h>
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010016
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000017#include <plat/common/platform.h>
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +000018
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +000019static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT];
Dimitris Papastamosef69e1e2017-10-17 14:03:14 +010020
johpow01873d4242020-10-02 13:41:11 -050021/*
22 * Get AMU version value from pfr0.
23 * Return values
24 * ID_PFR0_AMU_V1: FEAT_AMUv1 supported (introduced in ARM v8.4)
25 * ID_PFR0_AMU_V1P1: FEAT_AMUv1p1 supported (introduced in ARM v8.6)
26 * ID_PFR0_AMU_NOT_SUPPORTED: not supported
27 */
Chris Kayb4b726e2021-05-24 21:00:07 +010028static unsigned int amu_get_version(void)
Dimitris Papastamosef69e1e2017-10-17 14:03:14 +010029{
johpow01873d4242020-10-02 13:41:11 -050030 return (unsigned int)(read_id_pfr0() >> ID_PFR0_AMU_SHIFT) &
31 ID_PFR0_AMU_MASK;
Joel Huttonc70da542017-12-21 15:21:20 +000032}
33
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010034#if AMU_GROUP1_NR_COUNTERS
35/* Check if group 1 counters is implemented */
Chris Kayb4b726e2021-05-24 21:00:07 +010036static bool amu_group1_supported(void)
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010037{
38 uint32_t features = read_amcfgr() >> AMCFGR_NCG_SHIFT;
39
40 return (features & AMCFGR_NCG_MASK) == 1U;
41}
42#endif
43
44/*
45 * Enable counters. This function is meant to be invoked
46 * by the context management library before exiting from EL3.
47 */
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +010048void amu_enable(bool el2_unused)
Joel Huttonc70da542017-12-21 15:21:20 +000049{
johpow01873d4242020-10-02 13:41:11 -050050 if (amu_get_version() == ID_PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamos0767d502017-11-13 09:49:45 +000051 return;
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010052 }
53
54#if AMU_GROUP1_NR_COUNTERS
55 /* Check and set presence of group 1 counters */
56 if (!amu_group1_supported()) {
57 ERROR("AMU Counter Group 1 is not implemented\n");
58 panic();
59 }
60
61 /* Check number of group 1 counters */
62 uint32_t cnt_num = (read_amcgcr() >> AMCGCR_CG1NC_SHIFT) &
63 AMCGCR_CG1NC_MASK;
64 VERBOSE("%s%u. %s%u\n",
65 "Number of AMU Group 1 Counters ", cnt_num,
66 "Requested number ", AMU_GROUP1_NR_COUNTERS);
67
68 if (cnt_num < AMU_GROUP1_NR_COUNTERS) {
69 ERROR("%s%u is less than %s%u\n",
70 "Number of AMU Group 1 Counters ", cnt_num,
71 "Requested number ", AMU_GROUP1_NR_COUNTERS);
72 panic();
73 }
74#endif
Dimitris Papastamos0767d502017-11-13 09:49:45 +000075
76 if (el2_unused) {
77 uint64_t v;
Dimitris Papastamos0767d502017-11-13 09:49:45 +000078 /*
79 * Non-secure access from EL0 or EL1 to the Activity Monitor
80 * registers do not trap to EL2.
81 */
82 v = read_hcptr();
83 v &= ~TAM_BIT;
84 write_hcptr(v);
85 }
86
87 /* Enable group 0 counters */
88 write_amcntenset0(AMU_GROUP0_COUNTERS_MASK);
Joel Huttonc70da542017-12-21 15:21:20 +000089
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010090#if AMU_GROUP1_NR_COUNTERS
Joel Huttonc70da542017-12-21 15:21:20 +000091 /* Enable group 1 counters */
92 write_amcntenset1(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010093#endif
johpow01873d4242020-10-02 13:41:11 -050094
95 /* Initialize FEAT_AMUv1p1 features if present. */
96 if (amu_get_version() < ID_PFR0_AMU_V1P1) {
97 return;
98 }
99
100#if AMU_RESTRICT_COUNTERS
101 /*
102 * FEAT_AMUv1p1 adds a register field to restrict access to group 1
103 * counters at all but the highest implemented EL. This is controlled
104 * with the AMU_RESTRICT_COUNTERS compile time flag, when set, system
105 * register reads at lower ELs return zero. Reads from the memory
106 * mapped view are unaffected.
107 */
108 VERBOSE("AMU group 1 counter access restricted.\n");
109 write_amcr(read_amcr() | AMCR_CG1RZ_BIT);
110#else
111 write_amcr(read_amcr() & ~AMCR_CG1RZ_BIT);
112#endif
Joel Huttonc70da542017-12-21 15:21:20 +0000113}
114
115/* Read the group 0 counter identified by the given `idx`. */
Chris Kayb4b726e2021-05-24 21:00:07 +0100116static uint64_t amu_group0_cnt_read(unsigned int idx)
Joel Huttonc70da542017-12-21 15:21:20 +0000117{
johpow01873d4242020-10-02 13:41:11 -0500118 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100119 assert(idx < AMU_GROUP0_NR_COUNTERS);
Joel Huttonc70da542017-12-21 15:21:20 +0000120
121 return amu_group0_cnt_read_internal(idx);
122}
123
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100124/* Write the group 0 counter identified by the given `idx` with `val` */
Chris Kayb4b726e2021-05-24 21:00:07 +0100125static void amu_group0_cnt_write(unsigned int idx, uint64_t val)
Joel Huttonc70da542017-12-21 15:21:20 +0000126{
johpow01873d4242020-10-02 13:41:11 -0500127 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100128 assert(idx < AMU_GROUP0_NR_COUNTERS);
Joel Huttonc70da542017-12-21 15:21:20 +0000129
130 amu_group0_cnt_write_internal(idx, val);
131 isb();
132}
133
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100134#if AMU_GROUP1_NR_COUNTERS
135/* Read the group 1 counter identified by the given `idx` */
Chris Kayb4b726e2021-05-24 21:00:07 +0100136static uint64_t amu_group1_cnt_read(unsigned int idx)
Joel Huttonc70da542017-12-21 15:21:20 +0000137{
johpow01873d4242020-10-02 13:41:11 -0500138 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100139 assert(amu_group1_supported());
140 assert(idx < AMU_GROUP1_NR_COUNTERS);
Joel Huttonc70da542017-12-21 15:21:20 +0000141
142 return amu_group1_cnt_read_internal(idx);
143}
144
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100145/* Write the group 1 counter identified by the given `idx` with `val` */
Chris Kayb4b726e2021-05-24 21:00:07 +0100146static void amu_group1_cnt_write(unsigned int idx, uint64_t val)
Joel Huttonc70da542017-12-21 15:21:20 +0000147{
johpow01873d4242020-10-02 13:41:11 -0500148 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100149 assert(amu_group1_supported());
150 assert(idx < AMU_GROUP1_NR_COUNTERS);
Joel Huttonc70da542017-12-21 15:21:20 +0000151
152 amu_group1_cnt_write_internal(idx, val);
153 isb();
154}
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100155#endif /* AMU_GROUP1_NR_COUNTERS */
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000156
157static void *amu_context_save(const void *arg)
158{
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100159 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
160 unsigned int i;
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000161
johpow01873d4242020-10-02 13:41:11 -0500162 if (amu_get_version() == ID_PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000163 return (void *)-1;
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100164 }
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000165
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100166#if AMU_GROUP1_NR_COUNTERS
167 if (!amu_group1_supported()) {
168 return (void *)-1;
169 }
170#endif
171 /* Assert that group 0/1 counter configuration is what we expect */
172 assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000173
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100174#if AMU_GROUP1_NR_COUNTERS
175 assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
176#endif
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000177 /*
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100178 * Disable group 0/1 counters to avoid other observers like SCP sampling
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000179 * counter values from the future via the memory mapped view.
180 */
181 write_amcntenclr0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100182
183#if AMU_GROUP1_NR_COUNTERS
Joel Huttonc70da542017-12-21 15:21:20 +0000184 write_amcntenclr1(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100185#endif
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000186 isb();
187
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100188 /* Save all group 0 counters */
189 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Joel Huttonc70da542017-12-21 15:21:20 +0000190 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100191 }
Joel Huttonc70da542017-12-21 15:21:20 +0000192
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100193#if AMU_GROUP1_NR_COUNTERS
194 /* Save group 1 counters */
195 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
196 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
197 ctx->group1_cnts[i] = amu_group1_cnt_read(i);
198 }
199 }
200#endif
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100201 return (void *)0;
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000202}
203
204static void *amu_context_restore(const void *arg)
205{
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100206 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
207 unsigned int i;
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000208
johpow01873d4242020-10-02 13:41:11 -0500209 if (amu_get_version() == ID_PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000210 return (void *)-1;
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100211 }
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000212
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100213#if AMU_GROUP1_NR_COUNTERS
214 if (!amu_group1_supported()) {
215 return (void *)-1;
216 }
217#endif
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000218 /* Counters were disabled in `amu_context_save()` */
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100219 assert(read_amcntenset0_el0() == 0U);
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000220
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100221#if AMU_GROUP1_NR_COUNTERS
222 assert(read_amcntenset1_el0() == 0U);
223#endif
224
225 /* Restore all group 0 counters */
226 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Joel Huttonc70da542017-12-21 15:21:20 +0000227 amu_group0_cnt_write(i, ctx->group0_cnts[i]);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100228 }
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000229
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100230 /* Restore group 0 counter configuration */
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000231 write_amcntenset0(AMU_GROUP0_COUNTERS_MASK);
232
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100233#if AMU_GROUP1_NR_COUNTERS
234 /* Restore group 1 counters */
235 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
236 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
237 amu_group1_cnt_write(i, ctx->group1_cnts[i]);
238 }
239 }
240
241 /* Restore group 1 counter configuration */
Joel Huttonc70da542017-12-21 15:21:20 +0000242 write_amcntenset1(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100243#endif
244
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100245 return (void *)0;
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000246}
247
248SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save);
249SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore);