blob: 28529f44ec2193dfbd7ca1780226c179ca09f8f7 [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()) {
49 INFO("AMU is not implemented\n");
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000050 return;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010051 }
52
53#if AMU_GROUP1_NR_COUNTERS
54 /* Check and set presence of group 1 counters */
55 if (!amu_group1_supported()) {
56 ERROR("AMU Counter Group 1 is not implemented\n");
57 panic();
58 }
59
60 /* Check number of group 1 counters */
61 uint64_t cnt_num = (read_amcgcr_el0() >> AMCGCR_EL0_CG1NC_SHIFT) &
62 AMCGCR_EL0_CG1NC_MASK;
63 VERBOSE("%s%llu. %s%u\n",
64 "Number of AMU Group 1 Counters ", cnt_num,
65 "Requested number ", AMU_GROUP1_NR_COUNTERS);
66
67 if (cnt_num < AMU_GROUP1_NR_COUNTERS) {
68 ERROR("%s%llu is less than %s%u\n",
69 "Number of AMU Group 1 Counters ", cnt_num,
70 "Requested number ", AMU_GROUP1_NR_COUNTERS);
71 panic();
72 }
73#endif
Dimitris Papastamose08005a2017-10-12 13:02:29 +010074
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000075 if (el2_unused) {
Dimitris Papastamose08005a2017-10-12 13:02:29 +010076 /*
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000077 * CPTR_EL2.TAM: Set to zero so any accesses to
78 * the Activity Monitor registers do not trap to EL2.
Dimitris Papastamose08005a2017-10-12 13:02:29 +010079 */
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000080 v = read_cptr_el2();
81 v &= ~CPTR_EL2_TAM_BIT;
82 write_cptr_el2(v);
Dimitris Papastamose08005a2017-10-12 13:02:29 +010083 }
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000084
85 /*
86 * CPTR_EL3.TAM: Set to zero so that any accesses to
87 * the Activity Monitor registers do not trap to EL3.
88 */
89 v = read_cptr_el3();
90 v &= ~TAM_BIT;
91 write_cptr_el3(v);
92
93 /* Enable group 0 counters */
94 write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010095
96#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamos525c37a2017-11-13 09:49:45 +000097 /* Enable group 1 counters */
98 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +010099#endif
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000100}
101
102/* Read the group 0 counter identified by the given `idx`. */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100103uint64_t amu_group0_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000104{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100105 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100106 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000107
108 return amu_group0_cnt_read_internal(idx);
109}
110
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100111/* Write the group 0 counter identified by the given `idx` with `val` */
112void amu_group0_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000113{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100114 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100115 assert(idx < AMU_GROUP0_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000116
117 amu_group0_cnt_write_internal(idx, val);
118 isb();
119}
120
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100121#if AMU_GROUP1_NR_COUNTERS
122/* Read the group 1 counter identified by the given `idx` */
123uint64_t amu_group1_cnt_read(unsigned int idx)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000124{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100125 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100126 assert(amu_group1_supported());
127 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000128
129 return amu_group1_cnt_read_internal(idx);
130}
131
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100132/* Write the group 1 counter identified by the given `idx` with `val` */
133void amu_group1_cnt_write(unsigned int idx, uint64_t val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000134{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100135 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100136 assert(amu_group1_supported());
137 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000138
139 amu_group1_cnt_write_internal(idx, val);
140 isb();
141}
142
143/*
144 * Program the event type register for the given `idx` with
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100145 * the event number `val`
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000146 */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100147void amu_group1_set_evtype(unsigned int idx, unsigned int val)
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000148{
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100149 assert(amu_supported());
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100150 assert(amu_group1_supported());
151 assert(idx < AMU_GROUP1_NR_COUNTERS);
Dimitris Papastamos525c37a2017-11-13 09:49:45 +0000152
153 amu_group1_set_evtype_internal(idx, val);
154 isb();
Dimitris Papastamose08005a2017-10-12 13:02:29 +0100155}
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100156#endif /* AMU_GROUP1_NR_COUNTERS */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000157
158static void *amu_context_save(const void *arg)
159{
160 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100161 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000162
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100163 if (!amu_supported()) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000164 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100165 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000166
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100167#if AMU_GROUP1_NR_COUNTERS
168 if (!amu_group1_supported()) {
169 return (void *)-1;
170 }
171#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000172 /* Assert that group 0/1 counter configuration is what we expect */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100173 assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000174
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100175#if AMU_GROUP1_NR_COUNTERS
176 assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
177#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000178 /*
179 * Disable group 0/1 counters to avoid other observers like SCP sampling
180 * counter values from the future via the memory mapped view.
181 */
182 write_amcntenclr0_el0(AMU_GROUP0_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100183
184#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000185 write_amcntenclr1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100186#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000187 isb();
188
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100189 /* Save all group 0 counters */
190 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000191 ctx->group0_cnts[i] = amu_group0_cnt_read(i);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100192 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000193
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100194#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000195 /* Save group 1 counters */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100196 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
197 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
198 ctx->group1_cnts[i] = amu_group1_cnt_read(i);
199 }
200 }
201#endif
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100202 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000203}
204
205static void *amu_context_restore(const void *arg)
206{
207 struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100208 unsigned int i;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000209
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100210 if (!amu_supported()) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000211 return (void *)-1;
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100212 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000213
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100214#if AMU_GROUP1_NR_COUNTERS
215 if (!amu_group1_supported()) {
216 return (void *)-1;
217 }
218#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000219 /* Counters were disabled in `amu_context_save()` */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100220 assert(read_amcntenset0_el0() == 0U);
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000221
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100222#if AMU_GROUP1_NR_COUNTERS
223 assert(read_amcntenset1_el0() == 0U);
224#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000225
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100226 /* Restore all group 0 counters */
227 for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
228 amu_group0_cnt_write(i, ctx->group0_cnts[i]);
229 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000230
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100231 /* Restore group 0 counter configuration */
232 write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
233
234#if AMU_GROUP1_NR_COUNTERS
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000235 /* Restore group 1 counters */
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100236 for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
237 if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000238 amu_group1_cnt_write(i, ctx->group1_cnts[i]);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100239 }
240 }
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000241
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100242 /* Restore group 1 counter configuration */
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000243 write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
Alexei Fedorov7e6306b2020-07-14 08:17:56 +0100244#endif
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000245
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100246 return (void *)0;
Dimitris Papastamoseaf3e6d2017-11-28 13:47:06 +0000247}
248
249SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save);
250SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore);