perf/x86: Don't mark DataLA addresses as store
[deliverable/linux.git] / arch / x86 / kernel / cpu / perf_event_intel_ds.c
CommitLineData
de0428a7
KW
1#include <linux/bitops.h>
2#include <linux/types.h>
3#include <linux/slab.h>
ca037701 4
de0428a7 5#include <asm/perf_event.h>
3e702ff6 6#include <asm/insn.h>
de0428a7
KW
7
8#include "perf_event.h"
ca037701
PZ
9
10/* The size of a BTS record in bytes: */
11#define BTS_RECORD_SIZE 24
12
13#define BTS_BUFFER_SIZE (PAGE_SIZE << 4)
14#define PEBS_BUFFER_SIZE PAGE_SIZE
9536c8d2 15#define PEBS_FIXUP_SIZE PAGE_SIZE
ca037701
PZ
16
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
f20093ee
SE
28union 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
9ad64c0f
SE
73static 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
722e76e6 111static u64 precise_store_data_hsw(struct perf_event *event, u64 status)
f9134f36
AK
112{
113 union perf_mem_data_src dse;
722e76e6 114 u64 cfg = event->hw.config & INTEL_ARCH_EVENT_MASK;
f9134f36
AK
115
116 dse.val = 0;
f3908b8c 117 dse.mem_op = PERF_MEM_OP_NA;
f9134f36 118 dse.mem_lvl = PERF_MEM_LVL_NA;
722e76e6
SE
119
120 /*
121 * L1 info only valid for following events:
122 *
123 * MEM_UOPS_RETIRED.STLB_MISS_STORES
124 * MEM_UOPS_RETIRED.LOCK_STORES
125 * MEM_UOPS_RETIRED.SPLIT_STORES
126 * MEM_UOPS_RETIRED.ALL_STORES
127 */
128 if (cfg != 0x12d0 && cfg != 0x22d0 && cfg != 0x42d0 && cfg != 0x82d0)
129 return dse.mem_lvl;
130
f9134f36 131 if (status & 1)
722e76e6
SE
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
f9134f36
AK
136 /* Nothing else supported. Sorry. */
137 return dse.val;
138}
139
f20093ee
SE
140static u64 load_latency_data(u64 status)
141{
142 union intel_x86_pebs_dse dse;
143 u64 val;
144 int model = boot_cpu_data.x86_model;
145 int fam = boot_cpu_data.x86;
146
147 dse.val = status;
148
149 /*
150 * use the mapping table for bit 0-3
151 */
152 val = pebs_data_source[dse.ld_dse];
153
154 /*
155 * Nehalem models do not support TLB, Lock infos
156 */
157 if (fam == 0x6 && (model == 26 || model == 30
158 || model == 31 || model == 46)) {
159 val |= P(TLB, NA) | P(LOCK, NA);
160 return val;
161 }
162 /*
163 * bit 4: TLB access
164 * 0 = did not miss 2nd level TLB
165 * 1 = missed 2nd level TLB
166 */
167 if (dse.ld_stlb_miss)
168 val |= P(TLB, MISS) | P(TLB, L2);
169 else
170 val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2);
171
172 /*
173 * bit 5: locked prefix
174 */
175 if (dse.ld_locked)
176 val |= P(LOCK, LOCKED);
177
178 return val;
179}
180
ca037701
PZ
181struct pebs_record_core {
182 u64 flags, ip;
183 u64 ax, bx, cx, dx;
184 u64 si, di, bp, sp;
185 u64 r8, r9, r10, r11;
186 u64 r12, r13, r14, r15;
187};
188
189struct pebs_record_nhm {
190 u64 flags, ip;
191 u64 ax, bx, cx, dx;
192 u64 si, di, bp, sp;
193 u64 r8, r9, r10, r11;
194 u64 r12, r13, r14, r15;
195 u64 status, dla, dse, lat;
196};
197
130768b8
AK
198/*
199 * Same as pebs_record_nhm, with two additional fields.
200 */
201struct pebs_record_hsw {
748e86aa
AK
202 u64 flags, ip;
203 u64 ax, bx, cx, dx;
204 u64 si, di, bp, sp;
205 u64 r8, r9, r10, r11;
206 u64 r12, r13, r14, r15;
207 u64 status, dla, dse, lat;
d2beea4a 208 u64 real_ip, tsx_tuning;
748e86aa
AK
209};
210
211union hsw_tsx_tuning {
212 struct {
213 u32 cycles_last_block : 32,
214 hle_abort : 1,
215 rtm_abort : 1,
216 instruction_abort : 1,
217 non_instruction_abort : 1,
218 retry : 1,
219 data_conflict : 1,
220 capacity_writes : 1,
221 capacity_reads : 1;
222 };
223 u64 value;
130768b8
AK
224};
225
a405bad5
AK
226#define PEBS_HSW_TSX_FLAGS 0xff00000000ULL
227
de0428a7 228void init_debug_store_on_cpu(int cpu)
ca037701
PZ
229{
230 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
231
232 if (!ds)
233 return;
234
235 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA,
236 (u32)((u64)(unsigned long)ds),
237 (u32)((u64)(unsigned long)ds >> 32));
238}
239
de0428a7 240void fini_debug_store_on_cpu(int cpu)
ca037701
PZ
241{
242 if (!per_cpu(cpu_hw_events, cpu).ds)
243 return;
244
245 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0);
246}
247
9536c8d2
PZ
248static DEFINE_PER_CPU(void *, insn_buffer);
249
5ee25c87
PZ
250static int alloc_pebs_buffer(int cpu)
251{
252 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
96681fc3 253 int node = cpu_to_node(cpu);
5ee25c87 254 int max, thresh = 1; /* always use a single PEBS record */
9536c8d2 255 void *buffer, *ibuffer;
5ee25c87
PZ
256
257 if (!x86_pmu.pebs)
258 return 0;
259
7bfb7e6b 260 buffer = kzalloc_node(PEBS_BUFFER_SIZE, GFP_KERNEL, node);
5ee25c87
PZ
261 if (unlikely(!buffer))
262 return -ENOMEM;
263
9536c8d2
PZ
264 /*
265 * HSW+ already provides us the eventing ip; no need to allocate this
266 * buffer then.
267 */
268 if (x86_pmu.intel_cap.pebs_format < 2) {
269 ibuffer = kzalloc_node(PEBS_FIXUP_SIZE, GFP_KERNEL, node);
270 if (!ibuffer) {
271 kfree(buffer);
272 return -ENOMEM;
273 }
274 per_cpu(insn_buffer, cpu) = ibuffer;
275 }
276
5ee25c87
PZ
277 max = PEBS_BUFFER_SIZE / x86_pmu.pebs_record_size;
278
279 ds->pebs_buffer_base = (u64)(unsigned long)buffer;
280 ds->pebs_index = ds->pebs_buffer_base;
281 ds->pebs_absolute_maximum = ds->pebs_buffer_base +
282 max * x86_pmu.pebs_record_size;
283
284 ds->pebs_interrupt_threshold = ds->pebs_buffer_base +
285 thresh * x86_pmu.pebs_record_size;
286
287 return 0;
288}
289
b39f88ac
PZ
290static void release_pebs_buffer(int cpu)
291{
292 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
293
294 if (!ds || !x86_pmu.pebs)
295 return;
296
9536c8d2
PZ
297 kfree(per_cpu(insn_buffer, cpu));
298 per_cpu(insn_buffer, cpu) = NULL;
299
b39f88ac
PZ
300 kfree((void *)(unsigned long)ds->pebs_buffer_base);
301 ds->pebs_buffer_base = 0;
302}
303
5ee25c87
PZ
304static int alloc_bts_buffer(int cpu)
305{
306 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
96681fc3 307 int node = cpu_to_node(cpu);
5ee25c87
PZ
308 int max, thresh;
309 void *buffer;
310
311 if (!x86_pmu.bts)
312 return 0;
313
44851541
DR
314 buffer = kzalloc_node(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node);
315 if (unlikely(!buffer)) {
316 WARN_ONCE(1, "%s: BTS buffer allocation failure\n", __func__);
5ee25c87 317 return -ENOMEM;
44851541 318 }
5ee25c87
PZ
319
320 max = BTS_BUFFER_SIZE / BTS_RECORD_SIZE;
321 thresh = max / 16;
322
323 ds->bts_buffer_base = (u64)(unsigned long)buffer;
324 ds->bts_index = ds->bts_buffer_base;
325 ds->bts_absolute_maximum = ds->bts_buffer_base +
326 max * BTS_RECORD_SIZE;
327 ds->bts_interrupt_threshold = ds->bts_absolute_maximum -
328 thresh * BTS_RECORD_SIZE;
329
330 return 0;
331}
332
b39f88ac
PZ
333static void release_bts_buffer(int cpu)
334{
335 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
336
337 if (!ds || !x86_pmu.bts)
338 return;
339
340 kfree((void *)(unsigned long)ds->bts_buffer_base);
341 ds->bts_buffer_base = 0;
342}
343
65af94ba
PZ
344static int alloc_ds_buffer(int cpu)
345{
96681fc3 346 int node = cpu_to_node(cpu);
65af94ba
PZ
347 struct debug_store *ds;
348
7bfb7e6b 349 ds = kzalloc_node(sizeof(*ds), GFP_KERNEL, node);
65af94ba
PZ
350 if (unlikely(!ds))
351 return -ENOMEM;
352
353 per_cpu(cpu_hw_events, cpu).ds = ds;
354
355 return 0;
356}
357
358static void release_ds_buffer(int cpu)
359{
360 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
361
362 if (!ds)
363 return;
364
365 per_cpu(cpu_hw_events, cpu).ds = NULL;
366 kfree(ds);
367}
368
de0428a7 369void release_ds_buffers(void)
ca037701
PZ
370{
371 int cpu;
372
373 if (!x86_pmu.bts && !x86_pmu.pebs)
374 return;
375
376 get_online_cpus();
ca037701
PZ
377 for_each_online_cpu(cpu)
378 fini_debug_store_on_cpu(cpu);
379
380 for_each_possible_cpu(cpu) {
b39f88ac
PZ
381 release_pebs_buffer(cpu);
382 release_bts_buffer(cpu);
65af94ba 383 release_ds_buffer(cpu);
ca037701 384 }
ca037701
PZ
385 put_online_cpus();
386}
387
de0428a7 388void reserve_ds_buffers(void)
ca037701 389{
6809b6ea
PZ
390 int bts_err = 0, pebs_err = 0;
391 int cpu;
392
393 x86_pmu.bts_active = 0;
394 x86_pmu.pebs_active = 0;
ca037701
PZ
395
396 if (!x86_pmu.bts && !x86_pmu.pebs)
f80c9e30 397 return;
ca037701 398
6809b6ea
PZ
399 if (!x86_pmu.bts)
400 bts_err = 1;
401
402 if (!x86_pmu.pebs)
403 pebs_err = 1;
404
ca037701
PZ
405 get_online_cpus();
406
407 for_each_possible_cpu(cpu) {
6809b6ea
PZ
408 if (alloc_ds_buffer(cpu)) {
409 bts_err = 1;
410 pebs_err = 1;
411 }
ca037701 412
6809b6ea
PZ
413 if (!bts_err && alloc_bts_buffer(cpu))
414 bts_err = 1;
415
416 if (!pebs_err && alloc_pebs_buffer(cpu))
417 pebs_err = 1;
5ee25c87 418
6809b6ea 419 if (bts_err && pebs_err)
5ee25c87 420 break;
6809b6ea
PZ
421 }
422
423 if (bts_err) {
424 for_each_possible_cpu(cpu)
425 release_bts_buffer(cpu);
426 }
ca037701 427
6809b6ea
PZ
428 if (pebs_err) {
429 for_each_possible_cpu(cpu)
430 release_pebs_buffer(cpu);
ca037701
PZ
431 }
432
6809b6ea
PZ
433 if (bts_err && pebs_err) {
434 for_each_possible_cpu(cpu)
435 release_ds_buffer(cpu);
436 } else {
437 if (x86_pmu.bts && !bts_err)
438 x86_pmu.bts_active = 1;
439
440 if (x86_pmu.pebs && !pebs_err)
441 x86_pmu.pebs_active = 1;
442
ca037701
PZ
443 for_each_online_cpu(cpu)
444 init_debug_store_on_cpu(cpu);
445 }
446
447 put_online_cpus();
ca037701
PZ
448}
449
450/*
451 * BTS
452 */
453
de0428a7 454struct event_constraint bts_constraint =
15c7ad51 455 EVENT_CONSTRAINT(0, 1ULL << INTEL_PMC_IDX_FIXED_BTS, 0);
ca037701 456
de0428a7 457void intel_pmu_enable_bts(u64 config)
ca037701
PZ
458{
459 unsigned long debugctlmsr;
460
461 debugctlmsr = get_debugctlmsr();
462
7c5ecaf7
PZ
463 debugctlmsr |= DEBUGCTLMSR_TR;
464 debugctlmsr |= DEBUGCTLMSR_BTS;
465 debugctlmsr |= DEBUGCTLMSR_BTINT;
ca037701
PZ
466
467 if (!(config & ARCH_PERFMON_EVENTSEL_OS))
7c5ecaf7 468 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_OS;
ca037701
PZ
469
470 if (!(config & ARCH_PERFMON_EVENTSEL_USR))
7c5ecaf7 471 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_USR;
ca037701
PZ
472
473 update_debugctlmsr(debugctlmsr);
474}
475
de0428a7 476void intel_pmu_disable_bts(void)
ca037701
PZ
477{
478 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
479 unsigned long debugctlmsr;
480
481 if (!cpuc->ds)
482 return;
483
484 debugctlmsr = get_debugctlmsr();
485
486 debugctlmsr &=
7c5ecaf7
PZ
487 ~(DEBUGCTLMSR_TR | DEBUGCTLMSR_BTS | DEBUGCTLMSR_BTINT |
488 DEBUGCTLMSR_BTS_OFF_OS | DEBUGCTLMSR_BTS_OFF_USR);
ca037701
PZ
489
490 update_debugctlmsr(debugctlmsr);
491}
492
de0428a7 493int intel_pmu_drain_bts_buffer(void)
ca037701
PZ
494{
495 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
496 struct debug_store *ds = cpuc->ds;
497 struct bts_record {
498 u64 from;
499 u64 to;
500 u64 flags;
501 };
15c7ad51 502 struct perf_event *event = cpuc->events[INTEL_PMC_IDX_FIXED_BTS];
ca037701
PZ
503 struct bts_record *at, *top;
504 struct perf_output_handle handle;
505 struct perf_event_header header;
506 struct perf_sample_data data;
507 struct pt_regs regs;
508
509 if (!event)
b0b2072d 510 return 0;
ca037701 511
6809b6ea 512 if (!x86_pmu.bts_active)
b0b2072d 513 return 0;
ca037701
PZ
514
515 at = (struct bts_record *)(unsigned long)ds->bts_buffer_base;
516 top = (struct bts_record *)(unsigned long)ds->bts_index;
517
518 if (top <= at)
b0b2072d 519 return 0;
ca037701 520
0e48026a
SE
521 memset(&regs, 0, sizeof(regs));
522
ca037701
PZ
523 ds->bts_index = ds->bts_buffer_base;
524
fd0d000b 525 perf_sample_data_init(&data, 0, event->hw.last_period);
ca037701
PZ
526
527 /*
528 * Prepare a generic sample, i.e. fill in the invariant fields.
529 * We will overwrite the from and to address before we output
530 * the sample.
531 */
532 perf_prepare_sample(&header, &data, event, &regs);
533
a7ac67ea 534 if (perf_output_begin(&handle, event, header.size * (top - at)))
b0b2072d 535 return 1;
ca037701
PZ
536
537 for (; at < top; at++) {
538 data.ip = at->from;
539 data.addr = at->to;
540
541 perf_output_sample(&handle, &header, &data, event);
542 }
543
544 perf_output_end(&handle);
545
546 /* There's new data available. */
547 event->hw.interrupts++;
548 event->pending_kill = POLL_IN;
b0b2072d 549 return 1;
ca037701
PZ
550}
551
552/*
553 * PEBS
554 */
de0428a7 555struct event_constraint intel_core2_pebs_event_constraints[] = {
7d5d02da
LM
556 INTEL_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
557 INTEL_UEVENT_CONSTRAINT(0xfec1, 0x1), /* X87_OPS_RETIRED.ANY */
558 INTEL_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */
559 INTEL_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */
560 INTEL_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
ca037701
PZ
561 EVENT_CONSTRAINT_END
562};
563
de0428a7 564struct event_constraint intel_atom_pebs_event_constraints[] = {
7d5d02da
LM
565 INTEL_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
566 INTEL_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */
567 INTEL_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
17e31629
SE
568 EVENT_CONSTRAINT_END
569};
570
1fa64180 571struct event_constraint intel_slm_pebs_event_constraints[] = {
86a04461
AK
572 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
573 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
574 /* Allow all events as PEBS with no flags */
575 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
1fa64180
YZ
576 EVENT_CONSTRAINT_END
577};
578
de0428a7 579struct event_constraint intel_nehalem_pebs_event_constraints[] = {
f20093ee 580 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
7d5d02da
LM
581 INTEL_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
582 INTEL_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
583 INTEL_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */
584 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
585 INTEL_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
586 INTEL_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */
587 INTEL_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
588 INTEL_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
589 INTEL_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
590 INTEL_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
17e31629
SE
591 EVENT_CONSTRAINT_END
592};
593
de0428a7 594struct event_constraint intel_westmere_pebs_event_constraints[] = {
f20093ee 595 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
7d5d02da
LM
596 INTEL_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
597 INTEL_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
598 INTEL_EVENT_CONSTRAINT(0xc0, 0xf), /* INSTR_RETIRED.* */
599 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
600 INTEL_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
601 INTEL_EVENT_CONSTRAINT(0xc5, 0xf), /* BR_MISP_RETIRED.* */
602 INTEL_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
603 INTEL_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
604 INTEL_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
605 INTEL_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
ca037701
PZ
606 EVENT_CONSTRAINT_END
607};
608
de0428a7 609struct event_constraint intel_snb_pebs_event_constraints[] = {
7d5d02da 610 INTEL_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
f20093ee 611 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
9ad64c0f 612 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
86a04461
AK
613 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
614 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
615 /* Allow all events as PEBS with no flags */
616 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
b06b3d49
LM
617 EVENT_CONSTRAINT_END
618};
619
20a36e39
SE
620struct event_constraint intel_ivb_pebs_event_constraints[] = {
621 INTEL_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
f20093ee 622 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
9ad64c0f 623 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
86a04461
AK
624 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
625 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
626 /* Allow all events as PEBS with no flags */
627 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
20a36e39
SE
628 EVENT_CONSTRAINT_END
629};
630
3044318f
AK
631struct event_constraint intel_hsw_pebs_event_constraints[] = {
632 INTEL_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
86a04461
AK
633 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
634 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
635 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
636 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
637 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
638 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
639 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
640 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
641 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
642 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
643 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
644 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
645 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
646 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
647 /* Allow all events as PEBS with no flags */
648 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
3044318f
AK
649 EVENT_CONSTRAINT_END
650};
651
de0428a7 652struct event_constraint *intel_pebs_constraints(struct perf_event *event)
ca037701
PZ
653{
654 struct event_constraint *c;
655
ab608344 656 if (!event->attr.precise_ip)
ca037701
PZ
657 return NULL;
658
659 if (x86_pmu.pebs_constraints) {
660 for_each_event_constraint(c, x86_pmu.pebs_constraints) {
9fac2cf3
SE
661 if ((event->hw.config & c->cmask) == c->code) {
662 event->hw.flags |= c->flags;
ca037701 663 return c;
9fac2cf3 664 }
ca037701
PZ
665 }
666 }
667
668 return &emptyconstraint;
669}
670
de0428a7 671void intel_pmu_pebs_enable(struct perf_event *event)
ca037701
PZ
672{
673 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
ef21f683 674 struct hw_perf_event *hwc = &event->hw;
ca037701
PZ
675
676 hwc->config &= ~ARCH_PERFMON_EVENTSEL_INT;
677
ad0e6cfe 678 cpuc->pebs_enabled |= 1ULL << hwc->idx;
f20093ee
SE
679
680 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
681 cpuc->pebs_enabled |= 1ULL << (hwc->idx + 32);
9ad64c0f
SE
682 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
683 cpuc->pebs_enabled |= 1ULL << 63;
ca037701
PZ
684}
685
de0428a7 686void intel_pmu_pebs_disable(struct perf_event *event)
ca037701
PZ
687{
688 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
ef21f683 689 struct hw_perf_event *hwc = &event->hw;
ca037701 690
ad0e6cfe 691 cpuc->pebs_enabled &= ~(1ULL << hwc->idx);
983433b5
SE
692
693 if (event->hw.constraint->flags & PERF_X86_EVENT_PEBS_LDLAT)
694 cpuc->pebs_enabled &= ~(1ULL << (hwc->idx + 32));
695 else if (event->hw.constraint->flags & PERF_X86_EVENT_PEBS_ST)
696 cpuc->pebs_enabled &= ~(1ULL << 63);
697
4807e3d5 698 if (cpuc->enabled)
ad0e6cfe 699 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
ca037701
PZ
700
701 hwc->config |= ARCH_PERFMON_EVENTSEL_INT;
702}
703
de0428a7 704void intel_pmu_pebs_enable_all(void)
ca037701
PZ
705{
706 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
707
708 if (cpuc->pebs_enabled)
709 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
710}
711
de0428a7 712void intel_pmu_pebs_disable_all(void)
ca037701
PZ
713{
714 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
715
716 if (cpuc->pebs_enabled)
717 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
718}
719
ef21f683
PZ
720static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs)
721{
722 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
723 unsigned long from = cpuc->lbr_entries[0].from;
724 unsigned long old_to, to = cpuc->lbr_entries[0].to;
725 unsigned long ip = regs->ip;
57d1c0c0 726 int is_64bit = 0;
9536c8d2 727 void *kaddr;
ef21f683 728
8db909a7
PZ
729 /*
730 * We don't need to fixup if the PEBS assist is fault like
731 */
732 if (!x86_pmu.intel_cap.pebs_trap)
733 return 1;
734
a562b187
PZ
735 /*
736 * No LBR entry, no basic block, no rewinding
737 */
ef21f683
PZ
738 if (!cpuc->lbr_stack.nr || !from || !to)
739 return 0;
740
a562b187
PZ
741 /*
742 * Basic blocks should never cross user/kernel boundaries
743 */
744 if (kernel_ip(ip) != kernel_ip(to))
745 return 0;
746
747 /*
748 * unsigned math, either ip is before the start (impossible) or
749 * the basic block is larger than 1 page (sanity)
750 */
9536c8d2 751 if ((ip - to) > PEBS_FIXUP_SIZE)
ef21f683
PZ
752 return 0;
753
754 /*
755 * We sampled a branch insn, rewind using the LBR stack
756 */
757 if (ip == to) {
d07bdfd3 758 set_linear_ip(regs, from);
ef21f683
PZ
759 return 1;
760 }
761
9536c8d2
PZ
762 if (!kernel_ip(ip)) {
763 int size, bytes;
764 u8 *buf = this_cpu_read(insn_buffer);
765
766 size = ip - to; /* Must fit our buffer, see above */
767 bytes = copy_from_user_nmi(buf, (void __user *)to, size);
0a196848 768 if (bytes != 0)
9536c8d2
PZ
769 return 0;
770
771 kaddr = buf;
772 } else {
773 kaddr = (void *)to;
774 }
775
ef21f683
PZ
776 do {
777 struct insn insn;
ef21f683
PZ
778
779 old_to = to;
ef21f683 780
57d1c0c0
PZ
781#ifdef CONFIG_X86_64
782 is_64bit = kernel_ip(to) || !test_thread_flag(TIF_IA32);
783#endif
784 insn_init(&insn, kaddr, is_64bit);
ef21f683 785 insn_get_length(&insn);
9536c8d2 786
ef21f683 787 to += insn.length;
9536c8d2 788 kaddr += insn.length;
ef21f683
PZ
789 } while (to < ip);
790
791 if (to == ip) {
d07bdfd3 792 set_linear_ip(regs, old_to);
ef21f683
PZ
793 return 1;
794 }
795
a562b187
PZ
796 /*
797 * Even though we decoded the basic block, the instruction stream
798 * never matched the given IP, either the TO or the IP got corrupted.
799 */
ef21f683
PZ
800 return 0;
801}
802
748e86aa
AK
803static inline u64 intel_hsw_weight(struct pebs_record_hsw *pebs)
804{
805 if (pebs->tsx_tuning) {
806 union hsw_tsx_tuning tsx = { .value = pebs->tsx_tuning };
807 return tsx.cycles_last_block;
808 }
809 return 0;
810}
811
a405bad5
AK
812static inline u64 intel_hsw_transaction(struct pebs_record_hsw *pebs)
813{
814 u64 txn = (pebs->tsx_tuning & PEBS_HSW_TSX_FLAGS) >> 32;
815
816 /* For RTM XABORTs also log the abort code from AX */
817 if ((txn & PERF_TXN_TRANSACTION) && (pebs->ax & 1))
818 txn |= ((pebs->ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT;
819 return txn;
820}
821
2b0b5c6f
PZ
822static void __intel_pmu_pebs_event(struct perf_event *event,
823 struct pt_regs *iregs, void *__pebs)
824{
825 /*
d2beea4a
PZ
826 * We cast to the biggest pebs_record but are careful not to
827 * unconditionally access the 'extra' entries.
2b0b5c6f 828 */
60ce0fbd 829 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
748e86aa 830 struct pebs_record_hsw *pebs = __pebs;
2b0b5c6f
PZ
831 struct perf_sample_data data;
832 struct pt_regs regs;
f20093ee 833 u64 sample_type;
9ad64c0f 834 int fll, fst;
2b0b5c6f
PZ
835
836 if (!intel_pmu_save_and_restart(event))
837 return;
838
f20093ee 839 fll = event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT;
f9134f36 840 fst = event->hw.flags & (PERF_X86_EVENT_PEBS_ST |
86a04461
AK
841 PERF_X86_EVENT_PEBS_ST_HSW |
842 PERF_X86_EVENT_PEBS_LD_HSW |
843 PERF_X86_EVENT_PEBS_NA_HSW);
f20093ee 844
fd0d000b 845 perf_sample_data_init(&data, 0, event->hw.last_period);
2b0b5c6f 846
f20093ee
SE
847 data.period = event->hw.last_period;
848 sample_type = event->attr.sample_type;
849
850 /*
851 * if PEBS-LL or PreciseStore
852 */
9ad64c0f 853 if (fll || fst) {
f20093ee
SE
854 /*
855 * Use latency for weight (only avail with PEBS-LL)
856 */
857 if (fll && (sample_type & PERF_SAMPLE_WEIGHT))
858 data.weight = pebs->lat;
859
860 /*
861 * data.data_src encodes the data source
862 */
863 if (sample_type & PERF_SAMPLE_DATA_SRC) {
864 if (fll)
865 data.data_src.val = load_latency_data(pebs->dse);
86a04461
AK
866 else if (event->hw.flags &
867 (PERF_X86_EVENT_PEBS_ST_HSW|
868 PERF_X86_EVENT_PEBS_LD_HSW|
869 PERF_X86_EVENT_PEBS_NA_HSW))
f9134f36 870 data.data_src.val =
722e76e6 871 precise_store_data_hsw(event, pebs->dse);
9ad64c0f
SE
872 else
873 data.data_src.val = precise_store_data(pebs->dse);
f20093ee
SE
874 }
875 }
876
2b0b5c6f
PZ
877 /*
878 * We use the interrupt regs as a base because the PEBS record
879 * does not contain a full regs set, specifically it seems to
880 * lack segment descriptors, which get used by things like
881 * user_mode().
882 *
883 * In the simple case fix up only the IP and BP,SP regs, for
884 * PERF_SAMPLE_IP and PERF_SAMPLE_CALLCHAIN to function properly.
885 * A possible PERF_SAMPLE_REGS will have to transfer all regs.
886 */
887 regs = *iregs;
d07bdfd3
PZ
888 regs.flags = pebs->flags;
889 set_linear_ip(&regs, pebs->ip);
2b0b5c6f
PZ
890 regs.bp = pebs->bp;
891 regs.sp = pebs->sp;
892
130768b8 893 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format >= 2) {
748e86aa 894 regs.ip = pebs->real_ip;
130768b8
AK
895 regs.flags |= PERF_EFLAGS_EXACT;
896 } else if (event->attr.precise_ip > 1 && intel_pmu_pebs_fixup_ip(&regs))
2b0b5c6f
PZ
897 regs.flags |= PERF_EFLAGS_EXACT;
898 else
899 regs.flags &= ~PERF_EFLAGS_EXACT;
900
f9134f36 901 if ((event->attr.sample_type & PERF_SAMPLE_ADDR) &&
d2beea4a 902 x86_pmu.intel_cap.pebs_format >= 1)
f9134f36
AK
903 data.addr = pebs->dla;
904
a405bad5
AK
905 if (x86_pmu.intel_cap.pebs_format >= 2) {
906 /* Only set the TSX weight when no memory weight. */
907 if ((event->attr.sample_type & PERF_SAMPLE_WEIGHT) && !fll)
908 data.weight = intel_hsw_weight(pebs);
909
910 if (event->attr.sample_type & PERF_SAMPLE_TRANSACTION)
911 data.txn = intel_hsw_transaction(pebs);
912 }
748e86aa 913
60ce0fbd
SE
914 if (has_branch_stack(event))
915 data.br_stack = &cpuc->lbr_stack;
916
a8b0ca17 917 if (perf_event_overflow(event, &data, &regs))
a4eaf7f1 918 x86_pmu_stop(event, 0);
2b0b5c6f
PZ
919}
920
ca037701
PZ
921static void intel_pmu_drain_pebs_core(struct pt_regs *iregs)
922{
923 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
924 struct debug_store *ds = cpuc->ds;
925 struct perf_event *event = cpuc->events[0]; /* PMC0 only */
926 struct pebs_record_core *at, *top;
ca037701
PZ
927 int n;
928
6809b6ea 929 if (!x86_pmu.pebs_active)
ca037701
PZ
930 return;
931
ca037701
PZ
932 at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base;
933 top = (struct pebs_record_core *)(unsigned long)ds->pebs_index;
934
d80c7502
PZ
935 /*
936 * Whatever else happens, drain the thing
937 */
938 ds->pebs_index = ds->pebs_buffer_base;
939
940 if (!test_bit(0, cpuc->active_mask))
8f4aebd2 941 return;
ca037701 942
d80c7502
PZ
943 WARN_ON_ONCE(!event);
944
ab608344 945 if (!event->attr.precise_ip)
d80c7502
PZ
946 return;
947
948 n = top - at;
949 if (n <= 0)
950 return;
ca037701 951
d80c7502
PZ
952 /*
953 * Should not happen, we program the threshold at 1 and do not
954 * set a reset value.
955 */
70ab7003 956 WARN_ONCE(n > 1, "bad leftover pebs %d\n", n);
d80c7502
PZ
957 at += n - 1;
958
2b0b5c6f 959 __intel_pmu_pebs_event(event, iregs, at);
ca037701
PZ
960}
961
d2beea4a 962static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs)
ca037701
PZ
963{
964 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
965 struct debug_store *ds = cpuc->ds;
ca037701 966 struct perf_event *event = NULL;
d2beea4a 967 void *at, *top;
12ab854d 968 u64 status = 0;
eb8417aa 969 int bit;
d2beea4a
PZ
970
971 if (!x86_pmu.pebs_active)
972 return;
973
974 at = (struct pebs_record_nhm *)(unsigned long)ds->pebs_buffer_base;
975 top = (struct pebs_record_nhm *)(unsigned long)ds->pebs_index;
ca037701 976
ca037701
PZ
977 ds->pebs_index = ds->pebs_buffer_base;
978
eb8417aa 979 if (unlikely(at > top))
d2beea4a
PZ
980 return;
981
982 /*
983 * Should not happen, we program the threshold at 1 and do not
984 * set a reset value.
985 */
eb8417aa
PZ
986 WARN_ONCE(top - at > x86_pmu.max_pebs_events * x86_pmu.pebs_record_size,
987 "Unexpected number of pebs records %ld\n",
92519bbc 988 (long)(top - at) / x86_pmu.pebs_record_size);
d2beea4a 989
130768b8
AK
990 for (; at < top; at += x86_pmu.pebs_record_size) {
991 struct pebs_record_nhm *p = at;
ca037701 992
130768b8
AK
993 for_each_set_bit(bit, (unsigned long *)&p->status,
994 x86_pmu.max_pebs_events) {
12ab854d
PZ
995 event = cpuc->events[bit];
996 if (!test_bit(bit, cpuc->active_mask))
ca037701
PZ
997 continue;
998
12ab854d
PZ
999 WARN_ON_ONCE(!event);
1000
ab608344 1001 if (!event->attr.precise_ip)
12ab854d
PZ
1002 continue;
1003
1004 if (__test_and_set_bit(bit, (unsigned long *)&status))
1005 continue;
1006
1007 break;
ca037701
PZ
1008 }
1009
70ab7003 1010 if (!event || bit >= x86_pmu.max_pebs_events)
ca037701
PZ
1011 continue;
1012
2b0b5c6f 1013 __intel_pmu_pebs_event(event, iregs, at);
ca037701 1014 }
ca037701
PZ
1015}
1016
1017/*
1018 * BTS, PEBS probe and setup
1019 */
1020
de0428a7 1021void intel_ds_init(void)
ca037701
PZ
1022{
1023 /*
1024 * No support for 32bit formats
1025 */
1026 if (!boot_cpu_has(X86_FEATURE_DTES64))
1027 return;
1028
1029 x86_pmu.bts = boot_cpu_has(X86_FEATURE_BTS);
1030 x86_pmu.pebs = boot_cpu_has(X86_FEATURE_PEBS);
1031 if (x86_pmu.pebs) {
8db909a7
PZ
1032 char pebs_type = x86_pmu.intel_cap.pebs_trap ? '+' : '-';
1033 int format = x86_pmu.intel_cap.pebs_format;
ca037701
PZ
1034
1035 switch (format) {
1036 case 0:
8db909a7 1037 printk(KERN_CONT "PEBS fmt0%c, ", pebs_type);
ca037701
PZ
1038 x86_pmu.pebs_record_size = sizeof(struct pebs_record_core);
1039 x86_pmu.drain_pebs = intel_pmu_drain_pebs_core;
ca037701
PZ
1040 break;
1041
1042 case 1:
8db909a7 1043 printk(KERN_CONT "PEBS fmt1%c, ", pebs_type);
ca037701
PZ
1044 x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm);
1045 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
ca037701
PZ
1046 break;
1047
130768b8
AK
1048 case 2:
1049 pr_cont("PEBS fmt2%c, ", pebs_type);
1050 x86_pmu.pebs_record_size = sizeof(struct pebs_record_hsw);
d2beea4a 1051 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
130768b8
AK
1052 break;
1053
ca037701 1054 default:
8db909a7 1055 printk(KERN_CONT "no PEBS fmt%d%c, ", format, pebs_type);
ca037701 1056 x86_pmu.pebs = 0;
ca037701
PZ
1057 }
1058 }
1059}
1d9d8639
SE
1060
1061void perf_restore_debug_store(void)
1062{
2a6e06b2
LT
1063 struct debug_store *ds = __this_cpu_read(cpu_hw_events.ds);
1064
1d9d8639
SE
1065 if (!x86_pmu.bts && !x86_pmu.pebs)
1066 return;
1067
2a6e06b2 1068 wrmsrl(MSR_IA32_DS_AREA, (unsigned long)ds);
1d9d8639 1069}
This page took 0.236111 seconds and 5 git commands to generate.