2 * Performance events x86 architecture header
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
12 * For licencing details see kernel-base/COPYING
15 #include <linux/perf_event.h>
19 #define wrmsrl(msr, val) \
21 unsigned int _msr = (msr); \
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)); \
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 *-----------------------------------------
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.
44 EXTRA_REG_NONE
= -1, /* not used */
46 EXTRA_REG_RSP_0
= 0, /* offcore_response_0 */
47 EXTRA_REG_RSP_1
= 1, /* offcore_response_1 */
48 EXTRA_REG_LBR
= 2, /* lbr_select */
49 EXTRA_REG_LDLAT
= 3, /* ld_lat_threshold */
51 EXTRA_REG_MAX
/* number of entries needed */
54 struct event_constraint
{
56 unsigned long idxmsk
[BITS_TO_LONGS(X86_PMC_IDX_MAX
)];
66 * struct hw_perf_event.flags flags
68 #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 */
77 #define PERF_X86_EVENT_EXCL_ACCT 0x0200 /* accounted EXCL event */
81 int nb_id
; /* NorthBridge id */
82 int refcnt
; /* reference count */
83 struct perf_event
*owners
[X86_PMC_IDX_MAX
];
84 struct event_constraint event_constraints
[X86_PMC_IDX_MAX
];
87 /* The maximal number of PEBS events: */
88 #define MAX_PEBS_EVENTS 8
91 * A debug store configuration.
93 * We only support architectures that use 64bit fields.
98 u64 bts_absolute_maximum
;
99 u64 bts_interrupt_threshold
;
100 u64 pebs_buffer_base
;
102 u64 pebs_absolute_maximum
;
103 u64 pebs_interrupt_threshold
;
104 u64 pebs_event_reset
[MAX_PEBS_EVENTS
];
108 * Per register state.
111 raw_spinlock_t lock
; /* per-core: protect structure */
112 u64 config
; /* extra MSR config */
113 u64 reg
; /* extra MSR number */
114 atomic_t ref
; /* reference count */
120 * Used to coordinate shared registers between HT threads or
121 * among events on a single PMU.
123 struct intel_shared_regs
{
124 struct er_account regs
[EXTRA_REG_MAX
];
125 int refcnt
; /* per-core: #HT threads */
126 unsigned core_id
; /* per-core: core id */
129 enum intel_excl_state_type
{
130 INTEL_EXCL_UNUSED
= 0, /* counter is unused */
131 INTEL_EXCL_SHARED
= 1, /* counter can be used by both threads */
132 INTEL_EXCL_EXCLUSIVE
= 2, /* counter can be used by one thread only */
135 struct intel_excl_states
{
136 enum intel_excl_state_type init_state
[X86_PMC_IDX_MAX
];
137 enum intel_excl_state_type state
[X86_PMC_IDX_MAX
];
138 bool sched_started
; /* true if scheduling has started */
141 struct intel_excl_cntrs
{
144 struct intel_excl_states states
[2];
147 u16 has_exclusive
[2];
148 u32 exclusive_present
;
151 int refcnt
; /* per-core: #HT threads */
152 unsigned core_id
; /* per-core: core id */
155 #define MAX_LBR_ENTRIES 16
158 X86_PERF_KFREE_SHARED
= 0,
159 X86_PERF_KFREE_EXCL
= 1,
163 struct cpu_hw_events
{
165 * Generic x86 PMC bits
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
)];
172 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 */
177 int assign
[X86_PMC_IDX_MAX
]; /* event to counter assignment */
178 u64 tags
[X86_PMC_IDX_MAX
];
180 struct perf_event
*event_list
[X86_PMC_IDX_MAX
]; /* in enabled order */
181 struct event_constraint
*event_constraint
[X86_PMC_IDX_MAX
];
183 int n_excl
; /* the number of exclusive events */
185 unsigned int group_flag
;
189 * Intel DebugStore bits
191 struct debug_store
*ds
;
199 struct perf_branch_stack lbr_stack
;
200 struct perf_branch_entry lbr_entries
[MAX_LBR_ENTRIES
];
201 struct er_account
*lbr_sel
;
205 * Intel host/guest exclude bits
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
];
212 * Intel checkpoint mask
217 * manage shared (per-core, per-cpu) registers
218 * used on Intel NHM/WSM/SNB
220 struct intel_shared_regs
*shared_regs
;
222 * manage exclusive counter access between hyperthread
224 struct event_constraint
*constraint_list
; /* in enable order */
225 struct intel_excl_cntrs
*excl_cntrs
;
226 int excl_thread_id
; /* 0 or 1 */
231 struct amd_nb
*amd_nb
;
232 /* Inverted mask of bits to clear in the perf_ctr ctrl registers */
233 u64 perf_ctr_virt_mask
;
235 void *kfree_on_online
[X86_PERF_KFREE_MAX
];
238 #define __EVENT_CONSTRAINT(c, n, m, w, o, f) {\
239 { .idxmsk64 = (n) }, \
247 #define EVENT_CONSTRAINT(c, n, m) \
248 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 0, 0)
250 #define INTEL_EXCLEVT_CONSTRAINT(c, n) \
251 __EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT, HWEIGHT(n),\
252 0, PERF_X86_EVENT_EXCL)
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.:
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);
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.
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.
275 #define EVENT_CONSTRAINT_OVERLAP(c, n, m) \
276 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n), 1, 0)
279 * Constraint on the Event code.
281 #define INTEL_EVENT_CONSTRAINT(c, n) \
282 EVENT_CONSTRAINT(c, n, ARCH_PERFMON_EVENTSEL_EVENT)
285 * Constraint on the Event code + UMask + fixed-mask
287 * filter mask to validate fixed counter events.
288 * the following filters disqualify for fixed counters:
293 * - in_tx_checkpointed
294 * The other filters are supported by fixed counters.
295 * The any-thread option is supported starting with v3.
297 #define FIXED_EVENT_FLAGS (X86_RAW_EVENT_MASK|HSW_IN_TX|HSW_IN_TX_CHECKPOINTED)
298 #define FIXED_EVENT_CONSTRAINT(c, n) \
299 EVENT_CONSTRAINT(c, (1ULL << (32+n)), FIXED_EVENT_FLAGS)
302 * Constraint on the Event code + UMask
304 #define INTEL_UEVENT_CONSTRAINT(c, n) \
305 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK)
307 /* 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)
311 #define INTEL_EXCLUEVT_CONSTRAINT(c, n) \
312 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK, \
313 HWEIGHT(n), 0, PERF_X86_EVENT_EXCL)
315 #define INTEL_PLD_CONSTRAINT(c, n) \
316 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
317 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LDLAT)
319 #define INTEL_PST_CONSTRAINT(c, n) \
320 __EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
321 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST)
323 /* 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)
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)
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, \
335 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_ST_HSW)
337 /* Check flags and event code, and set the HSW load flag */
338 #define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_LD(code, n) \
339 __EVENT_CONSTRAINT(code, n, \
340 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
341 HWEIGHT(n), 0, PERF_X86_EVENT_PEBS_LD_HSW)
343 #define INTEL_FLAGS_EVENT_CONSTRAINT_DATALA_XLD(code, n) \
344 __EVENT_CONSTRAINT(code, n, \
345 ARCH_PERFMON_EVENTSEL_EVENT|X86_ALL_EVENT_FLAGS, \
347 PERF_X86_EVENT_PEBS_LD_HSW|PERF_X86_EVENT_EXCL)
349 /* 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)
355 #define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XST(code, n) \
356 __EVENT_CONSTRAINT(code, n, \
357 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
359 PERF_X86_EVENT_PEBS_ST_HSW|PERF_X86_EVENT_EXCL)
361 /* 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)
367 #define INTEL_FLAGS_UEVENT_CONSTRAINT_DATALA_XLD(code, n) \
368 __EVENT_CONSTRAINT(code, n, \
369 INTEL_ARCH_EVENT_MASK|X86_ALL_EVENT_FLAGS, \
371 PERF_X86_EVENT_PEBS_LD_HSW|PERF_X86_EVENT_EXCL)
373 /* 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)
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.
387 #define EVENT_CONSTRAINT_END { .weight = -1 }
390 * Check for end marker with weight == -1
392 #define for_each_event_constraint(e, c) \
393 for ((e) = (c); (e)->weight != -1; (e)++)
396 * Extra registers for specific events.
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.
410 int idx
; /* per_xxx->regs[] reg index */
411 bool extra_msr_access
;
414 #define EVENT_EXTRA_REG(e, ms, m, vm, i) { \
417 .config_mask = (m), \
418 .valid_mask = (vm), \
419 .idx = EXTRA_REG_##i, \
420 .extra_msr_access = true, \
423 #define INTEL_EVENT_EXTRA_REG(event, msr, vm, idx) \
424 EVENT_EXTRA_REG(event, msr, ARCH_PERFMON_EVENTSEL_EVENT, vm, idx)
426 #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)
430 #define INTEL_UEVENT_PEBS_LDLAT_EXTRA_REG(c) \
431 INTEL_UEVENT_EXTRA_REG(c, \
432 MSR_PEBS_LD_LAT_THRESHOLD, \
436 #define EVENT_EXTRA_END EVENT_EXTRA_REG(0, 0, 0, 0, RSP_0)
438 union perf_capabilities
{
446 * PMU supports separate counter range for writing
449 u64 full_width_write
:1;
454 struct x86_pmu_quirk
{
455 struct x86_pmu_quirk
*next
;
459 union x86_pmu_config
{
480 #define X86_CONFIG(args...) ((union x86_pmu_config){.bits = {args}}).value
483 x86_lbr_exclusive_lbr
,
484 x86_lbr_exclusive_bts
,
485 x86_lbr_exclusive_pt
,
486 x86_lbr_exclusive_max
,
490 * struct x86_pmu - generic x86 pmu
494 * Generic x86 PMC bits
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
);
507 int (*addr_offset
)(int index
, bool eventsel
);
508 int (*rdpmc_index
)(int index
);
509 u64 (*event_map
)(int);
512 int num_counters_fixed
;
516 unsigned long events_maskl
;
517 unsigned long events_mask
[BITS_TO_LONGS(ARCH_PERFMON_EVENTS_COUNT
)];
522 struct event_constraint
*
523 (*get_event_constraints
)(struct cpu_hw_events
*cpuc
,
525 struct perf_event
*event
);
527 void (*put_event_constraints
)(struct cpu_hw_events
*cpuc
,
528 struct perf_event
*event
);
530 void (*commit_scheduling
)(struct cpu_hw_events
*cpuc
, int idx
, int cntr
);
532 void (*start_scheduling
)(struct cpu_hw_events
*cpuc
);
534 void (*stop_scheduling
)(struct cpu_hw_events
*cpuc
);
536 struct event_constraint
*event_constraints
;
537 struct x86_pmu_quirk
*quirks
;
538 int perfctr_second_write
;
540 unsigned (*limit_period
)(struct perf_event
*event
, unsigned l
);
545 int attr_rdpmc_broken
;
547 struct attribute
**format_attrs
;
548 struct attribute
**event_attrs
;
550 ssize_t (*events_sysfs_show
)(char *page
, u64 config
);
551 struct attribute
**cpu_events
;
556 int (*cpu_prepare
)(int cpu
);
557 void (*cpu_starting
)(int cpu
);
558 void (*cpu_dying
)(int cpu
);
559 void (*cpu_dead
)(int cpu
);
561 void (*check_microcode
)(void);
562 void (*sched_task
)(struct perf_event_context
*ctx
,
566 * Intel Arch Perfmon v2+
569 union perf_capabilities intel_cap
;
572 * Intel DebugStore bits
579 int pebs_record_size
;
580 void (*drain_pebs
)(struct pt_regs
*regs
);
581 struct event_constraint
*pebs_constraints
;
582 void (*pebs_aliases
)(struct perf_event
*event
);
588 unsigned long lbr_tos
, lbr_from
, lbr_to
; /* MSR base regs */
589 int lbr_nr
; /* hardware stack size */
590 u64 lbr_sel_mask
; /* LBR_SELECT valid bits */
591 const int *lbr_sel_map
; /* lbr_select mappings */
592 bool lbr_double_abort
; /* duplicated lbr aborts */
595 * Intel PT/LBR/BTS are exclusive
597 atomic_t lbr_exclusive
[x86_lbr_exclusive_max
];
600 * Extra registers for events
602 struct extra_reg
*extra_regs
;
606 * Intel host/guest support (KVM)
608 struct perf_guest_switch_msr
*(*guest_get_msrs
)(int *nr
);
611 struct x86_perf_task_context
{
612 u64 lbr_from
[MAX_LBR_ENTRIES
];
613 u64 lbr_to
[MAX_LBR_ENTRIES
];
614 int lbr_callstack_users
;
618 #define x86_add_quirk(func_) \
620 static struct x86_pmu_quirk __quirk __initdata = { \
623 __quirk.next = x86_pmu.quirks; \
624 x86_pmu.quirks = &__quirk; \
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 */
632 #define PMU_FL_EXCL_CNTRS 0x4 /* has exclusive counter requirements */
633 #define PMU_FL_EXCL_ENABLED 0x8 /* exclusive counter active */
635 #define EVENT_VAR(_id) event_attr_##_id
636 #define EVENT_PTR(_id) &event_attr_##_id.attr.attr
638 #define EVENT_ATTR(_name, _id) \
639 static struct perf_pmu_events_attr EVENT_VAR(_id) = { \
640 .attr = __ATTR(_name, 0444, events_sysfs_show, NULL), \
641 .id = PERF_COUNT_HW_##_id, \
645 #define EVENT_ATTR_STR(_name, v, str) \
646 static struct perf_pmu_events_attr event_attr_##v = { \
647 .attr = __ATTR(_name, 0444, events_sysfs_show, NULL), \
652 extern struct x86_pmu x86_pmu __read_mostly
;
654 static inline bool x86_pmu_has_lbr_callstack(void)
656 return x86_pmu
.lbr_sel_map
&&
657 x86_pmu
.lbr_sel_map
[PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT
] > 0;
660 DECLARE_PER_CPU(struct cpu_hw_events
, cpu_hw_events
);
662 int x86_perf_event_set_period(struct perf_event
*event
);
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
672 #define C(x) PERF_COUNT_HW_CACHE_##x
674 extern 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
];
678 extern 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
];
683 u64
x86_perf_event_update(struct perf_event
*event
);
685 static inline unsigned int x86_pmu_config_addr(int index
)
687 return x86_pmu
.eventsel
+ (x86_pmu
.addr_offset
?
688 x86_pmu
.addr_offset(index
, true) : index
);
691 static inline unsigned int x86_pmu_event_addr(int index
)
693 return x86_pmu
.perfctr
+ (x86_pmu
.addr_offset
?
694 x86_pmu
.addr_offset(index
, false) : index
);
697 static inline int x86_pmu_rdpmc_index(int index
)
699 return x86_pmu
.rdpmc_index
? x86_pmu
.rdpmc_index(index
) : index
;
702 int x86_add_exclusive(unsigned int what
);
704 void x86_del_exclusive(unsigned int what
);
706 int x86_reserve_hardware(void);
708 void x86_release_hardware(void);
710 void hw_perf_lbr_event_destroy(struct perf_event
*event
);
712 int x86_setup_perfctr(struct perf_event
*event
);
714 int x86_pmu_hw_config(struct perf_event
*event
);
716 void x86_pmu_disable_all(void);
718 static inline void __x86_pmu_enable_event(struct hw_perf_event
*hwc
,
721 u64 disable_mask
= __this_cpu_read(cpu_hw_events
.perf_ctr_virt_mask
);
723 if (hwc
->extra_reg
.reg
)
724 wrmsrl(hwc
->extra_reg
.reg
, hwc
->extra_reg
.config
);
725 wrmsrl(hwc
->config_base
, (hwc
->config
| enable_mask
) & ~disable_mask
);
728 void x86_pmu_enable_all(int added
);
730 int perf_assign_events(struct event_constraint
**constraints
, int n
,
731 int wmin
, int wmax
, int gpmax
, int *assign
);
732 int x86_schedule_events(struct cpu_hw_events
*cpuc
, int n
, int *assign
);
734 void x86_pmu_stop(struct perf_event
*event
, int flags
);
736 static inline void x86_pmu_disable_event(struct perf_event
*event
)
738 struct hw_perf_event
*hwc
= &event
->hw
;
740 wrmsrl(hwc
->config_base
, hwc
->config
);
743 void x86_pmu_enable_event(struct perf_event
*event
);
745 int x86_pmu_handle_irq(struct pt_regs
*regs
);
747 extern struct event_constraint emptyconstraint
;
749 extern struct event_constraint unconstrained
;
751 static inline bool kernel_ip(unsigned long ip
)
754 return ip
> PAGE_OFFSET
;
761 * Not all PMUs provide the right context information to place the reported IP
762 * into full context. Specifically segment registers are typically not
765 * Assuming the address is a linear address (it is for IBS), we fake the CS and
766 * vm86 mode using the known zero-based code segment and 'fix up' the registers
769 * Intel PEBS/LBR appear to typically provide the effective address, nothing
770 * much we can do about that but pray and treat it like a linear address.
772 static inline void set_linear_ip(struct pt_regs
*regs
, unsigned long ip
)
774 regs
->cs
= kernel_ip(ip
) ? __KERNEL_CS
: __USER_CS
;
775 if (regs
->flags
& X86_VM_MASK
)
776 regs
->flags
^= (PERF_EFLAGS_VM
| X86_VM_MASK
);
780 ssize_t
x86_event_sysfs_show(char *page
, u64 config
, u64 event
);
781 ssize_t
intel_event_sysfs_show(char *page
, u64 config
);
783 #ifdef CONFIG_CPU_SUP_AMD
785 int amd_pmu_init(void);
787 #else /* CONFIG_CPU_SUP_AMD */
789 static inline int amd_pmu_init(void)
794 #endif /* CONFIG_CPU_SUP_AMD */
796 #ifdef CONFIG_CPU_SUP_INTEL
798 static inline bool intel_pmu_needs_lbr_smpl(struct perf_event
*event
)
800 /* user explicitly requested branch sampling */
801 if (has_branch_stack(event
))
804 /* implicit branch sampling to correct PEBS skid */
805 if (x86_pmu
.intel_cap
.pebs_trap
&& event
->attr
.precise_ip
> 1 &&
806 x86_pmu
.intel_cap
.pebs_format
< 2)
812 static inline bool intel_pmu_has_bts(struct perf_event
*event
)
814 if (event
->attr
.config
== PERF_COUNT_HW_BRANCH_INSTRUCTIONS
&&
815 !event
->attr
.freq
&& event
->hw
.sample_period
== 1)
821 int intel_pmu_save_and_restart(struct perf_event
*event
);
823 struct event_constraint
*
824 x86_get_event_constraints(struct cpu_hw_events
*cpuc
, int idx
,
825 struct perf_event
*event
);
827 struct intel_shared_regs
*allocate_shared_regs(int cpu
);
829 int intel_pmu_init(void);
831 void init_debug_store_on_cpu(int cpu
);
833 void fini_debug_store_on_cpu(int cpu
);
835 void release_ds_buffers(void);
837 void reserve_ds_buffers(void);
839 extern struct event_constraint bts_constraint
;
841 void intel_pmu_enable_bts(u64 config
);
843 void intel_pmu_disable_bts(void);
845 int intel_pmu_drain_bts_buffer(void);
847 extern struct event_constraint intel_core2_pebs_event_constraints
[];
849 extern struct event_constraint intel_atom_pebs_event_constraints
[];
851 extern struct event_constraint intel_slm_pebs_event_constraints
[];
853 extern struct event_constraint intel_nehalem_pebs_event_constraints
[];
855 extern struct event_constraint intel_westmere_pebs_event_constraints
[];
857 extern struct event_constraint intel_snb_pebs_event_constraints
[];
859 extern struct event_constraint intel_ivb_pebs_event_constraints
[];
861 extern struct event_constraint intel_hsw_pebs_event_constraints
[];
863 struct event_constraint
*intel_pebs_constraints(struct perf_event
*event
);
865 void intel_pmu_pebs_enable(struct perf_event
*event
);
867 void intel_pmu_pebs_disable(struct perf_event
*event
);
869 void intel_pmu_pebs_enable_all(void);
871 void intel_pmu_pebs_disable_all(void);
873 void intel_ds_init(void);
875 void intel_pmu_lbr_sched_task(struct perf_event_context
*ctx
, bool sched_in
);
877 void intel_pmu_lbr_reset(void);
879 void intel_pmu_lbr_enable(struct perf_event
*event
);
881 void intel_pmu_lbr_disable(struct perf_event
*event
);
883 void intel_pmu_lbr_enable_all(bool pmi
);
885 void intel_pmu_lbr_disable_all(void);
887 void intel_pmu_lbr_read(void);
889 void intel_pmu_lbr_init_core(void);
891 void intel_pmu_lbr_init_nhm(void);
893 void intel_pmu_lbr_init_atom(void);
895 void intel_pmu_lbr_init_snb(void);
897 void intel_pmu_lbr_init_hsw(void);
899 int intel_pmu_setup_lbr_filter(struct perf_event
*event
);
901 void intel_pt_interrupt(void);
903 int intel_bts_interrupt(void);
905 void intel_bts_enable_local(void);
907 void intel_bts_disable_local(void);
909 int p4_pmu_init(void);
911 int p6_pmu_init(void);
913 int knc_pmu_init(void);
915 ssize_t
events_sysfs_show(struct device
*dev
, struct device_attribute
*attr
,
918 static inline int is_ht_workaround_enabled(void)
920 return !!(x86_pmu
.flags
& PMU_FL_EXCL_ENABLED
);
922 #else /* CONFIG_CPU_SUP_INTEL */
924 static inline void reserve_ds_buffers(void)
928 static inline void release_ds_buffers(void)
932 static inline int intel_pmu_init(void)
937 static inline struct intel_shared_regs
*allocate_shared_regs(int cpu
)
942 static inline int is_ht_workaround_enabled(void)
946 #endif /* CONFIG_CPU_SUP_INTEL */