perf/x86: Fix n_metric for cancelled txn
[platform/kernel/linux-rpi.git] / arch / x86 / events / core.c
1 /*
2  * Performance events x86 architecture code
3  *
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
9  *  Copyright (C) 2009 Intel Corporation, <markus.t.metzger@intel.com>
10  *  Copyright (C) 2009 Google, Inc., Stephane Eranian
11  *
12  *  For licencing details see kernel-base/COPYING
13  */
14
15 #include <linux/perf_event.h>
16 #include <linux/capability.h>
17 #include <linux/notifier.h>
18 #include <linux/hardirq.h>
19 #include <linux/kprobes.h>
20 #include <linux/export.h>
21 #include <linux/init.h>
22 #include <linux/kdebug.h>
23 #include <linux/sched/mm.h>
24 #include <linux/sched/clock.h>
25 #include <linux/uaccess.h>
26 #include <linux/slab.h>
27 #include <linux/cpu.h>
28 #include <linux/bitops.h>
29 #include <linux/device.h>
30 #include <linux/nospec.h>
31
32 #include <asm/apic.h>
33 #include <asm/stacktrace.h>
34 #include <asm/nmi.h>
35 #include <asm/smp.h>
36 #include <asm/alternative.h>
37 #include <asm/mmu_context.h>
38 #include <asm/tlbflush.h>
39 #include <asm/timer.h>
40 #include <asm/desc.h>
41 #include <asm/ldt.h>
42 #include <asm/unwind.h>
43
44 #include "perf_event.h"
45
46 struct x86_pmu x86_pmu __read_mostly;
47
48 DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
49         .enabled = 1,
50 };
51
52 DEFINE_STATIC_KEY_FALSE(rdpmc_never_available_key);
53 DEFINE_STATIC_KEY_FALSE(rdpmc_always_available_key);
54
55 u64 __read_mostly hw_cache_event_ids
56                                 [PERF_COUNT_HW_CACHE_MAX]
57                                 [PERF_COUNT_HW_CACHE_OP_MAX]
58                                 [PERF_COUNT_HW_CACHE_RESULT_MAX];
59 u64 __read_mostly hw_cache_extra_regs
60                                 [PERF_COUNT_HW_CACHE_MAX]
61                                 [PERF_COUNT_HW_CACHE_OP_MAX]
62                                 [PERF_COUNT_HW_CACHE_RESULT_MAX];
63
64 /*
65  * Propagate event elapsed time into the generic event.
66  * Can only be executed on the CPU where the event is active.
67  * Returns the delta events processed.
68  */
69 u64 x86_perf_event_update(struct perf_event *event)
70 {
71         struct hw_perf_event *hwc = &event->hw;
72         int shift = 64 - x86_pmu.cntval_bits;
73         u64 prev_raw_count, new_raw_count;
74         u64 delta;
75
76         if (unlikely(!hwc->event_base))
77                 return 0;
78
79         if (unlikely(is_topdown_count(event)) && x86_pmu.update_topdown_event)
80                 return x86_pmu.update_topdown_event(event);
81
82         /*
83          * Careful: an NMI might modify the previous event value.
84          *
85          * Our tactic to handle this is to first atomically read and
86          * exchange a new raw count - then add that new-prev delta
87          * count to the generic event atomically:
88          */
89 again:
90         prev_raw_count = local64_read(&hwc->prev_count);
91         rdpmcl(hwc->event_base_rdpmc, new_raw_count);
92
93         if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
94                                         new_raw_count) != prev_raw_count)
95                 goto again;
96
97         /*
98          * Now we have the new raw value and have updated the prev
99          * timestamp already. We can now calculate the elapsed delta
100          * (event-)time and add that to the generic event.
101          *
102          * Careful, not all hw sign-extends above the physical width
103          * of the count.
104          */
105         delta = (new_raw_count << shift) - (prev_raw_count << shift);
106         delta >>= shift;
107
108         local64_add(delta, &event->count);
109         local64_sub(delta, &hwc->period_left);
110
111         return new_raw_count;
112 }
113
114 /*
115  * Find and validate any extra registers to set up.
116  */
117 static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
118 {
119         struct hw_perf_event_extra *reg;
120         struct extra_reg *er;
121
122         reg = &event->hw.extra_reg;
123
124         if (!x86_pmu.extra_regs)
125                 return 0;
126
127         for (er = x86_pmu.extra_regs; er->msr; er++) {
128                 if (er->event != (config & er->config_mask))
129                         continue;
130                 if (event->attr.config1 & ~er->valid_mask)
131                         return -EINVAL;
132                 /* Check if the extra msrs can be safely accessed*/
133                 if (!er->extra_msr_access)
134                         return -ENXIO;
135
136                 reg->idx = er->idx;
137                 reg->config = event->attr.config1;
138                 reg->reg = er->msr;
139                 break;
140         }
141         return 0;
142 }
143
144 static atomic_t active_events;
145 static atomic_t pmc_refcount;
146 static DEFINE_MUTEX(pmc_reserve_mutex);
147
148 #ifdef CONFIG_X86_LOCAL_APIC
149
150 static bool reserve_pmc_hardware(void)
151 {
152         int i;
153
154         for (i = 0; i < x86_pmu.num_counters; i++) {
155                 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
156                         goto perfctr_fail;
157         }
158
159         for (i = 0; i < x86_pmu.num_counters; i++) {
160                 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
161                         goto eventsel_fail;
162         }
163
164         return true;
165
166 eventsel_fail:
167         for (i--; i >= 0; i--)
168                 release_evntsel_nmi(x86_pmu_config_addr(i));
169
170         i = x86_pmu.num_counters;
171
172 perfctr_fail:
173         for (i--; i >= 0; i--)
174                 release_perfctr_nmi(x86_pmu_event_addr(i));
175
176         return false;
177 }
178
179 static void release_pmc_hardware(void)
180 {
181         int i;
182
183         for (i = 0; i < x86_pmu.num_counters; i++) {
184                 release_perfctr_nmi(x86_pmu_event_addr(i));
185                 release_evntsel_nmi(x86_pmu_config_addr(i));
186         }
187 }
188
189 #else
190
191 static bool reserve_pmc_hardware(void) { return true; }
192 static void release_pmc_hardware(void) {}
193
194 #endif
195
196 static bool check_hw_exists(void)
197 {
198         u64 val, val_fail = -1, val_new= ~0;
199         int i, reg, reg_fail = -1, ret = 0;
200         int bios_fail = 0;
201         int reg_safe = -1;
202
203         /*
204          * Check to see if the BIOS enabled any of the counters, if so
205          * complain and bail.
206          */
207         for (i = 0; i < x86_pmu.num_counters; i++) {
208                 reg = x86_pmu_config_addr(i);
209                 ret = rdmsrl_safe(reg, &val);
210                 if (ret)
211                         goto msr_fail;
212                 if (val & ARCH_PERFMON_EVENTSEL_ENABLE) {
213                         bios_fail = 1;
214                         val_fail = val;
215                         reg_fail = reg;
216                 } else {
217                         reg_safe = i;
218                 }
219         }
220
221         if (x86_pmu.num_counters_fixed) {
222                 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
223                 ret = rdmsrl_safe(reg, &val);
224                 if (ret)
225                         goto msr_fail;
226                 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
227                         if (val & (0x03 << i*4)) {
228                                 bios_fail = 1;
229                                 val_fail = val;
230                                 reg_fail = reg;
231                         }
232                 }
233         }
234
235         /*
236          * If all the counters are enabled, the below test will always
237          * fail.  The tools will also become useless in this scenario.
238          * Just fail and disable the hardware counters.
239          */
240
241         if (reg_safe == -1) {
242                 reg = reg_safe;
243                 goto msr_fail;
244         }
245
246         /*
247          * Read the current value, change it and read it back to see if it
248          * matches, this is needed to detect certain hardware emulators
249          * (qemu/kvm) that don't trap on the MSR access and always return 0s.
250          */
251         reg = x86_pmu_event_addr(reg_safe);
252         if (rdmsrl_safe(reg, &val))
253                 goto msr_fail;
254         val ^= 0xffffUL;
255         ret = wrmsrl_safe(reg, val);
256         ret |= rdmsrl_safe(reg, &val_new);
257         if (ret || val != val_new)
258                 goto msr_fail;
259
260         /*
261          * We still allow the PMU driver to operate:
262          */
263         if (bios_fail) {
264                 pr_cont("Broken BIOS detected, complain to your hardware vendor.\n");
265                 pr_err(FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n",
266                               reg_fail, val_fail);
267         }
268
269         return true;
270
271 msr_fail:
272         if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
273                 pr_cont("PMU not available due to virtualization, using software events only.\n");
274         } else {
275                 pr_cont("Broken PMU hardware detected, using software events only.\n");
276                 pr_err("Failed to access perfctr msr (MSR %x is %Lx)\n",
277                        reg, val_new);
278         }
279
280         return false;
281 }
282
283 static void hw_perf_event_destroy(struct perf_event *event)
284 {
285         x86_release_hardware();
286         atomic_dec(&active_events);
287 }
288
289 void hw_perf_lbr_event_destroy(struct perf_event *event)
290 {
291         hw_perf_event_destroy(event);
292
293         /* undo the lbr/bts event accounting */
294         x86_del_exclusive(x86_lbr_exclusive_lbr);
295 }
296
297 static inline int x86_pmu_initialized(void)
298 {
299         return x86_pmu.handle_irq != NULL;
300 }
301
302 static inline int
303 set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
304 {
305         struct perf_event_attr *attr = &event->attr;
306         unsigned int cache_type, cache_op, cache_result;
307         u64 config, val;
308
309         config = attr->config;
310
311         cache_type = (config >> 0) & 0xff;
312         if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
313                 return -EINVAL;
314         cache_type = array_index_nospec(cache_type, PERF_COUNT_HW_CACHE_MAX);
315
316         cache_op = (config >>  8) & 0xff;
317         if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
318                 return -EINVAL;
319         cache_op = array_index_nospec(cache_op, PERF_COUNT_HW_CACHE_OP_MAX);
320
321         cache_result = (config >> 16) & 0xff;
322         if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
323                 return -EINVAL;
324         cache_result = array_index_nospec(cache_result, PERF_COUNT_HW_CACHE_RESULT_MAX);
325
326         val = hw_cache_event_ids[cache_type][cache_op][cache_result];
327
328         if (val == 0)
329                 return -ENOENT;
330
331         if (val == -1)
332                 return -EINVAL;
333
334         hwc->config |= val;
335         attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
336         return x86_pmu_extra_regs(val, event);
337 }
338
339 int x86_reserve_hardware(void)
340 {
341         int err = 0;
342
343         if (!atomic_inc_not_zero(&pmc_refcount)) {
344                 mutex_lock(&pmc_reserve_mutex);
345                 if (atomic_read(&pmc_refcount) == 0) {
346                         if (!reserve_pmc_hardware())
347                                 err = -EBUSY;
348                         else
349                                 reserve_ds_buffers();
350                 }
351                 if (!err)
352                         atomic_inc(&pmc_refcount);
353                 mutex_unlock(&pmc_reserve_mutex);
354         }
355
356         return err;
357 }
358
359 void x86_release_hardware(void)
360 {
361         if (atomic_dec_and_mutex_lock(&pmc_refcount, &pmc_reserve_mutex)) {
362                 release_pmc_hardware();
363                 release_ds_buffers();
364                 release_lbr_buffers();
365                 mutex_unlock(&pmc_reserve_mutex);
366         }
367 }
368
369 /*
370  * Check if we can create event of a certain type (that no conflicting events
371  * are present).
372  */
373 int x86_add_exclusive(unsigned int what)
374 {
375         int i;
376
377         /*
378          * When lbr_pt_coexist we allow PT to coexist with either LBR or BTS.
379          * LBR and BTS are still mutually exclusive.
380          */
381         if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt)
382                 goto out;
383
384         if (!atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what])) {
385                 mutex_lock(&pmc_reserve_mutex);
386                 for (i = 0; i < ARRAY_SIZE(x86_pmu.lbr_exclusive); i++) {
387                         if (i != what && atomic_read(&x86_pmu.lbr_exclusive[i]))
388                                 goto fail_unlock;
389                 }
390                 atomic_inc(&x86_pmu.lbr_exclusive[what]);
391                 mutex_unlock(&pmc_reserve_mutex);
392         }
393
394 out:
395         atomic_inc(&active_events);
396         return 0;
397
398 fail_unlock:
399         mutex_unlock(&pmc_reserve_mutex);
400         return -EBUSY;
401 }
402
403 void x86_del_exclusive(unsigned int what)
404 {
405         atomic_dec(&active_events);
406
407         /*
408          * See the comment in x86_add_exclusive().
409          */
410         if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt)
411                 return;
412
413         atomic_dec(&x86_pmu.lbr_exclusive[what]);
414 }
415
416 int x86_setup_perfctr(struct perf_event *event)
417 {
418         struct perf_event_attr *attr = &event->attr;
419         struct hw_perf_event *hwc = &event->hw;
420         u64 config;
421
422         if (!is_sampling_event(event)) {
423                 hwc->sample_period = x86_pmu.max_period;
424                 hwc->last_period = hwc->sample_period;
425                 local64_set(&hwc->period_left, hwc->sample_period);
426         }
427
428         if (attr->type == PERF_TYPE_RAW)
429                 return x86_pmu_extra_regs(event->attr.config, event);
430
431         if (attr->type == PERF_TYPE_HW_CACHE)
432                 return set_ext_hw_attr(hwc, event);
433
434         if (attr->config >= x86_pmu.max_events)
435                 return -EINVAL;
436
437         attr->config = array_index_nospec((unsigned long)attr->config, x86_pmu.max_events);
438
439         /*
440          * The generic map:
441          */
442         config = x86_pmu.event_map(attr->config);
443
444         if (config == 0)
445                 return -ENOENT;
446
447         if (config == -1LL)
448                 return -EINVAL;
449
450         hwc->config |= config;
451
452         return 0;
453 }
454
455 /*
456  * check that branch_sample_type is compatible with
457  * settings needed for precise_ip > 1 which implies
458  * using the LBR to capture ALL taken branches at the
459  * priv levels of the measurement
460  */
461 static inline int precise_br_compat(struct perf_event *event)
462 {
463         u64 m = event->attr.branch_sample_type;
464         u64 b = 0;
465
466         /* must capture all branches */
467         if (!(m & PERF_SAMPLE_BRANCH_ANY))
468                 return 0;
469
470         m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
471
472         if (!event->attr.exclude_user)
473                 b |= PERF_SAMPLE_BRANCH_USER;
474
475         if (!event->attr.exclude_kernel)
476                 b |= PERF_SAMPLE_BRANCH_KERNEL;
477
478         /*
479          * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
480          */
481
482         return m == b;
483 }
484
485 int x86_pmu_max_precise(void)
486 {
487         int precise = 0;
488
489         /* Support for constant skid */
490         if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
491                 precise++;
492
493                 /* Support for IP fixup */
494                 if (x86_pmu.lbr_nr || x86_pmu.intel_cap.pebs_format >= 2)
495                         precise++;
496
497                 if (x86_pmu.pebs_prec_dist)
498                         precise++;
499         }
500         return precise;
501 }
502
503 int x86_pmu_hw_config(struct perf_event *event)
504 {
505         if (event->attr.precise_ip) {
506                 int precise = x86_pmu_max_precise();
507
508                 if (event->attr.precise_ip > precise)
509                         return -EOPNOTSUPP;
510
511                 /* There's no sense in having PEBS for non sampling events: */
512                 if (!is_sampling_event(event))
513                         return -EINVAL;
514         }
515         /*
516          * check that PEBS LBR correction does not conflict with
517          * whatever the user is asking with attr->branch_sample_type
518          */
519         if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format < 2) {
520                 u64 *br_type = &event->attr.branch_sample_type;
521
522                 if (has_branch_stack(event)) {
523                         if (!precise_br_compat(event))
524                                 return -EOPNOTSUPP;
525
526                         /* branch_sample_type is compatible */
527
528                 } else {
529                         /*
530                          * user did not specify  branch_sample_type
531                          *
532                          * For PEBS fixups, we capture all
533                          * the branches at the priv level of the
534                          * event.
535                          */
536                         *br_type = PERF_SAMPLE_BRANCH_ANY;
537
538                         if (!event->attr.exclude_user)
539                                 *br_type |= PERF_SAMPLE_BRANCH_USER;
540
541                         if (!event->attr.exclude_kernel)
542                                 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
543                 }
544         }
545
546         if (event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK)
547                 event->attach_state |= PERF_ATTACH_TASK_DATA;
548
549         /*
550          * Generate PMC IRQs:
551          * (keep 'enabled' bit clear for now)
552          */
553         event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
554
555         /*
556          * Count user and OS events unless requested not to
557          */
558         if (!event->attr.exclude_user)
559                 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
560         if (!event->attr.exclude_kernel)
561                 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
562
563         if (event->attr.type == PERF_TYPE_RAW)
564                 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
565
566         if (event->attr.sample_period && x86_pmu.limit_period) {
567                 if (x86_pmu.limit_period(event, event->attr.sample_period) >
568                                 event->attr.sample_period)
569                         return -EINVAL;
570         }
571
572         /* sample_regs_user never support XMM registers */
573         if (unlikely(event->attr.sample_regs_user & PERF_REG_EXTENDED_MASK))
574                 return -EINVAL;
575         /*
576          * Besides the general purpose registers, XMM registers may
577          * be collected in PEBS on some platforms, e.g. Icelake
578          */
579         if (unlikely(event->attr.sample_regs_intr & PERF_REG_EXTENDED_MASK)) {
580                 if (!(event->pmu->capabilities & PERF_PMU_CAP_EXTENDED_REGS))
581                         return -EINVAL;
582
583                 if (!event->attr.precise_ip)
584                         return -EINVAL;
585         }
586
587         return x86_setup_perfctr(event);
588 }
589
590 /*
591  * Setup the hardware configuration for a given attr_type
592  */
593 static int __x86_pmu_event_init(struct perf_event *event)
594 {
595         int err;
596
597         if (!x86_pmu_initialized())
598                 return -ENODEV;
599
600         err = x86_reserve_hardware();
601         if (err)
602                 return err;
603
604         atomic_inc(&active_events);
605         event->destroy = hw_perf_event_destroy;
606
607         event->hw.idx = -1;
608         event->hw.last_cpu = -1;
609         event->hw.last_tag = ~0ULL;
610
611         /* mark unused */
612         event->hw.extra_reg.idx = EXTRA_REG_NONE;
613         event->hw.branch_reg.idx = EXTRA_REG_NONE;
614
615         return x86_pmu.hw_config(event);
616 }
617
618 void x86_pmu_disable_all(void)
619 {
620         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
621         int idx;
622
623         for (idx = 0; idx < x86_pmu.num_counters; idx++) {
624                 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
625                 u64 val;
626
627                 if (!test_bit(idx, cpuc->active_mask))
628                         continue;
629                 rdmsrl(x86_pmu_config_addr(idx), val);
630                 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
631                         continue;
632                 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
633                 wrmsrl(x86_pmu_config_addr(idx), val);
634                 if (is_counter_pair(hwc))
635                         wrmsrl(x86_pmu_config_addr(idx + 1), 0);
636         }
637 }
638
639 /*
640  * There may be PMI landing after enabled=0. The PMI hitting could be before or
641  * after disable_all.
642  *
643  * If PMI hits before disable_all, the PMU will be disabled in the NMI handler.
644  * It will not be re-enabled in the NMI handler again, because enabled=0. After
645  * handling the NMI, disable_all will be called, which will not change the
646  * state either. If PMI hits after disable_all, the PMU is already disabled
647  * before entering NMI handler. The NMI handler will not change the state
648  * either.
649  *
650  * So either situation is harmless.
651  */
652 static void x86_pmu_disable(struct pmu *pmu)
653 {
654         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
655
656         if (!x86_pmu_initialized())
657                 return;
658
659         if (!cpuc->enabled)
660                 return;
661
662         cpuc->n_added = 0;
663         cpuc->enabled = 0;
664         barrier();
665
666         x86_pmu.disable_all();
667 }
668
669 void x86_pmu_enable_all(int added)
670 {
671         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
672         int idx;
673
674         for (idx = 0; idx < x86_pmu.num_counters; idx++) {
675                 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
676
677                 if (!test_bit(idx, cpuc->active_mask))
678                         continue;
679
680                 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
681         }
682 }
683
684 static struct pmu pmu;
685
686 static inline int is_x86_event(struct perf_event *event)
687 {
688         return event->pmu == &pmu;
689 }
690
691 struct pmu *x86_get_pmu(void)
692 {
693         return &pmu;
694 }
695 /*
696  * Event scheduler state:
697  *
698  * Assign events iterating over all events and counters, beginning
699  * with events with least weights first. Keep the current iterator
700  * state in struct sched_state.
701  */
702 struct sched_state {
703         int     weight;
704         int     event;          /* event index */
705         int     counter;        /* counter index */
706         int     unassigned;     /* number of events to be assigned left */
707         int     nr_gp;          /* number of GP counters used */
708         u64     used;
709 };
710
711 /* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
712 #define SCHED_STATES_MAX        2
713
714 struct perf_sched {
715         int                     max_weight;
716         int                     max_events;
717         int                     max_gp;
718         int                     saved_states;
719         struct event_constraint **constraints;
720         struct sched_state      state;
721         struct sched_state      saved[SCHED_STATES_MAX];
722 };
723
724 /*
725  * Initialize interator that runs through all events and counters.
726  */
727 static void perf_sched_init(struct perf_sched *sched, struct event_constraint **constraints,
728                             int num, int wmin, int wmax, int gpmax)
729 {
730         int idx;
731
732         memset(sched, 0, sizeof(*sched));
733         sched->max_events       = num;
734         sched->max_weight       = wmax;
735         sched->max_gp           = gpmax;
736         sched->constraints      = constraints;
737
738         for (idx = 0; idx < num; idx++) {
739                 if (constraints[idx]->weight == wmin)
740                         break;
741         }
742
743         sched->state.event      = idx;          /* start with min weight */
744         sched->state.weight     = wmin;
745         sched->state.unassigned = num;
746 }
747
748 static void perf_sched_save_state(struct perf_sched *sched)
749 {
750         if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
751                 return;
752
753         sched->saved[sched->saved_states] = sched->state;
754         sched->saved_states++;
755 }
756
757 static bool perf_sched_restore_state(struct perf_sched *sched)
758 {
759         if (!sched->saved_states)
760                 return false;
761
762         sched->saved_states--;
763         sched->state = sched->saved[sched->saved_states];
764
765         /* this assignment didn't work out */
766         /* XXX broken vs EVENT_PAIR */
767         sched->state.used &= ~BIT_ULL(sched->state.counter);
768
769         /* try the next one */
770         sched->state.counter++;
771
772         return true;
773 }
774
775 /*
776  * Select a counter for the current event to schedule. Return true on
777  * success.
778  */
779 static bool __perf_sched_find_counter(struct perf_sched *sched)
780 {
781         struct event_constraint *c;
782         int idx;
783
784         if (!sched->state.unassigned)
785                 return false;
786
787         if (sched->state.event >= sched->max_events)
788                 return false;
789
790         c = sched->constraints[sched->state.event];
791         /* Prefer fixed purpose counters */
792         if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
793                 idx = INTEL_PMC_IDX_FIXED;
794                 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
795                         u64 mask = BIT_ULL(idx);
796
797                         if (sched->state.used & mask)
798                                 continue;
799
800                         sched->state.used |= mask;
801                         goto done;
802                 }
803         }
804
805         /* Grab the first unused counter starting with idx */
806         idx = sched->state.counter;
807         for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
808                 u64 mask = BIT_ULL(idx);
809
810                 if (c->flags & PERF_X86_EVENT_PAIR)
811                         mask |= mask << 1;
812
813                 if (sched->state.used & mask)
814                         continue;
815
816                 if (sched->state.nr_gp++ >= sched->max_gp)
817                         return false;
818
819                 sched->state.used |= mask;
820                 goto done;
821         }
822
823         return false;
824
825 done:
826         sched->state.counter = idx;
827
828         if (c->overlap)
829                 perf_sched_save_state(sched);
830
831         return true;
832 }
833
834 static bool perf_sched_find_counter(struct perf_sched *sched)
835 {
836         while (!__perf_sched_find_counter(sched)) {
837                 if (!perf_sched_restore_state(sched))
838                         return false;
839         }
840
841         return true;
842 }
843
844 /*
845  * Go through all unassigned events and find the next one to schedule.
846  * Take events with the least weight first. Return true on success.
847  */
848 static bool perf_sched_next_event(struct perf_sched *sched)
849 {
850         struct event_constraint *c;
851
852         if (!sched->state.unassigned || !--sched->state.unassigned)
853                 return false;
854
855         do {
856                 /* next event */
857                 sched->state.event++;
858                 if (sched->state.event >= sched->max_events) {
859                         /* next weight */
860                         sched->state.event = 0;
861                         sched->state.weight++;
862                         if (sched->state.weight > sched->max_weight)
863                                 return false;
864                 }
865                 c = sched->constraints[sched->state.event];
866         } while (c->weight != sched->state.weight);
867
868         sched->state.counter = 0;       /* start with first counter */
869
870         return true;
871 }
872
873 /*
874  * Assign a counter for each event.
875  */
876 int perf_assign_events(struct event_constraint **constraints, int n,
877                         int wmin, int wmax, int gpmax, int *assign)
878 {
879         struct perf_sched sched;
880
881         perf_sched_init(&sched, constraints, n, wmin, wmax, gpmax);
882
883         do {
884                 if (!perf_sched_find_counter(&sched))
885                         break;  /* failed */
886                 if (assign)
887                         assign[sched.state.event] = sched.state.counter;
888         } while (perf_sched_next_event(&sched));
889
890         return sched.state.unassigned;
891 }
892 EXPORT_SYMBOL_GPL(perf_assign_events);
893
894 int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
895 {
896         struct event_constraint *c;
897         struct perf_event *e;
898         int n0, i, wmin, wmax, unsched = 0;
899         struct hw_perf_event *hwc;
900         u64 used_mask = 0;
901
902         /*
903          * Compute the number of events already present; see x86_pmu_add(),
904          * validate_group() and x86_pmu_commit_txn(). For the former two
905          * cpuc->n_events hasn't been updated yet, while for the latter
906          * cpuc->n_txn contains the number of events added in the current
907          * transaction.
908          */
909         n0 = cpuc->n_events;
910         if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
911                 n0 -= cpuc->n_txn;
912
913         if (x86_pmu.start_scheduling)
914                 x86_pmu.start_scheduling(cpuc);
915
916         for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
917                 c = cpuc->event_constraint[i];
918
919                 /*
920                  * Previously scheduled events should have a cached constraint,
921                  * while new events should not have one.
922                  */
923                 WARN_ON_ONCE((c && i >= n0) || (!c && i < n0));
924
925                 /*
926                  * Request constraints for new events; or for those events that
927                  * have a dynamic constraint -- for those the constraint can
928                  * change due to external factors (sibling state, allow_tfa).
929                  */
930                 if (!c || (c->flags & PERF_X86_EVENT_DYNAMIC)) {
931                         c = x86_pmu.get_event_constraints(cpuc, i, cpuc->event_list[i]);
932                         cpuc->event_constraint[i] = c;
933                 }
934
935                 wmin = min(wmin, c->weight);
936                 wmax = max(wmax, c->weight);
937         }
938
939         /*
940          * fastpath, try to reuse previous register
941          */
942         for (i = 0; i < n; i++) {
943                 u64 mask;
944
945                 hwc = &cpuc->event_list[i]->hw;
946                 c = cpuc->event_constraint[i];
947
948                 /* never assigned */
949                 if (hwc->idx == -1)
950                         break;
951
952                 /* constraint still honored */
953                 if (!test_bit(hwc->idx, c->idxmsk))
954                         break;
955
956                 mask = BIT_ULL(hwc->idx);
957                 if (is_counter_pair(hwc))
958                         mask |= mask << 1;
959
960                 /* not already used */
961                 if (used_mask & mask)
962                         break;
963
964                 used_mask |= mask;
965
966                 if (assign)
967                         assign[i] = hwc->idx;
968         }
969
970         /* slow path */
971         if (i != n) {
972                 int gpmax = x86_pmu.num_counters;
973
974                 /*
975                  * Do not allow scheduling of more than half the available
976                  * generic counters.
977                  *
978                  * This helps avoid counter starvation of sibling thread by
979                  * ensuring at most half the counters cannot be in exclusive
980                  * mode. There is no designated counters for the limits. Any
981                  * N/2 counters can be used. This helps with events with
982                  * specific counter constraints.
983                  */
984                 if (is_ht_workaround_enabled() && !cpuc->is_fake &&
985                     READ_ONCE(cpuc->excl_cntrs->exclusive_present))
986                         gpmax /= 2;
987
988                 /*
989                  * Reduce the amount of available counters to allow fitting
990                  * the extra Merge events needed by large increment events.
991                  */
992                 if (x86_pmu.flags & PMU_FL_PAIR) {
993                         gpmax = x86_pmu.num_counters - cpuc->n_pair;
994                         WARN_ON(gpmax <= 0);
995                 }
996
997                 unsched = perf_assign_events(cpuc->event_constraint, n, wmin,
998                                              wmax, gpmax, assign);
999         }
1000
1001         /*
1002          * In case of success (unsched = 0), mark events as committed,
1003          * so we do not put_constraint() in case new events are added
1004          * and fail to be scheduled
1005          *
1006          * We invoke the lower level commit callback to lock the resource
1007          *
1008          * We do not need to do all of this in case we are called to
1009          * validate an event group (assign == NULL)
1010          */
1011         if (!unsched && assign) {
1012                 for (i = 0; i < n; i++) {
1013                         e = cpuc->event_list[i];
1014                         if (x86_pmu.commit_scheduling)
1015                                 x86_pmu.commit_scheduling(cpuc, i, assign[i]);
1016                 }
1017         } else {
1018                 for (i = n0; i < n; i++) {
1019                         e = cpuc->event_list[i];
1020
1021                         /*
1022                          * release events that failed scheduling
1023                          */
1024                         if (x86_pmu.put_event_constraints)
1025                                 x86_pmu.put_event_constraints(cpuc, e);
1026
1027                         cpuc->event_constraint[i] = NULL;
1028                 }
1029         }
1030
1031         if (x86_pmu.stop_scheduling)
1032                 x86_pmu.stop_scheduling(cpuc);
1033
1034         return unsched ? -EINVAL : 0;
1035 }
1036
1037 static int add_nr_metric_event(struct cpu_hw_events *cpuc,
1038                                struct perf_event *event)
1039 {
1040         if (is_metric_event(event)) {
1041                 if (cpuc->n_metric == INTEL_TD_METRIC_NUM)
1042                         return -EINVAL;
1043                 cpuc->n_metric++;
1044                 cpuc->n_txn_metric++;
1045         }
1046
1047         return 0;
1048 }
1049
1050 static void del_nr_metric_event(struct cpu_hw_events *cpuc,
1051                                 struct perf_event *event)
1052 {
1053         if (is_metric_event(event))
1054                 cpuc->n_metric--;
1055 }
1056
1057 static int collect_event(struct cpu_hw_events *cpuc, struct perf_event *event,
1058                          int max_count, int n)
1059 {
1060
1061         if (x86_pmu.intel_cap.perf_metrics && add_nr_metric_event(cpuc, event))
1062                 return -EINVAL;
1063
1064         if (n >= max_count + cpuc->n_metric)
1065                 return -EINVAL;
1066
1067         cpuc->event_list[n] = event;
1068         if (is_counter_pair(&event->hw)) {
1069                 cpuc->n_pair++;
1070                 cpuc->n_txn_pair++;
1071         }
1072
1073         return 0;
1074 }
1075
1076 /*
1077  * dogrp: true if must collect siblings events (group)
1078  * returns total number of events and error code
1079  */
1080 static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
1081 {
1082         struct perf_event *event;
1083         int n, max_count;
1084
1085         max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
1086
1087         /* current number of events already accepted */
1088         n = cpuc->n_events;
1089         if (!cpuc->n_events)
1090                 cpuc->pebs_output = 0;
1091
1092         if (!cpuc->is_fake && leader->attr.precise_ip) {
1093                 /*
1094                  * For PEBS->PT, if !aux_event, the group leader (PT) went
1095                  * away, the group was broken down and this singleton event
1096                  * can't schedule any more.
1097                  */
1098                 if (is_pebs_pt(leader) && !leader->aux_event)
1099                         return -EINVAL;
1100
1101                 /*
1102                  * pebs_output: 0: no PEBS so far, 1: PT, 2: DS
1103                  */
1104                 if (cpuc->pebs_output &&
1105                     cpuc->pebs_output != is_pebs_pt(leader) + 1)
1106                         return -EINVAL;
1107
1108                 cpuc->pebs_output = is_pebs_pt(leader) + 1;
1109         }
1110
1111         if (is_x86_event(leader)) {
1112                 if (collect_event(cpuc, leader, max_count, n))
1113                         return -EINVAL;
1114                 n++;
1115         }
1116
1117         if (!dogrp)
1118                 return n;
1119
1120         for_each_sibling_event(event, leader) {
1121                 if (!is_x86_event(event) || event->state <= PERF_EVENT_STATE_OFF)
1122                         continue;
1123
1124                 if (collect_event(cpuc, event, max_count, n))
1125                         return -EINVAL;
1126
1127                 n++;
1128         }
1129         return n;
1130 }
1131
1132 static inline void x86_assign_hw_event(struct perf_event *event,
1133                                 struct cpu_hw_events *cpuc, int i)
1134 {
1135         struct hw_perf_event *hwc = &event->hw;
1136         int idx;
1137
1138         idx = hwc->idx = cpuc->assign[i];
1139         hwc->last_cpu = smp_processor_id();
1140         hwc->last_tag = ++cpuc->tags[i];
1141
1142         switch (hwc->idx) {
1143         case INTEL_PMC_IDX_FIXED_BTS:
1144         case INTEL_PMC_IDX_FIXED_VLBR:
1145                 hwc->config_base = 0;
1146                 hwc->event_base = 0;
1147                 break;
1148
1149         case INTEL_PMC_IDX_METRIC_BASE ... INTEL_PMC_IDX_METRIC_END:
1150                 /* All the metric events are mapped onto the fixed counter 3. */
1151                 idx = INTEL_PMC_IDX_FIXED_SLOTS;
1152                 /* fall through */
1153         case INTEL_PMC_IDX_FIXED ... INTEL_PMC_IDX_FIXED_BTS-1:
1154                 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
1155                 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 +
1156                                 (idx - INTEL_PMC_IDX_FIXED);
1157                 hwc->event_base_rdpmc = (idx - INTEL_PMC_IDX_FIXED) |
1158                                         INTEL_PMC_FIXED_RDPMC_BASE;
1159                 break;
1160
1161         default:
1162                 hwc->config_base = x86_pmu_config_addr(hwc->idx);
1163                 hwc->event_base  = x86_pmu_event_addr(hwc->idx);
1164                 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
1165                 break;
1166         }
1167 }
1168
1169 /**
1170  * x86_perf_rdpmc_index - Return PMC counter used for event
1171  * @event: the perf_event to which the PMC counter was assigned
1172  *
1173  * The counter assigned to this performance event may change if interrupts
1174  * are enabled. This counter should thus never be used while interrupts are
1175  * enabled. Before this function is used to obtain the assigned counter the
1176  * event should be checked for validity using, for example,
1177  * perf_event_read_local(), within the same interrupt disabled section in
1178  * which this counter is planned to be used.
1179  *
1180  * Return: The index of the performance monitoring counter assigned to
1181  * @perf_event.
1182  */
1183 int x86_perf_rdpmc_index(struct perf_event *event)
1184 {
1185         lockdep_assert_irqs_disabled();
1186
1187         return event->hw.event_base_rdpmc;
1188 }
1189
1190 static inline int match_prev_assignment(struct hw_perf_event *hwc,
1191                                         struct cpu_hw_events *cpuc,
1192                                         int i)
1193 {
1194         return hwc->idx == cpuc->assign[i] &&
1195                 hwc->last_cpu == smp_processor_id() &&
1196                 hwc->last_tag == cpuc->tags[i];
1197 }
1198
1199 static void x86_pmu_start(struct perf_event *event, int flags);
1200
1201 static void x86_pmu_enable(struct pmu *pmu)
1202 {
1203         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1204         struct perf_event *event;
1205         struct hw_perf_event *hwc;
1206         int i, added = cpuc->n_added;
1207
1208         if (!x86_pmu_initialized())
1209                 return;
1210
1211         if (cpuc->enabled)
1212                 return;
1213
1214         if (cpuc->n_added) {
1215                 int n_running = cpuc->n_events - cpuc->n_added;
1216                 /*
1217                  * apply assignment obtained either from
1218                  * hw_perf_group_sched_in() or x86_pmu_enable()
1219                  *
1220                  * step1: save events moving to new counters
1221                  */
1222                 for (i = 0; i < n_running; i++) {
1223                         event = cpuc->event_list[i];
1224                         hwc = &event->hw;
1225
1226                         /*
1227                          * we can avoid reprogramming counter if:
1228                          * - assigned same counter as last time
1229                          * - running on same CPU as last time
1230                          * - no other event has used the counter since
1231                          */
1232                         if (hwc->idx == -1 ||
1233                             match_prev_assignment(hwc, cpuc, i))
1234                                 continue;
1235
1236                         /*
1237                          * Ensure we don't accidentally enable a stopped
1238                          * counter simply because we rescheduled.
1239                          */
1240                         if (hwc->state & PERF_HES_STOPPED)
1241                                 hwc->state |= PERF_HES_ARCH;
1242
1243                         x86_pmu_stop(event, PERF_EF_UPDATE);
1244                 }
1245
1246                 /*
1247                  * step2: reprogram moved events into new counters
1248                  */
1249                 for (i = 0; i < cpuc->n_events; i++) {
1250                         event = cpuc->event_list[i];
1251                         hwc = &event->hw;
1252
1253                         if (!match_prev_assignment(hwc, cpuc, i))
1254                                 x86_assign_hw_event(event, cpuc, i);
1255                         else if (i < n_running)
1256                                 continue;
1257
1258                         if (hwc->state & PERF_HES_ARCH)
1259                                 continue;
1260
1261                         x86_pmu_start(event, PERF_EF_RELOAD);
1262                 }
1263                 cpuc->n_added = 0;
1264                 perf_events_lapic_init();
1265         }
1266
1267         cpuc->enabled = 1;
1268         barrier();
1269
1270         x86_pmu.enable_all(added);
1271 }
1272
1273 static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
1274
1275 /*
1276  * Set the next IRQ period, based on the hwc->period_left value.
1277  * To be called with the event disabled in hw:
1278  */
1279 int x86_perf_event_set_period(struct perf_event *event)
1280 {
1281         struct hw_perf_event *hwc = &event->hw;
1282         s64 left = local64_read(&hwc->period_left);
1283         s64 period = hwc->sample_period;
1284         int ret = 0, idx = hwc->idx;
1285
1286         if (unlikely(!hwc->event_base))
1287                 return 0;
1288
1289         if (unlikely(is_topdown_count(event)) &&
1290             x86_pmu.set_topdown_event_period)
1291                 return x86_pmu.set_topdown_event_period(event);
1292
1293         /*
1294          * If we are way outside a reasonable range then just skip forward:
1295          */
1296         if (unlikely(left <= -period)) {
1297                 left = period;
1298                 local64_set(&hwc->period_left, left);
1299                 hwc->last_period = period;
1300                 ret = 1;
1301         }
1302
1303         if (unlikely(left <= 0)) {
1304                 left += period;
1305                 local64_set(&hwc->period_left, left);
1306                 hwc->last_period = period;
1307                 ret = 1;
1308         }
1309         /*
1310          * Quirk: certain CPUs dont like it if just 1 hw_event is left:
1311          */
1312         if (unlikely(left < 2))
1313                 left = 2;
1314
1315         if (left > x86_pmu.max_period)
1316                 left = x86_pmu.max_period;
1317
1318         if (x86_pmu.limit_period)
1319                 left = x86_pmu.limit_period(event, left);
1320
1321         per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
1322
1323         /*
1324          * The hw event starts counting from this event offset,
1325          * mark it to be able to extra future deltas:
1326          */
1327         local64_set(&hwc->prev_count, (u64)-left);
1328
1329         wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
1330
1331         /*
1332          * Sign extend the Merge event counter's upper 16 bits since
1333          * we currently declare a 48-bit counter width
1334          */
1335         if (is_counter_pair(hwc))
1336                 wrmsrl(x86_pmu_event_addr(idx + 1), 0xffff);
1337
1338         /*
1339          * Due to erratum on certan cpu we need
1340          * a second write to be sure the register
1341          * is updated properly
1342          */
1343         if (x86_pmu.perfctr_second_write) {
1344                 wrmsrl(hwc->event_base,
1345                         (u64)(-left) & x86_pmu.cntval_mask);
1346         }
1347
1348         perf_event_update_userpage(event);
1349
1350         return ret;
1351 }
1352
1353 void x86_pmu_enable_event(struct perf_event *event)
1354 {
1355         if (__this_cpu_read(cpu_hw_events.enabled))
1356                 __x86_pmu_enable_event(&event->hw,
1357                                        ARCH_PERFMON_EVENTSEL_ENABLE);
1358 }
1359
1360 /*
1361  * Add a single event to the PMU.
1362  *
1363  * The event is added to the group of enabled events
1364  * but only if it can be scheduled with existing events.
1365  */
1366 static int x86_pmu_add(struct perf_event *event, int flags)
1367 {
1368         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1369         struct hw_perf_event *hwc;
1370         int assign[X86_PMC_IDX_MAX];
1371         int n, n0, ret;
1372
1373         hwc = &event->hw;
1374
1375         n0 = cpuc->n_events;
1376         ret = n = collect_events(cpuc, event, false);
1377         if (ret < 0)
1378                 goto out;
1379
1380         hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1381         if (!(flags & PERF_EF_START))
1382                 hwc->state |= PERF_HES_ARCH;
1383
1384         /*
1385          * If group events scheduling transaction was started,
1386          * skip the schedulability test here, it will be performed
1387          * at commit time (->commit_txn) as a whole.
1388          *
1389          * If commit fails, we'll call ->del() on all events
1390          * for which ->add() was called.
1391          */
1392         if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
1393                 goto done_collect;
1394
1395         ret = x86_pmu.schedule_events(cpuc, n, assign);
1396         if (ret)
1397                 goto out;
1398         /*
1399          * copy new assignment, now we know it is possible
1400          * will be used by hw_perf_enable()
1401          */
1402         memcpy(cpuc->assign, assign, n*sizeof(int));
1403
1404 done_collect:
1405         /*
1406          * Commit the collect_events() state. See x86_pmu_del() and
1407          * x86_pmu_*_txn().
1408          */
1409         cpuc->n_events = n;
1410         cpuc->n_added += n - n0;
1411         cpuc->n_txn += n - n0;
1412
1413         if (x86_pmu.add) {
1414                 /*
1415                  * This is before x86_pmu_enable() will call x86_pmu_start(),
1416                  * so we enable LBRs before an event needs them etc..
1417                  */
1418                 x86_pmu.add(event);
1419         }
1420
1421         ret = 0;
1422 out:
1423         return ret;
1424 }
1425
1426 static void x86_pmu_start(struct perf_event *event, int flags)
1427 {
1428         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1429         int idx = event->hw.idx;
1430
1431         if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1432                 return;
1433
1434         if (WARN_ON_ONCE(idx == -1))
1435                 return;
1436
1437         if (flags & PERF_EF_RELOAD) {
1438                 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1439                 x86_perf_event_set_period(event);
1440         }
1441
1442         event->hw.state = 0;
1443
1444         cpuc->events[idx] = event;
1445         __set_bit(idx, cpuc->active_mask);
1446         __set_bit(idx, cpuc->running);
1447         x86_pmu.enable(event);
1448         perf_event_update_userpage(event);
1449 }
1450
1451 void perf_event_print_debug(void)
1452 {
1453         u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
1454         u64 pebs, debugctl;
1455         struct cpu_hw_events *cpuc;
1456         unsigned long flags;
1457         int cpu, idx;
1458
1459         if (!x86_pmu.num_counters)
1460                 return;
1461
1462         local_irq_save(flags);
1463
1464         cpu = smp_processor_id();
1465         cpuc = &per_cpu(cpu_hw_events, cpu);
1466
1467         if (x86_pmu.version >= 2) {
1468                 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1469                 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1470                 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1471                 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
1472
1473                 pr_info("\n");
1474                 pr_info("CPU#%d: ctrl:       %016llx\n", cpu, ctrl);
1475                 pr_info("CPU#%d: status:     %016llx\n", cpu, status);
1476                 pr_info("CPU#%d: overflow:   %016llx\n", cpu, overflow);
1477                 pr_info("CPU#%d: fixed:      %016llx\n", cpu, fixed);
1478                 if (x86_pmu.pebs_constraints) {
1479                         rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
1480                         pr_info("CPU#%d: pebs:       %016llx\n", cpu, pebs);
1481                 }
1482                 if (x86_pmu.lbr_nr) {
1483                         rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
1484                         pr_info("CPU#%d: debugctl:   %016llx\n", cpu, debugctl);
1485                 }
1486         }
1487         pr_info("CPU#%d: active:     %016llx\n", cpu, *(u64 *)cpuc->active_mask);
1488
1489         for (idx = 0; idx < x86_pmu.num_counters; idx++) {
1490                 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1491                 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
1492
1493                 prev_left = per_cpu(pmc_prev_left[idx], cpu);
1494
1495                 pr_info("CPU#%d:   gen-PMC%d ctrl:  %016llx\n",
1496                         cpu, idx, pmc_ctrl);
1497                 pr_info("CPU#%d:   gen-PMC%d count: %016llx\n",
1498                         cpu, idx, pmc_count);
1499                 pr_info("CPU#%d:   gen-PMC%d left:  %016llx\n",
1500                         cpu, idx, prev_left);
1501         }
1502         for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
1503                 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1504
1505                 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
1506                         cpu, idx, pmc_count);
1507         }
1508         local_irq_restore(flags);
1509 }
1510
1511 void x86_pmu_stop(struct perf_event *event, int flags)
1512 {
1513         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1514         struct hw_perf_event *hwc = &event->hw;
1515
1516         if (test_bit(hwc->idx, cpuc->active_mask)) {
1517                 x86_pmu.disable(event);
1518                 __clear_bit(hwc->idx, cpuc->active_mask);
1519                 cpuc->events[hwc->idx] = NULL;
1520                 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1521                 hwc->state |= PERF_HES_STOPPED;
1522         }
1523
1524         if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1525                 /*
1526                  * Drain the remaining delta count out of a event
1527                  * that we are disabling:
1528                  */
1529                 x86_perf_event_update(event);
1530                 hwc->state |= PERF_HES_UPTODATE;
1531         }
1532 }
1533
1534 static void x86_pmu_del(struct perf_event *event, int flags)
1535 {
1536         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1537         int i;
1538
1539         /*
1540          * If we're called during a txn, we only need to undo x86_pmu.add.
1541          * The events never got scheduled and ->cancel_txn will truncate
1542          * the event_list.
1543          *
1544          * XXX assumes any ->del() called during a TXN will only be on
1545          * an event added during that same TXN.
1546          */
1547         if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
1548                 goto do_del;
1549
1550         /*
1551          * Not a TXN, therefore cleanup properly.
1552          */
1553         x86_pmu_stop(event, PERF_EF_UPDATE);
1554
1555         for (i = 0; i < cpuc->n_events; i++) {
1556                 if (event == cpuc->event_list[i])
1557                         break;
1558         }
1559
1560         if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1561                 return;
1562
1563         /* If we have a newly added event; make sure to decrease n_added. */
1564         if (i >= cpuc->n_events - cpuc->n_added)
1565                 --cpuc->n_added;
1566
1567         if (x86_pmu.put_event_constraints)
1568                 x86_pmu.put_event_constraints(cpuc, event);
1569
1570         /* Delete the array entry. */
1571         while (++i < cpuc->n_events) {
1572                 cpuc->event_list[i-1] = cpuc->event_list[i];
1573                 cpuc->event_constraint[i-1] = cpuc->event_constraint[i];
1574         }
1575         cpuc->event_constraint[i-1] = NULL;
1576         --cpuc->n_events;
1577         if (x86_pmu.intel_cap.perf_metrics)
1578                 del_nr_metric_event(cpuc, event);
1579
1580         perf_event_update_userpage(event);
1581
1582 do_del:
1583         if (x86_pmu.del) {
1584                 /*
1585                  * This is after x86_pmu_stop(); so we disable LBRs after any
1586                  * event can need them etc..
1587                  */
1588                 x86_pmu.del(event);
1589         }
1590 }
1591
1592 int x86_pmu_handle_irq(struct pt_regs *regs)
1593 {
1594         struct perf_sample_data data;
1595         struct cpu_hw_events *cpuc;
1596         struct perf_event *event;
1597         int idx, handled = 0;
1598         u64 val;
1599
1600         cpuc = this_cpu_ptr(&cpu_hw_events);
1601
1602         /*
1603          * Some chipsets need to unmask the LVTPC in a particular spot
1604          * inside the nmi handler.  As a result, the unmasking was pushed
1605          * into all the nmi handlers.
1606          *
1607          * This generic handler doesn't seem to have any issues where the
1608          * unmasking occurs so it was left at the top.
1609          */
1610         apic_write(APIC_LVTPC, APIC_DM_NMI);
1611
1612         for (idx = 0; idx < x86_pmu.num_counters; idx++) {
1613                 if (!test_bit(idx, cpuc->active_mask))
1614                         continue;
1615
1616                 event = cpuc->events[idx];
1617
1618                 val = x86_perf_event_update(event);
1619                 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
1620                         continue;
1621
1622                 /*
1623                  * event overflow
1624                  */
1625                 handled++;
1626                 perf_sample_data_init(&data, 0, event->hw.last_period);
1627
1628                 if (!x86_perf_event_set_period(event))
1629                         continue;
1630
1631                 if (perf_event_overflow(event, &data, regs))
1632                         x86_pmu_stop(event, 0);
1633         }
1634
1635         if (handled)
1636                 inc_irq_stat(apic_perf_irqs);
1637
1638         return handled;
1639 }
1640
1641 void perf_events_lapic_init(void)
1642 {
1643         if (!x86_pmu.apic || !x86_pmu_initialized())
1644                 return;
1645
1646         /*
1647          * Always use NMI for PMU
1648          */
1649         apic_write(APIC_LVTPC, APIC_DM_NMI);
1650 }
1651
1652 static int
1653 perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
1654 {
1655         u64 start_clock;
1656         u64 finish_clock;
1657         int ret;
1658
1659         /*
1660          * All PMUs/events that share this PMI handler should make sure to
1661          * increment active_events for their events.
1662          */
1663         if (!atomic_read(&active_events))
1664                 return NMI_DONE;
1665
1666         start_clock = sched_clock();
1667         ret = x86_pmu.handle_irq(regs);
1668         finish_clock = sched_clock();
1669
1670         perf_sample_event_took(finish_clock - start_clock);
1671
1672         return ret;
1673 }
1674 NOKPROBE_SYMBOL(perf_event_nmi_handler);
1675
1676 struct event_constraint emptyconstraint;
1677 struct event_constraint unconstrained;
1678
1679 static int x86_pmu_prepare_cpu(unsigned int cpu)
1680 {
1681         struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1682         int i;
1683
1684         for (i = 0 ; i < X86_PERF_KFREE_MAX; i++)
1685                 cpuc->kfree_on_online[i] = NULL;
1686         if (x86_pmu.cpu_prepare)
1687                 return x86_pmu.cpu_prepare(cpu);
1688         return 0;
1689 }
1690
1691 static int x86_pmu_dead_cpu(unsigned int cpu)
1692 {
1693         if (x86_pmu.cpu_dead)
1694                 x86_pmu.cpu_dead(cpu);
1695         return 0;
1696 }
1697
1698 static int x86_pmu_online_cpu(unsigned int cpu)
1699 {
1700         struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1701         int i;
1702
1703         for (i = 0 ; i < X86_PERF_KFREE_MAX; i++) {
1704                 kfree(cpuc->kfree_on_online[i]);
1705                 cpuc->kfree_on_online[i] = NULL;
1706         }
1707         return 0;
1708 }
1709
1710 static int x86_pmu_starting_cpu(unsigned int cpu)
1711 {
1712         if (x86_pmu.cpu_starting)
1713                 x86_pmu.cpu_starting(cpu);
1714         return 0;
1715 }
1716
1717 static int x86_pmu_dying_cpu(unsigned int cpu)
1718 {
1719         if (x86_pmu.cpu_dying)
1720                 x86_pmu.cpu_dying(cpu);
1721         return 0;
1722 }
1723
1724 static void __init pmu_check_apic(void)
1725 {
1726         if (boot_cpu_has(X86_FEATURE_APIC))
1727                 return;
1728
1729         x86_pmu.apic = 0;
1730         pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1731         pr_info("no hardware sampling interrupt available.\n");
1732
1733         /*
1734          * If we have a PMU initialized but no APIC
1735          * interrupts, we cannot sample hardware
1736          * events (user-space has to fall back and
1737          * sample via a hrtimer based software event):
1738          */
1739         pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1740
1741 }
1742
1743 static struct attribute_group x86_pmu_format_group __ro_after_init = {
1744         .name = "format",
1745         .attrs = NULL,
1746 };
1747
1748 ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr, char *page)
1749 {
1750         struct perf_pmu_events_attr *pmu_attr =
1751                 container_of(attr, struct perf_pmu_events_attr, attr);
1752         u64 config = 0;
1753
1754         if (pmu_attr->id < x86_pmu.max_events)
1755                 config = x86_pmu.event_map(pmu_attr->id);
1756
1757         /* string trumps id */
1758         if (pmu_attr->event_str)
1759                 return sprintf(page, "%s", pmu_attr->event_str);
1760
1761         return x86_pmu.events_sysfs_show(page, config);
1762 }
1763 EXPORT_SYMBOL_GPL(events_sysfs_show);
1764
1765 ssize_t events_ht_sysfs_show(struct device *dev, struct device_attribute *attr,
1766                           char *page)
1767 {
1768         struct perf_pmu_events_ht_attr *pmu_attr =
1769                 container_of(attr, struct perf_pmu_events_ht_attr, attr);
1770
1771         /*
1772          * Report conditional events depending on Hyper-Threading.
1773          *
1774          * This is overly conservative as usually the HT special
1775          * handling is not needed if the other CPU thread is idle.
1776          *
1777          * Note this does not (and cannot) handle the case when thread
1778          * siblings are invisible, for example with virtualization
1779          * if they are owned by some other guest.  The user tool
1780          * has to re-read when a thread sibling gets onlined later.
1781          */
1782         return sprintf(page, "%s",
1783                         topology_max_smt_threads() > 1 ?
1784                         pmu_attr->event_str_ht :
1785                         pmu_attr->event_str_noht);
1786 }
1787
1788 EVENT_ATTR(cpu-cycles,                  CPU_CYCLES              );
1789 EVENT_ATTR(instructions,                INSTRUCTIONS            );
1790 EVENT_ATTR(cache-references,            CACHE_REFERENCES        );
1791 EVENT_ATTR(cache-misses,                CACHE_MISSES            );
1792 EVENT_ATTR(branch-instructions,         BRANCH_INSTRUCTIONS     );
1793 EVENT_ATTR(branch-misses,               BRANCH_MISSES           );
1794 EVENT_ATTR(bus-cycles,                  BUS_CYCLES              );
1795 EVENT_ATTR(stalled-cycles-frontend,     STALLED_CYCLES_FRONTEND );
1796 EVENT_ATTR(stalled-cycles-backend,      STALLED_CYCLES_BACKEND  );
1797 EVENT_ATTR(ref-cycles,                  REF_CPU_CYCLES          );
1798
1799 static struct attribute *empty_attrs;
1800
1801 static struct attribute *events_attr[] = {
1802         EVENT_PTR(CPU_CYCLES),
1803         EVENT_PTR(INSTRUCTIONS),
1804         EVENT_PTR(CACHE_REFERENCES),
1805         EVENT_PTR(CACHE_MISSES),
1806         EVENT_PTR(BRANCH_INSTRUCTIONS),
1807         EVENT_PTR(BRANCH_MISSES),
1808         EVENT_PTR(BUS_CYCLES),
1809         EVENT_PTR(STALLED_CYCLES_FRONTEND),
1810         EVENT_PTR(STALLED_CYCLES_BACKEND),
1811         EVENT_PTR(REF_CPU_CYCLES),
1812         NULL,
1813 };
1814
1815 /*
1816  * Remove all undefined events (x86_pmu.event_map(id) == 0)
1817  * out of events_attr attributes.
1818  */
1819 static umode_t
1820 is_visible(struct kobject *kobj, struct attribute *attr, int idx)
1821 {
1822         struct perf_pmu_events_attr *pmu_attr;
1823
1824         if (idx >= x86_pmu.max_events)
1825                 return 0;
1826
1827         pmu_attr = container_of(attr, struct perf_pmu_events_attr, attr.attr);
1828         /* str trumps id */
1829         return pmu_attr->event_str || x86_pmu.event_map(idx) ? attr->mode : 0;
1830 }
1831
1832 static struct attribute_group x86_pmu_events_group __ro_after_init = {
1833         .name = "events",
1834         .attrs = events_attr,
1835         .is_visible = is_visible,
1836 };
1837
1838 ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
1839 {
1840         u64 umask  = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1841         u64 cmask  = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1842         bool edge  = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1843         bool pc    = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1844         bool any   = (config & ARCH_PERFMON_EVENTSEL_ANY);
1845         bool inv   = (config & ARCH_PERFMON_EVENTSEL_INV);
1846         ssize_t ret;
1847
1848         /*
1849         * We have whole page size to spend and just little data
1850         * to write, so we can safely use sprintf.
1851         */
1852         ret = sprintf(page, "event=0x%02llx", event);
1853
1854         if (umask)
1855                 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1856
1857         if (edge)
1858                 ret += sprintf(page + ret, ",edge");
1859
1860         if (pc)
1861                 ret += sprintf(page + ret, ",pc");
1862
1863         if (any)
1864                 ret += sprintf(page + ret, ",any");
1865
1866         if (inv)
1867                 ret += sprintf(page + ret, ",inv");
1868
1869         if (cmask)
1870                 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1871
1872         ret += sprintf(page + ret, "\n");
1873
1874         return ret;
1875 }
1876
1877 static struct attribute_group x86_pmu_attr_group;
1878 static struct attribute_group x86_pmu_caps_group;
1879
1880 static int __init init_hw_perf_events(void)
1881 {
1882         struct x86_pmu_quirk *quirk;
1883         int err;
1884
1885         pr_info("Performance Events: ");
1886
1887         switch (boot_cpu_data.x86_vendor) {
1888         case X86_VENDOR_INTEL:
1889                 err = intel_pmu_init();
1890                 break;
1891         case X86_VENDOR_AMD:
1892                 err = amd_pmu_init();
1893                 break;
1894         case X86_VENDOR_HYGON:
1895                 err = amd_pmu_init();
1896                 x86_pmu.name = "HYGON";
1897                 break;
1898         case X86_VENDOR_ZHAOXIN:
1899         case X86_VENDOR_CENTAUR:
1900                 err = zhaoxin_pmu_init();
1901                 break;
1902         default:
1903                 err = -ENOTSUPP;
1904         }
1905         if (err != 0) {
1906                 pr_cont("no PMU driver, software events only.\n");
1907                 return 0;
1908         }
1909
1910         pmu_check_apic();
1911
1912         /* sanity check that the hardware exists or is emulated */
1913         if (!check_hw_exists())
1914                 return 0;
1915
1916         pr_cont("%s PMU driver.\n", x86_pmu.name);
1917
1918         x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1919
1920         for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1921                 quirk->func();
1922
1923         if (!x86_pmu.intel_ctrl)
1924                 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
1925
1926         perf_events_lapic_init();
1927         register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
1928
1929         unconstrained = (struct event_constraint)
1930                 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
1931                                    0, x86_pmu.num_counters, 0, 0);
1932
1933         x86_pmu_format_group.attrs = x86_pmu.format_attrs;
1934
1935         if (!x86_pmu.events_sysfs_show)
1936                 x86_pmu_events_group.attrs = &empty_attrs;
1937
1938         pmu.attr_update = x86_pmu.attr_update;
1939
1940         pr_info("... version:                %d\n",     x86_pmu.version);
1941         pr_info("... bit width:              %d\n",     x86_pmu.cntval_bits);
1942         pr_info("... generic registers:      %d\n",     x86_pmu.num_counters);
1943         pr_info("... value mask:             %016Lx\n", x86_pmu.cntval_mask);
1944         pr_info("... max period:             %016Lx\n", x86_pmu.max_period);
1945         pr_info("... fixed-purpose events:   %d\n",     x86_pmu.num_counters_fixed);
1946         pr_info("... event mask:             %016Lx\n", x86_pmu.intel_ctrl);
1947
1948         /*
1949          * Install callbacks. Core will call them for each online
1950          * cpu.
1951          */
1952         err = cpuhp_setup_state(CPUHP_PERF_X86_PREPARE, "perf/x86:prepare",
1953                                 x86_pmu_prepare_cpu, x86_pmu_dead_cpu);
1954         if (err)
1955                 return err;
1956
1957         err = cpuhp_setup_state(CPUHP_AP_PERF_X86_STARTING,
1958                                 "perf/x86:starting", x86_pmu_starting_cpu,
1959                                 x86_pmu_dying_cpu);
1960         if (err)
1961                 goto out;
1962
1963         err = cpuhp_setup_state(CPUHP_AP_PERF_X86_ONLINE, "perf/x86:online",
1964                                 x86_pmu_online_cpu, NULL);
1965         if (err)
1966                 goto out1;
1967
1968         err = perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
1969         if (err)
1970                 goto out2;
1971
1972         return 0;
1973
1974 out2:
1975         cpuhp_remove_state(CPUHP_AP_PERF_X86_ONLINE);
1976 out1:
1977         cpuhp_remove_state(CPUHP_AP_PERF_X86_STARTING);
1978 out:
1979         cpuhp_remove_state(CPUHP_PERF_X86_PREPARE);
1980         return err;
1981 }
1982 early_initcall(init_hw_perf_events);
1983
1984 static inline void x86_pmu_read(struct perf_event *event)
1985 {
1986         if (x86_pmu.read)
1987                 return x86_pmu.read(event);
1988         x86_perf_event_update(event);
1989 }
1990
1991 /*
1992  * Start group events scheduling transaction
1993  * Set the flag to make pmu::enable() not perform the
1994  * schedulability test, it will be performed at commit time
1995  *
1996  * We only support PERF_PMU_TXN_ADD transactions. Save the
1997  * transaction flags but otherwise ignore non-PERF_PMU_TXN_ADD
1998  * transactions.
1999  */
2000 static void x86_pmu_start_txn(struct pmu *pmu, unsigned int txn_flags)
2001 {
2002         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2003
2004         WARN_ON_ONCE(cpuc->txn_flags);          /* txn already in flight */
2005
2006         cpuc->txn_flags = txn_flags;
2007         if (txn_flags & ~PERF_PMU_TXN_ADD)
2008                 return;
2009
2010         perf_pmu_disable(pmu);
2011         __this_cpu_write(cpu_hw_events.n_txn, 0);
2012         __this_cpu_write(cpu_hw_events.n_txn_pair, 0);
2013         __this_cpu_write(cpu_hw_events.n_txn_metric, 0);
2014 }
2015
2016 /*
2017  * Stop group events scheduling transaction
2018  * Clear the flag and pmu::enable() will perform the
2019  * schedulability test.
2020  */
2021 static void x86_pmu_cancel_txn(struct pmu *pmu)
2022 {
2023         unsigned int txn_flags;
2024         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2025
2026         WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
2027
2028         txn_flags = cpuc->txn_flags;
2029         cpuc->txn_flags = 0;
2030         if (txn_flags & ~PERF_PMU_TXN_ADD)
2031                 return;
2032
2033         /*
2034          * Truncate collected array by the number of events added in this
2035          * transaction. See x86_pmu_add() and x86_pmu_*_txn().
2036          */
2037         __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
2038         __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
2039         __this_cpu_sub(cpu_hw_events.n_pair, __this_cpu_read(cpu_hw_events.n_txn_pair));
2040         __this_cpu_sub(cpu_hw_events.n_metric, __this_cpu_read(cpu_hw_events.n_txn_metric));
2041         perf_pmu_enable(pmu);
2042 }
2043
2044 /*
2045  * Commit group events scheduling transaction
2046  * Perform the group schedulability test as a whole
2047  * Return 0 if success
2048  *
2049  * Does not cancel the transaction on failure; expects the caller to do this.
2050  */
2051 static int x86_pmu_commit_txn(struct pmu *pmu)
2052 {
2053         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2054         int assign[X86_PMC_IDX_MAX];
2055         int n, ret;
2056
2057         WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
2058
2059         if (cpuc->txn_flags & ~PERF_PMU_TXN_ADD) {
2060                 cpuc->txn_flags = 0;
2061                 return 0;
2062         }
2063
2064         n = cpuc->n_events;
2065
2066         if (!x86_pmu_initialized())
2067                 return -EAGAIN;
2068
2069         ret = x86_pmu.schedule_events(cpuc, n, assign);
2070         if (ret)
2071                 return ret;
2072
2073         /*
2074          * copy new assignment, now we know it is possible
2075          * will be used by hw_perf_enable()
2076          */
2077         memcpy(cpuc->assign, assign, n*sizeof(int));
2078
2079         cpuc->txn_flags = 0;
2080         perf_pmu_enable(pmu);
2081         return 0;
2082 }
2083 /*
2084  * a fake_cpuc is used to validate event groups. Due to
2085  * the extra reg logic, we need to also allocate a fake
2086  * per_core and per_cpu structure. Otherwise, group events
2087  * using extra reg may conflict without the kernel being
2088  * able to catch this when the last event gets added to
2089  * the group.
2090  */
2091 static void free_fake_cpuc(struct cpu_hw_events *cpuc)
2092 {
2093         intel_cpuc_finish(cpuc);
2094         kfree(cpuc);
2095 }
2096
2097 static struct cpu_hw_events *allocate_fake_cpuc(void)
2098 {
2099         struct cpu_hw_events *cpuc;
2100         int cpu = raw_smp_processor_id();
2101
2102         cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
2103         if (!cpuc)
2104                 return ERR_PTR(-ENOMEM);
2105         cpuc->is_fake = 1;
2106
2107         if (intel_cpuc_prepare(cpuc, cpu))
2108                 goto error;
2109
2110         return cpuc;
2111 error:
2112         free_fake_cpuc(cpuc);
2113         return ERR_PTR(-ENOMEM);
2114 }
2115
2116 /*
2117  * validate that we can schedule this event
2118  */
2119 static int validate_event(struct perf_event *event)
2120 {
2121         struct cpu_hw_events *fake_cpuc;
2122         struct event_constraint *c;
2123         int ret = 0;
2124
2125         fake_cpuc = allocate_fake_cpuc();
2126         if (IS_ERR(fake_cpuc))
2127                 return PTR_ERR(fake_cpuc);
2128
2129         c = x86_pmu.get_event_constraints(fake_cpuc, 0, event);
2130
2131         if (!c || !c->weight)
2132                 ret = -EINVAL;
2133
2134         if (x86_pmu.put_event_constraints)
2135                 x86_pmu.put_event_constraints(fake_cpuc, event);
2136
2137         free_fake_cpuc(fake_cpuc);
2138
2139         return ret;
2140 }
2141
2142 /*
2143  * validate a single event group
2144  *
2145  * validation include:
2146  *      - check events are compatible which each other
2147  *      - events do not compete for the same counter
2148  *      - number of events <= number of counters
2149  *
2150  * validation ensures the group can be loaded onto the
2151  * PMU if it was the only group available.
2152  */
2153 static int validate_group(struct perf_event *event)
2154 {
2155         struct perf_event *leader = event->group_leader;
2156         struct cpu_hw_events *fake_cpuc;
2157         int ret = -EINVAL, n;
2158
2159         fake_cpuc = allocate_fake_cpuc();
2160         if (IS_ERR(fake_cpuc))
2161                 return PTR_ERR(fake_cpuc);
2162         /*
2163          * the event is not yet connected with its
2164          * siblings therefore we must first collect
2165          * existing siblings, then add the new event
2166          * before we can simulate the scheduling
2167          */
2168         n = collect_events(fake_cpuc, leader, true);
2169         if (n < 0)
2170                 goto out;
2171
2172         fake_cpuc->n_events = n;
2173         n = collect_events(fake_cpuc, event, false);
2174         if (n < 0)
2175                 goto out;
2176
2177         fake_cpuc->n_events = 0;
2178         ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
2179
2180 out:
2181         free_fake_cpuc(fake_cpuc);
2182         return ret;
2183 }
2184
2185 static int x86_pmu_event_init(struct perf_event *event)
2186 {
2187         struct pmu *tmp;
2188         int err;
2189
2190         switch (event->attr.type) {
2191         case PERF_TYPE_RAW:
2192         case PERF_TYPE_HARDWARE:
2193         case PERF_TYPE_HW_CACHE:
2194                 break;
2195
2196         default:
2197                 return -ENOENT;
2198         }
2199
2200         err = __x86_pmu_event_init(event);
2201         if (!err) {
2202                 /*
2203                  * we temporarily connect event to its pmu
2204                  * such that validate_group() can classify
2205                  * it as an x86 event using is_x86_event()
2206                  */
2207                 tmp = event->pmu;
2208                 event->pmu = &pmu;
2209
2210                 if (event->group_leader != event)
2211                         err = validate_group(event);
2212                 else
2213                         err = validate_event(event);
2214
2215                 event->pmu = tmp;
2216         }
2217         if (err) {
2218                 if (event->destroy)
2219                         event->destroy(event);
2220         }
2221
2222         if (READ_ONCE(x86_pmu.attr_rdpmc) &&
2223             !(event->hw.flags & PERF_X86_EVENT_LARGE_PEBS))
2224                 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
2225
2226         return err;
2227 }
2228
2229 static void x86_pmu_event_mapped(struct perf_event *event, struct mm_struct *mm)
2230 {
2231         if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2232                 return;
2233
2234         /*
2235          * This function relies on not being called concurrently in two
2236          * tasks in the same mm.  Otherwise one task could observe
2237          * perf_rdpmc_allowed > 1 and return all the way back to
2238          * userspace with CR4.PCE clear while another task is still
2239          * doing on_each_cpu_mask() to propagate CR4.PCE.
2240          *
2241          * For now, this can't happen because all callers hold mmap_lock
2242          * for write.  If this changes, we'll need a different solution.
2243          */
2244         mmap_assert_write_locked(mm);
2245
2246         if (atomic_inc_return(&mm->context.perf_rdpmc_allowed) == 1)
2247                 on_each_cpu_mask(mm_cpumask(mm), cr4_update_pce, NULL, 1);
2248 }
2249
2250 static void x86_pmu_event_unmapped(struct perf_event *event, struct mm_struct *mm)
2251 {
2252
2253         if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2254                 return;
2255
2256         if (atomic_dec_and_test(&mm->context.perf_rdpmc_allowed))
2257                 on_each_cpu_mask(mm_cpumask(mm), cr4_update_pce, NULL, 1);
2258 }
2259
2260 static int x86_pmu_event_idx(struct perf_event *event)
2261 {
2262         struct hw_perf_event *hwc = &event->hw;
2263
2264         if (!(hwc->flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2265                 return 0;
2266
2267         if (is_metric_idx(hwc->idx))
2268                 return INTEL_PMC_FIXED_RDPMC_METRICS + 1;
2269         else
2270                 return hwc->event_base_rdpmc + 1;
2271 }
2272
2273 static ssize_t get_attr_rdpmc(struct device *cdev,
2274                               struct device_attribute *attr,
2275                               char *buf)
2276 {
2277         return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
2278 }
2279
2280 static ssize_t set_attr_rdpmc(struct device *cdev,
2281                               struct device_attribute *attr,
2282                               const char *buf, size_t count)
2283 {
2284         unsigned long val;
2285         ssize_t ret;
2286
2287         ret = kstrtoul(buf, 0, &val);
2288         if (ret)
2289                 return ret;
2290
2291         if (val > 2)
2292                 return -EINVAL;
2293
2294         if (x86_pmu.attr_rdpmc_broken)
2295                 return -ENOTSUPP;
2296
2297         if (val != x86_pmu.attr_rdpmc) {
2298                 /*
2299                  * Changing into or out of never available or always available,
2300                  * aka perf-event-bypassing mode. This path is extremely slow,
2301                  * but only root can trigger it, so it's okay.
2302                  */
2303                 if (val == 0)
2304                         static_branch_inc(&rdpmc_never_available_key);
2305                 else if (x86_pmu.attr_rdpmc == 0)
2306                         static_branch_dec(&rdpmc_never_available_key);
2307
2308                 if (val == 2)
2309                         static_branch_inc(&rdpmc_always_available_key);
2310                 else if (x86_pmu.attr_rdpmc == 2)
2311                         static_branch_dec(&rdpmc_always_available_key);
2312
2313                 on_each_cpu(cr4_update_pce, NULL, 1);
2314                 x86_pmu.attr_rdpmc = val;
2315         }
2316
2317         return count;
2318 }
2319
2320 static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
2321
2322 static struct attribute *x86_pmu_attrs[] = {
2323         &dev_attr_rdpmc.attr,
2324         NULL,
2325 };
2326
2327 static struct attribute_group x86_pmu_attr_group __ro_after_init = {
2328         .attrs = x86_pmu_attrs,
2329 };
2330
2331 static ssize_t max_precise_show(struct device *cdev,
2332                                   struct device_attribute *attr,
2333                                   char *buf)
2334 {
2335         return snprintf(buf, PAGE_SIZE, "%d\n", x86_pmu_max_precise());
2336 }
2337
2338 static DEVICE_ATTR_RO(max_precise);
2339
2340 static struct attribute *x86_pmu_caps_attrs[] = {
2341         &dev_attr_max_precise.attr,
2342         NULL
2343 };
2344
2345 static struct attribute_group x86_pmu_caps_group __ro_after_init = {
2346         .name = "caps",
2347         .attrs = x86_pmu_caps_attrs,
2348 };
2349
2350 static const struct attribute_group *x86_pmu_attr_groups[] = {
2351         &x86_pmu_attr_group,
2352         &x86_pmu_format_group,
2353         &x86_pmu_events_group,
2354         &x86_pmu_caps_group,
2355         NULL,
2356 };
2357
2358 static void x86_pmu_sched_task(struct perf_event_context *ctx, bool sched_in)
2359 {
2360         if (x86_pmu.sched_task)
2361                 x86_pmu.sched_task(ctx, sched_in);
2362 }
2363
2364 static void x86_pmu_swap_task_ctx(struct perf_event_context *prev,
2365                                   struct perf_event_context *next)
2366 {
2367         if (x86_pmu.swap_task_ctx)
2368                 x86_pmu.swap_task_ctx(prev, next);
2369 }
2370
2371 void perf_check_microcode(void)
2372 {
2373         if (x86_pmu.check_microcode)
2374                 x86_pmu.check_microcode();
2375 }
2376
2377 static int x86_pmu_check_period(struct perf_event *event, u64 value)
2378 {
2379         if (x86_pmu.check_period && x86_pmu.check_period(event, value))
2380                 return -EINVAL;
2381
2382         if (value && x86_pmu.limit_period) {
2383                 if (x86_pmu.limit_period(event, value) > value)
2384                         return -EINVAL;
2385         }
2386
2387         return 0;
2388 }
2389
2390 static int x86_pmu_aux_output_match(struct perf_event *event)
2391 {
2392         if (!(pmu.capabilities & PERF_PMU_CAP_AUX_OUTPUT))
2393                 return 0;
2394
2395         if (x86_pmu.aux_output_match)
2396                 return x86_pmu.aux_output_match(event);
2397
2398         return 0;
2399 }
2400
2401 static struct pmu pmu = {
2402         .pmu_enable             = x86_pmu_enable,
2403         .pmu_disable            = x86_pmu_disable,
2404
2405         .attr_groups            = x86_pmu_attr_groups,
2406
2407         .event_init             = x86_pmu_event_init,
2408
2409         .event_mapped           = x86_pmu_event_mapped,
2410         .event_unmapped         = x86_pmu_event_unmapped,
2411
2412         .add                    = x86_pmu_add,
2413         .del                    = x86_pmu_del,
2414         .start                  = x86_pmu_start,
2415         .stop                   = x86_pmu_stop,
2416         .read                   = x86_pmu_read,
2417
2418         .start_txn              = x86_pmu_start_txn,
2419         .cancel_txn             = x86_pmu_cancel_txn,
2420         .commit_txn             = x86_pmu_commit_txn,
2421
2422         .event_idx              = x86_pmu_event_idx,
2423         .sched_task             = x86_pmu_sched_task,
2424         .swap_task_ctx          = x86_pmu_swap_task_ctx,
2425         .check_period           = x86_pmu_check_period,
2426
2427         .aux_output_match       = x86_pmu_aux_output_match,
2428 };
2429
2430 void arch_perf_update_userpage(struct perf_event *event,
2431                                struct perf_event_mmap_page *userpg, u64 now)
2432 {
2433         struct cyc2ns_data data;
2434         u64 offset;
2435
2436         userpg->cap_user_time = 0;
2437         userpg->cap_user_time_zero = 0;
2438         userpg->cap_user_rdpmc =
2439                 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
2440         userpg->pmc_width = x86_pmu.cntval_bits;
2441
2442         if (!using_native_sched_clock() || !sched_clock_stable())
2443                 return;
2444
2445         cyc2ns_read_begin(&data);
2446
2447         offset = data.cyc2ns_offset + __sched_clock_offset;
2448
2449         /*
2450          * Internal timekeeping for enabled/running/stopped times
2451          * is always in the local_clock domain.
2452          */
2453         userpg->cap_user_time = 1;
2454         userpg->time_mult = data.cyc2ns_mul;
2455         userpg->time_shift = data.cyc2ns_shift;
2456         userpg->time_offset = offset - now;
2457
2458         /*
2459          * cap_user_time_zero doesn't make sense when we're using a different
2460          * time base for the records.
2461          */
2462         if (!event->attr.use_clockid) {
2463                 userpg->cap_user_time_zero = 1;
2464                 userpg->time_zero = offset;
2465         }
2466
2467         cyc2ns_read_end();
2468 }
2469
2470 /*
2471  * Determine whether the regs were taken from an irq/exception handler rather
2472  * than from perf_arch_fetch_caller_regs().
2473  */
2474 static bool perf_hw_regs(struct pt_regs *regs)
2475 {
2476         return regs->flags & X86_EFLAGS_FIXED;
2477 }
2478
2479 void
2480 perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
2481 {
2482         struct unwind_state state;
2483         unsigned long addr;
2484
2485         if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2486                 /* TODO: We don't support guest os callchain now */
2487                 return;
2488         }
2489
2490         if (perf_callchain_store(entry, regs->ip))
2491                 return;
2492
2493         if (perf_hw_regs(regs))
2494                 unwind_start(&state, current, regs, NULL);
2495         else
2496                 unwind_start(&state, current, NULL, (void *)regs->sp);
2497
2498         for (; !unwind_done(&state); unwind_next_frame(&state)) {
2499                 addr = unwind_get_return_address(&state);
2500                 if (!addr || perf_callchain_store(entry, addr))
2501                         return;
2502         }
2503 }
2504
2505 static inline int
2506 valid_user_frame(const void __user *fp, unsigned long size)
2507 {
2508         return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2509 }
2510
2511 static unsigned long get_segment_base(unsigned int segment)
2512 {
2513         struct desc_struct *desc;
2514         unsigned int idx = segment >> 3;
2515
2516         if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
2517 #ifdef CONFIG_MODIFY_LDT_SYSCALL
2518                 struct ldt_struct *ldt;
2519
2520                 /* IRQs are off, so this synchronizes with smp_store_release */
2521                 ldt = READ_ONCE(current->active_mm->context.ldt);
2522                 if (!ldt || idx >= ldt->nr_entries)
2523                         return 0;
2524
2525                 desc = &ldt->entries[idx];
2526 #else
2527                 return 0;
2528 #endif
2529         } else {
2530                 if (idx >= GDT_ENTRIES)
2531                         return 0;
2532
2533                 desc = raw_cpu_ptr(gdt_page.gdt) + idx;
2534         }
2535
2536         return get_desc_base(desc);
2537 }
2538
2539 #ifdef CONFIG_IA32_EMULATION
2540
2541 #include <linux/compat.h>
2542
2543 static inline int
2544 perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
2545 {
2546         /* 32-bit process in 64-bit kernel. */
2547         unsigned long ss_base, cs_base;
2548         struct stack_frame_ia32 frame;
2549         const struct stack_frame_ia32 __user *fp;
2550
2551         if (!test_thread_flag(TIF_IA32))
2552                 return 0;
2553
2554         cs_base = get_segment_base(regs->cs);
2555         ss_base = get_segment_base(regs->ss);
2556
2557         fp = compat_ptr(ss_base + regs->bp);
2558         pagefault_disable();
2559         while (entry->nr < entry->max_stack) {
2560                 if (!valid_user_frame(fp, sizeof(frame)))
2561                         break;
2562
2563                 if (__get_user(frame.next_frame, &fp->next_frame))
2564                         break;
2565                 if (__get_user(frame.return_address, &fp->return_address))
2566                         break;
2567
2568                 perf_callchain_store(entry, cs_base + frame.return_address);
2569                 fp = compat_ptr(ss_base + frame.next_frame);
2570         }
2571         pagefault_enable();
2572         return 1;
2573 }
2574 #else
2575 static inline int
2576 perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
2577 {
2578     return 0;
2579 }
2580 #endif
2581
2582 void
2583 perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
2584 {
2585         struct stack_frame frame;
2586         const struct stack_frame __user *fp;
2587
2588         if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2589                 /* TODO: We don't support guest os callchain now */
2590                 return;
2591         }
2592
2593         /*
2594          * We don't know what to do with VM86 stacks.. ignore them for now.
2595          */
2596         if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2597                 return;
2598
2599         fp = (void __user *)regs->bp;
2600
2601         perf_callchain_store(entry, regs->ip);
2602
2603         if (!nmi_uaccess_okay())
2604                 return;
2605
2606         if (perf_callchain_user32(regs, entry))
2607                 return;
2608
2609         pagefault_disable();
2610         while (entry->nr < entry->max_stack) {
2611                 if (!valid_user_frame(fp, sizeof(frame)))
2612                         break;
2613
2614                 if (__get_user(frame.next_frame, &fp->next_frame))
2615                         break;
2616                 if (__get_user(frame.return_address, &fp->return_address))
2617                         break;
2618
2619                 perf_callchain_store(entry, frame.return_address);
2620                 fp = (void __user *)frame.next_frame;
2621         }
2622         pagefault_enable();
2623 }
2624
2625 /*
2626  * Deal with code segment offsets for the various execution modes:
2627  *
2628  *   VM86 - the good olde 16 bit days, where the linear address is
2629  *          20 bits and we use regs->ip + 0x10 * regs->cs.
2630  *
2631  *   IA32 - Where we need to look at GDT/LDT segment descriptor tables
2632  *          to figure out what the 32bit base address is.
2633  *
2634  *    X32 - has TIF_X32 set, but is running in x86_64
2635  *
2636  * X86_64 - CS,DS,SS,ES are all zero based.
2637  */
2638 static unsigned long code_segment_base(struct pt_regs *regs)
2639 {
2640         /*
2641          * For IA32 we look at the GDT/LDT segment base to convert the
2642          * effective IP to a linear address.
2643          */
2644
2645 #ifdef CONFIG_X86_32
2646         /*
2647          * If we are in VM86 mode, add the segment offset to convert to a
2648          * linear address.
2649          */
2650         if (regs->flags & X86_VM_MASK)
2651                 return 0x10 * regs->cs;
2652
2653         if (user_mode(regs) && regs->cs != __USER_CS)
2654                 return get_segment_base(regs->cs);
2655 #else
2656         if (user_mode(regs) && !user_64bit_mode(regs) &&
2657             regs->cs != __USER32_CS)
2658                 return get_segment_base(regs->cs);
2659 #endif
2660         return 0;
2661 }
2662
2663 unsigned long perf_instruction_pointer(struct pt_regs *regs)
2664 {
2665         if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
2666                 return perf_guest_cbs->get_guest_ip();
2667
2668         return regs->ip + code_segment_base(regs);
2669 }
2670
2671 unsigned long perf_misc_flags(struct pt_regs *regs)
2672 {
2673         int misc = 0;
2674
2675         if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2676                 if (perf_guest_cbs->is_user_mode())
2677                         misc |= PERF_RECORD_MISC_GUEST_USER;
2678                 else
2679                         misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2680         } else {
2681                 if (user_mode(regs))
2682                         misc |= PERF_RECORD_MISC_USER;
2683                 else
2684                         misc |= PERF_RECORD_MISC_KERNEL;
2685         }
2686
2687         if (regs->flags & PERF_EFLAGS_EXACT)
2688                 misc |= PERF_RECORD_MISC_EXACT_IP;
2689
2690         return misc;
2691 }
2692
2693 void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2694 {
2695         cap->version            = x86_pmu.version;
2696         cap->num_counters_gp    = x86_pmu.num_counters;
2697         cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2698         cap->bit_width_gp       = x86_pmu.cntval_bits;
2699         cap->bit_width_fixed    = x86_pmu.cntval_bits;
2700         cap->events_mask        = (unsigned int)x86_pmu.events_maskl;
2701         cap->events_mask_len    = x86_pmu.events_mask_len;
2702 }
2703 EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);