blob: 7a3f0fdd2fbdd24fae85a2b21675979c4a200a67 [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 */
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070079
Kevin Winchesterde0428a2011-08-30 20:41:05 -030080
81struct amd_nb {
82 int nb_id; /* NorthBridge id */
83 int refcnt; /* reference count */
84 struct perf_event *owners[X86_PMC_IDX_MAX];
85 struct event_constraint event_constraints[X86_PMC_IDX_MAX];
86};
87
88/* The maximal number of PEBS events: */
Andi Kleen70ab7002012-06-05 17:56:48 -070089#define MAX_PEBS_EVENTS 8
Kevin Winchesterde0428a2011-08-30 20:41:05 -030090
91/*
92 * A debug store configuration.
93 *
94 * We only support architectures that use 64bit fields.
95 */
96struct debug_store {
97 u64 bts_buffer_base;
98 u64 bts_index;
99 u64 bts_absolute_maximum;
100 u64 bts_interrupt_threshold;
101 u64 pebs_buffer_base;
102 u64 pebs_index;
103 u64 pebs_absolute_maximum;
104 u64 pebs_interrupt_threshold;
105 u64 pebs_event_reset[MAX_PEBS_EVENTS];
106};
107
108/*
109 * Per register state.
110 */
111struct er_account {
112 raw_spinlock_t lock; /* per-core: protect structure */
113 u64 config; /* extra MSR config */
114 u64 reg; /* extra MSR number */
115 atomic_t ref; /* reference count */
116};
117
118/*
119 * Per core/cpu state
120 *
121 * Used to coordinate shared registers between HT threads or
122 * among events on a single PMU.
123 */
124struct intel_shared_regs {
125 struct er_account regs[EXTRA_REG_MAX];
126 int refcnt; /* per-core: #HT threads */
127 unsigned core_id; /* per-core: core id */
128};
129
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100130enum intel_excl_state_type {
131 INTEL_EXCL_UNUSED = 0, /* counter is unused */
132 INTEL_EXCL_SHARED = 1, /* counter can be used by both threads */
133 INTEL_EXCL_EXCLUSIVE = 2, /* counter can be used by one thread only */
134};
135
136struct intel_excl_states {
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100137 enum intel_excl_state_type state[X86_PMC_IDX_MAX];
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100138 bool sched_started; /* true if scheduling has started */
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100139};
140
141struct intel_excl_cntrs {
142 raw_spinlock_t lock;
143
144 struct intel_excl_states states[2];
145
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200146 union {
147 u16 has_exclusive[2];
148 u32 exclusive_present;
149 };
150
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100151 int refcnt; /* per-core: #HT threads */
152 unsigned core_id; /* per-core: core id */
153};
154
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300155#define MAX_LBR_ENTRIES 16
156
Stephane Eranian90413462014-11-17 20:06:54 +0100157enum {
158 X86_PERF_KFREE_SHARED = 0,
159 X86_PERF_KFREE_EXCL = 1,
160 X86_PERF_KFREE_MAX
161};
162
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300163struct cpu_hw_events {
164 /*
165 * Generic x86 PMC bits
166 */
167 struct perf_event *events[X86_PMC_IDX_MAX]; /* in counter order */
168 unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
169 unsigned long running[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
170 int enabled;
171
Peter Zijlstrac347a2f2014-02-24 12:26:21 +0100172 int n_events; /* the # of events in the below arrays */
173 int n_added; /* the # last events in the below arrays;
174 they've never been enabled yet */
175 int n_txn; /* the # last events in the below arrays;
176 added in the current transaction */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300177 int assign[X86_PMC_IDX_MAX]; /* event to counter assignment */
178 u64 tags[X86_PMC_IDX_MAX];
Peter Zijlstrab371b592015-05-21 10:57:13 +0200179
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300180 struct perf_event *event_list[X86_PMC_IDX_MAX]; /* in enabled order */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200181 struct event_constraint *event_constraint[X86_PMC_IDX_MAX];
182
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200183 int n_excl; /* the number of exclusive events */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300184
185 unsigned int group_flag;
Peter Zijlstra5a4252942012-06-05 15:30:31 +0200186 int is_fake;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300187
188 /*
189 * Intel DebugStore bits
190 */
191 struct debug_store *ds;
192 u64 pebs_enabled;
193
194 /*
195 * Intel LBR bits
196 */
197 int lbr_users;
198 void *lbr_context;
199 struct perf_branch_stack lbr_stack;
200 struct perf_branch_entry lbr_entries[MAX_LBR_ENTRIES];
Stephane Eranianb36817e2012-02-09 23:20:53 +0100201 struct er_account *lbr_sel;
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100202 u64 br_sel;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300203
204 /*
Gleb Natapov144d31e2011-10-05 14:01:21 +0200205 * Intel host/guest exclude bits
206 */
207 u64 intel_ctrl_guest_mask;
208 u64 intel_ctrl_host_mask;
209 struct perf_guest_switch_msr guest_switch_msrs[X86_PMC_IDX_MAX];
210
211 /*
Peter Zijlstra2b9e3442013-09-12 12:53:44 +0200212 * Intel checkpoint mask
213 */
214 u64 intel_cp_status;
215
216 /*
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300217 * manage shared (per-core, per-cpu) registers
218 * used on Intel NHM/WSM/SNB
219 */
220 struct intel_shared_regs *shared_regs;
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100221 /*
222 * manage exclusive counter access between hyperthread
223 */
224 struct event_constraint *constraint_list; /* in enable order */
225 struct intel_excl_cntrs *excl_cntrs;
226 int excl_thread_id; /* 0 or 1 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300227
228 /*
229 * AMD specific bits
230 */
Joerg Roedel1018faa2012-02-29 14:57:32 +0100231 struct amd_nb *amd_nb;
232 /* Inverted mask of bits to clear in the perf_ctr ctrl registers */
233 u64 perf_ctr_virt_mask;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300234
Stephane Eranian90413462014-11-17 20:06:54 +0100235 void *kfree_on_online[X86_PERF_KFREE_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300236};
237
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100238#define __EVENT_CONSTRAINT(c, n, m, w, o, f) {\
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300239 { .idxmsk64 = (n) }, \
240 .code = (c), \
241 .cmask = (m), \
242 .weight = (w), \
Robert Richterbc1738f2011-11-18 12:35:22 +0100243 .overlap = (o), \
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100244 .flags = f, \
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300245}
246
247#define EVENT_CONSTRAINT(c, n, m) \
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100248 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 0, 0)
Robert Richterbc1738f2011-11-18 12:35:22 +0100249
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100250#define INTEL_EXCLEVT_CONSTRAINT(c, n) \
251 __EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT, HWEIGHT(n),\
252 0, PERF_X86_EVENT_EXCL)
253
Robert Richterbc1738f2011-11-18 12:35:22 +0100254/*
255 * The overlap flag marks event constraints with overlapping counter
256 * masks. This is the case if the counter mask of such an event is not
257 * a subset of any other counter mask of a constraint with an equal or
258 * higher weight, e.g.:
259 *
260 * c_overlaps = EVENT_CONSTRAINT_OVERLAP(0, 0x09, 0);
261 * c_another1 = EVENT_CONSTRAINT(0, 0x07, 0);
262 * c_another2 = EVENT_CONSTRAINT(0, 0x38, 0);
263 *
264 * The event scheduler may not select the correct counter in the first
265 * cycle because it needs to know which subsequent events will be
266 * scheduled. It may fail to schedule the events then. So we set the
267 * overlap flag for such constraints to give the scheduler a hint which
268 * events to select for counter rescheduling.
269 *
270 * Care must be taken as the rescheduling algorithm is O(n!) which
271 * will increase scheduling cycles for an over-commited system
272 * dramatically. The number of such EVENT_CONSTRAINT_OVERLAP() macros
273 * and its counter masks must be kept at a minimum.
274 */
275#define EVENT_CONSTRAINT_OVERLAP(c, n, m) \
Stephane Eranian9fac2cf2013-01-24 16:10:27 +0100276 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 1, 0)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300277
278/*
279 * Constraint on the Event code.
280 */
281#define INTEL_EVENT_CONSTRAINT(c, n) \
282 EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT)
283
284/*
285 * Constraint on the Event code + UMask + fixed-mask
286 *
287 * filter mask to validate fixed counter events.
288 * the following filters disqualify for fixed counters:
289 * - inv
290 * - edge
291 * - cnt-mask
Andi Kleen3a632cb2013-06-17 17:36:48 -0700292 * - in_tx
293 * - in_tx_checkpointed
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300294 * The other filters are supported by fixed counters.
295 * The any-thread option is supported starting with v3.
296 */
Andi Kleen3a632cb2013-06-17 17:36:48 -0700297#define FIXED_EVENT_FLAGS (X86_RAW_EVENT_MASK|HSW_IN_TX|HSW_IN_TX_CHECKPOINTED)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300298#define FIXED_EVENT_CONSTRAINT(c, n) \
Andi Kleen3a632cb2013-06-17 17:36:48 -0700299 EVENT_CONSTRAINT(c, (1ULL << (32+n)), FIXED_EVENT_FLAGS)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300300
301/*
302 * Constraint on the Event code + UMask
303 */
304#define INTEL_UEVENT_CONSTRAINT(c, n) \
305 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK)
306
Andi Kleen7550ddf2014-09-24 07:34:46 -0700307/* Like UEVENT_CONSTRAINT, but match flags too */
308#define INTEL_FLAGS_UEVENT_CONSTRAINT(c, n) \
309 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS)
310
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100311#define INTEL_EXCLUEVT_CONSTRAINT(c, n) \
312 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK, \
313 HWEIGHT(n), 0, PERF_X86_EVENT_EXCL)
314
Stephane Eranianf20093e2013-01-24 16:10:32 +0100315#define INTEL_PLD_CONSTRAINT(c, n) \
Andi Kleen86a04462014-08-11 21:27:10 +0200316 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
Stephane Eranianf20093e2013-01-24 16:10:32 +0100317 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LDLAT)
318
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100319#define INTEL_PST_CONSTRAINT(c, n) \
Andi Kleen86a04462014-08-11 21:27:10 +0200320 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
Stephane Eranian9ad64c02013-01-24 16:10:34 +0100321 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST)
322
Andi Kleen86a04462014-08-11 21:27:10 +0200323/* Event constraint, but match on all event flags too. */
324#define INTEL_FLAGS_EVENT_CONSTRAINT(c, n) \
325 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS)
326
327/* Check only flags, but allow all event/umask */
328#define INTEL_ALL_EVENT_CONSTRAINT(code, n) \
329 EVENT_CONSTRAINT(code, n, X86_ALL_EVENT_FLAGS)
330
331/* Check flags and event code, and set the HSW store flag */
332#define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_ST(code, n) \
333 __EVENT_CONSTRAINT(code, n, \
334 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
Andi Kleenf9134f32013-06-17 17:36:52 -0700335 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW)
336
Andi Kleen86a04462014-08-11 21:27:10 +0200337/* Check flags and event code, and set the HSW load flag */
338#define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(code, n) \
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100339 __EVENT_CONSTRAINT(code, n, \
Andi Kleen86a04462014-08-11 21:27:10 +0200340 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
341 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LD_HSW)
342
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100343#define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(code, n) \
344 __EVENT_CONSTRAINT(code, n, \
345 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
346 HWEIGHT(n), 0, \
347 PERF_X86_EVENT_PEBS_LD_HSW|PERF_X86_EVENT_EXCL)
348
Andi Kleen86a04462014-08-11 21:27:10 +0200349/* Check flags and event code/umask, and set the HSW store flag */
350#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_ST(code, n) \
351 __EVENT_CONSTRAINT(code, n, \
352 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
353 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW)
354
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100355#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(code, n) \
356 __EVENT_CONSTRAINT(code, n, \
357 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
358 HWEIGHT(n), 0, \
359 PERF_X86_EVENT_PEBS_ST_HSW|PERF_X86_EVENT_EXCL)
360
Andi Kleen86a04462014-08-11 21:27:10 +0200361/* Check flags and event code/umask, and set the HSW load flag */
362#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_LD(code, n) \
363 __EVENT_CONSTRAINT(code, n, \
364 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
365 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LD_HSW)
366
Maria Dimakopouloub63b4b42014-11-17 20:07:00 +0100367#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(code, n) \
368 __EVENT_CONSTRAINT(code, n, \
369 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
370 HWEIGHT(n), 0, \
371 PERF_X86_EVENT_PEBS_LD_HSW|PERF_X86_EVENT_EXCL)
372
Andi Kleen86a04462014-08-11 21:27:10 +0200373/* Check flags and event code/umask, and set the HSW N/A flag */
374#define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_NA(code, n) \
375 __EVENT_CONSTRAINT(code, n, \
376 INTEL_ARCH_EVENT_MASK|INTEL_ARCH_EVENT_MASK, \
377 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_NA_HSW)
378
379
Maria Dimakopouloucf30d522013-12-05 01:24:37 +0200380/*
381 * We define the end marker as having a weight of -1
382 * to enable blacklisting of events using a counter bitmask
383 * of zero and thus a weight of zero.
384 * The end marker has a weight that cannot possibly be
385 * obtained from counting the bits in the bitmask.
386 */
387#define EVENT_CONSTRAINT_END { .weight = -1 }
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300388
Maria Dimakopouloucf30d522013-12-05 01:24:37 +0200389/*
390 * Check for end marker with weight == -1
391 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300392#define for_each_event_constraint(e, c) \
Maria Dimakopouloucf30d522013-12-05 01:24:37 +0200393 for ((e) = (c); (e)->weight != -1; (e)++)
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300394
395/*
396 * Extra registers for specific events.
397 *
398 * Some events need large masks and require external MSRs.
399 * Those extra MSRs end up being shared for all events on
400 * a PMU and sometimes between PMU of sibling HT threads.
401 * In either case, the kernel needs to handle conflicting
402 * accesses to those extra, shared, regs. The data structure
403 * to manage those registers is stored in cpu_hw_event.
404 */
405struct extra_reg {
406 unsigned int event;
407 unsigned int msr;
408 u64 config_mask;
409 u64 valid_mask;
410 int idx; /* per_xxx->regs[] reg index */
Kan Liang338b5222014-07-14 12:25:56 -0700411 bool extra_msr_access;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300412};
413
414#define EVENT_EXTRA_REG(e, ms, m, vm, i) { \
Kan Liang338b5222014-07-14 12:25:56 -0700415 .event = (e), \
416 .msr = (ms), \
417 .config_mask = (m), \
418 .valid_mask = (vm), \
419 .idx = EXTRA_REG_##i, \
420 .extra_msr_access = true, \
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300421 }
422
423#define INTEL_EVENT_EXTRA_REG(event, msr, vm, idx) \
424 EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT, vm, idx)
425
Stephane Eranianf20093e2013-01-24 16:10:32 +0100426#define INTEL_UEVENT_EXTRA_REG(event, msr, vm, idx) \
427 EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT | \
428 ARCH_PERFMON_EVENTSEL_UMASK, vm, idx)
429
430#define INTEL_UEVENT_PEBS_LDLAT_EXTRA_REG(c) \
431 INTEL_UEVENT_EXTRA_REG(c, \
432 MSR_PEBS_LD_LAT_THRESHOLD, \
433 0xffff, \
434 LDLAT)
435
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300436#define EVENT_EXTRA_END EVENT_EXTRA_REG(0, 0, 0, 0, RSP_0)
437
438union perf_capabilities {
439 struct {
440 u64 lbr_format:6;
441 u64 pebs_trap:1;
442 u64 pebs_arch_reg:1;
443 u64 pebs_format:4;
444 u64 smm_freeze:1;
Andi Kleen069e0c32013-06-25 08:12:33 -0700445 /*
446 * PMU supports separate counter range for writing
447 * values > 32bit.
448 */
449 u64 full_width_write:1;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300450 };
451 u64 capabilities;
452};
453
Peter Zijlstrac1d6f422011-12-06 14:07:15 +0100454struct x86_pmu_quirk {
455 struct x86_pmu_quirk *next;
456 void (*func)(void);
457};
458
Peter Zijlstraf9b4eeb2012-03-12 12:44:35 +0100459union x86_pmu_config {
460 struct {
461 u64 event:8,
462 umask:8,
463 usr:1,
464 os:1,
465 edge:1,
466 pc:1,
467 interrupt:1,
468 __reserved1:1,
469 en:1,
470 inv:1,
471 cmask:8,
472 event2:4,
473 __reserved2:4,
474 go:1,
475 ho:1;
476 } bits;
477 u64 value;
478};
479
480#define X86_CONFIG(args...) ((union x86_pmu_config){.bits = {args}}).value
481
Alexander Shishkin48070342015-01-14 14:18:20 +0200482enum {
483 x86_lbr_exclusive_lbr,
Alexander Shishkin80623822015-01-30 12:40:35 +0200484 x86_lbr_exclusive_bts,
Alexander Shishkin48070342015-01-14 14:18:20 +0200485 x86_lbr_exclusive_pt,
486 x86_lbr_exclusive_max,
487};
488
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300489/*
490 * struct x86_pmu - generic x86 pmu
491 */
492struct x86_pmu {
493 /*
494 * Generic x86 PMC bits
495 */
496 const char *name;
497 int version;
498 int (*handle_irq)(struct pt_regs *);
499 void (*disable_all)(void);
500 void (*enable_all)(int added);
501 void (*enable)(struct perf_event *);
502 void (*disable)(struct perf_event *);
503 int (*hw_config)(struct perf_event *event);
504 int (*schedule_events)(struct cpu_hw_events *cpuc, int n, int *assign);
505 unsigned eventsel;
506 unsigned perfctr;
Jacob Shin4c1fd172013-02-06 11:26:27 -0600507 int (*addr_offset)(int index, bool eventsel);
Jacob Shin0fbdad02013-02-06 11:26:28 -0600508 int (*rdpmc_index)(int index);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300509 u64 (*event_map)(int);
510 int max_events;
511 int num_counters;
512 int num_counters_fixed;
513 int cntval_bits;
514 u64 cntval_mask;
Gleb Natapovffb871b2011-11-10 14:57:26 +0200515 union {
516 unsigned long events_maskl;
517 unsigned long events_mask[BITS_TO_LONGS(ARCH_PERFMON_EVENTS_COUNT)];
518 };
519 int events_mask_len;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300520 int apic;
521 u64 max_period;
522 struct event_constraint *
523 (*get_event_constraints)(struct cpu_hw_events *cpuc,
Stephane Eranian79cba822014-11-17 20:06:56 +0100524 int idx,
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300525 struct perf_event *event);
526
527 void (*put_event_constraints)(struct cpu_hw_events *cpuc,
528 struct perf_event *event);
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100529
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100530 void (*start_scheduling)(struct cpu_hw_events *cpuc);
531
Peter Zijlstra0c41e752015-05-21 10:57:32 +0200532 void (*commit_scheduling)(struct cpu_hw_events *cpuc, int idx, int cntr);
533
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100534 void (*stop_scheduling)(struct cpu_hw_events *cpuc);
535
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300536 struct event_constraint *event_constraints;
Peter Zijlstrac1d6f422011-12-06 14:07:15 +0100537 struct x86_pmu_quirk *quirks;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300538 int perfctr_second_write;
Andi Kleen72db5592013-06-17 17:36:50 -0700539 bool late_ack;
Andi Kleen294fe0f2015-02-17 18:18:06 -0800540 unsigned (*limit_period)(struct perf_event *event, unsigned l);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300541
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100542 /*
543 * sysfs attrs
544 */
Peter Zijlstrae97df762014-02-05 20:48:51 +0100545 int attr_rdpmc_broken;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100546 int attr_rdpmc;
Jiri Olsa641cc932012-03-15 20:09:14 +0100547 struct attribute **format_attrs;
Stephane Eranianf20093e2013-01-24 16:10:32 +0100548 struct attribute **event_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100549
Jiri Olsaa4747392012-10-10 14:53:11 +0200550 ssize_t (*events_sysfs_show)(char *page, u64 config);
Andi Kleen1a6461b2013-01-24 16:10:25 +0100551 struct attribute **cpu_events;
Jiri Olsaa4747392012-10-10 14:53:11 +0200552
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +0100553 /*
554 * CPU Hotplug hooks
555 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300556 int (*cpu_prepare)(int cpu);
557 void (*cpu_starting)(int cpu);
558 void (*cpu_dying)(int cpu);
559 void (*cpu_dead)(int cpu);
Peter Zijlstrac93dc842012-06-08 14:50:50 +0200560
561 void (*check_microcode)(void);
Yan, Zhengba532502014-11-04 21:55:58 -0500562 void (*sched_task)(struct perf_event_context *ctx,
563 bool sched_in);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300564
565 /*
566 * Intel Arch Perfmon v2+
567 */
568 u64 intel_ctrl;
569 union perf_capabilities intel_cap;
570
571 /*
572 * Intel DebugStore bits
573 */
Peter Zijlstra597ed952012-07-09 13:50:23 +0200574 unsigned int bts :1,
Peter Zijlstra3e0091e2012-06-26 23:38:39 +0200575 bts_active :1,
576 pebs :1,
577 pebs_active :1,
578 pebs_broken :1;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300579 int pebs_record_size;
580 void (*drain_pebs)(struct pt_regs *regs);
581 struct event_constraint *pebs_constraints;
Peter Zijlstra0780c922012-06-05 10:26:43 +0200582 void (*pebs_aliases)(struct perf_event *event);
Andi Kleen70ab7002012-06-05 17:56:48 -0700583 int max_pebs_events;
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300584
585 /*
586 * Intel LBR
587 */
588 unsigned long lbr_tos, lbr_from, lbr_to; /* MSR base regs */
589 int lbr_nr; /* hardware stack size */
Stephane Eranianb36817e2012-02-09 23:20:53 +0100590 u64 lbr_sel_mask; /* LBR_SELECT valid bits */
591 const int *lbr_sel_map; /* lbr_select mappings */
Andi Kleenb7af41a2013-09-20 07:40:44 -0700592 bool lbr_double_abort; /* duplicated lbr aborts */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300593
594 /*
Alexander Shishkin48070342015-01-14 14:18:20 +0200595 * Intel PT/LBR/BTS are exclusive
596 */
597 atomic_t lbr_exclusive[x86_lbr_exclusive_max];
598
599 /*
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300600 * Extra registers for events
601 */
602 struct extra_reg *extra_regs;
Stephane Eranian9a5e3fb2014-11-17 20:06:53 +0100603 unsigned int flags;
Gleb Natapov144d31e2011-10-05 14:01:21 +0200604
605 /*
606 * Intel host/guest support (KVM)
607 */
608 struct perf_guest_switch_msr *(*guest_get_msrs)(int *nr);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300609};
610
Yan, Zhenge18bf522014-11-04 21:56:03 -0500611struct x86_perf_task_context {
612 u64 lbr_from[MAX_LBR_ENTRIES];
613 u64 lbr_to[MAX_LBR_ENTRIES];
614 int lbr_callstack_users;
615 int lbr_stack_state;
616};
617
Peter Zijlstrac1d6f422011-12-06 14:07:15 +0100618#define x86_add_quirk(func_) \
619do { \
620 static struct x86_pmu_quirk __quirk __initdata = { \
621 .func = func_, \
622 }; \
623 __quirk.next = x86_pmu.quirks; \
624 x86_pmu.quirks = &__quirk; \
625} while (0)
626
Stephane Eranian9a5e3fb2014-11-17 20:06:53 +0100627/*
628 * x86_pmu flags
629 */
630#define PMU_FL_NO_HT_SHARING 0x1 /* no hyper-threading resource sharing */
631#define PMU_FL_HAS_RSP_1 0x2 /* has 2 equivalent offcore_rsp regs */
Maria Dimakopoulou6f6539c2014-11-17 20:06:57 +0100632#define PMU_FL_EXCL_CNTRS 0x4 /* has exclusive counter requirements */
Stephane Eranianb37609c2014-11-17 20:07:04 +0100633#define PMU_FL_EXCL_ENABLED 0x8 /* exclusive counter active */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300634
Stephane Eranian3a54aaa2013-01-24 16:10:26 +0100635#define EVENT_VAR(_id) event_attr_##_id
636#define EVENT_PTR(_id) &event_attr_##_id.attr.attr
637
638#define EVENT_ATTR(_name, _id) \
639static struct perf_pmu_events_attr EVENT_VAR(_id) = { \
640 .attr = __ATTR(_name, 0444, events_sysfs_show, NULL), \
641 .id = PERF_COUNT_HW_##_id, \
642 .event_str = NULL, \
643};
644
645#define EVENT_ATTR_STR(_name, v, str) \
646static struct perf_pmu_events_attr event_attr_##v = { \
647 .attr = __ATTR(_name, 0444, events_sysfs_show, NULL), \
648 .id = 0, \
649 .event_str = str, \
650};
651
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300652extern struct x86_pmu x86_pmu __read_mostly;
653
Yan, Zhenge9d7f7c2014-11-04 21:56:00 -0500654static inline bool x86_pmu_has_lbr_callstack(void)
655{
656 return x86_pmu.lbr_sel_map &&
657 x86_pmu.lbr_sel_map[PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT] > 0;
658}
659
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300660DECLARE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
661
662int x86_perf_event_set_period(struct perf_event *event);
663
664/*
665 * Generalized hw caching related hw_event table, filled
666 * in on a per model basis. A value of 0 means
667 * 'not supported', -1 means 'hw_event makes no sense on
668 * this CPU', any other value means the raw hw_event
669 * ID.
670 */
671
672#define C(x) PERF_COUNT_HW_CACHE_##x
673
674extern u64 __read_mostly hw_cache_event_ids
675 [PERF_COUNT_HW_CACHE_MAX]
676 [PERF_COUNT_HW_CACHE_OP_MAX]
677 [PERF_COUNT_HW_CACHE_RESULT_MAX];
678extern u64 __read_mostly hw_cache_extra_regs
679 [PERF_COUNT_HW_CACHE_MAX]
680 [PERF_COUNT_HW_CACHE_OP_MAX]
681 [PERF_COUNT_HW_CACHE_RESULT_MAX];
682
683u64 x86_perf_event_update(struct perf_event *event);
684
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300685static inline unsigned int x86_pmu_config_addr(int index)
686{
Jacob Shin4c1fd172013-02-06 11:26:27 -0600687 return x86_pmu.eventsel + (x86_pmu.addr_offset ?
688 x86_pmu.addr_offset(index, true) : index);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300689}
690
691static inline unsigned int x86_pmu_event_addr(int index)
692{
Jacob Shin4c1fd172013-02-06 11:26:27 -0600693 return x86_pmu.perfctr + (x86_pmu.addr_offset ?
694 x86_pmu.addr_offset(index, false) : index);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300695}
696
Jacob Shin0fbdad02013-02-06 11:26:28 -0600697static inline int x86_pmu_rdpmc_index(int index)
698{
699 return x86_pmu.rdpmc_index ? x86_pmu.rdpmc_index(index) : index;
700}
701
Alexander Shishkin48070342015-01-14 14:18:20 +0200702int x86_add_exclusive(unsigned int what);
703
704void x86_del_exclusive(unsigned int what);
705
706void hw_perf_lbr_event_destroy(struct perf_event *event);
707
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300708int x86_setup_perfctr(struct perf_event *event);
709
710int x86_pmu_hw_config(struct perf_event *event);
711
712void x86_pmu_disable_all(void);
713
714static inline void __x86_pmu_enable_event(struct hw_perf_event *hwc,
715 u64 enable_mask)
716{
Joerg Roedel1018faa2012-02-29 14:57:32 +0100717 u64 disable_mask = __this_cpu_read(cpu_hw_events.perf_ctr_virt_mask);
718
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300719 if (hwc->extra_reg.reg)
720 wrmsrl(hwc->extra_reg.reg, hwc->extra_reg.config);
Joerg Roedel1018faa2012-02-29 14:57:32 +0100721 wrmsrl(hwc->config_base, (hwc->config | enable_mask) & ~disable_mask);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300722}
723
724void x86_pmu_enable_all(int added);
725
Peter Zijlstrab371b592015-05-21 10:57:13 +0200726int perf_assign_events(struct event_constraint **constraints, int n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200727 int wmin, int wmax, int gpmax, int *assign);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300728int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign);
729
730void x86_pmu_stop(struct perf_event *event, int flags);
731
732static inline void x86_pmu_disable_event(struct perf_event *event)
733{
734 struct hw_perf_event *hwc = &event->hw;
735
736 wrmsrl(hwc->config_base, hwc->config);
737}
738
739void x86_pmu_enable_event(struct perf_event *event);
740
741int x86_pmu_handle_irq(struct pt_regs *regs);
742
743extern struct event_constraint emptyconstraint;
744
745extern struct event_constraint unconstrained;
746
Stephane Eranian3e702ff2012-02-09 23:20:58 +0100747static inline bool kernel_ip(unsigned long ip)
748{
749#ifdef CONFIG_X86_32
750 return ip > PAGE_OFFSET;
751#else
752 return (long)ip < 0;
753#endif
754}
755
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +0200756/*
757 * Not all PMUs provide the right context information to place the reported IP
758 * into full context. Specifically segment registers are typically not
759 * supplied.
760 *
761 * Assuming the address is a linear address (it is for IBS), we fake the CS and
762 * vm86 mode using the known zero-based code segment and 'fix up' the registers
763 * to reflect this.
764 *
765 * Intel PEBS/LBR appear to typically provide the effective address, nothing
766 * much we can do about that but pray and treat it like a linear address.
767 */
768static inline void set_linear_ip(struct pt_regs *regs, unsigned long ip)
769{
770 regs->cs = kernel_ip(ip) ? __KERNEL_CS : __USER_CS;
771 if (regs->flags & X86_VM_MASK)
772 regs->flags ^= (PERF_EFLAGS_VM | X86_VM_MASK);
773 regs->ip = ip;
774}
775
Jiri Olsa0bf79d42012-10-10 14:53:14 +0200776ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event);
Jiri Olsa20550a42012-10-10 14:53:15 +0200777ssize_t intel_event_sysfs_show(char *page, u64 config);
Jiri Olsa43c032f2012-10-10 14:53:13 +0200778
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300779#ifdef CONFIG_CPU_SUP_AMD
780
781int amd_pmu_init(void);
782
783#else /* CONFIG_CPU_SUP_AMD */
784
785static inline int amd_pmu_init(void)
786{
787 return 0;
788}
789
790#endif /* CONFIG_CPU_SUP_AMD */
791
792#ifdef CONFIG_CPU_SUP_INTEL
793
Alexander Shishkin48070342015-01-14 14:18:20 +0200794static inline bool intel_pmu_needs_lbr_smpl(struct perf_event *event)
795{
796 /* user explicitly requested branch sampling */
797 if (has_branch_stack(event))
798 return true;
799
800 /* implicit branch sampling to correct PEBS skid */
801 if (x86_pmu.intel_cap.pebs_trap && event->attr.precise_ip > 1 &&
802 x86_pmu.intel_cap.pebs_format < 2)
803 return true;
804
805 return false;
806}
807
808static inline bool intel_pmu_has_bts(struct perf_event *event)
809{
810 if (event->attr.config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
811 !event->attr.freq && event->hw.sample_period == 1)
812 return true;
813
814 return false;
815}
816
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300817int intel_pmu_save_and_restart(struct perf_event *event);
818
819struct event_constraint *
Stephane Eranian79cba822014-11-17 20:06:56 +0100820x86_get_event_constraints(struct cpu_hw_events *cpuc, int idx,
821 struct perf_event *event);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300822
823struct intel_shared_regs *allocate_shared_regs(int cpu);
824
825int intel_pmu_init(void);
826
827void init_debug_store_on_cpu(int cpu);
828
829void fini_debug_store_on_cpu(int cpu);
830
831void release_ds_buffers(void);
832
833void reserve_ds_buffers(void);
834
835extern struct event_constraint bts_constraint;
836
837void intel_pmu_enable_bts(u64 config);
838
839void intel_pmu_disable_bts(void);
840
841int intel_pmu_drain_bts_buffer(void);
842
843extern struct event_constraint intel_core2_pebs_event_constraints[];
844
845extern struct event_constraint intel_atom_pebs_event_constraints[];
846
Yan, Zheng1fa641802013-07-18 17:02:24 +0800847extern struct event_constraint intel_slm_pebs_event_constraints[];
848
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300849extern struct event_constraint intel_nehalem_pebs_event_constraints[];
850
851extern struct event_constraint intel_westmere_pebs_event_constraints[];
852
853extern struct event_constraint intel_snb_pebs_event_constraints[];
854
Stephane Eranian20a36e32012-09-11 01:07:01 +0200855extern struct event_constraint intel_ivb_pebs_event_constraints[];
856
Andi Kleen30443182013-06-17 17:36:49 -0700857extern struct event_constraint intel_hsw_pebs_event_constraints[];
858
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300859struct event_constraint *intel_pebs_constraints(struct perf_event *event);
860
861void intel_pmu_pebs_enable(struct perf_event *event);
862
863void intel_pmu_pebs_disable(struct perf_event *event);
864
865void intel_pmu_pebs_enable_all(void);
866
867void intel_pmu_pebs_disable_all(void);
868
869void intel_ds_init(void);
870
Yan, Zheng2a0ad3b2014-11-04 21:55:59 -0500871void intel_pmu_lbr_sched_task(struct perf_event_context *ctx, bool sched_in);
872
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300873void intel_pmu_lbr_reset(void);
874
875void intel_pmu_lbr_enable(struct perf_event *event);
876
877void intel_pmu_lbr_disable(struct perf_event *event);
878
Andi Kleen1a78d932015-03-20 10:11:23 -0700879void intel_pmu_lbr_enable_all(bool pmi);
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300880
881void intel_pmu_lbr_disable_all(void);
882
883void intel_pmu_lbr_read(void);
884
885void intel_pmu_lbr_init_core(void);
886
887void intel_pmu_lbr_init_nhm(void);
888
889void intel_pmu_lbr_init_atom(void);
890
Stephane Eranianc5cc2cd2012-02-09 23:20:55 +0100891void intel_pmu_lbr_init_snb(void);
892
Yan, Zhenge9d7f7c2014-11-04 21:56:00 -0500893void intel_pmu_lbr_init_hsw(void);
894
Stephane Eranian60ce0fb2012-02-09 23:20:57 +0100895int intel_pmu_setup_lbr_filter(struct perf_event *event);
896
Alexander Shishkin52ca9ce2015-01-30 12:39:52 +0200897void intel_pt_interrupt(void);
898
Alexander Shishkin80623822015-01-30 12:40:35 +0200899int intel_bts_interrupt(void);
900
901void intel_bts_enable_local(void);
902
903void intel_bts_disable_local(void);
904
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300905int p4_pmu_init(void);
906
907int p6_pmu_init(void);
908
Vince Weavere717bf42012-09-26 14:12:52 -0400909int knc_pmu_init(void);
910
Stephane Eranianf20093e2013-01-24 16:10:32 +0100911ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
912 char *page);
913
Stephane Eranianb37609c2014-11-17 20:07:04 +0100914static inline int is_ht_workaround_enabled(void)
915{
916 return !!(x86_pmu.flags & PMU_FL_EXCL_ENABLED);
917}
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300918#else /* CONFIG_CPU_SUP_INTEL */
919
920static inline void reserve_ds_buffers(void)
921{
922}
923
924static inline void release_ds_buffers(void)
925{
926}
927
928static inline int intel_pmu_init(void)
929{
930 return 0;
931}
932
933static inline struct intel_shared_regs *allocate_shared_regs(int cpu)
934{
935 return NULL;
936}
937
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200938static inline int is_ht_workaround_enabled(void)
939{
940 return 0;
941}
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300942#endif /* CONFIG_CPU_SUP_INTEL */