blob: 49973634505c61d7651857d95dc366738d82ad64 [file] [log] [blame]
Dimitris Papastamos380559c2017-10-12 13:02:29 +01001/*
Alexei Fedorovf3ccf032020-07-14 08:17:56 +01002 * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
Dimitris Papastamos380559c2017-10-12 13:02:29 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00007#include <assert.h>
8#include <stdbool.h>
9
Dimitris Papastamos380559c2017-10-12 13:02:29 +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 Papastamos380559c2017-10-12 13:02:29 +010018
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +000019static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT];
20
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010021/* Check if AMUv1 for Armv8.4 or 8.6 is implemented */
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +010022bool amu_supported(void)
Dimitris Papastamos380559c2017-10-12 13:02:29 +010023{
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010024 uint64_t features = read_id_aa64pfr0_el1() >> ID_AA64PFR0_AMU_SHIFT;
Dimitris Papastamos380559c2017-10-12 13:02:29 +010025
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010026 features &= ID_AA64PFR0_AMU_MASK;
27 return ((features == 1U) || (features == 2U));
Dimitris Papastamos0767d502017-11-13 09:49:45 +000028}
Dimitris Papastamos380559c2017-10-12 13:02:29 +010029
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010030#if AMU_GROUP1_NR_COUNTERS
31/* Check if group 1 counters is implemented */
32bool amu_group1_supported(void)
33{
34 uint64_t features = read_amcfgr_el0() >> AMCFGR_EL0_NCG_SHIFT;
35
36 return (features & AMCFGR_EL0_NCG_MASK) == 1U;
37}
38#endif
39
Dimitris Papastamos0767d502017-11-13 09:49:45 +000040/*
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010041 * Enable counters. This function is meant to be invoked
Dimitris Papastamos0767d502017-11-13 09:49:45 +000042 * by the context management library before exiting from EL3.
43 */
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +010044void amu_enable(bool el2_unused)
Dimitris Papastamos0767d502017-11-13 09:49:45 +000045{
46 uint64_t v;
Dimitris Papastamos380559c2017-10-12 13:02:29 +010047
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010048 if (!amu_supported()) {
Dimitris Papastamos0767d502017-11-13 09:49:45 +000049 return;
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010050 }
51
52#if AMU_GROUP1_NR_COUNTERS
53 /* Check and set presence of group 1 counters */
54 if (!amu_group1_supported()) {
55 ERROR("AMU Counter Group 1 is not implemented\n");
56 panic();
57 }
58
59 /* Check number of group 1 counters */
60 uint64_t cnt_num = (read_amcgcr_el0() >> AMCGCR_EL0_CG1NC_SHIFT) &
61 AMCGCR_EL0_CG1NC_MASK;
62 VERBOSE("%s%llu. %s%u\n",
63 "Number of AMU Group 1 Counters ", cnt_num,
64 "Requested number ", AMU_GROUP1_NR_COUNTERS);
65
66 if (cnt_num < AMU_GROUP1_NR_COUNTERS) {
67 ERROR("%s%llu is less than %s%u\n",
68 "Number of AMU Group 1 Counters ", cnt_num,
69 "Requested number ", AMU_GROUP1_NR_COUNTERS);
70 panic();
71 }
72#endif
Dimitris Papastamos0767d502017-11-13 09:49:45 +000073
74 if (el2_unused) {
75 /*
76 * CPTR_EL2.TAM: Set to zero so any accesses to
77 * the Activity Monitor registers do not trap to EL2.
78 */
79 v = read_cptr_el2();
80 v &= ~CPTR_EL2_TAM_BIT;
81 write_cptr_el2(v);
82 }
83
84 /*
85 * CPTR_EL3.TAM: Set to zero so that any accesses to
86 * the Activity Monitor registers do not trap to EL3.
87 */
88 v = read_cptr_el3();
89 v &= ~TAM_BIT;
90 write_cptr_el3(v);
91
92 /* Enable group 0 counters */
93 write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010094
95#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamos0767d502017-11-13 09:49:45 +000096 /* Enable group 1 counters */
97 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +010098#endif
Dimitris Papastamos0767d502017-11-13 09:49:45 +000099}
100
101/* Read the group 0 counter identified by the given `idx`. */
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100102uint64_t amu_group0_cnt_read(unsigned int idx)
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000103{
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100104 assert(amu_supported());
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100105 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000106
107 return amu_group0_cnt_read_internal(idx);
108}
109
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100110/* Write the group 0 counter identified by the given `idx` with `val` */
111void amu_group0_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000112{
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100113 assert(amu_supported());
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100114 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000115
116 amu_group0_cnt_write_internal(idx, val);
117 isb();
118}
119
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100120#if AMU_GROUP1_NR_COUNTERS
121/* Read the group 1 counter identified by the given `idx` */
122uint64_t amu_group1_cnt_read(unsigned int idx)
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000123{
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100124 assert(amu_supported());
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100125 assert(amu_group1_supported());
126 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000127
128 return amu_group1_cnt_read_internal(idx);
129}
130
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100131/* Write the group 1 counter identified by the given `idx` with `val` */
132void amu_group1_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000133{
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100134 assert(amu_supported());
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100135 assert(amu_group1_supported());
136 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000137
138 amu_group1_cnt_write_internal(idx, val);
139 isb();
140}
141
142/*
143 * Program the event type register for the given `idx` with
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100144 * the event number `val`
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000145 */
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100146void amu_group1_set_evtype(unsigned int idx, unsigned int val)
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000147{
Antonio Nino Diaz40daecc2018-10-25 16:52:26 +0100148 assert(amu_supported());
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100149 assert(amu_group1_supported());
150 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos0767d502017-11-13 09:49:45 +0000151
152 amu_group1_set_evtype_internal(idx, val);
153 isb();
Dimitris Papastamos380559c2017-10-12 13:02:29 +0100154}
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{
159 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100160 unsigned int i;
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000161
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100162 if (!amu_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
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000171 /* Assert that group 0/1 counter configuration is what we expect */
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100172 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 /*
178 * Disable group 0/1 counters to avoid other observers like SCP sampling
179 * counter values from the future via the memory mapped view.
180 */
181 write_amcntenclr0_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100182
183#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000184 write_amcntenclr1_el0(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++) {
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000190 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100191 }
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000192
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100193#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000194 /* Save group 1 counters */
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100195 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{
206 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100207 unsigned int i;
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000208
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100209 if (!amu_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
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000224
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100225 /* Restore all group 0 counters */
226 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
227 amu_group0_cnt_write(i, ctx->group0_cnts[i]);
228 }
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_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100232
233#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 */
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000242 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorovf3ccf032020-07-14 08:17:56 +0100243#endif
Dimitris Papastamosb6eb3932017-11-28 13:47:06 +0000244
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);