perf/x86: Tweak broken BIOS rules during check_hw_exists()
[deliverable/linux.git] / arch / x86 / kernel / cpu / perf_event.c
CommitLineData
241771ef 1/*
cdd6c482 2 * Performance events x86 architecture code
241771ef 3 *
98144511
IM
4 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2009 Jaswinder Singh Rajput
7 * Copyright (C) 2009 Advanced Micro Devices, Inc., Robert Richter
8 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
30dd568c 9 * Copyright (C) 2009 Intel Corporation, <markus.t.metzger@intel.com>
1da53e02 10 * Copyright (C) 2009 Google, Inc., Stephane Eranian
241771ef
IM
11 *
12 * For licencing details see kernel-base/COPYING
13 */
14
cdd6c482 15#include <linux/perf_event.h>
241771ef
IM
16#include <linux/capability.h>
17#include <linux/notifier.h>
18#include <linux/hardirq.h>
19#include <linux/kprobes.h>
4ac13294 20#include <linux/module.h>
241771ef
IM
21#include <linux/kdebug.h>
22#include <linux/sched.h>
d7d59fb3 23#include <linux/uaccess.h>
5a0e3ad6 24#include <linux/slab.h>
30dd568c 25#include <linux/cpu.h>
272d30be 26#include <linux/bitops.h>
0c9d42ed 27#include <linux/device.h>
241771ef 28
241771ef 29#include <asm/apic.h>
d7d59fb3 30#include <asm/stacktrace.h>
4e935e47 31#include <asm/nmi.h>
69092624 32#include <asm/smp.h>
c8e5910e 33#include <asm/alternative.h>
7911d3f7 34#include <asm/mmu_context.h>
375074cc 35#include <asm/tlbflush.h>
e3f3541c 36#include <asm/timer.h>
d07bdfd3
PZ
37#include <asm/desc.h>
38#include <asm/ldt.h>
241771ef 39
de0428a7
KW
40#include "perf_event.h"
41
de0428a7 42struct x86_pmu x86_pmu __read_mostly;
efc9f05d 43
de0428a7 44DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
b0f3f28e
PZ
45 .enabled = 1,
46};
241771ef 47
a6673429
AL
48struct static_key rdpmc_always_available = STATIC_KEY_INIT_FALSE;
49
de0428a7 50u64 __read_mostly hw_cache_event_ids
8326f44d
IM
51 [PERF_COUNT_HW_CACHE_MAX]
52 [PERF_COUNT_HW_CACHE_OP_MAX]
53 [PERF_COUNT_HW_CACHE_RESULT_MAX];
de0428a7 54u64 __read_mostly hw_cache_extra_regs
e994d7d2
AK
55 [PERF_COUNT_HW_CACHE_MAX]
56 [PERF_COUNT_HW_CACHE_OP_MAX]
57 [PERF_COUNT_HW_CACHE_RESULT_MAX];
8326f44d 58
ee06094f 59/*
cdd6c482
IM
60 * Propagate event elapsed time into the generic event.
61 * Can only be executed on the CPU where the event is active.
ee06094f
IM
62 * Returns the delta events processed.
63 */
de0428a7 64u64 x86_perf_event_update(struct perf_event *event)
ee06094f 65{
cc2ad4ba 66 struct hw_perf_event *hwc = &event->hw;
948b1bb8 67 int shift = 64 - x86_pmu.cntval_bits;
ec3232bd 68 u64 prev_raw_count, new_raw_count;
cc2ad4ba 69 int idx = hwc->idx;
ec3232bd 70 s64 delta;
ee06094f 71
15c7ad51 72 if (idx == INTEL_PMC_IDX_FIXED_BTS)
30dd568c
MM
73 return 0;
74
ee06094f 75 /*
cdd6c482 76 * Careful: an NMI might modify the previous event value.
ee06094f
IM
77 *
78 * Our tactic to handle this is to first atomically read and
79 * exchange a new raw count - then add that new-prev delta
cdd6c482 80 * count to the generic event atomically:
ee06094f
IM
81 */
82again:
e7850595 83 prev_raw_count = local64_read(&hwc->prev_count);
c48b6053 84 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
ee06094f 85
e7850595 86 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
ee06094f
IM
87 new_raw_count) != prev_raw_count)
88 goto again;
89
90 /*
91 * Now we have the new raw value and have updated the prev
92 * timestamp already. We can now calculate the elapsed delta
cdd6c482 93 * (event-)time and add that to the generic event.
ee06094f
IM
94 *
95 * Careful, not all hw sign-extends above the physical width
ec3232bd 96 * of the count.
ee06094f 97 */
ec3232bd
PZ
98 delta = (new_raw_count << shift) - (prev_raw_count << shift);
99 delta >>= shift;
ee06094f 100
e7850595
PZ
101 local64_add(delta, &event->count);
102 local64_sub(delta, &hwc->period_left);
4b7bfd0d
RR
103
104 return new_raw_count;
ee06094f
IM
105}
106
a7e3ed1e
AK
107/*
108 * Find and validate any extra registers to set up.
109 */
110static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
111{
efc9f05d 112 struct hw_perf_event_extra *reg;
a7e3ed1e
AK
113 struct extra_reg *er;
114
efc9f05d 115 reg = &event->hw.extra_reg;
a7e3ed1e
AK
116
117 if (!x86_pmu.extra_regs)
118 return 0;
119
120 for (er = x86_pmu.extra_regs; er->msr; er++) {
121 if (er->event != (config & er->config_mask))
122 continue;
123 if (event->attr.config1 & ~er->valid_mask)
124 return -EINVAL;
338b522c
KL
125 /* Check if the extra msrs can be safely accessed*/
126 if (!er->extra_msr_access)
127 return -ENXIO;
efc9f05d
SE
128
129 reg->idx = er->idx;
130 reg->config = event->attr.config1;
131 reg->reg = er->msr;
a7e3ed1e
AK
132 break;
133 }
134 return 0;
135}
136
cdd6c482 137static atomic_t active_events;
4e935e47
PZ
138static DEFINE_MUTEX(pmc_reserve_mutex);
139
b27ea29c
RR
140#ifdef CONFIG_X86_LOCAL_APIC
141
4e935e47
PZ
142static bool reserve_pmc_hardware(void)
143{
144 int i;
145
948b1bb8 146 for (i = 0; i < x86_pmu.num_counters; i++) {
41bf4989 147 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
4e935e47
PZ
148 goto perfctr_fail;
149 }
150
948b1bb8 151 for (i = 0; i < x86_pmu.num_counters; i++) {
41bf4989 152 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
4e935e47
PZ
153 goto eventsel_fail;
154 }
155
156 return true;
157
158eventsel_fail:
159 for (i--; i >= 0; i--)
41bf4989 160 release_evntsel_nmi(x86_pmu_config_addr(i));
4e935e47 161
948b1bb8 162 i = x86_pmu.num_counters;
4e935e47
PZ
163
164perfctr_fail:
165 for (i--; i >= 0; i--)
41bf4989 166 release_perfctr_nmi(x86_pmu_event_addr(i));
4e935e47 167
4e935e47
PZ
168 return false;
169}
170
171static void release_pmc_hardware(void)
172{
173 int i;
174
948b1bb8 175 for (i = 0; i < x86_pmu.num_counters; i++) {
41bf4989
RR
176 release_perfctr_nmi(x86_pmu_event_addr(i));
177 release_evntsel_nmi(x86_pmu_config_addr(i));
4e935e47 178 }
4e935e47
PZ
179}
180
b27ea29c
RR
181#else
182
183static bool reserve_pmc_hardware(void) { return true; }
184static void release_pmc_hardware(void) {}
185
186#endif
187
33c6d6a7
DZ
188static bool check_hw_exists(void)
189{
a5ebe0ba
GD
190 u64 val, val_fail, val_new= ~0;
191 int i, reg, reg_fail, ret = 0;
192 int bios_fail = 0;
68ab7476 193 int reg_safe = -1;
33c6d6a7 194
4407204c
PZ
195 /*
196 * Check to see if the BIOS enabled any of the counters, if so
197 * complain and bail.
198 */
199 for (i = 0; i < x86_pmu.num_counters; i++) {
41bf4989 200 reg = x86_pmu_config_addr(i);
4407204c
PZ
201 ret = rdmsrl_safe(reg, &val);
202 if (ret)
203 goto msr_fail;
a5ebe0ba
GD
204 if (val & ARCH_PERFMON_EVENTSEL_ENABLE) {
205 bios_fail = 1;
206 val_fail = val;
207 reg_fail = reg;
68ab7476
DZ
208 } else {
209 reg_safe = i;
a5ebe0ba 210 }
4407204c
PZ
211 }
212
213 if (x86_pmu.num_counters_fixed) {
214 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
215 ret = rdmsrl_safe(reg, &val);
216 if (ret)
217 goto msr_fail;
218 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
a5ebe0ba
GD
219 if (val & (0x03 << i*4)) {
220 bios_fail = 1;
221 val_fail = val;
222 reg_fail = reg;
223 }
4407204c
PZ
224 }
225 }
226
68ab7476
DZ
227 /*
228 * If all the counters are enabled, the below test will always
229 * fail. The tools will also become useless in this scenario.
230 * Just fail and disable the hardware counters.
231 */
232
233 if (reg_safe == -1) {
234 reg = reg_safe;
235 goto msr_fail;
236 }
237
4407204c 238 /*
bffd5fc2
AP
239 * Read the current value, change it and read it back to see if it
240 * matches, this is needed to detect certain hardware emulators
241 * (qemu/kvm) that don't trap on the MSR access and always return 0s.
4407204c 242 */
68ab7476 243 reg = x86_pmu_event_addr(reg_safe);
bffd5fc2
AP
244 if (rdmsrl_safe(reg, &val))
245 goto msr_fail;
246 val ^= 0xffffUL;
f285f92f
RR
247 ret = wrmsrl_safe(reg, val);
248 ret |= rdmsrl_safe(reg, &val_new);
33c6d6a7 249 if (ret || val != val_new)
4407204c 250 goto msr_fail;
33c6d6a7 251
45daae57
IM
252 /*
253 * We still allow the PMU driver to operate:
254 */
a5ebe0ba
GD
255 if (bios_fail) {
256 printk(KERN_CONT "Broken BIOS detected, complain to your hardware vendor.\n");
257 printk(KERN_ERR FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n", reg_fail, val_fail);
258 }
45daae57
IM
259
260 return true;
4407204c
PZ
261
262msr_fail:
263 printk(KERN_CONT "Broken PMU hardware detected, using software events only.\n");
65d71fe1
PZI
264 printk("%sFailed to access perfctr msr (MSR %x is %Lx)\n",
265 boot_cpu_has(X86_FEATURE_HYPERVISOR) ? KERN_INFO : KERN_ERR,
266 reg, val_new);
45daae57 267
4407204c 268 return false;
33c6d6a7
DZ
269}
270
cdd6c482 271static void hw_perf_event_destroy(struct perf_event *event)
4e935e47 272{
cdd6c482 273 if (atomic_dec_and_mutex_lock(&active_events, &pmc_reserve_mutex)) {
4e935e47 274 release_pmc_hardware();
ca037701 275 release_ds_buffers();
4e935e47
PZ
276 mutex_unlock(&pmc_reserve_mutex);
277 }
278}
279
48070342
AS
280void hw_perf_lbr_event_destroy(struct perf_event *event)
281{
282 hw_perf_event_destroy(event);
283
284 /* undo the lbr/bts event accounting */
285 x86_del_exclusive(x86_lbr_exclusive_lbr);
286}
287
85cf9dba
RR
288static inline int x86_pmu_initialized(void)
289{
290 return x86_pmu.handle_irq != NULL;
291}
292
8326f44d 293static inline int
e994d7d2 294set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
8326f44d 295{
e994d7d2 296 struct perf_event_attr *attr = &event->attr;
8326f44d
IM
297 unsigned int cache_type, cache_op, cache_result;
298 u64 config, val;
299
300 config = attr->config;
301
302 cache_type = (config >> 0) & 0xff;
303 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
304 return -EINVAL;
305
306 cache_op = (config >> 8) & 0xff;
307 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
308 return -EINVAL;
309
310 cache_result = (config >> 16) & 0xff;
311 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
312 return -EINVAL;
313
314 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
315
316 if (val == 0)
317 return -ENOENT;
318
319 if (val == -1)
320 return -EINVAL;
321
322 hwc->config |= val;
e994d7d2
AK
323 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
324 return x86_pmu_extra_regs(val, event);
8326f44d
IM
325}
326
48070342
AS
327/*
328 * Check if we can create event of a certain type (that no conflicting events
329 * are present).
330 */
331int x86_add_exclusive(unsigned int what)
332{
333 int ret = -EBUSY, i;
334
335 if (atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what]))
336 return 0;
337
338 mutex_lock(&pmc_reserve_mutex);
339 for (i = 0; i < ARRAY_SIZE(x86_pmu.lbr_exclusive); i++)
340 if (i != what && atomic_read(&x86_pmu.lbr_exclusive[i]))
341 goto out;
342
343 atomic_inc(&x86_pmu.lbr_exclusive[what]);
344 ret = 0;
345
346out:
347 mutex_unlock(&pmc_reserve_mutex);
348 return ret;
349}
350
351void x86_del_exclusive(unsigned int what)
352{
353 atomic_dec(&x86_pmu.lbr_exclusive[what]);
354}
355
de0428a7 356int x86_setup_perfctr(struct perf_event *event)
c1726f34
RR
357{
358 struct perf_event_attr *attr = &event->attr;
359 struct hw_perf_event *hwc = &event->hw;
360 u64 config;
361
6c7e550f 362 if (!is_sampling_event(event)) {
c1726f34
RR
363 hwc->sample_period = x86_pmu.max_period;
364 hwc->last_period = hwc->sample_period;
e7850595 365 local64_set(&hwc->period_left, hwc->sample_period);
c1726f34
RR
366 }
367
368 if (attr->type == PERF_TYPE_RAW)
ed13ec58 369 return x86_pmu_extra_regs(event->attr.config, event);
c1726f34
RR
370
371 if (attr->type == PERF_TYPE_HW_CACHE)
e994d7d2 372 return set_ext_hw_attr(hwc, event);
c1726f34
RR
373
374 if (attr->config >= x86_pmu.max_events)
375 return -EINVAL;
376
377 /*
378 * The generic map:
379 */
380 config = x86_pmu.event_map(attr->config);
381
382 if (config == 0)
383 return -ENOENT;
384
385 if (config == -1LL)
386 return -EINVAL;
387
388 /*
389 * Branch tracing:
390 */
18a073a3
PZ
391 if (attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
392 !attr->freq && hwc->sample_period == 1) {
c1726f34 393 /* BTS is not supported by this architecture. */
6809b6ea 394 if (!x86_pmu.bts_active)
c1726f34
RR
395 return -EOPNOTSUPP;
396
397 /* BTS is currently only allowed for user-mode. */
398 if (!attr->exclude_kernel)
399 return -EOPNOTSUPP;
48070342
AS
400
401 /* disallow bts if conflicting events are present */
402 if (x86_add_exclusive(x86_lbr_exclusive_lbr))
403 return -EBUSY;
404
405 event->destroy = hw_perf_lbr_event_destroy;
c1726f34
RR
406 }
407
408 hwc->config |= config;
409
410 return 0;
411}
4261e0e0 412
ff3fb511
SE
413/*
414 * check that branch_sample_type is compatible with
415 * settings needed for precise_ip > 1 which implies
416 * using the LBR to capture ALL taken branches at the
417 * priv levels of the measurement
418 */
419static inline int precise_br_compat(struct perf_event *event)
420{
421 u64 m = event->attr.branch_sample_type;
422 u64 b = 0;
423
424 /* must capture all branches */
425 if (!(m & PERF_SAMPLE_BRANCH_ANY))
426 return 0;
427
428 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
429
430 if (!event->attr.exclude_user)
431 b |= PERF_SAMPLE_BRANCH_USER;
432
433 if (!event->attr.exclude_kernel)
434 b |= PERF_SAMPLE_BRANCH_KERNEL;
435
436 /*
437 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
438 */
439
440 return m == b;
441}
442
de0428a7 443int x86_pmu_hw_config(struct perf_event *event)
a072738e 444{
ab608344
PZ
445 if (event->attr.precise_ip) {
446 int precise = 0;
447
448 /* Support for constant skid */
c93dc84c 449 if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
ab608344
PZ
450 precise++;
451
5553be26 452 /* Support for IP fixup */
03de874a 453 if (x86_pmu.lbr_nr || x86_pmu.intel_cap.pebs_format >= 2)
5553be26
PZ
454 precise++;
455 }
ab608344
PZ
456
457 if (event->attr.precise_ip > precise)
458 return -EOPNOTSUPP;
4b854900
YZ
459 }
460 /*
461 * check that PEBS LBR correction does not conflict with
462 * whatever the user is asking with attr->branch_sample_type
463 */
464 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format < 2) {
465 u64 *br_type = &event->attr.branch_sample_type;
466
467 if (has_branch_stack(event)) {
468 if (!precise_br_compat(event))
469 return -EOPNOTSUPP;
470
471 /* branch_sample_type is compatible */
472
473 } else {
474 /*
475 * user did not specify branch_sample_type
476 *
477 * For PEBS fixups, we capture all
478 * the branches at the priv level of the
479 * event.
480 */
481 *br_type = PERF_SAMPLE_BRANCH_ANY;
482
483 if (!event->attr.exclude_user)
484 *br_type |= PERF_SAMPLE_BRANCH_USER;
485
486 if (!event->attr.exclude_kernel)
487 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
ff3fb511 488 }
ab608344
PZ
489 }
490
e18bf526
YZ
491 if (event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK)
492 event->attach_state |= PERF_ATTACH_TASK_DATA;
493
a072738e
CG
494 /*
495 * Generate PMC IRQs:
496 * (keep 'enabled' bit clear for now)
497 */
b4cdc5c2 498 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
a072738e
CG
499
500 /*
501 * Count user and OS events unless requested not to
502 */
b4cdc5c2
PZ
503 if (!event->attr.exclude_user)
504 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
505 if (!event->attr.exclude_kernel)
506 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
a072738e 507
b4cdc5c2
PZ
508 if (event->attr.type == PERF_TYPE_RAW)
509 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
a072738e 510
294fe0f5
AK
511 if (event->attr.sample_period && x86_pmu.limit_period) {
512 if (x86_pmu.limit_period(event, event->attr.sample_period) >
513 event->attr.sample_period)
514 return -EINVAL;
515 }
516
9d0fcba6 517 return x86_setup_perfctr(event);
a098f448
RR
518}
519
241771ef 520/*
0d48696f 521 * Setup the hardware configuration for a given attr_type
241771ef 522 */
b0a873eb 523static int __x86_pmu_event_init(struct perf_event *event)
241771ef 524{
4e935e47 525 int err;
241771ef 526
85cf9dba
RR
527 if (!x86_pmu_initialized())
528 return -ENODEV;
241771ef 529
4e935e47 530 err = 0;
cdd6c482 531 if (!atomic_inc_not_zero(&active_events)) {
4e935e47 532 mutex_lock(&pmc_reserve_mutex);
cdd6c482 533 if (atomic_read(&active_events) == 0) {
30dd568c
MM
534 if (!reserve_pmc_hardware())
535 err = -EBUSY;
f80c9e30
PZ
536 else
537 reserve_ds_buffers();
30dd568c
MM
538 }
539 if (!err)
cdd6c482 540 atomic_inc(&active_events);
4e935e47
PZ
541 mutex_unlock(&pmc_reserve_mutex);
542 }
543 if (err)
544 return err;
545
cdd6c482 546 event->destroy = hw_perf_event_destroy;
a1792cda 547
4261e0e0
RR
548 event->hw.idx = -1;
549 event->hw.last_cpu = -1;
550 event->hw.last_tag = ~0ULL;
b690081d 551
efc9f05d
SE
552 /* mark unused */
553 event->hw.extra_reg.idx = EXTRA_REG_NONE;
b36817e8
SE
554 event->hw.branch_reg.idx = EXTRA_REG_NONE;
555
9d0fcba6 556 return x86_pmu.hw_config(event);
4261e0e0
RR
557}
558
de0428a7 559void x86_pmu_disable_all(void)
f87ad35d 560{
89cbc767 561 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
9e35ad38
PZ
562 int idx;
563
948b1bb8 564 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
b0f3f28e
PZ
565 u64 val;
566
43f6201a 567 if (!test_bit(idx, cpuc->active_mask))
4295ee62 568 continue;
41bf4989 569 rdmsrl(x86_pmu_config_addr(idx), val);
bb1165d6 570 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
4295ee62 571 continue;
bb1165d6 572 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
41bf4989 573 wrmsrl(x86_pmu_config_addr(idx), val);
f87ad35d 574 }
f87ad35d
JSR
575}
576
a4eaf7f1 577static void x86_pmu_disable(struct pmu *pmu)
b56a3802 578{
89cbc767 579 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1da53e02 580
85cf9dba 581 if (!x86_pmu_initialized())
9e35ad38 582 return;
1da53e02 583
1a6e21f7
PZ
584 if (!cpuc->enabled)
585 return;
586
587 cpuc->n_added = 0;
588 cpuc->enabled = 0;
589 barrier();
1da53e02
SE
590
591 x86_pmu.disable_all();
b56a3802 592}
241771ef 593
de0428a7 594void x86_pmu_enable_all(int added)
f87ad35d 595{
89cbc767 596 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
f87ad35d
JSR
597 int idx;
598
948b1bb8 599 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
d45dd923 600 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
b0f3f28e 601
43f6201a 602 if (!test_bit(idx, cpuc->active_mask))
4295ee62 603 continue;
984b838c 604
d45dd923 605 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
f87ad35d
JSR
606 }
607}
608
51b0fe39 609static struct pmu pmu;
1da53e02
SE
610
611static inline int is_x86_event(struct perf_event *event)
612{
613 return event->pmu == &pmu;
614}
615
1e2ad28f
RR
616/*
617 * Event scheduler state:
618 *
619 * Assign events iterating over all events and counters, beginning
620 * with events with least weights first. Keep the current iterator
621 * state in struct sched_state.
622 */
623struct sched_state {
624 int weight;
625 int event; /* event index */
626 int counter; /* counter index */
627 int unassigned; /* number of events to be assigned left */
cc1790cf 628 int nr_gp; /* number of GP counters used */
1e2ad28f
RR
629 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
630};
631
bc1738f6
RR
632/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
633#define SCHED_STATES_MAX 2
634
1e2ad28f
RR
635struct perf_sched {
636 int max_weight;
637 int max_events;
cc1790cf
PZ
638 int max_gp;
639 int saved_states;
b371b594 640 struct event_constraint **constraints;
1e2ad28f 641 struct sched_state state;
bc1738f6 642 struct sched_state saved[SCHED_STATES_MAX];
1e2ad28f
RR
643};
644
645/*
646 * Initialize interator that runs through all events and counters.
647 */
b371b594 648static void perf_sched_init(struct perf_sched *sched, struct event_constraint **constraints,
cc1790cf 649 int num, int wmin, int wmax, int gpmax)
1e2ad28f
RR
650{
651 int idx;
652
653 memset(sched, 0, sizeof(*sched));
654 sched->max_events = num;
655 sched->max_weight = wmax;
cc1790cf 656 sched->max_gp = gpmax;
b371b594 657 sched->constraints = constraints;
1e2ad28f
RR
658
659 for (idx = 0; idx < num; idx++) {
b371b594 660 if (constraints[idx]->weight == wmin)
1e2ad28f
RR
661 break;
662 }
663
664 sched->state.event = idx; /* start with min weight */
665 sched->state.weight = wmin;
666 sched->state.unassigned = num;
667}
668
bc1738f6
RR
669static void perf_sched_save_state(struct perf_sched *sched)
670{
671 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
672 return;
673
674 sched->saved[sched->saved_states] = sched->state;
675 sched->saved_states++;
676}
677
678static bool perf_sched_restore_state(struct perf_sched *sched)
679{
680 if (!sched->saved_states)
681 return false;
682
683 sched->saved_states--;
684 sched->state = sched->saved[sched->saved_states];
685
686 /* continue with next counter: */
687 clear_bit(sched->state.counter++, sched->state.used);
688
689 return true;
690}
691
1e2ad28f
RR
692/*
693 * Select a counter for the current event to schedule. Return true on
694 * success.
695 */
bc1738f6 696static bool __perf_sched_find_counter(struct perf_sched *sched)
1e2ad28f
RR
697{
698 struct event_constraint *c;
699 int idx;
700
701 if (!sched->state.unassigned)
702 return false;
703
704 if (sched->state.event >= sched->max_events)
705 return false;
706
b371b594 707 c = sched->constraints[sched->state.event];
4defea85 708 /* Prefer fixed purpose counters */
15c7ad51
RR
709 if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
710 idx = INTEL_PMC_IDX_FIXED;
307b1cd7 711 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
4defea85
PZ
712 if (!__test_and_set_bit(idx, sched->state.used))
713 goto done;
714 }
715 }
cc1790cf 716
1e2ad28f
RR
717 /* Grab the first unused counter starting with idx */
718 idx = sched->state.counter;
15c7ad51 719 for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
cc1790cf
PZ
720 if (!__test_and_set_bit(idx, sched->state.used)) {
721 if (sched->state.nr_gp++ >= sched->max_gp)
722 return false;
723
4defea85 724 goto done;
cc1790cf 725 }
1e2ad28f 726 }
1e2ad28f 727
4defea85
PZ
728 return false;
729
730done:
731 sched->state.counter = idx;
1e2ad28f 732
bc1738f6
RR
733 if (c->overlap)
734 perf_sched_save_state(sched);
735
736 return true;
737}
738
739static bool perf_sched_find_counter(struct perf_sched *sched)
740{
741 while (!__perf_sched_find_counter(sched)) {
742 if (!perf_sched_restore_state(sched))
743 return false;
744 }
745
1e2ad28f
RR
746 return true;
747}
748
749/*
750 * Go through all unassigned events and find the next one to schedule.
751 * Take events with the least weight first. Return true on success.
752 */
753static bool perf_sched_next_event(struct perf_sched *sched)
754{
755 struct event_constraint *c;
756
757 if (!sched->state.unassigned || !--sched->state.unassigned)
758 return false;
759
760 do {
761 /* next event */
762 sched->state.event++;
763 if (sched->state.event >= sched->max_events) {
764 /* next weight */
765 sched->state.event = 0;
766 sched->state.weight++;
767 if (sched->state.weight > sched->max_weight)
768 return false;
769 }
b371b594 770 c = sched->constraints[sched->state.event];
1e2ad28f
RR
771 } while (c->weight != sched->state.weight);
772
773 sched->state.counter = 0; /* start with first counter */
774
775 return true;
776}
777
778/*
779 * Assign a counter for each event.
780 */
b371b594 781int perf_assign_events(struct event_constraint **constraints, int n,
cc1790cf 782 int wmin, int wmax, int gpmax, int *assign)
1e2ad28f
RR
783{
784 struct perf_sched sched;
785
cc1790cf 786 perf_sched_init(&sched, constraints, n, wmin, wmax, gpmax);
1e2ad28f
RR
787
788 do {
789 if (!perf_sched_find_counter(&sched))
790 break; /* failed */
791 if (assign)
792 assign[sched.state.event] = sched.state.counter;
793 } while (perf_sched_next_event(&sched));
794
795 return sched.state.unassigned;
796}
4a3dc121 797EXPORT_SYMBOL_GPL(perf_assign_events);
1e2ad28f 798
de0428a7 799int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
1da53e02 800{
43b45780 801 struct event_constraint *c;
1da53e02 802 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
2f7f73a5 803 struct perf_event *e;
e979121b 804 int i, wmin, wmax, unsched = 0;
1da53e02
SE
805 struct hw_perf_event *hwc;
806
807 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
808
c5362c0c
MD
809 if (x86_pmu.start_scheduling)
810 x86_pmu.start_scheduling(cpuc);
811
1e2ad28f 812 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
b371b594 813 cpuc->event_constraint[i] = NULL;
79cba822 814 c = x86_pmu.get_event_constraints(cpuc, i, cpuc->event_list[i]);
b371b594 815 cpuc->event_constraint[i] = c;
43b45780 816
1e2ad28f
RR
817 wmin = min(wmin, c->weight);
818 wmax = max(wmax, c->weight);
1da53e02
SE
819 }
820
8113070d
SE
821 /*
822 * fastpath, try to reuse previous register
823 */
c933c1a6 824 for (i = 0; i < n; i++) {
8113070d 825 hwc = &cpuc->event_list[i]->hw;
b371b594 826 c = cpuc->event_constraint[i];
8113070d
SE
827
828 /* never assigned */
829 if (hwc->idx == -1)
830 break;
831
832 /* constraint still honored */
63b14649 833 if (!test_bit(hwc->idx, c->idxmsk))
8113070d
SE
834 break;
835
836 /* not already used */
837 if (test_bit(hwc->idx, used_mask))
838 break;
839
34538ee7 840 __set_bit(hwc->idx, used_mask);
8113070d
SE
841 if (assign)
842 assign[i] = hwc->idx;
843 }
8113070d 844
1e2ad28f 845 /* slow path */
b371b594 846 if (i != n) {
cc1790cf
PZ
847 int gpmax = x86_pmu.num_counters;
848
849 /*
850 * Do not allow scheduling of more than half the available
851 * generic counters.
852 *
853 * This helps avoid counter starvation of sibling thread by
854 * ensuring at most half the counters cannot be in exclusive
855 * mode. There is no designated counters for the limits. Any
856 * N/2 counters can be used. This helps with events with
857 * specific counter constraints.
858 */
859 if (is_ht_workaround_enabled() && !cpuc->is_fake &&
860 READ_ONCE(cpuc->excl_cntrs->exclusive_present))
861 gpmax /= 2;
862
b371b594 863 unsched = perf_assign_events(cpuc->event_constraint, n, wmin,
cc1790cf 864 wmax, gpmax, assign);
b371b594 865 }
8113070d 866
2f7f73a5 867 /*
e979121b
MD
868 * In case of success (unsched = 0), mark events as committed,
869 * so we do not put_constraint() in case new events are added
870 * and fail to be scheduled
871 *
872 * We invoke the lower level commit callback to lock the resource
873 *
874 * We do not need to do all of this in case we are called to
875 * validate an event group (assign == NULL)
2f7f73a5 876 */
e979121b 877 if (!unsched && assign) {
2f7f73a5
SE
878 for (i = 0; i < n; i++) {
879 e = cpuc->event_list[i];
880 e->hw.flags |= PERF_X86_EVENT_COMMITTED;
c5362c0c 881 if (x86_pmu.commit_scheduling)
b371b594 882 x86_pmu.commit_scheduling(cpuc, i, assign[i]);
2f7f73a5
SE
883 }
884 }
e979121b
MD
885
886 if (!assign || unsched) {
887
1da53e02 888 for (i = 0; i < n; i++) {
2f7f73a5
SE
889 e = cpuc->event_list[i];
890 /*
891 * do not put_constraint() on comitted events,
892 * because they are good to go
893 */
894 if ((e->hw.flags & PERF_X86_EVENT_COMMITTED))
895 continue;
896
e979121b
MD
897 /*
898 * release events that failed scheduling
899 */
1da53e02 900 if (x86_pmu.put_event_constraints)
2f7f73a5 901 x86_pmu.put_event_constraints(cpuc, e);
1da53e02
SE
902 }
903 }
c5362c0c
MD
904
905 if (x86_pmu.stop_scheduling)
906 x86_pmu.stop_scheduling(cpuc);
907
e979121b 908 return unsched ? -EINVAL : 0;
1da53e02
SE
909}
910
911/*
912 * dogrp: true if must collect siblings events (group)
913 * returns total number of events and error code
914 */
915static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
916{
917 struct perf_event *event;
918 int n, max_count;
919
948b1bb8 920 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
1da53e02
SE
921
922 /* current number of events already accepted */
923 n = cpuc->n_events;
924
925 if (is_x86_event(leader)) {
926 if (n >= max_count)
aa2bc1ad 927 return -EINVAL;
1da53e02
SE
928 cpuc->event_list[n] = leader;
929 n++;
930 }
931 if (!dogrp)
932 return n;
933
934 list_for_each_entry(event, &leader->sibling_list, group_entry) {
935 if (!is_x86_event(event) ||
8113070d 936 event->state <= PERF_EVENT_STATE_OFF)
1da53e02
SE
937 continue;
938
939 if (n >= max_count)
aa2bc1ad 940 return -EINVAL;
1da53e02
SE
941
942 cpuc->event_list[n] = event;
943 n++;
944 }
945 return n;
946}
947
1da53e02 948static inline void x86_assign_hw_event(struct perf_event *event,
447a194b 949 struct cpu_hw_events *cpuc, int i)
1da53e02 950{
447a194b
SE
951 struct hw_perf_event *hwc = &event->hw;
952
953 hwc->idx = cpuc->assign[i];
954 hwc->last_cpu = smp_processor_id();
955 hwc->last_tag = ++cpuc->tags[i];
1da53e02 956
15c7ad51 957 if (hwc->idx == INTEL_PMC_IDX_FIXED_BTS) {
1da53e02
SE
958 hwc->config_base = 0;
959 hwc->event_base = 0;
15c7ad51 960 } else if (hwc->idx >= INTEL_PMC_IDX_FIXED) {
1da53e02 961 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
15c7ad51
RR
962 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - INTEL_PMC_IDX_FIXED);
963 hwc->event_base_rdpmc = (hwc->idx - INTEL_PMC_IDX_FIXED) | 1<<30;
1da53e02 964 } else {
73d6e522
RR
965 hwc->config_base = x86_pmu_config_addr(hwc->idx);
966 hwc->event_base = x86_pmu_event_addr(hwc->idx);
0fbdad07 967 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
1da53e02
SE
968 }
969}
970
447a194b
SE
971static inline int match_prev_assignment(struct hw_perf_event *hwc,
972 struct cpu_hw_events *cpuc,
973 int i)
974{
975 return hwc->idx == cpuc->assign[i] &&
976 hwc->last_cpu == smp_processor_id() &&
977 hwc->last_tag == cpuc->tags[i];
978}
979
a4eaf7f1 980static void x86_pmu_start(struct perf_event *event, int flags);
2e841873 981
a4eaf7f1 982static void x86_pmu_enable(struct pmu *pmu)
ee06094f 983{
89cbc767 984 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1da53e02
SE
985 struct perf_event *event;
986 struct hw_perf_event *hwc;
11164cd4 987 int i, added = cpuc->n_added;
1da53e02 988
85cf9dba 989 if (!x86_pmu_initialized())
2b9ff0db 990 return;
1a6e21f7
PZ
991
992 if (cpuc->enabled)
993 return;
994
1da53e02 995 if (cpuc->n_added) {
19925ce7 996 int n_running = cpuc->n_events - cpuc->n_added;
1da53e02
SE
997 /*
998 * apply assignment obtained either from
999 * hw_perf_group_sched_in() or x86_pmu_enable()
1000 *
1001 * step1: save events moving to new counters
1da53e02 1002 */
19925ce7 1003 for (i = 0; i < n_running; i++) {
1da53e02
SE
1004 event = cpuc->event_list[i];
1005 hwc = &event->hw;
1006
447a194b
SE
1007 /*
1008 * we can avoid reprogramming counter if:
1009 * - assigned same counter as last time
1010 * - running on same CPU as last time
1011 * - no other event has used the counter since
1012 */
1013 if (hwc->idx == -1 ||
1014 match_prev_assignment(hwc, cpuc, i))
1da53e02
SE
1015 continue;
1016
a4eaf7f1
PZ
1017 /*
1018 * Ensure we don't accidentally enable a stopped
1019 * counter simply because we rescheduled.
1020 */
1021 if (hwc->state & PERF_HES_STOPPED)
1022 hwc->state |= PERF_HES_ARCH;
1023
1024 x86_pmu_stop(event, PERF_EF_UPDATE);
1da53e02
SE
1025 }
1026
c347a2f1
PZ
1027 /*
1028 * step2: reprogram moved events into new counters
1029 */
1da53e02 1030 for (i = 0; i < cpuc->n_events; i++) {
1da53e02
SE
1031 event = cpuc->event_list[i];
1032 hwc = &event->hw;
1033
45e16a68 1034 if (!match_prev_assignment(hwc, cpuc, i))
447a194b 1035 x86_assign_hw_event(event, cpuc, i);
45e16a68
PZ
1036 else if (i < n_running)
1037 continue;
1da53e02 1038
a4eaf7f1
PZ
1039 if (hwc->state & PERF_HES_ARCH)
1040 continue;
1041
1042 x86_pmu_start(event, PERF_EF_RELOAD);
1da53e02
SE
1043 }
1044 cpuc->n_added = 0;
1045 perf_events_lapic_init();
1046 }
1a6e21f7
PZ
1047
1048 cpuc->enabled = 1;
1049 barrier();
1050
11164cd4 1051 x86_pmu.enable_all(added);
ee06094f 1052}
ee06094f 1053
245b2e70 1054static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
241771ef 1055
ee06094f
IM
1056/*
1057 * Set the next IRQ period, based on the hwc->period_left value.
cdd6c482 1058 * To be called with the event disabled in hw:
ee06094f 1059 */
de0428a7 1060int x86_perf_event_set_period(struct perf_event *event)
241771ef 1061{
07088edb 1062 struct hw_perf_event *hwc = &event->hw;
e7850595 1063 s64 left = local64_read(&hwc->period_left);
e4abb5d4 1064 s64 period = hwc->sample_period;
7645a24c 1065 int ret = 0, idx = hwc->idx;
ee06094f 1066
15c7ad51 1067 if (idx == INTEL_PMC_IDX_FIXED_BTS)
30dd568c
MM
1068 return 0;
1069
ee06094f 1070 /*
af901ca1 1071 * If we are way outside a reasonable range then just skip forward:
ee06094f
IM
1072 */
1073 if (unlikely(left <= -period)) {
1074 left = period;
e7850595 1075 local64_set(&hwc->period_left, left);
9e350de3 1076 hwc->last_period = period;
e4abb5d4 1077 ret = 1;
ee06094f
IM
1078 }
1079
1080 if (unlikely(left <= 0)) {
1081 left += period;
e7850595 1082 local64_set(&hwc->period_left, left);
9e350de3 1083 hwc->last_period = period;
e4abb5d4 1084 ret = 1;
ee06094f 1085 }
1c80f4b5 1086 /*
dfc65094 1087 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
1c80f4b5
IM
1088 */
1089 if (unlikely(left < 2))
1090 left = 2;
241771ef 1091
e4abb5d4
PZ
1092 if (left > x86_pmu.max_period)
1093 left = x86_pmu.max_period;
1094
294fe0f5
AK
1095 if (x86_pmu.limit_period)
1096 left = x86_pmu.limit_period(event, left);
1097
245b2e70 1098 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
ee06094f
IM
1099
1100 /*
cdd6c482 1101 * The hw event starts counting from this event offset,
ee06094f
IM
1102 * mark it to be able to extra future deltas:
1103 */
e7850595 1104 local64_set(&hwc->prev_count, (u64)-left);
ee06094f 1105
73d6e522 1106 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
68aa00ac
CG
1107
1108 /*
1109 * Due to erratum on certan cpu we need
1110 * a second write to be sure the register
1111 * is updated properly
1112 */
1113 if (x86_pmu.perfctr_second_write) {
73d6e522 1114 wrmsrl(hwc->event_base,
948b1bb8 1115 (u64)(-left) & x86_pmu.cntval_mask);
68aa00ac 1116 }
e4abb5d4 1117
cdd6c482 1118 perf_event_update_userpage(event);
194002b2 1119
e4abb5d4 1120 return ret;
2f18d1e8
IM
1121}
1122
de0428a7 1123void x86_pmu_enable_event(struct perf_event *event)
7c90cc45 1124{
0a3aee0d 1125 if (__this_cpu_read(cpu_hw_events.enabled))
31fa58af
RR
1126 __x86_pmu_enable_event(&event->hw,
1127 ARCH_PERFMON_EVENTSEL_ENABLE);
241771ef
IM
1128}
1129
b690081d 1130/*
a4eaf7f1 1131 * Add a single event to the PMU.
1da53e02
SE
1132 *
1133 * The event is added to the group of enabled events
1134 * but only if it can be scehduled with existing events.
fe9081cc 1135 */
a4eaf7f1 1136static int x86_pmu_add(struct perf_event *event, int flags)
fe9081cc 1137{
89cbc767 1138 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1da53e02
SE
1139 struct hw_perf_event *hwc;
1140 int assign[X86_PMC_IDX_MAX];
1141 int n, n0, ret;
fe9081cc 1142
1da53e02 1143 hwc = &event->hw;
fe9081cc 1144
1da53e02 1145 n0 = cpuc->n_events;
24cd7f54
PZ
1146 ret = n = collect_events(cpuc, event, false);
1147 if (ret < 0)
1148 goto out;
53b441a5 1149
a4eaf7f1
PZ
1150 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1151 if (!(flags & PERF_EF_START))
1152 hwc->state |= PERF_HES_ARCH;
1153
4d1c52b0
LM
1154 /*
1155 * If group events scheduling transaction was started,
0d2eb44f 1156 * skip the schedulability test here, it will be performed
c347a2f1 1157 * at commit time (->commit_txn) as a whole.
4d1c52b0 1158 */
8d2cacbb 1159 if (cpuc->group_flag & PERF_EVENT_TXN)
24cd7f54 1160 goto done_collect;
4d1c52b0 1161
a072738e 1162 ret = x86_pmu.schedule_events(cpuc, n, assign);
1da53e02 1163 if (ret)
24cd7f54 1164 goto out;
1da53e02
SE
1165 /*
1166 * copy new assignment, now we know it is possible
1167 * will be used by hw_perf_enable()
1168 */
1169 memcpy(cpuc->assign, assign, n*sizeof(int));
7e2ae347 1170
24cd7f54 1171done_collect:
c347a2f1
PZ
1172 /*
1173 * Commit the collect_events() state. See x86_pmu_del() and
1174 * x86_pmu_*_txn().
1175 */
1da53e02 1176 cpuc->n_events = n;
356e1f2e 1177 cpuc->n_added += n - n0;
90151c35 1178 cpuc->n_txn += n - n0;
95cdd2e7 1179
24cd7f54
PZ
1180 ret = 0;
1181out:
24cd7f54 1182 return ret;
241771ef
IM
1183}
1184
a4eaf7f1 1185static void x86_pmu_start(struct perf_event *event, int flags)
d76a0812 1186{
89cbc767 1187 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
c08053e6
PZ
1188 int idx = event->hw.idx;
1189
a4eaf7f1
PZ
1190 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1191 return;
1192
1193 if (WARN_ON_ONCE(idx == -1))
1194 return;
1195
1196 if (flags & PERF_EF_RELOAD) {
1197 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1198 x86_perf_event_set_period(event);
1199 }
1200
1201 event->hw.state = 0;
d76a0812 1202
c08053e6
PZ
1203 cpuc->events[idx] = event;
1204 __set_bit(idx, cpuc->active_mask);
63e6be6d 1205 __set_bit(idx, cpuc->running);
aff3d91a 1206 x86_pmu.enable(event);
c08053e6 1207 perf_event_update_userpage(event);
a78ac325
PZ
1208}
1209
cdd6c482 1210void perf_event_print_debug(void)
241771ef 1211{
2f18d1e8 1212 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
da3e606d 1213 u64 pebs, debugctl;
cdd6c482 1214 struct cpu_hw_events *cpuc;
5bb9efe3 1215 unsigned long flags;
1e125676
IM
1216 int cpu, idx;
1217
948b1bb8 1218 if (!x86_pmu.num_counters)
1e125676 1219 return;
241771ef 1220
5bb9efe3 1221 local_irq_save(flags);
241771ef
IM
1222
1223 cpu = smp_processor_id();
cdd6c482 1224 cpuc = &per_cpu(cpu_hw_events, cpu);
241771ef 1225
faa28ae0 1226 if (x86_pmu.version >= 2) {
a1ef58f4
JSR
1227 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1228 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1229 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1230 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
1231
1232 pr_info("\n");
1233 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1234 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1235 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1236 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
15fde110
AK
1237 if (x86_pmu.pebs_constraints) {
1238 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
1239 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
1240 }
da3e606d
AK
1241 if (x86_pmu.lbr_nr) {
1242 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
1243 pr_info("CPU#%d: debugctl: %016llx\n", cpu, debugctl);
1244 }
f87ad35d 1245 }
7645a24c 1246 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
241771ef 1247
948b1bb8 1248 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
41bf4989
RR
1249 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1250 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
241771ef 1251
245b2e70 1252 prev_left = per_cpu(pmc_prev_left[idx], cpu);
241771ef 1253
a1ef58f4 1254 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
241771ef 1255 cpu, idx, pmc_ctrl);
a1ef58f4 1256 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
241771ef 1257 cpu, idx, pmc_count);
a1ef58f4 1258 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
ee06094f 1259 cpu, idx, prev_left);
241771ef 1260 }
948b1bb8 1261 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
2f18d1e8
IM
1262 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1263
a1ef58f4 1264 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
2f18d1e8
IM
1265 cpu, idx, pmc_count);
1266 }
5bb9efe3 1267 local_irq_restore(flags);
241771ef
IM
1268}
1269
de0428a7 1270void x86_pmu_stop(struct perf_event *event, int flags)
241771ef 1271{
89cbc767 1272 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
cdd6c482 1273 struct hw_perf_event *hwc = &event->hw;
241771ef 1274
a4eaf7f1
PZ
1275 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1276 x86_pmu.disable(event);
1277 cpuc->events[hwc->idx] = NULL;
1278 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1279 hwc->state |= PERF_HES_STOPPED;
1280 }
30dd568c 1281
a4eaf7f1
PZ
1282 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1283 /*
1284 * Drain the remaining delta count out of a event
1285 * that we are disabling:
1286 */
1287 x86_perf_event_update(event);
1288 hwc->state |= PERF_HES_UPTODATE;
1289 }
2e841873
PZ
1290}
1291
a4eaf7f1 1292static void x86_pmu_del(struct perf_event *event, int flags)
2e841873 1293{
89cbc767 1294 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2e841873
PZ
1295 int i;
1296
2f7f73a5
SE
1297 /*
1298 * event is descheduled
1299 */
1300 event->hw.flags &= ~PERF_X86_EVENT_COMMITTED;
1301
90151c35
SE
1302 /*
1303 * If we're called during a txn, we don't need to do anything.
1304 * The events never got scheduled and ->cancel_txn will truncate
1305 * the event_list.
c347a2f1
PZ
1306 *
1307 * XXX assumes any ->del() called during a TXN will only be on
1308 * an event added during that same TXN.
90151c35 1309 */
8d2cacbb 1310 if (cpuc->group_flag & PERF_EVENT_TXN)
90151c35
SE
1311 return;
1312
c347a2f1
PZ
1313 /*
1314 * Not a TXN, therefore cleanup properly.
1315 */
a4eaf7f1 1316 x86_pmu_stop(event, PERF_EF_UPDATE);
194002b2 1317
1da53e02 1318 for (i = 0; i < cpuc->n_events; i++) {
c347a2f1
PZ
1319 if (event == cpuc->event_list[i])
1320 break;
1321 }
1da53e02 1322
c347a2f1
PZ
1323 if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1324 return;
26e61e89 1325
c347a2f1
PZ
1326 /* If we have a newly added event; make sure to decrease n_added. */
1327 if (i >= cpuc->n_events - cpuc->n_added)
1328 --cpuc->n_added;
1da53e02 1329
c347a2f1
PZ
1330 if (x86_pmu.put_event_constraints)
1331 x86_pmu.put_event_constraints(cpuc, event);
1332
1333 /* Delete the array entry. */
b371b594 1334 while (++i < cpuc->n_events) {
c347a2f1 1335 cpuc->event_list[i-1] = cpuc->event_list[i];
b371b594
PZ
1336 cpuc->event_constraint[i-1] = cpuc->event_constraint[i];
1337 }
c347a2f1 1338 --cpuc->n_events;
1da53e02 1339
cdd6c482 1340 perf_event_update_userpage(event);
241771ef
IM
1341}
1342
de0428a7 1343int x86_pmu_handle_irq(struct pt_regs *regs)
a29aa8a7 1344{
df1a132b 1345 struct perf_sample_data data;
cdd6c482
IM
1346 struct cpu_hw_events *cpuc;
1347 struct perf_event *event;
11d1578f 1348 int idx, handled = 0;
9029a5e3
IM
1349 u64 val;
1350
89cbc767 1351 cpuc = this_cpu_ptr(&cpu_hw_events);
962bf7a6 1352
2bce5dac
DZ
1353 /*
1354 * Some chipsets need to unmask the LVTPC in a particular spot
1355 * inside the nmi handler. As a result, the unmasking was pushed
1356 * into all the nmi handlers.
1357 *
1358 * This generic handler doesn't seem to have any issues where the
1359 * unmasking occurs so it was left at the top.
1360 */
1361 apic_write(APIC_LVTPC, APIC_DM_NMI);
1362
948b1bb8 1363 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
63e6be6d
RR
1364 if (!test_bit(idx, cpuc->active_mask)) {
1365 /*
1366 * Though we deactivated the counter some cpus
1367 * might still deliver spurious interrupts still
1368 * in flight. Catch them:
1369 */
1370 if (__test_and_clear_bit(idx, cpuc->running))
1371 handled++;
a29aa8a7 1372 continue;
63e6be6d 1373 }
962bf7a6 1374
cdd6c482 1375 event = cpuc->events[idx];
a4016a79 1376
cc2ad4ba 1377 val = x86_perf_event_update(event);
948b1bb8 1378 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
48e22d56 1379 continue;
962bf7a6 1380
9e350de3 1381 /*
cdd6c482 1382 * event overflow
9e350de3 1383 */
4177c42a 1384 handled++;
fd0d000b 1385 perf_sample_data_init(&data, 0, event->hw.last_period);
9e350de3 1386
07088edb 1387 if (!x86_perf_event_set_period(event))
e4abb5d4
PZ
1388 continue;
1389
a8b0ca17 1390 if (perf_event_overflow(event, &data, regs))
a4eaf7f1 1391 x86_pmu_stop(event, 0);
a29aa8a7 1392 }
962bf7a6 1393
9e350de3
PZ
1394 if (handled)
1395 inc_irq_stat(apic_perf_irqs);
1396
a29aa8a7
RR
1397 return handled;
1398}
39d81eab 1399
cdd6c482 1400void perf_events_lapic_init(void)
241771ef 1401{
04da8a43 1402 if (!x86_pmu.apic || !x86_pmu_initialized())
241771ef 1403 return;
85cf9dba 1404
241771ef 1405 /*
c323d95f 1406 * Always use NMI for PMU
241771ef 1407 */
c323d95f 1408 apic_write(APIC_LVTPC, APIC_DM_NMI);
241771ef
IM
1409}
1410
9326638c 1411static int
9c48f1c6 1412perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
241771ef 1413{
14c63f17
DH
1414 u64 start_clock;
1415 u64 finish_clock;
e8a923cc 1416 int ret;
14c63f17 1417
cdd6c482 1418 if (!atomic_read(&active_events))
9c48f1c6 1419 return NMI_DONE;
4177c42a 1420
e8a923cc 1421 start_clock = sched_clock();
14c63f17 1422 ret = x86_pmu.handle_irq(regs);
e8a923cc 1423 finish_clock = sched_clock();
14c63f17
DH
1424
1425 perf_sample_event_took(finish_clock - start_clock);
1426
1427 return ret;
241771ef 1428}
9326638c 1429NOKPROBE_SYMBOL(perf_event_nmi_handler);
241771ef 1430
de0428a7
KW
1431struct event_constraint emptyconstraint;
1432struct event_constraint unconstrained;
f87ad35d 1433
148f9bb8 1434static int
3f6da390
PZ
1435x86_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1436{
1437 unsigned int cpu = (long)hcpu;
7fdba1ca 1438 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
90413464 1439 int i, ret = NOTIFY_OK;
3f6da390
PZ
1440
1441 switch (action & ~CPU_TASKS_FROZEN) {
1442 case CPU_UP_PREPARE:
90413464
SE
1443 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++)
1444 cpuc->kfree_on_online[i] = NULL;
3f6da390 1445 if (x86_pmu.cpu_prepare)
b38b24ea 1446 ret = x86_pmu.cpu_prepare(cpu);
3f6da390
PZ
1447 break;
1448
1449 case CPU_STARTING:
1450 if (x86_pmu.cpu_starting)
1451 x86_pmu.cpu_starting(cpu);
1452 break;
1453
7fdba1ca 1454 case CPU_ONLINE:
90413464
SE
1455 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++) {
1456 kfree(cpuc->kfree_on_online[i]);
1457 cpuc->kfree_on_online[i] = NULL;
1458 }
7fdba1ca
PZ
1459 break;
1460
3f6da390
PZ
1461 case CPU_DYING:
1462 if (x86_pmu.cpu_dying)
1463 x86_pmu.cpu_dying(cpu);
1464 break;
1465
b38b24ea 1466 case CPU_UP_CANCELED:
3f6da390
PZ
1467 case CPU_DEAD:
1468 if (x86_pmu.cpu_dead)
1469 x86_pmu.cpu_dead(cpu);
1470 break;
1471
1472 default:
1473 break;
1474 }
1475
b38b24ea 1476 return ret;
3f6da390
PZ
1477}
1478
12558038
CG
1479static void __init pmu_check_apic(void)
1480{
1481 if (cpu_has_apic)
1482 return;
1483
1484 x86_pmu.apic = 0;
1485 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1486 pr_info("no hardware sampling interrupt available.\n");
c184c980
VW
1487
1488 /*
1489 * If we have a PMU initialized but no APIC
1490 * interrupts, we cannot sample hardware
1491 * events (user-space has to fall back and
1492 * sample via a hrtimer based software event):
1493 */
1494 pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1495
12558038
CG
1496}
1497
641cc938
JO
1498static struct attribute_group x86_pmu_format_group = {
1499 .name = "format",
1500 .attrs = NULL,
1501};
1502
8300daa2
JO
1503/*
1504 * Remove all undefined events (x86_pmu.event_map(id) == 0)
1505 * out of events_attr attributes.
1506 */
1507static void __init filter_events(struct attribute **attrs)
1508{
3a54aaa0
SE
1509 struct device_attribute *d;
1510 struct perf_pmu_events_attr *pmu_attr;
8300daa2
JO
1511 int i, j;
1512
1513 for (i = 0; attrs[i]; i++) {
3a54aaa0
SE
1514 d = (struct device_attribute *)attrs[i];
1515 pmu_attr = container_of(d, struct perf_pmu_events_attr, attr);
1516 /* str trumps id */
1517 if (pmu_attr->event_str)
1518 continue;
8300daa2
JO
1519 if (x86_pmu.event_map(i))
1520 continue;
1521
1522 for (j = i; attrs[j]; j++)
1523 attrs[j] = attrs[j + 1];
1524
1525 /* Check the shifted attr. */
1526 i--;
1527 }
1528}
1529
1a6461b1
AK
1530/* Merge two pointer arrays */
1531static __init struct attribute **merge_attr(struct attribute **a, struct attribute **b)
1532{
1533 struct attribute **new;
1534 int j, i;
1535
1536 for (j = 0; a[j]; j++)
1537 ;
1538 for (i = 0; b[i]; i++)
1539 j++;
1540 j++;
1541
1542 new = kmalloc(sizeof(struct attribute *) * j, GFP_KERNEL);
1543 if (!new)
1544 return NULL;
1545
1546 j = 0;
1547 for (i = 0; a[i]; i++)
1548 new[j++] = a[i];
1549 for (i = 0; b[i]; i++)
1550 new[j++] = b[i];
1551 new[j] = NULL;
1552
1553 return new;
1554}
1555
f20093ee 1556ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
a4747393
JO
1557 char *page)
1558{
1559 struct perf_pmu_events_attr *pmu_attr = \
1560 container_of(attr, struct perf_pmu_events_attr, attr);
a4747393 1561 u64 config = x86_pmu.event_map(pmu_attr->id);
a4747393 1562
3a54aaa0
SE
1563 /* string trumps id */
1564 if (pmu_attr->event_str)
1565 return sprintf(page, "%s", pmu_attr->event_str);
a4747393 1566
3a54aaa0
SE
1567 return x86_pmu.events_sysfs_show(page, config);
1568}
a4747393
JO
1569
1570EVENT_ATTR(cpu-cycles, CPU_CYCLES );
1571EVENT_ATTR(instructions, INSTRUCTIONS );
1572EVENT_ATTR(cache-references, CACHE_REFERENCES );
1573EVENT_ATTR(cache-misses, CACHE_MISSES );
1574EVENT_ATTR(branch-instructions, BRANCH_INSTRUCTIONS );
1575EVENT_ATTR(branch-misses, BRANCH_MISSES );
1576EVENT_ATTR(bus-cycles, BUS_CYCLES );
1577EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND );
1578EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND );
1579EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
1580
1581static struct attribute *empty_attrs;
1582
95d18aa2 1583static struct attribute *events_attr[] = {
a4747393
JO
1584 EVENT_PTR(CPU_CYCLES),
1585 EVENT_PTR(INSTRUCTIONS),
1586 EVENT_PTR(CACHE_REFERENCES),
1587 EVENT_PTR(CACHE_MISSES),
1588 EVENT_PTR(BRANCH_INSTRUCTIONS),
1589 EVENT_PTR(BRANCH_MISSES),
1590 EVENT_PTR(BUS_CYCLES),
1591 EVENT_PTR(STALLED_CYCLES_FRONTEND),
1592 EVENT_PTR(STALLED_CYCLES_BACKEND),
1593 EVENT_PTR(REF_CPU_CYCLES),
1594 NULL,
1595};
1596
1597static struct attribute_group x86_pmu_events_group = {
1598 .name = "events",
1599 .attrs = events_attr,
1600};
1601
0bf79d44 1602ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
43c032fe 1603{
43c032fe
JO
1604 u64 umask = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1605 u64 cmask = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1606 bool edge = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1607 bool pc = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1608 bool any = (config & ARCH_PERFMON_EVENTSEL_ANY);
1609 bool inv = (config & ARCH_PERFMON_EVENTSEL_INV);
1610 ssize_t ret;
1611
1612 /*
1613 * We have whole page size to spend and just little data
1614 * to write, so we can safely use sprintf.
1615 */
1616 ret = sprintf(page, "event=0x%02llx", event);
1617
1618 if (umask)
1619 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1620
1621 if (edge)
1622 ret += sprintf(page + ret, ",edge");
1623
1624 if (pc)
1625 ret += sprintf(page + ret, ",pc");
1626
1627 if (any)
1628 ret += sprintf(page + ret, ",any");
1629
1630 if (inv)
1631 ret += sprintf(page + ret, ",inv");
1632
1633 if (cmask)
1634 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1635
1636 ret += sprintf(page + ret, "\n");
1637
1638 return ret;
1639}
1640
dda99116 1641static int __init init_hw_perf_events(void)
b56a3802 1642{
c1d6f42f 1643 struct x86_pmu_quirk *quirk;
72eae04d
RR
1644 int err;
1645
cdd6c482 1646 pr_info("Performance Events: ");
1123e3ad 1647
b56a3802
JSR
1648 switch (boot_cpu_data.x86_vendor) {
1649 case X86_VENDOR_INTEL:
72eae04d 1650 err = intel_pmu_init();
b56a3802 1651 break;
f87ad35d 1652 case X86_VENDOR_AMD:
72eae04d 1653 err = amd_pmu_init();
f87ad35d 1654 break;
4138960a 1655 default:
8a3da6c7 1656 err = -ENOTSUPP;
b56a3802 1657 }
1123e3ad 1658 if (err != 0) {
cdd6c482 1659 pr_cont("no PMU driver, software events only.\n");
004417a6 1660 return 0;
1123e3ad 1661 }
b56a3802 1662
12558038
CG
1663 pmu_check_apic();
1664
33c6d6a7 1665 /* sanity check that the hardware exists or is emulated */
4407204c 1666 if (!check_hw_exists())
004417a6 1667 return 0;
33c6d6a7 1668
1123e3ad 1669 pr_cont("%s PMU driver.\n", x86_pmu.name);
faa28ae0 1670
e97df763
PZ
1671 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1672
c1d6f42f
PZ
1673 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1674 quirk->func();
3c44780b 1675
a1eac7ac
RR
1676 if (!x86_pmu.intel_ctrl)
1677 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
241771ef 1678
cdd6c482 1679 perf_events_lapic_init();
9c48f1c6 1680 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
1123e3ad 1681
63b14649 1682 unconstrained = (struct event_constraint)
948b1bb8 1683 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
9fac2cf3 1684 0, x86_pmu.num_counters, 0, 0);
63b14649 1685
641cc938 1686 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
0c9d42ed 1687
f20093ee
SE
1688 if (x86_pmu.event_attrs)
1689 x86_pmu_events_group.attrs = x86_pmu.event_attrs;
1690
a4747393
JO
1691 if (!x86_pmu.events_sysfs_show)
1692 x86_pmu_events_group.attrs = &empty_attrs;
8300daa2
JO
1693 else
1694 filter_events(x86_pmu_events_group.attrs);
a4747393 1695
1a6461b1
AK
1696 if (x86_pmu.cpu_events) {
1697 struct attribute **tmp;
1698
1699 tmp = merge_attr(x86_pmu_events_group.attrs, x86_pmu.cpu_events);
1700 if (!WARN_ON(!tmp))
1701 x86_pmu_events_group.attrs = tmp;
1702 }
1703
57c0c15b 1704 pr_info("... version: %d\n", x86_pmu.version);
948b1bb8
RR
1705 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1706 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1707 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
57c0c15b 1708 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
948b1bb8 1709 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
d6dc0b4e 1710 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
3f6da390 1711
2e80a82a 1712 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
3f6da390 1713 perf_cpu_notifier(x86_pmu_notifier);
004417a6
PZ
1714
1715 return 0;
241771ef 1716}
004417a6 1717early_initcall(init_hw_perf_events);
621a01ea 1718
cdd6c482 1719static inline void x86_pmu_read(struct perf_event *event)
ee06094f 1720{
cc2ad4ba 1721 x86_perf_event_update(event);
ee06094f
IM
1722}
1723
4d1c52b0
LM
1724/*
1725 * Start group events scheduling transaction
1726 * Set the flag to make pmu::enable() not perform the
1727 * schedulability test, it will be performed at commit time
1728 */
51b0fe39 1729static void x86_pmu_start_txn(struct pmu *pmu)
4d1c52b0 1730{
33696fc0 1731 perf_pmu_disable(pmu);
0a3aee0d
TH
1732 __this_cpu_or(cpu_hw_events.group_flag, PERF_EVENT_TXN);
1733 __this_cpu_write(cpu_hw_events.n_txn, 0);
4d1c52b0
LM
1734}
1735
1736/*
1737 * Stop group events scheduling transaction
1738 * Clear the flag and pmu::enable() will perform the
1739 * schedulability test.
1740 */
51b0fe39 1741static void x86_pmu_cancel_txn(struct pmu *pmu)
4d1c52b0 1742{
0a3aee0d 1743 __this_cpu_and(cpu_hw_events.group_flag, ~PERF_EVENT_TXN);
90151c35 1744 /*
c347a2f1
PZ
1745 * Truncate collected array by the number of events added in this
1746 * transaction. See x86_pmu_add() and x86_pmu_*_txn().
90151c35 1747 */
0a3aee0d
TH
1748 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1749 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
33696fc0 1750 perf_pmu_enable(pmu);
4d1c52b0
LM
1751}
1752
1753/*
1754 * Commit group events scheduling transaction
1755 * Perform the group schedulability test as a whole
1756 * Return 0 if success
c347a2f1
PZ
1757 *
1758 * Does not cancel the transaction on failure; expects the caller to do this.
4d1c52b0 1759 */
51b0fe39 1760static int x86_pmu_commit_txn(struct pmu *pmu)
4d1c52b0 1761{
89cbc767 1762 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
4d1c52b0
LM
1763 int assign[X86_PMC_IDX_MAX];
1764 int n, ret;
1765
1766 n = cpuc->n_events;
1767
1768 if (!x86_pmu_initialized())
1769 return -EAGAIN;
1770
1771 ret = x86_pmu.schedule_events(cpuc, n, assign);
1772 if (ret)
1773 return ret;
1774
1775 /*
1776 * copy new assignment, now we know it is possible
1777 * will be used by hw_perf_enable()
1778 */
1779 memcpy(cpuc->assign, assign, n*sizeof(int));
1780
8d2cacbb 1781 cpuc->group_flag &= ~PERF_EVENT_TXN;
33696fc0 1782 perf_pmu_enable(pmu);
4d1c52b0
LM
1783 return 0;
1784}
cd8a38d3
SE
1785/*
1786 * a fake_cpuc is used to validate event groups. Due to
1787 * the extra reg logic, we need to also allocate a fake
1788 * per_core and per_cpu structure. Otherwise, group events
1789 * using extra reg may conflict without the kernel being
1790 * able to catch this when the last event gets added to
1791 * the group.
1792 */
1793static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1794{
1795 kfree(cpuc->shared_regs);
1796 kfree(cpuc);
1797}
1798
1799static struct cpu_hw_events *allocate_fake_cpuc(void)
1800{
1801 struct cpu_hw_events *cpuc;
1802 int cpu = raw_smp_processor_id();
1803
1804 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1805 if (!cpuc)
1806 return ERR_PTR(-ENOMEM);
1807
1808 /* only needed, if we have extra_regs */
1809 if (x86_pmu.extra_regs) {
1810 cpuc->shared_regs = allocate_shared_regs(cpu);
1811 if (!cpuc->shared_regs)
1812 goto error;
1813 }
b430f7c4 1814 cpuc->is_fake = 1;
cd8a38d3
SE
1815 return cpuc;
1816error:
1817 free_fake_cpuc(cpuc);
1818 return ERR_PTR(-ENOMEM);
1819}
4d1c52b0 1820
ca037701
PZ
1821/*
1822 * validate that we can schedule this event
1823 */
1824static int validate_event(struct perf_event *event)
1825{
1826 struct cpu_hw_events *fake_cpuc;
1827 struct event_constraint *c;
1828 int ret = 0;
1829
cd8a38d3
SE
1830 fake_cpuc = allocate_fake_cpuc();
1831 if (IS_ERR(fake_cpuc))
1832 return PTR_ERR(fake_cpuc);
ca037701 1833
79cba822 1834 c = x86_pmu.get_event_constraints(fake_cpuc, -1, event);
ca037701
PZ
1835
1836 if (!c || !c->weight)
aa2bc1ad 1837 ret = -EINVAL;
ca037701
PZ
1838
1839 if (x86_pmu.put_event_constraints)
1840 x86_pmu.put_event_constraints(fake_cpuc, event);
1841
cd8a38d3 1842 free_fake_cpuc(fake_cpuc);
ca037701
PZ
1843
1844 return ret;
1845}
1846
1da53e02
SE
1847/*
1848 * validate a single event group
1849 *
1850 * validation include:
184f412c
IM
1851 * - check events are compatible which each other
1852 * - events do not compete for the same counter
1853 * - number of events <= number of counters
1da53e02
SE
1854 *
1855 * validation ensures the group can be loaded onto the
1856 * PMU if it was the only group available.
1857 */
fe9081cc
PZ
1858static int validate_group(struct perf_event *event)
1859{
1da53e02 1860 struct perf_event *leader = event->group_leader;
502568d5 1861 struct cpu_hw_events *fake_cpuc;
aa2bc1ad 1862 int ret = -EINVAL, n;
fe9081cc 1863
cd8a38d3
SE
1864 fake_cpuc = allocate_fake_cpuc();
1865 if (IS_ERR(fake_cpuc))
1866 return PTR_ERR(fake_cpuc);
1da53e02
SE
1867 /*
1868 * the event is not yet connected with its
1869 * siblings therefore we must first collect
1870 * existing siblings, then add the new event
1871 * before we can simulate the scheduling
1872 */
502568d5 1873 n = collect_events(fake_cpuc, leader, true);
1da53e02 1874 if (n < 0)
cd8a38d3 1875 goto out;
fe9081cc 1876
502568d5
PZ
1877 fake_cpuc->n_events = n;
1878 n = collect_events(fake_cpuc, event, false);
1da53e02 1879 if (n < 0)
cd8a38d3 1880 goto out;
fe9081cc 1881
502568d5 1882 fake_cpuc->n_events = n;
1da53e02 1883
a072738e 1884 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
502568d5 1885
502568d5 1886out:
cd8a38d3 1887 free_fake_cpuc(fake_cpuc);
502568d5 1888 return ret;
fe9081cc
PZ
1889}
1890
dda99116 1891static int x86_pmu_event_init(struct perf_event *event)
621a01ea 1892{
51b0fe39 1893 struct pmu *tmp;
621a01ea
IM
1894 int err;
1895
b0a873eb
PZ
1896 switch (event->attr.type) {
1897 case PERF_TYPE_RAW:
1898 case PERF_TYPE_HARDWARE:
1899 case PERF_TYPE_HW_CACHE:
1900 break;
1901
1902 default:
1903 return -ENOENT;
1904 }
1905
1906 err = __x86_pmu_event_init(event);
fe9081cc 1907 if (!err) {
8113070d
SE
1908 /*
1909 * we temporarily connect event to its pmu
1910 * such that validate_group() can classify
1911 * it as an x86 event using is_x86_event()
1912 */
1913 tmp = event->pmu;
1914 event->pmu = &pmu;
1915
fe9081cc
PZ
1916 if (event->group_leader != event)
1917 err = validate_group(event);
ca037701
PZ
1918 else
1919 err = validate_event(event);
8113070d
SE
1920
1921 event->pmu = tmp;
fe9081cc 1922 }
a1792cda 1923 if (err) {
cdd6c482
IM
1924 if (event->destroy)
1925 event->destroy(event);
a1792cda 1926 }
621a01ea 1927
7911d3f7
AL
1928 if (ACCESS_ONCE(x86_pmu.attr_rdpmc))
1929 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
1930
b0a873eb 1931 return err;
621a01ea 1932}
d7d59fb3 1933
7911d3f7
AL
1934static void refresh_pce(void *ignored)
1935{
1936 if (current->mm)
1937 load_mm_cr4(current->mm);
1938}
1939
1940static void x86_pmu_event_mapped(struct perf_event *event)
1941{
1942 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
1943 return;
1944
1945 if (atomic_inc_return(&current->mm->context.perf_rdpmc_allowed) == 1)
1946 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
1947}
1948
1949static void x86_pmu_event_unmapped(struct perf_event *event)
1950{
1951 if (!current->mm)
1952 return;
1953
1954 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
1955 return;
1956
1957 if (atomic_dec_and_test(&current->mm->context.perf_rdpmc_allowed))
1958 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
1959}
1960
fe4a3308
PZ
1961static int x86_pmu_event_idx(struct perf_event *event)
1962{
1963 int idx = event->hw.idx;
1964
7911d3f7 1965 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
c7206205
PZ
1966 return 0;
1967
15c7ad51
RR
1968 if (x86_pmu.num_counters_fixed && idx >= INTEL_PMC_IDX_FIXED) {
1969 idx -= INTEL_PMC_IDX_FIXED;
fe4a3308
PZ
1970 idx |= 1 << 30;
1971 }
1972
1973 return idx + 1;
1974}
1975
0c9d42ed
PZ
1976static ssize_t get_attr_rdpmc(struct device *cdev,
1977 struct device_attribute *attr,
1978 char *buf)
1979{
1980 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
1981}
1982
0c9d42ed
PZ
1983static ssize_t set_attr_rdpmc(struct device *cdev,
1984 struct device_attribute *attr,
1985 const char *buf, size_t count)
1986{
e2b297fc
SK
1987 unsigned long val;
1988 ssize_t ret;
1989
1990 ret = kstrtoul(buf, 0, &val);
1991 if (ret)
1992 return ret;
e97df763 1993
a6673429
AL
1994 if (val > 2)
1995 return -EINVAL;
1996
e97df763
PZ
1997 if (x86_pmu.attr_rdpmc_broken)
1998 return -ENOTSUPP;
0c9d42ed 1999
a6673429
AL
2000 if ((val == 2) != (x86_pmu.attr_rdpmc == 2)) {
2001 /*
2002 * Changing into or out of always available, aka
2003 * perf-event-bypassing mode. This path is extremely slow,
2004 * but only root can trigger it, so it's okay.
2005 */
2006 if (val == 2)
2007 static_key_slow_inc(&rdpmc_always_available);
2008 else
2009 static_key_slow_dec(&rdpmc_always_available);
2010 on_each_cpu(refresh_pce, NULL, 1);
2011 }
2012
2013 x86_pmu.attr_rdpmc = val;
2014
0c9d42ed
PZ
2015 return count;
2016}
2017
2018static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
2019
2020static struct attribute *x86_pmu_attrs[] = {
2021 &dev_attr_rdpmc.attr,
2022 NULL,
2023};
2024
2025static struct attribute_group x86_pmu_attr_group = {
2026 .attrs = x86_pmu_attrs,
2027};
2028
2029static const struct attribute_group *x86_pmu_attr_groups[] = {
2030 &x86_pmu_attr_group,
641cc938 2031 &x86_pmu_format_group,
a4747393 2032 &x86_pmu_events_group,
0c9d42ed
PZ
2033 NULL,
2034};
2035
ba532500 2036static void x86_pmu_sched_task(struct perf_event_context *ctx, bool sched_in)
d010b332 2037{
ba532500
YZ
2038 if (x86_pmu.sched_task)
2039 x86_pmu.sched_task(ctx, sched_in);
d010b332
SE
2040}
2041
c93dc84c
PZ
2042void perf_check_microcode(void)
2043{
2044 if (x86_pmu.check_microcode)
2045 x86_pmu.check_microcode();
2046}
2047EXPORT_SYMBOL_GPL(perf_check_microcode);
2048
b0a873eb 2049static struct pmu pmu = {
d010b332
SE
2050 .pmu_enable = x86_pmu_enable,
2051 .pmu_disable = x86_pmu_disable,
a4eaf7f1 2052
c93dc84c 2053 .attr_groups = x86_pmu_attr_groups,
0c9d42ed 2054
c93dc84c 2055 .event_init = x86_pmu_event_init,
a4eaf7f1 2056
7911d3f7
AL
2057 .event_mapped = x86_pmu_event_mapped,
2058 .event_unmapped = x86_pmu_event_unmapped,
2059
d010b332
SE
2060 .add = x86_pmu_add,
2061 .del = x86_pmu_del,
2062 .start = x86_pmu_start,
2063 .stop = x86_pmu_stop,
2064 .read = x86_pmu_read,
a4eaf7f1 2065
c93dc84c
PZ
2066 .start_txn = x86_pmu_start_txn,
2067 .cancel_txn = x86_pmu_cancel_txn,
2068 .commit_txn = x86_pmu_commit_txn,
fe4a3308 2069
c93dc84c 2070 .event_idx = x86_pmu_event_idx,
ba532500 2071 .sched_task = x86_pmu_sched_task,
e18bf526 2072 .task_ctx_size = sizeof(struct x86_perf_task_context),
b0a873eb
PZ
2073};
2074
c1317ec2
AL
2075void arch_perf_update_userpage(struct perf_event *event,
2076 struct perf_event_mmap_page *userpg, u64 now)
e3f3541c 2077{
20d1c86a
PZ
2078 struct cyc2ns_data *data;
2079
fa731587
PZ
2080 userpg->cap_user_time = 0;
2081 userpg->cap_user_time_zero = 0;
7911d3f7
AL
2082 userpg->cap_user_rdpmc =
2083 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
c7206205
PZ
2084 userpg->pmc_width = x86_pmu.cntval_bits;
2085
35af99e6 2086 if (!sched_clock_stable())
e3f3541c
PZ
2087 return;
2088
20d1c86a
PZ
2089 data = cyc2ns_read_begin();
2090
34f43927
PZ
2091 /*
2092 * Internal timekeeping for enabled/running/stopped times
2093 * is always in the local_clock domain.
2094 */
fa731587 2095 userpg->cap_user_time = 1;
20d1c86a
PZ
2096 userpg->time_mult = data->cyc2ns_mul;
2097 userpg->time_shift = data->cyc2ns_shift;
2098 userpg->time_offset = data->cyc2ns_offset - now;
c73deb6a 2099
34f43927
PZ
2100 /*
2101 * cap_user_time_zero doesn't make sense when we're using a different
2102 * time base for the records.
2103 */
2104 if (event->clock == &local_clock) {
2105 userpg->cap_user_time_zero = 1;
2106 userpg->time_zero = data->cyc2ns_offset;
2107 }
20d1c86a
PZ
2108
2109 cyc2ns_read_end(data);
e3f3541c
PZ
2110}
2111
d7d59fb3
PZ
2112/*
2113 * callchain support
2114 */
2115
d7d59fb3
PZ
2116static int backtrace_stack(void *data, char *name)
2117{
038e836e 2118 return 0;
d7d59fb3
PZ
2119}
2120
2121static void backtrace_address(void *data, unsigned long addr, int reliable)
2122{
2123 struct perf_callchain_entry *entry = data;
2124
70791ce9 2125 perf_callchain_store(entry, addr);
d7d59fb3
PZ
2126}
2127
2128static const struct stacktrace_ops backtrace_ops = {
d7d59fb3
PZ
2129 .stack = backtrace_stack,
2130 .address = backtrace_address,
06d65bda 2131 .walk_stack = print_context_stack_bp,
d7d59fb3
PZ
2132};
2133
56962b44
FW
2134void
2135perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
d7d59fb3 2136{
927c7a9e
FW
2137 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2138 /* TODO: We don't support guest os callchain now */
ed805261 2139 return;
927c7a9e
FW
2140 }
2141
70791ce9 2142 perf_callchain_store(entry, regs->ip);
d7d59fb3 2143
e8e999cf 2144 dump_trace(NULL, regs, NULL, 0, &backtrace_ops, entry);
d7d59fb3
PZ
2145}
2146
bc6ca7b3
AS
2147static inline int
2148valid_user_frame(const void __user *fp, unsigned long size)
2149{
2150 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2151}
2152
d07bdfd3
PZ
2153static unsigned long get_segment_base(unsigned int segment)
2154{
2155 struct desc_struct *desc;
2156 int idx = segment >> 3;
2157
2158 if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
2159 if (idx > LDT_ENTRIES)
2160 return 0;
2161
2162 if (idx > current->active_mm->context.size)
2163 return 0;
2164
2165 desc = current->active_mm->context.ldt;
2166 } else {
2167 if (idx > GDT_ENTRIES)
2168 return 0;
2169
89cbc767 2170 desc = raw_cpu_ptr(gdt_page.gdt);
d07bdfd3
PZ
2171 }
2172
2173 return get_desc_base(desc + idx);
2174}
2175
257ef9d2 2176#ifdef CONFIG_COMPAT
d1a797f3
PA
2177
2178#include <asm/compat.h>
2179
257ef9d2
TE
2180static inline int
2181perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
74193ef0 2182{
257ef9d2 2183 /* 32-bit process in 64-bit kernel. */
d07bdfd3 2184 unsigned long ss_base, cs_base;
257ef9d2
TE
2185 struct stack_frame_ia32 frame;
2186 const void __user *fp;
74193ef0 2187
257ef9d2
TE
2188 if (!test_thread_flag(TIF_IA32))
2189 return 0;
2190
d07bdfd3
PZ
2191 cs_base = get_segment_base(regs->cs);
2192 ss_base = get_segment_base(regs->ss);
2193
2194 fp = compat_ptr(ss_base + regs->bp);
257ef9d2
TE
2195 while (entry->nr < PERF_MAX_STACK_DEPTH) {
2196 unsigned long bytes;
2197 frame.next_frame = 0;
2198 frame.return_address = 0;
2199
2200 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
0a196848 2201 if (bytes != 0)
257ef9d2 2202 break;
74193ef0 2203
bc6ca7b3
AS
2204 if (!valid_user_frame(fp, sizeof(frame)))
2205 break;
2206
d07bdfd3
PZ
2207 perf_callchain_store(entry, cs_base + frame.return_address);
2208 fp = compat_ptr(ss_base + frame.next_frame);
257ef9d2
TE
2209 }
2210 return 1;
d7d59fb3 2211}
257ef9d2
TE
2212#else
2213static inline int
2214perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
2215{
2216 return 0;
2217}
2218#endif
d7d59fb3 2219
56962b44
FW
2220void
2221perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
d7d59fb3
PZ
2222{
2223 struct stack_frame frame;
2224 const void __user *fp;
2225
927c7a9e
FW
2226 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2227 /* TODO: We don't support guest os callchain now */
ed805261 2228 return;
927c7a9e 2229 }
5a6cec3a 2230
d07bdfd3
PZ
2231 /*
2232 * We don't know what to do with VM86 stacks.. ignore them for now.
2233 */
2234 if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2235 return;
2236
74193ef0 2237 fp = (void __user *)regs->bp;
d7d59fb3 2238
70791ce9 2239 perf_callchain_store(entry, regs->ip);
d7d59fb3 2240
20afc60f
AV
2241 if (!current->mm)
2242 return;
2243
257ef9d2
TE
2244 if (perf_callchain_user32(regs, entry))
2245 return;
2246
f9188e02 2247 while (entry->nr < PERF_MAX_STACK_DEPTH) {
257ef9d2 2248 unsigned long bytes;
038e836e 2249 frame.next_frame = NULL;
d7d59fb3
PZ
2250 frame.return_address = 0;
2251
257ef9d2 2252 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
0a196848 2253 if (bytes != 0)
d7d59fb3
PZ
2254 break;
2255
bc6ca7b3
AS
2256 if (!valid_user_frame(fp, sizeof(frame)))
2257 break;
2258
70791ce9 2259 perf_callchain_store(entry, frame.return_address);
038e836e 2260 fp = frame.next_frame;
d7d59fb3
PZ
2261 }
2262}
2263
d07bdfd3
PZ
2264/*
2265 * Deal with code segment offsets for the various execution modes:
2266 *
2267 * VM86 - the good olde 16 bit days, where the linear address is
2268 * 20 bits and we use regs->ip + 0x10 * regs->cs.
2269 *
2270 * IA32 - Where we need to look at GDT/LDT segment descriptor tables
2271 * to figure out what the 32bit base address is.
2272 *
2273 * X32 - has TIF_X32 set, but is running in x86_64
2274 *
2275 * X86_64 - CS,DS,SS,ES are all zero based.
2276 */
2277static unsigned long code_segment_base(struct pt_regs *regs)
39447b38 2278{
383f3af3
AL
2279 /*
2280 * For IA32 we look at the GDT/LDT segment base to convert the
2281 * effective IP to a linear address.
2282 */
2283
2284#ifdef CONFIG_X86_32
d07bdfd3
PZ
2285 /*
2286 * If we are in VM86 mode, add the segment offset to convert to a
2287 * linear address.
2288 */
2289 if (regs->flags & X86_VM_MASK)
2290 return 0x10 * regs->cs;
2291
55474c48 2292 if (user_mode(regs) && regs->cs != __USER_CS)
d07bdfd3
PZ
2293 return get_segment_base(regs->cs);
2294#else
c56716af
AL
2295 if (user_mode(regs) && !user_64bit_mode(regs) &&
2296 regs->cs != __USER32_CS)
2297 return get_segment_base(regs->cs);
d07bdfd3
PZ
2298#endif
2299 return 0;
2300}
dcf46b94 2301
d07bdfd3
PZ
2302unsigned long perf_instruction_pointer(struct pt_regs *regs)
2303{
39447b38 2304 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
d07bdfd3 2305 return perf_guest_cbs->get_guest_ip();
dcf46b94 2306
d07bdfd3 2307 return regs->ip + code_segment_base(regs);
39447b38
ZY
2308}
2309
2310unsigned long perf_misc_flags(struct pt_regs *regs)
2311{
2312 int misc = 0;
dcf46b94 2313
39447b38 2314 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
dcf46b94
ZY
2315 if (perf_guest_cbs->is_user_mode())
2316 misc |= PERF_RECORD_MISC_GUEST_USER;
2317 else
2318 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2319 } else {
d07bdfd3 2320 if (user_mode(regs))
dcf46b94
ZY
2321 misc |= PERF_RECORD_MISC_USER;
2322 else
2323 misc |= PERF_RECORD_MISC_KERNEL;
2324 }
2325
39447b38 2326 if (regs->flags & PERF_EFLAGS_EXACT)
ab608344 2327 misc |= PERF_RECORD_MISC_EXACT_IP;
39447b38
ZY
2328
2329 return misc;
2330}
b3d9468a
GN
2331
2332void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2333{
2334 cap->version = x86_pmu.version;
2335 cap->num_counters_gp = x86_pmu.num_counters;
2336 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2337 cap->bit_width_gp = x86_pmu.cntval_bits;
2338 cap->bit_width_fixed = x86_pmu.cntval_bits;
2339 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
2340 cap->events_mask_len = x86_pmu.events_mask_len;
2341}
2342EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);
This page took 0.526287 seconds and 5 git commands to generate.