blob: ed56dddc991d1cdc9cd12593d4610cfa360ffb28 [file] [log] [blame]
Dimitris Papastamosdda48b02017-10-17 14:03:14 +01001/*
johpow01fa59c6f2020-10-02 13:41:11 -05002 * Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
Dimitris Papastamosdda48b02017-10-17 14:03:14 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Alexei Fedorov7e6306b2020-07-14 08:17:56 +01007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <stdbool.h>
9
Dimitris Papastamosdda48b02017-10-17 14:03:14 +010010#include <arch.h>
11#include <arch_helpers.h>
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010012
Antonio Nino Diaze0f90632018-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>
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +000016
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010017#include <plat/common/platform.h>
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +000018
19static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT];
Dimitris Papastamosdda48b02017-10-17 14:03:14 +010020
johpow01fa59c6f2020-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 */
28unsigned int amu_get_version(void)
Dimitris Papastamosdda48b02017-10-17 14:03:14 +010029{
johpow01fa59c6f2020-10-02 13:41:11 -050030 return (unsigned int)(read_id_pfr0() >> ID_PFR0_AMU_SHIFT) &
31 ID_PFR0_AMU_MASK;
Joel Hutton0dcdd8d2017-12-21 15:21:20 +000032}
33
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010034#if AMU_GROUP1_NR_COUNTERS
35/* Check if group 1 counters is implemented */
36bool amu_group1_supported(void)
37{
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 Diaz033b4bb2018-10-25 16:52:26 +010048void amu_enable(bool el2_unused)
Joel Hutton0dcdd8d2017-12-21 15:21:20 +000049{
johpow01fa59c6f2020-10-02 13:41:11 -050050 if (amu_get_version() == ID_PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000051 return;
Alexei Fedorov7e6306b2020-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 Papastamosdda48b02017-10-17 14:03:14 +010075
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000076 if (el2_unused) {
77 uint64_t v;
Dimitris Papastamos525c37a2017-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);
Dimitris Papastamosdda48b02017-10-17 14:03:14 +010085 }
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000086
87 /* Enable group 0 counters */
88 write_amcntenset0(AMU_GROUP0_COUNTERS_MASK);
Joel Hutton0dcdd8d2017-12-21 15:21:20 +000089
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010090#if AMU_GROUP1_NR_COUNTERS
Joel Hutton0dcdd8d2017-12-21 15:21:20 +000091 /* Enable group 1 counters */
92 write_amcntenset1(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010093#endif
johpow01fa59c6f2020-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 Hutton0dcdd8d2017-12-21 15:21:20 +0000113}
114
115/* Read the group 0 counter identified by the given `idx`. */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100116uint64_t amu_group0_cnt_read(unsigned int idx)
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000117{
johpow01fa59c6f2020-10-02 13:41:11 -0500118 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100119 assert(idx < AMU_GROUP0_NR_COUNTERS);
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000120
121 return amu_group0_cnt_read_internal(idx);
122}
123
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100124/* Write the group 0 counter identified by the given `idx` with `val` */
125void amu_group0_cnt_write(unsigned int idx, uint64_t val)
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000126{
johpow01fa59c6f2020-10-02 13:41:11 -0500127 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100128 assert(idx < AMU_GROUP0_NR_COUNTERS);
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000129
130 amu_group0_cnt_write_internal(idx, val);
131 isb();
132}
133
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100134#if AMU_GROUP1_NR_COUNTERS
135/* Read the group 1 counter identified by the given `idx` */
136uint64_t amu_group1_cnt_read(unsigned int idx)
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000137{
johpow01fa59c6f2020-10-02 13:41:11 -0500138 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100139 assert(amu_group1_supported());
140 assert(idx < AMU_GROUP1_NR_COUNTERS);
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000141
142 return amu_group1_cnt_read_internal(idx);
143}
144
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100145/* Write the group 1 counter identified by the given `idx` with `val` */
146void amu_group1_cnt_write(unsigned int idx, uint64_t val)
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000147{
johpow01fa59c6f2020-10-02 13:41:11 -0500148 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100149 assert(amu_group1_supported());
150 assert(idx < AMU_GROUP1_NR_COUNTERS);
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000151
152 amu_group1_cnt_write_internal(idx, val);
153 isb();
154}
155
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100156/*
157 * Program the event type register for the given `idx` with
158 * the event number `val`
159 */
160void amu_group1_set_evtype(unsigned int idx, unsigned int val)
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000161{
johpow01fa59c6f2020-10-02 13:41:11 -0500162 assert(amu_get_version() != ID_PFR0_AMU_NOT_SUPPORTED);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100163 assert(amu_group1_supported());
164 assert(idx < AMU_GROUP1_NR_COUNTERS);
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000165
166 amu_group1_set_evtype_internal(idx, val);
167 isb();
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000168}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100169#endif /* AMU_GROUP1_NR_COUNTERS */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000170
171static void *amu_context_save(const void *arg)
172{
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100173 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
174 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000175
johpow01fa59c6f2020-10-02 13:41:11 -0500176 if (amu_get_version() == ID_PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000177 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100178 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000179
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100180#if AMU_GROUP1_NR_COUNTERS
181 if (!amu_group1_supported()) {
182 return (void *)-1;
183 }
184#endif
185 /* Assert that group 0/1 counter configuration is what we expect */
186 assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000187
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100188#if AMU_GROUP1_NR_COUNTERS
189 assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
190#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000191 /*
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100192 * Disable group 0/1 counters to avoid other observers like SCP sampling
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000193 * counter values from the future via the memory mapped view.
194 */
195 write_amcntenclr0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100196
197#if AMU_GROUP1_NR_COUNTERS
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000198 write_amcntenclr1(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100199#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000200 isb();
201
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100202 /* Save all group 0 counters */
203 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000204 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100205 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000206
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100207#if AMU_GROUP1_NR_COUNTERS
208 /* Save group 1 counters */
209 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
210 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
211 ctx->group1_cnts[i] = amu_group1_cnt_read(i);
212 }
213 }
214#endif
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100215 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000216}
217
218static void *amu_context_restore(const void *arg)
219{
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100220 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
221 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000222
johpow01fa59c6f2020-10-02 13:41:11 -0500223 if (amu_get_version() == ID_PFR0_AMU_NOT_SUPPORTED) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000224 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100225 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000226
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100227#if AMU_GROUP1_NR_COUNTERS
228 if (!amu_group1_supported()) {
229 return (void *)-1;
230 }
231#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000232 /* Counters were disabled in `amu_context_save()` */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100233 assert(read_amcntenset0_el0() == 0U);
234
235#if AMU_GROUP1_NR_COUNTERS
236 assert(read_amcntenset1_el0() == 0U);
237#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000238
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100239 /* Restore all group 0 counters */
240 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000241 amu_group0_cnt_write(i, ctx->group0_cnts[i]);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100242 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000243
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100244 /* Restore group 0 counter configuration */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000245 write_amcntenset0(AMU_GROUP0_COUNTERS_MASK);
246
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100247#if AMU_GROUP1_NR_COUNTERS
248 /* Restore group 1 counters */
249 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
250 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
251 amu_group1_cnt_write(i, ctx->group1_cnts[i]);
252 }
253 }
254
255 /* Restore group 1 counter configuration */
Joel Hutton0dcdd8d2017-12-21 15:21:20 +0000256 write_amcntenset1(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100257#endif
258
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100259 return (void *)0;
Dimitris Papastamosdda48b02017-10-17 14:03:14 +0100260}
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000261
262SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save);
263SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore);