amu.c 5.91 KB
Newer Older
1
/*
2
 * Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
3
4
5
6
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
#include <assert.h>
8
#include <stdbool.h>
9

10
11
#include <arch.h>
#include <arch_helpers.h>
12

13
14
15
16
#include <lib/el3_runtime/pubsub_events.h>
#include <lib/extensions/amu.h>
#include <lib/extensions/amu_private.h>

17
#include <plat/common/platform.h>
18
19
20

static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT];

21
/* Check if AMUv1 for Armv8.4 or 8.6 is implemented */
22
bool amu_supported(void)
23
{
24
25
26
27
28
29
30
31
32
33
34
	uint64_t features = read_id_aa64pfr0_el1() >> ID_AA64PFR0_AMU_SHIFT;

	features &= ID_AA64PFR0_AMU_MASK;
	return ((features == 1U) || (features == 2U));
}

#if AMU_GROUP1_NR_COUNTERS
/* Check if group 1 counters is implemented */
bool amu_group1_supported(void)
{
	uint64_t features = read_amcfgr_el0() >> AMCFGR_EL0_NCG_SHIFT;
35

36
	return (features & AMCFGR_EL0_NCG_MASK) == 1U;
37
}
38
#endif
39

40
/*
41
 * Enable counters. This function is meant to be invoked
42
43
 * by the context management library before exiting from EL3.
 */
44
void amu_enable(bool el2_unused)
45
46
47
{
	uint64_t v;

48
49
	if (!amu_supported()) {
		INFO("AMU is not implemented\n");
50
		return;
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
	}

#if AMU_GROUP1_NR_COUNTERS
	/* Check and set presence of group 1 counters */
	if (!amu_group1_supported()) {
		ERROR("AMU Counter Group 1 is not implemented\n");
		panic();
	}

	/* Check number of group 1 counters */
	uint64_t cnt_num = (read_amcgcr_el0() >> AMCGCR_EL0_CG1NC_SHIFT) &
				AMCGCR_EL0_CG1NC_MASK;
	VERBOSE("%s%llu. %s%u\n",
		"Number of AMU Group 1 Counters ", cnt_num,
		"Requested number ", AMU_GROUP1_NR_COUNTERS);

	if (cnt_num < AMU_GROUP1_NR_COUNTERS) {
		ERROR("%s%llu is less than %s%u\n",
		"Number of AMU Group 1 Counters ", cnt_num,
		"Requested number ", AMU_GROUP1_NR_COUNTERS);
		panic();
	}
#endif
74
75

	if (el2_unused) {
76
		/*
77
78
		 * CPTR_EL2.TAM: Set to zero so any accesses to
		 * the Activity Monitor registers do not trap to EL2.
79
		 */
80
81
82
		v = read_cptr_el2();
		v &= ~CPTR_EL2_TAM_BIT;
		write_cptr_el2(v);
83
	}
84
85
86
87
88
89
90
91
92
93
94

	/*
	 * CPTR_EL3.TAM: Set to zero so that any accesses to
	 * the Activity Monitor registers do not trap to EL3.
	 */
	v = read_cptr_el3();
	v &= ~TAM_BIT;
	write_cptr_el3(v);

	/* Enable group 0 counters */
	write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);
95
96

#if AMU_GROUP1_NR_COUNTERS
97
98
	/* Enable group 1 counters */
	write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
99
#endif
100
101
102
}

/* Read the group 0 counter identified by the given `idx`. */
103
uint64_t amu_group0_cnt_read(unsigned int idx)
104
{
105
	assert(amu_supported());
106
	assert(idx < AMU_GROUP0_NR_COUNTERS);
107
108
109
110

	return amu_group0_cnt_read_internal(idx);
}

111
112
/* Write the group 0 counter identified by the given `idx` with `val` */
void amu_group0_cnt_write(unsigned  int idx, uint64_t val)
113
{
114
	assert(amu_supported());
115
	assert(idx < AMU_GROUP0_NR_COUNTERS);
116
117
118
119
120

	amu_group0_cnt_write_internal(idx, val);
	isb();
}

121
122
123
#if AMU_GROUP1_NR_COUNTERS
/* Read the group 1 counter identified by the given `idx` */
uint64_t amu_group1_cnt_read(unsigned  int idx)
124
{
125
	assert(amu_supported());
126
127
	assert(amu_group1_supported());
	assert(idx < AMU_GROUP1_NR_COUNTERS);
128
129
130
131

	return amu_group1_cnt_read_internal(idx);
}

132
133
/* Write the group 1 counter identified by the given `idx` with `val` */
void amu_group1_cnt_write(unsigned  int idx, uint64_t val)
134
{
135
	assert(amu_supported());
136
137
	assert(amu_group1_supported());
	assert(idx < AMU_GROUP1_NR_COUNTERS);
138
139
140
141
142
143
144

	amu_group1_cnt_write_internal(idx, val);
	isb();
}

/*
 * Program the event type register for the given `idx` with
145
 * the event number `val`
146
 */
147
void amu_group1_set_evtype(unsigned int idx, unsigned int val)
148
{
149
	assert(amu_supported());
150
151
	assert(amu_group1_supported());
	assert(idx < AMU_GROUP1_NR_COUNTERS);
152
153
154

	amu_group1_set_evtype_internal(idx, val);
	isb();
155
}
156
#endif	/* AMU_GROUP1_NR_COUNTERS */
157
158
159
160

static void *amu_context_save(const void *arg)
{
	struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
161
	unsigned int i;
162

163
	if (!amu_supported()) {
164
		return (void *)-1;
165
	}
166

167
168
169
170
171
#if AMU_GROUP1_NR_COUNTERS
	if (!amu_group1_supported()) {
		return (void *)-1;
	}
#endif
172
	/* Assert that group 0/1 counter configuration is what we expect */
173
	assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
174

175
176
177
#if AMU_GROUP1_NR_COUNTERS
	assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
#endif
178
179
180
181
182
	/*
	 * Disable group 0/1 counters to avoid other observers like SCP sampling
	 * counter values from the future via the memory mapped view.
	 */
	write_amcntenclr0_el0(AMU_GROUP0_COUNTERS_MASK);
183
184

#if AMU_GROUP1_NR_COUNTERS
185
	write_amcntenclr1_el0(AMU_GROUP1_COUNTERS_MASK);
186
#endif
187
188
	isb();

189
190
	/* Save all group 0 counters */
	for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
191
		ctx->group0_cnts[i] = amu_group0_cnt_read(i);
192
	}
193

194
#if AMU_GROUP1_NR_COUNTERS
195
	/* Save group 1 counters */
196
197
198
199
200
201
	for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
		if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
			ctx->group1_cnts[i] = amu_group1_cnt_read(i);
		}
	}
#endif
202
	return (void *)0;
203
204
205
206
207
}

static void *amu_context_restore(const void *arg)
{
	struct amu_ctx *ctx = &amu_ctxs[plat_my_core_pos()];
208
	unsigned int i;
209

210
	if (!amu_supported()) {
211
		return (void *)-1;
212
	}
213

214
215
216
217
218
#if AMU_GROUP1_NR_COUNTERS
	if (!amu_group1_supported()) {
		return (void *)-1;
	}
#endif
219
	/* Counters were disabled in `amu_context_save()` */
220
	assert(read_amcntenset0_el0() == 0U);
221

222
223
224
#if AMU_GROUP1_NR_COUNTERS
	assert(read_amcntenset1_el0() == 0U);
#endif
225

226
227
228
229
	/* Restore all group 0 counters */
	for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
		amu_group0_cnt_write(i, ctx->group0_cnts[i]);
	}
230

231
232
233
234
	/* Restore group 0 counter configuration */
	write_amcntenset0_el0(AMU_GROUP0_COUNTERS_MASK);

#if AMU_GROUP1_NR_COUNTERS
235
	/* Restore group 1 counters */
236
237
	for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
		if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
238
			amu_group1_cnt_write(i, ctx->group1_cnts[i]);
239
240
		}
	}
241

242
	/* Restore group 1 counter configuration */
243
	write_amcntenset1_el0(AMU_GROUP1_COUNTERS_MASK);
244
#endif
245

246
	return (void *)0;
247
248
249
250
}

SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_start, amu_context_save);
SUBSCRIBE_TO_EVENT(psci_suspend_pwrdown_finish, amu_context_restore);