blob: b71a7f86d68aca8ba6dd864e9c8cf15e2b3d28ba [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
8 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
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
Kevin Winchesterde0428a2011-08-30 20:41:05 -030040#include "perf_event.h"
41
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;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200138static DEFINE_MUTEX(pmc_reserve_mutex);
139
Robert Richterb27ea292010-03-17 12:49:10 +0100140#ifdef CONFIG_X86_LOCAL_APIC
141
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200142static bool reserve_pmc_hardware(void)
143{
144 int i;
145
Robert Richter948b1bb2010-03-29 18:36:50 +0200146 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100147 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200148 goto perfctr_fail;
149 }
150
Robert Richter948b1bb2010-03-29 18:36:50 +0200151 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100152 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200153 goto eventsel_fail;
154 }
155
156 return true;
157
158eventsel_fail:
159 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100160 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200161
Robert Richter948b1bb2010-03-29 18:36:50 +0200162 i = x86_pmu.num_counters;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200163
164perfctr_fail:
165 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100166 release_perfctr_nmi(x86_pmu_event_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200167
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200168 return false;
169}
170
171static void release_pmc_hardware(void)
172{
173 int i;
174
Robert Richter948b1bb2010-03-29 18:36:50 +0200175 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100176 release_perfctr_nmi(x86_pmu_event_addr(i));
177 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200178 }
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200179}
180
Robert Richterb27ea292010-03-17 12:49:10 +0100181#else
182
183static bool reserve_pmc_hardware(void) { return true; }
184static void release_pmc_hardware(void) {}
185
186#endif
187
Don Zickus33c6d6a2010-11-22 16:55:23 -0500188static bool check_hw_exists(void)
189{
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100190 u64 val, val_fail, val_new= ~0;
191 int i, reg, reg_fail, ret = 0;
192 int bios_fail = 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500193
Peter Zijlstra44072042010-12-08 15:56:23 +0100194 /*
195 * Check to see if the BIOS enabled any of the counters, if so
196 * complain and bail.
197 */
198 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100199 reg = x86_pmu_config_addr(i);
Peter Zijlstra44072042010-12-08 15:56:23 +0100200 ret = rdmsrl_safe(reg, &val);
201 if (ret)
202 goto msr_fail;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100203 if (val & ARCH_PERFMON_EVENTSEL_ENABLE) {
204 bios_fail = 1;
205 val_fail = val;
206 reg_fail = reg;
207 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100208 }
209
210 if (x86_pmu.num_counters_fixed) {
211 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
212 ret = rdmsrl_safe(reg, &val);
213 if (ret)
214 goto msr_fail;
215 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100216 if (val & (0x03 << i*4)) {
217 bios_fail = 1;
218 val_fail = val;
219 reg_fail = reg;
220 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100221 }
222 }
223
224 /*
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200225 * Read the current value, change it and read it back to see if it
226 * matches, this is needed to detect certain hardware emulators
227 * (qemu/kvm) that don't trap on the MSR access and always return 0s.
Peter Zijlstra44072042010-12-08 15:56:23 +0100228 */
Robert Richterf285f922012-06-20 20:46:36 +0200229 reg = x86_pmu_event_addr(0);
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200230 if (rdmsrl_safe(reg, &val))
231 goto msr_fail;
232 val ^= 0xffffUL;
Robert Richterf285f922012-06-20 20:46:36 +0200233 ret = wrmsrl_safe(reg, val);
234 ret |= rdmsrl_safe(reg, &val_new);
Don Zickus33c6d6a2010-11-22 16:55:23 -0500235 if (ret || val != val_new)
Peter Zijlstra44072042010-12-08 15:56:23 +0100236 goto msr_fail;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500237
Ingo Molnar45daae52011-03-25 10:24:23 +0100238 /*
239 * We still allow the PMU driver to operate:
240 */
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100241 if (bios_fail) {
242 printk(KERN_CONT "Broken BIOS detected, complain to your hardware vendor.\n");
243 printk(KERN_ERR FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n", reg_fail, val_fail);
244 }
Ingo Molnar45daae52011-03-25 10:24:23 +0100245
246 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100247
248msr_fail:
249 printk(KERN_CONT "Broken PMU hardware detected, using software events only.\n");
Peter Zijlstra (Intel)65d71fe2014-10-07 19:07:33 +0200250 printk("%sFailed to access perfctr msr (MSR %x is %Lx)\n",
251 boot_cpu_has(X86_FEATURE_HYPERVISOR) ? KERN_INFO : KERN_ERR,
252 reg, val_new);
Ingo Molnar45daae52011-03-25 10:24:23 +0100253
Peter Zijlstra44072042010-12-08 15:56:23 +0100254 return false;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500255}
256
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200257static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200258{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200259 if (atomic_dec_and_mutex_lock(&active_events, &pmc_reserve_mutex)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200260 release_pmc_hardware();
Peter Zijlstraca037702010-03-02 19:52:12 +0100261 release_ds_buffers();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200262 mutex_unlock(&pmc_reserve_mutex);
263 }
264}
265
Robert Richter85cf9db2009-04-29 12:47:20 +0200266static inline int x86_pmu_initialized(void)
267{
268 return x86_pmu.handle_irq != NULL;
269}
270
Ingo Molnar8326f442009-06-05 20:22:46 +0200271static inline int
Andi Kleene994d7d2011-03-03 10:34:48 +0800272set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
Ingo Molnar8326f442009-06-05 20:22:46 +0200273{
Andi Kleene994d7d2011-03-03 10:34:48 +0800274 struct perf_event_attr *attr = &event->attr;
Ingo Molnar8326f442009-06-05 20:22:46 +0200275 unsigned int cache_type, cache_op, cache_result;
276 u64 config, val;
277
278 config = attr->config;
279
280 cache_type = (config >> 0) & 0xff;
281 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
282 return -EINVAL;
283
284 cache_op = (config >> 8) & 0xff;
285 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
286 return -EINVAL;
287
288 cache_result = (config >> 16) & 0xff;
289 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
290 return -EINVAL;
291
292 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
293
294 if (val == 0)
295 return -ENOENT;
296
297 if (val == -1)
298 return -EINVAL;
299
300 hwc->config |= val;
Andi Kleene994d7d2011-03-03 10:34:48 +0800301 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
302 return x86_pmu_extra_regs(val, event);
Ingo Molnar8326f442009-06-05 20:22:46 +0200303}
304
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300305int x86_setup_perfctr(struct perf_event *event)
Robert Richterc1726f32010-04-13 22:23:11 +0200306{
307 struct perf_event_attr *attr = &event->attr;
308 struct hw_perf_event *hwc = &event->hw;
309 u64 config;
310
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +0100311 if (!is_sampling_event(event)) {
Robert Richterc1726f32010-04-13 22:23:11 +0200312 hwc->sample_period = x86_pmu.max_period;
313 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200314 local64_set(&hwc->period_left, hwc->sample_period);
Robert Richterc1726f32010-04-13 22:23:11 +0200315 }
316
317 if (attr->type == PERF_TYPE_RAW)
Peter Zijlstraed13ec52011-11-14 10:03:25 +0100318 return x86_pmu_extra_regs(event->attr.config, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200319
320 if (attr->type == PERF_TYPE_HW_CACHE)
Andi Kleene994d7d2011-03-03 10:34:48 +0800321 return set_ext_hw_attr(hwc, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200322
323 if (attr->config >= x86_pmu.max_events)
324 return -EINVAL;
325
326 /*
327 * The generic map:
328 */
329 config = x86_pmu.event_map(attr->config);
330
331 if (config == 0)
332 return -ENOENT;
333
334 if (config == -1LL)
335 return -EINVAL;
336
337 /*
338 * Branch tracing:
339 */
Peter Zijlstra18a073a2011-04-26 13:24:33 +0200340 if (attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
341 !attr->freq && hwc->sample_period == 1) {
Robert Richterc1726f32010-04-13 22:23:11 +0200342 /* BTS is not supported by this architecture. */
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200343 if (!x86_pmu.bts_active)
Robert Richterc1726f32010-04-13 22:23:11 +0200344 return -EOPNOTSUPP;
345
346 /* BTS is currently only allowed for user-mode. */
347 if (!attr->exclude_kernel)
348 return -EOPNOTSUPP;
349 }
350
351 hwc->config |= config;
352
353 return 0;
354}
Robert Richter4261e0e2010-04-13 22:23:10 +0200355
Stephane Eranianff3fb512012-02-09 23:20:54 +0100356/*
357 * check that branch_sample_type is compatible with
358 * settings needed for precise_ip > 1 which implies
359 * using the LBR to capture ALL taken branches at the
360 * priv levels of the measurement
361 */
362static inline int precise_br_compat(struct perf_event *event)
363{
364 u64 m = event->attr.branch_sample_type;
365 u64 b = 0;
366
367 /* must capture all branches */
368 if (!(m & PERF_SAMPLE_BRANCH_ANY))
369 return 0;
370
371 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
372
373 if (!event->attr.exclude_user)
374 b |= PERF_SAMPLE_BRANCH_USER;
375
376 if (!event->attr.exclude_kernel)
377 b |= PERF_SAMPLE_BRANCH_KERNEL;
378
379 /*
380 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
381 */
382
383 return m == b;
384}
385
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300386int x86_pmu_hw_config(struct perf_event *event)
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300387{
Peter Zijlstraab608342010-04-08 23:03:20 +0200388 if (event->attr.precise_ip) {
389 int precise = 0;
390
391 /* Support for constant skid */
Peter Zijlstrac93dc842012-06-08 14:50:50 +0200392 if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
Peter Zijlstraab608342010-04-08 23:03:20 +0200393 precise++;
394
Peter Zijlstra5553be22010-10-19 14:38:11 +0200395 /* Support for IP fixup */
Andi Kleen03de8742014-08-07 17:08:54 -0700396 if (x86_pmu.lbr_nr || x86_pmu.intel_cap.pebs_format >= 2)
Peter Zijlstra5553be22010-10-19 14:38:11 +0200397 precise++;
398 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200399
400 if (event->attr.precise_ip > precise)
401 return -EOPNOTSUPP;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100402 /*
403 * check that PEBS LBR correction does not conflict with
404 * whatever the user is asking with attr->branch_sample_type
405 */
Andi Kleen130768b2013-06-17 17:36:47 -0700406 if (event->attr.precise_ip > 1 &&
407 x86_pmu.intel_cap.pebs_format < 2) {
Stephane Eranianff3fb512012-02-09 23:20:54 +0100408 u64 *br_type = &event->attr.branch_sample_type;
409
410 if (has_branch_stack(event)) {
411 if (!precise_br_compat(event))
412 return -EOPNOTSUPP;
413
414 /* branch_sample_type is compatible */
415
416 } else {
417 /*
418 * user did not specify branch_sample_type
419 *
420 * For PEBS fixups, we capture all
421 * the branches at the priv level of the
422 * event.
423 */
424 *br_type = PERF_SAMPLE_BRANCH_ANY;
425
426 if (!event->attr.exclude_user)
427 *br_type |= PERF_SAMPLE_BRANCH_USER;
428
429 if (!event->attr.exclude_kernel)
430 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
431 }
432 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200433 }
434
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300435 /*
436 * Generate PMC IRQs:
437 * (keep 'enabled' bit clear for now)
438 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200439 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300440
441 /*
442 * Count user and OS events unless requested not to
443 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200444 if (!event->attr.exclude_user)
445 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
446 if (!event->attr.exclude_kernel)
447 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
448
449 if (event->attr.type == PERF_TYPE_RAW)
450 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300451
Robert Richter9d0fcba62010-04-13 22:23:12 +0200452 return x86_setup_perfctr(event);
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300453}
454
Ingo Molnaree060942008-12-13 09:00:03 +0100455/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200456 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100457 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200458static int __x86_pmu_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100459{
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200460 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100461
Robert Richter85cf9db2009-04-29 12:47:20 +0200462 if (!x86_pmu_initialized())
463 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100464
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200465 err = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200466 if (!atomic_inc_not_zero(&active_events)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200467 mutex_lock(&pmc_reserve_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200468 if (atomic_read(&active_events) == 0) {
Markus Metzger30dd5682009-07-21 15:56:48 +0200469 if (!reserve_pmc_hardware())
470 err = -EBUSY;
Peter Zijlstraf80c9e32010-10-19 14:50:02 +0200471 else
472 reserve_ds_buffers();
Markus Metzger30dd5682009-07-21 15:56:48 +0200473 }
474 if (!err)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200475 atomic_inc(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200476 mutex_unlock(&pmc_reserve_mutex);
477 }
478 if (err)
479 return err;
480
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200481 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200482
Robert Richter4261e0e2010-04-13 22:23:10 +0200483 event->hw.idx = -1;
484 event->hw.last_cpu = -1;
485 event->hw.last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200486
Stephane Eranianefc9f052011-06-06 16:57:03 +0200487 /* mark unused */
488 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Stephane Eranianb36817e2012-02-09 23:20:53 +0100489 event->hw.branch_reg.idx = EXTRA_REG_NONE;
490
Robert Richter9d0fcba62010-04-13 22:23:12 +0200491 return x86_pmu.hw_config(event);
Robert Richter4261e0e2010-04-13 22:23:10 +0200492}
493
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300494void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530495{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500496 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200497 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100498
Robert Richter948b1bb2010-03-29 18:36:50 +0200499 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100500 u64 val;
501
Robert Richter43f62012009-04-29 16:55:56 +0200502 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200503 continue;
Robert Richter41bf4982011-02-02 17:40:57 +0100504 rdmsrl(x86_pmu_config_addr(idx), val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100505 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200506 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100507 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richter41bf4982011-02-02 17:40:57 +0100508 wrmsrl(x86_pmu_config_addr(idx), val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530509 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530510}
511
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200512static void x86_pmu_disable(struct pmu *pmu)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530513{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500514 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200515
Robert Richter85cf9db2009-04-29 12:47:20 +0200516 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200517 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200518
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100519 if (!cpuc->enabled)
520 return;
521
522 cpuc->n_added = 0;
523 cpuc->enabled = 0;
524 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200525
526 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530527}
Ingo Molnar241771e2008-12-03 10:39:53 +0100528
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300529void x86_pmu_enable_all(int added)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530530{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500531 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530532 int idx;
533
Robert Richter948b1bb2010-03-29 18:36:50 +0200534 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richterd45dd922011-02-02 17:40:56 +0100535 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100536
Robert Richter43f62012009-04-29 16:55:56 +0200537 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200538 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200539
Robert Richterd45dd922011-02-02 17:40:56 +0100540 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530541 }
542}
543
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200544static struct pmu pmu;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200545
546static inline int is_x86_event(struct perf_event *event)
547{
548 return event->pmu == &pmu;
549}
550
Robert Richter1e2ad282011-11-18 12:35:21 +0100551/*
552 * Event scheduler state:
553 *
554 * Assign events iterating over all events and counters, beginning
555 * with events with least weights first. Keep the current iterator
556 * state in struct sched_state.
557 */
558struct sched_state {
559 int weight;
560 int event; /* event index */
561 int counter; /* counter index */
562 int unassigned; /* number of events to be assigned left */
563 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
564};
565
Robert Richterbc1738f2011-11-18 12:35:22 +0100566/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
567#define SCHED_STATES_MAX 2
568
Robert Richter1e2ad282011-11-18 12:35:21 +0100569struct perf_sched {
570 int max_weight;
571 int max_events;
Andrew Hunter43b457802013-05-23 11:07:03 -0700572 struct perf_event **events;
Robert Richter1e2ad282011-11-18 12:35:21 +0100573 struct sched_state state;
Robert Richterbc1738f2011-11-18 12:35:22 +0100574 int saved_states;
575 struct sched_state saved[SCHED_STATES_MAX];
Robert Richter1e2ad282011-11-18 12:35:21 +0100576};
577
578/*
579 * Initialize interator that runs through all events and counters.
580 */
Andrew Hunter43b457802013-05-23 11:07:03 -0700581static void perf_sched_init(struct perf_sched *sched, struct perf_event **events,
Robert Richter1e2ad282011-11-18 12:35:21 +0100582 int num, int wmin, int wmax)
583{
584 int idx;
585
586 memset(sched, 0, sizeof(*sched));
587 sched->max_events = num;
588 sched->max_weight = wmax;
Andrew Hunter43b457802013-05-23 11:07:03 -0700589 sched->events = events;
Robert Richter1e2ad282011-11-18 12:35:21 +0100590
591 for (idx = 0; idx < num; idx++) {
Andrew Hunter43b457802013-05-23 11:07:03 -0700592 if (events[idx]->hw.constraint->weight == wmin)
Robert Richter1e2ad282011-11-18 12:35:21 +0100593 break;
594 }
595
596 sched->state.event = idx; /* start with min weight */
597 sched->state.weight = wmin;
598 sched->state.unassigned = num;
599}
600
Robert Richterbc1738f2011-11-18 12:35:22 +0100601static void perf_sched_save_state(struct perf_sched *sched)
602{
603 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
604 return;
605
606 sched->saved[sched->saved_states] = sched->state;
607 sched->saved_states++;
608}
609
610static bool perf_sched_restore_state(struct perf_sched *sched)
611{
612 if (!sched->saved_states)
613 return false;
614
615 sched->saved_states--;
616 sched->state = sched->saved[sched->saved_states];
617
618 /* continue with next counter: */
619 clear_bit(sched->state.counter++, sched->state.used);
620
621 return true;
622}
623
Robert Richter1e2ad282011-11-18 12:35:21 +0100624/*
625 * Select a counter for the current event to schedule. Return true on
626 * success.
627 */
Robert Richterbc1738f2011-11-18 12:35:22 +0100628static bool __perf_sched_find_counter(struct perf_sched *sched)
Robert Richter1e2ad282011-11-18 12:35:21 +0100629{
630 struct event_constraint *c;
631 int idx;
632
633 if (!sched->state.unassigned)
634 return false;
635
636 if (sched->state.event >= sched->max_events)
637 return false;
638
Andrew Hunter43b457802013-05-23 11:07:03 -0700639 c = sched->events[sched->state.event]->hw.constraint;
Peter Zijlstra4defea82011-11-10 15:15:42 +0100640 /* Prefer fixed purpose counters */
Robert Richter15c7ad52012-06-20 20:46:33 +0200641 if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
642 idx = INTEL_PMC_IDX_FIXED;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700643 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100644 if (!__test_and_set_bit(idx, sched->state.used))
645 goto done;
646 }
647 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100648 /* Grab the first unused counter starting with idx */
649 idx = sched->state.counter;
Robert Richter15c7ad52012-06-20 20:46:33 +0200650 for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
Robert Richter1e2ad282011-11-18 12:35:21 +0100651 if (!__test_and_set_bit(idx, sched->state.used))
Peter Zijlstra4defea82011-11-10 15:15:42 +0100652 goto done;
Robert Richter1e2ad282011-11-18 12:35:21 +0100653 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100654
Peter Zijlstra4defea82011-11-10 15:15:42 +0100655 return false;
656
657done:
658 sched->state.counter = idx;
Robert Richter1e2ad282011-11-18 12:35:21 +0100659
Robert Richterbc1738f2011-11-18 12:35:22 +0100660 if (c->overlap)
661 perf_sched_save_state(sched);
662
663 return true;
664}
665
666static bool perf_sched_find_counter(struct perf_sched *sched)
667{
668 while (!__perf_sched_find_counter(sched)) {
669 if (!perf_sched_restore_state(sched))
670 return false;
671 }
672
Robert Richter1e2ad282011-11-18 12:35:21 +0100673 return true;
674}
675
676/*
677 * Go through all unassigned events and find the next one to schedule.
678 * Take events with the least weight first. Return true on success.
679 */
680static bool perf_sched_next_event(struct perf_sched *sched)
681{
682 struct event_constraint *c;
683
684 if (!sched->state.unassigned || !--sched->state.unassigned)
685 return false;
686
687 do {
688 /* next event */
689 sched->state.event++;
690 if (sched->state.event >= sched->max_events) {
691 /* next weight */
692 sched->state.event = 0;
693 sched->state.weight++;
694 if (sched->state.weight > sched->max_weight)
695 return false;
696 }
Andrew Hunter43b457802013-05-23 11:07:03 -0700697 c = sched->events[sched->state.event]->hw.constraint;
Robert Richter1e2ad282011-11-18 12:35:21 +0100698 } while (c->weight != sched->state.weight);
699
700 sched->state.counter = 0; /* start with first counter */
701
702 return true;
703}
704
705/*
706 * Assign a counter for each event.
707 */
Andrew Hunter43b457802013-05-23 11:07:03 -0700708int perf_assign_events(struct perf_event **events, int n,
Yan, Zheng4b4969b2012-06-15 14:31:30 +0800709 int wmin, int wmax, int *assign)
Robert Richter1e2ad282011-11-18 12:35:21 +0100710{
711 struct perf_sched sched;
712
Andrew Hunter43b457802013-05-23 11:07:03 -0700713 perf_sched_init(&sched, events, n, wmin, wmax);
Robert Richter1e2ad282011-11-18 12:35:21 +0100714
715 do {
716 if (!perf_sched_find_counter(&sched))
717 break; /* failed */
718 if (assign)
719 assign[sched.state.event] = sched.state.counter;
720 } while (perf_sched_next_event(&sched));
721
722 return sched.state.unassigned;
723}
Yan, Zheng4a3dc122014-03-18 16:56:43 +0800724EXPORT_SYMBOL_GPL(perf_assign_events);
Robert Richter1e2ad282011-11-18 12:35:21 +0100725
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300726int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200727{
Andrew Hunter43b457802013-05-23 11:07:03 -0700728 struct event_constraint *c;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200729 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200730 struct perf_event *e;
Robert Richter1e2ad282011-11-18 12:35:21 +0100731 int i, wmin, wmax, num = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200732 struct hw_perf_event *hwc;
733
734 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
735
Robert Richter1e2ad282011-11-18 12:35:21 +0100736 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Andrew Hunter43b457802013-05-23 11:07:03 -0700737 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstrab622d642010-02-01 15:36:30 +0100738 c = x86_pmu.get_event_constraints(cpuc, cpuc->event_list[i]);
Andrew Hunter43b457802013-05-23 11:07:03 -0700739 hwc->constraint = c;
740
Robert Richter1e2ad282011-11-18 12:35:21 +0100741 wmin = min(wmin, c->weight);
742 wmax = max(wmax, c->weight);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200743 }
744
745 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200746 * fastpath, try to reuse previous register
747 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100748 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200749 hwc = &cpuc->event_list[i]->hw;
Andrew Hunter43b457802013-05-23 11:07:03 -0700750 c = hwc->constraint;
Stephane Eranian81130702010-01-21 17:39:01 +0200751
752 /* never assigned */
753 if (hwc->idx == -1)
754 break;
755
756 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100757 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200758 break;
759
760 /* not already used */
761 if (test_bit(hwc->idx, used_mask))
762 break;
763
Peter Zijlstra34538ee2010-03-02 21:16:55 +0100764 __set_bit(hwc->idx, used_mask);
Stephane Eranian81130702010-01-21 17:39:01 +0200765 if (assign)
766 assign[i] = hwc->idx;
767 }
Stephane Eranian81130702010-01-21 17:39:01 +0200768
Robert Richter1e2ad282011-11-18 12:35:21 +0100769 /* slow path */
770 if (i != n)
Andrew Hunter43b457802013-05-23 11:07:03 -0700771 num = perf_assign_events(cpuc->event_list, n, wmin,
772 wmax, assign);
Stephane Eranian81130702010-01-21 17:39:01 +0200773
Stephane Eranian1da53e02010-01-18 10:58:01 +0200774 /*
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200775 * Mark the event as committed, so we do not put_constraint()
776 * in case new events are added and fail scheduling.
777 */
778 if (!num && assign) {
779 for (i = 0; i < n; i++) {
780 e = cpuc->event_list[i];
781 e->hw.flags |= PERF_X86_EVENT_COMMITTED;
782 }
783 }
784 /*
Stephane Eranian1da53e02010-01-18 10:58:01 +0200785 * scheduling failed or is just a simulation,
786 * free resources if necessary
787 */
788 if (!assign || num) {
789 for (i = 0; i < n; i++) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200790 e = cpuc->event_list[i];
791 /*
792 * do not put_constraint() on comitted events,
793 * because they are good to go
794 */
795 if ((e->hw.flags & PERF_X86_EVENT_COMMITTED))
796 continue;
797
Stephane Eranian1da53e02010-01-18 10:58:01 +0200798 if (x86_pmu.put_event_constraints)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200799 x86_pmu.put_event_constraints(cpuc, e);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200800 }
801 }
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100802 return num ? -EINVAL : 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200803}
804
805/*
806 * dogrp: true if must collect siblings events (group)
807 * returns total number of events and error code
808 */
809static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
810{
811 struct perf_event *event;
812 int n, max_count;
813
Robert Richter948b1bb2010-03-29 18:36:50 +0200814 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200815
816 /* current number of events already accepted */
817 n = cpuc->n_events;
818
819 if (is_x86_event(leader)) {
820 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100821 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200822 cpuc->event_list[n] = leader;
823 n++;
824 }
825 if (!dogrp)
826 return n;
827
828 list_for_each_entry(event, &leader->sibling_list, group_entry) {
829 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200830 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200831 continue;
832
833 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100834 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200835
836 cpuc->event_list[n] = event;
837 n++;
838 }
839 return n;
840}
841
Stephane Eranian1da53e02010-01-18 10:58:01 +0200842static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +0200843 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200844{
Stephane Eranian447a1942010-02-01 14:50:01 +0200845 struct hw_perf_event *hwc = &event->hw;
846
847 hwc->idx = cpuc->assign[i];
848 hwc->last_cpu = smp_processor_id();
849 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200850
Robert Richter15c7ad52012-06-20 20:46:33 +0200851 if (hwc->idx == INTEL_PMC_IDX_FIXED_BTS) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200852 hwc->config_base = 0;
853 hwc->event_base = 0;
Robert Richter15c7ad52012-06-20 20:46:33 +0200854 } else if (hwc->idx >= INTEL_PMC_IDX_FIXED) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200855 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
Robert Richter15c7ad52012-06-20 20:46:33 +0200856 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - INTEL_PMC_IDX_FIXED);
857 hwc->event_base_rdpmc = (hwc->idx - INTEL_PMC_IDX_FIXED) | 1<<30;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200858 } else {
Robert Richter73d6e522011-02-02 17:40:59 +0100859 hwc->config_base = x86_pmu_config_addr(hwc->idx);
860 hwc->event_base = x86_pmu_event_addr(hwc->idx);
Jacob Shin0fbdad02013-02-06 11:26:28 -0600861 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200862 }
863}
864
Stephane Eranian447a1942010-02-01 14:50:01 +0200865static inline int match_prev_assignment(struct hw_perf_event *hwc,
866 struct cpu_hw_events *cpuc,
867 int i)
868{
869 return hwc->idx == cpuc->assign[i] &&
870 hwc->last_cpu == smp_processor_id() &&
871 hwc->last_tag == cpuc->tags[i];
872}
873
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200874static void x86_pmu_start(struct perf_event *event, int flags);
Peter Zijlstra2e841872010-01-25 15:58:43 +0100875
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200876static void x86_pmu_enable(struct pmu *pmu)
Ingo Molnaree060942008-12-13 09:00:03 +0100877{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500878 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200879 struct perf_event *event;
880 struct hw_perf_event *hwc;
Peter Zijlstra11164cd2010-03-26 14:08:44 +0100881 int i, added = cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200882
Robert Richter85cf9db2009-04-29 12:47:20 +0200883 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +0100884 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100885
886 if (cpuc->enabled)
887 return;
888
Stephane Eranian1da53e02010-01-18 10:58:01 +0200889 if (cpuc->n_added) {
Peter Zijlstra19925ce2010-03-06 13:20:40 +0100890 int n_running = cpuc->n_events - cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200891 /*
892 * apply assignment obtained either from
893 * hw_perf_group_sched_in() or x86_pmu_enable()
894 *
895 * step1: save events moving to new counters
Stephane Eranian1da53e02010-01-18 10:58:01 +0200896 */
Peter Zijlstra19925ce2010-03-06 13:20:40 +0100897 for (i = 0; i < n_running; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200898 event = cpuc->event_list[i];
899 hwc = &event->hw;
900
Stephane Eranian447a1942010-02-01 14:50:01 +0200901 /*
902 * we can avoid reprogramming counter if:
903 * - assigned same counter as last time
904 * - running on same CPU as last time
905 * - no other event has used the counter since
906 */
907 if (hwc->idx == -1 ||
908 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +0200909 continue;
910
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200911 /*
912 * Ensure we don't accidentally enable a stopped
913 * counter simply because we rescheduled.
914 */
915 if (hwc->state & PERF_HES_STOPPED)
916 hwc->state |= PERF_HES_ARCH;
917
918 x86_pmu_stop(event, PERF_EF_UPDATE);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200919 }
920
Peter Zijlstrac347a2f2014-02-24 12:26:21 +0100921 /*
922 * step2: reprogram moved events into new counters
923 */
Stephane Eranian1da53e02010-01-18 10:58:01 +0200924 for (i = 0; i < cpuc->n_events; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200925 event = cpuc->event_list[i];
926 hwc = &event->hw;
927
Peter Zijlstra45e16a62010-03-11 13:40:30 +0100928 if (!match_prev_assignment(hwc, cpuc, i))
Stephane Eranian447a1942010-02-01 14:50:01 +0200929 x86_assign_hw_event(event, cpuc, i);
Peter Zijlstra45e16a62010-03-11 13:40:30 +0100930 else if (i < n_running)
931 continue;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200932
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200933 if (hwc->state & PERF_HES_ARCH)
934 continue;
935
936 x86_pmu_start(event, PERF_EF_RELOAD);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200937 }
938 cpuc->n_added = 0;
939 perf_events_lapic_init();
940 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100941
942 cpuc->enabled = 1;
943 barrier();
944
Peter Zijlstra11164cd2010-03-26 14:08:44 +0100945 x86_pmu.enable_all(added);
Ingo Molnaree060942008-12-13 09:00:03 +0100946}
Ingo Molnaree060942008-12-13 09:00:03 +0100947
Tejun Heo245b2e72009-06-24 15:13:48 +0900948static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +0100949
Ingo Molnaree060942008-12-13 09:00:03 +0100950/*
951 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200952 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +0100953 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300954int x86_perf_event_set_period(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100955{
Peter Zijlstra07088ed2010-03-02 20:16:01 +0100956 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200957 s64 left = local64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200958 s64 period = hwc->sample_period;
Peter Zijlstra7645a242010-03-08 13:51:31 +0100959 int ret = 0, idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +0100960
Robert Richter15c7ad52012-06-20 20:46:33 +0200961 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +0200962 return 0;
963
Ingo Molnaree060942008-12-13 09:00:03 +0100964 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200965 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +0100966 */
967 if (unlikely(left <= -period)) {
968 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200969 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200970 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200971 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100972 }
973
974 if (unlikely(left <= 0)) {
975 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200976 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200977 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200978 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100979 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200980 /*
Ingo Molnardfc65092009-09-21 11:31:35 +0200981 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200982 */
983 if (unlikely(left < 2))
984 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +0100985
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200986 if (left > x86_pmu.max_period)
987 left = x86_pmu.max_period;
988
Tejun Heo245b2e72009-06-24 15:13:48 +0900989 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +0100990
991 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200992 * The hw event starts counting from this event offset,
Ingo Molnaree060942008-12-13 09:00:03 +0100993 * mark it to be able to extra future deltas:
994 */
Peter Zijlstrae7850592010-05-21 14:43:08 +0200995 local64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +0100996
Robert Richter73d6e522011-02-02 17:40:59 +0100997 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +0400998
999 /*
1000 * Due to erratum on certan cpu we need
1001 * a second write to be sure the register
1002 * is updated properly
1003 */
1004 if (x86_pmu.perfctr_second_write) {
Robert Richter73d6e522011-02-02 17:40:59 +01001005 wrmsrl(hwc->event_base,
Robert Richter948b1bb2010-03-29 18:36:50 +02001006 (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001007 }
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001008
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001009 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001010
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001011 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001012}
1013
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001014void x86_pmu_enable_event(struct perf_event *event)
Robert Richter7c90cc42009-04-29 12:47:18 +02001015{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001016 if (__this_cpu_read(cpu_hw_events.enabled))
Robert Richter31fa58a2010-04-13 22:23:14 +02001017 __x86_pmu_enable_event(&event->hw,
1018 ARCH_PERFMON_EVENTSEL_ENABLE);
Ingo Molnar241771e2008-12-03 10:39:53 +01001019}
1020
Ingo Molnaree060942008-12-13 09:00:03 +01001021/*
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001022 * Add a single event to the PMU.
Stephane Eranian1da53e02010-01-18 10:58:01 +02001023 *
1024 * The event is added to the group of enabled events
1025 * but only if it can be scehduled with existing events.
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001026 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001027static int x86_pmu_add(struct perf_event *event, int flags)
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001028{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001029 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001030 struct hw_perf_event *hwc;
1031 int assign[X86_PMC_IDX_MAX];
1032 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001033
Stephane Eranian1da53e02010-01-18 10:58:01 +02001034 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001035
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001036 perf_pmu_disable(event->pmu);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001037 n0 = cpuc->n_events;
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001038 ret = n = collect_events(cpuc, event, false);
1039 if (ret < 0)
1040 goto out;
Ingo Molnar53b441a2009-05-25 21:41:28 +02001041
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001042 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1043 if (!(flags & PERF_EF_START))
1044 hwc->state |= PERF_HES_ARCH;
1045
Lin Ming4d1c52b2010-04-23 13:56:12 +08001046 /*
1047 * If group events scheduling transaction was started,
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001048 * skip the schedulability test here, it will be performed
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001049 * at commit time (->commit_txn) as a whole.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001050 */
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001051 if (cpuc->group_flag & PERF_EVENT_TXN)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001052 goto done_collect;
Lin Ming4d1c52b2010-04-23 13:56:12 +08001053
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001054 ret = x86_pmu.schedule_events(cpuc, n, assign);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001055 if (ret)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001056 goto out;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001057 /*
1058 * copy new assignment, now we know it is possible
1059 * will be used by hw_perf_enable()
1060 */
1061 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +01001062
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001063done_collect:
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001064 /*
1065 * Commit the collect_events() state. See x86_pmu_del() and
1066 * x86_pmu_*_txn().
1067 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001068 cpuc->n_events = n;
Peter Zijlstra356e1f22010-03-06 13:49:56 +01001069 cpuc->n_added += n - n0;
Stephane Eranian90151c352010-05-25 16:23:10 +02001070 cpuc->n_txn += n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +01001071
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001072 ret = 0;
1073out:
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001074 perf_pmu_enable(event->pmu);
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001075 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001076}
1077
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001078static void x86_pmu_start(struct perf_event *event, int flags)
Stephane Eraniand76a0812010-02-08 17:06:01 +02001079{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001080 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001081 int idx = event->hw.idx;
1082
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001083 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1084 return;
Stephane Eraniand76a0812010-02-08 17:06:01 +02001085
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001086 if (WARN_ON_ONCE(idx == -1))
1087 return;
1088
1089 if (flags & PERF_EF_RELOAD) {
1090 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1091 x86_perf_event_set_period(event);
1092 }
1093
1094 event->hw.state = 0;
1095
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001096 cpuc->events[idx] = event;
1097 __set_bit(idx, cpuc->active_mask);
Robert Richter63e6be62010-09-15 18:20:34 +02001098 __set_bit(idx, cpuc->running);
Peter Zijlstraaff3d912010-03-02 20:32:08 +01001099 x86_pmu.enable(event);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001100 perf_event_update_userpage(event);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001101}
1102
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001103void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001104{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001105 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Peter Zijlstraca037702010-03-02 19:52:12 +01001106 u64 pebs;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001107 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001108 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001109 int cpu, idx;
1110
Robert Richter948b1bb2010-03-29 18:36:50 +02001111 if (!x86_pmu.num_counters)
Ingo Molnar1e125672008-12-09 12:18:18 +01001112 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001113
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001114 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001115
1116 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001117 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001118
Robert Richterfaa28ae2009-04-29 12:47:13 +02001119 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301120 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1121 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1122 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1123 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Peter Zijlstraca037702010-03-02 19:52:12 +01001124 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
Ingo Molnar241771e2008-12-03 10:39:53 +01001125
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301126 pr_info("\n");
1127 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1128 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1129 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1130 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Peter Zijlstraca037702010-03-02 19:52:12 +01001131 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301132 }
Peter Zijlstra7645a242010-03-08 13:51:31 +01001133 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001134
Robert Richter948b1bb2010-03-29 18:36:50 +02001135 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter41bf4982011-02-02 17:40:57 +01001136 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1137 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001138
Tejun Heo245b2e72009-06-24 15:13:48 +09001139 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001140
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301141 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001142 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301143 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001144 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301145 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001146 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001147 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001148 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001149 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1150
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301151 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001152 cpu, idx, pmc_count);
1153 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001154 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001155}
1156
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001157void x86_pmu_stop(struct perf_event *event, int flags)
Ingo Molnar241771e2008-12-03 10:39:53 +01001158{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001159 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001160 struct hw_perf_event *hwc = &event->hw;
Ingo Molnar241771e2008-12-03 10:39:53 +01001161
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001162 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1163 x86_pmu.disable(event);
1164 cpuc->events[hwc->idx] = NULL;
1165 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1166 hwc->state |= PERF_HES_STOPPED;
1167 }
Peter Zijlstra71e2d282010-03-08 17:51:33 +01001168
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001169 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1170 /*
1171 * Drain the remaining delta count out of a event
1172 * that we are disabling:
1173 */
1174 x86_perf_event_update(event);
1175 hwc->state |= PERF_HES_UPTODATE;
1176 }
Peter Zijlstra2e841872010-01-25 15:58:43 +01001177}
1178
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001179static void x86_pmu_del(struct perf_event *event, int flags)
Peter Zijlstra2e841872010-01-25 15:58:43 +01001180{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001181 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001182 int i;
1183
Stephane Eranian90151c352010-05-25 16:23:10 +02001184 /*
Stephane Eranian2f7f73a2013-06-20 18:42:54 +02001185 * event is descheduled
1186 */
1187 event->hw.flags &= ~PERF_X86_EVENT_COMMITTED;
1188
1189 /*
Stephane Eranian90151c352010-05-25 16:23:10 +02001190 * If we're called during a txn, we don't need to do anything.
1191 * The events never got scheduled and ->cancel_txn will truncate
1192 * the event_list.
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001193 *
1194 * XXX assumes any ->del() called during a TXN will only be on
1195 * an event added during that same TXN.
Stephane Eranian90151c352010-05-25 16:23:10 +02001196 */
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001197 if (cpuc->group_flag & PERF_EVENT_TXN)
Stephane Eranian90151c352010-05-25 16:23:10 +02001198 return;
1199
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001200 /*
1201 * Not a TXN, therefore cleanup properly.
1202 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001203 x86_pmu_stop(event, PERF_EF_UPDATE);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001204
Stephane Eranian1da53e02010-01-18 10:58:01 +02001205 for (i = 0; i < cpuc->n_events; i++) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001206 if (event == cpuc->event_list[i])
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001207 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001208 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001209
1210 if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1211 return;
1212
1213 /* If we have a newly added event; make sure to decrease n_added. */
1214 if (i >= cpuc->n_events - cpuc->n_added)
1215 --cpuc->n_added;
1216
1217 if (x86_pmu.put_event_constraints)
1218 x86_pmu.put_event_constraints(cpuc, event);
1219
1220 /* Delete the array entry. */
1221 while (++i < cpuc->n_events)
1222 cpuc->event_list[i-1] = cpuc->event_list[i];
1223 --cpuc->n_events;
1224
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001225 perf_event_update_userpage(event);
Ingo Molnar241771e2008-12-03 10:39:53 +01001226}
1227
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001228int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001229{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001230 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001231 struct cpu_hw_events *cpuc;
1232 struct perf_event *event;
Vince Weaver11d15782009-07-08 17:46:14 -04001233 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001234 u64 val;
1235
Christoph Lameter89cbc762014-08-17 12:30:40 -05001236 cpuc = this_cpu_ptr(&cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001237
Don Zickus2bce5da2011-04-27 06:32:33 -04001238 /*
1239 * Some chipsets need to unmask the LVTPC in a particular spot
1240 * inside the nmi handler. As a result, the unmasking was pushed
1241 * into all the nmi handlers.
1242 *
1243 * This generic handler doesn't seem to have any issues where the
1244 * unmasking occurs so it was left at the top.
1245 */
1246 apic_write(APIC_LVTPC, APIC_DM_NMI);
1247
Robert Richter948b1bb2010-03-29 18:36:50 +02001248 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter63e6be62010-09-15 18:20:34 +02001249 if (!test_bit(idx, cpuc->active_mask)) {
1250 /*
1251 * Though we deactivated the counter some cpus
1252 * might still deliver spurious interrupts still
1253 * in flight. Catch them:
1254 */
1255 if (__test_and_clear_bit(idx, cpuc->running))
1256 handled++;
Robert Richtera29aa8a2009-04-29 12:47:21 +02001257 continue;
Robert Richter63e6be62010-09-15 18:20:34 +02001258 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001259
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001260 event = cpuc->events[idx];
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001261
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001262 val = x86_perf_event_update(event);
Robert Richter948b1bb2010-03-29 18:36:50 +02001263 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001264 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001265
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001266 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001267 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001268 */
Robert Richter4177c422010-09-02 15:07:48 -04001269 handled++;
Robert Richterfd0d0002012-04-02 20:19:08 +02001270 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001271
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001272 if (!x86_perf_event_set_period(event))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001273 continue;
1274
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001275 if (perf_event_overflow(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001276 x86_pmu_stop(event, 0);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001277 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001278
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001279 if (handled)
1280 inc_irq_stat(apic_perf_irqs);
1281
Robert Richtera29aa8a2009-04-29 12:47:21 +02001282 return handled;
1283}
Robert Richter39d81ea2009-04-29 12:47:05 +02001284
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001285void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001286{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001287 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001288 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001289
Ingo Molnar241771e2008-12-03 10:39:53 +01001290 /*
Yong Wangc323d952009-05-29 13:28:35 +08001291 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001292 */
Yong Wangc323d952009-05-29 13:28:35 +08001293 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar241771e2008-12-03 10:39:53 +01001294}
1295
Masami Hiramatsu93266382014-04-17 17:18:14 +09001296static int
Don Zickus9c48f1c2011-09-30 15:06:21 -04001297perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
Ingo Molnar241771e2008-12-03 10:39:53 +01001298{
Dave Hansen14c63f12013-06-21 08:51:36 -07001299 u64 start_clock;
1300 u64 finish_clock;
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001301 int ret;
Dave Hansen14c63f12013-06-21 08:51:36 -07001302
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001303 if (!atomic_read(&active_events))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001304 return NMI_DONE;
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001305
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001306 start_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001307 ret = x86_pmu.handle_irq(regs);
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001308 finish_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001309
1310 perf_sample_event_took(finish_clock - start_clock);
1311
1312 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001313}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001314NOKPROBE_SYMBOL(perf_event_nmi_handler);
Ingo Molnar241771e2008-12-03 10:39:53 +01001315
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001316struct event_constraint emptyconstraint;
1317struct event_constraint unconstrained;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301318
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001319static int
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001320x86_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1321{
1322 unsigned int cpu = (long)hcpu;
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001323 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001324 int ret = NOTIFY_OK;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001325
1326 switch (action & ~CPU_TASKS_FROZEN) {
1327 case CPU_UP_PREPARE:
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001328 cpuc->kfree_on_online = NULL;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001329 if (x86_pmu.cpu_prepare)
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001330 ret = x86_pmu.cpu_prepare(cpu);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001331 break;
1332
1333 case CPU_STARTING:
1334 if (x86_pmu.cpu_starting)
1335 x86_pmu.cpu_starting(cpu);
1336 break;
1337
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001338 case CPU_ONLINE:
1339 kfree(cpuc->kfree_on_online);
1340 break;
1341
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001342 case CPU_DYING:
1343 if (x86_pmu.cpu_dying)
1344 x86_pmu.cpu_dying(cpu);
1345 break;
1346
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001347 case CPU_UP_CANCELED:
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001348 case CPU_DEAD:
1349 if (x86_pmu.cpu_dead)
1350 x86_pmu.cpu_dead(cpu);
1351 break;
1352
1353 default:
1354 break;
1355 }
1356
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001357 return ret;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001358}
1359
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001360static void __init pmu_check_apic(void)
1361{
1362 if (cpu_has_apic)
1363 return;
1364
1365 x86_pmu.apic = 0;
1366 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1367 pr_info("no hardware sampling interrupt available.\n");
Vince Weaverc184c982014-05-16 17:18:07 -04001368
1369 /*
1370 * If we have a PMU initialized but no APIC
1371 * interrupts, we cannot sample hardware
1372 * events (user-space has to fall back and
1373 * sample via a hrtimer based software event):
1374 */
1375 pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1376
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001377}
1378
Jiri Olsa641cc932012-03-15 20:09:14 +01001379static struct attribute_group x86_pmu_format_group = {
1380 .name = "format",
1381 .attrs = NULL,
1382};
1383
Jiri Olsa8300daa2012-10-10 14:53:12 +02001384/*
1385 * Remove all undefined events (x86_pmu.event_map(id) == 0)
1386 * out of events_attr attributes.
1387 */
1388static void __init filter_events(struct attribute **attrs)
1389{
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001390 struct device_attribute *d;
1391 struct perf_pmu_events_attr *pmu_attr;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001392 int i, j;
1393
1394 for (i = 0; attrs[i]; i++) {
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001395 d = (struct device_attribute *)attrs[i];
1396 pmu_attr = container_of(d, struct perf_pmu_events_attr, attr);
1397 /* str trumps id */
1398 if (pmu_attr->event_str)
1399 continue;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001400 if (x86_pmu.event_map(i))
1401 continue;
1402
1403 for (j = i; attrs[j]; j++)
1404 attrs[j] = attrs[j + 1];
1405
1406 /* Check the shifted attr. */
1407 i--;
1408 }
1409}
1410
Andi Kleen1a6461b2013-01-24 16:10:25 +01001411/* Merge two pointer arrays */
1412static __init struct attribute **merge_attr(struct attribute **a, struct attribute **b)
1413{
1414 struct attribute **new;
1415 int j, i;
1416
1417 for (j = 0; a[j]; j++)
1418 ;
1419 for (i = 0; b[i]; i++)
1420 j++;
1421 j++;
1422
1423 new = kmalloc(sizeof(struct attribute *) * j, GFP_KERNEL);
1424 if (!new)
1425 return NULL;
1426
1427 j = 0;
1428 for (i = 0; a[i]; i++)
1429 new[j++] = a[i];
1430 for (i = 0; b[i]; i++)
1431 new[j++] = b[i];
1432 new[j] = NULL;
1433
1434 return new;
1435}
1436
Stephane Eranianf20093e2013-01-24 16:10:32 +01001437ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
Jiri Olsaa4747392012-10-10 14:53:11 +02001438 char *page)
1439{
1440 struct perf_pmu_events_attr *pmu_attr = \
1441 container_of(attr, struct perf_pmu_events_attr, attr);
Jiri Olsaa4747392012-10-10 14:53:11 +02001442 u64 config = x86_pmu.event_map(pmu_attr->id);
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001443
1444 /* string trumps id */
1445 if (pmu_attr->event_str)
1446 return sprintf(page, "%s", pmu_attr->event_str);
1447
Jiri Olsaa4747392012-10-10 14:53:11 +02001448 return x86_pmu.events_sysfs_show(page, config);
1449}
1450
Jiri Olsaa4747392012-10-10 14:53:11 +02001451EVENT_ATTR(cpu-cycles, CPU_CYCLES );
1452EVENT_ATTR(instructions, INSTRUCTIONS );
1453EVENT_ATTR(cache-references, CACHE_REFERENCES );
1454EVENT_ATTR(cache-misses, CACHE_MISSES );
1455EVENT_ATTR(branch-instructions, BRANCH_INSTRUCTIONS );
1456EVENT_ATTR(branch-misses, BRANCH_MISSES );
1457EVENT_ATTR(bus-cycles, BUS_CYCLES );
1458EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND );
1459EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND );
1460EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
1461
1462static struct attribute *empty_attrs;
1463
Peter Huewe95d18aa2012-10-29 21:48:17 +01001464static struct attribute *events_attr[] = {
Jiri Olsaa4747392012-10-10 14:53:11 +02001465 EVENT_PTR(CPU_CYCLES),
1466 EVENT_PTR(INSTRUCTIONS),
1467 EVENT_PTR(CACHE_REFERENCES),
1468 EVENT_PTR(CACHE_MISSES),
1469 EVENT_PTR(BRANCH_INSTRUCTIONS),
1470 EVENT_PTR(BRANCH_MISSES),
1471 EVENT_PTR(BUS_CYCLES),
1472 EVENT_PTR(STALLED_CYCLES_FRONTEND),
1473 EVENT_PTR(STALLED_CYCLES_BACKEND),
1474 EVENT_PTR(REF_CPU_CYCLES),
1475 NULL,
1476};
1477
1478static struct attribute_group x86_pmu_events_group = {
1479 .name = "events",
1480 .attrs = events_attr,
1481};
1482
Jiri Olsa0bf79d42012-10-10 14:53:14 +02001483ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
Jiri Olsa43c032f2012-10-10 14:53:13 +02001484{
Jiri Olsa43c032f2012-10-10 14:53:13 +02001485 u64 umask = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1486 u64 cmask = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1487 bool edge = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1488 bool pc = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1489 bool any = (config & ARCH_PERFMON_EVENTSEL_ANY);
1490 bool inv = (config & ARCH_PERFMON_EVENTSEL_INV);
1491 ssize_t ret;
1492
1493 /*
1494 * We have whole page size to spend and just little data
1495 * to write, so we can safely use sprintf.
1496 */
1497 ret = sprintf(page, "event=0x%02llx", event);
1498
1499 if (umask)
1500 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1501
1502 if (edge)
1503 ret += sprintf(page + ret, ",edge");
1504
1505 if (pc)
1506 ret += sprintf(page + ret, ",pc");
1507
1508 if (any)
1509 ret += sprintf(page + ret, ",any");
1510
1511 if (inv)
1512 ret += sprintf(page + ret, ",inv");
1513
1514 if (cmask)
1515 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1516
1517 ret += sprintf(page + ret, "\n");
1518
1519 return ret;
1520}
1521
Yinghai Ludda99112011-01-21 15:30:01 -08001522static int __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301523{
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001524 struct x86_pmu_quirk *quirk;
Robert Richter72eae042009-04-29 12:47:10 +02001525 int err;
1526
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001527 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001528
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301529 switch (boot_cpu_data.x86_vendor) {
1530 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001531 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301532 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301533 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001534 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301535 break;
Robert Richter41389602009-04-29 12:47:00 +02001536 default:
Ingo Molnar8a3da6c72013-09-28 15:48:48 +02001537 err = -ENOTSUPP;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301538 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001539 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001540 pr_cont("no PMU driver, software events only.\n");
Peter Zijlstra004417a2010-11-25 18:38:29 +01001541 return 0;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001542 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301543
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001544 pmu_check_apic();
1545
Don Zickus33c6d6a2010-11-22 16:55:23 -05001546 /* sanity check that the hardware exists or is emulated */
Peter Zijlstra44072042010-12-08 15:56:23 +01001547 if (!check_hw_exists())
Peter Zijlstra004417a2010-11-25 18:38:29 +01001548 return 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -05001549
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001550 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001551
Peter Zijlstrae97df762014-02-05 20:48:51 +01001552 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1553
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001554 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1555 quirk->func();
Peter Zijlstra3c447802010-03-04 21:49:01 +01001556
Robert Richtera1eac7a2012-06-20 20:46:34 +02001557 if (!x86_pmu.intel_ctrl)
1558 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001559
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001560 perf_events_lapic_init();
Don Zickus9c48f1c2011-09-30 15:06:21 -04001561 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001562
Peter Zijlstra63b14642010-01-22 16:32:17 +01001563 unconstrained = (struct event_constraint)
Robert Richter948b1bb2010-03-29 18:36:50 +02001564 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
Stephane Eranian9fac2cf2013-01-24 16:10:27 +01001565 0, x86_pmu.num_counters, 0, 0);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001566
Jiri Olsa641cc932012-03-15 20:09:14 +01001567 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001568
Stephane Eranianf20093e2013-01-24 16:10:32 +01001569 if (x86_pmu.event_attrs)
1570 x86_pmu_events_group.attrs = x86_pmu.event_attrs;
1571
Jiri Olsaa4747392012-10-10 14:53:11 +02001572 if (!x86_pmu.events_sysfs_show)
1573 x86_pmu_events_group.attrs = &empty_attrs;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001574 else
1575 filter_events(x86_pmu_events_group.attrs);
Jiri Olsaa4747392012-10-10 14:53:11 +02001576
Andi Kleen1a6461b2013-01-24 16:10:25 +01001577 if (x86_pmu.cpu_events) {
1578 struct attribute **tmp;
1579
1580 tmp = merge_attr(x86_pmu_events_group.attrs, x86_pmu.cpu_events);
1581 if (!WARN_ON(!tmp))
1582 x86_pmu_events_group.attrs = tmp;
1583 }
1584
Ingo Molnar57c0c152009-09-21 12:20:38 +02001585 pr_info("... version: %d\n", x86_pmu.version);
Robert Richter948b1bb2010-03-29 18:36:50 +02001586 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1587 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1588 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
Ingo Molnar57c0c152009-09-21 12:20:38 +02001589 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
Robert Richter948b1bb2010-03-29 18:36:50 +02001590 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
Robert Richterd6dc0b42010-03-17 12:49:13 +01001591 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001592
Peter Zijlstra2e80a822010-11-17 23:17:36 +01001593 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001594 perf_cpu_notifier(x86_pmu_notifier);
Peter Zijlstra004417a2010-11-25 18:38:29 +01001595
1596 return 0;
Ingo Molnar241771e2008-12-03 10:39:53 +01001597}
Peter Zijlstra004417a2010-11-25 18:38:29 +01001598early_initcall(init_hw_perf_events);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001599
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001600static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001601{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001602 x86_perf_event_update(event);
Ingo Molnaree060942008-12-13 09:00:03 +01001603}
1604
Lin Ming4d1c52b2010-04-23 13:56:12 +08001605/*
1606 * Start group events scheduling transaction
1607 * Set the flag to make pmu::enable() not perform the
1608 * schedulability test, it will be performed at commit time
1609 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001610static void x86_pmu_start_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001611{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001612 perf_pmu_disable(pmu);
Tejun Heo0a3aee02010-12-18 16:28:55 +01001613 __this_cpu_or(cpu_hw_events.group_flag, PERF_EVENT_TXN);
1614 __this_cpu_write(cpu_hw_events.n_txn, 0);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001615}
1616
1617/*
1618 * Stop group events scheduling transaction
1619 * Clear the flag and pmu::enable() will perform the
1620 * schedulability test.
1621 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001622static void x86_pmu_cancel_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001623{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001624 __this_cpu_and(cpu_hw_events.group_flag, ~PERF_EVENT_TXN);
Stephane Eranian90151c352010-05-25 16:23:10 +02001625 /*
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001626 * Truncate collected array by the number of events added in this
1627 * transaction. See x86_pmu_add() and x86_pmu_*_txn().
Stephane Eranian90151c352010-05-25 16:23:10 +02001628 */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001629 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1630 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001631 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001632}
1633
1634/*
1635 * Commit group events scheduling transaction
1636 * Perform the group schedulability test as a whole
1637 * Return 0 if success
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001638 *
1639 * Does not cancel the transaction on failure; expects the caller to do this.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001640 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001641static int x86_pmu_commit_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001642{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001643 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001644 int assign[X86_PMC_IDX_MAX];
1645 int n, ret;
1646
1647 n = cpuc->n_events;
1648
1649 if (!x86_pmu_initialized())
1650 return -EAGAIN;
1651
1652 ret = x86_pmu.schedule_events(cpuc, n, assign);
1653 if (ret)
1654 return ret;
1655
1656 /*
1657 * copy new assignment, now we know it is possible
1658 * will be used by hw_perf_enable()
1659 */
1660 memcpy(cpuc->assign, assign, n*sizeof(int));
1661
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001662 cpuc->group_flag &= ~PERF_EVENT_TXN;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001663 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001664 return 0;
1665}
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001666/*
1667 * a fake_cpuc is used to validate event groups. Due to
1668 * the extra reg logic, we need to also allocate a fake
1669 * per_core and per_cpu structure. Otherwise, group events
1670 * using extra reg may conflict without the kernel being
1671 * able to catch this when the last event gets added to
1672 * the group.
1673 */
1674static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1675{
1676 kfree(cpuc->shared_regs);
1677 kfree(cpuc);
1678}
1679
1680static struct cpu_hw_events *allocate_fake_cpuc(void)
1681{
1682 struct cpu_hw_events *cpuc;
1683 int cpu = raw_smp_processor_id();
1684
1685 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1686 if (!cpuc)
1687 return ERR_PTR(-ENOMEM);
1688
1689 /* only needed, if we have extra_regs */
1690 if (x86_pmu.extra_regs) {
1691 cpuc->shared_regs = allocate_shared_regs(cpu);
1692 if (!cpuc->shared_regs)
1693 goto error;
1694 }
Peter Zijlstrab430f7c2012-06-05 15:30:31 +02001695 cpuc->is_fake = 1;
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001696 return cpuc;
1697error:
1698 free_fake_cpuc(cpuc);
1699 return ERR_PTR(-ENOMEM);
1700}
Lin Ming4d1c52b2010-04-23 13:56:12 +08001701
Stephane Eranian1da53e02010-01-18 10:58:01 +02001702/*
Peter Zijlstraca037702010-03-02 19:52:12 +01001703 * validate that we can schedule this event
1704 */
1705static int validate_event(struct perf_event *event)
1706{
1707 struct cpu_hw_events *fake_cpuc;
1708 struct event_constraint *c;
1709 int ret = 0;
1710
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001711 fake_cpuc = allocate_fake_cpuc();
1712 if (IS_ERR(fake_cpuc))
1713 return PTR_ERR(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001714
1715 c = x86_pmu.get_event_constraints(fake_cpuc, event);
1716
1717 if (!c || !c->weight)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001718 ret = -EINVAL;
Peter Zijlstraca037702010-03-02 19:52:12 +01001719
1720 if (x86_pmu.put_event_constraints)
1721 x86_pmu.put_event_constraints(fake_cpuc, event);
1722
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001723 free_fake_cpuc(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001724
1725 return ret;
1726}
1727
1728/*
Stephane Eranian1da53e02010-01-18 10:58:01 +02001729 * validate a single event group
1730 *
1731 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01001732 * - check events are compatible which each other
1733 * - events do not compete for the same counter
1734 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001735 *
1736 * validation ensures the group can be loaded onto the
1737 * PMU if it was the only group available.
1738 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001739static int validate_group(struct perf_event *event)
1740{
Stephane Eranian1da53e02010-01-18 10:58:01 +02001741 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01001742 struct cpu_hw_events *fake_cpuc;
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001743 int ret = -EINVAL, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001744
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001745 fake_cpuc = allocate_fake_cpuc();
1746 if (IS_ERR(fake_cpuc))
1747 return PTR_ERR(fake_cpuc);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001748 /*
1749 * the event is not yet connected with its
1750 * siblings therefore we must first collect
1751 * existing siblings, then add the new event
1752 * before we can simulate the scheduling
1753 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01001754 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001755 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001756 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001757
Peter Zijlstra502568d2010-01-22 14:35:46 +01001758 fake_cpuc->n_events = n;
1759 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001760 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001761 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001762
Peter Zijlstra502568d2010-01-22 14:35:46 +01001763 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001764
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001765 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001766
Peter Zijlstra502568d2010-01-22 14:35:46 +01001767out:
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001768 free_fake_cpuc(fake_cpuc);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001769 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001770}
1771
Yinghai Ludda99112011-01-21 15:30:01 -08001772static int x86_pmu_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01001773{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001774 struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001775 int err;
1776
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001777 switch (event->attr.type) {
1778 case PERF_TYPE_RAW:
1779 case PERF_TYPE_HARDWARE:
1780 case PERF_TYPE_HW_CACHE:
1781 break;
1782
1783 default:
1784 return -ENOENT;
1785 }
1786
1787 err = __x86_pmu_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001788 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02001789 /*
1790 * we temporarily connect event to its pmu
1791 * such that validate_group() can classify
1792 * it as an x86 event using is_x86_event()
1793 */
1794 tmp = event->pmu;
1795 event->pmu = &pmu;
1796
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001797 if (event->group_leader != event)
1798 err = validate_group(event);
Peter Zijlstraca037702010-03-02 19:52:12 +01001799 else
1800 err = validate_event(event);
Stephane Eranian81130702010-01-21 17:39:01 +02001801
1802 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001803 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001804 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001805 if (event->destroy)
1806 event->destroy(event);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001807 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01001808
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001809 if (ACCESS_ONCE(x86_pmu.attr_rdpmc))
1810 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
1811
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001812 return err;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001813}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001814
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001815static void refresh_pce(void *ignored)
1816{
1817 if (current->mm)
1818 load_mm_cr4(current->mm);
1819}
1820
1821static void x86_pmu_event_mapped(struct perf_event *event)
1822{
1823 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
1824 return;
1825
1826 if (atomic_inc_return(&current->mm->context.perf_rdpmc_allowed) == 1)
1827 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
1828}
1829
1830static void x86_pmu_event_unmapped(struct perf_event *event)
1831{
1832 if (!current->mm)
1833 return;
1834
1835 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
1836 return;
1837
1838 if (atomic_dec_and_test(&current->mm->context.perf_rdpmc_allowed))
1839 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
1840}
1841
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001842static int x86_pmu_event_idx(struct perf_event *event)
1843{
1844 int idx = event->hw.idx;
1845
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001846 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
Peter Zijlstrac7206202012-03-22 17:26:36 +01001847 return 0;
1848
Robert Richter15c7ad52012-06-20 20:46:33 +02001849 if (x86_pmu.num_counters_fixed && idx >= INTEL_PMC_IDX_FIXED) {
1850 idx -= INTEL_PMC_IDX_FIXED;
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001851 idx |= 1 << 30;
1852 }
1853
1854 return idx + 1;
1855}
1856
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001857static ssize_t get_attr_rdpmc(struct device *cdev,
1858 struct device_attribute *attr,
1859 char *buf)
1860{
1861 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
1862}
1863
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001864static ssize_t set_attr_rdpmc(struct device *cdev,
1865 struct device_attribute *attr,
1866 const char *buf, size_t count)
1867{
Shuah Khane2b297f2012-06-10 21:13:41 -06001868 unsigned long val;
1869 ssize_t ret;
1870
1871 ret = kstrtoul(buf, 0, &val);
1872 if (ret)
1873 return ret;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001874
Andy Lutomirskia6673422014-10-24 15:58:13 -07001875 if (val > 2)
1876 return -EINVAL;
1877
Peter Zijlstrae97df762014-02-05 20:48:51 +01001878 if (x86_pmu.attr_rdpmc_broken)
1879 return -ENOTSUPP;
1880
Andy Lutomirskia6673422014-10-24 15:58:13 -07001881 if ((val == 2) != (x86_pmu.attr_rdpmc == 2)) {
1882 /*
1883 * Changing into or out of always available, aka
1884 * perf-event-bypassing mode. This path is extremely slow,
1885 * but only root can trigger it, so it's okay.
1886 */
1887 if (val == 2)
1888 static_key_slow_inc(&rdpmc_always_available);
1889 else
1890 static_key_slow_dec(&rdpmc_always_available);
1891 on_each_cpu(refresh_pce, NULL, 1);
1892 }
1893
1894 x86_pmu.attr_rdpmc = val;
1895
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001896 return count;
1897}
1898
1899static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
1900
1901static struct attribute *x86_pmu_attrs[] = {
1902 &dev_attr_rdpmc.attr,
1903 NULL,
1904};
1905
1906static struct attribute_group x86_pmu_attr_group = {
1907 .attrs = x86_pmu_attrs,
1908};
1909
1910static const struct attribute_group *x86_pmu_attr_groups[] = {
1911 &x86_pmu_attr_group,
Jiri Olsa641cc932012-03-15 20:09:14 +01001912 &x86_pmu_format_group,
Jiri Olsaa4747392012-10-10 14:53:11 +02001913 &x86_pmu_events_group,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001914 NULL,
1915};
1916
Stephane Eraniand010b332012-02-09 23:21:00 +01001917static void x86_pmu_flush_branch_stack(void)
1918{
1919 if (x86_pmu.flush_branch_stack)
1920 x86_pmu.flush_branch_stack();
1921}
1922
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001923void perf_check_microcode(void)
1924{
1925 if (x86_pmu.check_microcode)
1926 x86_pmu.check_microcode();
1927}
1928EXPORT_SYMBOL_GPL(perf_check_microcode);
1929
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001930static struct pmu pmu = {
Stephane Eraniand010b332012-02-09 23:21:00 +01001931 .pmu_enable = x86_pmu_enable,
1932 .pmu_disable = x86_pmu_disable,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001933
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001934 .attr_groups = x86_pmu_attr_groups,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001935
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001936 .event_init = x86_pmu_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001937
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001938 .event_mapped = x86_pmu_event_mapped,
1939 .event_unmapped = x86_pmu_event_unmapped,
1940
Stephane Eraniand010b332012-02-09 23:21:00 +01001941 .add = x86_pmu_add,
1942 .del = x86_pmu_del,
1943 .start = x86_pmu_start,
1944 .stop = x86_pmu_stop,
1945 .read = x86_pmu_read,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001946
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001947 .start_txn = x86_pmu_start_txn,
1948 .cancel_txn = x86_pmu_cancel_txn,
1949 .commit_txn = x86_pmu_commit_txn,
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001950
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001951 .event_idx = x86_pmu_event_idx,
Stephane Eraniand010b332012-02-09 23:21:00 +01001952 .flush_branch_stack = x86_pmu_flush_branch_stack,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001953};
1954
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07001955void arch_perf_update_userpage(struct perf_event *event,
1956 struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001957{
Peter Zijlstra20d1c862013-11-29 15:40:29 +01001958 struct cyc2ns_data *data;
1959
Peter Zijlstrafa7315872013-09-19 10:16:42 +02001960 userpg->cap_user_time = 0;
1961 userpg->cap_user_time_zero = 0;
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07001962 userpg->cap_user_rdpmc =
1963 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
Peter Zijlstrac7206202012-03-22 17:26:36 +01001964 userpg->pmc_width = x86_pmu.cntval_bits;
1965
Peter Zijlstra35af99e2013-11-28 19:38:42 +01001966 if (!sched_clock_stable())
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001967 return;
1968
Peter Zijlstra20d1c862013-11-29 15:40:29 +01001969 data = cyc2ns_read_begin();
1970
Peter Zijlstrafa7315872013-09-19 10:16:42 +02001971 userpg->cap_user_time = 1;
Peter Zijlstra20d1c862013-11-29 15:40:29 +01001972 userpg->time_mult = data->cyc2ns_mul;
1973 userpg->time_shift = data->cyc2ns_shift;
1974 userpg->time_offset = data->cyc2ns_offset - now;
Adrian Hunterc73deb62013-06-28 16:22:18 +03001975
Peter Zijlstrad8b11a02013-10-03 16:00:14 +02001976 userpg->cap_user_time_zero = 1;
Peter Zijlstra20d1c862013-11-29 15:40:29 +01001977 userpg->time_zero = data->cyc2ns_offset;
1978
1979 cyc2ns_read_end(data);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001980}
1981
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001982/*
1983 * callchain support
1984 */
1985
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001986static int backtrace_stack(void *data, char *name)
1987{
Ingo Molnar038e8362009-06-15 09:57:59 +02001988 return 0;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001989}
1990
1991static void backtrace_address(void *data, unsigned long addr, int reliable)
1992{
1993 struct perf_callchain_entry *entry = data;
1994
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001995 perf_callchain_store(entry, addr);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001996}
1997
1998static const struct stacktrace_ops backtrace_ops = {
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001999 .stack = backtrace_stack,
2000 .address = backtrace_address,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +01002001 .walk_stack = print_context_stack_bp,
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002002};
2003
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02002004void
2005perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002006{
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002007 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2008 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002009 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002010 }
2011
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002012 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002013
Namhyung Kime8e999cf2011-03-18 11:40:06 +09002014 dump_trace(NULL, regs, NULL, 0, &backtrace_ops, entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002015}
2016
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002017static inline int
2018valid_user_frame(const void __user *fp, unsigned long size)
2019{
2020 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2021}
2022
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002023static unsigned long get_segment_base(unsigned int segment)
2024{
2025 struct desc_struct *desc;
2026 int idx = segment >> 3;
2027
2028 if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
2029 if (idx > LDT_ENTRIES)
2030 return 0;
2031
2032 if (idx > current->active_mm->context.size)
2033 return 0;
2034
2035 desc = current->active_mm->context.ldt;
2036 } else {
2037 if (idx > GDT_ENTRIES)
2038 return 0;
2039
Christoph Lameter89cbc762014-08-17 12:30:40 -05002040 desc = raw_cpu_ptr(gdt_page.gdt);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002041 }
2042
2043 return get_desc_base(desc + idx);
2044}
2045
Torok Edwin257ef9d2010-03-17 12:07:16 +02002046#ifdef CONFIG_COMPAT
H. Peter Anvind1a797f2012-02-19 10:06:34 -08002047
2048#include <asm/compat.h>
2049
Torok Edwin257ef9d2010-03-17 12:07:16 +02002050static inline int
2051perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002052{
Torok Edwin257ef9d2010-03-17 12:07:16 +02002053 /* 32-bit process in 64-bit kernel. */
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002054 unsigned long ss_base, cs_base;
Torok Edwin257ef9d2010-03-17 12:07:16 +02002055 struct stack_frame_ia32 frame;
2056 const void __user *fp;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002057
Torok Edwin257ef9d2010-03-17 12:07:16 +02002058 if (!test_thread_flag(TIF_IA32))
2059 return 0;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002060
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002061 cs_base = get_segment_base(regs->cs);
2062 ss_base = get_segment_base(regs->ss);
2063
2064 fp = compat_ptr(ss_base + regs->bp);
Torok Edwin257ef9d2010-03-17 12:07:16 +02002065 while (entry->nr < PERF_MAX_STACK_DEPTH) {
2066 unsigned long bytes;
2067 frame.next_frame = 0;
2068 frame.return_address = 0;
2069
2070 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
Peter Zijlstra0a196842013-10-30 21:16:22 +01002071 if (bytes != 0)
Torok Edwin257ef9d2010-03-17 12:07:16 +02002072 break;
2073
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002074 if (!valid_user_frame(fp, sizeof(frame)))
2075 break;
2076
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002077 perf_callchain_store(entry, cs_base + frame.return_address);
2078 fp = compat_ptr(ss_base + frame.next_frame);
Torok Edwin257ef9d2010-03-17 12:07:16 +02002079 }
2080 return 1;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002081}
Torok Edwin257ef9d2010-03-17 12:07:16 +02002082#else
2083static inline int
2084perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
2085{
2086 return 0;
2087}
2088#endif
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002089
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02002090void
2091perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002092{
2093 struct stack_frame frame;
2094 const void __user *fp;
2095
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002096 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2097 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002098 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002099 }
Ingo Molnar5a6cec32009-05-29 11:25:09 +02002100
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002101 /*
2102 * We don't know what to do with VM86 stacks.. ignore them for now.
2103 */
2104 if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2105 return;
2106
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002107 fp = (void __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002108
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002109 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002110
Andrey Vagin20afc602011-08-30 12:32:36 +04002111 if (!current->mm)
2112 return;
2113
Torok Edwin257ef9d2010-03-17 12:07:16 +02002114 if (perf_callchain_user32(regs, entry))
2115 return;
2116
Peter Zijlstraf9188e02009-06-18 22:20:52 +02002117 while (entry->nr < PERF_MAX_STACK_DEPTH) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02002118 unsigned long bytes;
Ingo Molnar038e8362009-06-15 09:57:59 +02002119 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002120 frame.return_address = 0;
2121
Torok Edwin257ef9d2010-03-17 12:07:16 +02002122 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
Peter Zijlstra0a196842013-10-30 21:16:22 +01002123 if (bytes != 0)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002124 break;
2125
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002126 if (!valid_user_frame(fp, sizeof(frame)))
2127 break;
2128
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002129 perf_callchain_store(entry, frame.return_address);
Ingo Molnar038e8362009-06-15 09:57:59 +02002130 fp = frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002131 }
2132}
2133
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002134/*
2135 * Deal with code segment offsets for the various execution modes:
2136 *
2137 * VM86 - the good olde 16 bit days, where the linear address is
2138 * 20 bits and we use regs->ip + 0x10 * regs->cs.
2139 *
2140 * IA32 - Where we need to look at GDT/LDT segment descriptor tables
2141 * to figure out what the 32bit base address is.
2142 *
2143 * X32 - has TIF_X32 set, but is running in x86_64
2144 *
2145 * X86_64 - CS,DS,SS,ES are all zero based.
2146 */
2147static unsigned long code_segment_base(struct pt_regs *regs)
2148{
2149 /*
2150 * If we are in VM86 mode, add the segment offset to convert to a
2151 * linear address.
2152 */
2153 if (regs->flags & X86_VM_MASK)
2154 return 0x10 * regs->cs;
2155
2156 /*
2157 * For IA32 we look at the GDT/LDT segment base to convert the
2158 * effective IP to a linear address.
2159 */
2160#ifdef CONFIG_X86_32
2161 if (user_mode(regs) && regs->cs != __USER_CS)
2162 return get_segment_base(regs->cs);
2163#else
2164 if (test_thread_flag(TIF_IA32)) {
2165 if (user_mode(regs) && regs->cs != __USER32_CS)
2166 return get_segment_base(regs->cs);
2167 }
2168#endif
2169 return 0;
2170}
2171
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002172unsigned long perf_instruction_pointer(struct pt_regs *regs)
2173{
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002174 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002175 return perf_guest_cbs->get_guest_ip();
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002176
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002177 return regs->ip + code_segment_base(regs);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002178}
2179
2180unsigned long perf_misc_flags(struct pt_regs *regs)
2181{
2182 int misc = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002183
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002184 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002185 if (perf_guest_cbs->is_user_mode())
2186 misc |= PERF_RECORD_MISC_GUEST_USER;
2187 else
2188 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2189 } else {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002190 if (user_mode(regs))
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002191 misc |= PERF_RECORD_MISC_USER;
2192 else
2193 misc |= PERF_RECORD_MISC_KERNEL;
2194 }
2195
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002196 if (regs->flags & PERF_EFLAGS_EXACT)
Peter Zijlstraab608342010-04-08 23:03:20 +02002197 misc |= PERF_RECORD_MISC_EXACT_IP;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002198
2199 return misc;
2200}
Gleb Natapovb3d94682011-11-10 14:57:27 +02002201
2202void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2203{
2204 cap->version = x86_pmu.version;
2205 cap->num_counters_gp = x86_pmu.num_counters;
2206 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2207 cap->bit_width_gp = x86_pmu.cntval_bits;
2208 cap->bit_width_fixed = x86_pmu.cntval_bits;
2209 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
2210 cap->events_mask_len = x86_pmu.events_mask_len;
2211}
2212EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);