blob: 7402c8182813598f338989a0f45f262835e56931 [file] [log] [blame]
Ingo Molnar241771e2008-12-03 10:39:53 +01001/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002 * Performance events x86 architecture code
Ingo Molnar241771e2008-12-03 10:39:53 +01003 *
Ingo Molnar98144512009-04-29 14:52:50 +02004 * 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
Peter Zijlstra90eec102015-11-16 11:08:45 +01008 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra
Markus Metzger30dd5682009-07-21 15:56:48 +02009 * Copyright (C) 2009 Intel Corporation, <markus.t.metzger@intel.com>
Stephane Eranian1da53e02010-01-18 10:58:01 +020010 * Copyright (C) 2009 Google, Inc., Stephane Eranian
Ingo Molnar241771e2008-12-03 10:39:53 +010011 *
12 * For licencing details see kernel-base/COPYING
13 */
14
Ingo Molnarcdd6c482009-09-21 12:02:48 +020015#include <linux/perf_event.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010016#include <linux/capability.h>
17#include <linux/notifier.h>
18#include <linux/hardirq.h>
19#include <linux/kprobes.h>
Thomas Gleixner4ac13292008-12-09 21:43:39 +010020#include <linux/module.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010021#include <linux/kdebug.h>
22#include <linux/sched.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020023#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Markus Metzger30dd5682009-07-21 15:56:48 +020025#include <linux/cpu.h>
Peter Zijlstra272d30b2010-01-22 16:32:17 +010026#include <linux/bitops.h>
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010027#include <linux/device.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010028
Ingo Molnar241771e2008-12-03 10:39:53 +010029#include <asm/apic.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020030#include <asm/stacktrace.h>
Peter Zijlstra4e935e42009-03-30 19:07:16 +020031#include <asm/nmi.h>
Lin Ming69092622011-03-03 10:34:50 +080032#include <asm/smp.h>
Robert Richterc8e59102011-04-16 02:27:55 +020033#include <asm/alternative.h>
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070034#include <asm/mmu_context.h>
Andy Lutomirski375074c2014-10-24 15:58:07 -070035#include <asm/tlbflush.h>
Peter Zijlstrae3f35412011-11-21 11:43:53 +010036#include <asm/timer.h>
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +020037#include <asm/desc.h>
38#include <asm/ldt.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010039
Borislav Petkov27f6d222016-02-10 10:55:23 +010040#include "perf_event.h"
Kevin Winchesterde0428a2011-08-30 20:41:05 -030041
Kevin Winchesterde0428a2011-08-30 20:41:05 -030042struct x86_pmu x86_pmu __read_mostly;
Stephane Eranianefc9f052011-06-06 16:57:03 +020043
Kevin Winchesterde0428a2011-08-30 20:41:05 -030044DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +010045 .enabled = 1,
46};
Ingo Molnar241771e2008-12-03 10:39:53 +010047
Andy Lutomirskia6673422014-10-24 15:58:13 -070048struct static_key rdpmc_always_available = STATIC_KEY_INIT_FALSE;
49
Kevin Winchesterde0428a2011-08-30 20:41:05 -030050u64 __read_mostly hw_cache_event_ids
Ingo Molnar8326f442009-06-05 20:22:46 +020051 [PERF_COUNT_HW_CACHE_MAX]
52 [PERF_COUNT_HW_CACHE_OP_MAX]
53 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -030054u64 __read_mostly hw_cache_extra_regs
Andi Kleene994d7d2011-03-03 10:34:48 +080055 [PERF_COUNT_HW_CACHE_MAX]
56 [PERF_COUNT_HW_CACHE_OP_MAX]
57 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Ingo Molnar8326f442009-06-05 20:22:46 +020058
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +053059/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020060 * Propagate event elapsed time into the generic event.
61 * Can only be executed on the CPU where the event is active.
Ingo Molnaree060942008-12-13 09:00:03 +010062 * Returns the delta events processed.
63 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -030064u64 x86_perf_event_update(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +010065{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010066 struct hw_perf_event *hwc = &event->hw;
Robert Richter948b1bb2010-03-29 18:36:50 +020067 int shift = 64 - x86_pmu.cntval_bits;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020068 u64 prev_raw_count, new_raw_count;
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010069 int idx = hwc->idx;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020070 s64 delta;
Ingo Molnaree060942008-12-13 09:00:03 +010071
Robert Richter15c7ad52012-06-20 20:46:33 +020072 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +020073 return 0;
74
Ingo Molnaree060942008-12-13 09:00:03 +010075 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020076 * Careful: an NMI might modify the previous event value.
Ingo Molnaree060942008-12-13 09:00:03 +010077 *
78 * Our tactic to handle this is to first atomically read and
79 * exchange a new raw count - then add that new-prev delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020080 * count to the generic event atomically:
Ingo Molnaree060942008-12-13 09:00:03 +010081 */
82again:
Peter Zijlstrae7850592010-05-21 14:43:08 +020083 prev_raw_count = local64_read(&hwc->prev_count);
Vince Weaverc48b6052012-03-01 17:28:14 -050084 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
Ingo Molnaree060942008-12-13 09:00:03 +010085
Peter Zijlstrae7850592010-05-21 14:43:08 +020086 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Ingo Molnaree060942008-12-13 09:00:03 +010087 new_raw_count) != prev_raw_count)
88 goto again;
89
90 /*
91 * Now we have the new raw value and have updated the prev
92 * timestamp already. We can now calculate the elapsed delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020093 * (event-)time and add that to the generic event.
Ingo Molnaree060942008-12-13 09:00:03 +010094 *
95 * Careful, not all hw sign-extends above the physical width
Peter Zijlstraec3232b2009-05-13 09:45:19 +020096 * of the count.
Ingo Molnaree060942008-12-13 09:00:03 +010097 */
Peter Zijlstraec3232b2009-05-13 09:45:19 +020098 delta = (new_raw_count << shift) - (prev_raw_count << shift);
99 delta >>= shift;
Ingo Molnaree060942008-12-13 09:00:03 +0100100
Peter Zijlstrae7850592010-05-21 14:43:08 +0200101 local64_add(delta, &event->count);
102 local64_sub(delta, &hwc->period_left);
Robert Richter4b7bfd02009-04-29 12:47:22 +0200103
104 return new_raw_count;
Ingo Molnaree060942008-12-13 09:00:03 +0100105}
106
Andi Kleena7e3ed12011-03-03 10:34:47 +0800107/*
108 * Find and validate any extra registers to set up.
109 */
110static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
111{
Stephane Eranianefc9f052011-06-06 16:57:03 +0200112 struct hw_perf_event_extra *reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800113 struct extra_reg *er;
114
Stephane Eranianefc9f052011-06-06 16:57:03 +0200115 reg = &event->hw.extra_reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800116
117 if (!x86_pmu.extra_regs)
118 return 0;
119
120 for (er = x86_pmu.extra_regs; er->msr; er++) {
121 if (er->event != (config & er->config_mask))
122 continue;
123 if (event->attr.config1 & ~er->valid_mask)
124 return -EINVAL;
Kan Liang338b5222014-07-14 12:25:56 -0700125 /* Check if the extra msrs can be safely accessed*/
126 if (!er->extra_msr_access)
127 return -ENXIO;
Stephane Eranianefc9f052011-06-06 16:57:03 +0200128
129 reg->idx = er->idx;
130 reg->config = event->attr.config1;
131 reg->reg = er->msr;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800132 break;
133 }
134 return 0;
135}
136
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200137static atomic_t active_events;
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300138static atomic_t pmc_refcount;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200139static DEFINE_MUTEX(pmc_reserve_mutex);
140
Robert Richterb27ea292010-03-17 12:49:10 +0100141#ifdef CONFIG_X86_LOCAL_APIC
142
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200143static bool reserve_pmc_hardware(void)
144{
145 int i;
146
Robert Richter948b1bb2010-03-29 18:36:50 +0200147 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100148 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200149 goto perfctr_fail;
150 }
151
Robert Richter948b1bb2010-03-29 18:36:50 +0200152 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100153 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200154 goto eventsel_fail;
155 }
156
157 return true;
158
159eventsel_fail:
160 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100161 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200162
Robert Richter948b1bb2010-03-29 18:36:50 +0200163 i = x86_pmu.num_counters;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200164
165perfctr_fail:
166 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100167 release_perfctr_nmi(x86_pmu_event_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200168
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200169 return false;
170}
171
172static void release_pmc_hardware(void)
173{
174 int i;
175
Robert Richter948b1bb2010-03-29 18:36:50 +0200176 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100177 release_perfctr_nmi(x86_pmu_event_addr(i));
178 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200179 }
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200180}
181
Robert Richterb27ea292010-03-17 12:49:10 +0100182#else
183
184static bool reserve_pmc_hardware(void) { return true; }
185static void release_pmc_hardware(void) {}
186
187#endif
188
Don Zickus33c6d6a2010-11-22 16:55:23 -0500189static bool check_hw_exists(void)
190{
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100191 u64 val, val_fail, val_new= ~0;
192 int i, reg, reg_fail, ret = 0;
193 int bios_fail = 0;
Don Zickus68ab7472015-05-18 15:16:48 -0400194 int reg_safe = -1;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500195
Peter Zijlstra44072042010-12-08 15:56:23 +0100196 /*
197 * Check to see if the BIOS enabled any of the counters, if so
198 * complain and bail.
199 */
200 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100201 reg = x86_pmu_config_addr(i);
Peter Zijlstra44072042010-12-08 15:56:23 +0100202 ret = rdmsrl_safe(reg, &val);
203 if (ret)
204 goto msr_fail;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100205 if (val & ARCH_PERFMON_EVENTSEL_ENABLE) {
206 bios_fail = 1;
207 val_fail = val;
208 reg_fail = reg;
Don Zickus68ab7472015-05-18 15:16:48 -0400209 } else {
210 reg_safe = i;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100211 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100212 }
213
214 if (x86_pmu.num_counters_fixed) {
215 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
216 ret = rdmsrl_safe(reg, &val);
217 if (ret)
218 goto msr_fail;
219 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100220 if (val & (0x03 << i*4)) {
221 bios_fail = 1;
222 val_fail = val;
223 reg_fail = reg;
224 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100225 }
226 }
227
228 /*
Don Zickus68ab7472015-05-18 15:16:48 -0400229 * If all the counters are enabled, the below test will always
230 * fail. The tools will also become useless in this scenario.
231 * Just fail and disable the hardware counters.
232 */
233
234 if (reg_safe == -1) {
235 reg = reg_safe;
236 goto msr_fail;
237 }
238
239 /*
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200240 * Read the current value, change it and read it back to see if it
241 * matches, this is needed to detect certain hardware emulators
242 * (qemu/kvm) that don't trap on the MSR access and always return 0s.
Peter Zijlstra44072042010-12-08 15:56:23 +0100243 */
Don Zickus68ab7472015-05-18 15:16:48 -0400244 reg = x86_pmu_event_addr(reg_safe);
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200245 if (rdmsrl_safe(reg, &val))
246 goto msr_fail;
247 val ^= 0xffffUL;
Robert Richterf285f922012-06-20 20:46:36 +0200248 ret = wrmsrl_safe(reg, val);
249 ret |= rdmsrl_safe(reg, &val_new);
Don Zickus33c6d6a2010-11-22 16:55:23 -0500250 if (ret || val != val_new)
Peter Zijlstra44072042010-12-08 15:56:23 +0100251 goto msr_fail;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500252
Ingo Molnar45daae52011-03-25 10:24:23 +0100253 /*
254 * We still allow the PMU driver to operate:
255 */
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100256 if (bios_fail) {
Chen Yucong1b74dde2016-02-02 11:45:02 +0800257 pr_cont("Broken BIOS detected, complain to your hardware vendor.\n");
258 pr_err(FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n",
259 reg_fail, val_fail);
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100260 }
Ingo Molnar45daae52011-03-25 10:24:23 +0100261
262 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100263
264msr_fail:
Chen Yucong1b74dde2016-02-02 11:45:02 +0800265 pr_cont("Broken PMU hardware detected, using software events only.\n");
266 pr_info("%sFailed to access perfctr msr (MSR %x is %Lx)\n",
Peter Zijlstra (Intel)65d71fe2014-10-07 19:07:33 +0200267 boot_cpu_has(X86_FEATURE_HYPERVISOR) ? KERN_INFO : KERN_ERR,
268 reg, val_new);
Ingo Molnar45daae52011-03-25 10:24:23 +0100269
Peter Zijlstra44072042010-12-08 15:56:23 +0100270 return false;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500271}
272
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200273static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200274{
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300275 x86_release_hardware();
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300276 atomic_dec(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200277}
278
Alexander Shishkin48070342015-01-14 14:18:20 +0200279void hw_perf_lbr_event_destroy(struct perf_event *event)
280{
281 hw_perf_event_destroy(event);
282
283 /* undo the lbr/bts event accounting */
284 x86_del_exclusive(x86_lbr_exclusive_lbr);
285}
286
Robert Richter85cf9db2009-04-29 12:47:20 +0200287static inline int x86_pmu_initialized(void)
288{
289 return x86_pmu.handle_irq != NULL;
290}
291
Ingo Molnar8326f442009-06-05 20:22:46 +0200292static inline int
Andi Kleene994d7d2011-03-03 10:34:48 +0800293set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
Ingo Molnar8326f442009-06-05 20:22:46 +0200294{
Andi Kleene994d7d2011-03-03 10:34:48 +0800295 struct perf_event_attr *attr = &event->attr;
Ingo Molnar8326f442009-06-05 20:22:46 +0200296 unsigned int cache_type, cache_op, cache_result;
297 u64 config, val;
298
299 config = attr->config;
300
301 cache_type = (config >> 0) & 0xff;
302 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
303 return -EINVAL;
304
305 cache_op = (config >> 8) & 0xff;
306 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
307 return -EINVAL;
308
309 cache_result = (config >> 16) & 0xff;
310 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
311 return -EINVAL;
312
313 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
314
315 if (val == 0)
316 return -ENOENT;
317
318 if (val == -1)
319 return -EINVAL;
320
321 hwc->config |= val;
Andi Kleene994d7d2011-03-03 10:34:48 +0800322 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
323 return x86_pmu_extra_regs(val, event);
Ingo Molnar8326f442009-06-05 20:22:46 +0200324}
325
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300326int x86_reserve_hardware(void)
327{
328 int err = 0;
329
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300330 if (!atomic_inc_not_zero(&pmc_refcount)) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300331 mutex_lock(&pmc_reserve_mutex);
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300332 if (atomic_read(&pmc_refcount) == 0) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300333 if (!reserve_pmc_hardware())
334 err = -EBUSY;
335 else
336 reserve_ds_buffers();
337 }
338 if (!err)
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300339 atomic_inc(&pmc_refcount);
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300340 mutex_unlock(&pmc_reserve_mutex);
341 }
342
343 return err;
344}
345
346void x86_release_hardware(void)
347{
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300348 if (atomic_dec_and_mutex_lock(&pmc_refcount, &pmc_reserve_mutex)) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300349 release_pmc_hardware();
350 release_ds_buffers();
351 mutex_unlock(&pmc_reserve_mutex);
352 }
353}
354
Alexander Shishkin48070342015-01-14 14:18:20 +0200355/*
356 * Check if we can create event of a certain type (that no conflicting events
357 * are present).
358 */
359int x86_add_exclusive(unsigned int what)
360{
Peter Zijlstra93472af2015-06-24 16:47:50 +0200361 int i;
Alexander Shishkin48070342015-01-14 14:18:20 +0200362
Peter Zijlstra93472af2015-06-24 16:47:50 +0200363 if (!atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what])) {
364 mutex_lock(&pmc_reserve_mutex);
365 for (i = 0; i < ARRAY_SIZE(x86_pmu.lbr_exclusive); i++) {
366 if (i != what && atomic_read(&x86_pmu.lbr_exclusive[i]))
367 goto fail_unlock;
368 }
369 atomic_inc(&x86_pmu.lbr_exclusive[what]);
370 mutex_unlock(&pmc_reserve_mutex);
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300371 }
Alexander Shishkin48070342015-01-14 14:18:20 +0200372
Peter Zijlstra93472af2015-06-24 16:47:50 +0200373 atomic_inc(&active_events);
374 return 0;
Alexander Shishkin48070342015-01-14 14:18:20 +0200375
Peter Zijlstra93472af2015-06-24 16:47:50 +0200376fail_unlock:
Alexander Shishkin48070342015-01-14 14:18:20 +0200377 mutex_unlock(&pmc_reserve_mutex);
Peter Zijlstra93472af2015-06-24 16:47:50 +0200378 return -EBUSY;
Alexander Shishkin48070342015-01-14 14:18:20 +0200379}
380
381void x86_del_exclusive(unsigned int what)
382{
383 atomic_dec(&x86_pmu.lbr_exclusive[what]);
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300384 atomic_dec(&active_events);
Alexander Shishkin48070342015-01-14 14:18:20 +0200385}
386
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300387int x86_setup_perfctr(struct perf_event *event)
Robert Richterc1726f32010-04-13 22:23:11 +0200388{
389 struct perf_event_attr *attr = &event->attr;
390 struct hw_perf_event *hwc = &event->hw;
391 u64 config;
392
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +0100393 if (!is_sampling_event(event)) {
Robert Richterc1726f32010-04-13 22:23:11 +0200394 hwc->sample_period = x86_pmu.max_period;
395 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200396 local64_set(&hwc->period_left, hwc->sample_period);
Robert Richterc1726f32010-04-13 22:23:11 +0200397 }
398
399 if (attr->type == PERF_TYPE_RAW)
Peter Zijlstraed13ec52011-11-14 10:03:25 +0100400 return x86_pmu_extra_regs(event->attr.config, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200401
402 if (attr->type == PERF_TYPE_HW_CACHE)
Andi Kleene994d7d2011-03-03 10:34:48 +0800403 return set_ext_hw_attr(hwc, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200404
405 if (attr->config >= x86_pmu.max_events)
406 return -EINVAL;
407
408 /*
409 * The generic map:
410 */
411 config = x86_pmu.event_map(attr->config);
412
413 if (config == 0)
414 return -ENOENT;
415
416 if (config == -1LL)
417 return -EINVAL;
418
419 /*
420 * Branch tracing:
421 */
Peter Zijlstra18a073a2011-04-26 13:24:33 +0200422 if (attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
423 !attr->freq && hwc->sample_period == 1) {
Robert Richterc1726f32010-04-13 22:23:11 +0200424 /* BTS is not supported by this architecture. */
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200425 if (!x86_pmu.bts_active)
Robert Richterc1726f32010-04-13 22:23:11 +0200426 return -EOPNOTSUPP;
427
428 /* BTS is currently only allowed for user-mode. */
429 if (!attr->exclude_kernel)
430 return -EOPNOTSUPP;
Alexander Shishkin48070342015-01-14 14:18:20 +0200431
432 /* disallow bts if conflicting events are present */
433 if (x86_add_exclusive(x86_lbr_exclusive_lbr))
434 return -EBUSY;
435
436 event->destroy = hw_perf_lbr_event_destroy;
Robert Richterc1726f32010-04-13 22:23:11 +0200437 }
438
439 hwc->config |= config;
440
441 return 0;
442}
Robert Richter4261e0e2010-04-13 22:23:10 +0200443
Stephane Eranianff3fb512012-02-09 23:20:54 +0100444/*
445 * check that branch_sample_type is compatible with
446 * settings needed for precise_ip > 1 which implies
447 * using the LBR to capture ALL taken branches at the
448 * priv levels of the measurement
449 */
450static inline int precise_br_compat(struct perf_event *event)
451{
452 u64 m = event->attr.branch_sample_type;
453 u64 b = 0;
454
455 /* must capture all branches */
456 if (!(m & PERF_SAMPLE_BRANCH_ANY))
457 return 0;
458
459 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
460
461 if (!event->attr.exclude_user)
462 b |= PERF_SAMPLE_BRANCH_USER;
463
464 if (!event->attr.exclude_kernel)
465 b |= PERF_SAMPLE_BRANCH_KERNEL;
466
467 /*
468 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
469 */
470
471 return m == b;
472}
473
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300474int x86_pmu_hw_config(struct perf_event *event)
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300475{
Peter Zijlstraab608342010-04-08 23:03:20 +0200476 if (event->attr.precise_ip) {
477 int precise = 0;
478
479 /* Support for constant skid */
Peter Zijlstrac93dc842012-06-08 14:50:50 +0200480 if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
Peter Zijlstraab608342010-04-08 23:03:20 +0200481 precise++;
482
Peter Zijlstra5553be22010-10-19 14:38:11 +0200483 /* Support for IP fixup */
Andi Kleen03de8742014-08-07 17:08:54 -0700484 if (x86_pmu.lbr_nr || x86_pmu.intel_cap.pebs_format >= 2)
Peter Zijlstra5553be22010-10-19 14:38:11 +0200485 precise++;
Andi Kleen72469762015-12-04 03:50:52 -0800486
487 if (x86_pmu.pebs_prec_dist)
488 precise++;
Peter Zijlstra5553be22010-10-19 14:38:11 +0200489 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200490
491 if (event->attr.precise_ip > precise)
492 return -EOPNOTSUPP;
Yan, Zheng4b854902014-11-04 21:56:08 -0500493 }
494 /*
495 * check that PEBS LBR correction does not conflict with
496 * whatever the user is asking with attr->branch_sample_type
497 */
498 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format < 2) {
499 u64 *br_type = &event->attr.branch_sample_type;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100500
Yan, Zheng4b854902014-11-04 21:56:08 -0500501 if (has_branch_stack(event)) {
502 if (!precise_br_compat(event))
503 return -EOPNOTSUPP;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100504
Yan, Zheng4b854902014-11-04 21:56:08 -0500505 /* branch_sample_type is compatible */
Stephane Eranianff3fb512012-02-09 23:20:54 +0100506
Yan, Zheng4b854902014-11-04 21:56:08 -0500507 } else {
508 /*
509 * user did not specify branch_sample_type
510 *
511 * For PEBS fixups, we capture all
512 * the branches at the priv level of the
513 * event.
514 */
515 *br_type = PERF_SAMPLE_BRANCH_ANY;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100516
Yan, Zheng4b854902014-11-04 21:56:08 -0500517 if (!event->attr.exclude_user)
518 *br_type |= PERF_SAMPLE_BRANCH_USER;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100519
Yan, Zheng4b854902014-11-04 21:56:08 -0500520 if (!event->attr.exclude_kernel)
521 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100522 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200523 }
524
Yan, Zhenge18bf522014-11-04 21:56:03 -0500525 if (event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK)
526 event->attach_state |= PERF_ATTACH_TASK_DATA;
527
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300528 /*
529 * Generate PMC IRQs:
530 * (keep 'enabled' bit clear for now)
531 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200532 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300533
534 /*
535 * Count user and OS events unless requested not to
536 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200537 if (!event->attr.exclude_user)
538 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
539 if (!event->attr.exclude_kernel)
540 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
541
542 if (event->attr.type == PERF_TYPE_RAW)
543 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300544
Andi Kleen294fe0f2015-02-17 18:18:06 -0800545 if (event->attr.sample_period && x86_pmu.limit_period) {
546 if (x86_pmu.limit_period(event, event->attr.sample_period) >
547 event->attr.sample_period)
548 return -EINVAL;
549 }
550
Robert Richter9d0fcba62010-04-13 22:23:12 +0200551 return x86_setup_perfctr(event);
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300552}
553
Ingo Molnaree060942008-12-13 09:00:03 +0100554/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200555 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100556 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200557static int __x86_pmu_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100558{
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200559 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100560
Robert Richter85cf9db2009-04-29 12:47:20 +0200561 if (!x86_pmu_initialized())
562 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100563
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300564 err = x86_reserve_hardware();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200565 if (err)
566 return err;
567
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300568 atomic_inc(&active_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200569 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200570
Robert Richter4261e0e2010-04-13 22:23:10 +0200571 event->hw.idx = -1;
572 event->hw.last_cpu = -1;
573 event->hw.last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200574
Stephane Eranianefc9f052011-06-06 16:57:03 +0200575 /* mark unused */
576 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Stephane Eranianb36817e2012-02-09 23:20:53 +0100577 event->hw.branch_reg.idx = EXTRA_REG_NONE;
578
Robert Richter9d0fcba62010-04-13 22:23:12 +0200579 return x86_pmu.hw_config(event);
Robert Richter4261e0e2010-04-13 22:23:10 +0200580}
581
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300582void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530583{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500584 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200585 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100586
Robert Richter948b1bb2010-03-29 18:36:50 +0200587 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100588 u64 val;
589
Robert Richter43f62012009-04-29 16:55:56 +0200590 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200591 continue;
Robert Richter41bf4982011-02-02 17:40:57 +0100592 rdmsrl(x86_pmu_config_addr(idx), val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100593 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200594 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100595 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richter41bf4982011-02-02 17:40:57 +0100596 wrmsrl(x86_pmu_config_addr(idx), val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530597 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530598}
599
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200600static void x86_pmu_disable(struct pmu *pmu)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530601{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500602 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200603
Robert Richter85cf9db2009-04-29 12:47:20 +0200604 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200605 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200606
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100607 if (!cpuc->enabled)
608 return;
609
610 cpuc->n_added = 0;
611 cpuc->enabled = 0;
612 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200613
614 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530615}
Ingo Molnar241771e2008-12-03 10:39:53 +0100616
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300617void x86_pmu_enable_all(int added)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530618{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500619 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530620 int idx;
621
Robert Richter948b1bb2010-03-29 18:36:50 +0200622 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richterd45dd922011-02-02 17:40:56 +0100623 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100624
Robert Richter43f62012009-04-29 16:55:56 +0200625 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200626 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200627
Robert Richterd45dd922011-02-02 17:40:56 +0100628 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530629 }
630}
631
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200632static struct pmu pmu;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200633
634static inline int is_x86_event(struct perf_event *event)
635{
636 return event->pmu == &pmu;
637}
638
Robert Richter1e2ad282011-11-18 12:35:21 +0100639/*
640 * Event scheduler state:
641 *
642 * Assign events iterating over all events and counters, beginning
643 * with events with least weights first. Keep the current iterator
644 * state in struct sched_state.
645 */
646struct sched_state {
647 int weight;
648 int event; /* event index */
649 int counter; /* counter index */
650 int unassigned; /* number of events to be assigned left */
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200651 int nr_gp; /* number of GP counters used */
Robert Richter1e2ad282011-11-18 12:35:21 +0100652 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
653};
654
Robert Richterbc1738f2011-11-18 12:35:22 +0100655/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
656#define SCHED_STATES_MAX 2
657
Robert Richter1e2ad282011-11-18 12:35:21 +0100658struct perf_sched {
659 int max_weight;
660 int max_events;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200661 int max_gp;
662 int saved_states;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200663 struct event_constraint **constraints;
Robert Richter1e2ad282011-11-18 12:35:21 +0100664 struct sched_state state;
Robert Richterbc1738f2011-11-18 12:35:22 +0100665 struct sched_state saved[SCHED_STATES_MAX];
Robert Richter1e2ad282011-11-18 12:35:21 +0100666};
667
668/*
669 * Initialize interator that runs through all events and counters.
670 */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200671static void perf_sched_init(struct perf_sched *sched, struct event_constraint **constraints,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200672 int num, int wmin, int wmax, int gpmax)
Robert Richter1e2ad282011-11-18 12:35:21 +0100673{
674 int idx;
675
676 memset(sched, 0, sizeof(*sched));
677 sched->max_events = num;
678 sched->max_weight = wmax;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200679 sched->max_gp = gpmax;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200680 sched->constraints = constraints;
Robert Richter1e2ad282011-11-18 12:35:21 +0100681
682 for (idx = 0; idx < num; idx++) {
Peter Zijlstrab371b592015-05-21 10:57:13 +0200683 if (constraints[idx]->weight == wmin)
Robert Richter1e2ad282011-11-18 12:35:21 +0100684 break;
685 }
686
687 sched->state.event = idx; /* start with min weight */
688 sched->state.weight = wmin;
689 sched->state.unassigned = num;
690}
691
Robert Richterbc1738f2011-11-18 12:35:22 +0100692static void perf_sched_save_state(struct perf_sched *sched)
693{
694 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
695 return;
696
697 sched->saved[sched->saved_states] = sched->state;
698 sched->saved_states++;
699}
700
701static bool perf_sched_restore_state(struct perf_sched *sched)
702{
703 if (!sched->saved_states)
704 return false;
705
706 sched->saved_states--;
707 sched->state = sched->saved[sched->saved_states];
708
709 /* continue with next counter: */
710 clear_bit(sched->state.counter++, sched->state.used);
711
712 return true;
713}
714
Robert Richter1e2ad282011-11-18 12:35:21 +0100715/*
716 * Select a counter for the current event to schedule. Return true on
717 * success.
718 */
Robert Richterbc1738f2011-11-18 12:35:22 +0100719static bool __perf_sched_find_counter(struct perf_sched *sched)
Robert Richter1e2ad282011-11-18 12:35:21 +0100720{
721 struct event_constraint *c;
722 int idx;
723
724 if (!sched->state.unassigned)
725 return false;
726
727 if (sched->state.event >= sched->max_events)
728 return false;
729
Peter Zijlstrab371b592015-05-21 10:57:13 +0200730 c = sched->constraints[sched->state.event];
Peter Zijlstra4defea82011-11-10 15:15:42 +0100731 /* Prefer fixed purpose counters */
Robert Richter15c7ad52012-06-20 20:46:33 +0200732 if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
733 idx = INTEL_PMC_IDX_FIXED;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700734 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100735 if (!__test_and_set_bit(idx, sched->state.used))
736 goto done;
737 }
738 }
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200739
Robert Richter1e2ad282011-11-18 12:35:21 +0100740 /* Grab the first unused counter starting with idx */
741 idx = sched->state.counter;
Robert Richter15c7ad52012-06-20 20:46:33 +0200742 for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200743 if (!__test_and_set_bit(idx, sched->state.used)) {
744 if (sched->state.nr_gp++ >= sched->max_gp)
745 return false;
746
Peter Zijlstra4defea82011-11-10 15:15:42 +0100747 goto done;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200748 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100749 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100750
Peter Zijlstra4defea82011-11-10 15:15:42 +0100751 return false;
752
753done:
754 sched->state.counter = idx;
Robert Richter1e2ad282011-11-18 12:35:21 +0100755
Robert Richterbc1738f2011-11-18 12:35:22 +0100756 if (c->overlap)
757 perf_sched_save_state(sched);
758
759 return true;
760}
761
762static bool perf_sched_find_counter(struct perf_sched *sched)
763{
764 while (!__perf_sched_find_counter(sched)) {
765 if (!perf_sched_restore_state(sched))
766 return false;
767 }
768
Robert Richter1e2ad282011-11-18 12:35:21 +0100769 return true;
770}
771
772/*
773 * Go through all unassigned events and find the next one to schedule.
774 * Take events with the least weight first. Return true on success.
775 */
776static bool perf_sched_next_event(struct perf_sched *sched)
777{
778 struct event_constraint *c;
779
780 if (!sched->state.unassigned || !--sched->state.unassigned)
781 return false;
782
783 do {
784 /* next event */
785 sched->state.event++;
786 if (sched->state.event >= sched->max_events) {
787 /* next weight */
788 sched->state.event = 0;
789 sched->state.weight++;
790 if (sched->state.weight > sched->max_weight)
791 return false;
792 }
Peter Zijlstrab371b592015-05-21 10:57:13 +0200793 c = sched->constraints[sched->state.event];
Robert Richter1e2ad282011-11-18 12:35:21 +0100794 } while (c->weight != sched->state.weight);
795
796 sched->state.counter = 0; /* start with first counter */
797
798 return true;
799}
800
801/*
802 * Assign a counter for each event.
803 */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200804int perf_assign_events(struct event_constraint **constraints, int n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200805 int wmin, int wmax, int gpmax, int *assign)
Robert Richter1e2ad282011-11-18 12:35:21 +0100806{
807 struct perf_sched sched;
808
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200809 perf_sched_init(&sched, constraints, n, wmin, wmax, gpmax);
Robert Richter1e2ad282011-11-18 12:35:21 +0100810
811 do {
812 if (!perf_sched_find_counter(&sched))
813 break; /* failed */
814 if (assign)
815 assign[sched.state.event] = sched.state.counter;
816 } while (perf_sched_next_event(&sched));
817
818 return sched.state.unassigned;
819}
Yan, Zheng4a3dc122014-03-18 16:56:43 +0800820EXPORT_SYMBOL_GPL(perf_assign_events);
Robert Richter1e2ad282011-11-18 12:35:21 +0100821
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300822int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200823{
Andrew Hunter43b457802013-05-23 11:07:03 -0700824 struct event_constraint *c;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200825 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200826 struct perf_event *e;
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100827 int i, wmin, wmax, unsched = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200828 struct hw_perf_event *hwc;
829
830 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
831
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100832 if (x86_pmu.start_scheduling)
833 x86_pmu.start_scheduling(cpuc);
834
Robert Richter1e2ad282011-11-18 12:35:21 +0100835 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Peter Zijlstrab371b592015-05-21 10:57:13 +0200836 cpuc->event_constraint[i] = NULL;
Stephane Eranian79cba822014-11-17 20:06:56 +0100837 c = x86_pmu.get_event_constraints(cpuc, i, cpuc->event_list[i]);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200838 cpuc->event_constraint[i] = c;
Andrew Hunter43b457802013-05-23 11:07:03 -0700839
Robert Richter1e2ad282011-11-18 12:35:21 +0100840 wmin = min(wmin, c->weight);
841 wmax = max(wmax, c->weight);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200842 }
843
844 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200845 * fastpath, try to reuse previous register
846 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100847 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200848 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200849 c = cpuc->event_constraint[i];
Stephane Eranian81130702010-01-21 17:39:01 +0200850
851 /* never assigned */
852 if (hwc->idx == -1)
853 break;
854
855 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100856 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200857 break;
858
859 /* not already used */
860 if (test_bit(hwc->idx, used_mask))
861 break;
862
Peter Zijlstra34538ee2010-03-02 21:16:55 +0100863 __set_bit(hwc->idx, used_mask);
Stephane Eranian81130702010-01-21 17:39:01 +0200864 if (assign)
865 assign[i] = hwc->idx;
866 }
Stephane Eranian81130702010-01-21 17:39:01 +0200867
Robert Richter1e2ad282011-11-18 12:35:21 +0100868 /* slow path */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200869 if (i != n) {
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200870 int gpmax = x86_pmu.num_counters;
871
872 /*
873 * Do not allow scheduling of more than half the available
874 * generic counters.
875 *
876 * This helps avoid counter starvation of sibling thread by
877 * ensuring at most half the counters cannot be in exclusive
878 * mode. There is no designated counters for the limits. Any
879 * N/2 counters can be used. This helps with events with
880 * specific counter constraints.
881 */
882 if (is_ht_workaround_enabled() && !cpuc->is_fake &&
883 READ_ONCE(cpuc->excl_cntrs->exclusive_present))
884 gpmax /= 2;
885
Peter Zijlstrab371b592015-05-21 10:57:13 +0200886 unsched = perf_assign_events(cpuc->event_constraint, n, wmin,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200887 wmax, gpmax, assign);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200888 }
Stephane Eranian81130702010-01-21 17:39:01 +0200889
Stephane Eranian1da53e02010-01-18 10:58:01 +0200890 /*
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100891 * In case of success (unsched = 0), mark events as committed,
892 * so we do not put_constraint() in case new events are added
893 * and fail to be scheduled
894 *
895 * We invoke the lower level commit callback to lock the resource
896 *
897 * We do not need to do all of this in case we are called to
898 * validate an event group (assign == NULL)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200899 */
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100900 if (!unsched && assign) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200901 for (i = 0; i < n; i++) {
902 e = cpuc->event_list[i];
903 e->hw.flags |= PERF_X86_EVENT_COMMITTED;
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100904 if (x86_pmu.commit_scheduling)
Peter Zijlstrab371b592015-05-21 10:57:13 +0200905 x86_pmu.commit_scheduling(cpuc, i, assign[i]);
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200906 }
Peter Zijlstra8736e542015-05-21 10:57:43 +0200907 } else {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200908 for (i = 0; i < n; i++) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200909 e = cpuc->event_list[i];
910 /*
911 * do not put_constraint() on comitted events,
912 * because they are good to go
913 */
914 if ((e->hw.flags & PERF_X86_EVENT_COMMITTED))
915 continue;
916
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100917 /*
918 * release events that failed scheduling
919 */
Stephane Eranian1da53e02010-01-18 10:58:01 +0200920 if (x86_pmu.put_event_constraints)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200921 x86_pmu.put_event_constraints(cpuc, e);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200922 }
923 }
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100924
925 if (x86_pmu.stop_scheduling)
926 x86_pmu.stop_scheduling(cpuc);
927
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100928 return unsched ? -EINVAL : 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200929}
930
931/*
932 * dogrp: true if must collect siblings events (group)
933 * returns total number of events and error code
934 */
935static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
936{
937 struct perf_event *event;
938 int n, max_count;
939
Robert Richter948b1bb2010-03-29 18:36:50 +0200940 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200941
942 /* current number of events already accepted */
943 n = cpuc->n_events;
944
945 if (is_x86_event(leader)) {
946 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100947 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200948 cpuc->event_list[n] = leader;
949 n++;
950 }
951 if (!dogrp)
952 return n;
953
954 list_for_each_entry(event, &leader->sibling_list, group_entry) {
955 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200956 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200957 continue;
958
959 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100960 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200961
962 cpuc->event_list[n] = event;
963 n++;
964 }
965 return n;
966}
967
Stephane Eranian1da53e02010-01-18 10:58:01 +0200968static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +0200969 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200970{
Stephane Eranian447a1942010-02-01 14:50:01 +0200971 struct hw_perf_event *hwc = &event->hw;
972
973 hwc->idx = cpuc->assign[i];
974 hwc->last_cpu = smp_processor_id();
975 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200976
Robert Richter15c7ad52012-06-20 20:46:33 +0200977 if (hwc->idx == INTEL_PMC_IDX_FIXED_BTS) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200978 hwc->config_base = 0;
979 hwc->event_base = 0;
Robert Richter15c7ad52012-06-20 20:46:33 +0200980 } else if (hwc->idx >= INTEL_PMC_IDX_FIXED) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200981 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
Robert Richter15c7ad52012-06-20 20:46:33 +0200982 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - INTEL_PMC_IDX_FIXED);
983 hwc->event_base_rdpmc = (hwc->idx - INTEL_PMC_IDX_FIXED) | 1<<30;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200984 } else {
Robert Richter73d6e522011-02-02 17:40:59 +0100985 hwc->config_base = x86_pmu_config_addr(hwc->idx);
986 hwc->event_base = x86_pmu_event_addr(hwc->idx);
Jacob Shin0fbdad02013-02-06 11:26:28 -0600987 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200988 }
989}
990
Stephane Eranian447a1942010-02-01 14:50:01 +0200991static inline int match_prev_assignment(struct hw_perf_event *hwc,
992 struct cpu_hw_events *cpuc,
993 int i)
994{
995 return hwc->idx == cpuc->assign[i] &&
996 hwc->last_cpu == smp_processor_id() &&
997 hwc->last_tag == cpuc->tags[i];
998}
999
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001000static void x86_pmu_start(struct perf_event *event, int flags);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001001
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001002static void x86_pmu_enable(struct pmu *pmu)
Ingo Molnaree060942008-12-13 09:00:03 +01001003{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001004 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001005 struct perf_event *event;
1006 struct hw_perf_event *hwc;
Peter Zijlstra11164cd2010-03-26 14:08:44 +01001007 int i, added = cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001008
Robert Richter85cf9db2009-04-29 12:47:20 +02001009 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +01001010 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +01001011
1012 if (cpuc->enabled)
1013 return;
1014
Stephane Eranian1da53e02010-01-18 10:58:01 +02001015 if (cpuc->n_added) {
Peter Zijlstra19925ce2010-03-06 13:20:40 +01001016 int n_running = cpuc->n_events - cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001017 /*
1018 * apply assignment obtained either from
1019 * hw_perf_group_sched_in() or x86_pmu_enable()
1020 *
1021 * step1: save events moving to new counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001022 */
Peter Zijlstra19925ce2010-03-06 13:20:40 +01001023 for (i = 0; i < n_running; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001024 event = cpuc->event_list[i];
1025 hwc = &event->hw;
1026
Stephane Eranian447a1942010-02-01 14:50:01 +02001027 /*
1028 * we can avoid reprogramming counter if:
1029 * - assigned same counter as last time
1030 * - running on same CPU as last time
1031 * - no other event has used the counter since
1032 */
1033 if (hwc->idx == -1 ||
1034 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +02001035 continue;
1036
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001037 /*
1038 * Ensure we don't accidentally enable a stopped
1039 * counter simply because we rescheduled.
1040 */
1041 if (hwc->state & PERF_HES_STOPPED)
1042 hwc->state |= PERF_HES_ARCH;
1043
1044 x86_pmu_stop(event, PERF_EF_UPDATE);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001045 }
1046
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001047 /*
1048 * step2: reprogram moved events into new counters
1049 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001050 for (i = 0; i < cpuc->n_events; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001051 event = cpuc->event_list[i];
1052 hwc = &event->hw;
1053
Peter Zijlstra45e16a62010-03-11 13:40:30 +01001054 if (!match_prev_assignment(hwc, cpuc, i))
Stephane Eranian447a1942010-02-01 14:50:01 +02001055 x86_assign_hw_event(event, cpuc, i);
Peter Zijlstra45e16a62010-03-11 13:40:30 +01001056 else if (i < n_running)
1057 continue;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001058
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001059 if (hwc->state & PERF_HES_ARCH)
1060 continue;
1061
1062 x86_pmu_start(event, PERF_EF_RELOAD);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001063 }
1064 cpuc->n_added = 0;
1065 perf_events_lapic_init();
1066 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +01001067
1068 cpuc->enabled = 1;
1069 barrier();
1070
Peter Zijlstra11164cd2010-03-26 14:08:44 +01001071 x86_pmu.enable_all(added);
Ingo Molnaree060942008-12-13 09:00:03 +01001072}
Ingo Molnaree060942008-12-13 09:00:03 +01001073
Tejun Heo245b2e72009-06-24 15:13:48 +09001074static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001075
Ingo Molnaree060942008-12-13 09:00:03 +01001076/*
1077 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001078 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +01001079 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001080int x86_perf_event_set_period(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +01001081{
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001082 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001083 s64 left = local64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001084 s64 period = hwc->sample_period;
Peter Zijlstra7645a242010-03-08 13:51:31 +01001085 int ret = 0, idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +01001086
Robert Richter15c7ad52012-06-20 20:46:33 +02001087 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +02001088 return 0;
1089
Ingo Molnaree060942008-12-13 09:00:03 +01001090 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001091 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +01001092 */
1093 if (unlikely(left <= -period)) {
1094 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001095 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001096 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001097 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +01001098 }
1099
1100 if (unlikely(left <= 0)) {
1101 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001102 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001103 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001104 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +01001105 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +02001106 /*
Ingo Molnardfc65092009-09-21 11:31:35 +02001107 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +02001108 */
1109 if (unlikely(left < 2))
1110 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +01001111
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001112 if (left > x86_pmu.max_period)
1113 left = x86_pmu.max_period;
1114
Andi Kleen294fe0f2015-02-17 18:18:06 -08001115 if (x86_pmu.limit_period)
1116 left = x86_pmu.limit_period(event, left);
1117
Tejun Heo245b2e72009-06-24 15:13:48 +09001118 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +01001119
Yan, Zheng851559e2015-05-06 15:33:47 -04001120 if (!(hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) ||
1121 local64_read(&hwc->prev_count) != (u64)-left) {
1122 /*
1123 * The hw event starts counting from this event offset,
1124 * mark it to be able to extra future deltas:
1125 */
1126 local64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +01001127
Yan, Zheng851559e2015-05-06 15:33:47 -04001128 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
1129 }
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001130
1131 /*
1132 * Due to erratum on certan cpu we need
1133 * a second write to be sure the register
1134 * is updated properly
1135 */
1136 if (x86_pmu.perfctr_second_write) {
Robert Richter73d6e522011-02-02 17:40:59 +01001137 wrmsrl(hwc->event_base,
Robert Richter948b1bb2010-03-29 18:36:50 +02001138 (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001139 }
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001140
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001141 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001142
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001143 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001144}
1145
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001146void x86_pmu_enable_event(struct perf_event *event)
Robert Richter7c90cc42009-04-29 12:47:18 +02001147{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001148 if (__this_cpu_read(cpu_hw_events.enabled))
Robert Richter31fa58a2010-04-13 22:23:14 +02001149 __x86_pmu_enable_event(&event->hw,
1150 ARCH_PERFMON_EVENTSEL_ENABLE);
Ingo Molnar241771e2008-12-03 10:39:53 +01001151}
1152
Ingo Molnaree060942008-12-13 09:00:03 +01001153/*
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001154 * Add a single event to the PMU.
Stephane Eranian1da53e02010-01-18 10:58:01 +02001155 *
1156 * The event is added to the group of enabled events
1157 * but only if it can be scehduled with existing events.
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001158 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001159static int x86_pmu_add(struct perf_event *event, int flags)
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001160{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001161 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001162 struct hw_perf_event *hwc;
1163 int assign[X86_PMC_IDX_MAX];
1164 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001165
Stephane Eranian1da53e02010-01-18 10:58:01 +02001166 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001167
Stephane Eranian1da53e02010-01-18 10:58:01 +02001168 n0 = cpuc->n_events;
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001169 ret = n = collect_events(cpuc, event, false);
1170 if (ret < 0)
1171 goto out;
Ingo Molnar53b441a2009-05-25 21:41:28 +02001172
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001173 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1174 if (!(flags & PERF_EF_START))
1175 hwc->state |= PERF_HES_ARCH;
1176
Lin Ming4d1c52b2010-04-23 13:56:12 +08001177 /*
1178 * If group events scheduling transaction was started,
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001179 * skip the schedulability test here, it will be performed
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001180 * at commit time (->commit_txn) as a whole.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001181 */
Sukadev Bhattiprolu8f3e5682015-09-03 20:07:53 -07001182 if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001183 goto done_collect;
Lin Ming4d1c52b2010-04-23 13:56:12 +08001184
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001185 ret = x86_pmu.schedule_events(cpuc, n, assign);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001186 if (ret)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001187 goto out;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001188 /*
1189 * copy new assignment, now we know it is possible
1190 * will be used by hw_perf_enable()
1191 */
1192 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +01001193
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001194done_collect:
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001195 /*
1196 * Commit the collect_events() state. See x86_pmu_del() and
1197 * x86_pmu_*_txn().
1198 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001199 cpuc->n_events = n;
Peter Zijlstra356e1f22010-03-06 13:49:56 +01001200 cpuc->n_added += n - n0;
Stephane Eranian90151c352010-05-25 16:23:10 +02001201 cpuc->n_txn += n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +01001202
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001203 ret = 0;
1204out:
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001205 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001206}
1207
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001208static void x86_pmu_start(struct perf_event *event, int flags)
Stephane Eraniand76a0812010-02-08 17:06:01 +02001209{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001210 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001211 int idx = event->hw.idx;
1212
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001213 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1214 return;
Stephane Eraniand76a0812010-02-08 17:06:01 +02001215
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001216 if (WARN_ON_ONCE(idx == -1))
1217 return;
1218
1219 if (flags & PERF_EF_RELOAD) {
1220 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1221 x86_perf_event_set_period(event);
1222 }
1223
1224 event->hw.state = 0;
1225
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001226 cpuc->events[idx] = event;
1227 __set_bit(idx, cpuc->active_mask);
Robert Richter63e6be62010-09-15 18:20:34 +02001228 __set_bit(idx, cpuc->running);
Peter Zijlstraaff3d912010-03-02 20:32:08 +01001229 x86_pmu.enable(event);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001230 perf_event_update_userpage(event);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001231}
1232
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001233void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001234{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001235 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Andi Kleenda3e6062015-02-27 09:48:31 -08001236 u64 pebs, debugctl;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001237 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001238 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001239 int cpu, idx;
1240
Robert Richter948b1bb2010-03-29 18:36:50 +02001241 if (!x86_pmu.num_counters)
Ingo Molnar1e125672008-12-09 12:18:18 +01001242 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001243
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001244 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001245
1246 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001247 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001248
Robert Richterfaa28ae2009-04-29 12:47:13 +02001249 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301250 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1251 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1252 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1253 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Ingo Molnar241771e2008-12-03 10:39:53 +01001254
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301255 pr_info("\n");
1256 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1257 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1258 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1259 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Andi Kleen15fde112015-02-27 09:48:32 -08001260 if (x86_pmu.pebs_constraints) {
1261 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
1262 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
1263 }
Andi Kleenda3e6062015-02-27 09:48:31 -08001264 if (x86_pmu.lbr_nr) {
1265 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
1266 pr_info("CPU#%d: debugctl: %016llx\n", cpu, debugctl);
1267 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301268 }
Peter Zijlstra7645a242010-03-08 13:51:31 +01001269 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001270
Robert Richter948b1bb2010-03-29 18:36:50 +02001271 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter41bf4982011-02-02 17:40:57 +01001272 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1273 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001274
Tejun Heo245b2e72009-06-24 15:13:48 +09001275 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001276
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301277 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001278 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301279 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001280 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301281 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001282 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001283 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001284 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001285 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1286
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301287 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001288 cpu, idx, pmc_count);
1289 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001290 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001291}
1292
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001293void x86_pmu_stop(struct perf_event *event, int flags)
Ingo Molnar241771e2008-12-03 10:39:53 +01001294{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001295 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001296 struct hw_perf_event *hwc = &event->hw;
Ingo Molnar241771e2008-12-03 10:39:53 +01001297
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001298 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1299 x86_pmu.disable(event);
1300 cpuc->events[hwc->idx] = NULL;
1301 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1302 hwc->state |= PERF_HES_STOPPED;
1303 }
Peter Zijlstra71e2d282010-03-08 17:51:33 +01001304
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001305 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1306 /*
1307 * Drain the remaining delta count out of a event
1308 * that we are disabling:
1309 */
1310 x86_perf_event_update(event);
1311 hwc->state |= PERF_HES_UPTODATE;
1312 }
Peter Zijlstra2e841872010-01-25 15:58:43 +01001313}
1314
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001315static void x86_pmu_del(struct perf_event *event, int flags)
Peter Zijlstra2e841872010-01-25 15:58:43 +01001316{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001317 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001318 int i;
1319
Stephane Eranian90151c352010-05-25 16:23:10 +02001320 /*
Stephane Eranian2f7f73a2013-06-20 18:42:54 +02001321 * event is descheduled
1322 */
1323 event->hw.flags &= ~PERF_X86_EVENT_COMMITTED;
1324
1325 /*
Stephane Eranian90151c352010-05-25 16:23:10 +02001326 * If we're called during a txn, we don't need to do anything.
1327 * The events never got scheduled and ->cancel_txn will truncate
1328 * the event_list.
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001329 *
1330 * XXX assumes any ->del() called during a TXN will only be on
1331 * an event added during that same TXN.
Stephane Eranian90151c352010-05-25 16:23:10 +02001332 */
Sukadev Bhattiprolu8f3e5682015-09-03 20:07:53 -07001333 if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
Stephane Eranian90151c352010-05-25 16:23:10 +02001334 return;
1335
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001336 /*
1337 * Not a TXN, therefore cleanup properly.
1338 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001339 x86_pmu_stop(event, PERF_EF_UPDATE);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001340
Stephane Eranian1da53e02010-01-18 10:58:01 +02001341 for (i = 0; i < cpuc->n_events; i++) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001342 if (event == cpuc->event_list[i])
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001343 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001344 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001345
1346 if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1347 return;
1348
1349 /* If we have a newly added event; make sure to decrease n_added. */
1350 if (i >= cpuc->n_events - cpuc->n_added)
1351 --cpuc->n_added;
1352
1353 if (x86_pmu.put_event_constraints)
1354 x86_pmu.put_event_constraints(cpuc, event);
1355
1356 /* Delete the array entry. */
Peter Zijlstrab371b592015-05-21 10:57:13 +02001357 while (++i < cpuc->n_events) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001358 cpuc->event_list[i-1] = cpuc->event_list[i];
Peter Zijlstrab371b592015-05-21 10:57:13 +02001359 cpuc->event_constraint[i-1] = cpuc->event_constraint[i];
1360 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001361 --cpuc->n_events;
1362
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001363 perf_event_update_userpage(event);
Ingo Molnar241771e2008-12-03 10:39:53 +01001364}
1365
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001366int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001367{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001368 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001369 struct cpu_hw_events *cpuc;
1370 struct perf_event *event;
Vince Weaver11d15782009-07-08 17:46:14 -04001371 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001372 u64 val;
1373
Christoph Lameter89cbc762014-08-17 12:30:40 -05001374 cpuc = this_cpu_ptr(&cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001375
Don Zickus2bce5da2011-04-27 06:32:33 -04001376 /*
1377 * Some chipsets need to unmask the LVTPC in a particular spot
1378 * inside the nmi handler. As a result, the unmasking was pushed
1379 * into all the nmi handlers.
1380 *
1381 * This generic handler doesn't seem to have any issues where the
1382 * unmasking occurs so it was left at the top.
1383 */
1384 apic_write(APIC_LVTPC, APIC_DM_NMI);
1385
Robert Richter948b1bb2010-03-29 18:36:50 +02001386 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter63e6be62010-09-15 18:20:34 +02001387 if (!test_bit(idx, cpuc->active_mask)) {
1388 /*
1389 * Though we deactivated the counter some cpus
1390 * might still deliver spurious interrupts still
1391 * in flight. Catch them:
1392 */
1393 if (__test_and_clear_bit(idx, cpuc->running))
1394 handled++;
Robert Richtera29aa8a2009-04-29 12:47:21 +02001395 continue;
Robert Richter63e6be62010-09-15 18:20:34 +02001396 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001398 event = cpuc->events[idx];
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001399
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001400 val = x86_perf_event_update(event);
Robert Richter948b1bb2010-03-29 18:36:50 +02001401 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001402 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001403
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001404 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001405 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001406 */
Robert Richter4177c422010-09-02 15:07:48 -04001407 handled++;
Robert Richterfd0d0002012-04-02 20:19:08 +02001408 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001409
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001410 if (!x86_perf_event_set_period(event))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001411 continue;
1412
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001413 if (perf_event_overflow(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001414 x86_pmu_stop(event, 0);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001415 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001416
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001417 if (handled)
1418 inc_irq_stat(apic_perf_irqs);
1419
Robert Richtera29aa8a2009-04-29 12:47:21 +02001420 return handled;
1421}
Robert Richter39d81ea2009-04-29 12:47:05 +02001422
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001423void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001424{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001425 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001426 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001427
Ingo Molnar241771e2008-12-03 10:39:53 +01001428 /*
Yong Wangc323d952009-05-29 13:28:35 +08001429 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001430 */
Yong Wangc323d952009-05-29 13:28:35 +08001431 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar241771e2008-12-03 10:39:53 +01001432}
1433
Masami Hiramatsu93266382014-04-17 17:18:14 +09001434static int
Don Zickus9c48f1c2011-09-30 15:06:21 -04001435perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
Ingo Molnar241771e2008-12-03 10:39:53 +01001436{
Dave Hansen14c63f12013-06-21 08:51:36 -07001437 u64 start_clock;
1438 u64 finish_clock;
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001439 int ret;
Dave Hansen14c63f12013-06-21 08:51:36 -07001440
Alexander Shishkin1b7b9382015-06-09 13:03:26 +03001441 /*
1442 * All PMUs/events that share this PMI handler should make sure to
1443 * increment active_events for their events.
1444 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001445 if (!atomic_read(&active_events))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001446 return NMI_DONE;
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001447
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001448 start_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001449 ret = x86_pmu.handle_irq(regs);
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001450 finish_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001451
1452 perf_sample_event_took(finish_clock - start_clock);
1453
1454 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001455}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001456NOKPROBE_SYMBOL(perf_event_nmi_handler);
Ingo Molnar241771e2008-12-03 10:39:53 +01001457
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001458struct event_constraint emptyconstraint;
1459struct event_constraint unconstrained;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301460
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001461static int
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001462x86_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1463{
1464 unsigned int cpu = (long)hcpu;
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001465 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
Stephane Eranian90413462014-11-17 20:06:54 +01001466 int i, ret = NOTIFY_OK;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001467
1468 switch (action & ~CPU_TASKS_FROZEN) {
1469 case CPU_UP_PREPARE:
Stephane Eranian90413462014-11-17 20:06:54 +01001470 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++)
1471 cpuc->kfree_on_online[i] = NULL;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001472 if (x86_pmu.cpu_prepare)
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001473 ret = x86_pmu.cpu_prepare(cpu);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001474 break;
1475
1476 case CPU_STARTING:
1477 if (x86_pmu.cpu_starting)
1478 x86_pmu.cpu_starting(cpu);
1479 break;
1480
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001481 case CPU_ONLINE:
Stephane Eranian90413462014-11-17 20:06:54 +01001482 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++) {
1483 kfree(cpuc->kfree_on_online[i]);
1484 cpuc->kfree_on_online[i] = NULL;
1485 }
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001486 break;
1487
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001488 case CPU_DYING:
1489 if (x86_pmu.cpu_dying)
1490 x86_pmu.cpu_dying(cpu);
1491 break;
1492
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001493 case CPU_UP_CANCELED:
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001494 case CPU_DEAD:
1495 if (x86_pmu.cpu_dead)
1496 x86_pmu.cpu_dead(cpu);
1497 break;
1498
1499 default:
1500 break;
1501 }
1502
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001503 return ret;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001504}
1505
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001506static void __init pmu_check_apic(void)
1507{
1508 if (cpu_has_apic)
1509 return;
1510
1511 x86_pmu.apic = 0;
1512 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1513 pr_info("no hardware sampling interrupt available.\n");
Vince Weaverc184c982014-05-16 17:18:07 -04001514
1515 /*
1516 * If we have a PMU initialized but no APIC
1517 * interrupts, we cannot sample hardware
1518 * events (user-space has to fall back and
1519 * sample via a hrtimer based software event):
1520 */
1521 pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1522
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001523}
1524
Jiri Olsa641cc932012-03-15 20:09:14 +01001525static struct attribute_group x86_pmu_format_group = {
1526 .name = "format",
1527 .attrs = NULL,
1528};
1529
Jiri Olsa8300daa2012-10-10 14:53:12 +02001530/*
1531 * Remove all undefined events (x86_pmu.event_map(id) == 0)
1532 * out of events_attr attributes.
1533 */
1534static void __init filter_events(struct attribute **attrs)
1535{
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001536 struct device_attribute *d;
1537 struct perf_pmu_events_attr *pmu_attr;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001538 int offset = 0;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001539 int i, j;
1540
1541 for (i = 0; attrs[i]; i++) {
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001542 d = (struct device_attribute *)attrs[i];
1543 pmu_attr = container_of(d, struct perf_pmu_events_attr, attr);
1544 /* str trumps id */
1545 if (pmu_attr->event_str)
1546 continue;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001547 if (x86_pmu.event_map(i + offset))
Jiri Olsa8300daa2012-10-10 14:53:12 +02001548 continue;
1549
1550 for (j = i; attrs[j]; j++)
1551 attrs[j] = attrs[j + 1];
1552
1553 /* Check the shifted attr. */
1554 i--;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001555
1556 /*
1557 * event_map() is index based, the attrs array is organized
1558 * by increasing event index. If we shift the events, then
1559 * we need to compensate for the event_map(), otherwise
1560 * we are looking up the wrong event in the map
1561 */
1562 offset++;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001563 }
1564}
1565
Andi Kleen1a6461b2013-01-24 16:10:25 +01001566/* Merge two pointer arrays */
Andi Kleen47732d82015-06-29 14:22:13 -07001567__init struct attribute **merge_attr(struct attribute **a, struct attribute **b)
Andi Kleen1a6461b2013-01-24 16:10:25 +01001568{
1569 struct attribute **new;
1570 int j, i;
1571
1572 for (j = 0; a[j]; j++)
1573 ;
1574 for (i = 0; b[i]; i++)
1575 j++;
1576 j++;
1577
1578 new = kmalloc(sizeof(struct attribute *) * j, GFP_KERNEL);
1579 if (!new)
1580 return NULL;
1581
1582 j = 0;
1583 for (i = 0; a[i]; i++)
1584 new[j++] = a[i];
1585 for (i = 0; b[i]; i++)
1586 new[j++] = b[i];
1587 new[j] = NULL;
1588
1589 return new;
1590}
1591
Stephane Eranianf20093e2013-01-24 16:10:32 +01001592ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
Jiri Olsaa4747392012-10-10 14:53:11 +02001593 char *page)
1594{
1595 struct perf_pmu_events_attr *pmu_attr = \
1596 container_of(attr, struct perf_pmu_events_attr, attr);
Jiri Olsaa4747392012-10-10 14:53:11 +02001597 u64 config = x86_pmu.event_map(pmu_attr->id);
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001598
1599 /* string trumps id */
1600 if (pmu_attr->event_str)
1601 return sprintf(page, "%s", pmu_attr->event_str);
1602
Jiri Olsaa4747392012-10-10 14:53:11 +02001603 return x86_pmu.events_sysfs_show(page, config);
1604}
1605
Jiri Olsaa4747392012-10-10 14:53:11 +02001606EVENT_ATTR(cpu-cycles, CPU_CYCLES );
1607EVENT_ATTR(instructions, INSTRUCTIONS );
1608EVENT_ATTR(cache-references, CACHE_REFERENCES );
1609EVENT_ATTR(cache-misses, CACHE_MISSES );
1610EVENT_ATTR(branch-instructions, BRANCH_INSTRUCTIONS );
1611EVENT_ATTR(branch-misses, BRANCH_MISSES );
1612EVENT_ATTR(bus-cycles, BUS_CYCLES );
1613EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND );
1614EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND );
1615EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
1616
1617static struct attribute *empty_attrs;
1618
Peter Huewe95d18aa2012-10-29 21:48:17 +01001619static struct attribute *events_attr[] = {
Jiri Olsaa4747392012-10-10 14:53:11 +02001620 EVENT_PTR(CPU_CYCLES),
1621 EVENT_PTR(INSTRUCTIONS),
1622 EVENT_PTR(CACHE_REFERENCES),
1623 EVENT_PTR(CACHE_MISSES),
1624 EVENT_PTR(BRANCH_INSTRUCTIONS),
1625 EVENT_PTR(BRANCH_MISSES),
1626 EVENT_PTR(BUS_CYCLES),
1627 EVENT_PTR(STALLED_CYCLES_FRONTEND),
1628 EVENT_PTR(STALLED_CYCLES_BACKEND),
1629 EVENT_PTR(REF_CPU_CYCLES),
1630 NULL,
1631};
1632
1633static struct attribute_group x86_pmu_events_group = {
1634 .name = "events",
1635 .attrs = events_attr,
1636};
1637
Jiri Olsa0bf79d42012-10-10 14:53:14 +02001638ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
Jiri Olsa43c032f2012-10-10 14:53:13 +02001639{
Jiri Olsa43c032f2012-10-10 14:53:13 +02001640 u64 umask = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1641 u64 cmask = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1642 bool edge = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1643 bool pc = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1644 bool any = (config & ARCH_PERFMON_EVENTSEL_ANY);
1645 bool inv = (config & ARCH_PERFMON_EVENTSEL_INV);
1646 ssize_t ret;
1647
1648 /*
1649 * We have whole page size to spend and just little data
1650 * to write, so we can safely use sprintf.
1651 */
1652 ret = sprintf(page, "event=0x%02llx", event);
1653
1654 if (umask)
1655 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1656
1657 if (edge)
1658 ret += sprintf(page + ret, ",edge");
1659
1660 if (pc)
1661 ret += sprintf(page + ret, ",pc");
1662
1663 if (any)
1664 ret += sprintf(page + ret, ",any");
1665
1666 if (inv)
1667 ret += sprintf(page + ret, ",inv");
1668
1669 if (cmask)
1670 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1671
1672 ret += sprintf(page + ret, "\n");
1673
1674 return ret;
1675}
1676
Yinghai Ludda99112011-01-21 15:30:01 -08001677static int __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301678{
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001679 struct x86_pmu_quirk *quirk;
Robert Richter72eae042009-04-29 12:47:10 +02001680 int err;
1681
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001682 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001683
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301684 switch (boot_cpu_data.x86_vendor) {
1685 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001686 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301687 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301688 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001689 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301690 break;
Robert Richter41389602009-04-29 12:47:00 +02001691 default:
Ingo Molnar8a3da6c72013-09-28 15:48:48 +02001692 err = -ENOTSUPP;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301693 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001694 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001695 pr_cont("no PMU driver, software events only.\n");
Peter Zijlstra004417a2010-11-25 18:38:29 +01001696 return 0;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001697 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301698
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001699 pmu_check_apic();
1700
Don Zickus33c6d6a2010-11-22 16:55:23 -05001701 /* sanity check that the hardware exists or is emulated */
Peter Zijlstra44072042010-12-08 15:56:23 +01001702 if (!check_hw_exists())
Peter Zijlstra004417a2010-11-25 18:38:29 +01001703 return 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -05001704
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001705 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001706
Peter Zijlstrae97df762014-02-05 20:48:51 +01001707 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1708
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001709 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1710 quirk->func();
Peter Zijlstra3c447802010-03-04 21:49:01 +01001711
Robert Richtera1eac7a2012-06-20 20:46:34 +02001712 if (!x86_pmu.intel_ctrl)
1713 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001714
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001715 perf_events_lapic_init();
Don Zickus9c48f1c2011-09-30 15:06:21 -04001716 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001717
Peter Zijlstra63b14642010-01-22 16:32:17 +01001718 unconstrained = (struct event_constraint)
Robert Richter948b1bb2010-03-29 18:36:50 +02001719 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
Stephane Eranian9fac2cf2013-01-24 16:10:27 +01001720 0, x86_pmu.num_counters, 0, 0);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001721
Jiri Olsa641cc932012-03-15 20:09:14 +01001722 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001723
Stephane Eranianf20093e2013-01-24 16:10:32 +01001724 if (x86_pmu.event_attrs)
1725 x86_pmu_events_group.attrs = x86_pmu.event_attrs;
1726
Jiri Olsaa4747392012-10-10 14:53:11 +02001727 if (!x86_pmu.events_sysfs_show)
1728 x86_pmu_events_group.attrs = &empty_attrs;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001729 else
1730 filter_events(x86_pmu_events_group.attrs);
Jiri Olsaa4747392012-10-10 14:53:11 +02001731
Andi Kleen1a6461b2013-01-24 16:10:25 +01001732 if (x86_pmu.cpu_events) {
1733 struct attribute **tmp;
1734
1735 tmp = merge_attr(x86_pmu_events_group.attrs, x86_pmu.cpu_events);
1736 if (!WARN_ON(!tmp))
1737 x86_pmu_events_group.attrs = tmp;
1738 }
1739
Ingo Molnar57c0c152009-09-21 12:20:38 +02001740 pr_info("... version: %d\n", x86_pmu.version);
Robert Richter948b1bb2010-03-29 18:36:50 +02001741 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1742 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1743 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
Ingo Molnar57c0c152009-09-21 12:20:38 +02001744 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
Robert Richter948b1bb2010-03-29 18:36:50 +02001745 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
Robert Richterd6dc0b42010-03-17 12:49:13 +01001746 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001747
Peter Zijlstra2e80a822010-11-17 23:17:36 +01001748 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001749 perf_cpu_notifier(x86_pmu_notifier);
Peter Zijlstra004417a2010-11-25 18:38:29 +01001750
1751 return 0;
Ingo Molnar241771e2008-12-03 10:39:53 +01001752}
Peter Zijlstra004417a2010-11-25 18:38:29 +01001753early_initcall(init_hw_perf_events);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001754
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001755static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001756{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001757 x86_perf_event_update(event);
Ingo Molnaree060942008-12-13 09:00:03 +01001758}
1759
Lin Ming4d1c52b2010-04-23 13:56:12 +08001760/*
1761 * Start group events scheduling transaction
1762 * Set the flag to make pmu::enable() not perform the
1763 * schedulability test, it will be performed at commit time
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001764 *
1765 * We only support PERF_PMU_TXN_ADD transactions. Save the
1766 * transaction flags but otherwise ignore non-PERF_PMU_TXN_ADD
1767 * transactions.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001768 */
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001769static void x86_pmu_start_txn(struct pmu *pmu, unsigned int txn_flags)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001770{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001771 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1772
1773 WARN_ON_ONCE(cpuc->txn_flags); /* txn already in flight */
1774
1775 cpuc->txn_flags = txn_flags;
1776 if (txn_flags & ~PERF_PMU_TXN_ADD)
1777 return;
1778
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001779 perf_pmu_disable(pmu);
Tejun Heo0a3aee02010-12-18 16:28:55 +01001780 __this_cpu_write(cpu_hw_events.n_txn, 0);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001781}
1782
1783/*
1784 * Stop group events scheduling transaction
1785 * Clear the flag and pmu::enable() will perform the
1786 * schedulability test.
1787 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001788static void x86_pmu_cancel_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001789{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001790 unsigned int txn_flags;
1791 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1792
1793 WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
1794
1795 txn_flags = cpuc->txn_flags;
1796 cpuc->txn_flags = 0;
1797 if (txn_flags & ~PERF_PMU_TXN_ADD)
1798 return;
1799
Stephane Eranian90151c352010-05-25 16:23:10 +02001800 /*
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001801 * Truncate collected array by the number of events added in this
1802 * transaction. See x86_pmu_add() and x86_pmu_*_txn().
Stephane Eranian90151c352010-05-25 16:23:10 +02001803 */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001804 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1805 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001806 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001807}
1808
1809/*
1810 * Commit group events scheduling transaction
1811 * Perform the group schedulability test as a whole
1812 * Return 0 if success
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001813 *
1814 * Does not cancel the transaction on failure; expects the caller to do this.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001815 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001816static int x86_pmu_commit_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001817{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001818 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001819 int assign[X86_PMC_IDX_MAX];
1820 int n, ret;
1821
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001822 WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
1823
1824 if (cpuc->txn_flags & ~PERF_PMU_TXN_ADD) {
1825 cpuc->txn_flags = 0;
1826 return 0;
1827 }
1828
Lin Ming4d1c52b2010-04-23 13:56:12 +08001829 n = cpuc->n_events;
1830
1831 if (!x86_pmu_initialized())
1832 return -EAGAIN;
1833
1834 ret = x86_pmu.schedule_events(cpuc, n, assign);
1835 if (ret)
1836 return ret;
1837
1838 /*
1839 * copy new assignment, now we know it is possible
1840 * will be used by hw_perf_enable()
1841 */
1842 memcpy(cpuc->assign, assign, n*sizeof(int));
1843
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001844 cpuc->txn_flags = 0;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001845 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001846 return 0;
1847}
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001848/*
1849 * a fake_cpuc is used to validate event groups. Due to
1850 * the extra reg logic, we need to also allocate a fake
1851 * per_core and per_cpu structure. Otherwise, group events
1852 * using extra reg may conflict without the kernel being
1853 * able to catch this when the last event gets added to
1854 * the group.
1855 */
1856static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1857{
1858 kfree(cpuc->shared_regs);
1859 kfree(cpuc);
1860}
1861
1862static struct cpu_hw_events *allocate_fake_cpuc(void)
1863{
1864 struct cpu_hw_events *cpuc;
1865 int cpu = raw_smp_processor_id();
1866
1867 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1868 if (!cpuc)
1869 return ERR_PTR(-ENOMEM);
1870
1871 /* only needed, if we have extra_regs */
1872 if (x86_pmu.extra_regs) {
1873 cpuc->shared_regs = allocate_shared_regs(cpu);
1874 if (!cpuc->shared_regs)
1875 goto error;
1876 }
Peter Zijlstrab430f7c2012-06-05 15:30:31 +02001877 cpuc->is_fake = 1;
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001878 return cpuc;
1879error:
1880 free_fake_cpuc(cpuc);
1881 return ERR_PTR(-ENOMEM);
1882}
Lin Ming4d1c52b2010-04-23 13:56:12 +08001883
Stephane Eranian1da53e02010-01-18 10:58:01 +02001884/*
Peter Zijlstraca037702010-03-02 19:52:12 +01001885 * validate that we can schedule this event
1886 */
1887static int validate_event(struct perf_event *event)
1888{
1889 struct cpu_hw_events *fake_cpuc;
1890 struct event_constraint *c;
1891 int ret = 0;
1892
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001893 fake_cpuc = allocate_fake_cpuc();
1894 if (IS_ERR(fake_cpuc))
1895 return PTR_ERR(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001896
Stephane Eranian79cba822014-11-17 20:06:56 +01001897 c = x86_pmu.get_event_constraints(fake_cpuc, -1, event);
Peter Zijlstraca037702010-03-02 19:52:12 +01001898
1899 if (!c || !c->weight)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001900 ret = -EINVAL;
Peter Zijlstraca037702010-03-02 19:52:12 +01001901
1902 if (x86_pmu.put_event_constraints)
1903 x86_pmu.put_event_constraints(fake_cpuc, event);
1904
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001905 free_fake_cpuc(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001906
1907 return ret;
1908}
1909
1910/*
Stephane Eranian1da53e02010-01-18 10:58:01 +02001911 * validate a single event group
1912 *
1913 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01001914 * - check events are compatible which each other
1915 * - events do not compete for the same counter
1916 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001917 *
1918 * validation ensures the group can be loaded onto the
1919 * PMU if it was the only group available.
1920 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001921static int validate_group(struct perf_event *event)
1922{
Stephane Eranian1da53e02010-01-18 10:58:01 +02001923 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01001924 struct cpu_hw_events *fake_cpuc;
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001925 int ret = -EINVAL, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001926
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001927 fake_cpuc = allocate_fake_cpuc();
1928 if (IS_ERR(fake_cpuc))
1929 return PTR_ERR(fake_cpuc);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001930 /*
1931 * the event is not yet connected with its
1932 * siblings therefore we must first collect
1933 * existing siblings, then add the new event
1934 * before we can simulate the scheduling
1935 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01001936 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001937 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001938 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001939
Peter Zijlstra502568d2010-01-22 14:35:46 +01001940 fake_cpuc->n_events = n;
1941 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001942 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001943 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001944
Peter Zijlstra502568d2010-01-22 14:35:46 +01001945 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001946
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001947 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001948
Peter Zijlstra502568d2010-01-22 14:35:46 +01001949out:
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001950 free_fake_cpuc(fake_cpuc);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001951 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001952}
1953
Yinghai Ludda99112011-01-21 15:30:01 -08001954static int x86_pmu_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01001955{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001956 struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001957 int err;
1958
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001959 switch (event->attr.type) {
1960 case PERF_TYPE_RAW:
1961 case PERF_TYPE_HARDWARE:
1962 case PERF_TYPE_HW_CACHE:
1963 break;
1964
1965 default:
1966 return -ENOENT;
1967 }
1968
1969 err = __x86_pmu_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001970 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02001971 /*
1972 * we temporarily connect event to its pmu
1973 * such that validate_group() can classify
1974 * it as an x86 event using is_x86_event()
1975 */
1976 tmp = event->pmu;
1977 event->pmu = &pmu;
1978
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001979 if (event->group_leader != event)
1980 err = validate_group(event);
Peter Zijlstraca037702010-03-02 19:52:12 +01001981 else
1982 err = validate_event(event);
Stephane Eranian81130702010-01-21 17:39:01 +02001983
1984 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001985 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001986 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001987 if (event->destroy)
1988 event->destroy(event);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001989 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01001990
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001991 if (ACCESS_ONCE(x86_pmu.attr_rdpmc))
1992 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
1993
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001994 return err;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001995}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001996
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001997static void refresh_pce(void *ignored)
1998{
1999 if (current->mm)
2000 load_mm_cr4(current->mm);
2001}
2002
2003static void x86_pmu_event_mapped(struct perf_event *event)
2004{
2005 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2006 return;
2007
2008 if (atomic_inc_return(&current->mm->context.perf_rdpmc_allowed) == 1)
2009 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
2010}
2011
2012static void x86_pmu_event_unmapped(struct perf_event *event)
2013{
2014 if (!current->mm)
2015 return;
2016
2017 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2018 return;
2019
2020 if (atomic_dec_and_test(&current->mm->context.perf_rdpmc_allowed))
2021 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
2022}
2023
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002024static int x86_pmu_event_idx(struct perf_event *event)
2025{
2026 int idx = event->hw.idx;
2027
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002028 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
Peter Zijlstrac7206202012-03-22 17:26:36 +01002029 return 0;
2030
Robert Richter15c7ad52012-06-20 20:46:33 +02002031 if (x86_pmu.num_counters_fixed && idx >= INTEL_PMC_IDX_FIXED) {
2032 idx -= INTEL_PMC_IDX_FIXED;
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002033 idx |= 1 << 30;
2034 }
2035
2036 return idx + 1;
2037}
2038
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002039static ssize_t get_attr_rdpmc(struct device *cdev,
2040 struct device_attribute *attr,
2041 char *buf)
2042{
2043 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
2044}
2045
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002046static ssize_t set_attr_rdpmc(struct device *cdev,
2047 struct device_attribute *attr,
2048 const char *buf, size_t count)
2049{
Shuah Khane2b297f2012-06-10 21:13:41 -06002050 unsigned long val;
2051 ssize_t ret;
2052
2053 ret = kstrtoul(buf, 0, &val);
2054 if (ret)
2055 return ret;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002056
Andy Lutomirskia6673422014-10-24 15:58:13 -07002057 if (val > 2)
2058 return -EINVAL;
2059
Peter Zijlstrae97df762014-02-05 20:48:51 +01002060 if (x86_pmu.attr_rdpmc_broken)
2061 return -ENOTSUPP;
2062
Andy Lutomirskia6673422014-10-24 15:58:13 -07002063 if ((val == 2) != (x86_pmu.attr_rdpmc == 2)) {
2064 /*
2065 * Changing into or out of always available, aka
2066 * perf-event-bypassing mode. This path is extremely slow,
2067 * but only root can trigger it, so it's okay.
2068 */
2069 if (val == 2)
2070 static_key_slow_inc(&rdpmc_always_available);
2071 else
2072 static_key_slow_dec(&rdpmc_always_available);
2073 on_each_cpu(refresh_pce, NULL, 1);
2074 }
2075
2076 x86_pmu.attr_rdpmc = val;
2077
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002078 return count;
2079}
2080
2081static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
2082
2083static struct attribute *x86_pmu_attrs[] = {
2084 &dev_attr_rdpmc.attr,
2085 NULL,
2086};
2087
2088static struct attribute_group x86_pmu_attr_group = {
2089 .attrs = x86_pmu_attrs,
2090};
2091
2092static const struct attribute_group *x86_pmu_attr_groups[] = {
2093 &x86_pmu_attr_group,
Jiri Olsa641cc932012-03-15 20:09:14 +01002094 &x86_pmu_format_group,
Jiri Olsaa4747392012-10-10 14:53:11 +02002095 &x86_pmu_events_group,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002096 NULL,
2097};
2098
Yan, Zhengba532502014-11-04 21:55:58 -05002099static void x86_pmu_sched_task(struct perf_event_context *ctx, bool sched_in)
Stephane Eraniand010b332012-02-09 23:21:00 +01002100{
Yan, Zhengba532502014-11-04 21:55:58 -05002101 if (x86_pmu.sched_task)
2102 x86_pmu.sched_task(ctx, sched_in);
Stephane Eraniand010b332012-02-09 23:21:00 +01002103}
2104
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002105void perf_check_microcode(void)
2106{
2107 if (x86_pmu.check_microcode)
2108 x86_pmu.check_microcode();
2109}
2110EXPORT_SYMBOL_GPL(perf_check_microcode);
2111
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002112static struct pmu pmu = {
Stephane Eraniand010b332012-02-09 23:21:00 +01002113 .pmu_enable = x86_pmu_enable,
2114 .pmu_disable = x86_pmu_disable,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002115
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002116 .attr_groups = x86_pmu_attr_groups,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002117
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002118 .event_init = x86_pmu_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002119
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002120 .event_mapped = x86_pmu_event_mapped,
2121 .event_unmapped = x86_pmu_event_unmapped,
2122
Stephane Eraniand010b332012-02-09 23:21:00 +01002123 .add = x86_pmu_add,
2124 .del = x86_pmu_del,
2125 .start = x86_pmu_start,
2126 .stop = x86_pmu_stop,
2127 .read = x86_pmu_read,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002128
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002129 .start_txn = x86_pmu_start_txn,
2130 .cancel_txn = x86_pmu_cancel_txn,
2131 .commit_txn = x86_pmu_commit_txn,
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002132
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002133 .event_idx = x86_pmu_event_idx,
Yan, Zhengba532502014-11-04 21:55:58 -05002134 .sched_task = x86_pmu_sched_task,
Yan, Zhenge18bf522014-11-04 21:56:03 -05002135 .task_ctx_size = sizeof(struct x86_perf_task_context),
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002136};
2137
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07002138void arch_perf_update_userpage(struct perf_event *event,
2139 struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002140{
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002141 struct cyc2ns_data *data;
2142
Peter Zijlstrafa731582013-09-19 10:16:42 +02002143 userpg->cap_user_time = 0;
2144 userpg->cap_user_time_zero = 0;
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002145 userpg->cap_user_rdpmc =
2146 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
Peter Zijlstrac7206202012-03-22 17:26:36 +01002147 userpg->pmc_width = x86_pmu.cntval_bits;
2148
Peter Zijlstra35af99e2013-11-28 19:38:42 +01002149 if (!sched_clock_stable())
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002150 return;
2151
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002152 data = cyc2ns_read_begin();
2153
Peter Zijlstra34f43922015-02-20 14:05:38 +01002154 /*
2155 * Internal timekeeping for enabled/running/stopped times
2156 * is always in the local_clock domain.
2157 */
Peter Zijlstrafa731582013-09-19 10:16:42 +02002158 userpg->cap_user_time = 1;
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002159 userpg->time_mult = data->cyc2ns_mul;
2160 userpg->time_shift = data->cyc2ns_shift;
2161 userpg->time_offset = data->cyc2ns_offset - now;
Adrian Hunterc73deb62013-06-28 16:22:18 +03002162
Peter Zijlstra34f43922015-02-20 14:05:38 +01002163 /*
2164 * cap_user_time_zero doesn't make sense when we're using a different
2165 * time base for the records.
2166 */
2167 if (event->clock == &local_clock) {
2168 userpg->cap_user_time_zero = 1;
2169 userpg->time_zero = data->cyc2ns_offset;
2170 }
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002171
2172 cyc2ns_read_end(data);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002173}
2174
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002175/*
2176 * callchain support
2177 */
2178
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002179static int backtrace_stack(void *data, char *name)
2180{
Ingo Molnar038e8362009-06-15 09:57:59 +02002181 return 0;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002182}
2183
2184static void backtrace_address(void *data, unsigned long addr, int reliable)
2185{
2186 struct perf_callchain_entry *entry = data;
2187
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002188 perf_callchain_store(entry, addr);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002189}
2190
2191static const struct stacktrace_ops backtrace_ops = {
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002192 .stack = backtrace_stack,
2193 .address = backtrace_address,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +01002194 .walk_stack = print_context_stack_bp,
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002195};
2196
Frederic Weisbecker56962b42010-06-30 23:03:51 +02002197void
2198perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002199{
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002200 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2201 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002202 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002203 }
2204
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002205 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002206
Namhyung Kime8e999cf2011-03-18 11:40:06 +09002207 dump_trace(NULL, regs, NULL, 0, &backtrace_ops, entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002208}
2209
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002210static inline int
2211valid_user_frame(const void __user *fp, unsigned long size)
2212{
2213 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2214}
2215
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002216static unsigned long get_segment_base(unsigned int segment)
2217{
2218 struct desc_struct *desc;
2219 int idx = segment >> 3;
2220
2221 if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -07002222#ifdef CONFIG_MODIFY_LDT_SYSCALL
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002223 struct ldt_struct *ldt;
2224
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002225 if (idx > LDT_ENTRIES)
2226 return 0;
2227
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002228 /* IRQs are off, so this synchronizes with smp_store_release */
2229 ldt = lockless_dereference(current->active_mm->context.ldt);
2230 if (!ldt || idx > ldt->size)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002231 return 0;
2232
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002233 desc = &ldt->entries[idx];
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -07002234#else
2235 return 0;
2236#endif
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002237 } else {
2238 if (idx > GDT_ENTRIES)
2239 return 0;
2240
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002241 desc = raw_cpu_ptr(gdt_page.gdt) + idx;
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002242 }
2243
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002244 return get_desc_base(desc);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002245}
2246
Brian Gerst10ed3492015-06-22 07:55:17 -04002247#ifdef CONFIG_IA32_EMULATION
H. Peter Anvind1a797f2012-02-19 10:06:34 -08002248
2249#include <asm/compat.h>
2250
Torok Edwin257ef9d2010-03-17 12:07:16 +02002251static inline int
2252perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002253{
Torok Edwin257ef9d2010-03-17 12:07:16 +02002254 /* 32-bit process in 64-bit kernel. */
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002255 unsigned long ss_base, cs_base;
Torok Edwin257ef9d2010-03-17 12:07:16 +02002256 struct stack_frame_ia32 frame;
2257 const void __user *fp;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002258
Torok Edwin257ef9d2010-03-17 12:07:16 +02002259 if (!test_thread_flag(TIF_IA32))
2260 return 0;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002261
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002262 cs_base = get_segment_base(regs->cs);
2263 ss_base = get_segment_base(regs->ss);
2264
2265 fp = compat_ptr(ss_base + regs->bp);
Andi Kleen75925e12015-10-22 15:07:21 -07002266 pagefault_disable();
Torok Edwin257ef9d2010-03-17 12:07:16 +02002267 while (entry->nr < PERF_MAX_STACK_DEPTH) {
2268 unsigned long bytes;
2269 frame.next_frame = 0;
2270 frame.return_address = 0;
2271
Andi Kleen75925e12015-10-22 15:07:21 -07002272 if (!access_ok(VERIFY_READ, fp, 8))
2273 break;
2274
2275 bytes = __copy_from_user_nmi(&frame.next_frame, fp, 4);
2276 if (bytes != 0)
2277 break;
2278 bytes = __copy_from_user_nmi(&frame.return_address, fp+4, 4);
Peter Zijlstra0a196842013-10-30 21:16:22 +01002279 if (bytes != 0)
Torok Edwin257ef9d2010-03-17 12:07:16 +02002280 break;
2281
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002282 if (!valid_user_frame(fp, sizeof(frame)))
2283 break;
2284
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002285 perf_callchain_store(entry, cs_base + frame.return_address);
2286 fp = compat_ptr(ss_base + frame.next_frame);
Torok Edwin257ef9d2010-03-17 12:07:16 +02002287 }
Andi Kleen75925e12015-10-22 15:07:21 -07002288 pagefault_enable();
Torok Edwin257ef9d2010-03-17 12:07:16 +02002289 return 1;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002290}
Torok Edwin257ef9d2010-03-17 12:07:16 +02002291#else
2292static inline int
2293perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
2294{
2295 return 0;
2296}
2297#endif
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002298
Frederic Weisbecker56962b42010-06-30 23:03:51 +02002299void
2300perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002301{
2302 struct stack_frame frame;
2303 const void __user *fp;
2304
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002305 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2306 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002307 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002308 }
Ingo Molnar5a6cec32009-05-29 11:25:09 +02002309
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002310 /*
2311 * We don't know what to do with VM86 stacks.. ignore them for now.
2312 */
2313 if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2314 return;
2315
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002316 fp = (void __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002317
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002318 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002319
Andrey Vagin20afc602011-08-30 12:32:36 +04002320 if (!current->mm)
2321 return;
2322
Torok Edwin257ef9d2010-03-17 12:07:16 +02002323 if (perf_callchain_user32(regs, entry))
2324 return;
2325
Andi Kleen75925e12015-10-22 15:07:21 -07002326 pagefault_disable();
Peter Zijlstraf9188e02009-06-18 22:20:52 +02002327 while (entry->nr < PERF_MAX_STACK_DEPTH) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02002328 unsigned long bytes;
Ingo Molnar038e8362009-06-15 09:57:59 +02002329 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002330 frame.return_address = 0;
2331
Andi Kleen75925e12015-10-22 15:07:21 -07002332 if (!access_ok(VERIFY_READ, fp, 16))
2333 break;
2334
2335 bytes = __copy_from_user_nmi(&frame.next_frame, fp, 8);
2336 if (bytes != 0)
2337 break;
2338 bytes = __copy_from_user_nmi(&frame.return_address, fp+8, 8);
Peter Zijlstra0a196842013-10-30 21:16:22 +01002339 if (bytes != 0)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002340 break;
2341
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002342 if (!valid_user_frame(fp, sizeof(frame)))
2343 break;
2344
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002345 perf_callchain_store(entry, frame.return_address);
Andi Kleen75925e12015-10-22 15:07:21 -07002346 fp = (void __user *)frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002347 }
Andi Kleen75925e12015-10-22 15:07:21 -07002348 pagefault_enable();
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002349}
2350
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002351/*
2352 * Deal with code segment offsets for the various execution modes:
2353 *
2354 * VM86 - the good olde 16 bit days, where the linear address is
2355 * 20 bits and we use regs->ip + 0x10 * regs->cs.
2356 *
2357 * IA32 - Where we need to look at GDT/LDT segment descriptor tables
2358 * to figure out what the 32bit base address is.
2359 *
2360 * X32 - has TIF_X32 set, but is running in x86_64
2361 *
2362 * X86_64 - CS,DS,SS,ES are all zero based.
2363 */
2364static unsigned long code_segment_base(struct pt_regs *regs)
2365{
2366 /*
Andy Lutomirski383f3af2015-03-18 18:33:30 -07002367 * For IA32 we look at the GDT/LDT segment base to convert the
2368 * effective IP to a linear address.
2369 */
2370
2371#ifdef CONFIG_X86_32
2372 /*
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002373 * If we are in VM86 mode, add the segment offset to convert to a
2374 * linear address.
2375 */
2376 if (regs->flags & X86_VM_MASK)
2377 return 0x10 * regs->cs;
2378
Ingo Molnar55474c42015-03-29 11:02:34 +02002379 if (user_mode(regs) && regs->cs != __USER_CS)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002380 return get_segment_base(regs->cs);
2381#else
Andy Lutomirskic56716a2015-03-18 18:33:28 -07002382 if (user_mode(regs) && !user_64bit_mode(regs) &&
2383 regs->cs != __USER32_CS)
2384 return get_segment_base(regs->cs);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002385#endif
2386 return 0;
2387}
2388
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002389unsigned long perf_instruction_pointer(struct pt_regs *regs)
2390{
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002391 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002392 return perf_guest_cbs->get_guest_ip();
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002393
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002394 return regs->ip + code_segment_base(regs);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002395}
2396
2397unsigned long perf_misc_flags(struct pt_regs *regs)
2398{
2399 int misc = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002400
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002401 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002402 if (perf_guest_cbs->is_user_mode())
2403 misc |= PERF_RECORD_MISC_GUEST_USER;
2404 else
2405 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2406 } else {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002407 if (user_mode(regs))
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002408 misc |= PERF_RECORD_MISC_USER;
2409 else
2410 misc |= PERF_RECORD_MISC_KERNEL;
2411 }
2412
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002413 if (regs->flags & PERF_EFLAGS_EXACT)
Peter Zijlstraab608342010-04-08 23:03:20 +02002414 misc |= PERF_RECORD_MISC_EXACT_IP;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002415
2416 return misc;
2417}
Gleb Natapovb3d94682011-11-10 14:57:27 +02002418
2419void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2420{
2421 cap->version = x86_pmu.version;
2422 cap->num_counters_gp = x86_pmu.num_counters;
2423 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2424 cap->bit_width_gp = x86_pmu.cntval_bits;
2425 cap->bit_width_fixed = x86_pmu.cntval_bits;
2426 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
2427 cap->events_mask_len = x86_pmu.events_mask_len;
2428}
2429EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);