blob: 49973634505c61d7651857d95dc366738d82ad64 [file] [log] [blame]
Dimitris Papastamose08005a2017-10-12 13:02:29 +01001/*
Alexei Fedorov7e6306b2020-07-14 08:17:56 +01002 * Copyright (c) 2017-2020, 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>
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>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +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];
20
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010021/* Check if AMUv1 for Armv8.4 or 8.6 is implemented */
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010022bool amu_supported(void)
Dimitris Papastamose08005a2017-10-12 13:02:29 +010023{
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010024 uint64_t features = read_id_aa64pfr0_el1() >> ID_AA64PFR0_AMU_SHIFT;
25
26 features &= ID_AA64PFR0_AMU_MASK;
27 return ((features == 1U) || (features == 2U));
28}
29
30#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;
Dimitris Papastamose08005a2017-10-12 13:02:29 +010035
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010036 return (features & AMCFGR_EL0_NCG_MASK) == 1U;
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000037}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010038#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000039
40/*
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010041 * Enable counters. This function is meant to be invoked
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000042 * by the context management library before exiting from EL3.
43 */
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010044void amu_enable(bool el2_unused)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000045{
46 uint64_t v;
Dimitris Papastamose08005a2017-10-12 13:02:29 +010047
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010048 if (!amu_supported()) {
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000049 return;
Alexei Fedorov7e6306b2020-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 Papastamose08005a2017-10-12 13:02:29 +010073
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000074 if (el2_unused) {
Dimitris Papastamose08005a2017-10-12 13:02:29 +010075 /*
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000076 * CPTR_EL2.TAM: Set to zero so any accesses to
77 * the Activity Monitor registers do not trap to EL2.
Dimitris Papastamose08005a2017-10-12 13:02:29 +010078 */
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000079 v = read_cptr_el2();
80 v &= ~CPTR_EL2_TAM_BIT;
81 write_cptr_el2(v);
Dimitris Papastamose08005a2017-10-12 13:02:29 +010082 }
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000083
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 Fedorov7e6306b2020-07-14 08:17:56 +010094
95#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000096 /* Enable group 1 counters */
97 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010098#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000099}
100
101/* Read the group 0 counter identified by the given `idx`. */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100102uint64_t amu_group0_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000103{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100104 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100105 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000106
107 return amu_group0_cnt_read_internal(idx);
108}
109
Alexei Fedorov7e6306b2020-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 Papastamos525c37a2017-11-13 09:49:45 +0000112{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100113 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100114 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000115
116 amu_group0_cnt_write_internal(idx, val);
117 isb();
118}
119
Alexei Fedorov7e6306b2020-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 Papastamos525c37a2017-11-13 09:49:45 +0000123{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100124 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100125 assert(amu_group1_supported());
126 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000127
128 return amu_group1_cnt_read_internal(idx);
129}
130
Alexei Fedorov7e6306b2020-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 Papastamos525c37a2017-11-13 09:49:45 +0000133{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100134 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100135 assert(amu_group1_supported());
136 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-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 Fedorov7e6306b2020-07-14 08:17:56 +0100144 * the event number `val`
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000145 */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100146void amu_group1_set_evtype(unsigned int idx, unsigned int val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000147{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100148 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100149 assert(amu_group1_supported());
150 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000151
152 amu_group1_set_evtype_internal(idx, val);
153 isb();
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100154}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100155#endif /* AMU_GROUP1_NR_COUNTERS */
Dimitris Papastamoseaf3e6d2017-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 Fedorov7e6306b2020-07-14 08:17:56 +0100160 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000161
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100162 if (!amu_supported()) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000163 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100164 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000165
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100166#if AMU_GROUP1_NR_COUNTERS
167 if (!amu_group1_supported()) {
168 return (void *)-1;
169 }
170#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000171 /* Assert that group 0/1 counter configuration is what we expect */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100172 assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000173
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100174#if AMU_GROUP1_NR_COUNTERS
175 assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
176#endif
Dimitris Papastamoseaf3e6d2017-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 Fedorov7e6306b2020-07-14 08:17:56 +0100182
183#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000184 write_amcntenclr1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100185#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000186 isb();
187
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100188 /* Save all group 0 counters */
189 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000190 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100191 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000192
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100193#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000194 /* Save group 1 counters */
Alexei Fedorov7e6306b2020-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 Diaz033b4bb2018-10-25 16:52:26 +0100201 return (void *)0;
Dimitris Papastamoseaf3e6d2017-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 Fedorov7e6306b2020-07-14 08:17:56 +0100207 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000208
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100209 if (!amu_supported()) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000210 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100211 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000212
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100213#if AMU_GROUP1_NR_COUNTERS
214 if (!amu_group1_supported()) {
215 return (void *)-1;
216 }
217#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000218 /* Counters were disabled in `amu_context_save()` */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100219 assert(read_amcntenset0_el0() == 0U);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000220
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100221#if AMU_GROUP1_NR_COUNTERS
222 assert(read_amcntenset1_el0() == 0U);
223#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000224
Alexei Fedorov7e6306b2020-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 Papastamoseaf3e6d2017-11-28 13:47:06 +0000229
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100230 /* Restore group 0 counter configuration */
231 write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
232
233#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000234 /* Restore group 1 counters */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100235 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
236 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000237 amu_group1_cnt_write(i, ctx->group1_cnts[i]);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100238 }
239 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000240
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100241 /* Restore group 1 counter configuration */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000242 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100243#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000244
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100245 return (void *)0;
Dimitris Papastamoseaf3e6d2017-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);