perf/x86/intel: Support full width counting
[firefly-linux-kernel-4.4.55.git] / arch / x86 / kernel / cpu / perf_event.h
1 /*
2  * Performance events x86 architecture header
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 <pzijlstr@redhat.com>
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
17 #if 0
18 #undef wrmsrl
19 #define wrmsrl(msr, val)                                                \
20 do {                                                                    \
21         unsigned int _msr = (msr);                                      \
22         u64 _val = (val);                                               \
23         trace_printk("wrmsrl(%x, %Lx)\n", (unsigned int)(_msr),         \
24                         (unsigned long long)(_val));                    \
25         native_write_msr((_msr), (u32)(_val), (u32)(_val >> 32));       \
26 } while (0)
27 #endif
28
29 /*
30  *          |   NHM/WSM    |      SNB     |
31  * register -------------------------------
32  *          |  HT  | no HT |  HT  | no HT |
33  *-----------------------------------------
34  * offcore  | core | core  | cpu  | core  |
35  * lbr_sel  | core | core  | cpu  | core  |
36  * ld_lat   | cpu  | core  | cpu  | core  |
37  *-----------------------------------------
38  *
39  * Given that there is a small number of shared regs,
40  * we can pre-allocate their slot in the per-cpu
41  * per-core reg tables.
42  */
43 enum extra_reg_type {
44         EXTRA_REG_NONE  = -1,   /* not used */
45
46         EXTRA_REG_RSP_0 = 0,    /* offcore_response_0 */
47         EXTRA_REG_RSP_1 = 1,    /* offcore_response_1 */
48         EXTRA_REG_LBR   = 2,    /* lbr_select */
49         EXTRA_REG_LDLAT = 3,    /* ld_lat_threshold */
50
51         EXTRA_REG_MAX           /* number of entries needed */
52 };
53
54 struct event_constraint {
55         union {
56                 unsigned long   idxmsk[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
57                 u64             idxmsk64;
58         };
59         u64     code;
60         u64     cmask;
61         int     weight;
62         int     overlap;
63         int     flags;
64 };
65 /*
66  * struct event_constraint flags
67  */
68 #define PERF_X86_EVENT_PEBS_LDLAT       0x1 /* ld+ldlat data address sampling */
69 #define PERF_X86_EVENT_PEBS_ST          0x2 /* st data address sampling */
70 #define PERF_X86_EVENT_PEBS_ST_HSW      0x4 /* haswell style st data sampling */
71
72 struct amd_nb {
73         int nb_id;  /* NorthBridge id */
74         int refcnt; /* reference count */
75         struct perf_event *owners[X86_PMC_IDX_MAX];
76         struct event_constraint event_constraints[X86_PMC_IDX_MAX];
77 };
78
79 /* The maximal number of PEBS events: */
80 #define MAX_PEBS_EVENTS         8
81
82 /*
83  * A debug store configuration.
84  *
85  * We only support architectures that use 64bit fields.
86  */
87 struct debug_store {
88         u64     bts_buffer_base;
89         u64     bts_index;
90         u64     bts_absolute_maximum;
91         u64     bts_interrupt_threshold;
92         u64     pebs_buffer_base;
93         u64     pebs_index;
94         u64     pebs_absolute_maximum;
95         u64     pebs_interrupt_threshold;
96         u64     pebs_event_reset[MAX_PEBS_EVENTS];
97 };
98
99 /*
100  * Per register state.
101  */
102 struct er_account {
103         raw_spinlock_t          lock;   /* per-core: protect structure */
104         u64                 config;     /* extra MSR config */
105         u64                 reg;        /* extra MSR number */
106         atomic_t            ref;        /* reference count */
107 };
108
109 /*
110  * Per core/cpu state
111  *
112  * Used to coordinate shared registers between HT threads or
113  * among events on a single PMU.
114  */
115 struct intel_shared_regs {
116         struct er_account       regs[EXTRA_REG_MAX];
117         int                     refcnt;         /* per-core: #HT threads */
118         unsigned                core_id;        /* per-core: core id */
119 };
120
121 #define MAX_LBR_ENTRIES         16
122
123 struct cpu_hw_events {
124         /*
125          * Generic x86 PMC bits
126          */
127         struct perf_event       *events[X86_PMC_IDX_MAX]; /* in counter order */
128         unsigned long           active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
129         unsigned long           running[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
130         int                     enabled;
131
132         int                     n_events;
133         int                     n_added;
134         int                     n_txn;
135         int                     assign[X86_PMC_IDX_MAX]; /* event to counter assignment */
136         u64                     tags[X86_PMC_IDX_MAX];
137         struct perf_event       *event_list[X86_PMC_IDX_MAX]; /* in enabled order */
138
139         unsigned int            group_flag;
140         int                     is_fake;
141
142         /*
143          * Intel DebugStore bits
144          */
145         struct debug_store      *ds;
146         u64                     pebs_enabled;
147
148         /*
149          * Intel LBR bits
150          */
151         int                             lbr_users;
152         void                            *lbr_context;
153         struct perf_branch_stack        lbr_stack;
154         struct perf_branch_entry        lbr_entries[MAX_LBR_ENTRIES];
155         struct er_account               *lbr_sel;
156         u64                             br_sel;
157
158         /*
159          * Intel host/guest exclude bits
160          */
161         u64                             intel_ctrl_guest_mask;
162         u64                             intel_ctrl_host_mask;
163         struct perf_guest_switch_msr    guest_switch_msrs[X86_PMC_IDX_MAX];
164
165         /*
166          * manage shared (per-core, per-cpu) registers
167          * used on Intel NHM/WSM/SNB
168          */
169         struct intel_shared_regs        *shared_regs;
170
171         /*
172          * AMD specific bits
173          */
174         struct amd_nb                   *amd_nb;
175         /* Inverted mask of bits to clear in the perf_ctr ctrl registers */
176         u64                             perf_ctr_virt_mask;
177
178         void                            *kfree_on_online;
179 };
180
181 #define __EVENT_CONSTRAINT(c, n, m, w, o, f) {\
182         { .idxmsk64 = (n) },            \
183         .code = (c),                    \
184         .cmask = (m),                   \
185         .weight = (w),                  \
186         .overlap = (o),                 \
187         .flags = f,                     \
188 }
189
190 #define EVENT_CONSTRAINT(c, n, m)       \
191         __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 0, 0)
192
193 /*
194  * The overlap flag marks event constraints with overlapping counter
195  * masks. This is the case if the counter mask of such an event is not
196  * a subset of any other counter mask of a constraint with an equal or
197  * higher weight, e.g.:
198  *
199  *  c_overlaps = EVENT_CONSTRAINT_OVERLAP(0, 0x09, 0);
200  *  c_another1 = EVENT_CONSTRAINT(0, 0x07, 0);
201  *  c_another2 = EVENT_CONSTRAINT(0, 0x38, 0);
202  *
203  * The event scheduler may not select the correct counter in the first
204  * cycle because it needs to know which subsequent events will be
205  * scheduled. It may fail to schedule the events then. So we set the
206  * overlap flag for such constraints to give the scheduler a hint which
207  * events to select for counter rescheduling.
208  *
209  * Care must be taken as the rescheduling algorithm is O(n!) which
210  * will increase scheduling cycles for an over-commited system
211  * dramatically.  The number of such EVENT_CONSTRAINT_OVERLAP() macros
212  * and its counter masks must be kept at a minimum.
213  */
214 #define EVENT_CONSTRAINT_OVERLAP(c, n, m)       \
215         __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 1, 0)
216
217 /*
218  * Constraint on the Event code.
219  */
220 #define INTEL_EVENT_CONSTRAINT(c, n)    \
221         EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT)
222
223 /*
224  * Constraint on the Event code + UMask + fixed-mask
225  *
226  * filter mask to validate fixed counter events.
227  * the following filters disqualify for fixed counters:
228  *  - inv
229  *  - edge
230  *  - cnt-mask
231  *  - in_tx
232  *  - in_tx_checkpointed
233  *  The other filters are supported by fixed counters.
234  *  The any-thread option is supported starting with v3.
235  */
236 #define FIXED_EVENT_FLAGS (X86_RAW_EVENT_MASK|HSW_IN_TX|HSW_IN_TX_CHECKPOINTED)
237 #define FIXED_EVENT_CONSTRAINT(c, n)    \
238         EVENT_CONSTRAINT(c, (1ULL << (32+n)), FIXED_EVENT_FLAGS)
239
240 /*
241  * Constraint on the Event code + UMask
242  */
243 #define INTEL_UEVENT_CONSTRAINT(c, n)   \
244         EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK)
245
246 #define INTEL_PLD_CONSTRAINT(c, n)      \
247         __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK, \
248                            HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LDLAT)
249
250 #define INTEL_PST_CONSTRAINT(c, n)      \
251         __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK, \
252                           HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST)
253
254 /* DataLA version of store sampling without extra enable bit. */
255 #define INTEL_PST_HSW_CONSTRAINT(c, n)  \
256         __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK, \
257                           HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW)
258
259 #define EVENT_CONSTRAINT_END            \
260         EVENT_CONSTRAINT(0, 0, 0)
261
262 #define for_each_event_constraint(e, c) \
263         for ((e) = (c); (e)->weight; (e)++)
264
265 /*
266  * Extra registers for specific events.
267  *
268  * Some events need large masks and require external MSRs.
269  * Those extra MSRs end up being shared for all events on
270  * a PMU and sometimes between PMU of sibling HT threads.
271  * In either case, the kernel needs to handle conflicting
272  * accesses to those extra, shared, regs. The data structure
273  * to manage those registers is stored in cpu_hw_event.
274  */
275 struct extra_reg {
276         unsigned int            event;
277         unsigned int            msr;
278         u64                     config_mask;
279         u64                     valid_mask;
280         int                     idx;  /* per_xxx->regs[] reg index */
281 };
282
283 #define EVENT_EXTRA_REG(e, ms, m, vm, i) {      \
284         .event = (e),           \
285         .msr = (ms),            \
286         .config_mask = (m),     \
287         .valid_mask = (vm),     \
288         .idx = EXTRA_REG_##i,   \
289         }
290
291 #define INTEL_EVENT_EXTRA_REG(event, msr, vm, idx)      \
292         EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT, vm, idx)
293
294 #define INTEL_UEVENT_EXTRA_REG(event, msr, vm, idx) \
295         EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT | \
296                         ARCH_PERFMON_EVENTSEL_UMASK, vm, idx)
297
298 #define INTEL_UEVENT_PEBS_LDLAT_EXTRA_REG(c) \
299         INTEL_UEVENT_EXTRA_REG(c, \
300                                MSR_PEBS_LD_LAT_THRESHOLD, \
301                                0xffff, \
302                                LDLAT)
303
304 #define EVENT_EXTRA_END EVENT_EXTRA_REG(0, 0, 0, 0, RSP_0)
305
306 union perf_capabilities {
307         struct {
308                 u64     lbr_format:6;
309                 u64     pebs_trap:1;
310                 u64     pebs_arch_reg:1;
311                 u64     pebs_format:4;
312                 u64     smm_freeze:1;
313                 /*
314                  * PMU supports separate counter range for writing
315                  * values > 32bit.
316                  */
317                 u64     full_width_write:1;
318         };
319         u64     capabilities;
320 };
321
322 struct x86_pmu_quirk {
323         struct x86_pmu_quirk *next;
324         void (*func)(void);
325 };
326
327 union x86_pmu_config {
328         struct {
329                 u64 event:8,
330                     umask:8,
331                     usr:1,
332                     os:1,
333                     edge:1,
334                     pc:1,
335                     interrupt:1,
336                     __reserved1:1,
337                     en:1,
338                     inv:1,
339                     cmask:8,
340                     event2:4,
341                     __reserved2:4,
342                     go:1,
343                     ho:1;
344         } bits;
345         u64 value;
346 };
347
348 #define X86_CONFIG(args...) ((union x86_pmu_config){.bits = {args}}).value
349
350 /*
351  * struct x86_pmu - generic x86 pmu
352  */
353 struct x86_pmu {
354         /*
355          * Generic x86 PMC bits
356          */
357         const char      *name;
358         int             version;
359         int             (*handle_irq)(struct pt_regs *);
360         void            (*disable_all)(void);
361         void            (*enable_all)(int added);
362         void            (*enable)(struct perf_event *);
363         void            (*disable)(struct perf_event *);
364         int             (*hw_config)(struct perf_event *event);
365         int             (*schedule_events)(struct cpu_hw_events *cpuc, int n, int *assign);
366         unsigned        eventsel;
367         unsigned        perfctr;
368         int             (*addr_offset)(int index, bool eventsel);
369         int             (*rdpmc_index)(int index);
370         u64             (*event_map)(int);
371         int             max_events;
372         int             num_counters;
373         int             num_counters_fixed;
374         int             cntval_bits;
375         u64             cntval_mask;
376         union {
377                         unsigned long events_maskl;
378                         unsigned long events_mask[BITS_TO_LONGS(ARCH_PERFMON_EVENTS_COUNT)];
379         };
380         int             events_mask_len;
381         int             apic;
382         u64             max_period;
383         struct event_constraint *
384                         (*get_event_constraints)(struct cpu_hw_events *cpuc,
385                                                  struct perf_event *event);
386
387         void            (*put_event_constraints)(struct cpu_hw_events *cpuc,
388                                                  struct perf_event *event);
389         struct event_constraint *event_constraints;
390         struct x86_pmu_quirk *quirks;
391         int             perfctr_second_write;
392         bool            late_ack;
393
394         /*
395          * sysfs attrs
396          */
397         int             attr_rdpmc;
398         struct attribute **format_attrs;
399         struct attribute **event_attrs;
400
401         ssize_t         (*events_sysfs_show)(char *page, u64 config);
402         struct attribute **cpu_events;
403
404         /*
405          * CPU Hotplug hooks
406          */
407         int             (*cpu_prepare)(int cpu);
408         void            (*cpu_starting)(int cpu);
409         void            (*cpu_dying)(int cpu);
410         void            (*cpu_dead)(int cpu);
411
412         void            (*check_microcode)(void);
413         void            (*flush_branch_stack)(void);
414
415         /*
416          * Intel Arch Perfmon v2+
417          */
418         u64                     intel_ctrl;
419         union perf_capabilities intel_cap;
420
421         /*
422          * Intel DebugStore bits
423          */
424         unsigned int    bts             :1,
425                         bts_active      :1,
426                         pebs            :1,
427                         pebs_active     :1,
428                         pebs_broken     :1;
429         int             pebs_record_size;
430         void            (*drain_pebs)(struct pt_regs *regs);
431         struct event_constraint *pebs_constraints;
432         void            (*pebs_aliases)(struct perf_event *event);
433         int             max_pebs_events;
434
435         /*
436          * Intel LBR
437          */
438         unsigned long   lbr_tos, lbr_from, lbr_to; /* MSR base regs       */
439         int             lbr_nr;                    /* hardware stack size */
440         u64             lbr_sel_mask;              /* LBR_SELECT valid bits */
441         const int       *lbr_sel_map;              /* lbr_select mappings */
442
443         /*
444          * Extra registers for events
445          */
446         struct extra_reg *extra_regs;
447         unsigned int er_flags;
448
449         /*
450          * Intel host/guest support (KVM)
451          */
452         struct perf_guest_switch_msr *(*guest_get_msrs)(int *nr);
453 };
454
455 #define x86_add_quirk(func_)                                            \
456 do {                                                                    \
457         static struct x86_pmu_quirk __quirk __initdata = {              \
458                 .func = func_,                                          \
459         };                                                              \
460         __quirk.next = x86_pmu.quirks;                                  \
461         x86_pmu.quirks = &__quirk;                                      \
462 } while (0)
463
464 #define ERF_NO_HT_SHARING       1
465 #define ERF_HAS_RSP_1           2
466
467 #define EVENT_VAR(_id)  event_attr_##_id
468 #define EVENT_PTR(_id) &event_attr_##_id.attr.attr
469
470 #define EVENT_ATTR(_name, _id)                                          \
471 static struct perf_pmu_events_attr EVENT_VAR(_id) = {                   \
472         .attr           = __ATTR(_name, 0444, events_sysfs_show, NULL), \
473         .id             = PERF_COUNT_HW_##_id,                          \
474         .event_str      = NULL,                                         \
475 };
476
477 #define EVENT_ATTR_STR(_name, v, str)                                   \
478 static struct perf_pmu_events_attr event_attr_##v = {                   \
479         .attr           = __ATTR(_name, 0444, events_sysfs_show, NULL), \
480         .id             = 0,                                            \
481         .event_str      = str,                                          \
482 };
483
484 extern struct x86_pmu x86_pmu __read_mostly;
485
486 DECLARE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
487
488 int x86_perf_event_set_period(struct perf_event *event);
489
490 /*
491  * Generalized hw caching related hw_event table, filled
492  * in on a per model basis. A value of 0 means
493  * 'not supported', -1 means 'hw_event makes no sense on
494  * this CPU', any other value means the raw hw_event
495  * ID.
496  */
497
498 #define C(x) PERF_COUNT_HW_CACHE_##x
499
500 extern u64 __read_mostly hw_cache_event_ids
501                                 [PERF_COUNT_HW_CACHE_MAX]
502                                 [PERF_COUNT_HW_CACHE_OP_MAX]
503                                 [PERF_COUNT_HW_CACHE_RESULT_MAX];
504 extern u64 __read_mostly hw_cache_extra_regs
505                                 [PERF_COUNT_HW_CACHE_MAX]
506                                 [PERF_COUNT_HW_CACHE_OP_MAX]
507                                 [PERF_COUNT_HW_CACHE_RESULT_MAX];
508
509 u64 x86_perf_event_update(struct perf_event *event);
510
511 static inline unsigned int x86_pmu_config_addr(int index)
512 {
513         return x86_pmu.eventsel + (x86_pmu.addr_offset ?
514                                    x86_pmu.addr_offset(index, true) : index);
515 }
516
517 static inline unsigned int x86_pmu_event_addr(int index)
518 {
519         return x86_pmu.perfctr + (x86_pmu.addr_offset ?
520                                   x86_pmu.addr_offset(index, false) : index);
521 }
522
523 static inline int x86_pmu_rdpmc_index(int index)
524 {
525         return x86_pmu.rdpmc_index ? x86_pmu.rdpmc_index(index) : index;
526 }
527
528 int x86_setup_perfctr(struct perf_event *event);
529
530 int x86_pmu_hw_config(struct perf_event *event);
531
532 void x86_pmu_disable_all(void);
533
534 static inline void __x86_pmu_enable_event(struct hw_perf_event *hwc,
535                                           u64 enable_mask)
536 {
537         u64 disable_mask = __this_cpu_read(cpu_hw_events.perf_ctr_virt_mask);
538
539         if (hwc->extra_reg.reg)
540                 wrmsrl(hwc->extra_reg.reg, hwc->extra_reg.config);
541         wrmsrl(hwc->config_base, (hwc->config | enable_mask) & ~disable_mask);
542 }
543
544 void x86_pmu_enable_all(int added);
545
546 int perf_assign_events(struct perf_event **events, int n,
547                         int wmin, int wmax, int *assign);
548 int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign);
549
550 void x86_pmu_stop(struct perf_event *event, int flags);
551
552 static inline void x86_pmu_disable_event(struct perf_event *event)
553 {
554         struct hw_perf_event *hwc = &event->hw;
555
556         wrmsrl(hwc->config_base, hwc->config);
557 }
558
559 void x86_pmu_enable_event(struct perf_event *event);
560
561 int x86_pmu_handle_irq(struct pt_regs *regs);
562
563 extern struct event_constraint emptyconstraint;
564
565 extern struct event_constraint unconstrained;
566
567 static inline bool kernel_ip(unsigned long ip)
568 {
569 #ifdef CONFIG_X86_32
570         return ip > PAGE_OFFSET;
571 #else
572         return (long)ip < 0;
573 #endif
574 }
575
576 /*
577  * Not all PMUs provide the right context information to place the reported IP
578  * into full context. Specifically segment registers are typically not
579  * supplied.
580  *
581  * Assuming the address is a linear address (it is for IBS), we fake the CS and
582  * vm86 mode using the known zero-based code segment and 'fix up' the registers
583  * to reflect this.
584  *
585  * Intel PEBS/LBR appear to typically provide the effective address, nothing
586  * much we can do about that but pray and treat it like a linear address.
587  */
588 static inline void set_linear_ip(struct pt_regs *regs, unsigned long ip)
589 {
590         regs->cs = kernel_ip(ip) ? __KERNEL_CS : __USER_CS;
591         if (regs->flags & X86_VM_MASK)
592                 regs->flags ^= (PERF_EFLAGS_VM | X86_VM_MASK);
593         regs->ip = ip;
594 }
595
596 ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event);
597 ssize_t intel_event_sysfs_show(char *page, u64 config);
598
599 #ifdef CONFIG_CPU_SUP_AMD
600
601 int amd_pmu_init(void);
602
603 #else /* CONFIG_CPU_SUP_AMD */
604
605 static inline int amd_pmu_init(void)
606 {
607         return 0;
608 }
609
610 #endif /* CONFIG_CPU_SUP_AMD */
611
612 #ifdef CONFIG_CPU_SUP_INTEL
613
614 int intel_pmu_save_and_restart(struct perf_event *event);
615
616 struct event_constraint *
617 x86_get_event_constraints(struct cpu_hw_events *cpuc, struct perf_event *event);
618
619 struct intel_shared_regs *allocate_shared_regs(int cpu);
620
621 int intel_pmu_init(void);
622
623 void init_debug_store_on_cpu(int cpu);
624
625 void fini_debug_store_on_cpu(int cpu);
626
627 void release_ds_buffers(void);
628
629 void reserve_ds_buffers(void);
630
631 extern struct event_constraint bts_constraint;
632
633 void intel_pmu_enable_bts(u64 config);
634
635 void intel_pmu_disable_bts(void);
636
637 int intel_pmu_drain_bts_buffer(void);
638
639 extern struct event_constraint intel_core2_pebs_event_constraints[];
640
641 extern struct event_constraint intel_atom_pebs_event_constraints[];
642
643 extern struct event_constraint intel_nehalem_pebs_event_constraints[];
644
645 extern struct event_constraint intel_westmere_pebs_event_constraints[];
646
647 extern struct event_constraint intel_snb_pebs_event_constraints[];
648
649 extern struct event_constraint intel_ivb_pebs_event_constraints[];
650
651 extern struct event_constraint intel_hsw_pebs_event_constraints[];
652
653 struct event_constraint *intel_pebs_constraints(struct perf_event *event);
654
655 void intel_pmu_pebs_enable(struct perf_event *event);
656
657 void intel_pmu_pebs_disable(struct perf_event *event);
658
659 void intel_pmu_pebs_enable_all(void);
660
661 void intel_pmu_pebs_disable_all(void);
662
663 void intel_ds_init(void);
664
665 void intel_pmu_lbr_reset(void);
666
667 void intel_pmu_lbr_enable(struct perf_event *event);
668
669 void intel_pmu_lbr_disable(struct perf_event *event);
670
671 void intel_pmu_lbr_enable_all(void);
672
673 void intel_pmu_lbr_disable_all(void);
674
675 void intel_pmu_lbr_read(void);
676
677 void intel_pmu_lbr_init_core(void);
678
679 void intel_pmu_lbr_init_nhm(void);
680
681 void intel_pmu_lbr_init_atom(void);
682
683 void intel_pmu_lbr_init_snb(void);
684
685 int intel_pmu_setup_lbr_filter(struct perf_event *event);
686
687 int p4_pmu_init(void);
688
689 int p6_pmu_init(void);
690
691 int knc_pmu_init(void);
692
693 ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
694                           char *page);
695
696 #else /* CONFIG_CPU_SUP_INTEL */
697
698 static inline void reserve_ds_buffers(void)
699 {
700 }
701
702 static inline void release_ds_buffers(void)
703 {
704 }
705
706 static inline int intel_pmu_init(void)
707 {
708         return 0;
709 }
710
711 static inline struct intel_shared_regs *allocate_shared_regs(int cpu)
712 {
713         return NULL;
714 }
715
716 #endif /* CONFIG_CPU_SUP_INTEL */