perf/x86: Fix n_pair 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         }
1045
1046         return 0;
1047 }
1048
1049 static void del_nr_metric_event(struct cpu_hw_events *cpuc,
1050                                 struct perf_event *event)
1051 {
1052         if (is_metric_event(event))
1053                 cpuc->n_metric--;
1054 }
1055
1056 static int collect_event(struct cpu_hw_events *cpuc, struct perf_event *event,
1057                          int max_count, int n)
1058 {
1059
1060         if (x86_pmu.intel_cap.perf_metrics && add_nr_metric_event(cpuc, event))
1061                 return -EINVAL;
1062
1063         if (n >= max_count + cpuc->n_metric)
1064                 return -EINVAL;
1065
1066         cpuc->event_list[n] = event;
1067         if (is_counter_pair(&event->hw)) {
1068                 cpuc->n_pair++;
1069                 cpuc->n_txn_pair++;
1070         }
1071
1072         return 0;
1073 }
1074
1075 /*
1076  * dogrp: true if must collect siblings events (group)
1077  * returns total number of events and error code
1078  */
1079 static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
1080 {
1081         struct perf_event *event;
1082         int n, max_count;
1083
1084         max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
1085
1086         /* current number of events already accepted */
1087         n = cpuc->n_events;
1088         if (!cpuc->n_events)
1089                 cpuc->pebs_output = 0;
1090
1091         if (!cpuc->is_fake && leader->attr.precise_ip) {
1092                 /*
1093                  * For PEBS->PT, if !aux_event, the group leader (PT) went
1094                  * away, the group was broken down and this singleton event
1095                  * can't schedule any more.
1096                  */
1097                 if (is_pebs_pt(leader) && !leader->aux_event)
1098                         return -EINVAL;
1099
1100                 /*
1101                  * pebs_output: 0: no PEBS so far, 1: PT, 2: DS
1102                  */
1103                 if (cpuc->pebs_output &&
1104                     cpuc->pebs_output != is_pebs_pt(leader) + 1)
1105                         return -EINVAL;
1106
1107                 cpuc->pebs_output = is_pebs_pt(leader) + 1;
1108         }
1109
1110         if (is_x86_event(leader)) {
1111                 if (collect_event(cpuc, leader, max_count, n))
1112                         return -EINVAL;
1113                 n++;
1114         }
1115
1116         if (!dogrp)
1117                 return n;
1118
1119         for_each_sibling_event(event, leader) {
1120                 if (!is_x86_event(event) || event->state <= PERF_EVENT_STATE_OFF)
1121                         continue;
1122
1123                 if (collect_event(cpuc, event, max_count, n))
1124                         return -EINVAL;
1125
1126                 n++;
1127         }
1128         return n;
1129 }
1130
1131 static inline void x86_assign_hw_event(struct perf_event *event,
1132                                 struct cpu_hw_events *cpuc, int i)
1133 {
1134         struct hw_perf_event *hwc = &event->hw;
1135         int idx;
1136
1137         idx = hwc->idx = cpuc->assign[i];
1138         hwc->last_cpu = smp_processor_id();
1139         hwc->last_tag = ++cpuc->tags[i];
1140
1141         switch (hwc->idx) {
1142         case INTEL_PMC_IDX_FIXED_BTS:
1143         case INTEL_PMC_IDX_FIXED_VLBR:
1144                 hwc->config_base = 0;
1145                 hwc->event_base = 0;
1146                 break;
1147
1148         case INTEL_PMC_IDX_METRIC_BASE ... INTEL_PMC_IDX_METRIC_END:
1149                 /* All the metric events are mapped onto the fixed counter 3. */
1150                 idx = INTEL_PMC_IDX_FIXED_SLOTS;
1151                 /* fall through */
1152         case INTEL_PMC_IDX_FIXED ... INTEL_PMC_IDX_FIXED_BTS-1:
1153                 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
1154                 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 +
1155                                 (idx - INTEL_PMC_IDX_FIXED);
1156                 hwc->event_base_rdpmc = (idx - INTEL_PMC_IDX_FIXED) |
1157                                         INTEL_PMC_FIXED_RDPMC_BASE;
1158                 break;
1159
1160         default:
1161                 hwc->config_base = x86_pmu_config_addr(hwc->idx);
1162                 hwc->event_base  = x86_pmu_event_addr(hwc->idx);
1163                 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
1164                 break;
1165         }
1166 }
1167
1168 /**
1169  * x86_perf_rdpmc_index - Return PMC counter used for event
1170  * @event: the perf_event to which the PMC counter was assigned
1171  *
1172  * The counter assigned to this performance event may change if interrupts
1173  * are enabled. This counter should thus never be used while interrupts are
1174  * enabled. Before this function is used to obtain the assigned counter the
1175  * event should be checked for validity using, for example,
1176  * perf_event_read_local(), within the same interrupt disabled section in
1177  * which this counter is planned to be used.
1178  *
1179  * Return: The index of the performance monitoring counter assigned to
1180  * @perf_event.
1181  */
1182 int x86_perf_rdpmc_index(struct perf_event *event)
1183 {
1184         lockdep_assert_irqs_disabled();
1185
1186         return event->hw.event_base_rdpmc;
1187 }
1188
1189 static inline int match_prev_assignment(struct hw_perf_event *hwc,
1190                                         struct cpu_hw_events *cpuc,
1191                                         int i)
1192 {
1193         return hwc->idx == cpuc->assign[i] &&
1194                 hwc->last_cpu == smp_processor_id() &&
1195                 hwc->last_tag == cpuc->tags[i];
1196 }
1197
1198 static void x86_pmu_start(struct perf_event *event, int flags);
1199
1200 static void x86_pmu_enable(struct pmu *pmu)
1201 {
1202         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1203         struct perf_event *event;
1204         struct hw_perf_event *hwc;
1205         int i, added = cpuc->n_added;
1206
1207         if (!x86_pmu_initialized())
1208                 return;
1209
1210         if (cpuc->enabled)
1211                 return;
1212
1213         if (cpuc->n_added) {
1214                 int n_running = cpuc->n_events - cpuc->n_added;
1215                 /*
1216                  * apply assignment obtained either from
1217                  * hw_perf_group_sched_in() or x86_pmu_enable()
1218                  *
1219                  * step1: save events moving to new counters
1220                  */
1221                 for (i = 0; i < n_running; i++) {
1222                         event = cpuc->event_list[i];
1223                         hwc = &event->hw;
1224
1225                         /*
1226                          * we can avoid reprogramming counter if:
1227                          * - assigned same counter as last time
1228                          * - running on same CPU as last time
1229                          * - no other event has used the counter since
1230                          */
1231                         if (hwc->idx == -1 ||
1232                             match_prev_assignment(hwc, cpuc, i))
1233                                 continue;
1234
1235                         /*
1236                          * Ensure we don't accidentally enable a stopped
1237                          * counter simply because we rescheduled.
1238                          */
1239                         if (hwc->state & PERF_HES_STOPPED)
1240                                 hwc->state |= PERF_HES_ARCH;
1241
1242                         x86_pmu_stop(event, PERF_EF_UPDATE);
1243                 }
1244
1245                 /*
1246                  * step2: reprogram moved events into new counters
1247                  */
1248                 for (i = 0; i < cpuc->n_events; i++) {
1249                         event = cpuc->event_list[i];
1250                         hwc = &event->hw;
1251
1252                         if (!match_prev_assignment(hwc, cpuc, i))
1253                                 x86_assign_hw_event(event, cpuc, i);
1254                         else if (i < n_running)
1255                                 continue;
1256
1257                         if (hwc->state & PERF_HES_ARCH)
1258                                 continue;
1259
1260                         x86_pmu_start(event, PERF_EF_RELOAD);
1261                 }
1262                 cpuc->n_added = 0;
1263                 perf_events_lapic_init();
1264         }
1265
1266         cpuc->enabled = 1;
1267         barrier();
1268
1269         x86_pmu.enable_all(added);
1270 }
1271
1272 static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
1273
1274 /*
1275  * Set the next IRQ period, based on the hwc->period_left value.
1276  * To be called with the event disabled in hw:
1277  */
1278 int x86_perf_event_set_period(struct perf_event *event)
1279 {
1280         struct hw_perf_event *hwc = &event->hw;
1281         s64 left = local64_read(&hwc->period_left);
1282         s64 period = hwc->sample_period;
1283         int ret = 0, idx = hwc->idx;
1284
1285         if (unlikely(!hwc->event_base))
1286                 return 0;
1287
1288         if (unlikely(is_topdown_count(event)) &&
1289             x86_pmu.set_topdown_event_period)
1290                 return x86_pmu.set_topdown_event_period(event);
1291
1292         /*
1293          * If we are way outside a reasonable range then just skip forward:
1294          */
1295         if (unlikely(left <= -period)) {
1296                 left = period;
1297                 local64_set(&hwc->period_left, left);
1298                 hwc->last_period = period;
1299                 ret = 1;
1300         }
1301
1302         if (unlikely(left <= 0)) {
1303                 left += period;
1304                 local64_set(&hwc->period_left, left);
1305                 hwc->last_period = period;
1306                 ret = 1;
1307         }
1308         /*
1309          * Quirk: certain CPUs dont like it if just 1 hw_event is left:
1310          */
1311         if (unlikely(left < 2))
1312                 left = 2;
1313
1314         if (left > x86_pmu.max_period)
1315                 left = x86_pmu.max_period;
1316
1317         if (x86_pmu.limit_period)
1318                 left = x86_pmu.limit_period(event, left);
1319
1320         per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
1321
1322         /*
1323          * The hw event starts counting from this event offset,
1324          * mark it to be able to extra future deltas:
1325          */
1326         local64_set(&hwc->prev_count, (u64)-left);
1327
1328         wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
1329
1330         /*
1331          * Sign extend the Merge event counter's upper 16 bits since
1332          * we currently declare a 48-bit counter width
1333          */
1334         if (is_counter_pair(hwc))
1335                 wrmsrl(x86_pmu_event_addr(idx + 1), 0xffff);
1336
1337         /*
1338          * Due to erratum on certan cpu we need
1339          * a second write to be sure the register
1340          * is updated properly
1341          */
1342         if (x86_pmu.perfctr_second_write) {
1343                 wrmsrl(hwc->event_base,
1344                         (u64)(-left) & x86_pmu.cntval_mask);
1345         }
1346
1347         perf_event_update_userpage(event);
1348
1349         return ret;
1350 }
1351
1352 void x86_pmu_enable_event(struct perf_event *event)
1353 {
1354         if (__this_cpu_read(cpu_hw_events.enabled))
1355                 __x86_pmu_enable_event(&event->hw,
1356                                        ARCH_PERFMON_EVENTSEL_ENABLE);
1357 }
1358
1359 /*
1360  * Add a single event to the PMU.
1361  *
1362  * The event is added to the group of enabled events
1363  * but only if it can be scheduled with existing events.
1364  */
1365 static int x86_pmu_add(struct perf_event *event, int flags)
1366 {
1367         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1368         struct hw_perf_event *hwc;
1369         int assign[X86_PMC_IDX_MAX];
1370         int n, n0, ret;
1371
1372         hwc = &event->hw;
1373
1374         n0 = cpuc->n_events;
1375         ret = n = collect_events(cpuc, event, false);
1376         if (ret < 0)
1377                 goto out;
1378
1379         hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1380         if (!(flags & PERF_EF_START))
1381                 hwc->state |= PERF_HES_ARCH;
1382
1383         /*
1384          * If group events scheduling transaction was started,
1385          * skip the schedulability test here, it will be performed
1386          * at commit time (->commit_txn) as a whole.
1387          *
1388          * If commit fails, we'll call ->del() on all events
1389          * for which ->add() was called.
1390          */
1391         if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
1392                 goto done_collect;
1393
1394         ret = x86_pmu.schedule_events(cpuc, n, assign);
1395         if (ret)
1396                 goto out;
1397         /*
1398          * copy new assignment, now we know it is possible
1399          * will be used by hw_perf_enable()
1400          */
1401         memcpy(cpuc->assign, assign, n*sizeof(int));
1402
1403 done_collect:
1404         /*
1405          * Commit the collect_events() state. See x86_pmu_del() and
1406          * x86_pmu_*_txn().
1407          */
1408         cpuc->n_events = n;
1409         cpuc->n_added += n - n0;
1410         cpuc->n_txn += n - n0;
1411
1412         if (x86_pmu.add) {
1413                 /*
1414                  * This is before x86_pmu_enable() will call x86_pmu_start(),
1415                  * so we enable LBRs before an event needs them etc..
1416                  */
1417                 x86_pmu.add(event);
1418         }
1419
1420         ret = 0;
1421 out:
1422         return ret;
1423 }
1424
1425 static void x86_pmu_start(struct perf_event *event, int flags)
1426 {
1427         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1428         int idx = event->hw.idx;
1429
1430         if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1431                 return;
1432
1433         if (WARN_ON_ONCE(idx == -1))
1434                 return;
1435
1436         if (flags & PERF_EF_RELOAD) {
1437                 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1438                 x86_perf_event_set_period(event);
1439         }
1440
1441         event->hw.state = 0;
1442
1443         cpuc->events[idx] = event;
1444         __set_bit(idx, cpuc->active_mask);
1445         __set_bit(idx, cpuc->running);
1446         x86_pmu.enable(event);
1447         perf_event_update_userpage(event);
1448 }
1449
1450 void perf_event_print_debug(void)
1451 {
1452         u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
1453         u64 pebs, debugctl;
1454         struct cpu_hw_events *cpuc;
1455         unsigned long flags;
1456         int cpu, idx;
1457
1458         if (!x86_pmu.num_counters)
1459                 return;
1460
1461         local_irq_save(flags);
1462
1463         cpu = smp_processor_id();
1464         cpuc = &per_cpu(cpu_hw_events, cpu);
1465
1466         if (x86_pmu.version >= 2) {
1467                 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1468                 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1469                 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1470                 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
1471
1472                 pr_info("\n");
1473                 pr_info("CPU#%d: ctrl:       %016llx\n", cpu, ctrl);
1474                 pr_info("CPU#%d: status:     %016llx\n", cpu, status);
1475                 pr_info("CPU#%d: overflow:   %016llx\n", cpu, overflow);
1476                 pr_info("CPU#%d: fixed:      %016llx\n", cpu, fixed);
1477                 if (x86_pmu.pebs_constraints) {
1478                         rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
1479                         pr_info("CPU#%d: pebs:       %016llx\n", cpu, pebs);
1480                 }
1481                 if (x86_pmu.lbr_nr) {
1482                         rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
1483                         pr_info("CPU#%d: debugctl:   %016llx\n", cpu, debugctl);
1484                 }
1485         }
1486         pr_info("CPU#%d: active:     %016llx\n", cpu, *(u64 *)cpuc->active_mask);
1487
1488         for (idx = 0; idx < x86_pmu.num_counters; idx++) {
1489                 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1490                 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
1491
1492                 prev_left = per_cpu(pmc_prev_left[idx], cpu);
1493
1494                 pr_info("CPU#%d:   gen-PMC%d ctrl:  %016llx\n",
1495                         cpu, idx, pmc_ctrl);
1496                 pr_info("CPU#%d:   gen-PMC%d count: %016llx\n",
1497                         cpu, idx, pmc_count);
1498                 pr_info("CPU#%d:   gen-PMC%d left:  %016llx\n",
1499                         cpu, idx, prev_left);
1500         }
1501         for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
1502                 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1503
1504                 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
1505                         cpu, idx, pmc_count);
1506         }
1507         local_irq_restore(flags);
1508 }
1509
1510 void x86_pmu_stop(struct perf_event *event, int flags)
1511 {
1512         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1513         struct hw_perf_event *hwc = &event->hw;
1514
1515         if (test_bit(hwc->idx, cpuc->active_mask)) {
1516                 x86_pmu.disable(event);
1517                 __clear_bit(hwc->idx, cpuc->active_mask);
1518                 cpuc->events[hwc->idx] = NULL;
1519                 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1520                 hwc->state |= PERF_HES_STOPPED;
1521         }
1522
1523         if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1524                 /*
1525                  * Drain the remaining delta count out of a event
1526                  * that we are disabling:
1527                  */
1528                 x86_perf_event_update(event);
1529                 hwc->state |= PERF_HES_UPTODATE;
1530         }
1531 }
1532
1533 static void x86_pmu_del(struct perf_event *event, int flags)
1534 {
1535         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1536         int i;
1537
1538         /*
1539          * If we're called during a txn, we only need to undo x86_pmu.add.
1540          * The events never got scheduled and ->cancel_txn will truncate
1541          * the event_list.
1542          *
1543          * XXX assumes any ->del() called during a TXN will only be on
1544          * an event added during that same TXN.
1545          */
1546         if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
1547                 goto do_del;
1548
1549         /*
1550          * Not a TXN, therefore cleanup properly.
1551          */
1552         x86_pmu_stop(event, PERF_EF_UPDATE);
1553
1554         for (i = 0; i < cpuc->n_events; i++) {
1555                 if (event == cpuc->event_list[i])
1556                         break;
1557         }
1558
1559         if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1560                 return;
1561
1562         /* If we have a newly added event; make sure to decrease n_added. */
1563         if (i >= cpuc->n_events - cpuc->n_added)
1564                 --cpuc->n_added;
1565
1566         if (x86_pmu.put_event_constraints)
1567                 x86_pmu.put_event_constraints(cpuc, event);
1568
1569         /* Delete the array entry. */
1570         while (++i < cpuc->n_events) {
1571                 cpuc->event_list[i-1] = cpuc->event_list[i];
1572                 cpuc->event_constraint[i-1] = cpuc->event_constraint[i];
1573         }
1574         cpuc->event_constraint[i-1] = NULL;
1575         --cpuc->n_events;
1576         if (x86_pmu.intel_cap.perf_metrics)
1577                 del_nr_metric_event(cpuc, event);
1578
1579         perf_event_update_userpage(event);
1580
1581 do_del:
1582         if (x86_pmu.del) {
1583                 /*
1584                  * This is after x86_pmu_stop(); so we disable LBRs after any
1585                  * event can need them etc..
1586                  */
1587                 x86_pmu.del(event);
1588         }
1589 }
1590
1591 int x86_pmu_handle_irq(struct pt_regs *regs)
1592 {
1593         struct perf_sample_data data;
1594         struct cpu_hw_events *cpuc;
1595         struct perf_event *event;
1596         int idx, handled = 0;
1597         u64 val;
1598
1599         cpuc = this_cpu_ptr(&cpu_hw_events);
1600
1601         /*
1602          * Some chipsets need to unmask the LVTPC in a particular spot
1603          * inside the nmi handler.  As a result, the unmasking was pushed
1604          * into all the nmi handlers.
1605          *
1606          * This generic handler doesn't seem to have any issues where the
1607          * unmasking occurs so it was left at the top.
1608          */
1609         apic_write(APIC_LVTPC, APIC_DM_NMI);
1610
1611         for (idx = 0; idx < x86_pmu.num_counters; idx++) {
1612                 if (!test_bit(idx, cpuc->active_mask))
1613                         continue;
1614
1615                 event = cpuc->events[idx];
1616
1617                 val = x86_perf_event_update(event);
1618                 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
1619                         continue;
1620
1621                 /*
1622                  * event overflow
1623                  */
1624                 handled++;
1625                 perf_sample_data_init(&data, 0, event->hw.last_period);
1626
1627                 if (!x86_perf_event_set_period(event))
1628                         continue;
1629
1630                 if (perf_event_overflow(event, &data, regs))
1631                         x86_pmu_stop(event, 0);
1632         }
1633
1634         if (handled)
1635                 inc_irq_stat(apic_perf_irqs);
1636
1637         return handled;
1638 }
1639
1640 void perf_events_lapic_init(void)
1641 {
1642         if (!x86_pmu.apic || !x86_pmu_initialized())
1643                 return;
1644
1645         /*
1646          * Always use NMI for PMU
1647          */
1648         apic_write(APIC_LVTPC, APIC_DM_NMI);
1649 }
1650
1651 static int
1652 perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
1653 {
1654         u64 start_clock;
1655         u64 finish_clock;
1656         int ret;
1657
1658         /*
1659          * All PMUs/events that share this PMI handler should make sure to
1660          * increment active_events for their events.
1661          */
1662         if (!atomic_read(&active_events))
1663                 return NMI_DONE;
1664
1665         start_clock = sched_clock();
1666         ret = x86_pmu.handle_irq(regs);
1667         finish_clock = sched_clock();
1668
1669         perf_sample_event_took(finish_clock - start_clock);
1670
1671         return ret;
1672 }
1673 NOKPROBE_SYMBOL(perf_event_nmi_handler);
1674
1675 struct event_constraint emptyconstraint;
1676 struct event_constraint unconstrained;
1677
1678 static int x86_pmu_prepare_cpu(unsigned int cpu)
1679 {
1680         struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1681         int i;
1682
1683         for (i = 0 ; i < X86_PERF_KFREE_MAX; i++)
1684                 cpuc->kfree_on_online[i] = NULL;
1685         if (x86_pmu.cpu_prepare)
1686                 return x86_pmu.cpu_prepare(cpu);
1687         return 0;
1688 }
1689
1690 static int x86_pmu_dead_cpu(unsigned int cpu)
1691 {
1692         if (x86_pmu.cpu_dead)
1693                 x86_pmu.cpu_dead(cpu);
1694         return 0;
1695 }
1696
1697 static int x86_pmu_online_cpu(unsigned int cpu)
1698 {
1699         struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1700         int i;
1701
1702         for (i = 0 ; i < X86_PERF_KFREE_MAX; i++) {
1703                 kfree(cpuc->kfree_on_online[i]);
1704                 cpuc->kfree_on_online[i] = NULL;
1705         }
1706         return 0;
1707 }
1708
1709 static int x86_pmu_starting_cpu(unsigned int cpu)
1710 {
1711         if (x86_pmu.cpu_starting)
1712                 x86_pmu.cpu_starting(cpu);
1713         return 0;
1714 }
1715
1716 static int x86_pmu_dying_cpu(unsigned int cpu)
1717 {
1718         if (x86_pmu.cpu_dying)
1719                 x86_pmu.cpu_dying(cpu);
1720         return 0;
1721 }
1722
1723 static void __init pmu_check_apic(void)
1724 {
1725         if (boot_cpu_has(X86_FEATURE_APIC))
1726                 return;
1727
1728         x86_pmu.apic = 0;
1729         pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1730         pr_info("no hardware sampling interrupt available.\n");
1731
1732         /*
1733          * If we have a PMU initialized but no APIC
1734          * interrupts, we cannot sample hardware
1735          * events (user-space has to fall back and
1736          * sample via a hrtimer based software event):
1737          */
1738         pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1739
1740 }
1741
1742 static struct attribute_group x86_pmu_format_group __ro_after_init = {
1743         .name = "format",
1744         .attrs = NULL,
1745 };
1746
1747 ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr, char *page)
1748 {
1749         struct perf_pmu_events_attr *pmu_attr =
1750                 container_of(attr, struct perf_pmu_events_attr, attr);
1751         u64 config = 0;
1752
1753         if (pmu_attr->id < x86_pmu.max_events)
1754                 config = x86_pmu.event_map(pmu_attr->id);
1755
1756         /* string trumps id */
1757         if (pmu_attr->event_str)
1758                 return sprintf(page, "%s", pmu_attr->event_str);
1759
1760         return x86_pmu.events_sysfs_show(page, config);
1761 }
1762 EXPORT_SYMBOL_GPL(events_sysfs_show);
1763
1764 ssize_t events_ht_sysfs_show(struct device *dev, struct device_attribute *attr,
1765                           char *page)
1766 {
1767         struct perf_pmu_events_ht_attr *pmu_attr =
1768                 container_of(attr, struct perf_pmu_events_ht_attr, attr);
1769
1770         /*
1771          * Report conditional events depending on Hyper-Threading.
1772          *
1773          * This is overly conservative as usually the HT special
1774          * handling is not needed if the other CPU thread is idle.
1775          *
1776          * Note this does not (and cannot) handle the case when thread
1777          * siblings are invisible, for example with virtualization
1778          * if they are owned by some other guest.  The user tool
1779          * has to re-read when a thread sibling gets onlined later.
1780          */
1781         return sprintf(page, "%s",
1782                         topology_max_smt_threads() > 1 ?
1783                         pmu_attr->event_str_ht :
1784                         pmu_attr->event_str_noht);
1785 }
1786
1787 EVENT_ATTR(cpu-cycles,                  CPU_CYCLES              );
1788 EVENT_ATTR(instructions,                INSTRUCTIONS            );
1789 EVENT_ATTR(cache-references,            CACHE_REFERENCES        );
1790 EVENT_ATTR(cache-misses,                CACHE_MISSES            );
1791 EVENT_ATTR(branch-instructions,         BRANCH_INSTRUCTIONS     );
1792 EVENT_ATTR(branch-misses,               BRANCH_MISSES           );
1793 EVENT_ATTR(bus-cycles,                  BUS_CYCLES              );
1794 EVENT_ATTR(stalled-cycles-frontend,     STALLED_CYCLES_FRONTEND );
1795 EVENT_ATTR(stalled-cycles-backend,      STALLED_CYCLES_BACKEND  );
1796 EVENT_ATTR(ref-cycles,                  REF_CPU_CYCLES          );
1797
1798 static struct attribute *empty_attrs;
1799
1800 static struct attribute *events_attr[] = {
1801         EVENT_PTR(CPU_CYCLES),
1802         EVENT_PTR(INSTRUCTIONS),
1803         EVENT_PTR(CACHE_REFERENCES),
1804         EVENT_PTR(CACHE_MISSES),
1805         EVENT_PTR(BRANCH_INSTRUCTIONS),
1806         EVENT_PTR(BRANCH_MISSES),
1807         EVENT_PTR(BUS_CYCLES),
1808         EVENT_PTR(STALLED_CYCLES_FRONTEND),
1809         EVENT_PTR(STALLED_CYCLES_BACKEND),
1810         EVENT_PTR(REF_CPU_CYCLES),
1811         NULL,
1812 };
1813
1814 /*
1815  * Remove all undefined events (x86_pmu.event_map(id) == 0)
1816  * out of events_attr attributes.
1817  */
1818 static umode_t
1819 is_visible(struct kobject *kobj, struct attribute *attr, int idx)
1820 {
1821         struct perf_pmu_events_attr *pmu_attr;
1822
1823         if (idx >= x86_pmu.max_events)
1824                 return 0;
1825
1826         pmu_attr = container_of(attr, struct perf_pmu_events_attr, attr.attr);
1827         /* str trumps id */
1828         return pmu_attr->event_str || x86_pmu.event_map(idx) ? attr->mode : 0;
1829 }
1830
1831 static struct attribute_group x86_pmu_events_group __ro_after_init = {
1832         .name = "events",
1833         .attrs = events_attr,
1834         .is_visible = is_visible,
1835 };
1836
1837 ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
1838 {
1839         u64 umask  = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1840         u64 cmask  = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1841         bool edge  = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1842         bool pc    = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1843         bool any   = (config & ARCH_PERFMON_EVENTSEL_ANY);
1844         bool inv   = (config & ARCH_PERFMON_EVENTSEL_INV);
1845         ssize_t ret;
1846
1847         /*
1848         * We have whole page size to spend and just little data
1849         * to write, so we can safely use sprintf.
1850         */
1851         ret = sprintf(page, "event=0x%02llx", event);
1852
1853         if (umask)
1854                 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1855
1856         if (edge)
1857                 ret += sprintf(page + ret, ",edge");
1858
1859         if (pc)
1860                 ret += sprintf(page + ret, ",pc");
1861
1862         if (any)
1863                 ret += sprintf(page + ret, ",any");
1864
1865         if (inv)
1866                 ret += sprintf(page + ret, ",inv");
1867
1868         if (cmask)
1869                 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1870
1871         ret += sprintf(page + ret, "\n");
1872
1873         return ret;
1874 }
1875
1876 static struct attribute_group x86_pmu_attr_group;
1877 static struct attribute_group x86_pmu_caps_group;
1878
1879 static int __init init_hw_perf_events(void)
1880 {
1881         struct x86_pmu_quirk *quirk;
1882         int err;
1883
1884         pr_info("Performance Events: ");
1885
1886         switch (boot_cpu_data.x86_vendor) {
1887         case X86_VENDOR_INTEL:
1888                 err = intel_pmu_init();
1889                 break;
1890         case X86_VENDOR_AMD:
1891                 err = amd_pmu_init();
1892                 break;
1893         case X86_VENDOR_HYGON:
1894                 err = amd_pmu_init();
1895                 x86_pmu.name = "HYGON";
1896                 break;
1897         case X86_VENDOR_ZHAOXIN:
1898         case X86_VENDOR_CENTAUR:
1899                 err = zhaoxin_pmu_init();
1900                 break;
1901         default:
1902                 err = -ENOTSUPP;
1903         }
1904         if (err != 0) {
1905                 pr_cont("no PMU driver, software events only.\n");
1906                 return 0;
1907         }
1908
1909         pmu_check_apic();
1910
1911         /* sanity check that the hardware exists or is emulated */
1912         if (!check_hw_exists())
1913                 return 0;
1914
1915         pr_cont("%s PMU driver.\n", x86_pmu.name);
1916
1917         x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1918
1919         for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1920                 quirk->func();
1921
1922         if (!x86_pmu.intel_ctrl)
1923                 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
1924
1925         perf_events_lapic_init();
1926         register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
1927
1928         unconstrained = (struct event_constraint)
1929                 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
1930                                    0, x86_pmu.num_counters, 0, 0);
1931
1932         x86_pmu_format_group.attrs = x86_pmu.format_attrs;
1933
1934         if (!x86_pmu.events_sysfs_show)
1935                 x86_pmu_events_group.attrs = &empty_attrs;
1936
1937         pmu.attr_update = x86_pmu.attr_update;
1938
1939         pr_info("... version:                %d\n",     x86_pmu.version);
1940         pr_info("... bit width:              %d\n",     x86_pmu.cntval_bits);
1941         pr_info("... generic registers:      %d\n",     x86_pmu.num_counters);
1942         pr_info("... value mask:             %016Lx\n", x86_pmu.cntval_mask);
1943         pr_info("... max period:             %016Lx\n", x86_pmu.max_period);
1944         pr_info("... fixed-purpose events:   %d\n",     x86_pmu.num_counters_fixed);
1945         pr_info("... event mask:             %016Lx\n", x86_pmu.intel_ctrl);
1946
1947         /*
1948          * Install callbacks. Core will call them for each online
1949          * cpu.
1950          */
1951         err = cpuhp_setup_state(CPUHP_PERF_X86_PREPARE, "perf/x86:prepare",
1952                                 x86_pmu_prepare_cpu, x86_pmu_dead_cpu);
1953         if (err)
1954                 return err;
1955
1956         err = cpuhp_setup_state(CPUHP_AP_PERF_X86_STARTING,
1957                                 "perf/x86:starting", x86_pmu_starting_cpu,
1958                                 x86_pmu_dying_cpu);
1959         if (err)
1960                 goto out;
1961
1962         err = cpuhp_setup_state(CPUHP_AP_PERF_X86_ONLINE, "perf/x86:online",
1963                                 x86_pmu_online_cpu, NULL);
1964         if (err)
1965                 goto out1;
1966
1967         err = perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
1968         if (err)
1969                 goto out2;
1970
1971         return 0;
1972
1973 out2:
1974         cpuhp_remove_state(CPUHP_AP_PERF_X86_ONLINE);
1975 out1:
1976         cpuhp_remove_state(CPUHP_AP_PERF_X86_STARTING);
1977 out:
1978         cpuhp_remove_state(CPUHP_PERF_X86_PREPARE);
1979         return err;
1980 }
1981 early_initcall(init_hw_perf_events);
1982
1983 static inline void x86_pmu_read(struct perf_event *event)
1984 {
1985         if (x86_pmu.read)
1986                 return x86_pmu.read(event);
1987         x86_perf_event_update(event);
1988 }
1989
1990 /*
1991  * Start group events scheduling transaction
1992  * Set the flag to make pmu::enable() not perform the
1993  * schedulability test, it will be performed at commit time
1994  *
1995  * We only support PERF_PMU_TXN_ADD transactions. Save the
1996  * transaction flags but otherwise ignore non-PERF_PMU_TXN_ADD
1997  * transactions.
1998  */
1999 static void x86_pmu_start_txn(struct pmu *pmu, unsigned int txn_flags)
2000 {
2001         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2002
2003         WARN_ON_ONCE(cpuc->txn_flags);          /* txn already in flight */
2004
2005         cpuc->txn_flags = txn_flags;
2006         if (txn_flags & ~PERF_PMU_TXN_ADD)
2007                 return;
2008
2009         perf_pmu_disable(pmu);
2010         __this_cpu_write(cpu_hw_events.n_txn, 0);
2011         __this_cpu_write(cpu_hw_events.n_txn_pair, 0);
2012 }
2013
2014 /*
2015  * Stop group events scheduling transaction
2016  * Clear the flag and pmu::enable() will perform the
2017  * schedulability test.
2018  */
2019 static void x86_pmu_cancel_txn(struct pmu *pmu)
2020 {
2021         unsigned int txn_flags;
2022         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2023
2024         WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
2025
2026         txn_flags = cpuc->txn_flags;
2027         cpuc->txn_flags = 0;
2028         if (txn_flags & ~PERF_PMU_TXN_ADD)
2029                 return;
2030
2031         /*
2032          * Truncate collected array by the number of events added in this
2033          * transaction. See x86_pmu_add() and x86_pmu_*_txn().
2034          */
2035         __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
2036         __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
2037         __this_cpu_sub(cpu_hw_events.n_pair, __this_cpu_read(cpu_hw_events.n_txn_pair));
2038         perf_pmu_enable(pmu);
2039 }
2040
2041 /*
2042  * Commit group events scheduling transaction
2043  * Perform the group schedulability test as a whole
2044  * Return 0 if success
2045  *
2046  * Does not cancel the transaction on failure; expects the caller to do this.
2047  */
2048 static int x86_pmu_commit_txn(struct pmu *pmu)
2049 {
2050         struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
2051         int assign[X86_PMC_IDX_MAX];
2052         int n, ret;
2053
2054         WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
2055
2056         if (cpuc->txn_flags & ~PERF_PMU_TXN_ADD) {
2057                 cpuc->txn_flags = 0;
2058                 return 0;
2059         }
2060
2061         n = cpuc->n_events;
2062
2063         if (!x86_pmu_initialized())
2064                 return -EAGAIN;
2065
2066         ret = x86_pmu.schedule_events(cpuc, n, assign);
2067         if (ret)
2068                 return ret;
2069
2070         /*
2071          * copy new assignment, now we know it is possible
2072          * will be used by hw_perf_enable()
2073          */
2074         memcpy(cpuc->assign, assign, n*sizeof(int));
2075
2076         cpuc->txn_flags = 0;
2077         perf_pmu_enable(pmu);
2078         return 0;
2079 }
2080 /*
2081  * a fake_cpuc is used to validate event groups. Due to
2082  * the extra reg logic, we need to also allocate a fake
2083  * per_core and per_cpu structure. Otherwise, group events
2084  * using extra reg may conflict without the kernel being
2085  * able to catch this when the last event gets added to
2086  * the group.
2087  */
2088 static void free_fake_cpuc(struct cpu_hw_events *cpuc)
2089 {
2090         intel_cpuc_finish(cpuc);
2091         kfree(cpuc);
2092 }
2093
2094 static struct cpu_hw_events *allocate_fake_cpuc(void)
2095 {
2096         struct cpu_hw_events *cpuc;
2097         int cpu = raw_smp_processor_id();
2098
2099         cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
2100         if (!cpuc)
2101                 return ERR_PTR(-ENOMEM);
2102         cpuc->is_fake = 1;
2103
2104         if (intel_cpuc_prepare(cpuc, cpu))
2105                 goto error;
2106
2107         return cpuc;
2108 error:
2109         free_fake_cpuc(cpuc);
2110         return ERR_PTR(-ENOMEM);
2111 }
2112
2113 /*
2114  * validate that we can schedule this event
2115  */
2116 static int validate_event(struct perf_event *event)
2117 {
2118         struct cpu_hw_events *fake_cpuc;
2119         struct event_constraint *c;
2120         int ret = 0;
2121
2122         fake_cpuc = allocate_fake_cpuc();
2123         if (IS_ERR(fake_cpuc))
2124                 return PTR_ERR(fake_cpuc);
2125
2126         c = x86_pmu.get_event_constraints(fake_cpuc, 0, event);
2127
2128         if (!c || !c->weight)
2129                 ret = -EINVAL;
2130
2131         if (x86_pmu.put_event_constraints)
2132                 x86_pmu.put_event_constraints(fake_cpuc, event);
2133
2134         free_fake_cpuc(fake_cpuc);
2135
2136         return ret;
2137 }
2138
2139 /*
2140  * validate a single event group
2141  *
2142  * validation include:
2143  *      - check events are compatible which each other
2144  *      - events do not compete for the same counter
2145  *      - number of events <= number of counters
2146  *
2147  * validation ensures the group can be loaded onto the
2148  * PMU if it was the only group available.
2149  */
2150 static int validate_group(struct perf_event *event)
2151 {
2152         struct perf_event *leader = event->group_leader;
2153         struct cpu_hw_events *fake_cpuc;
2154         int ret = -EINVAL, n;
2155
2156         fake_cpuc = allocate_fake_cpuc();
2157         if (IS_ERR(fake_cpuc))
2158                 return PTR_ERR(fake_cpuc);
2159         /*
2160          * the event is not yet connected with its
2161          * siblings therefore we must first collect
2162          * existing siblings, then add the new event
2163          * before we can simulate the scheduling
2164          */
2165         n = collect_events(fake_cpuc, leader, true);
2166         if (n < 0)
2167                 goto out;
2168
2169         fake_cpuc->n_events = n;
2170         n = collect_events(fake_cpuc, event, false);
2171         if (n < 0)
2172                 goto out;
2173
2174         fake_cpuc->n_events = 0;
2175         ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
2176
2177 out:
2178         free_fake_cpuc(fake_cpuc);
2179         return ret;
2180 }
2181
2182 static int x86_pmu_event_init(struct perf_event *event)
2183 {
2184         struct pmu *tmp;
2185         int err;
2186
2187         switch (event->attr.type) {
2188         case PERF_TYPE_RAW:
2189         case PERF_TYPE_HARDWARE:
2190         case PERF_TYPE_HW_CACHE:
2191                 break;
2192
2193         default:
2194                 return -ENOENT;
2195         }
2196
2197         err = __x86_pmu_event_init(event);
2198         if (!err) {
2199                 /*
2200                  * we temporarily connect event to its pmu
2201                  * such that validate_group() can classify
2202                  * it as an x86 event using is_x86_event()
2203                  */
2204                 tmp = event->pmu;
2205                 event->pmu = &pmu;
2206
2207                 if (event->group_leader != event)
2208                         err = validate_group(event);
2209                 else
2210                         err = validate_event(event);
2211
2212                 event->pmu = tmp;
2213         }
2214         if (err) {
2215                 if (event->destroy)
2216                         event->destroy(event);
2217         }
2218
2219         if (READ_ONCE(x86_pmu.attr_rdpmc) &&
2220             !(event->hw.flags & PERF_X86_EVENT_LARGE_PEBS))
2221                 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
2222
2223         return err;
2224 }
2225
2226 static void x86_pmu_event_mapped(struct perf_event *event, struct mm_struct *mm)
2227 {
2228         if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2229                 return;
2230
2231         /*
2232          * This function relies on not being called concurrently in two
2233          * tasks in the same mm.  Otherwise one task could observe
2234          * perf_rdpmc_allowed > 1 and return all the way back to
2235          * userspace with CR4.PCE clear while another task is still
2236          * doing on_each_cpu_mask() to propagate CR4.PCE.
2237          *
2238          * For now, this can't happen because all callers hold mmap_lock
2239          * for write.  If this changes, we'll need a different solution.
2240          */
2241         mmap_assert_write_locked(mm);
2242
2243         if (atomic_inc_return(&mm->context.perf_rdpmc_allowed) == 1)
2244                 on_each_cpu_mask(mm_cpumask(mm), cr4_update_pce, NULL, 1);
2245 }
2246
2247 static void x86_pmu_event_unmapped(struct perf_event *event, struct mm_struct *mm)
2248 {
2249
2250         if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2251                 return;
2252
2253         if (atomic_dec_and_test(&mm->context.perf_rdpmc_allowed))
2254                 on_each_cpu_mask(mm_cpumask(mm), cr4_update_pce, NULL, 1);
2255 }
2256
2257 static int x86_pmu_event_idx(struct perf_event *event)
2258 {
2259         struct hw_perf_event *hwc = &event->hw;
2260
2261         if (!(hwc->flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2262                 return 0;
2263
2264         if (is_metric_idx(hwc->idx))
2265                 return INTEL_PMC_FIXED_RDPMC_METRICS + 1;
2266         else
2267                 return hwc->event_base_rdpmc + 1;
2268 }
2269
2270 static ssize_t get_attr_rdpmc(struct device *cdev,
2271                               struct device_attribute *attr,
2272                               char *buf)
2273 {
2274         return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
2275 }
2276
2277 static ssize_t set_attr_rdpmc(struct device *cdev,
2278                               struct device_attribute *attr,
2279                               const char *buf, size_t count)
2280 {
2281         unsigned long val;
2282         ssize_t ret;
2283
2284         ret = kstrtoul(buf, 0, &val);
2285         if (ret)
2286                 return ret;
2287
2288         if (val > 2)
2289                 return -EINVAL;
2290
2291         if (x86_pmu.attr_rdpmc_broken)
2292                 return -ENOTSUPP;
2293
2294         if (val != x86_pmu.attr_rdpmc) {
2295                 /*
2296                  * Changing into or out of never available or always available,
2297                  * aka perf-event-bypassing mode. This path is extremely slow,
2298                  * but only root can trigger it, so it's okay.
2299                  */
2300                 if (val == 0)
2301                         static_branch_inc(&rdpmc_never_available_key);
2302                 else if (x86_pmu.attr_rdpmc == 0)
2303                         static_branch_dec(&rdpmc_never_available_key);
2304
2305                 if (val == 2)
2306                         static_branch_inc(&rdpmc_always_available_key);
2307                 else if (x86_pmu.attr_rdpmc == 2)
2308                         static_branch_dec(&rdpmc_always_available_key);
2309
2310                 on_each_cpu(cr4_update_pce, NULL, 1);
2311                 x86_pmu.attr_rdpmc = val;
2312         }
2313
2314         return count;
2315 }
2316
2317 static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
2318
2319 static struct attribute *x86_pmu_attrs[] = {
2320         &dev_attr_rdpmc.attr,
2321         NULL,
2322 };
2323
2324 static struct attribute_group x86_pmu_attr_group __ro_after_init = {
2325         .attrs = x86_pmu_attrs,
2326 };
2327
2328 static ssize_t max_precise_show(struct device *cdev,
2329                                   struct device_attribute *attr,
2330                                   char *buf)
2331 {
2332         return snprintf(buf, PAGE_SIZE, "%d\n", x86_pmu_max_precise());
2333 }
2334
2335 static DEVICE_ATTR_RO(max_precise);
2336
2337 static struct attribute *x86_pmu_caps_attrs[] = {
2338         &dev_attr_max_precise.attr,
2339         NULL
2340 };
2341
2342 static struct attribute_group x86_pmu_caps_group __ro_after_init = {
2343         .name = "caps",
2344         .attrs = x86_pmu_caps_attrs,
2345 };
2346
2347 static const struct attribute_group *x86_pmu_attr_groups[] = {
2348         &x86_pmu_attr_group,
2349         &x86_pmu_format_group,
2350         &x86_pmu_events_group,
2351         &x86_pmu_caps_group,
2352         NULL,
2353 };
2354
2355 static void x86_pmu_sched_task(struct perf_event_context *ctx, bool sched_in)
2356 {
2357         if (x86_pmu.sched_task)
2358                 x86_pmu.sched_task(ctx, sched_in);
2359 }
2360
2361 static void x86_pmu_swap_task_ctx(struct perf_event_context *prev,
2362                                   struct perf_event_context *next)
2363 {
2364         if (x86_pmu.swap_task_ctx)
2365                 x86_pmu.swap_task_ctx(prev, next);
2366 }
2367
2368 void perf_check_microcode(void)
2369 {
2370         if (x86_pmu.check_microcode)
2371                 x86_pmu.check_microcode();
2372 }
2373
2374 static int x86_pmu_check_period(struct perf_event *event, u64 value)
2375 {
2376         if (x86_pmu.check_period && x86_pmu.check_period(event, value))
2377                 return -EINVAL;
2378
2379         if (value && x86_pmu.limit_period) {
2380                 if (x86_pmu.limit_period(event, value) > value)
2381                         return -EINVAL;
2382         }
2383
2384         return 0;
2385 }
2386
2387 static int x86_pmu_aux_output_match(struct perf_event *event)
2388 {
2389         if (!(pmu.capabilities & PERF_PMU_CAP_AUX_OUTPUT))
2390                 return 0;
2391
2392         if (x86_pmu.aux_output_match)
2393                 return x86_pmu.aux_output_match(event);
2394
2395         return 0;
2396 }
2397
2398 static struct pmu pmu = {
2399         .pmu_enable             = x86_pmu_enable,
2400         .pmu_disable            = x86_pmu_disable,
2401
2402         .attr_groups            = x86_pmu_attr_groups,
2403
2404         .event_init             = x86_pmu_event_init,
2405
2406         .event_mapped           = x86_pmu_event_mapped,
2407         .event_unmapped         = x86_pmu_event_unmapped,
2408
2409         .add                    = x86_pmu_add,
2410         .del                    = x86_pmu_del,
2411         .start                  = x86_pmu_start,
2412         .stop                   = x86_pmu_stop,
2413         .read                   = x86_pmu_read,
2414
2415         .start_txn              = x86_pmu_start_txn,
2416         .cancel_txn             = x86_pmu_cancel_txn,
2417         .commit_txn             = x86_pmu_commit_txn,
2418
2419         .event_idx              = x86_pmu_event_idx,
2420         .sched_task             = x86_pmu_sched_task,
2421         .swap_task_ctx          = x86_pmu_swap_task_ctx,
2422         .check_period           = x86_pmu_check_period,
2423
2424         .aux_output_match       = x86_pmu_aux_output_match,
2425 };
2426
2427 void arch_perf_update_userpage(struct perf_event *event,
2428                                struct perf_event_mmap_page *userpg, u64 now)
2429 {
2430         struct cyc2ns_data data;
2431         u64 offset;
2432
2433         userpg->cap_user_time = 0;
2434         userpg->cap_user_time_zero = 0;
2435         userpg->cap_user_rdpmc =
2436                 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
2437         userpg->pmc_width = x86_pmu.cntval_bits;
2438
2439         if (!using_native_sched_clock() || !sched_clock_stable())
2440                 return;
2441
2442         cyc2ns_read_begin(&data);
2443
2444         offset = data.cyc2ns_offset + __sched_clock_offset;
2445
2446         /*
2447          * Internal timekeeping for enabled/running/stopped times
2448          * is always in the local_clock domain.
2449          */
2450         userpg->cap_user_time = 1;
2451         userpg->time_mult = data.cyc2ns_mul;
2452         userpg->time_shift = data.cyc2ns_shift;
2453         userpg->time_offset = offset - now;
2454
2455         /*
2456          * cap_user_time_zero doesn't make sense when we're using a different
2457          * time base for the records.
2458          */
2459         if (!event->attr.use_clockid) {
2460                 userpg->cap_user_time_zero = 1;
2461                 userpg->time_zero = offset;
2462         }
2463
2464         cyc2ns_read_end();
2465 }
2466
2467 /*
2468  * Determine whether the regs were taken from an irq/exception handler rather
2469  * than from perf_arch_fetch_caller_regs().
2470  */
2471 static bool perf_hw_regs(struct pt_regs *regs)
2472 {
2473         return regs->flags & X86_EFLAGS_FIXED;
2474 }
2475
2476 void
2477 perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
2478 {
2479         struct unwind_state state;
2480         unsigned long addr;
2481
2482         if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2483                 /* TODO: We don't support guest os callchain now */
2484                 return;
2485         }
2486
2487         if (perf_callchain_store(entry, regs->ip))
2488                 return;
2489
2490         if (perf_hw_regs(regs))
2491                 unwind_start(&state, current, regs, NULL);
2492         else
2493                 unwind_start(&state, current, NULL, (void *)regs->sp);
2494
2495         for (; !unwind_done(&state); unwind_next_frame(&state)) {
2496                 addr = unwind_get_return_address(&state);
2497                 if (!addr || perf_callchain_store(entry, addr))
2498                         return;
2499         }
2500 }
2501
2502 static inline int
2503 valid_user_frame(const void __user *fp, unsigned long size)
2504 {
2505         return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2506 }
2507
2508 static unsigned long get_segment_base(unsigned int segment)
2509 {
2510         struct desc_struct *desc;
2511         unsigned int idx = segment >> 3;
2512
2513         if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
2514 #ifdef CONFIG_MODIFY_LDT_SYSCALL
2515                 struct ldt_struct *ldt;
2516
2517                 /* IRQs are off, so this synchronizes with smp_store_release */
2518                 ldt = READ_ONCE(current->active_mm->context.ldt);
2519                 if (!ldt || idx >= ldt->nr_entries)
2520                         return 0;
2521
2522                 desc = &ldt->entries[idx];
2523 #else
2524                 return 0;
2525 #endif
2526         } else {
2527                 if (idx >= GDT_ENTRIES)
2528                         return 0;
2529
2530                 desc = raw_cpu_ptr(gdt_page.gdt) + idx;
2531         }
2532
2533         return get_desc_base(desc);
2534 }
2535
2536 #ifdef CONFIG_IA32_EMULATION
2537
2538 #include <linux/compat.h>
2539
2540 static inline int
2541 perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
2542 {
2543         /* 32-bit process in 64-bit kernel. */
2544         unsigned long ss_base, cs_base;
2545         struct stack_frame_ia32 frame;
2546         const struct stack_frame_ia32 __user *fp;
2547
2548         if (!test_thread_flag(TIF_IA32))
2549                 return 0;
2550
2551         cs_base = get_segment_base(regs->cs);
2552         ss_base = get_segment_base(regs->ss);
2553
2554         fp = compat_ptr(ss_base + regs->bp);
2555         pagefault_disable();
2556         while (entry->nr < entry->max_stack) {
2557                 if (!valid_user_frame(fp, sizeof(frame)))
2558                         break;
2559
2560                 if (__get_user(frame.next_frame, &fp->next_frame))
2561                         break;
2562                 if (__get_user(frame.return_address, &fp->return_address))
2563                         break;
2564
2565                 perf_callchain_store(entry, cs_base + frame.return_address);
2566                 fp = compat_ptr(ss_base + frame.next_frame);
2567         }
2568         pagefault_enable();
2569         return 1;
2570 }
2571 #else
2572 static inline int
2573 perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
2574 {
2575     return 0;
2576 }
2577 #endif
2578
2579 void
2580 perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
2581 {
2582         struct stack_frame frame;
2583         const struct stack_frame __user *fp;
2584
2585         if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2586                 /* TODO: We don't support guest os callchain now */
2587                 return;
2588         }
2589
2590         /*
2591          * We don't know what to do with VM86 stacks.. ignore them for now.
2592          */
2593         if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2594                 return;
2595
2596         fp = (void __user *)regs->bp;
2597
2598         perf_callchain_store(entry, regs->ip);
2599
2600         if (!nmi_uaccess_okay())
2601                 return;
2602
2603         if (perf_callchain_user32(regs, entry))
2604                 return;
2605
2606         pagefault_disable();
2607         while (entry->nr < entry->max_stack) {
2608                 if (!valid_user_frame(fp, sizeof(frame)))
2609                         break;
2610
2611                 if (__get_user(frame.next_frame, &fp->next_frame))
2612                         break;
2613                 if (__get_user(frame.return_address, &fp->return_address))
2614                         break;
2615
2616                 perf_callchain_store(entry, frame.return_address);
2617                 fp = (void __user *)frame.next_frame;
2618         }
2619         pagefault_enable();
2620 }
2621
2622 /*
2623  * Deal with code segment offsets for the various execution modes:
2624  *
2625  *   VM86 - the good olde 16 bit days, where the linear address is
2626  *          20 bits and we use regs->ip + 0x10 * regs->cs.
2627  *
2628  *   IA32 - Where we need to look at GDT/LDT segment descriptor tables
2629  *          to figure out what the 32bit base address is.
2630  *
2631  *    X32 - has TIF_X32 set, but is running in x86_64
2632  *
2633  * X86_64 - CS,DS,SS,ES are all zero based.
2634  */
2635 static unsigned long code_segment_base(struct pt_regs *regs)
2636 {
2637         /*
2638          * For IA32 we look at the GDT/LDT segment base to convert the
2639          * effective IP to a linear address.
2640          */
2641
2642 #ifdef CONFIG_X86_32
2643         /*
2644          * If we are in VM86 mode, add the segment offset to convert to a
2645          * linear address.
2646          */
2647         if (regs->flags & X86_VM_MASK)
2648                 return 0x10 * regs->cs;
2649
2650         if (user_mode(regs) && regs->cs != __USER_CS)
2651                 return get_segment_base(regs->cs);
2652 #else
2653         if (user_mode(regs) && !user_64bit_mode(regs) &&
2654             regs->cs != __USER32_CS)
2655                 return get_segment_base(regs->cs);
2656 #endif
2657         return 0;
2658 }
2659
2660 unsigned long perf_instruction_pointer(struct pt_regs *regs)
2661 {
2662         if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
2663                 return perf_guest_cbs->get_guest_ip();
2664
2665         return regs->ip + code_segment_base(regs);
2666 }
2667
2668 unsigned long perf_misc_flags(struct pt_regs *regs)
2669 {
2670         int misc = 0;
2671
2672         if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2673                 if (perf_guest_cbs->is_user_mode())
2674                         misc |= PERF_RECORD_MISC_GUEST_USER;
2675                 else
2676                         misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2677         } else {
2678                 if (user_mode(regs))
2679                         misc |= PERF_RECORD_MISC_USER;
2680                 else
2681                         misc |= PERF_RECORD_MISC_KERNEL;
2682         }
2683
2684         if (regs->flags & PERF_EFLAGS_EXACT)
2685                 misc |= PERF_RECORD_MISC_EXACT_IP;
2686
2687         return misc;
2688 }
2689
2690 void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2691 {
2692         cap->version            = x86_pmu.version;
2693         cap->num_counters_gp    = x86_pmu.num_counters;
2694         cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2695         cap->bit_width_gp       = x86_pmu.cntval_bits;
2696         cap->bit_width_fixed    = x86_pmu.cntval_bits;
2697         cap->events_mask        = (unsigned int)x86_pmu.events_maskl;
2698         cap->events_mask_len    = x86_pmu.events_mask_len;
2699 }
2700 EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);