blob: a99a8cbac729d7558bb47d88ece7d1d69436cddb [file] [log] [blame]
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001#include <linux/bitops.h>
2#include <linux/types.h>
3#include <linux/slab.h>
Peter Zijlstraca037702010-03-02 19:52:12 +01004
Kevin Winchesterde0428a2011-08-30 20:41:05 -03005#include <asm/perf_event.h>
Stephane Eranian3e702ff2012-02-09 23:20:58 +01006#include <asm/insn.h>
Kevin Winchesterde0428a2011-08-30 20:41:05 -03007
Borislav Petkov27f6d222016-02-10 10:55:23 +01008#include "../perf_event.h"
Peter Zijlstraca037702010-03-02 19:52:12 +01009
10/* The size of a BTS record in bytes: */
11#define BTS_RECORD_SIZE 24
12
13#define BTS_BUFFER_SIZE (PAGE_SIZE << 4)
Yan, Zheng15617492015-05-06 15:33:52 -040014#define PEBS_BUFFER_SIZE (PAGE_SIZE << 4)
Peter Zijlstra9536c8d2013-10-15 12:14:04 +020015#define PEBS_FIXUP_SIZE PAGE_SIZE
Peter Zijlstraca037702010-03-02 19:52:12 +010016
17/*
18 * pebs_record_32 for p4 and core not supported
19
20struct pebs_record_32 {
21 u32 flags, ip;
22 u32 ax, bc, cx, dx;
23 u32 si, di, bp, sp;
24};
25
26 */
27
Stephane Eranianf20093e2013-01-24 16:10:32 +010028union intel_x86_pebs_dse {
29 u64 val;
30 struct {
31 unsigned int ld_dse:4;
32 unsigned int ld_stlb_miss:1;
33 unsigned int ld_locked:1;
34 unsigned int ld_reserved:26;
35 };
36 struct {
37 unsigned int st_l1d_hit:1;
38 unsigned int st_reserved1:3;
39 unsigned int st_stlb_miss:1;
40 unsigned int st_locked:1;
41 unsigned int st_reserved2:26;
42 };
43};
44
45
46/*
47 * Map PEBS Load Latency Data Source encodings to generic
48 * memory data source information
49 */
50#define P(a, b) PERF_MEM_S(a, b)
51#define OP_LH (P(OP, LOAD) | P(LVL, HIT))
52#define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
53
54static const u64 pebs_data_source[] = {
55 P(OP, LOAD) | P(LVL, MISS) | P(LVL, L3) | P(SNOOP, NA),/* 0x00:ukn L3 */
56 OP_LH | P(LVL, L1) | P(SNOOP, NONE), /* 0x01: L1 local */
57 OP_LH | P(LVL, LFB) | P(SNOOP, NONE), /* 0x02: LFB hit */
58 OP_LH | P(LVL, L2) | P(SNOOP, NONE), /* 0x03: L2 hit */
59 OP_LH | P(LVL, L3) | P(SNOOP, NONE), /* 0x04: L3 hit */
60 OP_LH | P(LVL, L3) | P(SNOOP, MISS), /* 0x05: L3 hit, snoop miss */
61 OP_LH | P(LVL, L3) | P(SNOOP, HIT), /* 0x06: L3 hit, snoop hit */
62 OP_LH | P(LVL, L3) | P(SNOOP, HITM), /* 0x07: L3 hit, snoop hitm */
63 OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HIT), /* 0x08: L3 miss snoop hit */
64 OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HITM), /* 0x09: L3 miss snoop hitm*/
65 OP_LH | P(LVL, LOC_RAM) | P(SNOOP, HIT), /* 0x0a: L3 miss, shared */
66 OP_LH | P(LVL, REM_RAM1) | P(SNOOP, HIT), /* 0x0b: L3 miss, shared */
67 OP_LH | P(LVL, LOC_RAM) | SNOOP_NONE_MISS,/* 0x0c: L3 miss, excl */
68 OP_LH | P(LVL, REM_RAM1) | SNOOP_NONE_MISS,/* 0x0d: L3 miss, excl */
69 OP_LH | P(LVL, IO) | P(SNOOP, NONE), /* 0x0e: I/O */
70 OP_LH | P(LVL, UNC) | P(SNOOP, NONE), /* 0x0f: uncached */
71};
72
Stephane Eranian9ad64c02013-01-24 16:10:34 +010073static u64 precise_store_data(u64 status)
74{
75 union intel_x86_pebs_dse dse;
76 u64 val = P(OP, STORE) | P(SNOOP, NA) | P(LVL, L1) | P(TLB, L2);
77
78 dse.val = status;
79
80 /*
81 * bit 4: TLB access
82 * 1 = stored missed 2nd level TLB
83 *
84 * so it either hit the walker or the OS
85 * otherwise hit 2nd level TLB
86 */
87 if (dse.st_stlb_miss)
88 val |= P(TLB, MISS);
89 else
90 val |= P(TLB, HIT);
91
92 /*
93 * bit 0: hit L1 data cache
94 * if not set, then all we know is that
95 * it missed L1D
96 */
97 if (dse.st_l1d_hit)
98 val |= P(LVL, HIT);
99 else
100 val |= P(LVL, MISS);
101
102 /*
103 * bit 5: Locked prefix
104 */
105 if (dse.st_locked)
106 val |= P(LOCK, LOCKED);
107
108 return val;
109}
110
Stephane Eranianc8aab2e2014-08-11 21:27:13 +0200111static u64 precise_datala_hsw(struct perf_event *event, u64 status)
Andi Kleenf9134f32013-06-17 17:36:52 -0700112{
113 union perf_mem_data_src dse;
114
Stephane Eranian770eee12014-08-11 21:27:12 +0200115 dse.val = PERF_MEM_NA;
116
117 if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW)
118 dse.mem_op = PERF_MEM_OP_STORE;
119 else if (event->hw.flags & PERF_X86_EVENT_PEBS_LD_HSW)
120 dse.mem_op = PERF_MEM_OP_LOAD;
Stephane Eranian722e76e2014-05-15 17:56:44 +0200121
122 /*
123 * L1 info only valid for following events:
124 *
125 * MEM_UOPS_RETIRED.STLB_MISS_STORES
126 * MEM_UOPS_RETIRED.LOCK_STORES
127 * MEM_UOPS_RETIRED.SPLIT_STORES
128 * MEM_UOPS_RETIRED.ALL_STORES
129 */
Stephane Eranianc8aab2e2014-08-11 21:27:13 +0200130 if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW) {
131 if (status & 1)
132 dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_HIT;
133 else
134 dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_MISS;
135 }
Andi Kleenf9134f32013-06-17 17:36:52 -0700136 return dse.val;
137}
138
Stephane Eranianf20093e2013-01-24 16:10:32 +0100139static u64 load_latency_data(u64 status)
140{
141 union intel_x86_pebs_dse dse;
142 u64 val;
143 int model = boot_cpu_data.x86_model;
144 int fam = boot_cpu_data.x86;
145
146 dse.val = status;
147
148 /*
149 * use the mapping table for bit 0-3
150 */
151 val = pebs_data_source[dse.ld_dse];
152
153 /*
154 * Nehalem models do not support TLB, Lock infos
155 */
156 if (fam == 0x6 && (model == 26 || model == 30
157 || model == 31 || model == 46)) {
158 val |= P(TLB, NA) | P(LOCK, NA);
159 return val;
160 }
161 /*
162 * bit 4: TLB access
163 * 0 = did not miss 2nd level TLB
164 * 1 = missed 2nd level TLB
165 */
166 if (dse.ld_stlb_miss)
167 val |= P(TLB, MISS) | P(TLB, L2);
168 else
169 val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2);
170
171 /*
172 * bit 5: locked prefix
173 */
174 if (dse.ld_locked)
175 val |= P(LOCK, LOCKED);
176
177 return val;
178}
179
Peter Zijlstraca037702010-03-02 19:52:12 +0100180struct pebs_record_core {
181 u64 flags, ip;
182 u64 ax, bx, cx, dx;
183 u64 si, di, bp, sp;
184 u64 r8, r9, r10, r11;
185 u64 r12, r13, r14, r15;
186};
187
188struct pebs_record_nhm {
189 u64 flags, ip;
190 u64 ax, bx, cx, dx;
191 u64 si, di, bp, sp;
192 u64 r8, r9, r10, r11;
193 u64 r12, r13, r14, r15;
194 u64 status, dla, dse, lat;
195};
196
Andi Kleen130768b2013-06-17 17:36:47 -0700197/*
198 * Same as pebs_record_nhm, with two additional fields.
199 */
200struct pebs_record_hsw {
Andi Kleen748e86a2013-09-05 20:37:39 -0700201 u64 flags, ip;
202 u64 ax, bx, cx, dx;
203 u64 si, di, bp, sp;
204 u64 r8, r9, r10, r11;
205 u64 r12, r13, r14, r15;
206 u64 status, dla, dse, lat;
Peter Zijlstrad2beea42013-09-12 13:00:47 +0200207 u64 real_ip, tsx_tuning;
Andi Kleen748e86a2013-09-05 20:37:39 -0700208};
209
210union hsw_tsx_tuning {
211 struct {
212 u32 cycles_last_block : 32,
213 hle_abort : 1,
214 rtm_abort : 1,
215 instruction_abort : 1,
216 non_instruction_abort : 1,
217 retry : 1,
218 data_conflict : 1,
219 capacity_writes : 1,
220 capacity_reads : 1;
221 };
222 u64 value;
Andi Kleen130768b2013-06-17 17:36:47 -0700223};
224
Andi Kleena405bad2013-09-20 07:40:40 -0700225#define PEBS_HSW_TSX_FLAGS 0xff00000000ULL
226
Andi Kleen2f7ebf22015-05-10 12:22:40 -0700227/* Same as HSW, plus TSC */
228
229struct pebs_record_skl {
230 u64 flags, ip;
231 u64 ax, bx, cx, dx;
232 u64 si, di, bp, sp;
233 u64 r8, r9, r10, r11;
234 u64 r12, r13, r14, r15;
235 u64 status, dla, dse, lat;
236 u64 real_ip, tsx_tuning;
237 u64 tsc;
238};
239
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300240void init_debug_store_on_cpu(int cpu)
Peter Zijlstraca037702010-03-02 19:52:12 +0100241{
242 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
243
244 if (!ds)
245 return;
246
247 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA,
248 (u32)((u64)(unsigned long)ds),
249 (u32)((u64)(unsigned long)ds >> 32));
250}
251
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300252void fini_debug_store_on_cpu(int cpu)
Peter Zijlstraca037702010-03-02 19:52:12 +0100253{
254 if (!per_cpu(cpu_hw_events, cpu).ds)
255 return;
256
257 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0);
258}
259
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200260static DEFINE_PER_CPU(void *, insn_buffer);
261
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200262static int alloc_pebs_buffer(int cpu)
263{
264 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
Peter Zijlstra96681fc2010-10-19 14:55:33 +0200265 int node = cpu_to_node(cpu);
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400266 int max;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200267 void *buffer, *ibuffer;
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200268
269 if (!x86_pmu.pebs)
270 return 0;
271
Jiri Olsae72daf32016-03-01 20:03:52 +0100272 buffer = kzalloc_node(x86_pmu.pebs_buffer_size, GFP_KERNEL, node);
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200273 if (unlikely(!buffer))
274 return -ENOMEM;
275
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200276 /*
277 * HSW+ already provides us the eventing ip; no need to allocate this
278 * buffer then.
279 */
280 if (x86_pmu.intel_cap.pebs_format < 2) {
281 ibuffer = kzalloc_node(PEBS_FIXUP_SIZE, GFP_KERNEL, node);
282 if (!ibuffer) {
283 kfree(buffer);
284 return -ENOMEM;
285 }
286 per_cpu(insn_buffer, cpu) = ibuffer;
287 }
288
Jiri Olsae72daf32016-03-01 20:03:52 +0100289 max = x86_pmu.pebs_buffer_size / x86_pmu.pebs_record_size;
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200290
291 ds->pebs_buffer_base = (u64)(unsigned long)buffer;
292 ds->pebs_index = ds->pebs_buffer_base;
293 ds->pebs_absolute_maximum = ds->pebs_buffer_base +
294 max * x86_pmu.pebs_record_size;
295
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200296 return 0;
297}
298
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200299static void release_pebs_buffer(int cpu)
300{
301 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
302
303 if (!ds || !x86_pmu.pebs)
304 return;
305
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200306 kfree(per_cpu(insn_buffer, cpu));
307 per_cpu(insn_buffer, cpu) = NULL;
308
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200309 kfree((void *)(unsigned long)ds->pebs_buffer_base);
310 ds->pebs_buffer_base = 0;
311}
312
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200313static int alloc_bts_buffer(int cpu)
314{
315 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
Peter Zijlstra96681fc2010-10-19 14:55:33 +0200316 int node = cpu_to_node(cpu);
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200317 int max, thresh;
318 void *buffer;
319
320 if (!x86_pmu.bts)
321 return 0;
322
David Rientjes44851542014-06-30 16:04:08 -0700323 buffer = kzalloc_node(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node);
324 if (unlikely(!buffer)) {
325 WARN_ONCE(1, "%s: BTS buffer allocation failure\n", __func__);
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200326 return -ENOMEM;
David Rientjes44851542014-06-30 16:04:08 -0700327 }
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200328
329 max = BTS_BUFFER_SIZE / BTS_RECORD_SIZE;
330 thresh = max / 16;
331
332 ds->bts_buffer_base = (u64)(unsigned long)buffer;
333 ds->bts_index = ds->bts_buffer_base;
334 ds->bts_absolute_maximum = ds->bts_buffer_base +
335 max * BTS_RECORD_SIZE;
336 ds->bts_interrupt_threshold = ds->bts_absolute_maximum -
337 thresh * BTS_RECORD_SIZE;
338
339 return 0;
340}
341
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200342static void release_bts_buffer(int cpu)
343{
344 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
345
346 if (!ds || !x86_pmu.bts)
347 return;
348
349 kfree((void *)(unsigned long)ds->bts_buffer_base);
350 ds->bts_buffer_base = 0;
351}
352
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200353static int alloc_ds_buffer(int cpu)
354{
Peter Zijlstra96681fc2010-10-19 14:55:33 +0200355 int node = cpu_to_node(cpu);
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200356 struct debug_store *ds;
357
Joe Perches7bfb7e62013-08-29 13:59:17 -0700358 ds = kzalloc_node(sizeof(*ds), GFP_KERNEL, node);
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200359 if (unlikely(!ds))
360 return -ENOMEM;
361
362 per_cpu(cpu_hw_events, cpu).ds = ds;
363
364 return 0;
365}
366
367static void release_ds_buffer(int cpu)
368{
369 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
370
371 if (!ds)
372 return;
373
374 per_cpu(cpu_hw_events, cpu).ds = NULL;
375 kfree(ds);
376}
377
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300378void release_ds_buffers(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100379{
380 int cpu;
381
382 if (!x86_pmu.bts && !x86_pmu.pebs)
383 return;
384
385 get_online_cpus();
Peter Zijlstraca037702010-03-02 19:52:12 +0100386 for_each_online_cpu(cpu)
387 fini_debug_store_on_cpu(cpu);
388
389 for_each_possible_cpu(cpu) {
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200390 release_pebs_buffer(cpu);
391 release_bts_buffer(cpu);
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200392 release_ds_buffer(cpu);
Peter Zijlstraca037702010-03-02 19:52:12 +0100393 }
Peter Zijlstraca037702010-03-02 19:52:12 +0100394 put_online_cpus();
395}
396
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300397void reserve_ds_buffers(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100398{
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200399 int bts_err = 0, pebs_err = 0;
400 int cpu;
401
402 x86_pmu.bts_active = 0;
403 x86_pmu.pebs_active = 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100404
405 if (!x86_pmu.bts && !x86_pmu.pebs)
Peter Zijlstraf80c9e32010-10-19 14:50:02 +0200406 return;
Peter Zijlstraca037702010-03-02 19:52:12 +0100407
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200408 if (!x86_pmu.bts)
409 bts_err = 1;
410
411 if (!x86_pmu.pebs)
412 pebs_err = 1;
413
Peter Zijlstraca037702010-03-02 19:52:12 +0100414 get_online_cpus();
415
416 for_each_possible_cpu(cpu) {
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200417 if (alloc_ds_buffer(cpu)) {
418 bts_err = 1;
419 pebs_err = 1;
420 }
Peter Zijlstraca037702010-03-02 19:52:12 +0100421
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200422 if (!bts_err && alloc_bts_buffer(cpu))
423 bts_err = 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100424
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200425 if (!pebs_err && alloc_pebs_buffer(cpu))
426 pebs_err = 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100427
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200428 if (bts_err && pebs_err)
429 break;
Peter Zijlstraca037702010-03-02 19:52:12 +0100430 }
431
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200432 if (bts_err) {
433 for_each_possible_cpu(cpu)
434 release_bts_buffer(cpu);
435 }
436
437 if (pebs_err) {
438 for_each_possible_cpu(cpu)
439 release_pebs_buffer(cpu);
440 }
441
442 if (bts_err && pebs_err) {
443 for_each_possible_cpu(cpu)
444 release_ds_buffer(cpu);
445 } else {
446 if (x86_pmu.bts && !bts_err)
447 x86_pmu.bts_active = 1;
448
449 if (x86_pmu.pebs && !pebs_err)
450 x86_pmu.pebs_active = 1;
451
Peter Zijlstraca037702010-03-02 19:52:12 +0100452 for_each_online_cpu(cpu)
453 init_debug_store_on_cpu(cpu);
454 }
455
456 put_online_cpus();
Peter Zijlstraca037702010-03-02 19:52:12 +0100457}
458
459/*
460 * BTS
461 */
462
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300463struct event_constraint bts_constraint =
Robert Richter15c7ad52012-06-20 20:46:33 +0200464 EVENT_CONSTRAINT(0, 1ULL << INTEL_PMC_IDX_FIXED_BTS, 0);
Peter Zijlstraca037702010-03-02 19:52:12 +0100465
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300466void intel_pmu_enable_bts(u64 config)
Peter Zijlstraca037702010-03-02 19:52:12 +0100467{
468 unsigned long debugctlmsr;
469
470 debugctlmsr = get_debugctlmsr();
471
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100472 debugctlmsr |= DEBUGCTLMSR_TR;
473 debugctlmsr |= DEBUGCTLMSR_BTS;
Alexander Shishkin80623822015-01-30 12:40:35 +0200474 if (config & ARCH_PERFMON_EVENTSEL_INT)
475 debugctlmsr |= DEBUGCTLMSR_BTINT;
Peter Zijlstraca037702010-03-02 19:52:12 +0100476
477 if (!(config & ARCH_PERFMON_EVENTSEL_OS))
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100478 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_OS;
Peter Zijlstraca037702010-03-02 19:52:12 +0100479
480 if (!(config & ARCH_PERFMON_EVENTSEL_USR))
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100481 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_USR;
Peter Zijlstraca037702010-03-02 19:52:12 +0100482
483 update_debugctlmsr(debugctlmsr);
484}
485
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300486void intel_pmu_disable_bts(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100487{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500488 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100489 unsigned long debugctlmsr;
490
491 if (!cpuc->ds)
492 return;
493
494 debugctlmsr = get_debugctlmsr();
495
496 debugctlmsr &=
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100497 ~(DEBUGCTLMSR_TR | DEBUGCTLMSR_BTS | DEBUGCTLMSR_BTINT |
498 DEBUGCTLMSR_BTS_OFF_OS | DEBUGCTLMSR_BTS_OFF_USR);
Peter Zijlstraca037702010-03-02 19:52:12 +0100499
500 update_debugctlmsr(debugctlmsr);
501}
502
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300503int intel_pmu_drain_bts_buffer(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100504{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500505 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100506 struct debug_store *ds = cpuc->ds;
507 struct bts_record {
508 u64 from;
509 u64 to;
510 u64 flags;
511 };
Robert Richter15c7ad52012-06-20 20:46:33 +0200512 struct perf_event *event = cpuc->events[INTEL_PMC_IDX_FIXED_BTS];
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300513 struct bts_record *at, *base, *top;
Peter Zijlstraca037702010-03-02 19:52:12 +0100514 struct perf_output_handle handle;
515 struct perf_event_header header;
516 struct perf_sample_data data;
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300517 unsigned long skip = 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100518 struct pt_regs regs;
519
520 if (!event)
Stephane Eranianb0b20722010-09-10 13:28:01 +0200521 return 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100522
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200523 if (!x86_pmu.bts_active)
Stephane Eranianb0b20722010-09-10 13:28:01 +0200524 return 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100525
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300526 base = (struct bts_record *)(unsigned long)ds->bts_buffer_base;
527 top = (struct bts_record *)(unsigned long)ds->bts_index;
Peter Zijlstraca037702010-03-02 19:52:12 +0100528
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300529 if (top <= base)
Stephane Eranianb0b20722010-09-10 13:28:01 +0200530 return 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100531
Stephane Eranian0e480262013-03-19 16:10:38 +0100532 memset(&regs, 0, sizeof(regs));
533
Peter Zijlstraca037702010-03-02 19:52:12 +0100534 ds->bts_index = ds->bts_buffer_base;
535
Robert Richterfd0d0002012-04-02 20:19:08 +0200536 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstraca037702010-03-02 19:52:12 +0100537
538 /*
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300539 * BTS leaks kernel addresses in branches across the cpl boundary,
540 * such as traps or system calls, so unless the user is asking for
541 * kernel tracing (and right now it's not possible), we'd need to
542 * filter them out. But first we need to count how many of those we
543 * have in the current batch. This is an extra O(n) pass, however,
544 * it's much faster than the other one especially considering that
545 * n <= 2560 (BTS_BUFFER_SIZE / BTS_RECORD_SIZE * 15/16; see the
546 * alloc_bts_buffer()).
547 */
548 for (at = base; at < top; at++) {
549 /*
550 * Note that right now *this* BTS code only works if
551 * attr::exclude_kernel is set, but let's keep this extra
552 * check here in case that changes.
553 */
554 if (event->attr.exclude_kernel &&
555 (kernel_ip(at->from) || kernel_ip(at->to)))
556 skip++;
557 }
558
559 /*
Peter Zijlstraca037702010-03-02 19:52:12 +0100560 * Prepare a generic sample, i.e. fill in the invariant fields.
561 * We will overwrite the from and to address before we output
562 * the sample.
563 */
564 perf_prepare_sample(&header, &data, event, &regs);
565
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300566 if (perf_output_begin(&handle, event, header.size *
567 (top - base - skip)))
Stephane Eranianb0b20722010-09-10 13:28:01 +0200568 return 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100569
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300570 for (at = base; at < top; at++) {
571 /* Filter out any records that contain kernel addresses. */
572 if (event->attr.exclude_kernel &&
573 (kernel_ip(at->from) || kernel_ip(at->to)))
574 continue;
575
Peter Zijlstraca037702010-03-02 19:52:12 +0100576 data.ip = at->from;
577 data.addr = at->to;
578
579 perf_output_sample(&handle, &header, &data, event);
580 }
581
582 perf_output_end(&handle);
583
584 /* There's new data available. */
585 event->hw.interrupts++;
586 event->pending_kill = POLL_IN;
Stephane Eranianb0b20722010-09-10 13:28:01 +0200587 return 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100588}
589
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400590static inline void intel_pmu_drain_pebs_buffer(void)
591{
592 struct pt_regs regs;
593
594 x86_pmu.drain_pebs(&regs);
595}
596
597void intel_pmu_pebs_sched_task(struct perf_event_context *ctx, bool sched_in)
598{
599 if (!sched_in)
600 intel_pmu_drain_pebs_buffer();
601}
602
Peter Zijlstraca037702010-03-02 19:52:12 +0100603/*
604 * PEBS
605 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300606struct event_constraint intel_core2_pebs_event_constraints[] = {
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700607 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
608 INTEL_FLAGS_UEVENT_CONSTRAINT(0xfec1, 0x1), /* X87_OPS_RETIRED.ANY */
609 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */
610 INTEL_FLAGS_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */
611 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200612 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
613 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01),
Peter Zijlstraca037702010-03-02 19:52:12 +0100614 EVENT_CONSTRAINT_END
615};
616
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300617struct event_constraint intel_atom_pebs_event_constraints[] = {
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700618 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
619 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */
620 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200621 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
622 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01),
Stephane Eranian673d1882015-12-03 21:03:10 +0100623 /* Allow all events as PEBS with no flags */
624 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
Stephane Eranian17e31622011-03-02 17:05:01 +0200625 EVENT_CONSTRAINT_END
626};
627
Yan, Zheng1fa64182013-07-18 17:02:24 +0800628struct event_constraint intel_slm_pebs_event_constraints[] = {
Kan Liang33636732015-01-12 17:42:21 +0000629 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
630 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x1),
Andi Kleen86a04462014-08-11 21:27:10 +0200631 /* Allow all events as PEBS with no flags */
632 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
Yan, Zheng1fa64182013-07-18 17:02:24 +0800633 EVENT_CONSTRAINT_END
634};
635
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300636struct event_constraint intel_nehalem_pebs_event_constraints[] = {
Stephane Eranianf20093e2013-01-24 16:10:32 +0100637 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700638 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
639 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
640 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */
Lin Ming7d5d02d2011-03-09 23:21:29 +0800641 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700642 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
643 INTEL_FLAGS_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */
644 INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
645 INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
646 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
647 INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200648 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
649 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
Stephane Eranian17e31622011-03-02 17:05:01 +0200650 EVENT_CONSTRAINT_END
651};
652
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300653struct event_constraint intel_westmere_pebs_event_constraints[] = {
Stephane Eranianf20093e2013-01-24 16:10:32 +0100654 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700655 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
656 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
657 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INSTR_RETIRED.* */
Lin Ming7d5d02d2011-03-09 23:21:29 +0800658 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700659 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
660 INTEL_FLAGS_EVENT_CONSTRAINT(0xc5, 0xf), /* BR_MISP_RETIRED.* */
661 INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
662 INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
663 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
664 INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200665 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
666 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
Peter Zijlstraca037702010-03-02 19:52:12 +0100667 EVENT_CONSTRAINT_END
668};
669
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300670struct event_constraint intel_snb_pebs_event_constraints[] = {
Andi Kleen0dbc9472014-09-24 07:34:47 -0700671 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
Stephane Eranianf20093e2013-01-24 16:10:32 +0100672 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100673 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
Andi Kleen86a04462014-08-11 21:27:10 +0200674 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
675 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100676 INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */
677 INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
678 INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
679 INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
Andi Kleen86a04462014-08-11 21:27:10 +0200680 /* Allow all events as PEBS with no flags */
681 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
Lin Mingb06b3d42011-03-02 21:27:04 +0800682 EVENT_CONSTRAINT_END
683};
684
Stephane Eranian20a36e32012-09-11 01:07:01 +0200685struct event_constraint intel_ivb_pebs_event_constraints[] = {
Andi Kleen0dbc9472014-09-24 07:34:47 -0700686 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
Stephane Eranianf20093e2013-01-24 16:10:32 +0100687 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100688 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
Andi Kleen86a04462014-08-11 21:27:10 +0200689 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
690 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
Andi Kleen72469762015-12-04 03:50:52 -0800691 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
692 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100693 INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */
694 INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
695 INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
696 INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
Andi Kleen86a04462014-08-11 21:27:10 +0200697 /* Allow all events as PEBS with no flags */
698 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
Stephane Eranian20a36e32012-09-11 01:07:01 +0200699 EVENT_CONSTRAINT_END
700};
701
Andi Kleen30443182013-06-17 17:36:49 -0700702struct event_constraint intel_hsw_pebs_event_constraints[] = {
Andi Kleen0dbc9472014-09-24 07:34:47 -0700703 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
Andi Kleen86a04462014-08-11 21:27:10 +0200704 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
705 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
706 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
Andi Kleen72469762015-12-04 03:50:52 -0800707 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
708 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
Andi Kleen86a04462014-08-11 21:27:10 +0200709 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100710 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
711 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
712 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
713 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
714 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
715 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
716 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
717 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
718 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
719 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
Andi Kleen86a04462014-08-11 21:27:10 +0200720 /* Allow all events as PEBS with no flags */
721 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
Andi Kleen30443182013-06-17 17:36:49 -0700722 EVENT_CONSTRAINT_END
723};
724
Stephane Eranianb3e62462016-03-03 20:50:42 +0100725struct event_constraint intel_bdw_pebs_event_constraints[] = {
726 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
727 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
728 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
729 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
730 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
731 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
732 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
733 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
734 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
735 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
736 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
737 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
738 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
739 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
740 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
741 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
742 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
743 /* Allow all events as PEBS with no flags */
744 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
745 EVENT_CONSTRAINT_END
746};
747
748
Andi Kleen9a92e162015-05-10 12:22:44 -0700749struct event_constraint intel_skl_pebs_event_constraints[] = {
750 INTEL_FLAGS_UEVENT_CONSTRAINT(0x1c0, 0x2), /* INST_RETIRED.PREC_DIST */
Andi Kleen72469762015-12-04 03:50:52 -0800751 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
752 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
Andi Kleen442f5c72015-12-04 03:50:32 -0800753 /* INST_RETIRED.TOTAL_CYCLES_PS (inv=1, cmask=16) (cycles:p). */
754 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
Andi Kleen9a92e162015-05-10 12:22:44 -0700755 INTEL_PLD_CONSTRAINT(0x1cd, 0xf), /* MEM_TRANS_RETIRED.* */
756 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_LOADS */
757 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_STORES */
758 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_INST_RETIRED.LOCK_LOADS */
759 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x22d0, 0xf), /* MEM_INST_RETIRED.LOCK_STORES */
760 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_INST_RETIRED.SPLIT_LOADS */
761 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_INST_RETIRED.SPLIT_STORES */
762 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_INST_RETIRED.ALL_LOADS */
763 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_INST_RETIRED.ALL_STORES */
764 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_RETIRED.* */
765 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_L3_HIT_RETIRED.* */
766 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_L3_MISS_RETIRED.* */
767 /* Allow all events as PEBS with no flags */
768 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
769 EVENT_CONSTRAINT_END
770};
771
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300772struct event_constraint *intel_pebs_constraints(struct perf_event *event)
Peter Zijlstraca037702010-03-02 19:52:12 +0100773{
774 struct event_constraint *c;
775
Peter Zijlstraab608342010-04-08 23:03:20 +0200776 if (!event->attr.precise_ip)
Peter Zijlstraca037702010-03-02 19:52:12 +0100777 return NULL;
778
779 if (x86_pmu.pebs_constraints) {
780 for_each_event_constraint(c, x86_pmu.pebs_constraints) {
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100781 if ((event->hw.config & c->cmask) == c->code) {
782 event->hw.flags |= c->flags;
Peter Zijlstraca037702010-03-02 19:52:12 +0100783 return c;
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100784 }
Peter Zijlstraca037702010-03-02 19:52:12 +0100785 }
786 }
787
788 return &emptyconstraint;
789}
790
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400791static inline bool pebs_is_enabled(struct cpu_hw_events *cpuc)
792{
793 return (cpuc->pebs_enabled & ((1ULL << MAX_PEBS_EVENTS) - 1));
794}
795
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300796void intel_pmu_pebs_enable(struct perf_event *event)
Peter Zijlstraca037702010-03-02 19:52:12 +0100797{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500798 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100799 struct hw_perf_event *hwc = &event->hw;
Yan, Zheng851559e2015-05-06 15:33:47 -0400800 struct debug_store *ds = cpuc->ds;
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400801 bool first_pebs;
802 u64 threshold;
Peter Zijlstraca037702010-03-02 19:52:12 +0100803
804 hwc->config &= ~ARCH_PERFMON_EVENTSEL_INT;
805
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400806 first_pebs = !pebs_is_enabled(cpuc);
Peter Zijlstraad0e6cf2010-03-06 19:49:06 +0100807 cpuc->pebs_enabled |= 1ULL << hwc->idx;
Stephane Eranianf20093e2013-01-24 16:10:32 +0100808
809 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
810 cpuc->pebs_enabled |= 1ULL << (hwc->idx + 32);
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100811 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
812 cpuc->pebs_enabled |= 1ULL << 63;
Yan, Zheng851559e2015-05-06 15:33:47 -0400813
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400814 /*
815 * When the event is constrained enough we can use a larger
816 * threshold and run the event with less frequent PMI.
817 */
818 if (hwc->flags & PERF_X86_EVENT_FREERUNNING) {
819 threshold = ds->pebs_absolute_maximum -
820 x86_pmu.max_pebs_events * x86_pmu.pebs_record_size;
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400821
822 if (first_pebs)
823 perf_sched_cb_inc(event->ctx->pmu);
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400824 } else {
825 threshold = ds->pebs_buffer_base + x86_pmu.pebs_record_size;
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400826
827 /*
828 * If not all events can use larger buffer,
829 * roll back to threshold = 1
830 */
831 if (!first_pebs &&
832 (ds->pebs_interrupt_threshold > threshold))
833 perf_sched_cb_dec(event->ctx->pmu);
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400834 }
835
Yan, Zheng851559e2015-05-06 15:33:47 -0400836 /* Use auto-reload if possible to save a MSR write in the PMI */
837 if (hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) {
838 ds->pebs_event_reset[hwc->idx] =
839 (u64)(-hwc->sample_period) & x86_pmu.cntval_mask;
840 }
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400841
842 if (first_pebs || ds->pebs_interrupt_threshold > threshold)
843 ds->pebs_interrupt_threshold = threshold;
Peter Zijlstraca037702010-03-02 19:52:12 +0100844}
845
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300846void intel_pmu_pebs_disable(struct perf_event *event)
Peter Zijlstraca037702010-03-02 19:52:12 +0100847{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500848 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100849 struct hw_perf_event *hwc = &event->hw;
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400850 struct debug_store *ds = cpuc->ds;
Liang, Kan2a853e12015-07-03 20:08:27 +0000851 bool large_pebs = ds->pebs_interrupt_threshold >
852 ds->pebs_buffer_base + x86_pmu.pebs_record_size;
853
854 if (large_pebs)
855 intel_pmu_drain_pebs_buffer();
Peter Zijlstraca037702010-03-02 19:52:12 +0100856
Peter Zijlstraad0e6cf2010-03-06 19:49:06 +0100857 cpuc->pebs_enabled &= ~(1ULL << hwc->idx);
Stephane Eranian983433b2013-06-21 16:20:41 +0200858
Peter Zijlstrab371b592015-05-21 10:57:13 +0200859 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
Stephane Eranian983433b2013-06-21 16:20:41 +0200860 cpuc->pebs_enabled &= ~(1ULL << (hwc->idx + 32));
Peter Zijlstrab371b592015-05-21 10:57:13 +0200861 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
Stephane Eranian983433b2013-06-21 16:20:41 +0200862 cpuc->pebs_enabled &= ~(1ULL << 63);
863
Liang, Kan2a853e12015-07-03 20:08:27 +0000864 if (large_pebs && !pebs_is_enabled(cpuc))
865 perf_sched_cb_dec(event->ctx->pmu);
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400866
Peter Zijlstra4807e3d2010-03-06 13:47:07 +0100867 if (cpuc->enabled)
Peter Zijlstraad0e6cf2010-03-06 19:49:06 +0100868 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
Peter Zijlstraca037702010-03-02 19:52:12 +0100869
870 hwc->config |= ARCH_PERFMON_EVENTSEL_INT;
871}
872
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300873void intel_pmu_pebs_enable_all(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100874{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500875 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100876
877 if (cpuc->pebs_enabled)
878 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
879}
880
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300881void intel_pmu_pebs_disable_all(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100882{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500883 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100884
885 if (cpuc->pebs_enabled)
886 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
887}
888
Peter Zijlstraef21f682010-03-03 13:12:23 +0100889static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs)
890{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500891 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100892 unsigned long from = cpuc->lbr_entries[0].from;
893 unsigned long old_to, to = cpuc->lbr_entries[0].to;
894 unsigned long ip = regs->ip;
Peter Zijlstra57d1c0c2011-10-07 13:36:40 +0200895 int is_64bit = 0;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200896 void *kaddr;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800897 int size;
Peter Zijlstraef21f682010-03-03 13:12:23 +0100898
Peter Zijlstra8db909a2010-03-03 17:07:40 +0100899 /*
900 * We don't need to fixup if the PEBS assist is fault like
901 */
902 if (!x86_pmu.intel_cap.pebs_trap)
903 return 1;
904
Peter Zijlstraa562b182010-03-05 16:29:14 +0100905 /*
906 * No LBR entry, no basic block, no rewinding
907 */
Peter Zijlstraef21f682010-03-03 13:12:23 +0100908 if (!cpuc->lbr_stack.nr || !from || !to)
909 return 0;
910
Peter Zijlstraa562b182010-03-05 16:29:14 +0100911 /*
912 * Basic blocks should never cross user/kernel boundaries
913 */
914 if (kernel_ip(ip) != kernel_ip(to))
915 return 0;
916
917 /*
918 * unsigned math, either ip is before the start (impossible) or
919 * the basic block is larger than 1 page (sanity)
920 */
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200921 if ((ip - to) > PEBS_FIXUP_SIZE)
Peter Zijlstraef21f682010-03-03 13:12:23 +0100922 return 0;
923
924 /*
925 * We sampled a branch insn, rewind using the LBR stack
926 */
927 if (ip == to) {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +0200928 set_linear_ip(regs, from);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100929 return 1;
930 }
931
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800932 size = ip - to;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200933 if (!kernel_ip(ip)) {
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800934 int bytes;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200935 u8 *buf = this_cpu_read(insn_buffer);
936
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800937 /* 'size' must fit our buffer, see above */
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200938 bytes = copy_from_user_nmi(buf, (void __user *)to, size);
Peter Zijlstra0a196842013-10-30 21:16:22 +0100939 if (bytes != 0)
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200940 return 0;
941
942 kaddr = buf;
943 } else {
944 kaddr = (void *)to;
945 }
946
Peter Zijlstraef21f682010-03-03 13:12:23 +0100947 do {
948 struct insn insn;
Peter Zijlstraef21f682010-03-03 13:12:23 +0100949
950 old_to = to;
Peter Zijlstraef21f682010-03-03 13:12:23 +0100951
Peter Zijlstra57d1c0c2011-10-07 13:36:40 +0200952#ifdef CONFIG_X86_64
953 is_64bit = kernel_ip(to) || !test_thread_flag(TIF_IA32);
954#endif
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800955 insn_init(&insn, kaddr, size, is_64bit);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100956 insn_get_length(&insn);
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800957 /*
958 * Make sure there was not a problem decoding the
959 * instruction and getting the length. This is
960 * doubly important because we have an infinite
961 * loop if insn.length=0.
962 */
963 if (!insn.length)
964 break;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200965
Peter Zijlstraef21f682010-03-03 13:12:23 +0100966 to += insn.length;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200967 kaddr += insn.length;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800968 size -= insn.length;
Peter Zijlstraef21f682010-03-03 13:12:23 +0100969 } while (to < ip);
970
971 if (to == ip) {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +0200972 set_linear_ip(regs, old_to);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100973 return 1;
974 }
975
Peter Zijlstraa562b182010-03-05 16:29:14 +0100976 /*
977 * Even though we decoded the basic block, the instruction stream
978 * never matched the given IP, either the TO or the IP got corrupted.
979 */
Peter Zijlstraef21f682010-03-03 13:12:23 +0100980 return 0;
981}
982
Andi Kleen2f7ebf22015-05-10 12:22:40 -0700983static inline u64 intel_hsw_weight(struct pebs_record_skl *pebs)
Andi Kleen748e86a2013-09-05 20:37:39 -0700984{
985 if (pebs->tsx_tuning) {
986 union hsw_tsx_tuning tsx = { .value = pebs->tsx_tuning };
987 return tsx.cycles_last_block;
988 }
989 return 0;
990}
991
Andi Kleen2f7ebf22015-05-10 12:22:40 -0700992static inline u64 intel_hsw_transaction(struct pebs_record_skl *pebs)
Andi Kleena405bad2013-09-20 07:40:40 -0700993{
994 u64 txn = (pebs->tsx_tuning & PEBS_HSW_TSX_FLAGS) >> 32;
995
996 /* For RTM XABORTs also log the abort code from AX */
997 if ((txn & PERF_TXN_TRANSACTION) && (pebs->ax & 1))
998 txn |= ((pebs->ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT;
999 return txn;
1000}
1001
Yan, Zheng43cf7632015-05-06 15:33:48 -04001002static void setup_pebs_sample_data(struct perf_event *event,
1003 struct pt_regs *iregs, void *__pebs,
1004 struct perf_sample_data *data,
1005 struct pt_regs *regs)
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001006{
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001007#define PERF_X86_EVENT_PEBS_HSW_PREC \
1008 (PERF_X86_EVENT_PEBS_ST_HSW | \
1009 PERF_X86_EVENT_PEBS_LD_HSW | \
1010 PERF_X86_EVENT_PEBS_NA_HSW)
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001011 /*
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001012 * We cast to the biggest pebs_record but are careful not to
1013 * unconditionally access the 'extra' entries.
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001014 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001015 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001016 struct pebs_record_skl *pebs = __pebs;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001017 u64 sample_type;
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001018 int fll, fst, dsrc;
1019 int fl = event->hw.flags;
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001020
Yan, Zheng21509082015-05-06 15:33:49 -04001021 if (pebs == NULL)
1022 return;
1023
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001024 sample_type = event->attr.sample_type;
1025 dsrc = sample_type & PERF_SAMPLE_DATA_SRC;
1026
1027 fll = fl & PERF_X86_EVENT_PEBS_LDLAT;
1028 fst = fl & (PERF_X86_EVENT_PEBS_ST | PERF_X86_EVENT_PEBS_HSW_PREC);
Stephane Eranianf20093e2013-01-24 16:10:32 +01001029
Yan, Zheng43cf7632015-05-06 15:33:48 -04001030 perf_sample_data_init(data, 0, event->hw.last_period);
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001031
Yan, Zheng43cf7632015-05-06 15:33:48 -04001032 data->period = event->hw.last_period;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001033
1034 /*
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001035 * Use latency for weight (only avail with PEBS-LL)
Stephane Eranianf20093e2013-01-24 16:10:32 +01001036 */
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001037 if (fll && (sample_type & PERF_SAMPLE_WEIGHT))
Yan, Zheng43cf7632015-05-06 15:33:48 -04001038 data->weight = pebs->lat;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001039
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001040 /*
1041 * data.data_src encodes the data source
1042 */
1043 if (dsrc) {
1044 u64 val = PERF_MEM_NA;
1045 if (fll)
1046 val = load_latency_data(pebs->dse);
1047 else if (fst && (fl & PERF_X86_EVENT_PEBS_HSW_PREC))
1048 val = precise_datala_hsw(event, pebs->dse);
1049 else if (fst)
1050 val = precise_store_data(pebs->dse);
Yan, Zheng43cf7632015-05-06 15:33:48 -04001051 data->data_src.val = val;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001052 }
1053
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001054 /*
1055 * We use the interrupt regs as a base because the PEBS record
1056 * does not contain a full regs set, specifically it seems to
1057 * lack segment descriptors, which get used by things like
1058 * user_mode().
1059 *
1060 * In the simple case fix up only the IP and BP,SP regs, for
1061 * PERF_SAMPLE_IP and PERF_SAMPLE_CALLCHAIN to function properly.
1062 * A possible PERF_SAMPLE_REGS will have to transfer all regs.
1063 */
Yan, Zheng43cf7632015-05-06 15:33:48 -04001064 *regs = *iregs;
1065 regs->flags = pebs->flags;
1066 set_linear_ip(regs, pebs->ip);
1067 regs->bp = pebs->bp;
1068 regs->sp = pebs->sp;
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001069
Stephane Eranianaea48552014-09-24 13:48:38 +02001070 if (sample_type & PERF_SAMPLE_REGS_INTR) {
Yan, Zheng43cf7632015-05-06 15:33:48 -04001071 regs->ax = pebs->ax;
1072 regs->bx = pebs->bx;
1073 regs->cx = pebs->cx;
1074 regs->dx = pebs->dx;
1075 regs->si = pebs->si;
1076 regs->di = pebs->di;
1077 regs->bp = pebs->bp;
1078 regs->sp = pebs->sp;
Stephane Eranianaea48552014-09-24 13:48:38 +02001079
Yan, Zheng43cf7632015-05-06 15:33:48 -04001080 regs->flags = pebs->flags;
Stephane Eranianaea48552014-09-24 13:48:38 +02001081#ifndef CONFIG_X86_32
Yan, Zheng43cf7632015-05-06 15:33:48 -04001082 regs->r8 = pebs->r8;
1083 regs->r9 = pebs->r9;
1084 regs->r10 = pebs->r10;
1085 regs->r11 = pebs->r11;
1086 regs->r12 = pebs->r12;
1087 regs->r13 = pebs->r13;
1088 regs->r14 = pebs->r14;
1089 regs->r15 = pebs->r15;
Stephane Eranianaea48552014-09-24 13:48:38 +02001090#endif
1091 }
1092
Andi Kleen130768b2013-06-17 17:36:47 -07001093 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format >= 2) {
Yan, Zheng43cf7632015-05-06 15:33:48 -04001094 regs->ip = pebs->real_ip;
1095 regs->flags |= PERF_EFLAGS_EXACT;
1096 } else if (event->attr.precise_ip > 1 && intel_pmu_pebs_fixup_ip(regs))
1097 regs->flags |= PERF_EFLAGS_EXACT;
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001098 else
Yan, Zheng43cf7632015-05-06 15:33:48 -04001099 regs->flags &= ~PERF_EFLAGS_EXACT;
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001100
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001101 if ((sample_type & PERF_SAMPLE_ADDR) &&
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001102 x86_pmu.intel_cap.pebs_format >= 1)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001103 data->addr = pebs->dla;
Andi Kleenf9134f32013-06-17 17:36:52 -07001104
Andi Kleena405bad2013-09-20 07:40:40 -07001105 if (x86_pmu.intel_cap.pebs_format >= 2) {
1106 /* Only set the TSX weight when no memory weight. */
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001107 if ((sample_type & PERF_SAMPLE_WEIGHT) && !fll)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001108 data->weight = intel_hsw_weight(pebs);
Andi Kleena405bad2013-09-20 07:40:40 -07001109
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001110 if (sample_type & PERF_SAMPLE_TRANSACTION)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001111 data->txn = intel_hsw_transaction(pebs);
Andi Kleena405bad2013-09-20 07:40:40 -07001112 }
Andi Kleen748e86a2013-09-05 20:37:39 -07001113
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001114 /*
1115 * v3 supplies an accurate time stamp, so we use that
1116 * for the time stamp.
1117 *
1118 * We can only do this for the default trace clock.
1119 */
1120 if (x86_pmu.intel_cap.pebs_format >= 3 &&
1121 event->attr.use_clockid == 0)
1122 data->time = native_sched_clock_from_tsc(pebs->tsc);
1123
Stephane Eranian60ce0fb2012-02-09 23:20:57 +01001124 if (has_branch_stack(event))
Yan, Zheng43cf7632015-05-06 15:33:48 -04001125 data->br_stack = &cpuc->lbr_stack;
1126}
1127
Yan, Zheng21509082015-05-06 15:33:49 -04001128static inline void *
1129get_next_pebs_record_by_bit(void *base, void *top, int bit)
1130{
1131 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1132 void *at;
1133 u64 pebs_status;
1134
Stephane Eranian1424a092015-12-03 23:33:18 +01001135 /*
1136 * fmt0 does not have a status bitfield (does not use
1137 * perf_record_nhm format)
1138 */
1139 if (x86_pmu.intel_cap.pebs_format < 1)
1140 return base;
1141
Yan, Zheng21509082015-05-06 15:33:49 -04001142 if (base == NULL)
1143 return NULL;
1144
1145 for (at = base; at < top; at += x86_pmu.pebs_record_size) {
1146 struct pebs_record_nhm *p = at;
1147
1148 if (test_bit(bit, (unsigned long *)&p->status)) {
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001149 /* PEBS v3 has accurate status bits */
1150 if (x86_pmu.intel_cap.pebs_format >= 3)
1151 return at;
Yan, Zheng21509082015-05-06 15:33:49 -04001152
1153 if (p->status == (1 << bit))
1154 return at;
1155
1156 /* clear non-PEBS bit and re-check */
1157 pebs_status = p->status & cpuc->pebs_enabled;
1158 pebs_status &= (1ULL << MAX_PEBS_EVENTS) - 1;
1159 if (pebs_status == (1 << bit))
1160 return at;
1161 }
1162 }
1163 return NULL;
1164}
1165
Yan, Zheng43cf7632015-05-06 15:33:48 -04001166static void __intel_pmu_pebs_event(struct perf_event *event,
Yan, Zheng21509082015-05-06 15:33:49 -04001167 struct pt_regs *iregs,
1168 void *base, void *top,
1169 int bit, int count)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001170{
1171 struct perf_sample_data data;
1172 struct pt_regs regs;
Yan, Zheng21509082015-05-06 15:33:49 -04001173 void *at = get_next_pebs_record_by_bit(base, top, bit);
Yan, Zheng43cf7632015-05-06 15:33:48 -04001174
Yan, Zheng21509082015-05-06 15:33:49 -04001175 if (!intel_pmu_save_and_restart(event) &&
1176 !(event->hw.flags & PERF_X86_EVENT_AUTO_RELOAD))
Yan, Zheng43cf7632015-05-06 15:33:48 -04001177 return;
1178
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001179 while (count > 1) {
1180 setup_pebs_sample_data(event, iregs, at, &data, &regs);
1181 perf_event_output(event, &data, &regs);
1182 at += x86_pmu.pebs_record_size;
1183 at = get_next_pebs_record_by_bit(at, top, bit);
1184 count--;
Yan, Zheng21509082015-05-06 15:33:49 -04001185 }
Stephane Eranian60ce0fb2012-02-09 23:20:57 +01001186
Yan, Zheng21509082015-05-06 15:33:49 -04001187 setup_pebs_sample_data(event, iregs, at, &data, &regs);
1188
1189 /*
1190 * All but the last records are processed.
1191 * The last one is left to be able to call the overflow handler.
1192 */
1193 if (perf_event_overflow(event, &data, &regs)) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001194 x86_pmu_stop(event, 0);
Yan, Zheng21509082015-05-06 15:33:49 -04001195 return;
1196 }
1197
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001198}
1199
Peter Zijlstraca037702010-03-02 19:52:12 +01001200static void intel_pmu_drain_pebs_core(struct pt_regs *iregs)
1201{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001202 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +01001203 struct debug_store *ds = cpuc->ds;
1204 struct perf_event *event = cpuc->events[0]; /* PMC0 only */
1205 struct pebs_record_core *at, *top;
Peter Zijlstraca037702010-03-02 19:52:12 +01001206 int n;
1207
Peter Zijlstra6809b6e2010-10-19 14:22:50 +02001208 if (!x86_pmu.pebs_active)
Peter Zijlstraca037702010-03-02 19:52:12 +01001209 return;
1210
Peter Zijlstraca037702010-03-02 19:52:12 +01001211 at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base;
1212 top = (struct pebs_record_core *)(unsigned long)ds->pebs_index;
1213
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001214 /*
1215 * Whatever else happens, drain the thing
1216 */
1217 ds->pebs_index = ds->pebs_buffer_base;
1218
1219 if (!test_bit(0, cpuc->active_mask))
Peter Zijlstra8f4aebd2010-03-06 13:26:11 +01001220 return;
Peter Zijlstraca037702010-03-02 19:52:12 +01001221
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001222 WARN_ON_ONCE(!event);
1223
Peter Zijlstraab608342010-04-08 23:03:20 +02001224 if (!event->attr.precise_ip)
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001225 return;
1226
Stephane Eranian1424a092015-12-03 23:33:18 +01001227 n = top - at;
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001228 if (n <= 0)
1229 return;
Peter Zijlstraca037702010-03-02 19:52:12 +01001230
Yan, Zheng21509082015-05-06 15:33:49 -04001231 __intel_pmu_pebs_event(event, iregs, at, top, 0, n);
Peter Zijlstraca037702010-03-02 19:52:12 +01001232}
1233
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001234static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs)
Peter Zijlstraca037702010-03-02 19:52:12 +01001235{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001236 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +01001237 struct debug_store *ds = cpuc->ds;
Yan, Zheng21509082015-05-06 15:33:49 -04001238 struct perf_event *event;
1239 void *base, *at, *top;
Yan, Zheng21509082015-05-06 15:33:49 -04001240 short counts[MAX_PEBS_EVENTS] = {};
Kan Liangf38b0db2015-05-10 15:13:14 -04001241 short error[MAX_PEBS_EVENTS] = {};
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001242 int bit, i;
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001243
1244 if (!x86_pmu.pebs_active)
1245 return;
1246
Yan, Zheng21509082015-05-06 15:33:49 -04001247 base = (struct pebs_record_nhm *)(unsigned long)ds->pebs_buffer_base;
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001248 top = (struct pebs_record_nhm *)(unsigned long)ds->pebs_index;
Peter Zijlstraca037702010-03-02 19:52:12 +01001249
Peter Zijlstraca037702010-03-02 19:52:12 +01001250 ds->pebs_index = ds->pebs_buffer_base;
1251
Yan, Zheng21509082015-05-06 15:33:49 -04001252 if (unlikely(base >= top))
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001253 return;
1254
Yan, Zheng21509082015-05-06 15:33:49 -04001255 for (at = base; at < top; at += x86_pmu.pebs_record_size) {
Andi Kleen130768b2013-06-17 17:36:47 -07001256 struct pebs_record_nhm *p = at;
Peter Zijlstra75f80852015-07-15 14:35:46 +02001257 u64 pebs_status;
Peter Zijlstraca037702010-03-02 19:52:12 +01001258
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001259 /* PEBS v3 has accurate status bits */
1260 if (x86_pmu.intel_cap.pebs_format >= 3) {
1261 for_each_set_bit(bit, (unsigned long *)&p->status,
1262 MAX_PEBS_EVENTS)
1263 counts[bit]++;
1264
1265 continue;
1266 }
1267
Peter Zijlstra75f80852015-07-15 14:35:46 +02001268 pebs_status = p->status & cpuc->pebs_enabled;
1269 pebs_status &= (1ULL << x86_pmu.max_pebs_events) - 1;
1270
Andi Kleen01330d72015-12-03 13:22:20 -08001271 /*
1272 * On some CPUs the PEBS status can be zero when PEBS is
1273 * racing with clearing of GLOBAL_STATUS.
1274 *
1275 * Normally we would drop that record, but in the
1276 * case when there is only a single active PEBS event
1277 * we can assume it's for that event.
1278 */
1279 if (!pebs_status && cpuc->pebs_enabled &&
1280 !(cpuc->pebs_enabled & (cpuc->pebs_enabled-1)))
1281 pebs_status = cpuc->pebs_enabled;
1282
Peter Zijlstra75f80852015-07-15 14:35:46 +02001283 bit = find_first_bit((unsigned long *)&pebs_status,
Yan, Zheng21509082015-05-06 15:33:49 -04001284 x86_pmu.max_pebs_events);
Andi Kleen957ea1f2015-12-03 13:22:19 -08001285 if (bit >= x86_pmu.max_pebs_events)
Peter Zijlstraca037702010-03-02 19:52:12 +01001286 continue;
Peter Zijlstra75f80852015-07-15 14:35:46 +02001287
Yan, Zheng21509082015-05-06 15:33:49 -04001288 /*
1289 * The PEBS hardware does not deal well with the situation
1290 * when events happen near to each other and multiple bits
1291 * are set. But it should happen rarely.
1292 *
1293 * If these events include one PEBS and multiple non-PEBS
1294 * events, it doesn't impact PEBS record. The record will
1295 * be handled normally. (slow path)
1296 *
1297 * If these events include two or more PEBS events, the
1298 * records for the events can be collapsed into a single
1299 * one, and it's not possible to reconstruct all events
1300 * that caused the PEBS record. It's called collision.
1301 * If collision happened, the record will be dropped.
Yan, Zheng21509082015-05-06 15:33:49 -04001302 */
Peter Zijlstra75f80852015-07-15 14:35:46 +02001303 if (p->status != (1ULL << bit)) {
1304 for_each_set_bit(i, (unsigned long *)&pebs_status,
1305 x86_pmu.max_pebs_events)
1306 error[i]++;
1307 continue;
Yan, Zheng21509082015-05-06 15:33:49 -04001308 }
Peter Zijlstra75f80852015-07-15 14:35:46 +02001309
Yan, Zheng21509082015-05-06 15:33:49 -04001310 counts[bit]++;
1311 }
1312
1313 for (bit = 0; bit < x86_pmu.max_pebs_events; bit++) {
Kan Liangf38b0db2015-05-10 15:13:14 -04001314 if ((counts[bit] == 0) && (error[bit] == 0))
Yan, Zheng21509082015-05-06 15:33:49 -04001315 continue;
Peter Zijlstra75f80852015-07-15 14:35:46 +02001316
Yan, Zheng21509082015-05-06 15:33:49 -04001317 event = cpuc->events[bit];
1318 WARN_ON_ONCE(!event);
1319 WARN_ON_ONCE(!event->attr.precise_ip);
1320
Kan Liangf38b0db2015-05-10 15:13:14 -04001321 /* log dropped samples number */
1322 if (error[bit])
1323 perf_log_lost_samples(event, error[bit]);
1324
1325 if (counts[bit]) {
1326 __intel_pmu_pebs_event(event, iregs, base,
1327 top, bit, counts[bit]);
1328 }
Peter Zijlstraca037702010-03-02 19:52:12 +01001329 }
Peter Zijlstraca037702010-03-02 19:52:12 +01001330}
1331
1332/*
1333 * BTS, PEBS probe and setup
1334 */
1335
Mathias Krause066ce642014-08-26 18:49:45 +02001336void __init intel_ds_init(void)
Peter Zijlstraca037702010-03-02 19:52:12 +01001337{
1338 /*
1339 * No support for 32bit formats
1340 */
1341 if (!boot_cpu_has(X86_FEATURE_DTES64))
1342 return;
1343
1344 x86_pmu.bts = boot_cpu_has(X86_FEATURE_BTS);
1345 x86_pmu.pebs = boot_cpu_has(X86_FEATURE_PEBS);
Jiri Olsae72daf32016-03-01 20:03:52 +01001346 x86_pmu.pebs_buffer_size = PEBS_BUFFER_SIZE;
Peter Zijlstraca037702010-03-02 19:52:12 +01001347 if (x86_pmu.pebs) {
Peter Zijlstra8db909a2010-03-03 17:07:40 +01001348 char pebs_type = x86_pmu.intel_cap.pebs_trap ? '+' : '-';
1349 int format = x86_pmu.intel_cap.pebs_format;
Peter Zijlstraca037702010-03-02 19:52:12 +01001350
1351 switch (format) {
1352 case 0:
Chen Yucong1b74dde2016-02-02 11:45:02 +08001353 pr_cont("PEBS fmt0%c, ", pebs_type);
Peter Zijlstraca037702010-03-02 19:52:12 +01001354 x86_pmu.pebs_record_size = sizeof(struct pebs_record_core);
Jiri Olsae72daf32016-03-01 20:03:52 +01001355 /*
1356 * Using >PAGE_SIZE buffers makes the WRMSR to
1357 * PERF_GLOBAL_CTRL in intel_pmu_enable_all()
1358 * mysteriously hang on Core2.
1359 *
1360 * As a workaround, we don't do this.
1361 */
1362 x86_pmu.pebs_buffer_size = PAGE_SIZE;
Peter Zijlstraca037702010-03-02 19:52:12 +01001363 x86_pmu.drain_pebs = intel_pmu_drain_pebs_core;
Peter Zijlstraca037702010-03-02 19:52:12 +01001364 break;
1365
1366 case 1:
Chen Yucong1b74dde2016-02-02 11:45:02 +08001367 pr_cont("PEBS fmt1%c, ", pebs_type);
Peter Zijlstraca037702010-03-02 19:52:12 +01001368 x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm);
1369 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
Peter Zijlstraca037702010-03-02 19:52:12 +01001370 break;
1371
Andi Kleen130768b2013-06-17 17:36:47 -07001372 case 2:
1373 pr_cont("PEBS fmt2%c, ", pebs_type);
1374 x86_pmu.pebs_record_size = sizeof(struct pebs_record_hsw);
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001375 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
Andi Kleen130768b2013-06-17 17:36:47 -07001376 break;
1377
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001378 case 3:
1379 pr_cont("PEBS fmt3%c, ", pebs_type);
1380 x86_pmu.pebs_record_size =
1381 sizeof(struct pebs_record_skl);
1382 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
Andi Kleena7b58d22015-05-27 21:13:14 -07001383 x86_pmu.free_running_flags |= PERF_SAMPLE_TIME;
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001384 break;
1385
Peter Zijlstraca037702010-03-02 19:52:12 +01001386 default:
Chen Yucong1b74dde2016-02-02 11:45:02 +08001387 pr_cont("no PEBS fmt%d%c, ", format, pebs_type);
Peter Zijlstraca037702010-03-02 19:52:12 +01001388 x86_pmu.pebs = 0;
Peter Zijlstraca037702010-03-02 19:52:12 +01001389 }
1390 }
1391}
Stephane Eranian1d9d8632013-03-15 14:26:07 +01001392
1393void perf_restore_debug_store(void)
1394{
Linus Torvalds2a6e06b2013-03-17 15:44:43 -07001395 struct debug_store *ds = __this_cpu_read(cpu_hw_events.ds);
1396
Stephane Eranian1d9d8632013-03-15 14:26:07 +01001397 if (!x86_pmu.bts && !x86_pmu.pebs)
1398 return;
1399
Linus Torvalds2a6e06b2013-03-17 15:44:43 -07001400 wrmsrl(MSR_IA32_DS_AREA, (unsigned long)ds);
Stephane Eranian1d9d8632013-03-15 14:26:07 +01001401}