blob: ce15b19a7962c1de92f2d32f1ef4626c90a804be [file] [log] [blame]
Michael Ellermane05b9b92013-04-25 19:28:28 +00001/*
2 * Performance counter support for POWER8 processors.
3 *
4 * Copyright 2009 Paul Mackerras, IBM Corporation.
5 * Copyright 2013 Michael Ellerman, IBM Corporation.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
Michael Ellermanc2e37a22014-03-14 16:00:29 +110013#define pr_fmt(fmt) "power8-pmu: " fmt
14
Madhavan Srinivasan4d3576b2016-06-26 23:07:04 +053015#include "isa207-common.h"
Michael Ellermane05b9b92013-04-25 19:28:28 +000016
Michael Ellermane05b9b92013-04-25 19:28:28 +000017/*
18 * Some power8 event codes.
19 */
Sukadev Bhattiprolue0728b52016-01-11 14:55:26 -080020#define EVENT(_name, _code) _name = _code,
Michael Ellermane05b9b92013-04-25 19:28:28 +000021
Sukadev Bhattiprolue0728b52016-01-11 14:55:26 -080022enum {
23#include "power8-events-list.h"
24};
Michael Ellerman2fdd3132014-01-24 15:50:51 +110025
Sukadev Bhattiprolue0728b52016-01-11 14:55:26 -080026#undef EVENT
Michael Ellermane05b9b92013-04-25 19:28:28 +000027
Anshuman Khandualb1113552013-04-22 19:42:43 +000028/* MMCRA IFM bits - POWER8 */
29#define POWER8_MMCRA_IFM1 0x0000000040000000UL
30#define POWER8_MMCRA_IFM2 0x0000000080000000UL
31#define POWER8_MMCRA_IFM3 0x00000000C0000000UL
32
Madhavan Srinivasan60b00022016-12-02 06:04:59 +053033/* PowerISA v2.07 format attribute structure*/
34extern struct attribute_group isa207_pmu_format_group;
35
Michael Ellermane05b9b92013-04-25 19:28:28 +000036/* Table of alternatives, sorted by column 0 */
37static const unsigned int event_alternatives[][MAX_ALT] = {
Madhavan Srinivasan5bcca742016-04-21 15:46:34 +053038 { PM_MRK_ST_CMPL, PM_MRK_ST_CMPL_ALT },
39 { PM_BR_MRK_2PATH, PM_BR_MRK_2PATH_ALT },
40 { PM_L3_CO_MEPF, PM_L3_CO_MEPF_ALT },
41 { PM_MRK_DATA_FROM_L2MISS, PM_MRK_DATA_FROM_L2MISS_ALT },
42 { PM_CMPLU_STALL_ALT, PM_CMPLU_STALL },
43 { PM_BR_2PATH, PM_BR_2PATH_ALT },
44 { PM_INST_DISP, PM_INST_DISP_ALT },
45 { PM_RUN_CYC_ALT, PM_RUN_CYC },
46 { PM_MRK_FILT_MATCH, PM_MRK_FILT_MATCH_ALT },
47 { PM_LD_MISS_L1, PM_LD_MISS_L1_ALT },
48 { PM_RUN_INST_CMPL_ALT, PM_RUN_INST_CMPL },
Michael Ellermane05b9b92013-04-25 19:28:28 +000049};
50
Michael Ellermane05b9b92013-04-25 19:28:28 +000051static int power8_get_alternatives(u64 event, unsigned int flags, u64 alt[])
52{
53 int i, j, num_alt = 0;
Michael Ellermane05b9b92013-04-25 19:28:28 +000054
Madhavan Srinivasanefe881a2017-02-12 22:33:10 +053055 num_alt = isa207_get_alternatives(event, alt, event_alternatives,
56 (int)ARRAY_SIZE(event_alternatives));
Michael Ellermane05b9b92013-04-25 19:28:28 +000057 if (flags & PPMU_ONLY_COUNT_RUN) {
58 /*
59 * We're only counting in RUN state, so PM_CYC is equivalent to
60 * PM_RUN_CYC and PM_INST_CMPL === PM_RUN_INST_CMPL.
61 */
62 j = num_alt;
63 for (i = 0; i < num_alt; ++i) {
64 switch (alt[i]) {
Madhavan Srinivasan5bcca742016-04-21 15:46:34 +053065 case PM_CYC:
66 alt[j++] = PM_RUN_CYC;
Michael Ellermane05b9b92013-04-25 19:28:28 +000067 break;
Madhavan Srinivasan5bcca742016-04-21 15:46:34 +053068 case PM_RUN_CYC:
69 alt[j++] = PM_CYC;
Michael Ellermane05b9b92013-04-25 19:28:28 +000070 break;
Madhavan Srinivasan5bcca742016-04-21 15:46:34 +053071 case PM_INST_CMPL:
72 alt[j++] = PM_RUN_INST_CMPL;
Michael Ellermane05b9b92013-04-25 19:28:28 +000073 break;
Madhavan Srinivasan5bcca742016-04-21 15:46:34 +053074 case PM_RUN_INST_CMPL:
75 alt[j++] = PM_INST_CMPL;
Michael Ellermane05b9b92013-04-25 19:28:28 +000076 break;
77 }
78 }
79 num_alt = j;
80 }
81
82 return num_alt;
83}
84
Sukadev Bhattiprolue0728b52016-01-11 14:55:26 -080085GENERIC_EVENT_ATTR(cpu-cycles, PM_CYC);
86GENERIC_EVENT_ATTR(stalled-cycles-frontend, PM_GCT_NOSLOT_CYC);
87GENERIC_EVENT_ATTR(stalled-cycles-backend, PM_CMPLU_STALL);
88GENERIC_EVENT_ATTR(instructions, PM_INST_CMPL);
89GENERIC_EVENT_ATTR(branch-instructions, PM_BRU_FIN);
90GENERIC_EVENT_ATTR(branch-misses, PM_BR_MPRED_CMPL);
91GENERIC_EVENT_ATTR(cache-references, PM_LD_REF_L1);
92GENERIC_EVENT_ATTR(cache-misses, PM_LD_MISS_L1);
93
94CACHE_EVENT_ATTR(L1-dcache-load-misses, PM_LD_MISS_L1);
95CACHE_EVENT_ATTR(L1-dcache-loads, PM_LD_REF_L1);
96
97CACHE_EVENT_ATTR(L1-dcache-prefetches, PM_L1_PREF);
98CACHE_EVENT_ATTR(L1-dcache-store-misses, PM_ST_MISS_L1);
99CACHE_EVENT_ATTR(L1-icache-load-misses, PM_L1_ICACHE_MISS);
100CACHE_EVENT_ATTR(L1-icache-loads, PM_INST_FROM_L1);
101CACHE_EVENT_ATTR(L1-icache-prefetches, PM_IC_PREF_WRITE);
102
103CACHE_EVENT_ATTR(LLC-load-misses, PM_DATA_FROM_L3MISS);
104CACHE_EVENT_ATTR(LLC-loads, PM_DATA_FROM_L3);
105CACHE_EVENT_ATTR(LLC-prefetches, PM_L3_PREF_ALL);
106CACHE_EVENT_ATTR(LLC-store-misses, PM_L2_ST_MISS);
107CACHE_EVENT_ATTR(LLC-stores, PM_L2_ST);
108
109CACHE_EVENT_ATTR(branch-load-misses, PM_BR_MPRED_CMPL);
110CACHE_EVENT_ATTR(branch-loads, PM_BRU_FIN);
111CACHE_EVENT_ATTR(dTLB-load-misses, PM_DTLB_MISS);
112CACHE_EVENT_ATTR(iTLB-load-misses, PM_ITLB_MISS);
113
114static struct attribute *power8_events_attr[] = {
115 GENERIC_EVENT_PTR(PM_CYC),
116 GENERIC_EVENT_PTR(PM_GCT_NOSLOT_CYC),
117 GENERIC_EVENT_PTR(PM_CMPLU_STALL),
118 GENERIC_EVENT_PTR(PM_INST_CMPL),
119 GENERIC_EVENT_PTR(PM_BRU_FIN),
120 GENERIC_EVENT_PTR(PM_BR_MPRED_CMPL),
121 GENERIC_EVENT_PTR(PM_LD_REF_L1),
122 GENERIC_EVENT_PTR(PM_LD_MISS_L1),
123
124 CACHE_EVENT_PTR(PM_LD_MISS_L1),
125 CACHE_EVENT_PTR(PM_LD_REF_L1),
126 CACHE_EVENT_PTR(PM_L1_PREF),
127 CACHE_EVENT_PTR(PM_ST_MISS_L1),
128 CACHE_EVENT_PTR(PM_L1_ICACHE_MISS),
129 CACHE_EVENT_PTR(PM_INST_FROM_L1),
130 CACHE_EVENT_PTR(PM_IC_PREF_WRITE),
131 CACHE_EVENT_PTR(PM_DATA_FROM_L3MISS),
132 CACHE_EVENT_PTR(PM_DATA_FROM_L3),
133 CACHE_EVENT_PTR(PM_L3_PREF_ALL),
134 CACHE_EVENT_PTR(PM_L2_ST_MISS),
135 CACHE_EVENT_PTR(PM_L2_ST),
136
137 CACHE_EVENT_PTR(PM_BR_MPRED_CMPL),
138 CACHE_EVENT_PTR(PM_BRU_FIN),
139
140 CACHE_EVENT_PTR(PM_DTLB_MISS),
141 CACHE_EVENT_PTR(PM_ITLB_MISS),
142 NULL
143};
144
145static struct attribute_group power8_pmu_events_group = {
146 .name = "events",
147 .attrs = power8_events_attr,
148};
149
Michael Ellermane05b9b92013-04-25 19:28:28 +0000150static const struct attribute_group *power8_pmu_attr_groups[] = {
Madhavan Srinivasan60b00022016-12-02 06:04:59 +0530151 &isa207_pmu_format_group,
Sukadev Bhattiprolue0728b52016-01-11 14:55:26 -0800152 &power8_pmu_events_group,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000153 NULL,
154};
155
156static int power8_generic_events[] = {
157 [PERF_COUNT_HW_CPU_CYCLES] = PM_CYC,
158 [PERF_COUNT_HW_STALLED_CYCLES_FRONTEND] = PM_GCT_NOSLOT_CYC,
159 [PERF_COUNT_HW_STALLED_CYCLES_BACKEND] = PM_CMPLU_STALL,
160 [PERF_COUNT_HW_INSTRUCTIONS] = PM_INST_CMPL,
161 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = PM_BRU_FIN,
162 [PERF_COUNT_HW_BRANCH_MISSES] = PM_BR_MPRED_CMPL,
Michael Ellerman2fdd3132014-01-24 15:50:51 +1100163 [PERF_COUNT_HW_CACHE_REFERENCES] = PM_LD_REF_L1,
164 [PERF_COUNT_HW_CACHE_MISSES] = PM_LD_MISS_L1,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000165};
166
Anshuman Khandualb1113552013-04-22 19:42:43 +0000167static u64 power8_bhrb_filter_map(u64 branch_sample_type)
168{
169 u64 pmu_bhrb_filter = 0;
Anshuman Khandualb1113552013-04-22 19:42:43 +0000170
Anshuman Khandual7689bdc2013-06-10 11:23:28 +0530171 /* BHRB and regular PMU events share the same privilege state
Anshuman Khandualb1113552013-04-22 19:42:43 +0000172 * filter configuration. BHRB is always recorded along with a
Anshuman Khandual7689bdc2013-06-10 11:23:28 +0530173 * regular PMU event. As the privilege state filter is handled
174 * in the basic PMC configuration of the accompanying regular
175 * PMU event, we ignore any separate BHRB specific request.
Anshuman Khandualb1113552013-04-22 19:42:43 +0000176 */
Anshuman Khandualb1113552013-04-22 19:42:43 +0000177
178 /* No branch filter requested */
179 if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY)
180 return pmu_bhrb_filter;
181
182 /* Invalid branch filter options - HW does not support */
183 if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY_RETURN)
184 return -1;
185
186 if (branch_sample_type & PERF_SAMPLE_BRANCH_IND_CALL)
187 return -1;
188
Stephane Eranian24f1a792015-10-13 09:09:10 +0200189 if (branch_sample_type & PERF_SAMPLE_BRANCH_CALL)
190 return -1;
191
Anshuman Khandualb1113552013-04-22 19:42:43 +0000192 if (branch_sample_type & PERF_SAMPLE_BRANCH_ANY_CALL) {
193 pmu_bhrb_filter |= POWER8_MMCRA_IFM1;
194 return pmu_bhrb_filter;
195 }
196
197 /* Every thing else is unsupported */
198 return -1;
199}
200
201static void power8_config_bhrb(u64 pmu_bhrb_filter)
202{
203 /* Enable BHRB filter in PMU */
204 mtspr(SPRN_MMCRA, (mfspr(SPRN_MMCRA) | pmu_bhrb_filter));
205}
206
Michael Ellerman2fdd3132014-01-24 15:50:51 +1100207#define C(x) PERF_COUNT_HW_CACHE_##x
208
209/*
210 * Table of generalized cache-related events.
211 * 0 means not supported, -1 means nonsensical, other values
212 * are event codes.
213 */
214static int power8_cache_events[C(MAX)][C(OP_MAX)][C(RESULT_MAX)] = {
215 [ C(L1D) ] = {
216 [ C(OP_READ) ] = {
217 [ C(RESULT_ACCESS) ] = PM_LD_REF_L1,
218 [ C(RESULT_MISS) ] = PM_LD_MISS_L1,
219 },
220 [ C(OP_WRITE) ] = {
221 [ C(RESULT_ACCESS) ] = 0,
222 [ C(RESULT_MISS) ] = PM_ST_MISS_L1,
223 },
224 [ C(OP_PREFETCH) ] = {
225 [ C(RESULT_ACCESS) ] = PM_L1_PREF,
226 [ C(RESULT_MISS) ] = 0,
227 },
228 },
229 [ C(L1I) ] = {
230 [ C(OP_READ) ] = {
231 [ C(RESULT_ACCESS) ] = PM_INST_FROM_L1,
232 [ C(RESULT_MISS) ] = PM_L1_ICACHE_MISS,
233 },
234 [ C(OP_WRITE) ] = {
235 [ C(RESULT_ACCESS) ] = PM_L1_DEMAND_WRITE,
236 [ C(RESULT_MISS) ] = -1,
237 },
238 [ C(OP_PREFETCH) ] = {
239 [ C(RESULT_ACCESS) ] = PM_IC_PREF_WRITE,
240 [ C(RESULT_MISS) ] = 0,
241 },
242 },
243 [ C(LL) ] = {
244 [ C(OP_READ) ] = {
245 [ C(RESULT_ACCESS) ] = PM_DATA_FROM_L3,
246 [ C(RESULT_MISS) ] = PM_DATA_FROM_L3MISS,
247 },
248 [ C(OP_WRITE) ] = {
249 [ C(RESULT_ACCESS) ] = PM_L2_ST,
250 [ C(RESULT_MISS) ] = PM_L2_ST_MISS,
251 },
252 [ C(OP_PREFETCH) ] = {
253 [ C(RESULT_ACCESS) ] = PM_L3_PREF_ALL,
254 [ C(RESULT_MISS) ] = 0,
255 },
256 },
257 [ C(DTLB) ] = {
258 [ C(OP_READ) ] = {
259 [ C(RESULT_ACCESS) ] = 0,
260 [ C(RESULT_MISS) ] = PM_DTLB_MISS,
261 },
262 [ C(OP_WRITE) ] = {
263 [ C(RESULT_ACCESS) ] = -1,
264 [ C(RESULT_MISS) ] = -1,
265 },
266 [ C(OP_PREFETCH) ] = {
267 [ C(RESULT_ACCESS) ] = -1,
268 [ C(RESULT_MISS) ] = -1,
269 },
270 },
271 [ C(ITLB) ] = {
272 [ C(OP_READ) ] = {
273 [ C(RESULT_ACCESS) ] = 0,
274 [ C(RESULT_MISS) ] = PM_ITLB_MISS,
275 },
276 [ C(OP_WRITE) ] = {
277 [ C(RESULT_ACCESS) ] = -1,
278 [ C(RESULT_MISS) ] = -1,
279 },
280 [ C(OP_PREFETCH) ] = {
281 [ C(RESULT_ACCESS) ] = -1,
282 [ C(RESULT_MISS) ] = -1,
283 },
284 },
285 [ C(BPU) ] = {
286 [ C(OP_READ) ] = {
287 [ C(RESULT_ACCESS) ] = PM_BRU_FIN,
288 [ C(RESULT_MISS) ] = PM_BR_MPRED_CMPL,
289 },
290 [ C(OP_WRITE) ] = {
291 [ C(RESULT_ACCESS) ] = -1,
292 [ C(RESULT_MISS) ] = -1,
293 },
294 [ C(OP_PREFETCH) ] = {
295 [ C(RESULT_ACCESS) ] = -1,
296 [ C(RESULT_MISS) ] = -1,
297 },
298 },
299 [ C(NODE) ] = {
300 [ C(OP_READ) ] = {
301 [ C(RESULT_ACCESS) ] = -1,
302 [ C(RESULT_MISS) ] = -1,
303 },
304 [ C(OP_WRITE) ] = {
305 [ C(RESULT_ACCESS) ] = -1,
306 [ C(RESULT_MISS) ] = -1,
307 },
308 [ C(OP_PREFETCH) ] = {
309 [ C(RESULT_ACCESS) ] = -1,
310 [ C(RESULT_MISS) ] = -1,
311 },
312 },
313};
314
315#undef C
316
Michael Ellermane05b9b92013-04-25 19:28:28 +0000317static struct power_pmu power8_pmu = {
318 .name = "POWER8",
Madhavan Srinivasan4d3576b2016-06-26 23:07:04 +0530319 .n_counter = MAX_PMU_COUNTERS,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000320 .max_alternatives = MAX_ALT + 1,
Madhavan Srinivasan4d3576b2016-06-26 23:07:04 +0530321 .add_fields = ISA207_ADD_FIELDS,
322 .test_adder = ISA207_TEST_ADDER,
Madhavan Srinivasan7ffd9482016-06-26 23:07:05 +0530323 .compute_mmcr = isa207_compute_mmcr,
Anshuman Khandualb1113552013-04-22 19:42:43 +0000324 .config_bhrb = power8_config_bhrb,
325 .bhrb_filter_map = power8_bhrb_filter_map,
Madhavan Srinivasan7ffd9482016-06-26 23:07:05 +0530326 .get_constraint = isa207_get_constraint,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000327 .get_alternatives = power8_get_alternatives,
Madhavan Srinivasan7ffd9482016-06-26 23:07:05 +0530328 .disable_pmc = isa207_disable_pmc,
Madhavan Srinivasan370f06c2016-01-25 14:03:46 +0530329 .flags = PPMU_HAS_SIER | PPMU_ARCH_207S,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000330 .n_generic = ARRAY_SIZE(power8_generic_events),
331 .generic_events = power8_generic_events,
Michael Ellerman2fdd3132014-01-24 15:50:51 +1100332 .cache_events = &power8_cache_events,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000333 .attr_groups = power8_pmu_attr_groups,
Anshuman Khandualb1113552013-04-22 19:42:43 +0000334 .bhrb_nr = 32,
Michael Ellermane05b9b92013-04-25 19:28:28 +0000335};
336
337static int __init init_power8_pmu(void)
338{
Michael Ellerman5d7ead02013-07-13 12:53:40 +1000339 int rc;
340
Michael Ellermane05b9b92013-04-25 19:28:28 +0000341 if (!cur_cpu_spec->oprofile_cpu_type ||
342 strcmp(cur_cpu_spec->oprofile_cpu_type, "ppc64/power8"))
343 return -ENODEV;
344
Michael Ellerman5d7ead02013-07-13 12:53:40 +1000345 rc = register_power_pmu(&power8_pmu);
346 if (rc)
347 return rc;
348
349 /* Tell userspace that EBB is supported */
350 cur_cpu_spec->cpu_user_features2 |= PPC_FEATURE2_EBB;
351
Michael Ellermanc2e37a22014-03-14 16:00:29 +1100352 if (cpu_has_feature(CPU_FTR_PMAO_BUG))
353 pr_info("PMAO restore workaround active.\n");
354
Michael Ellerman5d7ead02013-07-13 12:53:40 +1000355 return 0;
Michael Ellermane05b9b92013-04-25 19:28:28 +0000356}
357early_initcall(init_power8_pmu);