Merge tag 'uuid-for-4.13-2' of git://git.infradead.org/users/hch/uuid
[linux-2.6-block.git] / arch / x86 / events / intel / ds.c
CommitLineData
de0428a7
KW
1#include <linux/bitops.h>
2#include <linux/types.h>
3#include <linux/slab.h>
ca037701 4
de0428a7 5#include <asm/perf_event.h>
3e702ff6 6#include <asm/insn.h>
de0428a7 7
27f6d22b 8#include "../perf_event.h"
ca037701
PZ
9
10/* The size of a BTS record in bytes: */
11#define BTS_RECORD_SIZE 24
12
13#define BTS_BUFFER_SIZE (PAGE_SIZE << 4)
15617499 14#define PEBS_BUFFER_SIZE (PAGE_SIZE << 4)
9536c8d2 15#define PEBS_FIXUP_SIZE PAGE_SIZE
ca037701
PZ
16
17/*
18 * pebs_record_32 for p4 and core not supported
19
20struct pebs_record_32 {
21 u32 flags, ip;
22 u32 ax, bc, cx, dx;
23 u32 si, di, bp, sp;
24};
25
26 */
27
f20093ee
SE
28union intel_x86_pebs_dse {
29 u64 val;
30 struct {
31 unsigned int ld_dse:4;
32 unsigned int ld_stlb_miss:1;
33 unsigned int ld_locked:1;
34 unsigned int ld_reserved:26;
35 };
36 struct {
37 unsigned int st_l1d_hit:1;
38 unsigned int st_reserved1:3;
39 unsigned int st_stlb_miss:1;
40 unsigned int st_locked:1;
41 unsigned int st_reserved2:26;
42 };
43};
44
45
46/*
47 * Map PEBS Load Latency Data Source encodings to generic
48 * memory data source information
49 */
50#define P(a, b) PERF_MEM_S(a, b)
51#define OP_LH (P(OP, LOAD) | P(LVL, HIT))
52#define SNOOP_NONE_MISS (P(SNOOP, NONE) | P(SNOOP, MISS))
53
e17dc653
AK
54/* Version for Sandy Bridge and later */
55static u64 pebs_data_source[] = {
f20093ee
SE
56 P(OP, LOAD) | P(LVL, MISS) | P(LVL, L3) | P(SNOOP, NA),/* 0x00:ukn L3 */
57 OP_LH | P(LVL, L1) | P(SNOOP, NONE), /* 0x01: L1 local */
58 OP_LH | P(LVL, LFB) | P(SNOOP, NONE), /* 0x02: LFB hit */
59 OP_LH | P(LVL, L2) | P(SNOOP, NONE), /* 0x03: L2 hit */
60 OP_LH | P(LVL, L3) | P(SNOOP, NONE), /* 0x04: L3 hit */
61 OP_LH | P(LVL, L3) | P(SNOOP, MISS), /* 0x05: L3 hit, snoop miss */
62 OP_LH | P(LVL, L3) | P(SNOOP, HIT), /* 0x06: L3 hit, snoop hit */
63 OP_LH | P(LVL, L3) | P(SNOOP, HITM), /* 0x07: L3 hit, snoop hitm */
64 OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HIT), /* 0x08: L3 miss snoop hit */
65 OP_LH | P(LVL, REM_CCE1) | P(SNOOP, HITM), /* 0x09: L3 miss snoop hitm*/
66 OP_LH | P(LVL, LOC_RAM) | P(SNOOP, HIT), /* 0x0a: L3 miss, shared */
67 OP_LH | P(LVL, REM_RAM1) | P(SNOOP, HIT), /* 0x0b: L3 miss, shared */
68 OP_LH | P(LVL, LOC_RAM) | SNOOP_NONE_MISS,/* 0x0c: L3 miss, excl */
69 OP_LH | P(LVL, REM_RAM1) | SNOOP_NONE_MISS,/* 0x0d: L3 miss, excl */
70 OP_LH | P(LVL, IO) | P(SNOOP, NONE), /* 0x0e: I/O */
71 OP_LH | P(LVL, UNC) | P(SNOOP, NONE), /* 0x0f: uncached */
72};
73
e17dc653
AK
74/* Patch up minor differences in the bits */
75void __init intel_pmu_pebs_data_source_nhm(void)
76{
77 pebs_data_source[0x05] = OP_LH | P(LVL, L3) | P(SNOOP, HIT);
78 pebs_data_source[0x06] = OP_LH | P(LVL, L3) | P(SNOOP, HITM);
79 pebs_data_source[0x07] = OP_LH | P(LVL, L3) | P(SNOOP, HITM);
80}
81
9ad64c0f
SE
82static u64 precise_store_data(u64 status)
83{
84 union intel_x86_pebs_dse dse;
85 u64 val = P(OP, STORE) | P(SNOOP, NA) | P(LVL, L1) | P(TLB, L2);
86
87 dse.val = status;
88
89 /*
90 * bit 4: TLB access
91 * 1 = stored missed 2nd level TLB
92 *
93 * so it either hit the walker or the OS
94 * otherwise hit 2nd level TLB
95 */
96 if (dse.st_stlb_miss)
97 val |= P(TLB, MISS);
98 else
99 val |= P(TLB, HIT);
100
101 /*
102 * bit 0: hit L1 data cache
103 * if not set, then all we know is that
104 * it missed L1D
105 */
106 if (dse.st_l1d_hit)
107 val |= P(LVL, HIT);
108 else
109 val |= P(LVL, MISS);
110
111 /*
112 * bit 5: Locked prefix
113 */
114 if (dse.st_locked)
115 val |= P(LOCK, LOCKED);
116
117 return val;
118}
119
c8aab2e0 120static u64 precise_datala_hsw(struct perf_event *event, u64 status)
f9134f36
AK
121{
122 union perf_mem_data_src dse;
123
770eee1f
SE
124 dse.val = PERF_MEM_NA;
125
126 if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW)
127 dse.mem_op = PERF_MEM_OP_STORE;
128 else if (event->hw.flags & PERF_X86_EVENT_PEBS_LD_HSW)
129 dse.mem_op = PERF_MEM_OP_LOAD;
722e76e6
SE
130
131 /*
132 * L1 info only valid for following events:
133 *
134 * MEM_UOPS_RETIRED.STLB_MISS_STORES
135 * MEM_UOPS_RETIRED.LOCK_STORES
136 * MEM_UOPS_RETIRED.SPLIT_STORES
137 * MEM_UOPS_RETIRED.ALL_STORES
138 */
c8aab2e0
SE
139 if (event->hw.flags & PERF_X86_EVENT_PEBS_ST_HSW) {
140 if (status & 1)
141 dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_HIT;
142 else
143 dse.mem_lvl = PERF_MEM_LVL_L1 | PERF_MEM_LVL_MISS;
144 }
f9134f36
AK
145 return dse.val;
146}
147
f20093ee
SE
148static u64 load_latency_data(u64 status)
149{
150 union intel_x86_pebs_dse dse;
151 u64 val;
152 int model = boot_cpu_data.x86_model;
153 int fam = boot_cpu_data.x86;
154
155 dse.val = status;
156
157 /*
158 * use the mapping table for bit 0-3
159 */
160 val = pebs_data_source[dse.ld_dse];
161
162 /*
163 * Nehalem models do not support TLB, Lock infos
164 */
165 if (fam == 0x6 && (model == 26 || model == 30
166 || model == 31 || model == 46)) {
167 val |= P(TLB, NA) | P(LOCK, NA);
168 return val;
169 }
170 /*
171 * bit 4: TLB access
172 * 0 = did not miss 2nd level TLB
173 * 1 = missed 2nd level TLB
174 */
175 if (dse.ld_stlb_miss)
176 val |= P(TLB, MISS) | P(TLB, L2);
177 else
178 val |= P(TLB, HIT) | P(TLB, L1) | P(TLB, L2);
179
180 /*
181 * bit 5: locked prefix
182 */
183 if (dse.ld_locked)
184 val |= P(LOCK, LOCKED);
185
186 return val;
187}
188
ca037701
PZ
189struct pebs_record_core {
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};
196
197struct pebs_record_nhm {
198 u64 flags, ip;
199 u64 ax, bx, cx, dx;
200 u64 si, di, bp, sp;
201 u64 r8, r9, r10, r11;
202 u64 r12, r13, r14, r15;
203 u64 status, dla, dse, lat;
204};
205
130768b8
AK
206/*
207 * Same as pebs_record_nhm, with two additional fields.
208 */
209struct pebs_record_hsw {
748e86aa
AK
210 u64 flags, ip;
211 u64 ax, bx, cx, dx;
212 u64 si, di, bp, sp;
213 u64 r8, r9, r10, r11;
214 u64 r12, r13, r14, r15;
215 u64 status, dla, dse, lat;
d2beea4a 216 u64 real_ip, tsx_tuning;
748e86aa
AK
217};
218
219union hsw_tsx_tuning {
220 struct {
221 u32 cycles_last_block : 32,
222 hle_abort : 1,
223 rtm_abort : 1,
224 instruction_abort : 1,
225 non_instruction_abort : 1,
226 retry : 1,
227 data_conflict : 1,
228 capacity_writes : 1,
229 capacity_reads : 1;
230 };
231 u64 value;
130768b8
AK
232};
233
a405bad5
AK
234#define PEBS_HSW_TSX_FLAGS 0xff00000000ULL
235
2f7ebf2e
AK
236/* Same as HSW, plus TSC */
237
238struct pebs_record_skl {
239 u64 flags, ip;
240 u64 ax, bx, cx, dx;
241 u64 si, di, bp, sp;
242 u64 r8, r9, r10, r11;
243 u64 r12, r13, r14, r15;
244 u64 status, dla, dse, lat;
245 u64 real_ip, tsx_tuning;
246 u64 tsc;
247};
248
de0428a7 249void init_debug_store_on_cpu(int cpu)
ca037701
PZ
250{
251 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
252
253 if (!ds)
254 return;
255
256 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA,
257 (u32)((u64)(unsigned long)ds),
258 (u32)((u64)(unsigned long)ds >> 32));
259}
260
de0428a7 261void fini_debug_store_on_cpu(int cpu)
ca037701
PZ
262{
263 if (!per_cpu(cpu_hw_events, cpu).ds)
264 return;
265
266 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0);
267}
268
9536c8d2
PZ
269static DEFINE_PER_CPU(void *, insn_buffer);
270
5ee25c87
PZ
271static int alloc_pebs_buffer(int cpu)
272{
273 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
96681fc3 274 int node = cpu_to_node(cpu);
3569c0d7 275 int max;
9536c8d2 276 void *buffer, *ibuffer;
5ee25c87
PZ
277
278 if (!x86_pmu.pebs)
279 return 0;
280
e72daf3f 281 buffer = kzalloc_node(x86_pmu.pebs_buffer_size, GFP_KERNEL, node);
5ee25c87
PZ
282 if (unlikely(!buffer))
283 return -ENOMEM;
284
9536c8d2
PZ
285 /*
286 * HSW+ already provides us the eventing ip; no need to allocate this
287 * buffer then.
288 */
289 if (x86_pmu.intel_cap.pebs_format < 2) {
290 ibuffer = kzalloc_node(PEBS_FIXUP_SIZE, GFP_KERNEL, node);
291 if (!ibuffer) {
292 kfree(buffer);
293 return -ENOMEM;
294 }
295 per_cpu(insn_buffer, cpu) = ibuffer;
296 }
297
e72daf3f 298 max = x86_pmu.pebs_buffer_size / x86_pmu.pebs_record_size;
5ee25c87
PZ
299
300 ds->pebs_buffer_base = (u64)(unsigned long)buffer;
301 ds->pebs_index = ds->pebs_buffer_base;
302 ds->pebs_absolute_maximum = ds->pebs_buffer_base +
303 max * x86_pmu.pebs_record_size;
304
5ee25c87
PZ
305 return 0;
306}
307
b39f88ac
PZ
308static void release_pebs_buffer(int cpu)
309{
310 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
311
312 if (!ds || !x86_pmu.pebs)
313 return;
314
9536c8d2
PZ
315 kfree(per_cpu(insn_buffer, cpu));
316 per_cpu(insn_buffer, cpu) = NULL;
317
b39f88ac
PZ
318 kfree((void *)(unsigned long)ds->pebs_buffer_base);
319 ds->pebs_buffer_base = 0;
320}
321
5ee25c87
PZ
322static int alloc_bts_buffer(int cpu)
323{
324 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
96681fc3 325 int node = cpu_to_node(cpu);
5ee25c87
PZ
326 int max, thresh;
327 void *buffer;
328
329 if (!x86_pmu.bts)
330 return 0;
331
44851541
DR
332 buffer = kzalloc_node(BTS_BUFFER_SIZE, GFP_KERNEL | __GFP_NOWARN, node);
333 if (unlikely(!buffer)) {
334 WARN_ONCE(1, "%s: BTS buffer allocation failure\n", __func__);
5ee25c87 335 return -ENOMEM;
44851541 336 }
5ee25c87
PZ
337
338 max = BTS_BUFFER_SIZE / BTS_RECORD_SIZE;
339 thresh = max / 16;
340
341 ds->bts_buffer_base = (u64)(unsigned long)buffer;
342 ds->bts_index = ds->bts_buffer_base;
343 ds->bts_absolute_maximum = ds->bts_buffer_base +
344 max * BTS_RECORD_SIZE;
345 ds->bts_interrupt_threshold = ds->bts_absolute_maximum -
346 thresh * BTS_RECORD_SIZE;
347
348 return 0;
349}
350
b39f88ac
PZ
351static void release_bts_buffer(int cpu)
352{
353 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
354
355 if (!ds || !x86_pmu.bts)
356 return;
357
358 kfree((void *)(unsigned long)ds->bts_buffer_base);
359 ds->bts_buffer_base = 0;
360}
361
65af94ba
PZ
362static int alloc_ds_buffer(int cpu)
363{
96681fc3 364 int node = cpu_to_node(cpu);
65af94ba
PZ
365 struct debug_store *ds;
366
7bfb7e6b 367 ds = kzalloc_node(sizeof(*ds), GFP_KERNEL, node);
65af94ba
PZ
368 if (unlikely(!ds))
369 return -ENOMEM;
370
371 per_cpu(cpu_hw_events, cpu).ds = ds;
372
373 return 0;
374}
375
376static void release_ds_buffer(int cpu)
377{
378 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
379
380 if (!ds)
381 return;
382
383 per_cpu(cpu_hw_events, cpu).ds = NULL;
384 kfree(ds);
385}
386
de0428a7 387void release_ds_buffers(void)
ca037701
PZ
388{
389 int cpu;
390
391 if (!x86_pmu.bts && !x86_pmu.pebs)
392 return;
393
394 get_online_cpus();
ca037701
PZ
395 for_each_online_cpu(cpu)
396 fini_debug_store_on_cpu(cpu);
397
398 for_each_possible_cpu(cpu) {
b39f88ac
PZ
399 release_pebs_buffer(cpu);
400 release_bts_buffer(cpu);
65af94ba 401 release_ds_buffer(cpu);
ca037701 402 }
ca037701
PZ
403 put_online_cpus();
404}
405
de0428a7 406void reserve_ds_buffers(void)
ca037701 407{
6809b6ea
PZ
408 int bts_err = 0, pebs_err = 0;
409 int cpu;
410
411 x86_pmu.bts_active = 0;
412 x86_pmu.pebs_active = 0;
ca037701
PZ
413
414 if (!x86_pmu.bts && !x86_pmu.pebs)
f80c9e30 415 return;
ca037701 416
6809b6ea
PZ
417 if (!x86_pmu.bts)
418 bts_err = 1;
419
420 if (!x86_pmu.pebs)
421 pebs_err = 1;
422
ca037701
PZ
423 get_online_cpus();
424
425 for_each_possible_cpu(cpu) {
6809b6ea
PZ
426 if (alloc_ds_buffer(cpu)) {
427 bts_err = 1;
428 pebs_err = 1;
429 }
ca037701 430
6809b6ea
PZ
431 if (!bts_err && alloc_bts_buffer(cpu))
432 bts_err = 1;
433
434 if (!pebs_err && alloc_pebs_buffer(cpu))
435 pebs_err = 1;
5ee25c87 436
6809b6ea 437 if (bts_err && pebs_err)
5ee25c87 438 break;
6809b6ea
PZ
439 }
440
441 if (bts_err) {
442 for_each_possible_cpu(cpu)
443 release_bts_buffer(cpu);
444 }
ca037701 445
6809b6ea
PZ
446 if (pebs_err) {
447 for_each_possible_cpu(cpu)
448 release_pebs_buffer(cpu);
ca037701
PZ
449 }
450
6809b6ea
PZ
451 if (bts_err && pebs_err) {
452 for_each_possible_cpu(cpu)
453 release_ds_buffer(cpu);
454 } else {
455 if (x86_pmu.bts && !bts_err)
456 x86_pmu.bts_active = 1;
457
458 if (x86_pmu.pebs && !pebs_err)
459 x86_pmu.pebs_active = 1;
460
ca037701
PZ
461 for_each_online_cpu(cpu)
462 init_debug_store_on_cpu(cpu);
463 }
464
465 put_online_cpus();
ca037701
PZ
466}
467
468/*
469 * BTS
470 */
471
de0428a7 472struct event_constraint bts_constraint =
15c7ad51 473 EVENT_CONSTRAINT(0, 1ULL << INTEL_PMC_IDX_FIXED_BTS, 0);
ca037701 474
de0428a7 475void intel_pmu_enable_bts(u64 config)
ca037701
PZ
476{
477 unsigned long debugctlmsr;
478
479 debugctlmsr = get_debugctlmsr();
480
7c5ecaf7
PZ
481 debugctlmsr |= DEBUGCTLMSR_TR;
482 debugctlmsr |= DEBUGCTLMSR_BTS;
8062382c
AS
483 if (config & ARCH_PERFMON_EVENTSEL_INT)
484 debugctlmsr |= DEBUGCTLMSR_BTINT;
ca037701
PZ
485
486 if (!(config & ARCH_PERFMON_EVENTSEL_OS))
7c5ecaf7 487 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_OS;
ca037701
PZ
488
489 if (!(config & ARCH_PERFMON_EVENTSEL_USR))
7c5ecaf7 490 debugctlmsr |= DEBUGCTLMSR_BTS_OFF_USR;
ca037701
PZ
491
492 update_debugctlmsr(debugctlmsr);
493}
494
de0428a7 495void intel_pmu_disable_bts(void)
ca037701 496{
89cbc767 497 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ca037701
PZ
498 unsigned long debugctlmsr;
499
500 if (!cpuc->ds)
501 return;
502
503 debugctlmsr = get_debugctlmsr();
504
505 debugctlmsr &=
7c5ecaf7
PZ
506 ~(DEBUGCTLMSR_TR | DEBUGCTLMSR_BTS | DEBUGCTLMSR_BTINT |
507 DEBUGCTLMSR_BTS_OFF_OS | DEBUGCTLMSR_BTS_OFF_USR);
ca037701
PZ
508
509 update_debugctlmsr(debugctlmsr);
510}
511
de0428a7 512int intel_pmu_drain_bts_buffer(void)
ca037701 513{
89cbc767 514 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ca037701
PZ
515 struct debug_store *ds = cpuc->ds;
516 struct bts_record {
517 u64 from;
518 u64 to;
519 u64 flags;
520 };
15c7ad51 521 struct perf_event *event = cpuc->events[INTEL_PMC_IDX_FIXED_BTS];
a09d31f4 522 struct bts_record *at, *base, *top;
ca037701
PZ
523 struct perf_output_handle handle;
524 struct perf_event_header header;
525 struct perf_sample_data data;
a09d31f4 526 unsigned long skip = 0;
ca037701
PZ
527 struct pt_regs regs;
528
529 if (!event)
b0b2072d 530 return 0;
ca037701 531
6809b6ea 532 if (!x86_pmu.bts_active)
b0b2072d 533 return 0;
ca037701 534
a09d31f4
AS
535 base = (struct bts_record *)(unsigned long)ds->bts_buffer_base;
536 top = (struct bts_record *)(unsigned long)ds->bts_index;
ca037701 537
a09d31f4 538 if (top <= base)
b0b2072d 539 return 0;
ca037701 540
0e48026a
SE
541 memset(&regs, 0, sizeof(regs));
542
ca037701
PZ
543 ds->bts_index = ds->bts_buffer_base;
544
fd0d000b 545 perf_sample_data_init(&data, 0, event->hw.last_period);
ca037701 546
a09d31f4
AS
547 /*
548 * BTS leaks kernel addresses in branches across the cpl boundary,
549 * such as traps or system calls, so unless the user is asking for
550 * kernel tracing (and right now it's not possible), we'd need to
551 * filter them out. But first we need to count how many of those we
552 * have in the current batch. This is an extra O(n) pass, however,
553 * it's much faster than the other one especially considering that
554 * n <= 2560 (BTS_BUFFER_SIZE / BTS_RECORD_SIZE * 15/16; see the
555 * alloc_bts_buffer()).
556 */
557 for (at = base; at < top; at++) {
558 /*
559 * Note that right now *this* BTS code only works if
560 * attr::exclude_kernel is set, but let's keep this extra
561 * check here in case that changes.
562 */
563 if (event->attr.exclude_kernel &&
564 (kernel_ip(at->from) || kernel_ip(at->to)))
565 skip++;
566 }
567
ca037701
PZ
568 /*
569 * Prepare a generic sample, i.e. fill in the invariant fields.
570 * We will overwrite the from and to address before we output
571 * the sample.
572 */
e8d8a90f 573 rcu_read_lock();
ca037701
PZ
574 perf_prepare_sample(&header, &data, event, &regs);
575
a09d31f4
AS
576 if (perf_output_begin(&handle, event, header.size *
577 (top - base - skip)))
e8d8a90f 578 goto unlock;
ca037701 579
a09d31f4
AS
580 for (at = base; at < top; at++) {
581 /* Filter out any records that contain kernel addresses. */
582 if (event->attr.exclude_kernel &&
583 (kernel_ip(at->from) || kernel_ip(at->to)))
584 continue;
585
ca037701
PZ
586 data.ip = at->from;
587 data.addr = at->to;
588
589 perf_output_sample(&handle, &header, &data, event);
590 }
591
592 perf_output_end(&handle);
593
594 /* There's new data available. */
595 event->hw.interrupts++;
596 event->pending_kill = POLL_IN;
e8d8a90f
PZ
597unlock:
598 rcu_read_unlock();
b0b2072d 599 return 1;
ca037701
PZ
600}
601
9c964efa
YZ
602static inline void intel_pmu_drain_pebs_buffer(void)
603{
604 struct pt_regs regs;
605
606 x86_pmu.drain_pebs(&regs);
607}
608
ca037701
PZ
609/*
610 * PEBS
611 */
de0428a7 612struct event_constraint intel_core2_pebs_event_constraints[] = {
af4bdcf6
AK
613 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
614 INTEL_FLAGS_UEVENT_CONSTRAINT(0xfec1, 0x1), /* X87_OPS_RETIRED.ANY */
615 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* BR_INST_RETIRED.MISPRED */
616 INTEL_FLAGS_UEVENT_CONSTRAINT(0x1fc7, 0x1), /* SIMD_INST_RETURED.ANY */
617 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
517e6341
PZ
618 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
619 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01),
ca037701
PZ
620 EVENT_CONSTRAINT_END
621};
622
de0428a7 623struct event_constraint intel_atom_pebs_event_constraints[] = {
af4bdcf6
AK
624 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c0, 0x1), /* INST_RETIRED.ANY */
625 INTEL_FLAGS_UEVENT_CONSTRAINT(0x00c5, 0x1), /* MISPREDICTED_BRANCH_RETIRED */
626 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0x1), /* MEM_LOAD_RETIRED.* */
517e6341
PZ
627 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
628 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x01),
673d188b
SE
629 /* Allow all events as PEBS with no flags */
630 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
17e31629
SE
631 EVENT_CONSTRAINT_END
632};
633
1fa64180 634struct event_constraint intel_slm_pebs_event_constraints[] = {
33636732
KL
635 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
636 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x1),
86a04461
AK
637 /* Allow all events as PEBS with no flags */
638 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
1fa64180
YZ
639 EVENT_CONSTRAINT_END
640};
641
8b92c3a7
KL
642struct event_constraint intel_glm_pebs_event_constraints[] = {
643 /* Allow all events as PEBS with no flags */
644 INTEL_ALL_EVENT_CONSTRAINT(0, 0x1),
645 EVENT_CONSTRAINT_END
646};
647
dd0b06b5
KL
648struct event_constraint intel_glp_pebs_event_constraints[] = {
649 /* Allow all events as PEBS with no flags */
650 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
651 EVENT_CONSTRAINT_END
652};
653
de0428a7 654struct event_constraint intel_nehalem_pebs_event_constraints[] = {
f20093ee 655 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
af4bdcf6
AK
656 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
657 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
658 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INST_RETIRED.ANY */
7d5d02da 659 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
af4bdcf6
AK
660 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
661 INTEL_FLAGS_UEVENT_CONSTRAINT(0x02c5, 0xf), /* BR_MISP_RETIRED.NEAR_CALL */
662 INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
663 INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
664 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
665 INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
517e6341
PZ
666 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
667 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
17e31629
SE
668 EVENT_CONSTRAINT_END
669};
670
de0428a7 671struct event_constraint intel_westmere_pebs_event_constraints[] = {
f20093ee 672 INTEL_PLD_CONSTRAINT(0x100b, 0xf), /* MEM_INST_RETIRED.* */
af4bdcf6
AK
673 INTEL_FLAGS_EVENT_CONSTRAINT(0x0f, 0xf), /* MEM_UNCORE_RETIRED.* */
674 INTEL_FLAGS_UEVENT_CONSTRAINT(0x010c, 0xf), /* MEM_STORE_RETIRED.DTLB_MISS */
675 INTEL_FLAGS_EVENT_CONSTRAINT(0xc0, 0xf), /* INSTR_RETIRED.* */
7d5d02da 676 INTEL_EVENT_CONSTRAINT(0xc2, 0xf), /* UOPS_RETIRED.* */
af4bdcf6
AK
677 INTEL_FLAGS_EVENT_CONSTRAINT(0xc4, 0xf), /* BR_INST_RETIRED.* */
678 INTEL_FLAGS_EVENT_CONSTRAINT(0xc5, 0xf), /* BR_MISP_RETIRED.* */
679 INTEL_FLAGS_EVENT_CONSTRAINT(0xc7, 0xf), /* SSEX_UOPS_RETIRED.* */
680 INTEL_FLAGS_UEVENT_CONSTRAINT(0x20c8, 0xf), /* ITLB_MISS_RETIRED */
681 INTEL_FLAGS_EVENT_CONSTRAINT(0xcb, 0xf), /* MEM_LOAD_RETIRED.* */
682 INTEL_FLAGS_EVENT_CONSTRAINT(0xf7, 0xf), /* FP_ASSIST.* */
517e6341
PZ
683 /* INST_RETIRED.ANY_P, inv=1, cmask=16 (cycles:p). */
684 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
ca037701
PZ
685 EVENT_CONSTRAINT_END
686};
687
de0428a7 688struct event_constraint intel_snb_pebs_event_constraints[] = {
0dbc9479 689 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
f20093ee 690 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
9ad64c0f 691 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
86a04461
AK
692 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
693 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
b63b4b45
MD
694 INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */
695 INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
696 INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
697 INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
86a04461
AK
698 /* Allow all events as PEBS with no flags */
699 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
b06b3d49
LM
700 EVENT_CONSTRAINT_END
701};
702
20a36e39 703struct event_constraint intel_ivb_pebs_event_constraints[] = {
0dbc9479 704 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
f20093ee 705 INTEL_PLD_CONSTRAINT(0x01cd, 0x8), /* MEM_TRANS_RETIRED.LAT_ABOVE_THR */
9ad64c0f 706 INTEL_PST_CONSTRAINT(0x02cd, 0x8), /* MEM_TRANS_RETIRED.PRECISE_STORES */
86a04461
AK
707 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
708 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
72469764
AK
709 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
710 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
b63b4b45
MD
711 INTEL_EXCLEVT_CONSTRAINT(0xd0, 0xf), /* MEM_UOP_RETIRED.* */
712 INTEL_EXCLEVT_CONSTRAINT(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
713 INTEL_EXCLEVT_CONSTRAINT(0xd2, 0xf), /* MEM_LOAD_UOPS_LLC_HIT_RETIRED.* */
714 INTEL_EXCLEVT_CONSTRAINT(0xd3, 0xf), /* MEM_LOAD_UOPS_LLC_MISS_RETIRED.* */
86a04461
AK
715 /* Allow all events as PEBS with no flags */
716 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
20a36e39
SE
717 EVENT_CONSTRAINT_END
718};
719
3044318f 720struct event_constraint intel_hsw_pebs_event_constraints[] = {
0dbc9479 721 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
86a04461
AK
722 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
723 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
724 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
72469764
AK
725 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
726 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
86a04461 727 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
b63b4b45
MD
728 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
729 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
730 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
731 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
732 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
733 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
734 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
735 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
736 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
737 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
9a92e16f
AK
738 /* Allow all events as PEBS with no flags */
739 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
740 EVENT_CONSTRAINT_END
741};
742
b3e62463
SE
743struct event_constraint intel_bdw_pebs_event_constraints[] = {
744 INTEL_FLAGS_UEVENT_CONSTRAINT(0x01c0, 0x2), /* INST_RETIRED.PRECDIST */
745 INTEL_PLD_CONSTRAINT(0x01cd, 0xf), /* MEM_TRANS_RETIRED.* */
746 /* UOPS_RETIRED.ALL, inv=1, cmask=16 (cycles:p). */
747 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c2, 0xf),
748 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
749 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
750 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(0x01c2, 0xf), /* UOPS_RETIRED.ALL */
751 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_LOADS */
752 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_UOPS_RETIRED.LOCK_LOADS */
753 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_LOADS */
754 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_UOPS_RETIRED.ALL_LOADS */
755 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_UOPS_RETIRED.STLB_MISS_STORES */
756 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_UOPS_RETIRED.SPLIT_STORES */
757 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_UOPS_RETIRED.ALL_STORES */
758 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_UOPS_RETIRED.* */
759 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_UOPS_L3_HIT_RETIRED.* */
760 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_UOPS_L3_MISS_RETIRED.* */
761 /* Allow all events as PEBS with no flags */
762 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
763 EVENT_CONSTRAINT_END
764};
765
766
9a92e16f
AK
767struct event_constraint intel_skl_pebs_event_constraints[] = {
768 INTEL_FLAGS_UEVENT_CONSTRAINT(0x1c0, 0x2), /* INST_RETIRED.PREC_DIST */
72469764
AK
769 /* INST_RETIRED.PREC_DIST, inv=1, cmask=16 (cycles:ppp). */
770 INTEL_FLAGS_EVENT_CONSTRAINT(0x108001c0, 0x2),
442f5c74
AK
771 /* INST_RETIRED.TOTAL_CYCLES_PS (inv=1, cmask=16) (cycles:p). */
772 INTEL_FLAGS_EVENT_CONSTRAINT(0x108000c0, 0x0f),
9a92e16f
AK
773 INTEL_PLD_CONSTRAINT(0x1cd, 0xf), /* MEM_TRANS_RETIRED.* */
774 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x11d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_LOADS */
775 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x12d0, 0xf), /* MEM_INST_RETIRED.STLB_MISS_STORES */
776 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x21d0, 0xf), /* MEM_INST_RETIRED.LOCK_LOADS */
777 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x22d0, 0xf), /* MEM_INST_RETIRED.LOCK_STORES */
778 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x41d0, 0xf), /* MEM_INST_RETIRED.SPLIT_LOADS */
779 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x42d0, 0xf), /* MEM_INST_RETIRED.SPLIT_STORES */
780 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(0x81d0, 0xf), /* MEM_INST_RETIRED.ALL_LOADS */
781 INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(0x82d0, 0xf), /* MEM_INST_RETIRED.ALL_STORES */
782 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd1, 0xf), /* MEM_LOAD_RETIRED.* */
783 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd2, 0xf), /* MEM_LOAD_L3_HIT_RETIRED.* */
784 INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(0xd3, 0xf), /* MEM_LOAD_L3_MISS_RETIRED.* */
86a04461
AK
785 /* Allow all events as PEBS with no flags */
786 INTEL_ALL_EVENT_CONSTRAINT(0, 0xf),
3044318f
AK
787 EVENT_CONSTRAINT_END
788};
789
de0428a7 790struct event_constraint *intel_pebs_constraints(struct perf_event *event)
ca037701
PZ
791{
792 struct event_constraint *c;
793
ab608344 794 if (!event->attr.precise_ip)
ca037701
PZ
795 return NULL;
796
797 if (x86_pmu.pebs_constraints) {
798 for_each_event_constraint(c, x86_pmu.pebs_constraints) {
9fac2cf3
SE
799 if ((event->hw.config & c->cmask) == c->code) {
800 event->hw.flags |= c->flags;
ca037701 801 return c;
9fac2cf3 802 }
ca037701
PZ
803 }
804 }
805
806 return &emptyconstraint;
807}
808
09e61b4f
PZ
809/*
810 * We need the sched_task callback even for per-cpu events when we use
811 * the large interrupt threshold, such that we can provide PID and TID
812 * to PEBS samples.
813 */
814static inline bool pebs_needs_sched_cb(struct cpu_hw_events *cpuc)
815{
816 return cpuc->n_pebs && (cpuc->n_pebs == cpuc->n_large_pebs);
817}
818
df6c3db8
JO
819void intel_pmu_pebs_sched_task(struct perf_event_context *ctx, bool sched_in)
820{
821 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
822
823 if (!sched_in && pebs_needs_sched_cb(cpuc))
824 intel_pmu_drain_pebs_buffer();
825}
826
09e61b4f
PZ
827static inline void pebs_update_threshold(struct cpu_hw_events *cpuc)
828{
829 struct debug_store *ds = cpuc->ds;
830 u64 threshold;
831
832 if (cpuc->n_pebs == cpuc->n_large_pebs) {
833 threshold = ds->pebs_absolute_maximum -
834 x86_pmu.max_pebs_events * x86_pmu.pebs_record_size;
835 } else {
836 threshold = ds->pebs_buffer_base + x86_pmu.pebs_record_size;
837 }
838
839 ds->pebs_interrupt_threshold = threshold;
840}
841
842static void
843pebs_update_state(bool needed_cb, struct cpu_hw_events *cpuc, struct pmu *pmu)
844{
b6a32f02
JO
845 /*
846 * Make sure we get updated with the first PEBS
847 * event. It will trigger also during removal, but
848 * that does not hurt:
849 */
850 bool update = cpuc->n_pebs == 1;
851
09e61b4f
PZ
852 if (needed_cb != pebs_needs_sched_cb(cpuc)) {
853 if (!needed_cb)
854 perf_sched_cb_inc(pmu);
855 else
856 perf_sched_cb_dec(pmu);
857
b6a32f02 858 update = true;
09e61b4f 859 }
b6a32f02
JO
860
861 if (update)
862 pebs_update_threshold(cpuc);
09e61b4f
PZ
863}
864
68f7082f 865void intel_pmu_pebs_add(struct perf_event *event)
3569c0d7 866{
09e61b4f
PZ
867 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
868 struct hw_perf_event *hwc = &event->hw;
869 bool needed_cb = pebs_needs_sched_cb(cpuc);
870
871 cpuc->n_pebs++;
872 if (hwc->flags & PERF_X86_EVENT_FREERUNNING)
873 cpuc->n_large_pebs++;
874
875 pebs_update_state(needed_cb, cpuc, event->ctx->pmu);
3569c0d7
YZ
876}
877
de0428a7 878void intel_pmu_pebs_enable(struct perf_event *event)
ca037701 879{
89cbc767 880 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ef21f683 881 struct hw_perf_event *hwc = &event->hw;
851559e3 882 struct debug_store *ds = cpuc->ds;
09e61b4f 883
ca037701
PZ
884 hwc->config &= ~ARCH_PERFMON_EVENTSEL_INT;
885
ad0e6cfe 886 cpuc->pebs_enabled |= 1ULL << hwc->idx;
f20093ee
SE
887
888 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
889 cpuc->pebs_enabled |= 1ULL << (hwc->idx + 32);
9ad64c0f
SE
890 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
891 cpuc->pebs_enabled |= 1ULL << 63;
851559e3 892
3569c0d7 893 /*
09e61b4f
PZ
894 * Use auto-reload if possible to save a MSR write in the PMI.
895 * This must be done in pmu::start(), because PERF_EVENT_IOC_PERIOD.
3569c0d7 896 */
851559e3
YZ
897 if (hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) {
898 ds->pebs_event_reset[hwc->idx] =
899 (u64)(-hwc->sample_period) & x86_pmu.cntval_mask;
dc853e26
JO
900 } else {
901 ds->pebs_event_reset[hwc->idx] = 0;
851559e3 902 }
09e61b4f
PZ
903}
904
68f7082f 905void intel_pmu_pebs_del(struct perf_event *event)
09e61b4f
PZ
906{
907 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
908 struct hw_perf_event *hwc = &event->hw;
909 bool needed_cb = pebs_needs_sched_cb(cpuc);
910
911 cpuc->n_pebs--;
912 if (hwc->flags & PERF_X86_EVENT_FREERUNNING)
913 cpuc->n_large_pebs--;
3569c0d7 914
09e61b4f 915 pebs_update_state(needed_cb, cpuc, event->ctx->pmu);
ca037701
PZ
916}
917
de0428a7 918void intel_pmu_pebs_disable(struct perf_event *event)
ca037701 919{
89cbc767 920 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ef21f683 921 struct hw_perf_event *hwc = &event->hw;
2a853e11 922
09e61b4f 923 if (cpuc->n_pebs == cpuc->n_large_pebs)
2a853e11 924 intel_pmu_drain_pebs_buffer();
ca037701 925
ad0e6cfe 926 cpuc->pebs_enabled &= ~(1ULL << hwc->idx);
983433b5 927
b371b594 928 if (event->hw.flags & PERF_X86_EVENT_PEBS_LDLAT)
983433b5 929 cpuc->pebs_enabled &= ~(1ULL << (hwc->idx + 32));
b371b594 930 else if (event->hw.flags & PERF_X86_EVENT_PEBS_ST)
983433b5
SE
931 cpuc->pebs_enabled &= ~(1ULL << 63);
932
4807e3d5 933 if (cpuc->enabled)
ad0e6cfe 934 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
ca037701
PZ
935
936 hwc->config |= ARCH_PERFMON_EVENTSEL_INT;
937}
938
de0428a7 939void intel_pmu_pebs_enable_all(void)
ca037701 940{
89cbc767 941 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ca037701
PZ
942
943 if (cpuc->pebs_enabled)
944 wrmsrl(MSR_IA32_PEBS_ENABLE, cpuc->pebs_enabled);
945}
946
de0428a7 947void intel_pmu_pebs_disable_all(void)
ca037701 948{
89cbc767 949 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ca037701
PZ
950
951 if (cpuc->pebs_enabled)
952 wrmsrl(MSR_IA32_PEBS_ENABLE, 0);
953}
954
ef21f683
PZ
955static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs)
956{
89cbc767 957 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ef21f683
PZ
958 unsigned long from = cpuc->lbr_entries[0].from;
959 unsigned long old_to, to = cpuc->lbr_entries[0].to;
960 unsigned long ip = regs->ip;
57d1c0c0 961 int is_64bit = 0;
9536c8d2 962 void *kaddr;
6ba48ff4 963 int size;
ef21f683 964
8db909a7
PZ
965 /*
966 * We don't need to fixup if the PEBS assist is fault like
967 */
968 if (!x86_pmu.intel_cap.pebs_trap)
969 return 1;
970
a562b187
PZ
971 /*
972 * No LBR entry, no basic block, no rewinding
973 */
ef21f683
PZ
974 if (!cpuc->lbr_stack.nr || !from || !to)
975 return 0;
976
a562b187
PZ
977 /*
978 * Basic blocks should never cross user/kernel boundaries
979 */
980 if (kernel_ip(ip) != kernel_ip(to))
981 return 0;
982
983 /*
984 * unsigned math, either ip is before the start (impossible) or
985 * the basic block is larger than 1 page (sanity)
986 */
9536c8d2 987 if ((ip - to) > PEBS_FIXUP_SIZE)
ef21f683
PZ
988 return 0;
989
990 /*
991 * We sampled a branch insn, rewind using the LBR stack
992 */
993 if (ip == to) {
d07bdfd3 994 set_linear_ip(regs, from);
ef21f683
PZ
995 return 1;
996 }
997
6ba48ff4 998 size = ip - to;
9536c8d2 999 if (!kernel_ip(ip)) {
6ba48ff4 1000 int bytes;
9536c8d2
PZ
1001 u8 *buf = this_cpu_read(insn_buffer);
1002
6ba48ff4 1003 /* 'size' must fit our buffer, see above */
9536c8d2 1004 bytes = copy_from_user_nmi(buf, (void __user *)to, size);
0a196848 1005 if (bytes != 0)
9536c8d2
PZ
1006 return 0;
1007
1008 kaddr = buf;
1009 } else {
1010 kaddr = (void *)to;
1011 }
1012
ef21f683
PZ
1013 do {
1014 struct insn insn;
ef21f683
PZ
1015
1016 old_to = to;
ef21f683 1017
57d1c0c0
PZ
1018#ifdef CONFIG_X86_64
1019 is_64bit = kernel_ip(to) || !test_thread_flag(TIF_IA32);
1020#endif
6ba48ff4 1021 insn_init(&insn, kaddr, size, is_64bit);
ef21f683 1022 insn_get_length(&insn);
6ba48ff4
DH
1023 /*
1024 * Make sure there was not a problem decoding the
1025 * instruction and getting the length. This is
1026 * doubly important because we have an infinite
1027 * loop if insn.length=0.
1028 */
1029 if (!insn.length)
1030 break;
9536c8d2 1031
ef21f683 1032 to += insn.length;
9536c8d2 1033 kaddr += insn.length;
6ba48ff4 1034 size -= insn.length;
ef21f683
PZ
1035 } while (to < ip);
1036
1037 if (to == ip) {
d07bdfd3 1038 set_linear_ip(regs, old_to);
ef21f683
PZ
1039 return 1;
1040 }
1041
a562b187
PZ
1042 /*
1043 * Even though we decoded the basic block, the instruction stream
1044 * never matched the given IP, either the TO or the IP got corrupted.
1045 */
ef21f683
PZ
1046 return 0;
1047}
1048
2f7ebf2e 1049static inline u64 intel_hsw_weight(struct pebs_record_skl *pebs)
748e86aa
AK
1050{
1051 if (pebs->tsx_tuning) {
1052 union hsw_tsx_tuning tsx = { .value = pebs->tsx_tuning };
1053 return tsx.cycles_last_block;
1054 }
1055 return 0;
1056}
1057
2f7ebf2e 1058static inline u64 intel_hsw_transaction(struct pebs_record_skl *pebs)
a405bad5
AK
1059{
1060 u64 txn = (pebs->tsx_tuning & PEBS_HSW_TSX_FLAGS) >> 32;
1061
1062 /* For RTM XABORTs also log the abort code from AX */
1063 if ((txn & PERF_TXN_TRANSACTION) && (pebs->ax & 1))
1064 txn |= ((pebs->ax >> 24) & 0xff) << PERF_TXN_ABORT_SHIFT;
1065 return txn;
1066}
1067
43cf7631
YZ
1068static void setup_pebs_sample_data(struct perf_event *event,
1069 struct pt_regs *iregs, void *__pebs,
1070 struct perf_sample_data *data,
1071 struct pt_regs *regs)
2b0b5c6f 1072{
c8aab2e0
SE
1073#define PERF_X86_EVENT_PEBS_HSW_PREC \
1074 (PERF_X86_EVENT_PEBS_ST_HSW | \
1075 PERF_X86_EVENT_PEBS_LD_HSW | \
1076 PERF_X86_EVENT_PEBS_NA_HSW)
2b0b5c6f 1077 /*
d2beea4a
PZ
1078 * We cast to the biggest pebs_record but are careful not to
1079 * unconditionally access the 'extra' entries.
2b0b5c6f 1080 */
89cbc767 1081 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2f7ebf2e 1082 struct pebs_record_skl *pebs = __pebs;
f20093ee 1083 u64 sample_type;
c8aab2e0
SE
1084 int fll, fst, dsrc;
1085 int fl = event->hw.flags;
2b0b5c6f 1086
21509084
YZ
1087 if (pebs == NULL)
1088 return;
1089
c8aab2e0
SE
1090 sample_type = event->attr.sample_type;
1091 dsrc = sample_type & PERF_SAMPLE_DATA_SRC;
1092
1093 fll = fl & PERF_X86_EVENT_PEBS_LDLAT;
1094 fst = fl & (PERF_X86_EVENT_PEBS_ST | PERF_X86_EVENT_PEBS_HSW_PREC);
f20093ee 1095
43cf7631 1096 perf_sample_data_init(data, 0, event->hw.last_period);
2b0b5c6f 1097
43cf7631 1098 data->period = event->hw.last_period;
f20093ee
SE
1099
1100 /*
c8aab2e0 1101 * Use latency for weight (only avail with PEBS-LL)
f20093ee 1102 */
c8aab2e0 1103 if (fll && (sample_type & PERF_SAMPLE_WEIGHT))
43cf7631 1104 data->weight = pebs->lat;
c8aab2e0
SE
1105
1106 /*
1107 * data.data_src encodes the data source
1108 */
1109 if (dsrc) {
1110 u64 val = PERF_MEM_NA;
1111 if (fll)
1112 val = load_latency_data(pebs->dse);
1113 else if (fst && (fl & PERF_X86_EVENT_PEBS_HSW_PREC))
1114 val = precise_datala_hsw(event, pebs->dse);
1115 else if (fst)
1116 val = precise_store_data(pebs->dse);
43cf7631 1117 data->data_src.val = val;
f20093ee
SE
1118 }
1119
2b0b5c6f 1120 /*
b8000586
PZ
1121 * We use the interrupt regs as a base because the PEBS record does not
1122 * contain a full regs set, specifically it seems to lack segment
1123 * descriptors, which get used by things like user_mode().
2b0b5c6f 1124 *
b8000586
PZ
1125 * In the simple case fix up only the IP for PERF_SAMPLE_IP.
1126 *
1127 * We must however always use BP,SP from iregs for the unwinder to stay
1128 * sane; the record BP,SP can point into thin air when the record is
1129 * from a previous PMI context or an (I)RET happend between the record
1130 * and PMI.
2b0b5c6f 1131 */
43cf7631
YZ
1132 *regs = *iregs;
1133 regs->flags = pebs->flags;
1134 set_linear_ip(regs, pebs->ip);
2b0b5c6f 1135
aea48559 1136 if (sample_type & PERF_SAMPLE_REGS_INTR) {
43cf7631
YZ
1137 regs->ax = pebs->ax;
1138 regs->bx = pebs->bx;
1139 regs->cx = pebs->cx;
1140 regs->dx = pebs->dx;
1141 regs->si = pebs->si;
1142 regs->di = pebs->di;
43cf7631 1143
b8000586
PZ
1144 /*
1145 * Per the above; only set BP,SP if we don't need callchains.
1146 *
1147 * XXX: does this make sense?
1148 */
1149 if (!(sample_type & PERF_SAMPLE_CALLCHAIN)) {
1150 regs->bp = pebs->bp;
1151 regs->sp = pebs->sp;
1152 }
1153
1154 /*
1155 * Preserve PERF_EFLAGS_VM from set_linear_ip().
1156 */
1157 regs->flags = pebs->flags | (regs->flags & PERF_EFLAGS_VM);
aea48559 1158#ifndef CONFIG_X86_32
43cf7631
YZ
1159 regs->r8 = pebs->r8;
1160 regs->r9 = pebs->r9;
1161 regs->r10 = pebs->r10;
1162 regs->r11 = pebs->r11;
1163 regs->r12 = pebs->r12;
1164 regs->r13 = pebs->r13;
1165 regs->r14 = pebs->r14;
1166 regs->r15 = pebs->r15;
aea48559
SE
1167#endif
1168 }
1169
130768b8 1170 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format >= 2) {
43cf7631
YZ
1171 regs->ip = pebs->real_ip;
1172 regs->flags |= PERF_EFLAGS_EXACT;
1173 } else if (event->attr.precise_ip > 1 && intel_pmu_pebs_fixup_ip(regs))
1174 regs->flags |= PERF_EFLAGS_EXACT;
2b0b5c6f 1175 else
43cf7631 1176 regs->flags &= ~PERF_EFLAGS_EXACT;
2b0b5c6f 1177
c8aab2e0 1178 if ((sample_type & PERF_SAMPLE_ADDR) &&
d2beea4a 1179 x86_pmu.intel_cap.pebs_format >= 1)
43cf7631 1180 data->addr = pebs->dla;
f9134f36 1181
a405bad5
AK
1182 if (x86_pmu.intel_cap.pebs_format >= 2) {
1183 /* Only set the TSX weight when no memory weight. */
c8aab2e0 1184 if ((sample_type & PERF_SAMPLE_WEIGHT) && !fll)
43cf7631 1185 data->weight = intel_hsw_weight(pebs);
a405bad5 1186
c8aab2e0 1187 if (sample_type & PERF_SAMPLE_TRANSACTION)
43cf7631 1188 data->txn = intel_hsw_transaction(pebs);
a405bad5 1189 }
748e86aa 1190
2f7ebf2e
AK
1191 /*
1192 * v3 supplies an accurate time stamp, so we use that
1193 * for the time stamp.
1194 *
1195 * We can only do this for the default trace clock.
1196 */
1197 if (x86_pmu.intel_cap.pebs_format >= 3 &&
1198 event->attr.use_clockid == 0)
1199 data->time = native_sched_clock_from_tsc(pebs->tsc);
1200
60ce0fbd 1201 if (has_branch_stack(event))
43cf7631
YZ
1202 data->br_stack = &cpuc->lbr_stack;
1203}
1204
21509084
YZ
1205static inline void *
1206get_next_pebs_record_by_bit(void *base, void *top, int bit)
1207{
1208 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1209 void *at;
1210 u64 pebs_status;
1211
1424a09a
SE
1212 /*
1213 * fmt0 does not have a status bitfield (does not use
1214 * perf_record_nhm format)
1215 */
1216 if (x86_pmu.intel_cap.pebs_format < 1)
1217 return base;
1218
21509084
YZ
1219 if (base == NULL)
1220 return NULL;
1221
1222 for (at = base; at < top; at += x86_pmu.pebs_record_size) {
1223 struct pebs_record_nhm *p = at;
1224
1225 if (test_bit(bit, (unsigned long *)&p->status)) {
a3d86542
PZ
1226 /* PEBS v3 has accurate status bits */
1227 if (x86_pmu.intel_cap.pebs_format >= 3)
1228 return at;
21509084
YZ
1229
1230 if (p->status == (1 << bit))
1231 return at;
1232
1233 /* clear non-PEBS bit and re-check */
1234 pebs_status = p->status & cpuc->pebs_enabled;
fd583ad1 1235 pebs_status &= PEBS_COUNTER_MASK;
21509084
YZ
1236 if (pebs_status == (1 << bit))
1237 return at;
1238 }
1239 }
1240 return NULL;
1241}
1242
43cf7631 1243static void __intel_pmu_pebs_event(struct perf_event *event,
21509084
YZ
1244 struct pt_regs *iregs,
1245 void *base, void *top,
1246 int bit, int count)
43cf7631
YZ
1247{
1248 struct perf_sample_data data;
1249 struct pt_regs regs;
21509084 1250 void *at = get_next_pebs_record_by_bit(base, top, bit);
43cf7631 1251
21509084
YZ
1252 if (!intel_pmu_save_and_restart(event) &&
1253 !(event->hw.flags & PERF_X86_EVENT_AUTO_RELOAD))
43cf7631
YZ
1254 return;
1255
a3d86542
PZ
1256 while (count > 1) {
1257 setup_pebs_sample_data(event, iregs, at, &data, &regs);
1258 perf_event_output(event, &data, &regs);
1259 at += x86_pmu.pebs_record_size;
1260 at = get_next_pebs_record_by_bit(at, top, bit);
1261 count--;
21509084
YZ
1262 }
1263
1264 setup_pebs_sample_data(event, iregs, at, &data, &regs);
60ce0fbd 1265
21509084
YZ
1266 /*
1267 * All but the last records are processed.
1268 * The last one is left to be able to call the overflow handler.
1269 */
1270 if (perf_event_overflow(event, &data, &regs)) {
a4eaf7f1 1271 x86_pmu_stop(event, 0);
21509084
YZ
1272 return;
1273 }
1274
2b0b5c6f
PZ
1275}
1276
ca037701
PZ
1277static void intel_pmu_drain_pebs_core(struct pt_regs *iregs)
1278{
89cbc767 1279 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ca037701
PZ
1280 struct debug_store *ds = cpuc->ds;
1281 struct perf_event *event = cpuc->events[0]; /* PMC0 only */
1282 struct pebs_record_core *at, *top;
ca037701
PZ
1283 int n;
1284
6809b6ea 1285 if (!x86_pmu.pebs_active)
ca037701
PZ
1286 return;
1287
ca037701
PZ
1288 at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base;
1289 top = (struct pebs_record_core *)(unsigned long)ds->pebs_index;
1290
d80c7502
PZ
1291 /*
1292 * Whatever else happens, drain the thing
1293 */
1294 ds->pebs_index = ds->pebs_buffer_base;
1295
1296 if (!test_bit(0, cpuc->active_mask))
8f4aebd2 1297 return;
ca037701 1298
d80c7502
PZ
1299 WARN_ON_ONCE(!event);
1300
ab608344 1301 if (!event->attr.precise_ip)
d80c7502
PZ
1302 return;
1303
1424a09a 1304 n = top - at;
d80c7502
PZ
1305 if (n <= 0)
1306 return;
ca037701 1307
21509084 1308 __intel_pmu_pebs_event(event, iregs, at, top, 0, n);
ca037701
PZ
1309}
1310
d2beea4a 1311static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs)
ca037701 1312{
89cbc767 1313 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
ca037701 1314 struct debug_store *ds = cpuc->ds;
21509084
YZ
1315 struct perf_event *event;
1316 void *base, *at, *top;
21509084 1317 short counts[MAX_PEBS_EVENTS] = {};
f38b0dbb 1318 short error[MAX_PEBS_EVENTS] = {};
a3d86542 1319 int bit, i;
d2beea4a
PZ
1320
1321 if (!x86_pmu.pebs_active)
1322 return;
1323
21509084 1324 base = (struct pebs_record_nhm *)(unsigned long)ds->pebs_buffer_base;
d2beea4a 1325 top = (struct pebs_record_nhm *)(unsigned long)ds->pebs_index;
ca037701 1326
ca037701
PZ
1327 ds->pebs_index = ds->pebs_buffer_base;
1328
21509084 1329 if (unlikely(base >= top))
d2beea4a
PZ
1330 return;
1331
21509084 1332 for (at = base; at < top; at += x86_pmu.pebs_record_size) {
130768b8 1333 struct pebs_record_nhm *p = at;
75f80859 1334 u64 pebs_status;
ca037701 1335
8ef9b845
PZ
1336 pebs_status = p->status & cpuc->pebs_enabled;
1337 pebs_status &= (1ULL << x86_pmu.max_pebs_events) - 1;
1338
1339 /* PEBS v3 has more accurate status bits */
a3d86542 1340 if (x86_pmu.intel_cap.pebs_format >= 3) {
8ef9b845
PZ
1341 for_each_set_bit(bit, (unsigned long *)&pebs_status,
1342 x86_pmu.max_pebs_events)
a3d86542
PZ
1343 counts[bit]++;
1344
1345 continue;
1346 }
1347
01330d72
AK
1348 /*
1349 * On some CPUs the PEBS status can be zero when PEBS is
1350 * racing with clearing of GLOBAL_STATUS.
1351 *
1352 * Normally we would drop that record, but in the
1353 * case when there is only a single active PEBS event
1354 * we can assume it's for that event.
1355 */
1356 if (!pebs_status && cpuc->pebs_enabled &&
1357 !(cpuc->pebs_enabled & (cpuc->pebs_enabled-1)))
1358 pebs_status = cpuc->pebs_enabled;
1359
75f80859 1360 bit = find_first_bit((unsigned long *)&pebs_status,
21509084 1361 x86_pmu.max_pebs_events);
957ea1fd 1362 if (bit >= x86_pmu.max_pebs_events)
21509084 1363 continue;
75f80859 1364
21509084
YZ
1365 /*
1366 * The PEBS hardware does not deal well with the situation
1367 * when events happen near to each other and multiple bits
1368 * are set. But it should happen rarely.
1369 *
1370 * If these events include one PEBS and multiple non-PEBS
1371 * events, it doesn't impact PEBS record. The record will
1372 * be handled normally. (slow path)
1373 *
1374 * If these events include two or more PEBS events, the
1375 * records for the events can be collapsed into a single
1376 * one, and it's not possible to reconstruct all events
1377 * that caused the PEBS record. It's called collision.
1378 * If collision happened, the record will be dropped.
21509084 1379 */
75f80859
PZ
1380 if (p->status != (1ULL << bit)) {
1381 for_each_set_bit(i, (unsigned long *)&pebs_status,
1382 x86_pmu.max_pebs_events)
1383 error[i]++;
1384 continue;
ca037701 1385 }
75f80859 1386
21509084
YZ
1387 counts[bit]++;
1388 }
ca037701 1389
21509084 1390 for (bit = 0; bit < x86_pmu.max_pebs_events; bit++) {
f38b0dbb 1391 if ((counts[bit] == 0) && (error[bit] == 0))
ca037701 1392 continue;
75f80859 1393
21509084 1394 event = cpuc->events[bit];
8ef9b845
PZ
1395 if (WARN_ON_ONCE(!event))
1396 continue;
1397
1398 if (WARN_ON_ONCE(!event->attr.precise_ip))
1399 continue;
ca037701 1400
f38b0dbb 1401 /* log dropped samples number */
475113d9 1402 if (error[bit]) {
f38b0dbb
KL
1403 perf_log_lost_samples(event, error[bit]);
1404
475113d9
JO
1405 if (perf_event_account_interrupt(event))
1406 x86_pmu_stop(event, 0);
1407 }
1408
f38b0dbb
KL
1409 if (counts[bit]) {
1410 __intel_pmu_pebs_event(event, iregs, base,
1411 top, bit, counts[bit]);
1412 }
ca037701 1413 }
ca037701
PZ
1414}
1415
1416/*
1417 * BTS, PEBS probe and setup
1418 */
1419
066ce64c 1420void __init intel_ds_init(void)
ca037701
PZ
1421{
1422 /*
1423 * No support for 32bit formats
1424 */
1425 if (!boot_cpu_has(X86_FEATURE_DTES64))
1426 return;
1427
1428 x86_pmu.bts = boot_cpu_has(X86_FEATURE_BTS);
1429 x86_pmu.pebs = boot_cpu_has(X86_FEATURE_PEBS);
e72daf3f 1430 x86_pmu.pebs_buffer_size = PEBS_BUFFER_SIZE;
ca037701 1431 if (x86_pmu.pebs) {
8db909a7
PZ
1432 char pebs_type = x86_pmu.intel_cap.pebs_trap ? '+' : '-';
1433 int format = x86_pmu.intel_cap.pebs_format;
ca037701
PZ
1434
1435 switch (format) {
1436 case 0:
1b74dde7 1437 pr_cont("PEBS fmt0%c, ", pebs_type);
ca037701 1438 x86_pmu.pebs_record_size = sizeof(struct pebs_record_core);
e72daf3f
JO
1439 /*
1440 * Using >PAGE_SIZE buffers makes the WRMSR to
1441 * PERF_GLOBAL_CTRL in intel_pmu_enable_all()
1442 * mysteriously hang on Core2.
1443 *
1444 * As a workaround, we don't do this.
1445 */
1446 x86_pmu.pebs_buffer_size = PAGE_SIZE;
ca037701 1447 x86_pmu.drain_pebs = intel_pmu_drain_pebs_core;
ca037701
PZ
1448 break;
1449
1450 case 1:
1b74dde7 1451 pr_cont("PEBS fmt1%c, ", pebs_type);
ca037701
PZ
1452 x86_pmu.pebs_record_size = sizeof(struct pebs_record_nhm);
1453 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
ca037701
PZ
1454 break;
1455
130768b8
AK
1456 case 2:
1457 pr_cont("PEBS fmt2%c, ", pebs_type);
1458 x86_pmu.pebs_record_size = sizeof(struct pebs_record_hsw);
d2beea4a 1459 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
130768b8
AK
1460 break;
1461
2f7ebf2e
AK
1462 case 3:
1463 pr_cont("PEBS fmt3%c, ", pebs_type);
1464 x86_pmu.pebs_record_size =
1465 sizeof(struct pebs_record_skl);
1466 x86_pmu.drain_pebs = intel_pmu_drain_pebs_nhm;
a7b58d21 1467 x86_pmu.free_running_flags |= PERF_SAMPLE_TIME;
2f7ebf2e
AK
1468 break;
1469
ca037701 1470 default:
1b74dde7 1471 pr_cont("no PEBS fmt%d%c, ", format, pebs_type);
ca037701 1472 x86_pmu.pebs = 0;
ca037701
PZ
1473 }
1474 }
1475}
1d9d8639
SE
1476
1477void perf_restore_debug_store(void)
1478{
2a6e06b2
LT
1479 struct debug_store *ds = __this_cpu_read(cpu_hw_events.ds);
1480
1d9d8639
SE
1481 if (!x86_pmu.bts && !x86_pmu.pebs)
1482 return;
1483
2a6e06b2 1484 wrmsrl(MSR_IA32_DS_AREA, (unsigned long)ds);
1d9d8639 1485}