blob: 0bdbee132105bef70be7169590ed7853a7f7eb03 [file] [log] [blame]
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +05301/*
2 * Performance counter support for POWER9 processors.
3 *
4 * Copyright 2009 Paul Mackerras, IBM Corporation.
5 * Copyright 2013 Michael Ellerman, IBM Corporation.
6 * Copyright 2016 Madhavan Srinivasan, IBM Corporation.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or later version.
12 */
13
14#define pr_fmt(fmt) "power9-pmu: " fmt
15
16#include "isa207-common.h"
17
18/*
19 * Some power9 event codes.
20 */
21#define EVENT(_name, _code) _name = _code,
22
23enum {
24#include "power9-events-list.h"
25};
26
27#undef EVENT
28
29/* MMCRA IFM bits - POWER9 */
30#define POWER9_MMCRA_IFM1 0x0000000040000000UL
31#define POWER9_MMCRA_IFM2 0x0000000080000000UL
32#define POWER9_MMCRA_IFM3 0x00000000C0000000UL
33
Madhavan Srinivasan60b00022016-12-02 06:04:59 +053034/* PowerISA v2.07 format attribute structure*/
35extern struct attribute_group isa207_pmu_format_group;
36
Madhavan Srinivasanf1fb60b2016-06-26 23:07:09 +053037GENERIC_EVENT_ATTR(cpu-cycles, PM_CYC);
38GENERIC_EVENT_ATTR(stalled-cycles-frontend, PM_ICT_NOSLOT_CYC);
39GENERIC_EVENT_ATTR(stalled-cycles-backend, PM_CMPLU_STALL);
40GENERIC_EVENT_ATTR(instructions, PM_INST_CMPL);
41GENERIC_EVENT_ATTR(branch-instructions, PM_BRU_CMPL);
42GENERIC_EVENT_ATTR(branch-misses, PM_BR_MPRED_CMPL);
43GENERIC_EVENT_ATTR(cache-references, PM_LD_REF_L1);
44GENERIC_EVENT_ATTR(cache-misses, PM_LD_MISS_L1_FIN);
45
46CACHE_EVENT_ATTR(L1-dcache-load-misses, PM_LD_MISS_L1_FIN);
47CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1);
48CACHE_EVENT_ATTR(L1-dcache-prefetches, PM_L1_PREF);
49CACHE_EVENT_ATTR(L1-dcache-store-misses, PM_ST_MISS_L1);
50CACHE_EVENT_ATTR(L1-icache-load-misses, PM_L1_ICACHE_MISS);
51CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1);
52CACHE_EVENT_ATTR(L1-icache-prefetches, PM_IC_PREF_WRITE);
53CACHE_EVENT_ATTR(LLC-load-misses, PM_DATA_FROM_L3MISS);
54CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3);
55CACHE_EVENT_ATTR(LLC-prefetches, PM_L3_PREF_ALL);
56CACHE_EVENT_ATTR(LLC-store-misses, PM_L2_ST_MISS);
57CACHE_EVENT_ATTR(LLC-stores, PM_L2_ST);
58CACHE_EVENT_ATTR(branch-load-misses, PM_BR_MPRED_CMPL);
59CACHE_EVENT_ATTR(branch-loads, PM_BRU_CMPL);
60CACHE_EVENT_ATTR(dTLB-load-misses, PM_DTLB_MISS);
61CACHE_EVENT_ATTR(iTLB-load-misses, PM_ITLB_MISS);
62
63static struct attribute *power9_events_attr[] = {
64 GENERIC_EVENT_PTR(PM_CYC),
65 GENERIC_EVENT_PTR(PM_ICT_NOSLOT_CYC),
66 GENERIC_EVENT_PTR(PM_CMPLU_STALL),
67 GENERIC_EVENT_PTR(PM_INST_CMPL),
68 GENERIC_EVENT_PTR(PM_BRU_CMPL),
69 GENERIC_EVENT_PTR(PM_BR_MPRED_CMPL),
70 GENERIC_EVENT_PTR(PM_LD_REF_L1),
71 GENERIC_EVENT_PTR(PM_LD_MISS_L1_FIN),
72 CACHE_EVENT_PTR(PM_LD_MISS_L1_FIN),
73 CACHE_EVENT_PTR(PM_LD_REF_L1),
74 CACHE_EVENT_PTR(PM_L1_PREF),
75 CACHE_EVENT_PTR(PM_ST_MISS_L1),
76 CACHE_EVENT_PTR(PM_L1_ICACHE_MISS),
77 CACHE_EVENT_PTR(PM_INST_FROM_L1),
78 CACHE_EVENT_PTR(PM_IC_PREF_WRITE),
79 CACHE_EVENT_PTR(PM_DATA_FROM_L3MISS),
80 CACHE_EVENT_PTR(PM_DATA_FROM_L3),
81 CACHE_EVENT_PTR(PM_L3_PREF_ALL),
82 CACHE_EVENT_PTR(PM_L2_ST_MISS),
83 CACHE_EVENT_PTR(PM_L2_ST),
84 CACHE_EVENT_PTR(PM_BR_MPRED_CMPL),
85 CACHE_EVENT_PTR(PM_BRU_CMPL),
86 CACHE_EVENT_PTR(PM_DTLB_MISS),
87 CACHE_EVENT_PTR(PM_ITLB_MISS),
88 NULL
89};
90
91static struct attribute_group power9_pmu_events_group = {
92 .name = "events",
93 .attrs = power9_events_attr,
94};
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +053095
Madhavan Srinivasan520ed5b2016-12-02 06:05:00 +053096static const struct attribute_group *power9_isa207_pmu_attr_groups[] = {
Madhavan Srinivasan60b00022016-12-02 06:04:59 +053097 &isa207_pmu_format_group,
Madhavan Srinivasanf1fb60b2016-06-26 23:07:09 +053098 &power9_pmu_events_group,
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +053099 NULL,
100};
101
102static int power9_generic_events[] = {
103 [PERF_COUNT_HW_CPU_CYCLES] = PM_CYC,
104 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = PM_ICT_NOSLOT_CYC,
105 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = PM_CMPLU_STALL,
106 [PERF_COUNT_HW_INSTRUCTIONS] = PM_INST_CMPL,
107 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = PM_BRU_CMPL,
108 [PERF_COUNT_HW_BRANCH_MISSES] = PM_BR_MPRED_CMPL,
109 [PERF_COUNT_HW_CACHE_REFERENCES] = PM_LD_REF_L1,
110 [PERF_COUNT_HW_CACHE_MISSES] = PM_LD_MISS_L1_FIN,
111};
112
113static u64 power9_bhrb_filter_map(u64 branch_sample_type)
114{
115 u64 pmu_bhrb_filter = 0;
116
117 /* BHRB and regular PMU events share the same privilege state
118 * filter configuration. BHRB is always recorded along with a
119 * regular PMU event. As the privilege state filter is handled
120 * in the basic PMC configuration of the accompanying regular
121 * PMU event, we ignore any separate BHRB specific request.
122 */
123
124 /* No branch filter requested */
125 if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY)
126 return pmu_bhrb_filter;
127
128 /* Invalid branch filter options - HW does not support */
129 if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY_RETURN)
130 return -1;
131
132 if (branch_sample_type & PERF_SAMPLE_BRANCH_IND_CALL)
133 return -1;
134
135 if (branch_sample_type & PERF_SAMPLE_BRANCH_CALL)
136 return -1;
137
138 if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY_CALL) {
139 pmu_bhrb_filter |= POWER9_MMCRA_IFM1;
140 return pmu_bhrb_filter;
141 }
142
143 /* Every thing else is unsupported */
144 return -1;
145}
146
147static void power9_config_bhrb(u64 pmu_bhrb_filter)
148{
149 /* Enable BHRB filter in PMU */
150 mtspr(SPRN_MMCRA, (mfspr(SPRN_MMCRA) | pmu_bhrb_filter));
151}
152
153#define C(x) PERF_COUNT_HW_CACHE_##x
154
155/*
156 * Table of generalized cache-related events.
157 * 0 means not supported, -1 means nonsensical, other values
158 * are event codes.
159 */
160static int power9_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = {
161 [ C(L1D) ] = {
162 [ C(OP_READ) ] = {
163 [ C(RESULT_ACCESS) ] = PM_LD_REF_L1,
164 [ C(RESULT_MISS) ] = PM_LD_MISS_L1_FIN,
165 },
166 [ C(OP_WRITE) ] = {
167 [ C(RESULT_ACCESS) ] = 0,
168 [ C(RESULT_MISS) ] = PM_ST_MISS_L1,
169 },
170 [ C(OP_PREFETCH) ] = {
171 [ C(RESULT_ACCESS) ] = PM_L1_PREF,
172 [ C(RESULT_MISS) ] = 0,
173 },
174 },
175 [ C(L1I) ] = {
176 [ C(OP_READ) ] = {
177 [ C(RESULT_ACCESS) ] = PM_INST_FROM_L1,
178 [ C(RESULT_MISS) ] = PM_L1_ICACHE_MISS,
179 },
180 [ C(OP_WRITE) ] = {
181 [ C(RESULT_ACCESS) ] = PM_L1_DEMAND_WRITE,
182 [ C(RESULT_MISS) ] = -1,
183 },
184 [ C(OP_PREFETCH) ] = {
185 [ C(RESULT_ACCESS) ] = PM_IC_PREF_WRITE,
186 [ C(RESULT_MISS) ] = 0,
187 },
188 },
189 [ C(LL) ] = {
190 [ C(OP_READ) ] = {
191 [ C(RESULT_ACCESS) ] = PM_DATA_FROM_L3,
192 [ C(RESULT_MISS) ] = PM_DATA_FROM_L3MISS,
193 },
194 [ C(OP_WRITE) ] = {
195 [ C(RESULT_ACCESS) ] = PM_L2_ST,
196 [ C(RESULT_MISS) ] = PM_L2_ST_MISS,
197 },
198 [ C(OP_PREFETCH) ] = {
199 [ C(RESULT_ACCESS) ] = PM_L3_PREF_ALL,
200 [ C(RESULT_MISS) ] = 0,
201 },
202 },
203 [ C(DTLB) ] = {
204 [ C(OP_READ) ] = {
205 [ C(RESULT_ACCESS) ] = 0,
206 [ C(RESULT_MISS) ] = PM_DTLB_MISS,
207 },
208 [ C(OP_WRITE) ] = {
209 [ C(RESULT_ACCESS) ] = -1,
210 [ C(RESULT_MISS) ] = -1,
211 },
212 [ C(OP_PREFETCH) ] = {
213 [ C(RESULT_ACCESS) ] = -1,
214 [ C(RESULT_MISS) ] = -1,
215 },
216 },
217 [ C(ITLB) ] = {
218 [ C(OP_READ) ] = {
219 [ C(RESULT_ACCESS) ] = 0,
220 [ C(RESULT_MISS) ] = PM_ITLB_MISS,
221 },
222 [ C(OP_WRITE) ] = {
223 [ C(RESULT_ACCESS) ] = -1,
224 [ C(RESULT_MISS) ] = -1,
225 },
226 [ C(OP_PREFETCH) ] = {
227 [ C(RESULT_ACCESS) ] = -1,
228 [ C(RESULT_MISS) ] = -1,
229 },
230 },
231 [ C(BPU) ] = {
232 [ C(OP_READ) ] = {
233 [ C(RESULT_ACCESS) ] = PM_BRU_CMPL,
234 [ C(RESULT_MISS) ] = PM_BR_MPRED_CMPL,
235 },
236 [ C(OP_WRITE) ] = {
237 [ C(RESULT_ACCESS) ] = -1,
238 [ C(RESULT_MISS) ] = -1,
239 },
240 [ C(OP_PREFETCH) ] = {
241 [ C(RESULT_ACCESS) ] = -1,
242 [ C(RESULT_MISS) ] = -1,
243 },
244 },
245 [ C(NODE) ] = {
246 [ C(OP_READ) ] = {
247 [ C(RESULT_ACCESS) ] = -1,
248 [ C(RESULT_MISS) ] = -1,
249 },
250 [ C(OP_WRITE) ] = {
251 [ C(RESULT_ACCESS) ] = -1,
252 [ C(RESULT_MISS) ] = -1,
253 },
254 [ C(OP_PREFETCH) ] = {
255 [ C(RESULT_ACCESS) ] = -1,
256 [ C(RESULT_MISS) ] = -1,
257 },
258 },
259};
260
261#undef C
262
Madhavan Srinivasan520ed5b2016-12-02 06:05:00 +0530263static struct power_pmu power9_isa207_pmu = {
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +0530264 .name = "POWER9",
265 .n_counter = MAX_PMU_COUNTERS,
266 .add_fields = ISA207_ADD_FIELDS,
267 .test_adder = ISA207_TEST_ADDER,
268 .compute_mmcr = isa207_compute_mmcr,
269 .config_bhrb = power9_config_bhrb,
270 .bhrb_filter_map = power9_bhrb_filter_map,
271 .get_constraint = isa207_get_constraint,
272 .disable_pmc = isa207_disable_pmc,
273 .flags = PPMU_HAS_SIER | PPMU_ARCH_207S,
274 .n_generic = ARRAY_SIZE(power9_generic_events),
275 .generic_events = power9_generic_events,
276 .cache_events = &power9_cache_events,
Madhavan Srinivasan520ed5b2016-12-02 06:05:00 +0530277 .attr_groups = power9_isa207_pmu_attr_groups,
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +0530278 .bhrb_nr = 32,
279};
280
281static int __init init_power9_pmu(void)
282{
Madhavan Srinivasan520ed5b2016-12-02 06:05:00 +0530283 int rc = 0;
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +0530284
285 /* Comes from cpu_specs[] */
286 if (!cur_cpu_spec->oprofile_cpu_type ||
287 strcmp(cur_cpu_spec->oprofile_cpu_type, "ppc64/power9"))
288 return -ENODEV;
289
Madhavan Srinivasan520ed5b2016-12-02 06:05:00 +0530290 if (cpu_has_feature(CPU_FTR_POWER9_DD1)) {
291 rc = register_power_pmu(&power9_isa207_pmu);
292 }
293
Madhavan Srinivasan8c002db2016-06-26 23:07:08 +0530294 if (rc)
295 return rc;
296
297 /* Tell userspace that EBB is supported */
298 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_EBB;
299
300 return 0;
301}
302early_initcall(init_power9_pmu);