blob: ad31c01f810fdcc7c026a13f4e348973812fa26d [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
Hugh Dickinsf881e622017-08-23 14:21:14 -07005#include <asm/kaiser.h>
Kevin Winchesterde0428a2011-08-30 20:41:05 -03006#include <asm/perf_event.h>
Stephane Eranian3e702ff2012-02-09 23:20:58 +01007#include <asm/insn.h>
Kevin Winchesterde0428a2011-08-30 20:41:05 -03008
Borislav Petkov27f6d222016-02-10 10:55:23 +01009#include "../perf_event.h"
Peter Zijlstraca037702010-03-02 19:52:12 +010010
Hugh Dickinsf881e622017-08-23 14:21:14 -070011static
12DEFINE_PER_CPU_SHARED_ALIGNED_USER_MAPPED(struct debug_store, cpu_debug_store);
13
Peter Zijlstraca037702010-03-02 19:52:12 +010014/* The size of a BTS record in bytes: */
15#define BTS_RECORD_SIZE 24
16
17#define BTS_BUFFER_SIZE (PAGE_SIZE << 4)
Yan, Zheng15617492015-05-06 15:33:52 -040018#define PEBS_BUFFER_SIZE (PAGE_SIZE << 4)
Peter Zijlstra9536c8d2013-10-15 12:14:04 +020019#define PEBS_FIXUP_SIZE PAGE_SIZE
Peter Zijlstraca037702010-03-02 19:52:12 +010020
21/*
22 * pebs_record_32 for p4 and core not supported
23
24struct pebs_record_32 {
25 u32 flags, ip;
26 u32 ax, bc, cx, dx;
27 u32 si, di, bp, sp;
28};
29
30 */
31
Stephane Eranianf20093e2013-01-24 16:10:32 +010032union intel_x86_pebs_dse {
33 u64 val;
34 struct {
35 unsigned int ld_dse:4;
36 unsigned int ld_stlb_miss:1;
37 unsigned int ld_locked:1;
38 unsigned int ld_reserved:26;
39 };
40 struct {
41 unsigned int st_l1d_hit:1;
42 unsigned int st_reserved1:3;
43 unsigned int st_stlb_miss:1;
44 unsigned int st_locked:1;
45 unsigned int st_reserved2:26;
46 };
47};
48
49
50/*
51 * Map PEBS Load Latency Data Source encodings to generic
52 * memory data source information
53 */
54#define P(a, b) PERF_MEM_S(a, b)
55#define OP_LH (P(OP, LOAD) | P(LVL, HIT))
56#define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
57
Andi Kleene17dc652016-03-01 14:25:24 -080058/* Version for Sandy Bridge and later */
59static u64 pebs_data_source[] = {
Stephane Eranianf20093e2013-01-24 16:10:32 +010060 P(OP, LOAD) | P(LVL, MISS) | P(LVL, L3) | P(SNOOP, NA),/* 0x00:ukn L3 */
61 OP_LH | P(LVL, L1) | P(SNOOP, NONE), /* 0x01: L1 local */
62 OP_LH | P(LVL, LFB) | P(SNOOP, NONE), /* 0x02: LFB hit */
63 OP_LH | P(LVL, L2) | P(SNOOP, NONE), /* 0x03: L2 hit */
64 OP_LH | P(LVL, L3) | P(SNOOP, NONE), /* 0x04: L3 hit */
65 OP_LH | P(LVL, L3) | P(SNOOP, MISS), /* 0x05: L3 hit, snoop miss */
66 OP_LH | P(LVL, L3) | P(SNOOP, HIT), /* 0x06: L3 hit, snoop hit */
67 OP_LH | P(LVL, L3) | P(SNOOP, HITM), /* 0x07: L3 hit, snoop hitm */
68 OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HIT), /* 0x08: L3 miss snoop hit */
69 OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HITM), /* 0x09: L3 miss snoop hitm*/
70 OP_LH | P(LVL, LOC_RAM) | P(SNOOP, HIT), /* 0x0a: L3 miss, shared */
71 OP_LH | P(LVL, REM_RAM1) | P(SNOOP, HIT), /* 0x0b: L3 miss, shared */
72 OP_LH | P(LVL, LOC_RAM) | SNOOP_NONE_MISS,/* 0x0c: L3 miss, excl */
73 OP_LH | P(LVL, REM_RAM1) | SNOOP_NONE_MISS,/* 0x0d: L3 miss, excl */
74 OP_LH | P(LVL, IO) | P(SNOOP, NONE), /* 0x0e: I/O */
75 OP_LH | P(LVL, UNC) | P(SNOOP, NONE), /* 0x0f: uncached */
76};
77
Andi Kleene17dc652016-03-01 14:25:24 -080078/* Patch up minor differences in the bits */
79void __init intel_pmu_pebs_data_source_nhm(void)
80{
81 pebs_data_source[0x05] = OP_LH | P(LVL, L3) | P(SNOOP, HIT);
82 pebs_data_source[0x06] = OP_LH | P(LVL, L3) | P(SNOOP, HITM);
83 pebs_data_source[0x07] = OP_LH | P(LVL, L3) | P(SNOOP, HITM);
84}
85
Stephane Eranian9ad64c02013-01-24 16:10:34 +010086static u64 precise_store_data(u64 status)
87{
88 union intel_x86_pebs_dse dse;
89 u64 val = P(OP, STORE) | P(SNOOP, NA) | P(LVL, L1) | P(TLB, L2);
90
91 dse.val = status;
92
93 /*
94 * bit 4: TLB access
95 * 1 = stored missed 2nd level TLB
96 *
97 * so it either hit the walker or the OS
98 * otherwise hit 2nd level TLB
99 */
100 if (dse.st_stlb_miss)
101 val |= P(TLB, MISS);
102 else
103 val |= P(TLB, HIT);
104
105 /*
106 * bit 0: hit L1 data cache
107 * if not set, then all we know is that
108 * it missed L1D
109 */
110 if (dse.st_l1d_hit)
111 val |= P(LVL, HIT);
112 else
113 val |= P(LVL, MISS);
114
115 /*
116 * bit 5: Locked prefix
117 */
118 if (dse.st_locked)
119 val |= P(LOCK, LOCKED);
120
121 return val;
122}
123
Stephane Eranianc8aab2e2014-08-11 21:27:13 +0200124static u64 precise_datala_hsw(struct perf_event *event, u64 status)
Andi Kleenf9134f32013-06-17 17:36:52 -0700125{
126 union perf_mem_data_src dse;
127
Stephane Eranian770eee12014-08-11 21:27:12 +0200128 dse.val = PERF_MEM_NA;
129
130 if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW)
131 dse.mem_op = PERF_MEM_OP_STORE;
132 else if (event->hw.flags & PERF_X86_EVENT_PEBS_LD_HSW)
133 dse.mem_op = PERF_MEM_OP_LOAD;
Stephane Eranian722e76e2014-05-15 17:56:44 +0200134
135 /*
136 * L1 info only valid for following events:
137 *
138 * MEM_UOPS_RETIRED.STLB_MISS_STORES
139 * MEM_UOPS_RETIRED.LOCK_STORES
140 * MEM_UOPS_RETIRED.SPLIT_STORES
141 * MEM_UOPS_RETIRED.ALL_STORES
142 */
Stephane Eranianc8aab2e2014-08-11 21:27:13 +0200143 if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW) {
144 if (status & 1)
145 dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_HIT;
146 else
147 dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_MISS;
148 }
Andi Kleenf9134f32013-06-17 17:36:52 -0700149 return dse.val;
150}
151
Stephane Eranianf20093e2013-01-24 16:10:32 +0100152static u64 load_latency_data(u64 status)
153{
154 union intel_x86_pebs_dse dse;
155 u64 val;
156 int model = boot_cpu_data.x86_model;
157 int fam = boot_cpu_data.x86;
158
159 dse.val = status;
160
161 /*
162 * use the mapping table for bit 0-3
163 */
164 val = pebs_data_source[dse.ld_dse];
165
166 /*
167 * Nehalem models do not support TLB, Lock infos
168 */
169 if (fam == 0x6 && (model == 26 || model == 30
170 || model == 31 || model == 46)) {
171 val |= P(TLB, NA) | P(LOCK, NA);
172 return val;
173 }
174 /*
175 * bit 4: TLB access
176 * 0 = did not miss 2nd level TLB
177 * 1 = missed 2nd level TLB
178 */
179 if (dse.ld_stlb_miss)
180 val |= P(TLB, MISS) | P(TLB, L2);
181 else
182 val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2);
183
184 /*
185 * bit 5: locked prefix
186 */
187 if (dse.ld_locked)
188 val |= P(LOCK, LOCKED);
189
190 return val;
191}
192
Peter Zijlstraca037702010-03-02 19:52:12 +0100193struct pebs_record_core {
194 u64 flags, ip;
195 u64 ax, bx, cx, dx;
196 u64 si, di, bp, sp;
197 u64 r8, r9, r10, r11;
198 u64 r12, r13, r14, r15;
199};
200
201struct pebs_record_nhm {
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};
209
Andi Kleen130768b2013-06-17 17:36:47 -0700210/*
211 * Same as pebs_record_nhm, with two additional fields.
212 */
213struct pebs_record_hsw {
Andi Kleen748e86a2013-09-05 20:37:39 -0700214 u64 flags, ip;
215 u64 ax, bx, cx, dx;
216 u64 si, di, bp, sp;
217 u64 r8, r9, r10, r11;
218 u64 r12, r13, r14, r15;
219 u64 status, dla, dse, lat;
Peter Zijlstrad2beea42013-09-12 13:00:47 +0200220 u64 real_ip, tsx_tuning;
Andi Kleen748e86a2013-09-05 20:37:39 -0700221};
222
223union hsw_tsx_tuning {
224 struct {
225 u32 cycles_last_block : 32,
226 hle_abort : 1,
227 rtm_abort : 1,
228 instruction_abort : 1,
229 non_instruction_abort : 1,
230 retry : 1,
231 data_conflict : 1,
232 capacity_writes : 1,
233 capacity_reads : 1;
234 };
235 u64 value;
Andi Kleen130768b2013-06-17 17:36:47 -0700236};
237
Andi Kleena405bad2013-09-20 07:40:40 -0700238#define PEBS_HSW_TSX_FLAGS 0xff00000000ULL
239
Andi Kleen2f7ebf22015-05-10 12:22:40 -0700240/* Same as HSW, plus TSC */
241
242struct pebs_record_skl {
243 u64 flags, ip;
244 u64 ax, bx, cx, dx;
245 u64 si, di, bp, sp;
246 u64 r8, r9, r10, r11;
247 u64 r12, r13, r14, r15;
248 u64 status, dla, dse, lat;
249 u64 real_ip, tsx_tuning;
250 u64 tsc;
251};
252
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300253void init_debug_store_on_cpu(int cpu)
Peter Zijlstraca037702010-03-02 19:52:12 +0100254{
255 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
256
257 if (!ds)
258 return;
259
260 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA,
261 (u32)((u64)(unsigned long)ds),
262 (u32)((u64)(unsigned long)ds >> 32));
263}
264
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300265void fini_debug_store_on_cpu(int cpu)
Peter Zijlstraca037702010-03-02 19:52:12 +0100266{
267 if (!per_cpu(cpu_hw_events, cpu).ds)
268 return;
269
270 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0);
271}
272
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200273static DEFINE_PER_CPU(void *, insn_buffer);
274
Hugh Dickinsf881e622017-08-23 14:21:14 -0700275static void *dsalloc(size_t size, gfp_t flags, int node)
276{
Kees Cooke71fac02018-01-03 10:17:35 -0800277#ifdef CONFIG_PAGE_TABLE_ISOLATION
Hugh Dickinsf881e622017-08-23 14:21:14 -0700278 unsigned int order = get_order(size);
279 struct page *page;
280 unsigned long addr;
281
282 page = __alloc_pages_node(node, flags | __GFP_ZERO, order);
283 if (!page)
284 return NULL;
285 addr = (unsigned long)page_address(page);
286 if (kaiser_add_mapping(addr, size, __PAGE_KERNEL) < 0) {
287 __free_pages(page, order);
288 addr = 0;
289 }
290 return (void *)addr;
291#else
292 return kmalloc_node(size, flags | __GFP_ZERO, node);
293#endif
294}
295
296static void dsfree(const void *buffer, size_t size)
297{
Kees Cooke71fac02018-01-03 10:17:35 -0800298#ifdef CONFIG_PAGE_TABLE_ISOLATION
Hugh Dickinsf881e622017-08-23 14:21:14 -0700299 if (!buffer)
300 return;
301 kaiser_remove_mapping((unsigned long)buffer, size);
302 free_pages((unsigned long)buffer, get_order(size));
303#else
304 kfree(buffer);
305#endif
306}
307
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200308static int alloc_pebs_buffer(int cpu)
309{
310 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
Peter Zijlstra96681fc2010-10-19 14:55:33 +0200311 int node = cpu_to_node(cpu);
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400312 int max;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200313 void *buffer, *ibuffer;
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200314
315 if (!x86_pmu.pebs)
316 return 0;
317
Hugh Dickinsf881e622017-08-23 14:21:14 -0700318 buffer = dsalloc(x86_pmu.pebs_buffer_size, GFP_KERNEL, node);
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200319 if (unlikely(!buffer))
320 return -ENOMEM;
321
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200322 /*
323 * HSW+ already provides us the eventing ip; no need to allocate this
324 * buffer then.
325 */
326 if (x86_pmu.intel_cap.pebs_format < 2) {
327 ibuffer = kzalloc_node(PEBS_FIXUP_SIZE, GFP_KERNEL, node);
328 if (!ibuffer) {
Hugh Dickinsf881e622017-08-23 14:21:14 -0700329 dsfree(buffer, x86_pmu.pebs_buffer_size);
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200330 return -ENOMEM;
331 }
332 per_cpu(insn_buffer, cpu) = ibuffer;
333 }
334
Jiri Olsae72daf32016-03-01 20:03:52 +0100335 max = x86_pmu.pebs_buffer_size / x86_pmu.pebs_record_size;
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200336
337 ds->pebs_buffer_base = (u64)(unsigned long)buffer;
338 ds->pebs_index = ds->pebs_buffer_base;
339 ds->pebs_absolute_maximum = ds->pebs_buffer_base +
340 max * x86_pmu.pebs_record_size;
341
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200342 return 0;
343}
344
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200345static void release_pebs_buffer(int cpu)
346{
347 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
348
349 if (!ds || !x86_pmu.pebs)
350 return;
351
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200352 kfree(per_cpu(insn_buffer, cpu));
353 per_cpu(insn_buffer, cpu) = NULL;
354
Hugh Dickinsf881e622017-08-23 14:21:14 -0700355 dsfree((void *)(unsigned long)ds->pebs_buffer_base,
356 x86_pmu.pebs_buffer_size);
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200357 ds->pebs_buffer_base = 0;
358}
359
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200360static int alloc_bts_buffer(int cpu)
361{
362 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
Peter Zijlstra96681fc2010-10-19 14:55:33 +0200363 int node = cpu_to_node(cpu);
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200364 int max, thresh;
365 void *buffer;
366
367 if (!x86_pmu.bts)
368 return 0;
369
Hugh Dickinsf881e622017-08-23 14:21:14 -0700370 buffer = dsalloc(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node);
David Rientjes44851542014-06-30 16:04:08 -0700371 if (unlikely(!buffer)) {
372 WARN_ONCE(1, "%s: BTS buffer allocation failure\n", __func__);
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200373 return -ENOMEM;
David Rientjes44851542014-06-30 16:04:08 -0700374 }
Peter Zijlstra5ee25c82010-10-19 14:15:04 +0200375
376 max = BTS_BUFFER_SIZE / BTS_RECORD_SIZE;
377 thresh = max / 16;
378
379 ds->bts_buffer_base = (u64)(unsigned long)buffer;
380 ds->bts_index = ds->bts_buffer_base;
381 ds->bts_absolute_maximum = ds->bts_buffer_base +
382 max * BTS_RECORD_SIZE;
383 ds->bts_interrupt_threshold = ds->bts_absolute_maximum -
384 thresh * BTS_RECORD_SIZE;
385
386 return 0;
387}
388
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200389static void release_bts_buffer(int cpu)
390{
391 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
392
393 if (!ds || !x86_pmu.bts)
394 return;
395
Hugh Dickinsf881e622017-08-23 14:21:14 -0700396 dsfree((void *)(unsigned long)ds->bts_buffer_base, BTS_BUFFER_SIZE);
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200397 ds->bts_buffer_base = 0;
398}
399
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200400static int alloc_ds_buffer(int cpu)
401{
Hugh Dickinsf881e622017-08-23 14:21:14 -0700402 struct debug_store *ds = per_cpu_ptr(&cpu_debug_store, cpu);
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200403
Hugh Dickinsf881e622017-08-23 14:21:14 -0700404 memset(ds, 0, sizeof(*ds));
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200405 per_cpu(cpu_hw_events, cpu).ds = ds;
406
407 return 0;
408}
409
410static void release_ds_buffer(int cpu)
411{
412 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
413
414 if (!ds)
415 return;
416
417 per_cpu(cpu_hw_events, cpu).ds = NULL;
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200418}
419
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300420void release_ds_buffers(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100421{
422 int cpu;
423
424 if (!x86_pmu.bts && !x86_pmu.pebs)
425 return;
426
427 get_online_cpus();
Peter Zijlstraca037702010-03-02 19:52:12 +0100428 for_each_online_cpu(cpu)
429 fini_debug_store_on_cpu(cpu);
430
431 for_each_possible_cpu(cpu) {
Peter Zijlstrab39f88a2010-10-19 14:08:29 +0200432 release_pebs_buffer(cpu);
433 release_bts_buffer(cpu);
Peter Zijlstra65af94b2010-10-19 14:37:23 +0200434 release_ds_buffer(cpu);
Peter Zijlstraca037702010-03-02 19:52:12 +0100435 }
Peter Zijlstraca037702010-03-02 19:52:12 +0100436 put_online_cpus();
437}
438
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300439void reserve_ds_buffers(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100440{
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200441 int bts_err = 0, pebs_err = 0;
442 int cpu;
443
444 x86_pmu.bts_active = 0;
445 x86_pmu.pebs_active = 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100446
447 if (!x86_pmu.bts && !x86_pmu.pebs)
Peter Zijlstraf80c9e32010-10-19 14:50:02 +0200448 return;
Peter Zijlstraca037702010-03-02 19:52:12 +0100449
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200450 if (!x86_pmu.bts)
451 bts_err = 1;
452
453 if (!x86_pmu.pebs)
454 pebs_err = 1;
455
Peter Zijlstraca037702010-03-02 19:52:12 +0100456 get_online_cpus();
457
458 for_each_possible_cpu(cpu) {
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200459 if (alloc_ds_buffer(cpu)) {
460 bts_err = 1;
461 pebs_err = 1;
462 }
Peter Zijlstraca037702010-03-02 19:52:12 +0100463
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200464 if (!bts_err && alloc_bts_buffer(cpu))
465 bts_err = 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100466
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200467 if (!pebs_err && alloc_pebs_buffer(cpu))
468 pebs_err = 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100469
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200470 if (bts_err && pebs_err)
471 break;
Peter Zijlstraca037702010-03-02 19:52:12 +0100472 }
473
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200474 if (bts_err) {
475 for_each_possible_cpu(cpu)
476 release_bts_buffer(cpu);
477 }
478
479 if (pebs_err) {
480 for_each_possible_cpu(cpu)
481 release_pebs_buffer(cpu);
482 }
483
484 if (bts_err && pebs_err) {
485 for_each_possible_cpu(cpu)
486 release_ds_buffer(cpu);
487 } else {
488 if (x86_pmu.bts && !bts_err)
489 x86_pmu.bts_active = 1;
490
491 if (x86_pmu.pebs && !pebs_err)
492 x86_pmu.pebs_active = 1;
493
Peter Zijlstraca037702010-03-02 19:52:12 +0100494 for_each_online_cpu(cpu)
495 init_debug_store_on_cpu(cpu);
496 }
497
498 put_online_cpus();
Peter Zijlstraca037702010-03-02 19:52:12 +0100499}
500
501/*
502 * BTS
503 */
504
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300505struct event_constraint bts_constraint =
Robert Richter15c7ad52012-06-20 20:46:33 +0200506 EVENT_CONSTRAINT(0, 1ULL << INTEL_PMC_IDX_FIXED_BTS, 0);
Peter Zijlstraca037702010-03-02 19:52:12 +0100507
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300508void intel_pmu_enable_bts(u64 config)
Peter Zijlstraca037702010-03-02 19:52:12 +0100509{
510 unsigned long debugctlmsr;
511
512 debugctlmsr = get_debugctlmsr();
513
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100514 debugctlmsr |= DEBUGCTLMSR_TR;
515 debugctlmsr |= DEBUGCTLMSR_BTS;
Alexander Shishkin80623822015-01-30 12:40:35 +0200516 if (config & ARCH_PERFMON_EVENTSEL_INT)
517 debugctlmsr |= DEBUGCTLMSR_BTINT;
Peter Zijlstraca037702010-03-02 19:52:12 +0100518
519 if (!(config & ARCH_PERFMON_EVENTSEL_OS))
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100520 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_OS;
Peter Zijlstraca037702010-03-02 19:52:12 +0100521
522 if (!(config & ARCH_PERFMON_EVENTSEL_USR))
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100523 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_USR;
Peter Zijlstraca037702010-03-02 19:52:12 +0100524
525 update_debugctlmsr(debugctlmsr);
526}
527
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300528void intel_pmu_disable_bts(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100529{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500530 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100531 unsigned long debugctlmsr;
532
533 if (!cpuc->ds)
534 return;
535
536 debugctlmsr = get_debugctlmsr();
537
538 debugctlmsr &=
Peter Zijlstra7c5ecaf2010-03-25 14:51:49 +0100539 ~(DEBUGCTLMSR_TR | DEBUGCTLMSR_BTS | DEBUGCTLMSR_BTINT |
540 DEBUGCTLMSR_BTS_OFF_OS | DEBUGCTLMSR_BTS_OFF_USR);
Peter Zijlstraca037702010-03-02 19:52:12 +0100541
542 update_debugctlmsr(debugctlmsr);
543}
544
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300545int intel_pmu_drain_bts_buffer(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100546{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500547 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100548 struct debug_store *ds = cpuc->ds;
549 struct bts_record {
550 u64 from;
551 u64 to;
552 u64 flags;
553 };
Robert Richter15c7ad52012-06-20 20:46:33 +0200554 struct perf_event *event = cpuc->events[INTEL_PMC_IDX_FIXED_BTS];
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300555 struct bts_record *at, *base, *top;
Peter Zijlstraca037702010-03-02 19:52:12 +0100556 struct perf_output_handle handle;
557 struct perf_event_header header;
558 struct perf_sample_data data;
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300559 unsigned long skip = 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100560 struct pt_regs regs;
561
562 if (!event)
Stephane Eranianb0b20722010-09-10 13:28:01 +0200563 return 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100564
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200565 if (!x86_pmu.bts_active)
Stephane Eranianb0b20722010-09-10 13:28:01 +0200566 return 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100567
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300568 base = (struct bts_record *)(unsigned long)ds->bts_buffer_base;
569 top = (struct bts_record *)(unsigned long)ds->bts_index;
Peter Zijlstraca037702010-03-02 19:52:12 +0100570
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300571 if (top <= base)
Stephane Eranianb0b20722010-09-10 13:28:01 +0200572 return 0;
Peter Zijlstraca037702010-03-02 19:52:12 +0100573
Stephane Eranian0e480262013-03-19 16:10:38 +0100574 memset(&regs, 0, sizeof(regs));
575
Peter Zijlstraca037702010-03-02 19:52:12 +0100576 ds->bts_index = ds->bts_buffer_base;
577
Robert Richterfd0d0002012-04-02 20:19:08 +0200578 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstraca037702010-03-02 19:52:12 +0100579
580 /*
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300581 * BTS leaks kernel addresses in branches across the cpl boundary,
582 * such as traps or system calls, so unless the user is asking for
583 * kernel tracing (and right now it's not possible), we'd need to
584 * filter them out. But first we need to count how many of those we
585 * have in the current batch. This is an extra O(n) pass, however,
586 * it's much faster than the other one especially considering that
587 * n <= 2560 (BTS_BUFFER_SIZE / BTS_RECORD_SIZE * 15/16; see the
588 * alloc_bts_buffer()).
589 */
590 for (at = base; at < top; at++) {
591 /*
592 * Note that right now *this* BTS code only works if
593 * attr::exclude_kernel is set, but let's keep this extra
594 * check here in case that changes.
595 */
596 if (event->attr.exclude_kernel &&
597 (kernel_ip(at->from) || kernel_ip(at->to)))
598 skip++;
599 }
600
601 /*
Peter Zijlstraca037702010-03-02 19:52:12 +0100602 * Prepare a generic sample, i.e. fill in the invariant fields.
603 * We will overwrite the from and to address before we output
604 * the sample.
605 */
Peter Zijlstrae8d8a902016-03-18 17:31:27 +0100606 rcu_read_lock();
Peter Zijlstraca037702010-03-02 19:52:12 +0100607 perf_prepare_sample(&header, &data, event, &regs);
608
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300609 if (perf_output_begin(&handle, event, header.size *
610 (top - base - skip)))
Peter Zijlstrae8d8a902016-03-18 17:31:27 +0100611 goto unlock;
Peter Zijlstraca037702010-03-02 19:52:12 +0100612
Alexander Shishkina09d31f42015-08-31 17:09:27 +0300613 for (at = base; at < top; at++) {
614 /* Filter out any records that contain kernel addresses. */
615 if (event->attr.exclude_kernel &&
616 (kernel_ip(at->from) || kernel_ip(at->to)))
617 continue;
618
Peter Zijlstraca037702010-03-02 19:52:12 +0100619 data.ip = at->from;
620 data.addr = at->to;
621
622 perf_output_sample(&handle, &header, &data, event);
623 }
624
625 perf_output_end(&handle);
626
627 /* There's new data available. */
628 event->hw.interrupts++;
629 event->pending_kill = POLL_IN;
Peter Zijlstrae8d8a902016-03-18 17:31:27 +0100630unlock:
631 rcu_read_unlock();
Stephane Eranianb0b20722010-09-10 13:28:01 +0200632 return 1;
Peter Zijlstraca037702010-03-02 19:52:12 +0100633}
634
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400635static inline void intel_pmu_drain_pebs_buffer(void)
636{
637 struct pt_regs regs;
638
639 x86_pmu.drain_pebs(&regs);
640}
641
642void intel_pmu_pebs_sched_task(struct perf_event_context *ctx, bool sched_in)
643{
644 if (!sched_in)
645 intel_pmu_drain_pebs_buffer();
646}
647
Peter Zijlstraca037702010-03-02 19:52:12 +0100648/*
649 * PEBS
650 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300651struct event_constraint intel_core2_pebs_event_constraints[] = {
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700652 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
653 INTEL_FLAGS_UEVENT_CONSTRAINT(0xfec1, 0x1), /* X87_OPS_RETIRED.ANY */
654 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */
655 INTEL_FLAGS_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */
656 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200657 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700658 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108000c0, 0x01),
Peter Zijlstraca037702010-03-02 19:52:12 +0100659 EVENT_CONSTRAINT_END
660};
661
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300662struct event_constraint intel_atom_pebs_event_constraints[] = {
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700663 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
664 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */
665 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200666 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700667 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108000c0, 0x01),
Stephane Eranian673d1882015-12-03 21:03:10 +0100668 /* Allow all events as PEBS with no flags */
669 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
Stephane Eranian17e31622011-03-02 17:05:01 +0200670 EVENT_CONSTRAINT_END
671};
672
Yan, Zheng1fa641802013-07-18 17:02:24 +0800673struct event_constraint intel_slm_pebs_event_constraints[] = {
Kan Liang33636732015-01-12 17:42:21 +0000674 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700675 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108000c0, 0x1),
Andi Kleen86a04462014-08-11 21:27:10 +0200676 /* Allow all events as PEBS with no flags */
677 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
Yan, Zheng1fa641802013-07-18 17:02:24 +0800678 EVENT_CONSTRAINT_END
679};
680
Kan Liang8b92c3a2016-04-15 00:42:47 -0700681struct event_constraint intel_glm_pebs_event_constraints[] = {
682 /* Allow all events as PEBS with no flags */
683 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
684 EVENT_CONSTRAINT_END
685};
686
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300687struct event_constraint intel_nehalem_pebs_event_constraints[] = {
Stephane Eranianf20093e2013-01-24 16:10:32 +0100688 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700689 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
690 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
691 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */
Lin Ming7d5d02d2011-03-09 23:21:29 +0800692 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700693 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
694 INTEL_FLAGS_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */
695 INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
696 INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
697 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
698 INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200699 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700700 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108000c0, 0x0f),
Stephane Eranian17e31622011-03-02 17:05:01 +0200701 EVENT_CONSTRAINT_END
702};
703
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300704struct event_constraint intel_westmere_pebs_event_constraints[] = {
Stephane Eranianf20093e2013-01-24 16:10:32 +0100705 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700706 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
707 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
708 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INSTR_RETIRED.* */
Lin Ming7d5d02d2011-03-09 23:21:29 +0800709 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
Andi Kleenaf4bdcf2014-09-24 07:34:48 -0700710 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
711 INTEL_FLAGS_EVENT_CONSTRAINT(0xc5, 0xf), /* BR_MISP_RETIRED.* */
712 INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
713 INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
714 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
715 INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
Peter Zijlstra517e6342015-04-11 12:16:22 +0200716 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700717 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108000c0, 0x0f),
Peter Zijlstraca037702010-03-02 19:52:12 +0100718 EVENT_CONSTRAINT_END
719};
720
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300721struct event_constraint intel_snb_pebs_event_constraints[] = {
Andi Kleen0dbc9472014-09-24 07:34:47 -0700722 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
Stephane Eranianf20093e2013-01-24 16:10:32 +0100723 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100724 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
Andi Kleen86a04462014-08-11 21:27:10 +0200725 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700726 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c2, 0xf),
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100727 INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */
728 INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
729 INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
730 INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
Andi Kleen86a04462014-08-11 21:27:10 +0200731 /* Allow all events as PEBS with no flags */
732 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
Lin Mingb06b3d42011-03-02 21:27:04 +0800733 EVENT_CONSTRAINT_END
734};
735
Stephane Eranian20a36e32012-09-11 01:07:01 +0200736struct event_constraint intel_ivb_pebs_event_constraints[] = {
Andi Kleen0dbc9472014-09-24 07:34:47 -0700737 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
Stephane Eranianf20093e2013-01-24 16:10:32 +0100738 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100739 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
Andi Kleen86a04462014-08-11 21:27:10 +0200740 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700741 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c2, 0xf),
Andi Kleen72469762015-12-04 03:50:52 -0800742 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700743 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c0, 0x2),
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100744 INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */
745 INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
746 INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
747 INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
Andi Kleen86a04462014-08-11 21:27:10 +0200748 /* Allow all events as PEBS with no flags */
749 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
Stephane Eranian20a36e32012-09-11 01:07:01 +0200750 EVENT_CONSTRAINT_END
751};
752
Andi Kleen30443182013-06-17 17:36:49 -0700753struct event_constraint intel_hsw_pebs_event_constraints[] = {
Andi Kleen0dbc9472014-09-24 07:34:47 -0700754 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
Andi Kleen86a04462014-08-11 21:27:10 +0200755 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
756 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700757 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c2, 0xf),
Andi Kleen72469762015-12-04 03:50:52 -0800758 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700759 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c0, 0x2),
Andi Kleen86a04462014-08-11 21:27:10 +0200760 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100761 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
762 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
763 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
764 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
765 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
766 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
767 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
768 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
769 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
770 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
Andi Kleen86a04462014-08-11 21:27:10 +0200771 /* Allow all events as PEBS with no flags */
772 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
Andi Kleen30443182013-06-17 17:36:49 -0700773 EVENT_CONSTRAINT_END
774};
775
Stephane Eranianb3e62462016-03-03 20:50:42 +0100776struct event_constraint intel_bdw_pebs_event_constraints[] = {
777 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
778 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
779 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700780 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c2, 0xf),
Stephane Eranianb3e62462016-03-03 20:50:42 +0100781 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700782 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c0, 0x2),
Stephane Eranianb3e62462016-03-03 20:50:42 +0100783 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
784 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
785 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
786 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
787 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
788 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
789 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
790 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
791 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
792 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
793 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
794 /* Allow all events as PEBS with no flags */
795 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
796 EVENT_CONSTRAINT_END
797};
798
799
Andi Kleen9a92e162015-05-10 12:22:44 -0700800struct event_constraint intel_skl_pebs_event_constraints[] = {
801 INTEL_FLAGS_UEVENT_CONSTRAINT(0x1c0, 0x2), /* INST_RETIRED.PREC_DIST */
Andi Kleen72469762015-12-04 03:50:52 -0800802 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700803 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108001c0, 0x2),
Andi Kleen442f5c72015-12-04 03:50:32 -0800804 /* INST_RETIRED.TOTAL_CYCLES_PS (inv=1, cmask=16) (cycles:p). */
Stephane Eranian20850f82019-05-20 17:52:46 -0700805 INTEL_FLAGS_UEVENT_CONSTRAINT(0x108000c0, 0x0f),
Andi Kleen9a92e162015-05-10 12:22:44 -0700806 INTEL_PLD_CONSTRAINT(0x1cd, 0xf), /* MEM_TRANS_RETIRED.* */
807 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_LOADS */
808 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_STORES */
809 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_INST_RETIRED.LOCK_LOADS */
810 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x22d0, 0xf), /* MEM_INST_RETIRED.LOCK_STORES */
811 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_INST_RETIRED.SPLIT_LOADS */
812 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_INST_RETIRED.SPLIT_STORES */
813 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_INST_RETIRED.ALL_LOADS */
814 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_INST_RETIRED.ALL_STORES */
815 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_RETIRED.* */
816 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_L3_HIT_RETIRED.* */
817 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_L3_MISS_RETIRED.* */
818 /* Allow all events as PEBS with no flags */
819 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
820 EVENT_CONSTRAINT_END
821};
822
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300823struct event_constraint *intel_pebs_constraints(struct perf_event *event)
Peter Zijlstraca037702010-03-02 19:52:12 +0100824{
825 struct event_constraint *c;
826
Peter Zijlstraab608342010-04-08 23:03:20 +0200827 if (!event->attr.precise_ip)
Peter Zijlstraca037702010-03-02 19:52:12 +0100828 return NULL;
829
830 if (x86_pmu.pebs_constraints) {
831 for_each_event_constraint(c, x86_pmu.pebs_constraints) {
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100832 if ((event->hw.config & c->cmask) == c->code) {
833 event->hw.flags |= c->flags;
Peter Zijlstraca037702010-03-02 19:52:12 +0100834 return c;
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100835 }
Peter Zijlstraca037702010-03-02 19:52:12 +0100836 }
837 }
838
839 return &emptyconstraint;
840}
841
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200842/*
843 * We need the sched_task callback even for per-cpu events when we use
844 * the large interrupt threshold, such that we can provide PID and TID
845 * to PEBS samples.
846 */
847static inline bool pebs_needs_sched_cb(struct cpu_hw_events *cpuc)
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400848{
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200849 return cpuc->n_pebs && (cpuc->n_pebs == cpuc->n_large_pebs);
850}
851
852static inline void pebs_update_threshold(struct cpu_hw_events *cpuc)
853{
854 struct debug_store *ds = cpuc->ds;
855 u64 threshold;
856
857 if (cpuc->n_pebs == cpuc->n_large_pebs) {
858 threshold = ds->pebs_absolute_maximum -
859 x86_pmu.max_pebs_events * x86_pmu.pebs_record_size;
860 } else {
861 threshold = ds->pebs_buffer_base + x86_pmu.pebs_record_size;
862 }
863
864 ds->pebs_interrupt_threshold = threshold;
865}
866
867static void
868pebs_update_state(bool needed_cb, struct cpu_hw_events *cpuc, struct pmu *pmu)
869{
Jiri Olsab6a32f02016-08-18 11:09:52 +0200870 /*
871 * Make sure we get updated with the first PEBS
872 * event. It will trigger also during removal, but
873 * that does not hurt:
874 */
875 bool update = cpuc->n_pebs == 1;
876
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200877 if (needed_cb != pebs_needs_sched_cb(cpuc)) {
878 if (!needed_cb)
879 perf_sched_cb_inc(pmu);
880 else
881 perf_sched_cb_dec(pmu);
882
Jiri Olsab6a32f02016-08-18 11:09:52 +0200883 update = true;
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200884 }
Jiri Olsab6a32f02016-08-18 11:09:52 +0200885
886 if (update)
887 pebs_update_threshold(cpuc);
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200888}
889
Peter Zijlstra68f70822016-07-06 18:02:43 +0200890void intel_pmu_pebs_add(struct perf_event *event)
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200891{
892 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
893 struct hw_perf_event *hwc = &event->hw;
894 bool needed_cb = pebs_needs_sched_cb(cpuc);
895
896 cpuc->n_pebs++;
897 if (hwc->flags & PERF_X86_EVENT_FREERUNNING)
898 cpuc->n_large_pebs++;
899
900 pebs_update_state(needed_cb, cpuc, event->ctx->pmu);
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400901}
902
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300903void intel_pmu_pebs_enable(struct perf_event *event)
Peter Zijlstraca037702010-03-02 19:52:12 +0100904{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500905 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100906 struct hw_perf_event *hwc = &event->hw;
Yan, Zheng851559e2015-05-06 15:33:47 -0400907 struct debug_store *ds = cpuc->ds;
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200908
Peter Zijlstraca037702010-03-02 19:52:12 +0100909 hwc->config &= ~ARCH_PERFMON_EVENTSEL_INT;
910
Peter Zijlstraad0e6cf2010-03-06 19:49:06 +0100911 cpuc->pebs_enabled |= 1ULL << hwc->idx;
Stephane Eranianf20093e2013-01-24 16:10:32 +0100912
913 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
914 cpuc->pebs_enabled |= 1ULL << (hwc->idx + 32);
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100915 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
916 cpuc->pebs_enabled |= 1ULL << 63;
Yan, Zheng851559e2015-05-06 15:33:47 -0400917
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400918 /*
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200919 * Use auto-reload if possible to save a MSR write in the PMI.
920 * This must be done in pmu::start(), because PERF_EVENT_IOC_PERIOD.
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400921 */
Yan, Zheng851559e2015-05-06 15:33:47 -0400922 if (hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) {
923 ds->pebs_event_reset[hwc->idx] =
924 (u64)(-hwc->sample_period) & x86_pmu.cntval_mask;
925 }
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200926}
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400927
Peter Zijlstra68f70822016-07-06 18:02:43 +0200928void intel_pmu_pebs_del(struct perf_event *event)
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200929{
930 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
931 struct hw_perf_event *hwc = &event->hw;
932 bool needed_cb = pebs_needs_sched_cb(cpuc);
933
934 cpuc->n_pebs--;
935 if (hwc->flags & PERF_X86_EVENT_FREERUNNING)
936 cpuc->n_large_pebs--;
937
938 pebs_update_state(needed_cb, cpuc, event->ctx->pmu);
Peter Zijlstraca037702010-03-02 19:52:12 +0100939}
940
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300941void intel_pmu_pebs_disable(struct perf_event *event)
Peter Zijlstraca037702010-03-02 19:52:12 +0100942{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500943 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100944 struct hw_perf_event *hwc = &event->hw;
Liang, Kan2a853e12015-07-03 20:08:27 +0000945
Peter Zijlstra09e61b4f2016-07-06 18:02:43 +0200946 if (cpuc->n_pebs == cpuc->n_large_pebs)
Liang, Kan2a853e12015-07-03 20:08:27 +0000947 intel_pmu_drain_pebs_buffer();
Peter Zijlstraca037702010-03-02 19:52:12 +0100948
Peter Zijlstraad0e6cf2010-03-06 19:49:06 +0100949 cpuc->pebs_enabled &= ~(1ULL << hwc->idx);
Stephane Eranian983433b2013-06-21 16:20:41 +0200950
Peter Zijlstrab371b592015-05-21 10:57:13 +0200951 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
Stephane Eranian983433b2013-06-21 16:20:41 +0200952 cpuc->pebs_enabled &= ~(1ULL << (hwc->idx + 32));
Peter Zijlstrab371b592015-05-21 10:57:13 +0200953 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
Stephane Eranian983433b2013-06-21 16:20:41 +0200954 cpuc->pebs_enabled &= ~(1ULL << 63);
955
Peter Zijlstra4807e3d2010-03-06 13:47:07 +0100956 if (cpuc->enabled)
Peter Zijlstraad0e6cf2010-03-06 19:49:06 +0100957 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
Peter Zijlstraca037702010-03-02 19:52:12 +0100958
959 hwc->config |= ARCH_PERFMON_EVENTSEL_INT;
960}
961
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300962void intel_pmu_pebs_enable_all(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100963{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500964 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100965
966 if (cpuc->pebs_enabled)
967 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
968}
969
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300970void intel_pmu_pebs_disable_all(void)
Peter Zijlstraca037702010-03-02 19:52:12 +0100971{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500972 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +0100973
974 if (cpuc->pebs_enabled)
975 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
976}
977
Peter Zijlstraef21f682010-03-03 13:12:23 +0100978static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs)
979{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500980 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraef21f682010-03-03 13:12:23 +0100981 unsigned long from = cpuc->lbr_entries[0].from;
982 unsigned long old_to, to = cpuc->lbr_entries[0].to;
983 unsigned long ip = regs->ip;
Peter Zijlstra57d1c0c2011-10-07 13:36:40 +0200984 int is_64bit = 0;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +0200985 void *kaddr;
Dave Hansen6ba48ff2014-11-14 07:39:57 -0800986 int size;
Peter Zijlstraef21f682010-03-03 13:12:23 +0100987
Peter Zijlstra8db909a2010-03-03 17:07:40 +0100988 /*
989 * We don't need to fixup if the PEBS assist is fault like
990 */
991 if (!x86_pmu.intel_cap.pebs_trap)
992 return 1;
993
Peter Zijlstraa562b182010-03-05 16:29:14 +0100994 /*
995 * No LBR entry, no basic block, no rewinding
996 */
Peter Zijlstraef21f682010-03-03 13:12:23 +0100997 if (!cpuc->lbr_stack.nr || !from || !to)
998 return 0;
999
Peter Zijlstraa562b182010-03-05 16:29:14 +01001000 /*
1001 * Basic blocks should never cross user/kernel boundaries
1002 */
1003 if (kernel_ip(ip) != kernel_ip(to))
1004 return 0;
1005
1006 /*
1007 * unsigned math, either ip is before the start (impossible) or
1008 * the basic block is larger than 1 page (sanity)
1009 */
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001010 if ((ip - to) > PEBS_FIXUP_SIZE)
Peter Zijlstraef21f682010-03-03 13:12:23 +01001011 return 0;
1012
1013 /*
1014 * We sampled a branch insn, rewind using the LBR stack
1015 */
1016 if (ip == to) {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001017 set_linear_ip(regs, from);
Peter Zijlstraef21f682010-03-03 13:12:23 +01001018 return 1;
1019 }
1020
Dave Hansen6ba48ff2014-11-14 07:39:57 -08001021 size = ip - to;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001022 if (!kernel_ip(ip)) {
Dave Hansen6ba48ff2014-11-14 07:39:57 -08001023 int bytes;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001024 u8 *buf = this_cpu_read(insn_buffer);
1025
Dave Hansen6ba48ff2014-11-14 07:39:57 -08001026 /* 'size' must fit our buffer, see above */
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001027 bytes = copy_from_user_nmi(buf, (void __user *)to, size);
Peter Zijlstra0a196842013-10-30 21:16:22 +01001028 if (bytes != 0)
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001029 return 0;
1030
1031 kaddr = buf;
1032 } else {
1033 kaddr = (void *)to;
1034 }
1035
Peter Zijlstraef21f682010-03-03 13:12:23 +01001036 do {
1037 struct insn insn;
Peter Zijlstraef21f682010-03-03 13:12:23 +01001038
1039 old_to = to;
Peter Zijlstraef21f682010-03-03 13:12:23 +01001040
Peter Zijlstra57d1c0c2011-10-07 13:36:40 +02001041#ifdef CONFIG_X86_64
1042 is_64bit = kernel_ip(to) || !test_thread_flag(TIF_IA32);
1043#endif
Dave Hansen6ba48ff2014-11-14 07:39:57 -08001044 insn_init(&insn, kaddr, size, is_64bit);
Peter Zijlstraef21f682010-03-03 13:12:23 +01001045 insn_get_length(&insn);
Dave Hansen6ba48ff2014-11-14 07:39:57 -08001046 /*
1047 * Make sure there was not a problem decoding the
1048 * instruction and getting the length. This is
1049 * doubly important because we have an infinite
1050 * loop if insn.length=0.
1051 */
1052 if (!insn.length)
1053 break;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001054
Peter Zijlstraef21f682010-03-03 13:12:23 +01001055 to += insn.length;
Peter Zijlstra9536c8d2013-10-15 12:14:04 +02001056 kaddr += insn.length;
Dave Hansen6ba48ff2014-11-14 07:39:57 -08001057 size -= insn.length;
Peter Zijlstraef21f682010-03-03 13:12:23 +01001058 } while (to < ip);
1059
1060 if (to == ip) {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001061 set_linear_ip(regs, old_to);
Peter Zijlstraef21f682010-03-03 13:12:23 +01001062 return 1;
1063 }
1064
Peter Zijlstraa562b182010-03-05 16:29:14 +01001065 /*
1066 * Even though we decoded the basic block, the instruction stream
1067 * never matched the given IP, either the TO or the IP got corrupted.
1068 */
Peter Zijlstraef21f682010-03-03 13:12:23 +01001069 return 0;
1070}
1071
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001072static inline u64 intel_hsw_weight(struct pebs_record_skl *pebs)
Andi Kleen748e86a2013-09-05 20:37:39 -07001073{
1074 if (pebs->tsx_tuning) {
1075 union hsw_tsx_tuning tsx = { .value = pebs->tsx_tuning };
1076 return tsx.cycles_last_block;
1077 }
1078 return 0;
1079}
1080
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001081static inline u64 intel_hsw_transaction(struct pebs_record_skl *pebs)
Andi Kleena405bad2013-09-20 07:40:40 -07001082{
1083 u64 txn = (pebs->tsx_tuning & PEBS_HSW_TSX_FLAGS) >> 32;
1084
1085 /* For RTM XABORTs also log the abort code from AX */
1086 if ((txn & PERF_TXN_TRANSACTION) && (pebs->ax & 1))
1087 txn |= ((pebs->ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT;
1088 return txn;
1089}
1090
Yan, Zheng43cf7632015-05-06 15:33:48 -04001091static void setup_pebs_sample_data(struct perf_event *event,
1092 struct pt_regs *iregs, void *__pebs,
1093 struct perf_sample_data *data,
1094 struct pt_regs *regs)
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001095{
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001096#define PERF_X86_EVENT_PEBS_HSW_PREC \
1097 (PERF_X86_EVENT_PEBS_ST_HSW | \
1098 PERF_X86_EVENT_PEBS_LD_HSW | \
1099 PERF_X86_EVENT_PEBS_NA_HSW)
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001100 /*
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001101 * We cast to the biggest pebs_record but are careful not to
1102 * unconditionally access the 'extra' entries.
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001103 */
Christoph Lameter89cbc762014-08-17 12:30:40 -05001104 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001105 struct pebs_record_skl *pebs = __pebs;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001106 u64 sample_type;
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001107 int fll, fst, dsrc;
1108 int fl = event->hw.flags;
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001109
Yan, Zheng21509082015-05-06 15:33:49 -04001110 if (pebs == NULL)
1111 return;
1112
Stephane Eranianfb58c032018-03-23 00:01:47 -07001113 regs->flags &= ~PERF_EFLAGS_EXACT;
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001114 sample_type = event->attr.sample_type;
1115 dsrc = sample_type & PERF_SAMPLE_DATA_SRC;
1116
1117 fll = fl & PERF_X86_EVENT_PEBS_LDLAT;
1118 fst = fl & (PERF_X86_EVENT_PEBS_ST | PERF_X86_EVENT_PEBS_HSW_PREC);
Stephane Eranianf20093e2013-01-24 16:10:32 +01001119
Yan, Zheng43cf7632015-05-06 15:33:48 -04001120 perf_sample_data_init(data, 0, event->hw.last_period);
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001121
Yan, Zheng43cf7632015-05-06 15:33:48 -04001122 data->period = event->hw.last_period;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001123
1124 /*
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001125 * Use latency for weight (only avail with PEBS-LL)
Stephane Eranianf20093e2013-01-24 16:10:32 +01001126 */
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001127 if (fll && (sample_type & PERF_SAMPLE_WEIGHT))
Yan, Zheng43cf7632015-05-06 15:33:48 -04001128 data->weight = pebs->lat;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001129
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001130 /*
1131 * data.data_src encodes the data source
1132 */
1133 if (dsrc) {
1134 u64 val = PERF_MEM_NA;
1135 if (fll)
1136 val = load_latency_data(pebs->dse);
1137 else if (fst && (fl & PERF_X86_EVENT_PEBS_HSW_PREC))
1138 val = precise_datala_hsw(event, pebs->dse);
1139 else if (fst)
1140 val = precise_store_data(pebs->dse);
Yan, Zheng43cf7632015-05-06 15:33:48 -04001141 data->data_src.val = val;
Stephane Eranianf20093e2013-01-24 16:10:32 +01001142 }
1143
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001144 /*
Peter Zijlstrab8000582016-11-17 18:17:31 +01001145 * We use the interrupt regs as a base because the PEBS record does not
1146 * contain a full regs set, specifically it seems to lack segment
1147 * descriptors, which get used by things like user_mode().
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001148 *
Peter Zijlstrab8000582016-11-17 18:17:31 +01001149 * In the simple case fix up only the IP for PERF_SAMPLE_IP.
1150 *
1151 * We must however always use BP,SP from iregs for the unwinder to stay
1152 * sane; the record BP,SP can point into thin air when the record is
1153 * from a previous PMI context or an (I)RET happend between the record
1154 * and PMI.
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001155 */
Yan, Zheng43cf7632015-05-06 15:33:48 -04001156 *regs = *iregs;
1157 regs->flags = pebs->flags;
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001158
Stephane Eranianaea48552014-09-24 13:48:38 +02001159 if (sample_type & PERF_SAMPLE_REGS_INTR) {
Yan, Zheng43cf7632015-05-06 15:33:48 -04001160 regs->ax = pebs->ax;
1161 regs->bx = pebs->bx;
1162 regs->cx = pebs->cx;
1163 regs->dx = pebs->dx;
1164 regs->si = pebs->si;
1165 regs->di = pebs->di;
Stephane Eranianaea48552014-09-24 13:48:38 +02001166
Peter Zijlstrab8000582016-11-17 18:17:31 +01001167 /*
1168 * Per the above; only set BP,SP if we don't need callchains.
1169 *
1170 * XXX: does this make sense?
1171 */
1172 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
1173 regs->bp = pebs->bp;
1174 regs->sp = pebs->sp;
1175 }
1176
1177 /*
1178 * Preserve PERF_EFLAGS_VM from set_linear_ip().
1179 */
1180 regs->flags = pebs->flags | (regs->flags & PERF_EFLAGS_VM);
Stephane Eranianaea48552014-09-24 13:48:38 +02001181#ifndef CONFIG_X86_32
Yan, Zheng43cf7632015-05-06 15:33:48 -04001182 regs->r8 = pebs->r8;
1183 regs->r9 = pebs->r9;
1184 regs->r10 = pebs->r10;
1185 regs->r11 = pebs->r11;
1186 regs->r12 = pebs->r12;
1187 regs->r13 = pebs->r13;
1188 regs->r14 = pebs->r14;
1189 regs->r15 = pebs->r15;
Stephane Eranianaea48552014-09-24 13:48:38 +02001190#endif
1191 }
1192
Stephane Eranianfb58c032018-03-23 00:01:47 -07001193 if (event->attr.precise_ip > 1) {
1194 /* Haswell and later have the eventing IP, so use it: */
1195 if (x86_pmu.intel_cap.pebs_format >= 2) {
1196 set_linear_ip(regs, pebs->real_ip);
1197 regs->flags |= PERF_EFLAGS_EXACT;
1198 } else {
1199 /* Otherwise use PEBS off-by-1 IP: */
1200 set_linear_ip(regs, pebs->ip);
1201
1202 /* ... and try to fix it up using the LBR entries: */
1203 if (intel_pmu_pebs_fixup_ip(regs))
1204 regs->flags |= PERF_EFLAGS_EXACT;
1205 }
1206 } else
1207 set_linear_ip(regs, pebs->ip);
1208
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001209
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001210 if ((sample_type & PERF_SAMPLE_ADDR) &&
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001211 x86_pmu.intel_cap.pebs_format >= 1)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001212 data->addr = pebs->dla;
Andi Kleenf9134f32013-06-17 17:36:52 -07001213
Andi Kleena405bad2013-09-20 07:40:40 -07001214 if (x86_pmu.intel_cap.pebs_format >= 2) {
1215 /* Only set the TSX weight when no memory weight. */
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001216 if ((sample_type & PERF_SAMPLE_WEIGHT) && !fll)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001217 data->weight = intel_hsw_weight(pebs);
Andi Kleena405bad2013-09-20 07:40:40 -07001218
Stephane Eranianc8aab2e2014-08-11 21:27:13 +02001219 if (sample_type & PERF_SAMPLE_TRANSACTION)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001220 data->txn = intel_hsw_transaction(pebs);
Andi Kleena405bad2013-09-20 07:40:40 -07001221 }
Andi Kleen748e86a2013-09-05 20:37:39 -07001222
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001223 /*
1224 * v3 supplies an accurate time stamp, so we use that
1225 * for the time stamp.
1226 *
1227 * We can only do this for the default trace clock.
1228 */
1229 if (x86_pmu.intel_cap.pebs_format >= 3 &&
1230 event->attr.use_clockid == 0)
1231 data->time = native_sched_clock_from_tsc(pebs->tsc);
1232
Stephane Eranian60ce0fb2012-02-09 23:20:57 +01001233 if (has_branch_stack(event))
Yan, Zheng43cf7632015-05-06 15:33:48 -04001234 data->br_stack = &cpuc->lbr_stack;
1235}
1236
Yan, Zheng21509082015-05-06 15:33:49 -04001237static inline void *
1238get_next_pebs_record_by_bit(void *base, void *top, int bit)
1239{
1240 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1241 void *at;
1242 u64 pebs_status;
1243
Stephane Eranian1424a092015-12-03 23:33:18 +01001244 /*
1245 * fmt0 does not have a status bitfield (does not use
1246 * perf_record_nhm format)
1247 */
1248 if (x86_pmu.intel_cap.pebs_format < 1)
1249 return base;
1250
Yan, Zheng21509082015-05-06 15:33:49 -04001251 if (base == NULL)
1252 return NULL;
1253
1254 for (at = base; at < top; at += x86_pmu.pebs_record_size) {
1255 struct pebs_record_nhm *p = at;
1256
1257 if (test_bit(bit, (unsigned long *)&p->status)) {
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001258 /* PEBS v3 has accurate status bits */
1259 if (x86_pmu.intel_cap.pebs_format >= 3)
1260 return at;
Yan, Zheng21509082015-05-06 15:33:49 -04001261
1262 if (p->status == (1 << bit))
1263 return at;
1264
1265 /* clear non-PEBS bit and re-check */
1266 pebs_status = p->status & cpuc->pebs_enabled;
1267 pebs_status &= (1ULL << MAX_PEBS_EVENTS) - 1;
1268 if (pebs_status == (1 << bit))
1269 return at;
1270 }
1271 }
1272 return NULL;
1273}
1274
Kan Liangdb27c6c2018-02-12 14:20:31 -08001275/*
1276 * Special variant of intel_pmu_save_and_restart() for auto-reload.
1277 */
1278static int
1279intel_pmu_save_and_restart_reload(struct perf_event *event, int count)
1280{
1281 struct hw_perf_event *hwc = &event->hw;
1282 int shift = 64 - x86_pmu.cntval_bits;
1283 u64 period = hwc->sample_period;
1284 u64 prev_raw_count, new_raw_count;
1285 s64 new, old;
1286
1287 WARN_ON(!period);
1288
1289 /*
1290 * drain_pebs() only happens when the PMU is disabled.
1291 */
1292 WARN_ON(this_cpu_read(cpu_hw_events.enabled));
1293
1294 prev_raw_count = local64_read(&hwc->prev_count);
1295 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
1296 local64_set(&hwc->prev_count, new_raw_count);
1297
1298 /*
1299 * Since the counter increments a negative counter value and
1300 * overflows on the sign switch, giving the interval:
1301 *
1302 * [-period, 0]
1303 *
1304 * the difference between two consequtive reads is:
1305 *
1306 * A) value2 - value1;
1307 * when no overflows have happened in between,
1308 *
1309 * B) (0 - value1) + (value2 - (-period));
1310 * when one overflow happened in between,
1311 *
1312 * C) (0 - value1) + (n - 1) * (period) + (value2 - (-period));
1313 * when @n overflows happened in between.
1314 *
1315 * Here A) is the obvious difference, B) is the extension to the
1316 * discrete interval, where the first term is to the top of the
1317 * interval and the second term is from the bottom of the next
1318 * interval and C) the extension to multiple intervals, where the
1319 * middle term is the whole intervals covered.
1320 *
1321 * An equivalent of C, by reduction, is:
1322 *
1323 * value2 - value1 + n * period
1324 */
1325 new = ((s64)(new_raw_count << shift) >> shift);
1326 old = ((s64)(prev_raw_count << shift) >> shift);
1327 local64_add(new - old + count * period, &event->count);
1328
1329 perf_event_update_userpage(event);
1330
1331 return 0;
1332}
1333
Yan, Zheng43cf7632015-05-06 15:33:48 -04001334static void __intel_pmu_pebs_event(struct perf_event *event,
Yan, Zheng21509082015-05-06 15:33:49 -04001335 struct pt_regs *iregs,
1336 void *base, void *top,
1337 int bit, int count)
Yan, Zheng43cf7632015-05-06 15:33:48 -04001338{
Kan Liangdb27c6c2018-02-12 14:20:31 -08001339 struct hw_perf_event *hwc = &event->hw;
Yan, Zheng43cf7632015-05-06 15:33:48 -04001340 struct perf_sample_data data;
1341 struct pt_regs regs;
Yan, Zheng21509082015-05-06 15:33:49 -04001342 void *at = get_next_pebs_record_by_bit(base, top, bit);
Yan, Zheng43cf7632015-05-06 15:33:48 -04001343
Kan Liangdb27c6c2018-02-12 14:20:31 -08001344 if (hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) {
1345 /*
1346 * Now, auto-reload is only enabled in fixed period mode.
1347 * The reload value is always hwc->sample_period.
1348 * May need to change it, if auto-reload is enabled in
1349 * freq mode later.
1350 */
1351 intel_pmu_save_and_restart_reload(event, count);
1352 } else if (!intel_pmu_save_and_restart(event))
Yan, Zheng43cf7632015-05-06 15:33:48 -04001353 return;
1354
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001355 while (count > 1) {
1356 setup_pebs_sample_data(event, iregs, at, &data, &regs);
1357 perf_event_output(event, &data, &regs);
1358 at += x86_pmu.pebs_record_size;
1359 at = get_next_pebs_record_by_bit(at, top, bit);
1360 count--;
Yan, Zheng21509082015-05-06 15:33:49 -04001361 }
Stephane Eranian60ce0fb2012-02-09 23:20:57 +01001362
Yan, Zheng21509082015-05-06 15:33:49 -04001363 setup_pebs_sample_data(event, iregs, at, &data, &regs);
1364
1365 /*
1366 * All but the last records are processed.
1367 * The last one is left to be able to call the overflow handler.
1368 */
1369 if (perf_event_overflow(event, &data, &regs)) {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001370 x86_pmu_stop(event, 0);
Yan, Zheng21509082015-05-06 15:33:49 -04001371 return;
1372 }
1373
Peter Zijlstra2b0b5c62010-04-08 23:03:20 +02001374}
1375
Peter Zijlstraca037702010-03-02 19:52:12 +01001376static void intel_pmu_drain_pebs_core(struct pt_regs *iregs)
1377{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001378 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +01001379 struct debug_store *ds = cpuc->ds;
1380 struct perf_event *event = cpuc->events[0]; /* PMC0 only */
1381 struct pebs_record_core *at, *top;
Peter Zijlstraca037702010-03-02 19:52:12 +01001382 int n;
1383
Peter Zijlstra6809b6e2010-10-19 14:22:50 +02001384 if (!x86_pmu.pebs_active)
Peter Zijlstraca037702010-03-02 19:52:12 +01001385 return;
1386
Peter Zijlstraca037702010-03-02 19:52:12 +01001387 at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base;
1388 top = (struct pebs_record_core *)(unsigned long)ds->pebs_index;
1389
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001390 /*
1391 * Whatever else happens, drain the thing
1392 */
1393 ds->pebs_index = ds->pebs_buffer_base;
1394
1395 if (!test_bit(0, cpuc->active_mask))
Peter Zijlstra8f4aebd2010-03-06 13:26:11 +01001396 return;
Peter Zijlstraca037702010-03-02 19:52:12 +01001397
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001398 WARN_ON_ONCE(!event);
1399
Peter Zijlstraab608342010-04-08 23:03:20 +02001400 if (!event->attr.precise_ip)
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001401 return;
1402
Stephane Eranian1424a092015-12-03 23:33:18 +01001403 n = top - at;
Kan Liangdb27c6c2018-02-12 14:20:31 -08001404 if (n <= 0) {
1405 if (event->hw.flags & PERF_X86_EVENT_AUTO_RELOAD)
1406 intel_pmu_save_and_restart_reload(event, 0);
Peter Zijlstrad80c7502010-03-09 11:41:02 +01001407 return;
Kan Liangdb27c6c2018-02-12 14:20:31 -08001408 }
Peter Zijlstraca037702010-03-02 19:52:12 +01001409
Yan, Zheng21509082015-05-06 15:33:49 -04001410 __intel_pmu_pebs_event(event, iregs, at, top, 0, n);
Peter Zijlstraca037702010-03-02 19:52:12 +01001411}
1412
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001413static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs)
Peter Zijlstraca037702010-03-02 19:52:12 +01001414{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001415 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstraca037702010-03-02 19:52:12 +01001416 struct debug_store *ds = cpuc->ds;
Yan, Zheng21509082015-05-06 15:33:49 -04001417 struct perf_event *event;
1418 void *base, *at, *top;
Yan, Zheng21509082015-05-06 15:33:49 -04001419 short counts[MAX_PEBS_EVENTS] = {};
Kan Liangf38b0db2015-05-10 15:13:14 -04001420 short error[MAX_PEBS_EVENTS] = {};
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001421 int bit, i;
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001422
1423 if (!x86_pmu.pebs_active)
1424 return;
1425
Yan, Zheng21509082015-05-06 15:33:49 -04001426 base = (struct pebs_record_nhm *)(unsigned long)ds->pebs_buffer_base;
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001427 top = (struct pebs_record_nhm *)(unsigned long)ds->pebs_index;
Peter Zijlstraca037702010-03-02 19:52:12 +01001428
Peter Zijlstraca037702010-03-02 19:52:12 +01001429 ds->pebs_index = ds->pebs_buffer_base;
1430
Kan Liangdb27c6c2018-02-12 14:20:31 -08001431 if (unlikely(base >= top)) {
1432 /*
1433 * The drain_pebs() could be called twice in a short period
1434 * for auto-reload event in pmu::read(). There are no
1435 * overflows have happened in between.
1436 * It needs to call intel_pmu_save_and_restart_reload() to
1437 * update the event->count for this case.
1438 */
1439 for_each_set_bit(bit, (unsigned long *)&cpuc->pebs_enabled,
1440 x86_pmu.max_pebs_events) {
1441 event = cpuc->events[bit];
1442 if (event->hw.flags & PERF_X86_EVENT_AUTO_RELOAD)
1443 intel_pmu_save_and_restart_reload(event, 0);
1444 }
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001445 return;
Kan Liangdb27c6c2018-02-12 14:20:31 -08001446 }
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001447
Yan, Zheng21509082015-05-06 15:33:49 -04001448 for (at = base; at < top; at += x86_pmu.pebs_record_size) {
Andi Kleen130768b2013-06-17 17:36:47 -07001449 struct pebs_record_nhm *p = at;
Peter Zijlstra75f80852015-07-15 14:35:46 +02001450 u64 pebs_status;
Peter Zijlstraca037702010-03-02 19:52:12 +01001451
Peter Zijlstra8ef9b842016-09-07 14:42:55 +02001452 pebs_status = p->status & cpuc->pebs_enabled;
1453 pebs_status &= (1ULL << x86_pmu.max_pebs_events) - 1;
1454
1455 /* PEBS v3 has more accurate status bits */
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001456 if (x86_pmu.intel_cap.pebs_format >= 3) {
Peter Zijlstra8ef9b842016-09-07 14:42:55 +02001457 for_each_set_bit(bit, (unsigned long *)&pebs_status,
1458 x86_pmu.max_pebs_events)
Peter Zijlstraa3d86542015-05-12 15:18:18 +02001459 counts[bit]++;
1460
1461 continue;
1462 }
1463
Andi Kleen01330d72015-12-03 13:22:20 -08001464 /*
1465 * On some CPUs the PEBS status can be zero when PEBS is
1466 * racing with clearing of GLOBAL_STATUS.
1467 *
1468 * Normally we would drop that record, but in the
1469 * case when there is only a single active PEBS event
1470 * we can assume it's for that event.
1471 */
1472 if (!pebs_status && cpuc->pebs_enabled &&
1473 !(cpuc->pebs_enabled & (cpuc->pebs_enabled-1)))
1474 pebs_status = cpuc->pebs_enabled;
1475
Peter Zijlstra75f80852015-07-15 14:35:46 +02001476 bit = find_first_bit((unsigned long *)&pebs_status,
Yan, Zheng21509082015-05-06 15:33:49 -04001477 x86_pmu.max_pebs_events);
Andi Kleen957ea1f2015-12-03 13:22:19 -08001478 if (bit >= x86_pmu.max_pebs_events)
Peter Zijlstraca037702010-03-02 19:52:12 +01001479 continue;
Peter Zijlstra75f80852015-07-15 14:35:46 +02001480
Yan, Zheng21509082015-05-06 15:33:49 -04001481 /*
1482 * The PEBS hardware does not deal well with the situation
1483 * when events happen near to each other and multiple bits
1484 * are set. But it should happen rarely.
1485 *
1486 * If these events include one PEBS and multiple non-PEBS
1487 * events, it doesn't impact PEBS record. The record will
1488 * be handled normally. (slow path)
1489 *
1490 * If these events include two or more PEBS events, the
1491 * records for the events can be collapsed into a single
1492 * one, and it's not possible to reconstruct all events
1493 * that caused the PEBS record. It's called collision.
1494 * If collision happened, the record will be dropped.
Yan, Zheng21509082015-05-06 15:33:49 -04001495 */
Peter Zijlstra75f80852015-07-15 14:35:46 +02001496 if (p->status != (1ULL << bit)) {
1497 for_each_set_bit(i, (unsigned long *)&pebs_status,
1498 x86_pmu.max_pebs_events)
1499 error[i]++;
1500 continue;
Yan, Zheng21509082015-05-06 15:33:49 -04001501 }
Peter Zijlstra75f80852015-07-15 14:35:46 +02001502
Yan, Zheng21509082015-05-06 15:33:49 -04001503 counts[bit]++;
1504 }
1505
1506 for (bit = 0; bit < x86_pmu.max_pebs_events; bit++) {
Kan Liangf38b0db2015-05-10 15:13:14 -04001507 if ((counts[bit] == 0) && (error[bit] == 0))
Yan, Zheng21509082015-05-06 15:33:49 -04001508 continue;
Peter Zijlstra75f80852015-07-15 14:35:46 +02001509
Yan, Zheng21509082015-05-06 15:33:49 -04001510 event = cpuc->events[bit];
Peter Zijlstra8ef9b842016-09-07 14:42:55 +02001511 if (WARN_ON_ONCE(!event))
1512 continue;
1513
1514 if (WARN_ON_ONCE(!event->attr.precise_ip))
1515 continue;
Yan, Zheng21509082015-05-06 15:33:49 -04001516
Kan Liangf38b0db2015-05-10 15:13:14 -04001517 /* log dropped samples number */
Jiri Olsaa88ff232016-12-28 14:31:03 +01001518 if (error[bit]) {
Kan Liangf38b0db2015-05-10 15:13:14 -04001519 perf_log_lost_samples(event, error[bit]);
1520
Jiri Olsaa88ff232016-12-28 14:31:03 +01001521 if (perf_event_account_interrupt(event))
1522 x86_pmu_stop(event, 0);
1523 }
1524
Kan Liangf38b0db2015-05-10 15:13:14 -04001525 if (counts[bit]) {
1526 __intel_pmu_pebs_event(event, iregs, base,
1527 top, bit, counts[bit]);
1528 }
Peter Zijlstraca037702010-03-02 19:52:12 +01001529 }
Peter Zijlstraca037702010-03-02 19:52:12 +01001530}
1531
1532/*
1533 * BTS, PEBS probe and setup
1534 */
1535
Mathias Krause066ce642014-08-26 18:49:45 +02001536void __init intel_ds_init(void)
Peter Zijlstraca037702010-03-02 19:52:12 +01001537{
1538 /*
1539 * No support for 32bit formats
1540 */
1541 if (!boot_cpu_has(X86_FEATURE_DTES64))
1542 return;
1543
1544 x86_pmu.bts = boot_cpu_has(X86_FEATURE_BTS);
1545 x86_pmu.pebs = boot_cpu_has(X86_FEATURE_PEBS);
Jiri Olsae72daf32016-03-01 20:03:52 +01001546 x86_pmu.pebs_buffer_size = PEBS_BUFFER_SIZE;
Peter Zijlstraca037702010-03-02 19:52:12 +01001547 if (x86_pmu.pebs) {
Peter Zijlstra8db909a2010-03-03 17:07:40 +01001548 char pebs_type = x86_pmu.intel_cap.pebs_trap ? '+' : '-';
1549 int format = x86_pmu.intel_cap.pebs_format;
Peter Zijlstraca037702010-03-02 19:52:12 +01001550
1551 switch (format) {
1552 case 0:
Chen Yucong1b74dde2016-02-02 11:45:02 +08001553 pr_cont("PEBS fmt0%c, ", pebs_type);
Peter Zijlstraca037702010-03-02 19:52:12 +01001554 x86_pmu.pebs_record_size = sizeof(struct pebs_record_core);
Jiri Olsae72daf32016-03-01 20:03:52 +01001555 /*
1556 * Using >PAGE_SIZE buffers makes the WRMSR to
1557 * PERF_GLOBAL_CTRL in intel_pmu_enable_all()
1558 * mysteriously hang on Core2.
1559 *
1560 * As a workaround, we don't do this.
1561 */
1562 x86_pmu.pebs_buffer_size = PAGE_SIZE;
Peter Zijlstraca037702010-03-02 19:52:12 +01001563 x86_pmu.drain_pebs = intel_pmu_drain_pebs_core;
Peter Zijlstraca037702010-03-02 19:52:12 +01001564 break;
1565
1566 case 1:
Chen Yucong1b74dde2016-02-02 11:45:02 +08001567 pr_cont("PEBS fmt1%c, ", pebs_type);
Peter Zijlstraca037702010-03-02 19:52:12 +01001568 x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm);
1569 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
Peter Zijlstraca037702010-03-02 19:52:12 +01001570 break;
1571
Andi Kleen130768b2013-06-17 17:36:47 -07001572 case 2:
1573 pr_cont("PEBS fmt2%c, ", pebs_type);
1574 x86_pmu.pebs_record_size = sizeof(struct pebs_record_hsw);
Peter Zijlstrad2beea42013-09-12 13:00:47 +02001575 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
Andi Kleen130768b2013-06-17 17:36:47 -07001576 break;
1577
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001578 case 3:
1579 pr_cont("PEBS fmt3%c, ", pebs_type);
1580 x86_pmu.pebs_record_size =
1581 sizeof(struct pebs_record_skl);
1582 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
Andi Kleena7b58d22015-05-27 21:13:14 -07001583 x86_pmu.free_running_flags |= PERF_SAMPLE_TIME;
Andi Kleen2f7ebf22015-05-10 12:22:40 -07001584 break;
1585
Peter Zijlstraca037702010-03-02 19:52:12 +01001586 default:
Chen Yucong1b74dde2016-02-02 11:45:02 +08001587 pr_cont("no PEBS fmt%d%c, ", format, pebs_type);
Peter Zijlstraca037702010-03-02 19:52:12 +01001588 x86_pmu.pebs = 0;
Peter Zijlstraca037702010-03-02 19:52:12 +01001589 }
1590 }
1591}
Stephane Eranian1d9d8632013-03-15 14:26:07 +01001592
1593void perf_restore_debug_store(void)
1594{
Linus Torvalds2a6e06b2013-03-17 15:44:43 -07001595 struct debug_store *ds = __this_cpu_read(cpu_hw_events.ds);
1596
Stephane Eranian1d9d8632013-03-15 14:26:07 +01001597 if (!x86_pmu.bts && !x86_pmu.pebs)
1598 return;
1599
Linus Torvalds2a6e06b2013-03-17 15:44:43 -07001600 wrmsrl(MSR_IA32_DS_AREA, (unsigned long)ds);
Stephane Eranian1d9d8632013-03-15 14:26:07 +01001601}