]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - arch/x86/kernel/cpu/perf_event.h
perf/x86/intel: Support full width counting
[mirror_ubuntu-artful-kernel.git] / arch / x86 / kernel / cpu / perf_event.h
CommitLineData
de0428a7
KW
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
1c2ac3fd
PZ
17#if 0
18#undef wrmsrl
19#define wrmsrl(msr, val) \
20do { \
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
de0428a7
KW
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 */
43enum 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 */
b36817e8 48 EXTRA_REG_LBR = 2, /* lbr_select */
f20093ee 49 EXTRA_REG_LDLAT = 3, /* ld_lat_threshold */
de0428a7
KW
50
51 EXTRA_REG_MAX /* number of entries needed */
52};
53
54struct 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;
bc1738f6 62 int overlap;
9fac2cf3 63 int flags;
de0428a7 64};
f20093ee
SE
65/*
66 * struct event_constraint flags
67 */
68#define PERF_X86_EVENT_PEBS_LDLAT 0x1 /* ld+ldlat data address sampling */
9ad64c0f 69#define PERF_X86_EVENT_PEBS_ST 0x2 /* st data address sampling */
f9134f36 70#define PERF_X86_EVENT_PEBS_ST_HSW 0x4 /* haswell style st data sampling */
de0428a7
KW
71
72struct 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: */
70ab7003 80#define MAX_PEBS_EVENTS 8
de0428a7
KW
81
82/*
83 * A debug store configuration.
84 *
85 * We only support architectures that use 64bit fields.
86 */
87struct 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 */
102struct 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 */
115struct 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
123struct 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;
5a425294 140 int is_fake;
de0428a7
KW
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];
b36817e8 155 struct er_account *lbr_sel;
3e702ff6 156 u64 br_sel;
de0428a7 157
144d31e6
GN
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
de0428a7
KW
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 */
1018faa6
JR
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;
de0428a7
KW
177
178 void *kfree_on_online;
179};
180
9fac2cf3 181#define __EVENT_CONSTRAINT(c, n, m, w, o, f) {\
de0428a7
KW
182 { .idxmsk64 = (n) }, \
183 .code = (c), \
184 .cmask = (m), \
185 .weight = (w), \
bc1738f6 186 .overlap = (o), \
9fac2cf3 187 .flags = f, \
de0428a7
KW
188}
189
190#define EVENT_CONSTRAINT(c, n, m) \
9fac2cf3 191 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 0, 0)
bc1738f6
RR
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) \
9fac2cf3 215 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 1, 0)
de0428a7
KW
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
3a632cb2
AK
231 * - in_tx
232 * - in_tx_checkpointed
de0428a7
KW
233 * The other filters are supported by fixed counters.
234 * The any-thread option is supported starting with v3.
235 */
3a632cb2 236#define FIXED_EVENT_FLAGS (X86_RAW_EVENT_MASK|HSW_IN_TX|HSW_IN_TX_CHECKPOINTED)
de0428a7 237#define FIXED_EVENT_CONSTRAINT(c, n) \
3a632cb2 238 EVENT_CONSTRAINT(c, (1ULL << (32+n)), FIXED_EVENT_FLAGS)
de0428a7
KW
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
f20093ee
SE
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
9ad64c0f
SE
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
f9134f36
AK
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
de0428a7
KW
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 */
275struct 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), \
f20093ee 288 .idx = EXTRA_REG_##i, \
de0428a7
KW
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
f20093ee
SE
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
de0428a7
KW
304#define EVENT_EXTRA_END EVENT_EXTRA_REG(0, 0, 0, 0, RSP_0)
305
306union 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;
069e0c3c
AK
313 /*
314 * PMU supports separate counter range for writing
315 * values > 32bit.
316 */
317 u64 full_width_write:1;
de0428a7
KW
318 };
319 u64 capabilities;
320};
321
c1d6f42f
PZ
322struct x86_pmu_quirk {
323 struct x86_pmu_quirk *next;
324 void (*func)(void);
325};
326
f9b4eeb8
PZ
327union 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
de0428a7
KW
350/*
351 * struct x86_pmu - generic x86 pmu
352 */
353struct 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;
4c1fd17a 368 int (*addr_offset)(int index, bool eventsel);
0fbdad07 369 int (*rdpmc_index)(int index);
de0428a7
KW
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;
ffb871bc
GN
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;
de0428a7
KW
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;
c1d6f42f 390 struct x86_pmu_quirk *quirks;
de0428a7 391 int perfctr_second_write;
72db5596 392 bool late_ack;
de0428a7 393
0c9d42ed
PZ
394 /*
395 * sysfs attrs
396 */
397 int attr_rdpmc;
641cc938 398 struct attribute **format_attrs;
f20093ee 399 struct attribute **event_attrs;
0c9d42ed 400
a4747393 401 ssize_t (*events_sysfs_show)(char *page, u64 config);
1a6461b1 402 struct attribute **cpu_events;
a4747393 403
0c9d42ed
PZ
404 /*
405 * CPU Hotplug hooks
406 */
de0428a7
KW
407 int (*cpu_prepare)(int cpu);
408 void (*cpu_starting)(int cpu);
409 void (*cpu_dying)(int cpu);
410 void (*cpu_dead)(int cpu);
c93dc84c
PZ
411
412 void (*check_microcode)(void);
d010b332 413 void (*flush_branch_stack)(void);
de0428a7
KW
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 */
597ed953 424 unsigned int bts :1,
3e0091e2
PZ
425 bts_active :1,
426 pebs :1,
427 pebs_active :1,
428 pebs_broken :1;
de0428a7
KW
429 int pebs_record_size;
430 void (*drain_pebs)(struct pt_regs *regs);
431 struct event_constraint *pebs_constraints;
0780c927 432 void (*pebs_aliases)(struct perf_event *event);
70ab7003 433 int max_pebs_events;
de0428a7
KW
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 */
b36817e8
SE
440 u64 lbr_sel_mask; /* LBR_SELECT valid bits */
441 const int *lbr_sel_map; /* lbr_select mappings */
de0428a7
KW
442
443 /*
444 * Extra registers for events
445 */
446 struct extra_reg *extra_regs;
447 unsigned int er_flags;
144d31e6
GN
448
449 /*
450 * Intel host/guest support (KVM)
451 */
452 struct perf_guest_switch_msr *(*guest_get_msrs)(int *nr);
de0428a7
KW
453};
454
c1d6f42f
PZ
455#define x86_add_quirk(func_) \
456do { \
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
de0428a7
KW
464#define ERF_NO_HT_SHARING 1
465#define ERF_HAS_RSP_1 2
466
3a54aaa0
SE
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) \
471static 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) \
478static 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
de0428a7
KW
484extern struct x86_pmu x86_pmu __read_mostly;
485
486DECLARE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
487
488int 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
500extern 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];
504extern 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
509u64 x86_perf_event_update(struct perf_event *event);
510
de0428a7
KW
511static inline unsigned int x86_pmu_config_addr(int index)
512{
4c1fd17a
JS
513 return x86_pmu.eventsel + (x86_pmu.addr_offset ?
514 x86_pmu.addr_offset(index, true) : index);
de0428a7
KW
515}
516
517static inline unsigned int x86_pmu_event_addr(int index)
518{
4c1fd17a
JS
519 return x86_pmu.perfctr + (x86_pmu.addr_offset ?
520 x86_pmu.addr_offset(index, false) : index);
de0428a7
KW
521}
522
0fbdad07
JS
523static inline int x86_pmu_rdpmc_index(int index)
524{
525 return x86_pmu.rdpmc_index ? x86_pmu.rdpmc_index(index) : index;
526}
527
de0428a7
KW
528int x86_setup_perfctr(struct perf_event *event);
529
530int x86_pmu_hw_config(struct perf_event *event);
531
532void x86_pmu_disable_all(void);
533
534static inline void __x86_pmu_enable_event(struct hw_perf_event *hwc,
535 u64 enable_mask)
536{
1018faa6
JR
537 u64 disable_mask = __this_cpu_read(cpu_hw_events.perf_ctr_virt_mask);
538
de0428a7
KW
539 if (hwc->extra_reg.reg)
540 wrmsrl(hwc->extra_reg.reg, hwc->extra_reg.config);
1018faa6 541 wrmsrl(hwc->config_base, (hwc->config | enable_mask) & ~disable_mask);
de0428a7
KW
542}
543
544void x86_pmu_enable_all(int added);
545
43b45780 546int perf_assign_events(struct perf_event **events, int n,
4b4969b1 547 int wmin, int wmax, int *assign);
de0428a7
KW
548int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign);
549
550void x86_pmu_stop(struct perf_event *event, int flags);
551
552static 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
559void x86_pmu_enable_event(struct perf_event *event);
560
561int x86_pmu_handle_irq(struct pt_regs *regs);
562
563extern struct event_constraint emptyconstraint;
564
565extern struct event_constraint unconstrained;
566
3e702ff6
SE
567static 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
d07bdfd3
PZ
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 */
588static 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
0bf79d44 596ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event);
20550a43 597ssize_t intel_event_sysfs_show(char *page, u64 config);
43c032fe 598
de0428a7
KW
599#ifdef CONFIG_CPU_SUP_AMD
600
601int amd_pmu_init(void);
602
603#else /* CONFIG_CPU_SUP_AMD */
604
605static 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
614int intel_pmu_save_and_restart(struct perf_event *event);
615
616struct event_constraint *
617x86_get_event_constraints(struct cpu_hw_events *cpuc, struct perf_event *event);
618
619struct intel_shared_regs *allocate_shared_regs(int cpu);
620
621int intel_pmu_init(void);
622
623void init_debug_store_on_cpu(int cpu);
624
625void fini_debug_store_on_cpu(int cpu);
626
627void release_ds_buffers(void);
628
629void reserve_ds_buffers(void);
630
631extern struct event_constraint bts_constraint;
632
633void intel_pmu_enable_bts(u64 config);
634
635void intel_pmu_disable_bts(void);
636
637int intel_pmu_drain_bts_buffer(void);
638
639extern struct event_constraint intel_core2_pebs_event_constraints[];
640
641extern struct event_constraint intel_atom_pebs_event_constraints[];
642
643extern struct event_constraint intel_nehalem_pebs_event_constraints[];
644
645extern struct event_constraint intel_westmere_pebs_event_constraints[];
646
647extern struct event_constraint intel_snb_pebs_event_constraints[];
648
20a36e39
SE
649extern struct event_constraint intel_ivb_pebs_event_constraints[];
650
3044318f
AK
651extern struct event_constraint intel_hsw_pebs_event_constraints[];
652
de0428a7
KW
653struct event_constraint *intel_pebs_constraints(struct perf_event *event);
654
655void intel_pmu_pebs_enable(struct perf_event *event);
656
657void intel_pmu_pebs_disable(struct perf_event *event);
658
659void intel_pmu_pebs_enable_all(void);
660
661void intel_pmu_pebs_disable_all(void);
662
663void intel_ds_init(void);
664
665void intel_pmu_lbr_reset(void);
666
667void intel_pmu_lbr_enable(struct perf_event *event);
668
669void intel_pmu_lbr_disable(struct perf_event *event);
670
671void intel_pmu_lbr_enable_all(void);
672
673void intel_pmu_lbr_disable_all(void);
674
675void intel_pmu_lbr_read(void);
676
677void intel_pmu_lbr_init_core(void);
678
679void intel_pmu_lbr_init_nhm(void);
680
681void intel_pmu_lbr_init_atom(void);
682
c5cc2cd9
SE
683void intel_pmu_lbr_init_snb(void);
684
60ce0fbd
SE
685int intel_pmu_setup_lbr_filter(struct perf_event *event);
686
de0428a7
KW
687int p4_pmu_init(void);
688
689int p6_pmu_init(void);
690
e717bf4e
VW
691int knc_pmu_init(void);
692
f20093ee
SE
693ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
694 char *page);
695
de0428a7
KW
696#else /* CONFIG_CPU_SUP_INTEL */
697
698static inline void reserve_ds_buffers(void)
699{
700}
701
702static inline void release_ds_buffers(void)
703{
704}
705
706static inline int intel_pmu_init(void)
707{
708 return 0;
709}
710
711static inline struct intel_shared_regs *allocate_shared_regs(int cpu)
712{
713 return NULL;
714}
715
716#endif /* CONFIG_CPU_SUP_INTEL */