amu.c 5.65 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
9
#include <stdbool.h>

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

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

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

static struct amu_ctx amu_ctxs[PLATFORM_CORE_COUNT];
20

21
/* Check if AMUv1 for Armv8.4 or 8.6 is implemented */
22
bool amu_supported(void)
23
{
24
	uint32_t features = read_id_pfr0() >> ID_PFR0_AMU_SHIFT;
25

26
27
	features &= ID_PFR0_AMU_MASK;
	return ((features == 1U) || (features == 2U));
28
29
}

30
31
32
33
34
35
36
37
38
39
40
41
42
43
#if AMU_GROUP1_NR_COUNTERS
/* Check if group 1 counters is implemented */
bool amu_group1_supported(void)
{
	uint32_t features = read_amcfgr() >> AMCFGR_NCG_SHIFT;

	return (features & AMCFGR_NCG_MASK) == 1U;
}
#endif

/*
 * Enable counters. This function is meant to be invoked
 * by the context management library before exiting from EL3.
 */
44
void amu_enable(bool el2_unused)
45
{
46
47
	if (!amu_supported()) {
		INFO("AMU is not implemented\n");
48
		return;
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
	}

#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 */
	uint32_t cnt_num = (read_amcgcr() >> AMCGCR_CG1NC_SHIFT) &
				AMCGCR_CG1NC_MASK;
	VERBOSE("%s%u. %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%u is less than %s%u\n",
		"Number of AMU Group 1 Counters ", cnt_num,
		"Requested number ", AMU_GROUP1_NR_COUNTERS);
		panic();
	}
#endif
72

73
74
75
76
77
78
79
80
81
	if (el2_unused) {
		uint64_t v;
		/*
		 * Non-secure access from EL0 or EL1 to the Activity Monitor
		 * registers do not trap to EL2.
		 */
		v = read_hcptr();
		v &= ~TAM_BIT;
		write_hcptr(v);
82
	}
83
84
85

	/* Enable group 0 counters */
	write_amcntenset0(AMU_GROUP0_COUNTERS_MASK);
86

87
#if AMU_GROUP1_NR_COUNTERS
88
89
	/* Enable group 1 counters */
	write_amcntenset1(AMU_GROUP1_COUNTERS_MASK);
90
#endif
91
92
93
}

/* Read the group 0 counter identified by the given `idx`. */
94
uint64_t amu_group0_cnt_read(unsigned int idx)
95
{
96
	assert(amu_supported());
97
	assert(idx < AMU_GROUP0_NR_COUNTERS);
98
99
100
101

	return amu_group0_cnt_read_internal(idx);
}

102
103
/* Write the group 0 counter identified by the given `idx` with `val` */
void amu_group0_cnt_write(unsigned  int idx, uint64_t val)
104
{
105
	assert(amu_supported());
106
	assert(idx < AMU_GROUP0_NR_COUNTERS);
107
108
109
110
111

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

112
113
114
#if AMU_GROUP1_NR_COUNTERS
/* Read the group 1 counter identified by the given `idx` */
uint64_t amu_group1_cnt_read(unsigned  int idx)
115
{
116
	assert(amu_supported());
117
118
	assert(amu_group1_supported());
	assert(idx < AMU_GROUP1_NR_COUNTERS);
119
120
121
122

	return amu_group1_cnt_read_internal(idx);
}

123
124
/* Write the group 1 counter identified by the given `idx` with `val` */
void amu_group1_cnt_write(unsigned  int idx, uint64_t val)
125
{
126
	assert(amu_supported());
127
128
	assert(amu_group1_supported());
	assert(idx < AMU_GROUP1_NR_COUNTERS);
129
130
131
132
133

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

134
135
136
137
138
/*
 * Program the event type register for the given `idx` with
 * the event number `val`
 */
void amu_group1_set_evtype(unsigned int idx, unsigned int val)
139
{
140
	assert(amu_supported());
141
142
	assert(amu_group1_supported());
	assert(idx < AMU_GROUP1_NR_COUNTERS);
143
144
145

	amu_group1_set_evtype_internal(idx, val);
	isb();
146
}
147
#endif	/* AMU_GROUP1_NR_COUNTERS */
148
149
150

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

154
	if (!amu_supported()) {
155
		return (void *)-1;
156
	}
157

158
159
160
161
162
163
164
#if AMU_GROUP1_NR_COUNTERS
	if (!amu_group1_supported()) {
		return (void *)-1;
	}
#endif
	/* Assert that group 0/1 counter configuration is what we expect */
	assert(read_amcntenset0_el0() == AMU_GROUP0_COUNTERS_MASK);
165

166
167
168
#if AMU_GROUP1_NR_COUNTERS
	assert(read_amcntenset1_el0() == AMU_GROUP1_COUNTERS_MASK);
#endif
169
	/*
170
	 * Disable group 0/1 counters to avoid other observers like SCP sampling
171
172
173
	 * counter values from the future via the memory mapped view.
	 */
	write_amcntenclr0(AMU_GROUP0_COUNTERS_MASK);
174
175

#if AMU_GROUP1_NR_COUNTERS
176
	write_amcntenclr1(AMU_GROUP1_COUNTERS_MASK);
177
#endif
178
179
	isb();

180
181
	/* Save all group 0 counters */
	for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
182
		ctx->group0_cnts[i] = amu_group0_cnt_read(i);
183
	}
184

185
186
187
188
189
190
191
192
#if AMU_GROUP1_NR_COUNTERS
	/* Save group 1 counters */
	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
193
	return (void *)0;
194
195
196
197
}

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

201
	if (!amu_supported()) {
202
		return (void *)-1;
203
	}
204

205
206
207
208
209
#if AMU_GROUP1_NR_COUNTERS
	if (!amu_group1_supported()) {
		return (void *)-1;
	}
#endif
210
	/* Counters were disabled in `amu_context_save()` */
211
212
213
214
215
	assert(read_amcntenset0_el0() == 0U);

#if AMU_GROUP1_NR_COUNTERS
	assert(read_amcntenset1_el0() == 0U);
#endif
216

217
218
	/* Restore all group 0 counters */
	for (i = 0U; i < AMU_GROUP0_NR_COUNTERS; i++) {
219
		amu_group0_cnt_write(i, ctx->group0_cnts[i]);
220
	}
221

222
	/* Restore group 0 counter configuration */
223
224
	write_amcntenset0(AMU_GROUP0_COUNTERS_MASK);

225
226
227
228
229
230
231
232
233
#if AMU_GROUP1_NR_COUNTERS
	/* Restore group 1 counters */
	for (i = 0U; i < AMU_GROUP1_NR_COUNTERS; i++) {
		if ((AMU_GROUP1_COUNTERS_MASK & (1U << i)) != 0U) {
			amu_group1_cnt_write(i, ctx->group1_cnts[i]);
		}
	}

	/* Restore group 1 counter configuration */
234
	write_amcntenset1(AMU_GROUP1_COUNTERS_MASK);
235
236
#endif

237
	return (void *)0;
238
239
240
241
}

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