blob: e9c5bdf5d94e199a7ef9f0ae6145b57a28f7cc4c [file] [log] [blame]
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001/*
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
Peter Zijlstra1c2ac3f2012-05-14 15:25:34 +020017#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
Kevin Winchesterde0428a2011-08-30 20:41:05 -030029/*
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 */
Stephane Eranianb36817e2012-02-09 23:20:53 +010048 EXTRA_REG_LBR = 2, /* lbr_select */
Stephane Eranianf20093e2013-01-24 16:10:32 +010049 EXTRA_REG_LDLAT = 3, /* ld_lat_threshold */
Kevin Winchesterde0428a2011-08-30 20:41:05 -030050
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;
Robert Richterbc1738f2011-11-18 12:35:22 +010062 int overlap;
Stephane Eranian9fac2cf2013-01-24 16:10:27 +010063 int flags;
Kevin Winchesterde0428a2011-08-30 20:41:05 -030064};
Stephane Eranianf20093e2013-01-24 16:10:32 +010065/*
Stephane Eranian2f7f73a2013-06-20 18:42:54 +020066 * struct hw_perf_event.flags flags
Stephane Eranianf20093e2013-01-24 16:10:32 +010067 */
Peter Zijlstrac857eb52015-04-15 20:14:53 +020068#define PERF_X86_EVENT_PEBS_LDLAT 0x0001 /* ld+ldlat data address sampling */
69#define PERF_X86_EVENT_PEBS_ST 0x0002 /* st data address sampling */
70#define PERF_X86_EVENT_PEBS_ST_HSW 0x0004 /* haswell style datala, store */
71#define PERF_X86_EVENT_COMMITTED 0x0008 /* event passed commit_txn */
72#define PERF_X86_EVENT_PEBS_LD_HSW 0x0010 /* haswell style datala, load */
73#define PERF_X86_EVENT_PEBS_NA_HSW 0x0020 /* haswell style datala, unknown */
74#define PERF_X86_EVENT_EXCL 0x0040 /* HT exclusivity on counter */
75#define PERF_X86_EVENT_DYNAMIC 0x0080 /* dynamic alloc'd constraint */
76#define PERF_X86_EVENT_RDPMC_ALLOWED 0x0100 /* grant rdpmc permission */
Peter Zijlstracc1790c2015-05-21 10:57:17 +020077#define PERF_X86_EVENT_EXCL_ACCT 0x0200 /* accounted EXCL event */
Yan, Zheng851559e2015-05-06 15:33:47 -040078#define PERF_X86_EVENT_AUTO_RELOAD 0x0400 /* use PEBS auto-reload */
Yan, Zheng3569c0d2015-05-06 15:33:50 -040079#define PERF_X86_EVENT_FREERUNNING 0x0800 /* use freerunning PEBS */
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070080
Kevin Winchesterde0428a2011-08-30 20:41:05 -030081
82struct amd_nb {
83 int nb_id; /* NorthBridge id */
84 int refcnt; /* reference count */
85 struct perf_event *owners[X86_PMC_IDX_MAX];
86 struct event_constraint event_constraints[X86_PMC_IDX_MAX];
87};
88
89/* The maximal number of PEBS events: */
Andi Kleen70ab7002012-06-05 17:56:48 -070090#define MAX_PEBS_EVENTS 8
Kevin Winchesterde0428a2011-08-30 20:41:05 -030091
92/*
Yan, Zheng3569c0d2015-05-06 15:33:50 -040093 * Flags PEBS can handle without an PMI.
94 *
Yan, Zheng9c964ef2015-05-06 15:33:51 -040095 * TID can only be handled by flushing at context switch.
96 *
Yan, Zheng3569c0d2015-05-06 15:33:50 -040097 */
98#define PEBS_FREERUNNING_FLAGS \
Yan, Zheng9c964ef2015-05-06 15:33:51 -040099 (PERF_SAMPLE_IP | PERF_SAMPLE_TID | PERF_SAMPLE_ADDR | \
Yan, Zheng3569c0d2015-05-06 15:33:50 -0400100 PERF_SAMPLE_ID | PERF_SAMPLE_CPU | PERF_SAMPLE_STREAM_ID | \
101 PERF_SAMPLE_DATA_SRC | PERF_SAMPLE_IDENTIFIER | \
102 PERF_SAMPLE_TRANSACTION)
103
104/*
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300105 * A debug store configuration.
106 *
107 * We only support architectures that use 64bit fields.
108 */
109struct debug_store {
110 u64 bts_buffer_base;
111 u64 bts_index;
112 u64 bts_absolute_maximum;
113 u64 bts_interrupt_threshold;
114 u64 pebs_buffer_base;
115 u64 pebs_index;
116 u64 pebs_absolute_maximum;
117 u64 pebs_interrupt_threshold;
118 u64 pebs_event_reset[MAX_PEBS_EVENTS];
119};
120
121/*
122 * Per register state.
123 */
124struct er_account {
125 raw_spinlock_t lock; /* per-core: protect structure */
126 u64 config; /* extra MSR config */
127 u64 reg; /* extra MSR number */
128 atomic_t ref; /* reference count */
129};
130
131/*
132 * Per core/cpu state
133 *
134 * Used to coordinate shared registers between HT threads or
135 * among events on a single PMU.
136 */
137struct intel_shared_regs {
138 struct er_account regs[EXTRA_REG_MAX];
139 int refcnt; /* per-core: #HT threads */
140 unsigned core_id; /* per-core: core id */
141};
142
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100143enum intel_excl_state_type {
144 INTEL_EXCL_UNUSED = 0, /* counter is unused */
145 INTEL_EXCL_SHARED = 1, /* counter can be used by both threads */
146 INTEL_EXCL_EXCLUSIVE = 2, /* counter can be used by one thread only */
147};
148
149struct intel_excl_states {
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100150 enum intel_excl_state_type state[X86_PMC_IDX_MAX];
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100151 bool sched_started; /* true if scheduling has started */
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100152};
153
154struct intel_excl_cntrs {
155 raw_spinlock_t lock;
156
157 struct intel_excl_states states[2];
158
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200159 union {
160 u16 has_exclusive[2];
161 u32 exclusive_present;
162 };
163
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100164 int refcnt; /* per-core: #HT threads */
165 unsigned core_id; /* per-core: core id */
166};
167
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300168#define MAX_LBR_ENTRIES 16
169
Stephane Eranian90413462014-11-17 20:06:54 +0100170enum {
171 X86_PERF_KFREE_SHARED = 0,
172 X86_PERF_KFREE_EXCL = 1,
173 X86_PERF_KFREE_MAX
174};
175
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300176struct cpu_hw_events {
177 /*
178 * Generic x86 PMC bits
179 */
180 struct perf_event *events[X86_PMC_IDX_MAX]; /* in counter order */
181 unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
182 unsigned long running[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
183 int enabled;
184
Peter Zijlstrac347a2f2014-02-24 12:26:21 +0100185 int n_events; /* the # of events in the below arrays */
186 int n_added; /* the # last events in the below arrays;
187 they've never been enabled yet */
188 int n_txn; /* the # last events in the below arrays;
189 added in the current transaction */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300190 int assign[X86_PMC_IDX_MAX]; /* event to counter assignment */
191 u64 tags[X86_PMC_IDX_MAX];
Peter Zijlstrab371b592015-05-21 10:57:13 +0200192
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300193 struct perf_event *event_list[X86_PMC_IDX_MAX]; /* in enabled order */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200194 struct event_constraint *event_constraint[X86_PMC_IDX_MAX];
195
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200196 int n_excl; /* the number of exclusive events */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300197
198 unsigned int group_flag;
Peter Zijlstra5a4252942012-06-05 15:30:31 +0200199 int is_fake;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300200
201 /*
202 * Intel DebugStore bits
203 */
204 struct debug_store *ds;
205 u64 pebs_enabled;
206
207 /*
208 * Intel LBR bits
209 */
210 int lbr_users;
211 void *lbr_context;
212 struct perf_branch_stack lbr_stack;
213 struct perf_branch_entry lbr_entries[MAX_LBR_ENTRIES];
Stephane Eranianb36817e2012-02-09 23:20:53 +0100214 struct er_account *lbr_sel;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100215 u64 br_sel;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300216
217 /*
Gleb Natapov144d31e2011-10-05 14:01:21 +0200218 * Intel host/guest exclude bits
219 */
220 u64 intel_ctrl_guest_mask;
221 u64 intel_ctrl_host_mask;
222 struct perf_guest_switch_msr guest_switch_msrs[X86_PMC_IDX_MAX];
223
224 /*
Peter Zijlstra2b9e3442013-09-12 12:53:44 +0200225 * Intel checkpoint mask
226 */
227 u64 intel_cp_status;
228
229 /*
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300230 * manage shared (per-core, per-cpu) registers
231 * used on Intel NHM/WSM/SNB
232 */
233 struct intel_shared_regs *shared_regs;
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100234 /*
235 * manage exclusive counter access between hyperthread
236 */
237 struct event_constraint *constraint_list; /* in enable order */
238 struct intel_excl_cntrs *excl_cntrs;
239 int excl_thread_id; /* 0 or 1 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300240
241 /*
242 * AMD specific bits
243 */
Joerg Roedel1018faa2012-02-29 14:57:32 +0100244 struct amd_nb *amd_nb;
245 /* Inverted mask of bits to clear in the perf_ctr ctrl registers */
246 u64 perf_ctr_virt_mask;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300247
Stephane Eranian90413462014-11-17 20:06:54 +0100248 void *kfree_on_online[X86_PERF_KFREE_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300249};
250
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100251#define __EVENT_CONSTRAINT(c, n, m, w, o, f) {\
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300252 { .idxmsk64 = (n) }, \
253 .code = (c), \
254 .cmask = (m), \
255 .weight = (w), \
Robert Richterbc1738f2011-11-18 12:35:22 +0100256 .overlap = (o), \
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100257 .flags = f, \
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300258}
259
260#define EVENT_CONSTRAINT(c, n, m) \
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100261 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 0, 0)
Robert Richterbc1738f2011-11-18 12:35:22 +0100262
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100263#define INTEL_EXCLEVT_CONSTRAINT(c, n) \
264 __EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT, HWEIGHT(n),\
265 0, PERF_X86_EVENT_EXCL)
266
Robert Richterbc1738f2011-11-18 12:35:22 +0100267/*
268 * The overlap flag marks event constraints with overlapping counter
269 * masks. This is the case if the counter mask of such an event is not
270 * a subset of any other counter mask of a constraint with an equal or
271 * higher weight, e.g.:
272 *
273 * c_overlaps = EVENT_CONSTRAINT_OVERLAP(0, 0x09, 0);
274 * c_another1 = EVENT_CONSTRAINT(0, 0x07, 0);
275 * c_another2 = EVENT_CONSTRAINT(0, 0x38, 0);
276 *
277 * The event scheduler may not select the correct counter in the first
278 * cycle because it needs to know which subsequent events will be
279 * scheduled. It may fail to schedule the events then. So we set the
280 * overlap flag for such constraints to give the scheduler a hint which
281 * events to select for counter rescheduling.
282 *
283 * Care must be taken as the rescheduling algorithm is O(n!) which
284 * will increase scheduling cycles for an over-commited system
285 * dramatically. The number of such EVENT_CONSTRAINT_OVERLAP() macros
286 * and its counter masks must be kept at a minimum.
287 */
288#define EVENT_CONSTRAINT_OVERLAP(c, n, m) \
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100289 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 1, 0)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300290
291/*
292 * Constraint on the Event code.
293 */
294#define INTEL_EVENT_CONSTRAINT(c, n) \
295 EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT)
296
297/*
298 * Constraint on the Event code + UMask + fixed-mask
299 *
300 * filter mask to validate fixed counter events.
301 * the following filters disqualify for fixed counters:
302 * - inv
303 * - edge
304 * - cnt-mask
Andi Kleen3a632cb2013-06-17 17:36:48 -0700305 * - in_tx
306 * - in_tx_checkpointed
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300307 * The other filters are supported by fixed counters.
308 * The any-thread option is supported starting with v3.
309 */
Andi Kleen3a632cb2013-06-17 17:36:48 -0700310#define FIXED_EVENT_FLAGS (X86_RAW_EVENT_MASK|HSW_IN_TX|HSW_IN_TX_CHECKPOINTED)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300311#define FIXED_EVENT_CONSTRAINT(c, n) \
Andi Kleen3a632cb2013-06-17 17:36:48 -0700312 EVENT_CONSTRAINT(c, (1ULL << (32+n)), FIXED_EVENT_FLAGS)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300313
314/*
315 * Constraint on the Event code + UMask
316 */
317#define INTEL_UEVENT_CONSTRAINT(c, n) \
318 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK)
319
Andi Kleen7550ddf2014-09-24 07:34:46 -0700320/* Like UEVENT_CONSTRAINT, but match flags too */
321#define INTEL_FLAGS_UEVENT_CONSTRAINT(c, n) \
322 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS)
323
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100324#define INTEL_EXCLUEVT_CONSTRAINT(c, n) \
325 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK, \
326 HWEIGHT(n), 0, PERF_X86_EVENT_EXCL)
327
Stephane Eranianf20093e2013-01-24 16:10:32 +0100328#define INTEL_PLD_CONSTRAINT(c, n) \
Andi Kleen86a04462014-08-11 21:27:10 +0200329 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
Stephane Eranianf20093e2013-01-24 16:10:32 +0100330 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LDLAT)
331
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100332#define INTEL_PST_CONSTRAINT(c, n) \
Andi Kleen86a04462014-08-11 21:27:10 +0200333 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100334 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST)
335
Andi Kleen86a04462014-08-11 21:27:10 +0200336/* Event constraint, but match on all event flags too. */
337#define INTEL_FLAGS_EVENT_CONSTRAINT(c, n) \
338 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS)
339
340/* Check only flags, but allow all event/umask */
341#define INTEL_ALL_EVENT_CONSTRAINT(code, n) \
342 EVENT_CONSTRAINT(code, n, X86_ALL_EVENT_FLAGS)
343
344/* Check flags and event code, and set the HSW store flag */
345#define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_ST(code, n) \
346 __EVENT_CONSTRAINT(code, n, \
347 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
Andi Kleenf9134f32013-06-17 17:36:52 -0700348 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW)
349
Andi Kleen86a04462014-08-11 21:27:10 +0200350/* Check flags and event code, and set the HSW load flag */
351#define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(code, n) \
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100352 __EVENT_CONSTRAINT(code, n, \
Andi Kleen86a04462014-08-11 21:27:10 +0200353 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
354 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LD_HSW)
355
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100356#define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(code, n) \
357 __EVENT_CONSTRAINT(code, n, \
358 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
359 HWEIGHT(n), 0, \
360 PERF_X86_EVENT_PEBS_LD_HSW|PERF_X86_EVENT_EXCL)
361
Andi Kleen86a04462014-08-11 21:27:10 +0200362/* Check flags and event code/umask, and set the HSW store flag */
363#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(code, n) \
364 __EVENT_CONSTRAINT(code, n, \
365 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
366 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW)
367
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100368#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(code, n) \
369 __EVENT_CONSTRAINT(code, n, \
370 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
371 HWEIGHT(n), 0, \
372 PERF_X86_EVENT_PEBS_ST_HSW|PERF_X86_EVENT_EXCL)
373
Andi Kleen86a04462014-08-11 21:27:10 +0200374/* Check flags and event code/umask, and set the HSW load flag */
375#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(code, n) \
376 __EVENT_CONSTRAINT(code, n, \
377 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
378 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LD_HSW)
379
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100380#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(code, n) \
381 __EVENT_CONSTRAINT(code, n, \
382 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
383 HWEIGHT(n), 0, \
384 PERF_X86_EVENT_PEBS_LD_HSW|PERF_X86_EVENT_EXCL)
385
Andi Kleen86a04462014-08-11 21:27:10 +0200386/* Check flags and event code/umask, and set the HSW N/A flag */
387#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(code, n) \
388 __EVENT_CONSTRAINT(code, n, \
389 INTEL_ARCH_EVENT_MASK|INTEL_ARCH_EVENT_MASK, \
390 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_NA_HSW)
391
392
Maria Dimakopouloucf30d522013-12-05 01:24:37 +0200393/*
394 * We define the end marker as having a weight of -1
395 * to enable blacklisting of events using a counter bitmask
396 * of zero and thus a weight of zero.
397 * The end marker has a weight that cannot possibly be
398 * obtained from counting the bits in the bitmask.
399 */
400#define EVENT_CONSTRAINT_END { .weight = -1 }
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300401
Maria Dimakopouloucf30d522013-12-05 01:24:37 +0200402/*
403 * Check for end marker with weight == -1
404 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300405#define for_each_event_constraint(e, c) \
Maria Dimakopouloucf30d522013-12-05 01:24:37 +0200406 for ((e) = (c); (e)->weight != -1; (e)++)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300407
408/*
409 * Extra registers for specific events.
410 *
411 * Some events need large masks and require external MSRs.
412 * Those extra MSRs end up being shared for all events on
413 * a PMU and sometimes between PMU of sibling HT threads.
414 * In either case, the kernel needs to handle conflicting
415 * accesses to those extra, shared, regs. The data structure
416 * to manage those registers is stored in cpu_hw_event.
417 */
418struct extra_reg {
419 unsigned int event;
420 unsigned int msr;
421 u64 config_mask;
422 u64 valid_mask;
423 int idx; /* per_xxx->regs[] reg index */
Kan Liang338b5222014-07-14 12:25:56 -0700424 bool extra_msr_access;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300425};
426
427#define EVENT_EXTRA_REG(e, ms, m, vm, i) { \
Kan Liang338b5222014-07-14 12:25:56 -0700428 .event = (e), \
429 .msr = (ms), \
430 .config_mask = (m), \
431 .valid_mask = (vm), \
432 .idx = EXTRA_REG_##i, \
433 .extra_msr_access = true, \
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300434 }
435
436#define INTEL_EVENT_EXTRA_REG(event, msr, vm, idx) \
437 EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT, vm, idx)
438
Stephane Eranianf20093e2013-01-24 16:10:32 +0100439#define INTEL_UEVENT_EXTRA_REG(event, msr, vm, idx) \
440 EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT | \
441 ARCH_PERFMON_EVENTSEL_UMASK, vm, idx)
442
443#define INTEL_UEVENT_PEBS_LDLAT_EXTRA_REG(c) \
444 INTEL_UEVENT_EXTRA_REG(c, \
445 MSR_PEBS_LD_LAT_THRESHOLD, \
446 0xffff, \
447 LDLAT)
448
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300449#define EVENT_EXTRA_END EVENT_EXTRA_REG(0, 0, 0, 0, RSP_0)
450
451union perf_capabilities {
452 struct {
453 u64 lbr_format:6;
454 u64 pebs_trap:1;
455 u64 pebs_arch_reg:1;
456 u64 pebs_format:4;
457 u64 smm_freeze:1;
Andi Kleen069e0c32013-06-25 08:12:33 -0700458 /*
459 * PMU supports separate counter range for writing
460 * values > 32bit.
461 */
462 u64 full_width_write:1;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300463 };
464 u64 capabilities;
465};
466
Peter Zijlstrac1d6f422011-12-06 14:07:15 +0100467struct x86_pmu_quirk {
468 struct x86_pmu_quirk *next;
469 void (*func)(void);
470};
471
Peter Zijlstraf9b4eeb2012-03-12 12:44:35 +0100472union x86_pmu_config {
473 struct {
474 u64 event:8,
475 umask:8,
476 usr:1,
477 os:1,
478 edge:1,
479 pc:1,
480 interrupt:1,
481 __reserved1:1,
482 en:1,
483 inv:1,
484 cmask:8,
485 event2:4,
486 __reserved2:4,
487 go:1,
488 ho:1;
489 } bits;
490 u64 value;
491};
492
493#define X86_CONFIG(args...) ((union x86_pmu_config){.bits = {args}}).value
494
Alexander Shishkin48070342015-01-14 14:18:20 +0200495enum {
496 x86_lbr_exclusive_lbr,
Alexander Shishkin80623822015-01-30 12:40:35 +0200497 x86_lbr_exclusive_bts,
Alexander Shishkin48070342015-01-14 14:18:20 +0200498 x86_lbr_exclusive_pt,
499 x86_lbr_exclusive_max,
500};
501
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300502/*
503 * struct x86_pmu - generic x86 pmu
504 */
505struct x86_pmu {
506 /*
507 * Generic x86 PMC bits
508 */
509 const char *name;
510 int version;
511 int (*handle_irq)(struct pt_regs *);
512 void (*disable_all)(void);
513 void (*enable_all)(int added);
514 void (*enable)(struct perf_event *);
515 void (*disable)(struct perf_event *);
516 int (*hw_config)(struct perf_event *event);
517 int (*schedule_events)(struct cpu_hw_events *cpuc, int n, int *assign);
518 unsigned eventsel;
519 unsigned perfctr;
Jacob Shin4c1fd172013-02-06 11:26:27 -0600520 int (*addr_offset)(int index, bool eventsel);
Jacob Shin0fbdad02013-02-06 11:26:28 -0600521 int (*rdpmc_index)(int index);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300522 u64 (*event_map)(int);
523 int max_events;
524 int num_counters;
525 int num_counters_fixed;
526 int cntval_bits;
527 u64 cntval_mask;
Gleb Natapovffb871b2011-11-10 14:57:26 +0200528 union {
529 unsigned long events_maskl;
530 unsigned long events_mask[BITS_TO_LONGS(ARCH_PERFMON_EVENTS_COUNT)];
531 };
532 int events_mask_len;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300533 int apic;
534 u64 max_period;
535 struct event_constraint *
536 (*get_event_constraints)(struct cpu_hw_events *cpuc,
Stephane Eranian79cba822014-11-17 20:06:56 +0100537 int idx,
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300538 struct perf_event *event);
539
540 void (*put_event_constraints)(struct cpu_hw_events *cpuc,
541 struct perf_event *event);
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100542
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100543 void (*start_scheduling)(struct cpu_hw_events *cpuc);
544
Peter Zijlstra0c41e752015-05-21 10:57:32 +0200545 void (*commit_scheduling)(struct cpu_hw_events *cpuc, int idx, int cntr);
546
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100547 void (*stop_scheduling)(struct cpu_hw_events *cpuc);
548
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300549 struct event_constraint *event_constraints;
Peter Zijlstrac1d6f422011-12-06 14:07:15 +0100550 struct x86_pmu_quirk *quirks;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300551 int perfctr_second_write;
Andi Kleen72db5592013-06-17 17:36:50 -0700552 bool late_ack;
Andi Kleen294fe0f2015-02-17 18:18:06 -0800553 unsigned (*limit_period)(struct perf_event *event, unsigned l);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300554
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100555 /*
556 * sysfs attrs
557 */
Peter Zijlstrae97df762014-02-05 20:48:51 +0100558 int attr_rdpmc_broken;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100559 int attr_rdpmc;
Jiri Olsa641cc932012-03-15 20:09:14 +0100560 struct attribute **format_attrs;
Stephane Eranianf20093e2013-01-24 16:10:32 +0100561 struct attribute **event_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100562
Jiri Olsaa4747392012-10-10 14:53:11 +0200563 ssize_t (*events_sysfs_show)(char *page, u64 config);
Andi Kleen1a6461b2013-01-24 16:10:25 +0100564 struct attribute **cpu_events;
Jiri Olsaa4747392012-10-10 14:53:11 +0200565
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100566 /*
567 * CPU Hotplug hooks
568 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300569 int (*cpu_prepare)(int cpu);
570 void (*cpu_starting)(int cpu);
571 void (*cpu_dying)(int cpu);
572 void (*cpu_dead)(int cpu);
Peter Zijlstrac93dc842012-06-08 14:50:50 +0200573
574 void (*check_microcode)(void);
Yan, Zhengba532502014-11-04 21:55:58 -0500575 void (*sched_task)(struct perf_event_context *ctx,
576 bool sched_in);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300577
578 /*
579 * Intel Arch Perfmon v2+
580 */
581 u64 intel_ctrl;
582 union perf_capabilities intel_cap;
583
584 /*
585 * Intel DebugStore bits
586 */
Peter Zijlstra597ed952012-07-09 13:50:23 +0200587 unsigned int bts :1,
Peter Zijlstra3e0091e2012-06-26 23:38:39 +0200588 bts_active :1,
589 pebs :1,
590 pebs_active :1,
591 pebs_broken :1;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300592 int pebs_record_size;
593 void (*drain_pebs)(struct pt_regs *regs);
594 struct event_constraint *pebs_constraints;
Peter Zijlstra0780c922012-06-05 10:26:43 +0200595 void (*pebs_aliases)(struct perf_event *event);
Andi Kleen70ab7002012-06-05 17:56:48 -0700596 int max_pebs_events;
Andi Kleena7b58d22015-05-27 21:13:14 -0700597 unsigned long free_running_flags;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300598
599 /*
600 * Intel LBR
601 */
602 unsigned long lbr_tos, lbr_from, lbr_to; /* MSR base regs */
603 int lbr_nr; /* hardware stack size */
Stephane Eranianb36817e2012-02-09 23:20:53 +0100604 u64 lbr_sel_mask; /* LBR_SELECT valid bits */
605 const int *lbr_sel_map; /* lbr_select mappings */
Andi Kleenb7af41a2013-09-20 07:40:44 -0700606 bool lbr_double_abort; /* duplicated lbr aborts */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300607
608 /*
Alexander Shishkin48070342015-01-14 14:18:20 +0200609 * Intel PT/LBR/BTS are exclusive
610 */
611 atomic_t lbr_exclusive[x86_lbr_exclusive_max];
612
613 /*
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300614 * Extra registers for events
615 */
616 struct extra_reg *extra_regs;
Stephane Eranian9a5e3fb2014-11-17 20:06:53 +0100617 unsigned int flags;
Gleb Natapov144d31e2011-10-05 14:01:21 +0200618
619 /*
620 * Intel host/guest support (KVM)
621 */
622 struct perf_guest_switch_msr *(*guest_get_msrs)(int *nr);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300623};
624
Yan, Zhenge18bf522014-11-04 21:56:03 -0500625struct x86_perf_task_context {
626 u64 lbr_from[MAX_LBR_ENTRIES];
627 u64 lbr_to[MAX_LBR_ENTRIES];
Andi Kleen50eab8f2015-05-10 12:22:43 -0700628 u64 lbr_info[MAX_LBR_ENTRIES];
Yan, Zhenge18bf522014-11-04 21:56:03 -0500629 int lbr_callstack_users;
630 int lbr_stack_state;
631};
632
Peter Zijlstrac1d6f422011-12-06 14:07:15 +0100633#define x86_add_quirk(func_) \
634do { \
635 static struct x86_pmu_quirk __quirk __initdata = { \
636 .func = func_, \
637 }; \
638 __quirk.next = x86_pmu.quirks; \
639 x86_pmu.quirks = &__quirk; \
640} while (0)
641
Stephane Eranian9a5e3fb2014-11-17 20:06:53 +0100642/*
643 * x86_pmu flags
644 */
645#define PMU_FL_NO_HT_SHARING 0x1 /* no hyper-threading resource sharing */
646#define PMU_FL_HAS_RSP_1 0x2 /* has 2 equivalent offcore_rsp regs */
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100647#define PMU_FL_EXCL_CNTRS 0x4 /* has exclusive counter requirements */
Stephane Eranianb37609c2014-11-17 20:07:04 +0100648#define PMU_FL_EXCL_ENABLED 0x8 /* exclusive counter active */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300649
Stephane Eranian3a54aaa2013-01-24 16:10:26 +0100650#define EVENT_VAR(_id) event_attr_##_id
651#define EVENT_PTR(_id) &event_attr_##_id.attr.attr
652
653#define EVENT_ATTR(_name, _id) \
654static struct perf_pmu_events_attr EVENT_VAR(_id) = { \
655 .attr = __ATTR(_name, 0444, events_sysfs_show, NULL), \
656 .id = PERF_COUNT_HW_##_id, \
657 .event_str = NULL, \
658};
659
660#define EVENT_ATTR_STR(_name, v, str) \
661static struct perf_pmu_events_attr event_attr_##v = { \
662 .attr = __ATTR(_name, 0444, events_sysfs_show, NULL), \
663 .id = 0, \
664 .event_str = str, \
665};
666
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300667extern struct x86_pmu x86_pmu __read_mostly;
668
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500669static inline bool x86_pmu_has_lbr_callstack(void)
670{
671 return x86_pmu.lbr_sel_map &&
672 x86_pmu.lbr_sel_map[PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT] > 0;
673}
674
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300675DECLARE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
676
677int x86_perf_event_set_period(struct perf_event *event);
678
679/*
680 * Generalized hw caching related hw_event table, filled
681 * in on a per model basis. A value of 0 means
682 * 'not supported', -1 means 'hw_event makes no sense on
683 * this CPU', any other value means the raw hw_event
684 * ID.
685 */
686
687#define C(x) PERF_COUNT_HW_CACHE_##x
688
689extern u64 __read_mostly hw_cache_event_ids
690 [PERF_COUNT_HW_CACHE_MAX]
691 [PERF_COUNT_HW_CACHE_OP_MAX]
692 [PERF_COUNT_HW_CACHE_RESULT_MAX];
693extern u64 __read_mostly hw_cache_extra_regs
694 [PERF_COUNT_HW_CACHE_MAX]
695 [PERF_COUNT_HW_CACHE_OP_MAX]
696 [PERF_COUNT_HW_CACHE_RESULT_MAX];
697
698u64 x86_perf_event_update(struct perf_event *event);
699
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300700static inline unsigned int x86_pmu_config_addr(int index)
701{
Jacob Shin4c1fd172013-02-06 11:26:27 -0600702 return x86_pmu.eventsel + (x86_pmu.addr_offset ?
703 x86_pmu.addr_offset(index, true) : index);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300704}
705
706static inline unsigned int x86_pmu_event_addr(int index)
707{
Jacob Shin4c1fd172013-02-06 11:26:27 -0600708 return x86_pmu.perfctr + (x86_pmu.addr_offset ?
709 x86_pmu.addr_offset(index, false) : index);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300710}
711
Jacob Shin0fbdad02013-02-06 11:26:28 -0600712static inline int x86_pmu_rdpmc_index(int index)
713{
714 return x86_pmu.rdpmc_index ? x86_pmu.rdpmc_index(index) : index;
715}
716
Alexander Shishkin48070342015-01-14 14:18:20 +0200717int x86_add_exclusive(unsigned int what);
718
719void x86_del_exclusive(unsigned int what);
720
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300721int x86_reserve_hardware(void);
722
723void x86_release_hardware(void);
724
Alexander Shishkin48070342015-01-14 14:18:20 +0200725void hw_perf_lbr_event_destroy(struct perf_event *event);
726
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300727int x86_setup_perfctr(struct perf_event *event);
728
729int x86_pmu_hw_config(struct perf_event *event);
730
731void x86_pmu_disable_all(void);
732
733static inline void __x86_pmu_enable_event(struct hw_perf_event *hwc,
734 u64 enable_mask)
735{
Joerg Roedel1018faa2012-02-29 14:57:32 +0100736 u64 disable_mask = __this_cpu_read(cpu_hw_events.perf_ctr_virt_mask);
737
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300738 if (hwc->extra_reg.reg)
739 wrmsrl(hwc->extra_reg.reg, hwc->extra_reg.config);
Joerg Roedel1018faa2012-02-29 14:57:32 +0100740 wrmsrl(hwc->config_base, (hwc->config | enable_mask) & ~disable_mask);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300741}
742
743void x86_pmu_enable_all(int added);
744
Peter Zijlstrab371b592015-05-21 10:57:13 +0200745int perf_assign_events(struct event_constraint **constraints, int n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200746 int wmin, int wmax, int gpmax, int *assign);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300747int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign);
748
749void x86_pmu_stop(struct perf_event *event, int flags);
750
751static inline void x86_pmu_disable_event(struct perf_event *event)
752{
753 struct hw_perf_event *hwc = &event->hw;
754
755 wrmsrl(hwc->config_base, hwc->config);
756}
757
758void x86_pmu_enable_event(struct perf_event *event);
759
760int x86_pmu_handle_irq(struct pt_regs *regs);
761
762extern struct event_constraint emptyconstraint;
763
764extern struct event_constraint unconstrained;
765
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100766static inline bool kernel_ip(unsigned long ip)
767{
768#ifdef CONFIG_X86_32
769 return ip > PAGE_OFFSET;
770#else
771 return (long)ip < 0;
772#endif
773}
774
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +0200775/*
776 * Not all PMUs provide the right context information to place the reported IP
777 * into full context. Specifically segment registers are typically not
778 * supplied.
779 *
780 * Assuming the address is a linear address (it is for IBS), we fake the CS and
781 * vm86 mode using the known zero-based code segment and 'fix up' the registers
782 * to reflect this.
783 *
784 * Intel PEBS/LBR appear to typically provide the effective address, nothing
785 * much we can do about that but pray and treat it like a linear address.
786 */
787static inline void set_linear_ip(struct pt_regs *regs, unsigned long ip)
788{
789 regs->cs = kernel_ip(ip) ? __KERNEL_CS : __USER_CS;
790 if (regs->flags & X86_VM_MASK)
791 regs->flags ^= (PERF_EFLAGS_VM | X86_VM_MASK);
792 regs->ip = ip;
793}
794
Jiri Olsa0bf79d42012-10-10 14:53:14 +0200795ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event);
Jiri Olsa20550a42012-10-10 14:53:15 +0200796ssize_t intel_event_sysfs_show(char *page, u64 config);
Jiri Olsa43c032f2012-10-10 14:53:13 +0200797
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300798#ifdef CONFIG_CPU_SUP_AMD
799
800int amd_pmu_init(void);
801
802#else /* CONFIG_CPU_SUP_AMD */
803
804static inline int amd_pmu_init(void)
805{
806 return 0;
807}
808
809#endif /* CONFIG_CPU_SUP_AMD */
810
811#ifdef CONFIG_CPU_SUP_INTEL
812
Alexander Shishkin48070342015-01-14 14:18:20 +0200813static inline bool intel_pmu_has_bts(struct perf_event *event)
814{
815 if (event->attr.config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
816 !event->attr.freq && event->hw.sample_period == 1)
817 return true;
818
819 return false;
820}
821
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300822int intel_pmu_save_and_restart(struct perf_event *event);
823
824struct event_constraint *
Stephane Eranian79cba822014-11-17 20:06:56 +0100825x86_get_event_constraints(struct cpu_hw_events *cpuc, int idx,
826 struct perf_event *event);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300827
828struct intel_shared_regs *allocate_shared_regs(int cpu);
829
830int intel_pmu_init(void);
831
832void init_debug_store_on_cpu(int cpu);
833
834void fini_debug_store_on_cpu(int cpu);
835
836void release_ds_buffers(void);
837
838void reserve_ds_buffers(void);
839
840extern struct event_constraint bts_constraint;
841
842void intel_pmu_enable_bts(u64 config);
843
844void intel_pmu_disable_bts(void);
845
846int intel_pmu_drain_bts_buffer(void);
847
848extern struct event_constraint intel_core2_pebs_event_constraints[];
849
850extern struct event_constraint intel_atom_pebs_event_constraints[];
851
Yan, Zheng1fa64182013-07-18 17:02:24 +0800852extern struct event_constraint intel_slm_pebs_event_constraints[];
853
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300854extern struct event_constraint intel_nehalem_pebs_event_constraints[];
855
856extern struct event_constraint intel_westmere_pebs_event_constraints[];
857
858extern struct event_constraint intel_snb_pebs_event_constraints[];
859
Stephane Eranian20a36e32012-09-11 01:07:01 +0200860extern struct event_constraint intel_ivb_pebs_event_constraints[];
861
Andi Kleen30443182013-06-17 17:36:49 -0700862extern struct event_constraint intel_hsw_pebs_event_constraints[];
863
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300864struct event_constraint *intel_pebs_constraints(struct perf_event *event);
865
866void intel_pmu_pebs_enable(struct perf_event *event);
867
868void intel_pmu_pebs_disable(struct perf_event *event);
869
870void intel_pmu_pebs_enable_all(void);
871
872void intel_pmu_pebs_disable_all(void);
873
Yan, Zheng9c964ef2015-05-06 15:33:51 -0400874void intel_pmu_pebs_sched_task(struct perf_event_context *ctx, bool sched_in);
875
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300876void intel_ds_init(void);
877
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500878void intel_pmu_lbr_sched_task(struct perf_event_context *ctx, bool sched_in);
879
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300880void intel_pmu_lbr_reset(void);
881
882void intel_pmu_lbr_enable(struct perf_event *event);
883
884void intel_pmu_lbr_disable(struct perf_event *event);
885
Andi Kleen1a78d932015-03-20 10:11:23 -0700886void intel_pmu_lbr_enable_all(bool pmi);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300887
888void intel_pmu_lbr_disable_all(void);
889
890void intel_pmu_lbr_read(void);
891
892void intel_pmu_lbr_init_core(void);
893
894void intel_pmu_lbr_init_nhm(void);
895
896void intel_pmu_lbr_init_atom(void);
897
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100898void intel_pmu_lbr_init_snb(void);
899
Yan, Zhenge9d7f7cd2014-11-04 21:56:00 -0500900void intel_pmu_lbr_init_hsw(void);
901
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100902int intel_pmu_setup_lbr_filter(struct perf_event *event);
903
Alexander Shishkin52ca9ce2015-01-30 12:39:52 +0200904void intel_pt_interrupt(void);
905
Alexander Shishkin80623822015-01-30 12:40:35 +0200906int intel_bts_interrupt(void);
907
908void intel_bts_enable_local(void);
909
910void intel_bts_disable_local(void);
911
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300912int p4_pmu_init(void);
913
914int p6_pmu_init(void);
915
Vince Weavere717bf42012-09-26 14:12:52 -0400916int knc_pmu_init(void);
917
Stephane Eranianf20093e2013-01-24 16:10:32 +0100918ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
919 char *page);
920
Stephane Eranianb37609c2014-11-17 20:07:04 +0100921static inline int is_ht_workaround_enabled(void)
922{
923 return !!(x86_pmu.flags & PMU_FL_EXCL_ENABLED);
924}
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300925#else /* CONFIG_CPU_SUP_INTEL */
926
927static inline void reserve_ds_buffers(void)
928{
929}
930
931static inline void release_ds_buffers(void)
932{
933}
934
935static inline int intel_pmu_init(void)
936{
937 return 0;
938}
939
940static inline struct intel_shared_regs *allocate_shared_regs(int cpu)
941{
942 return NULL;
943}
944
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200945static inline int is_ht_workaround_enabled(void)
946{
947 return 0;
948}
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300949#endif /* CONFIG_CPU_SUP_INTEL */