ASoC: tlv320aic23: Convert to params_width()
[cascardo/linux.git] / arch / x86 / kernel / cpu / perf_event_intel_ds.c
1 #include <linux/bitops.h>
2 #include <linux/types.h>
3 #include <linux/slab.h>
4
5 #include <asm/perf_event.h>
6 #include <asm/insn.h>
7
8 #include "perf_event.h"
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
15 #define PEBS_FIXUP_SIZE         PAGE_SIZE
16
17 /*
18  * pebs_record_32 for p4 and core not supported
19
20 struct pebs_record_32 {
21         u32 flags, ip;
22         u32 ax, bc, cx, dx;
23         u32 si, di, bp, sp;
24 };
25
26  */
27
28 union 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
54 static 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
73 static 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
111 static u64 precise_store_data_hsw(struct perf_event *event, u64 status)
112 {
113         union perf_mem_data_src dse;
114         u64 cfg = event->hw.config & INTEL_ARCH_EVENT_MASK;
115
116         dse.val = 0;
117         dse.mem_op = PERF_MEM_OP_STORE;
118         dse.mem_lvl = PERF_MEM_LVL_NA;
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
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
136         /* Nothing else supported. Sorry. */
137         return dse.val;
138 }
139
140 static 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
181 struct 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
189 struct 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
198 /*
199  * Same as pebs_record_nhm, with two additional fields.
200  */
201 struct pebs_record_hsw {
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;
208         u64 real_ip, tsx_tuning;
209 };
210
211 union 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;
224 };
225
226 #define PEBS_HSW_TSX_FLAGS      0xff00000000ULL
227
228 void init_debug_store_on_cpu(int cpu)
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
240 void fini_debug_store_on_cpu(int cpu)
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
248 static DEFINE_PER_CPU(void *, insn_buffer);
249
250 static int alloc_pebs_buffer(int cpu)
251 {
252         struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
253         int node = cpu_to_node(cpu);
254         int max, thresh = 1; /* always use a single PEBS record */
255         void *buffer, *ibuffer;
256
257         if (!x86_pmu.pebs)
258                 return 0;
259
260         buffer = kzalloc_node(PEBS_BUFFER_SIZE, GFP_KERNEL, node);
261         if (unlikely(!buffer))
262                 return -ENOMEM;
263
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
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
290 static 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
297         kfree(per_cpu(insn_buffer, cpu));
298         per_cpu(insn_buffer, cpu) = NULL;
299
300         kfree((void *)(unsigned long)ds->pebs_buffer_base);
301         ds->pebs_buffer_base = 0;
302 }
303
304 static int alloc_bts_buffer(int cpu)
305 {
306         struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
307         int node = cpu_to_node(cpu);
308         int max, thresh;
309         void *buffer;
310
311         if (!x86_pmu.bts)
312                 return 0;
313
314         buffer = kzalloc_node(BTS_BUFFER_SIZE, GFP_KERNEL, node);
315         if (unlikely(!buffer))
316                 return -ENOMEM;
317
318         max = BTS_BUFFER_SIZE / BTS_RECORD_SIZE;
319         thresh = max / 16;
320
321         ds->bts_buffer_base = (u64)(unsigned long)buffer;
322         ds->bts_index = ds->bts_buffer_base;
323         ds->bts_absolute_maximum = ds->bts_buffer_base +
324                 max * BTS_RECORD_SIZE;
325         ds->bts_interrupt_threshold = ds->bts_absolute_maximum -
326                 thresh * BTS_RECORD_SIZE;
327
328         return 0;
329 }
330
331 static void release_bts_buffer(int cpu)
332 {
333         struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
334
335         if (!ds || !x86_pmu.bts)
336                 return;
337
338         kfree((void *)(unsigned long)ds->bts_buffer_base);
339         ds->bts_buffer_base = 0;
340 }
341
342 static int alloc_ds_buffer(int cpu)
343 {
344         int node = cpu_to_node(cpu);
345         struct debug_store *ds;
346
347         ds = kzalloc_node(sizeof(*ds), GFP_KERNEL, node);
348         if (unlikely(!ds))
349                 return -ENOMEM;
350
351         per_cpu(cpu_hw_events, cpu).ds = ds;
352
353         return 0;
354 }
355
356 static void release_ds_buffer(int cpu)
357 {
358         struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
359
360         if (!ds)
361                 return;
362
363         per_cpu(cpu_hw_events, cpu).ds = NULL;
364         kfree(ds);
365 }
366
367 void release_ds_buffers(void)
368 {
369         int cpu;
370
371         if (!x86_pmu.bts && !x86_pmu.pebs)
372                 return;
373
374         get_online_cpus();
375         for_each_online_cpu(cpu)
376                 fini_debug_store_on_cpu(cpu);
377
378         for_each_possible_cpu(cpu) {
379                 release_pebs_buffer(cpu);
380                 release_bts_buffer(cpu);
381                 release_ds_buffer(cpu);
382         }
383         put_online_cpus();
384 }
385
386 void reserve_ds_buffers(void)
387 {
388         int bts_err = 0, pebs_err = 0;
389         int cpu;
390
391         x86_pmu.bts_active = 0;
392         x86_pmu.pebs_active = 0;
393
394         if (!x86_pmu.bts && !x86_pmu.pebs)
395                 return;
396
397         if (!x86_pmu.bts)
398                 bts_err = 1;
399
400         if (!x86_pmu.pebs)
401                 pebs_err = 1;
402
403         get_online_cpus();
404
405         for_each_possible_cpu(cpu) {
406                 if (alloc_ds_buffer(cpu)) {
407                         bts_err = 1;
408                         pebs_err = 1;
409                 }
410
411                 if (!bts_err && alloc_bts_buffer(cpu))
412                         bts_err = 1;
413
414                 if (!pebs_err && alloc_pebs_buffer(cpu))
415                         pebs_err = 1;
416
417                 if (bts_err && pebs_err)
418                         break;
419         }
420
421         if (bts_err) {
422                 for_each_possible_cpu(cpu)
423                         release_bts_buffer(cpu);
424         }
425
426         if (pebs_err) {
427                 for_each_possible_cpu(cpu)
428                         release_pebs_buffer(cpu);
429         }
430
431         if (bts_err && pebs_err) {
432                 for_each_possible_cpu(cpu)
433                         release_ds_buffer(cpu);
434         } else {
435                 if (x86_pmu.bts && !bts_err)
436                         x86_pmu.bts_active = 1;
437
438                 if (x86_pmu.pebs && !pebs_err)
439                         x86_pmu.pebs_active = 1;
440
441                 for_each_online_cpu(cpu)
442                         init_debug_store_on_cpu(cpu);
443         }
444
445         put_online_cpus();
446 }
447
448 /*
449  * BTS
450  */
451
452 struct event_constraint bts_constraint =
453         EVENT_CONSTRAINT(0, 1ULL << INTEL_PMC_IDX_FIXED_BTS, 0);
454
455 void intel_pmu_enable_bts(u64 config)
456 {
457         unsigned long debugctlmsr;
458
459         debugctlmsr = get_debugctlmsr();
460
461         debugctlmsr |= DEBUGCTLMSR_TR;
462         debugctlmsr |= DEBUGCTLMSR_BTS;
463         debugctlmsr |= DEBUGCTLMSR_BTINT;
464
465         if (!(config & ARCH_PERFMON_EVENTSEL_OS))
466                 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_OS;
467
468         if (!(config & ARCH_PERFMON_EVENTSEL_USR))
469                 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_USR;
470
471         update_debugctlmsr(debugctlmsr);
472 }
473
474 void intel_pmu_disable_bts(void)
475 {
476         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
477         unsigned long debugctlmsr;
478
479         if (!cpuc->ds)
480                 return;
481
482         debugctlmsr = get_debugctlmsr();
483
484         debugctlmsr &=
485                 ~(DEBUGCTLMSR_TR | DEBUGCTLMSR_BTS | DEBUGCTLMSR_BTINT |
486                   DEBUGCTLMSR_BTS_OFF_OS | DEBUGCTLMSR_BTS_OFF_USR);
487
488         update_debugctlmsr(debugctlmsr);
489 }
490
491 int intel_pmu_drain_bts_buffer(void)
492 {
493         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
494         struct debug_store *ds = cpuc->ds;
495         struct bts_record {
496                 u64     from;
497                 u64     to;
498                 u64     flags;
499         };
500         struct perf_event *event = cpuc->events[INTEL_PMC_IDX_FIXED_BTS];
501         struct bts_record *at, *top;
502         struct perf_output_handle handle;
503         struct perf_event_header header;
504         struct perf_sample_data data;
505         struct pt_regs regs;
506
507         if (!event)
508                 return 0;
509
510         if (!x86_pmu.bts_active)
511                 return 0;
512
513         at  = (struct bts_record *)(unsigned long)ds->bts_buffer_base;
514         top = (struct bts_record *)(unsigned long)ds->bts_index;
515
516         if (top <= at)
517                 return 0;
518
519         memset(&regs, 0, sizeof(regs));
520
521         ds->bts_index = ds->bts_buffer_base;
522
523         perf_sample_data_init(&data, 0, event->hw.last_period);
524
525         /*
526          * Prepare a generic sample, i.e. fill in the invariant fields.
527          * We will overwrite the from and to address before we output
528          * the sample.
529          */
530         perf_prepare_sample(&header, &data, event, &regs);
531
532         if (perf_output_begin(&handle, event, header.size * (top - at)))
533                 return 1;
534
535         for (; at < top; at++) {
536                 data.ip         = at->from;
537                 data.addr       = at->to;
538
539                 perf_output_sample(&handle, &header, &data, event);
540         }
541
542         perf_output_end(&handle);
543
544         /* There's new data available. */
545         event->hw.interrupts++;
546         event->pending_kill = POLL_IN;
547         return 1;
548 }
549
550 /*
551  * PEBS
552  */
553 struct event_constraint intel_core2_pebs_event_constraints[] = {
554         INTEL_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
555         INTEL_UEVENT_CONSTRAINT(0xfec1, 0x1), /* X87_OPS_RETIRED.ANY */
556         INTEL_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */
557         INTEL_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */
558         INTEL_EVENT_CONSTRAINT(0xcb, 0x1),    /* MEM_LOAD_RETIRED.* */
559         EVENT_CONSTRAINT_END
560 };
561
562 struct event_constraint intel_atom_pebs_event_constraints[] = {
563         INTEL_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
564         INTEL_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */
565         INTEL_EVENT_CONSTRAINT(0xcb, 0x1),    /* MEM_LOAD_RETIRED.* */
566         EVENT_CONSTRAINT_END
567 };
568
569 struct event_constraint intel_slm_pebs_event_constraints[] = {
570         INTEL_UEVENT_CONSTRAINT(0x0103, 0x1), /* REHABQ.LD_BLOCK_ST_FORWARD_PS */
571         INTEL_UEVENT_CONSTRAINT(0x0803, 0x1), /* REHABQ.LD_SPLITS_PS */
572         INTEL_UEVENT_CONSTRAINT(0x0204, 0x1), /* MEM_UOPS_RETIRED.L2_HIT_LOADS_PS */
573         INTEL_UEVENT_CONSTRAINT(0x0404, 0x1), /* MEM_UOPS_RETIRED.L2_MISS_LOADS_PS */
574         INTEL_UEVENT_CONSTRAINT(0x0804, 0x1), /* MEM_UOPS_RETIRED.DTLB_MISS_LOADS_PS */
575         INTEL_UEVENT_CONSTRAINT(0x2004, 0x1), /* MEM_UOPS_RETIRED.HITM_PS */
576         INTEL_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY_PS */
577         INTEL_UEVENT_CONSTRAINT(0x00c4, 0x1), /* BR_INST_RETIRED.ALL_BRANCHES_PS */
578         INTEL_UEVENT_CONSTRAINT(0x7ec4, 0x1), /* BR_INST_RETIRED.JCC_PS */
579         INTEL_UEVENT_CONSTRAINT(0xbfc4, 0x1), /* BR_INST_RETIRED.FAR_BRANCH_PS */
580         INTEL_UEVENT_CONSTRAINT(0xebc4, 0x1), /* BR_INST_RETIRED.NON_RETURN_IND_PS */
581         INTEL_UEVENT_CONSTRAINT(0xf7c4, 0x1), /* BR_INST_RETIRED.RETURN_PS */
582         INTEL_UEVENT_CONSTRAINT(0xf9c4, 0x1), /* BR_INST_RETIRED.CALL_PS */
583         INTEL_UEVENT_CONSTRAINT(0xfbc4, 0x1), /* BR_INST_RETIRED.IND_CALL_PS */
584         INTEL_UEVENT_CONSTRAINT(0xfdc4, 0x1), /* BR_INST_RETIRED.REL_CALL_PS */
585         INTEL_UEVENT_CONSTRAINT(0xfec4, 0x1), /* BR_INST_RETIRED.TAKEN_JCC_PS */
586         INTEL_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_MISP_RETIRED.ALL_BRANCHES_PS */
587         INTEL_UEVENT_CONSTRAINT(0x7ec5, 0x1), /* BR_INST_MISP_RETIRED.JCC_PS */
588         INTEL_UEVENT_CONSTRAINT(0xebc5, 0x1), /* BR_INST_MISP_RETIRED.NON_RETURN_IND_PS */
589         INTEL_UEVENT_CONSTRAINT(0xf7c5, 0x1), /* BR_INST_MISP_RETIRED.RETURN_PS */
590         INTEL_UEVENT_CONSTRAINT(0xfbc5, 0x1), /* BR_INST_MISP_RETIRED.IND_CALL_PS */
591         INTEL_UEVENT_CONSTRAINT(0xfec5, 0x1), /* BR_INST_MISP_RETIRED.TAKEN_JCC_PS */
592         EVENT_CONSTRAINT_END
593 };
594
595 struct event_constraint intel_nehalem_pebs_event_constraints[] = {
596         INTEL_PLD_CONSTRAINT(0x100b, 0xf),      /* MEM_INST_RETIRED.* */
597         INTEL_EVENT_CONSTRAINT(0x0f, 0xf),    /* MEM_UNCORE_RETIRED.* */
598         INTEL_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
599         INTEL_EVENT_CONSTRAINT(0xc0, 0xf),    /* INST_RETIRED.ANY */
600         INTEL_EVENT_CONSTRAINT(0xc2, 0xf),    /* UOPS_RETIRED.* */
601         INTEL_EVENT_CONSTRAINT(0xc4, 0xf),    /* BR_INST_RETIRED.* */
602         INTEL_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */
603         INTEL_EVENT_CONSTRAINT(0xc7, 0xf),    /* SSEX_UOPS_RETIRED.* */
604         INTEL_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
605         INTEL_EVENT_CONSTRAINT(0xcb, 0xf),    /* MEM_LOAD_RETIRED.* */
606         INTEL_EVENT_CONSTRAINT(0xf7, 0xf),    /* FP_ASSIST.* */
607         EVENT_CONSTRAINT_END
608 };
609
610 struct event_constraint intel_westmere_pebs_event_constraints[] = {
611         INTEL_PLD_CONSTRAINT(0x100b, 0xf),      /* MEM_INST_RETIRED.* */
612         INTEL_EVENT_CONSTRAINT(0x0f, 0xf),    /* MEM_UNCORE_RETIRED.* */
613         INTEL_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
614         INTEL_EVENT_CONSTRAINT(0xc0, 0xf),    /* INSTR_RETIRED.* */
615         INTEL_EVENT_CONSTRAINT(0xc2, 0xf),    /* UOPS_RETIRED.* */
616         INTEL_EVENT_CONSTRAINT(0xc4, 0xf),    /* BR_INST_RETIRED.* */
617         INTEL_EVENT_CONSTRAINT(0xc5, 0xf),    /* BR_MISP_RETIRED.* */
618         INTEL_EVENT_CONSTRAINT(0xc7, 0xf),    /* SSEX_UOPS_RETIRED.* */
619         INTEL_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
620         INTEL_EVENT_CONSTRAINT(0xcb, 0xf),    /* MEM_LOAD_RETIRED.* */
621         INTEL_EVENT_CONSTRAINT(0xf7, 0xf),    /* FP_ASSIST.* */
622         EVENT_CONSTRAINT_END
623 };
624
625 struct event_constraint intel_snb_pebs_event_constraints[] = {
626         INTEL_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
627         INTEL_UEVENT_CONSTRAINT(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
628         INTEL_UEVENT_CONSTRAINT(0x02c2, 0xf), /* UOPS_RETIRED.RETIRE_SLOTS */
629         INTEL_EVENT_CONSTRAINT(0xc4, 0xf),    /* BR_INST_RETIRED.* */
630         INTEL_EVENT_CONSTRAINT(0xc5, 0xf),    /* BR_MISP_RETIRED.* */
631         INTEL_PLD_CONSTRAINT(0x01cd, 0x8),    /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
632         INTEL_PST_CONSTRAINT(0x02cd, 0x8),    /* MEM_TRANS_RETIRED.PRECISE_STORES */
633         INTEL_EVENT_CONSTRAINT(0xd0, 0xf),    /* MEM_UOP_RETIRED.* */
634         INTEL_EVENT_CONSTRAINT(0xd1, 0xf),    /* MEM_LOAD_UOPS_RETIRED.* */
635         INTEL_EVENT_CONSTRAINT(0xd2, 0xf),    /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
636         INTEL_EVENT_CONSTRAINT(0xd3, 0xf),    /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
637         INTEL_UEVENT_CONSTRAINT(0x02d4, 0xf), /* MEM_LOAD_UOPS_MISC_RETIRED.LLC_MISS */
638         EVENT_CONSTRAINT_END
639 };
640
641 struct event_constraint intel_ivb_pebs_event_constraints[] = {
642         INTEL_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
643         INTEL_UEVENT_CONSTRAINT(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
644         INTEL_UEVENT_CONSTRAINT(0x02c2, 0xf), /* UOPS_RETIRED.RETIRE_SLOTS */
645         INTEL_EVENT_CONSTRAINT(0xc4, 0xf),    /* BR_INST_RETIRED.* */
646         INTEL_EVENT_CONSTRAINT(0xc5, 0xf),    /* BR_MISP_RETIRED.* */
647         INTEL_PLD_CONSTRAINT(0x01cd, 0x8),    /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
648         INTEL_PST_CONSTRAINT(0x02cd, 0x8),    /* MEM_TRANS_RETIRED.PRECISE_STORES */
649         INTEL_EVENT_CONSTRAINT(0xd0, 0xf),    /* MEM_UOP_RETIRED.* */
650         INTEL_EVENT_CONSTRAINT(0xd1, 0xf),    /* MEM_LOAD_UOPS_RETIRED.* */
651         INTEL_EVENT_CONSTRAINT(0xd2, 0xf),    /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
652         INTEL_EVENT_CONSTRAINT(0xd3, 0xf),    /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
653         EVENT_CONSTRAINT_END
654 };
655
656 struct event_constraint intel_hsw_pebs_event_constraints[] = {
657         INTEL_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
658         INTEL_PST_HSW_CONSTRAINT(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
659         INTEL_UEVENT_CONSTRAINT(0x02c2, 0xf), /* UOPS_RETIRED.RETIRE_SLOTS */
660         INTEL_EVENT_CONSTRAINT(0xc4, 0xf),    /* BR_INST_RETIRED.* */
661         INTEL_UEVENT_CONSTRAINT(0x01c5, 0xf), /* BR_MISP_RETIRED.CONDITIONAL */
662         INTEL_UEVENT_CONSTRAINT(0x04c5, 0xf), /* BR_MISP_RETIRED.ALL_BRANCHES */
663         INTEL_UEVENT_CONSTRAINT(0x20c5, 0xf), /* BR_MISP_RETIRED.NEAR_TAKEN */
664         INTEL_PLD_CONSTRAINT(0x01cd, 0x8),    /* MEM_TRANS_RETIRED.* */
665         /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
666         INTEL_UEVENT_CONSTRAINT(0x11d0, 0xf),
667         /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
668         INTEL_UEVENT_CONSTRAINT(0x12d0, 0xf),
669         INTEL_UEVENT_CONSTRAINT(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
670         INTEL_UEVENT_CONSTRAINT(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
671         /* MEM_UOPS_RETIRED.SPLIT_STORES */
672         INTEL_UEVENT_CONSTRAINT(0x42d0, 0xf),
673         INTEL_UEVENT_CONSTRAINT(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
674         INTEL_PST_HSW_CONSTRAINT(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
675         INTEL_UEVENT_CONSTRAINT(0x01d1, 0xf), /* MEM_LOAD_UOPS_RETIRED.L1_HIT */
676         INTEL_UEVENT_CONSTRAINT(0x02d1, 0xf), /* MEM_LOAD_UOPS_RETIRED.L2_HIT */
677         INTEL_UEVENT_CONSTRAINT(0x04d1, 0xf), /* MEM_LOAD_UOPS_RETIRED.L3_HIT */
678         /* MEM_LOAD_UOPS_RETIRED.HIT_LFB */
679         INTEL_UEVENT_CONSTRAINT(0x40d1, 0xf),
680         /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.XSNP_MISS */
681         INTEL_UEVENT_CONSTRAINT(0x01d2, 0xf),
682         /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.XSNP_HIT */
683         INTEL_UEVENT_CONSTRAINT(0x02d2, 0xf),
684         /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.LOCAL_DRAM */
685         INTEL_UEVENT_CONSTRAINT(0x01d3, 0xf),
686         INTEL_UEVENT_CONSTRAINT(0x04c8, 0xf), /* HLE_RETIRED.Abort */
687         INTEL_UEVENT_CONSTRAINT(0x04c9, 0xf), /* RTM_RETIRED.Abort */
688
689         EVENT_CONSTRAINT_END
690 };
691
692 struct event_constraint *intel_pebs_constraints(struct perf_event *event)
693 {
694         struct event_constraint *c;
695
696         if (!event->attr.precise_ip)
697                 return NULL;
698
699         if (x86_pmu.pebs_constraints) {
700                 for_each_event_constraint(c, x86_pmu.pebs_constraints) {
701                         if ((event->hw.config & c->cmask) == c->code) {
702                                 event->hw.flags |= c->flags;
703                                 return c;
704                         }
705                 }
706         }
707
708         return &emptyconstraint;
709 }
710
711 void intel_pmu_pebs_enable(struct perf_event *event)
712 {
713         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
714         struct hw_perf_event *hwc = &event->hw;
715
716         hwc->config &= ~ARCH_PERFMON_EVENTSEL_INT;
717
718         cpuc->pebs_enabled |= 1ULL << hwc->idx;
719
720         if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
721                 cpuc->pebs_enabled |= 1ULL << (hwc->idx + 32);
722         else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
723                 cpuc->pebs_enabled |= 1ULL << 63;
724 }
725
726 void intel_pmu_pebs_disable(struct perf_event *event)
727 {
728         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
729         struct hw_perf_event *hwc = &event->hw;
730
731         cpuc->pebs_enabled &= ~(1ULL << hwc->idx);
732
733         if (event->hw.constraint->flags & PERF_X86_EVENT_PEBS_LDLAT)
734                 cpuc->pebs_enabled &= ~(1ULL << (hwc->idx + 32));
735         else if (event->hw.constraint->flags & PERF_X86_EVENT_PEBS_ST)
736                 cpuc->pebs_enabled &= ~(1ULL << 63);
737
738         if (cpuc->enabled)
739                 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
740
741         hwc->config |= ARCH_PERFMON_EVENTSEL_INT;
742 }
743
744 void intel_pmu_pebs_enable_all(void)
745 {
746         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
747
748         if (cpuc->pebs_enabled)
749                 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
750 }
751
752 void intel_pmu_pebs_disable_all(void)
753 {
754         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
755
756         if (cpuc->pebs_enabled)
757                 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
758 }
759
760 static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs)
761 {
762         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
763         unsigned long from = cpuc->lbr_entries[0].from;
764         unsigned long old_to, to = cpuc->lbr_entries[0].to;
765         unsigned long ip = regs->ip;
766         int is_64bit = 0;
767         void *kaddr;
768
769         /*
770          * We don't need to fixup if the PEBS assist is fault like
771          */
772         if (!x86_pmu.intel_cap.pebs_trap)
773                 return 1;
774
775         /*
776          * No LBR entry, no basic block, no rewinding
777          */
778         if (!cpuc->lbr_stack.nr || !from || !to)
779                 return 0;
780
781         /*
782          * Basic blocks should never cross user/kernel boundaries
783          */
784         if (kernel_ip(ip) != kernel_ip(to))
785                 return 0;
786
787         /*
788          * unsigned math, either ip is before the start (impossible) or
789          * the basic block is larger than 1 page (sanity)
790          */
791         if ((ip - to) > PEBS_FIXUP_SIZE)
792                 return 0;
793
794         /*
795          * We sampled a branch insn, rewind using the LBR stack
796          */
797         if (ip == to) {
798                 set_linear_ip(regs, from);
799                 return 1;
800         }
801
802         if (!kernel_ip(ip)) {
803                 int size, bytes;
804                 u8 *buf = this_cpu_read(insn_buffer);
805
806                 size = ip - to; /* Must fit our buffer, see above */
807                 bytes = copy_from_user_nmi(buf, (void __user *)to, size);
808                 if (bytes != 0)
809                         return 0;
810
811                 kaddr = buf;
812         } else {
813                 kaddr = (void *)to;
814         }
815
816         do {
817                 struct insn insn;
818
819                 old_to = to;
820
821 #ifdef CONFIG_X86_64
822                 is_64bit = kernel_ip(to) || !test_thread_flag(TIF_IA32);
823 #endif
824                 insn_init(&insn, kaddr, is_64bit);
825                 insn_get_length(&insn);
826
827                 to += insn.length;
828                 kaddr += insn.length;
829         } while (to < ip);
830
831         if (to == ip) {
832                 set_linear_ip(regs, old_to);
833                 return 1;
834         }
835
836         /*
837          * Even though we decoded the basic block, the instruction stream
838          * never matched the given IP, either the TO or the IP got corrupted.
839          */
840         return 0;
841 }
842
843 static inline u64 intel_hsw_weight(struct pebs_record_hsw *pebs)
844 {
845         if (pebs->tsx_tuning) {
846                 union hsw_tsx_tuning tsx = { .value = pebs->tsx_tuning };
847                 return tsx.cycles_last_block;
848         }
849         return 0;
850 }
851
852 static inline u64 intel_hsw_transaction(struct pebs_record_hsw *pebs)
853 {
854         u64 txn = (pebs->tsx_tuning & PEBS_HSW_TSX_FLAGS) >> 32;
855
856         /* For RTM XABORTs also log the abort code from AX */
857         if ((txn & PERF_TXN_TRANSACTION) && (pebs->ax & 1))
858                 txn |= ((pebs->ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT;
859         return txn;
860 }
861
862 static void __intel_pmu_pebs_event(struct perf_event *event,
863                                    struct pt_regs *iregs, void *__pebs)
864 {
865         /*
866          * We cast to the biggest pebs_record but are careful not to
867          * unconditionally access the 'extra' entries.
868          */
869         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
870         struct pebs_record_hsw *pebs = __pebs;
871         struct perf_sample_data data;
872         struct pt_regs regs;
873         u64 sample_type;
874         int fll, fst;
875
876         if (!intel_pmu_save_and_restart(event))
877                 return;
878
879         fll = event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT;
880         fst = event->hw.flags & (PERF_X86_EVENT_PEBS_ST |
881                                  PERF_X86_EVENT_PEBS_ST_HSW);
882
883         perf_sample_data_init(&data, 0, event->hw.last_period);
884
885         data.period = event->hw.last_period;
886         sample_type = event->attr.sample_type;
887
888         /*
889          * if PEBS-LL or PreciseStore
890          */
891         if (fll || fst) {
892                 /*
893                  * Use latency for weight (only avail with PEBS-LL)
894                  */
895                 if (fll && (sample_type & PERF_SAMPLE_WEIGHT))
896                         data.weight = pebs->lat;
897
898                 /*
899                  * data.data_src encodes the data source
900                  */
901                 if (sample_type & PERF_SAMPLE_DATA_SRC) {
902                         if (fll)
903                                 data.data_src.val = load_latency_data(pebs->dse);
904                         else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW)
905                                 data.data_src.val =
906                                         precise_store_data_hsw(event, pebs->dse);
907                         else
908                                 data.data_src.val = precise_store_data(pebs->dse);
909                 }
910         }
911
912         /*
913          * We use the interrupt regs as a base because the PEBS record
914          * does not contain a full regs set, specifically it seems to
915          * lack segment descriptors, which get used by things like
916          * user_mode().
917          *
918          * In the simple case fix up only the IP and BP,SP regs, for
919          * PERF_SAMPLE_IP and PERF_SAMPLE_CALLCHAIN to function properly.
920          * A possible PERF_SAMPLE_REGS will have to transfer all regs.
921          */
922         regs = *iregs;
923         regs.flags = pebs->flags;
924         set_linear_ip(&regs, pebs->ip);
925         regs.bp = pebs->bp;
926         regs.sp = pebs->sp;
927
928         if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format >= 2) {
929                 regs.ip = pebs->real_ip;
930                 regs.flags |= PERF_EFLAGS_EXACT;
931         } else if (event->attr.precise_ip > 1 && intel_pmu_pebs_fixup_ip(&regs))
932                 regs.flags |= PERF_EFLAGS_EXACT;
933         else
934                 regs.flags &= ~PERF_EFLAGS_EXACT;
935
936         if ((event->attr.sample_type & PERF_SAMPLE_ADDR) &&
937             x86_pmu.intel_cap.pebs_format >= 1)
938                 data.addr = pebs->dla;
939
940         if (x86_pmu.intel_cap.pebs_format >= 2) {
941                 /* Only set the TSX weight when no memory weight. */
942                 if ((event->attr.sample_type & PERF_SAMPLE_WEIGHT) && !fll)
943                         data.weight = intel_hsw_weight(pebs);
944
945                 if (event->attr.sample_type & PERF_SAMPLE_TRANSACTION)
946                         data.txn = intel_hsw_transaction(pebs);
947         }
948
949         if (has_branch_stack(event))
950                 data.br_stack = &cpuc->lbr_stack;
951
952         if (perf_event_overflow(event, &data, &regs))
953                 x86_pmu_stop(event, 0);
954 }
955
956 static void intel_pmu_drain_pebs_core(struct pt_regs *iregs)
957 {
958         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
959         struct debug_store *ds = cpuc->ds;
960         struct perf_event *event = cpuc->events[0]; /* PMC0 only */
961         struct pebs_record_core *at, *top;
962         int n;
963
964         if (!x86_pmu.pebs_active)
965                 return;
966
967         at  = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base;
968         top = (struct pebs_record_core *)(unsigned long)ds->pebs_index;
969
970         /*
971          * Whatever else happens, drain the thing
972          */
973         ds->pebs_index = ds->pebs_buffer_base;
974
975         if (!test_bit(0, cpuc->active_mask))
976                 return;
977
978         WARN_ON_ONCE(!event);
979
980         if (!event->attr.precise_ip)
981                 return;
982
983         n = top - at;
984         if (n <= 0)
985                 return;
986
987         /*
988          * Should not happen, we program the threshold at 1 and do not
989          * set a reset value.
990          */
991         WARN_ONCE(n > 1, "bad leftover pebs %d\n", n);
992         at += n - 1;
993
994         __intel_pmu_pebs_event(event, iregs, at);
995 }
996
997 static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs)
998 {
999         struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1000         struct debug_store *ds = cpuc->ds;
1001         struct perf_event *event = NULL;
1002         void *at, *top;
1003         u64 status = 0;
1004         int bit;
1005
1006         if (!x86_pmu.pebs_active)
1007                 return;
1008
1009         at  = (struct pebs_record_nhm *)(unsigned long)ds->pebs_buffer_base;
1010         top = (struct pebs_record_nhm *)(unsigned long)ds->pebs_index;
1011
1012         ds->pebs_index = ds->pebs_buffer_base;
1013
1014         if (unlikely(at > top))
1015                 return;
1016
1017         /*
1018          * Should not happen, we program the threshold at 1 and do not
1019          * set a reset value.
1020          */
1021         WARN_ONCE(top - at > x86_pmu.max_pebs_events * x86_pmu.pebs_record_size,
1022                   "Unexpected number of pebs records %ld\n",
1023                   (long)(top - at) / x86_pmu.pebs_record_size);
1024
1025         for (; at < top; at += x86_pmu.pebs_record_size) {
1026                 struct pebs_record_nhm *p = at;
1027
1028                 for_each_set_bit(bit, (unsigned long *)&p->status,
1029                                  x86_pmu.max_pebs_events) {
1030                         event = cpuc->events[bit];
1031                         if (!test_bit(bit, cpuc->active_mask))
1032                                 continue;
1033
1034                         WARN_ON_ONCE(!event);
1035
1036                         if (!event->attr.precise_ip)
1037                                 continue;
1038
1039                         if (__test_and_set_bit(bit, (unsigned long *)&status))
1040                                 continue;
1041
1042                         break;
1043                 }
1044
1045                 if (!event || bit >= x86_pmu.max_pebs_events)
1046                         continue;
1047
1048                 __intel_pmu_pebs_event(event, iregs, at);
1049         }
1050 }
1051
1052 /*
1053  * BTS, PEBS probe and setup
1054  */
1055
1056 void intel_ds_init(void)
1057 {
1058         /*
1059          * No support for 32bit formats
1060          */
1061         if (!boot_cpu_has(X86_FEATURE_DTES64))
1062                 return;
1063
1064         x86_pmu.bts  = boot_cpu_has(X86_FEATURE_BTS);
1065         x86_pmu.pebs = boot_cpu_has(X86_FEATURE_PEBS);
1066         if (x86_pmu.pebs) {
1067                 char pebs_type = x86_pmu.intel_cap.pebs_trap ?  '+' : '-';
1068                 int format = x86_pmu.intel_cap.pebs_format;
1069
1070                 switch (format) {
1071                 case 0:
1072                         printk(KERN_CONT "PEBS fmt0%c, ", pebs_type);
1073                         x86_pmu.pebs_record_size = sizeof(struct pebs_record_core);
1074                         x86_pmu.drain_pebs = intel_pmu_drain_pebs_core;
1075                         break;
1076
1077                 case 1:
1078                         printk(KERN_CONT "PEBS fmt1%c, ", pebs_type);
1079                         x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm);
1080                         x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
1081                         break;
1082
1083                 case 2:
1084                         pr_cont("PEBS fmt2%c, ", pebs_type);
1085                         x86_pmu.pebs_record_size = sizeof(struct pebs_record_hsw);
1086                         x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
1087                         break;
1088
1089                 default:
1090                         printk(KERN_CONT "no PEBS fmt%d%c, ", format, pebs_type);
1091                         x86_pmu.pebs = 0;
1092                 }
1093         }
1094 }
1095
1096 void perf_restore_debug_store(void)
1097 {
1098         struct debug_store *ds = __this_cpu_read(cpu_hw_events.ds);
1099
1100         if (!x86_pmu.bts && !x86_pmu.pebs)
1101                 return;
1102
1103         wrmsrl(MSR_IA32_DS_AREA, (unsigned long)ds);
1104 }