blob: bf0f01aea99449e53a87f092a84b3263263da911 [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>
Peter Zijlstrae3f35412011-11-21 11:43:53 +010034#include <asm/timer.h>
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +020035#include <asm/desc.h>
36#include <asm/ldt.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010037
Kevin Winchesterde0428a2011-08-30 20:41:05 -030038#include "perf_event.h"
39
Kevin Winchesterde0428a2011-08-30 20:41:05 -030040struct x86_pmu x86_pmu __read_mostly;
Stephane Eranianefc9f052011-06-06 16:57:03 +020041
Kevin Winchesterde0428a2011-08-30 20:41:05 -030042DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +010043 .enabled = 1,
44};
Ingo Molnar241771e2008-12-03 10:39:53 +010045
Kevin Winchesterde0428a2011-08-30 20:41:05 -030046u64 __read_mostly hw_cache_event_ids
Ingo Molnar8326f442009-06-05 20:22:46 +020047 [PERF_COUNT_HW_CACHE_MAX]
48 [PERF_COUNT_HW_CACHE_OP_MAX]
49 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -030050u64 __read_mostly hw_cache_extra_regs
Andi Kleene994d7d2011-03-03 10:34:48 +080051 [PERF_COUNT_HW_CACHE_MAX]
52 [PERF_COUNT_HW_CACHE_OP_MAX]
53 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Ingo Molnar8326f442009-06-05 20:22:46 +020054
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +053055/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020056 * Propagate event elapsed time into the generic event.
57 * Can only be executed on the CPU where the event is active.
Ingo Molnaree060942008-12-13 09:00:03 +010058 * Returns the delta events processed.
59 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -030060u64 x86_perf_event_update(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +010061{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010062 struct hw_perf_event *hwc = &event->hw;
Robert Richter948b1bb2010-03-29 18:36:50 +020063 int shift = 64 - x86_pmu.cntval_bits;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020064 u64 prev_raw_count, new_raw_count;
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010065 int idx = hwc->idx;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020066 s64 delta;
Ingo Molnaree060942008-12-13 09:00:03 +010067
Robert Richter15c7ad52012-06-20 20:46:33 +020068 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +020069 return 0;
70
Ingo Molnaree060942008-12-13 09:00:03 +010071 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020072 * Careful: an NMI might modify the previous event value.
Ingo Molnaree060942008-12-13 09:00:03 +010073 *
74 * Our tactic to handle this is to first atomically read and
75 * exchange a new raw count - then add that new-prev delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020076 * count to the generic event atomically:
Ingo Molnaree060942008-12-13 09:00:03 +010077 */
78again:
Peter Zijlstrae7850592010-05-21 14:43:08 +020079 prev_raw_count = local64_read(&hwc->prev_count);
Vince Weaverc48b6052012-03-01 17:28:14 -050080 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
Ingo Molnaree060942008-12-13 09:00:03 +010081
Peter Zijlstrae7850592010-05-21 14:43:08 +020082 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Ingo Molnaree060942008-12-13 09:00:03 +010083 new_raw_count) != prev_raw_count)
84 goto again;
85
86 /*
87 * Now we have the new raw value and have updated the prev
88 * timestamp already. We can now calculate the elapsed delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020089 * (event-)time and add that to the generic event.
Ingo Molnaree060942008-12-13 09:00:03 +010090 *
91 * Careful, not all hw sign-extends above the physical width
Peter Zijlstraec3232b2009-05-13 09:45:19 +020092 * of the count.
Ingo Molnaree060942008-12-13 09:00:03 +010093 */
Peter Zijlstraec3232b2009-05-13 09:45:19 +020094 delta = (new_raw_count << shift) - (prev_raw_count << shift);
95 delta >>= shift;
Ingo Molnaree060942008-12-13 09:00:03 +010096
Peter Zijlstrae7850592010-05-21 14:43:08 +020097 local64_add(delta, &event->count);
98 local64_sub(delta, &hwc->period_left);
Robert Richter4b7bfd02009-04-29 12:47:22 +020099
100 return new_raw_count;
Ingo Molnaree060942008-12-13 09:00:03 +0100101}
102
Andi Kleena7e3ed12011-03-03 10:34:47 +0800103/*
104 * Find and validate any extra registers to set up.
105 */
106static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
107{
Stephane Eranianefc9f052011-06-06 16:57:03 +0200108 struct hw_perf_event_extra *reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800109 struct extra_reg *er;
110
Stephane Eranianefc9f052011-06-06 16:57:03 +0200111 reg = &event->hw.extra_reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800112
113 if (!x86_pmu.extra_regs)
114 return 0;
115
116 for (er = x86_pmu.extra_regs; er->msr; er++) {
117 if (er->event != (config & er->config_mask))
118 continue;
119 if (event->attr.config1 & ~er->valid_mask)
120 return -EINVAL;
Stephane Eranianefc9f052011-06-06 16:57:03 +0200121
122 reg->idx = er->idx;
123 reg->config = event->attr.config1;
124 reg->reg = er->msr;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800125 break;
126 }
127 return 0;
128}
129
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200130static atomic_t active_events;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200131static DEFINE_MUTEX(pmc_reserve_mutex);
132
Robert Richterb27ea292010-03-17 12:49:10 +0100133#ifdef CONFIG_X86_LOCAL_APIC
134
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200135static bool reserve_pmc_hardware(void)
136{
137 int i;
138
Robert Richter948b1bb2010-03-29 18:36:50 +0200139 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100140 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200141 goto perfctr_fail;
142 }
143
Robert Richter948b1bb2010-03-29 18:36:50 +0200144 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100145 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200146 goto eventsel_fail;
147 }
148
149 return true;
150
151eventsel_fail:
152 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100153 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200154
Robert Richter948b1bb2010-03-29 18:36:50 +0200155 i = x86_pmu.num_counters;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200156
157perfctr_fail:
158 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100159 release_perfctr_nmi(x86_pmu_event_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200160
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200161 return false;
162}
163
164static void release_pmc_hardware(void)
165{
166 int i;
167
Robert Richter948b1bb2010-03-29 18:36:50 +0200168 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100169 release_perfctr_nmi(x86_pmu_event_addr(i));
170 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200171 }
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200172}
173
Robert Richterb27ea292010-03-17 12:49:10 +0100174#else
175
176static bool reserve_pmc_hardware(void) { return true; }
177static void release_pmc_hardware(void) {}
178
179#endif
180
Don Zickus33c6d6a2010-11-22 16:55:23 -0500181static bool check_hw_exists(void)
182{
Robert Richterf285f922012-06-20 20:46:36 +0200183 u64 val, val_new = ~0;
Peter Zijlstra44072042010-12-08 15:56:23 +0100184 int i, reg, ret = 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500185
Peter Zijlstra44072042010-12-08 15:56:23 +0100186 /*
187 * Check to see if the BIOS enabled any of the counters, if so
188 * complain and bail.
189 */
190 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100191 reg = x86_pmu_config_addr(i);
Peter Zijlstra44072042010-12-08 15:56:23 +0100192 ret = rdmsrl_safe(reg, &val);
193 if (ret)
194 goto msr_fail;
195 if (val & ARCH_PERFMON_EVENTSEL_ENABLE)
196 goto bios_fail;
197 }
198
199 if (x86_pmu.num_counters_fixed) {
200 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
201 ret = rdmsrl_safe(reg, &val);
202 if (ret)
203 goto msr_fail;
204 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
205 if (val & (0x03 << i*4))
206 goto bios_fail;
207 }
208 }
209
210 /*
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200211 * Read the current value, change it and read it back to see if it
212 * matches, this is needed to detect certain hardware emulators
213 * (qemu/kvm) that don't trap on the MSR access and always return 0s.
Peter Zijlstra44072042010-12-08 15:56:23 +0100214 */
Robert Richterf285f922012-06-20 20:46:36 +0200215 reg = x86_pmu_event_addr(0);
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200216 if (rdmsrl_safe(reg, &val))
217 goto msr_fail;
218 val ^= 0xffffUL;
Robert Richterf285f922012-06-20 20:46:36 +0200219 ret = wrmsrl_safe(reg, val);
220 ret |= rdmsrl_safe(reg, &val_new);
Don Zickus33c6d6a2010-11-22 16:55:23 -0500221 if (ret || val != val_new)
Peter Zijlstra44072042010-12-08 15:56:23 +0100222 goto msr_fail;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500223
224 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100225
226bios_fail:
Ingo Molnar45daae52011-03-25 10:24:23 +0100227 /*
228 * We still allow the PMU driver to operate:
229 */
230 printk(KERN_CONT "Broken BIOS detected, complain to your hardware vendor.\n");
Peter Zijlstra44072042010-12-08 15:56:23 +0100231 printk(KERN_ERR FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n", reg, val);
Ingo Molnar45daae52011-03-25 10:24:23 +0100232
233 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100234
235msr_fail:
236 printk(KERN_CONT "Broken PMU hardware detected, using software events only.\n");
Robert Richterf285f922012-06-20 20:46:36 +0200237 printk(KERN_ERR "Failed to access perfctr msr (MSR %x is %Lx)\n", reg, val_new);
Ingo Molnar45daae52011-03-25 10:24:23 +0100238
Peter Zijlstra44072042010-12-08 15:56:23 +0100239 return false;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500240}
241
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200242static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200243{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200244 if (atomic_dec_and_mutex_lock(&active_events, &pmc_reserve_mutex)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200245 release_pmc_hardware();
Peter Zijlstraca037702010-03-02 19:52:12 +0100246 release_ds_buffers();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200247 mutex_unlock(&pmc_reserve_mutex);
248 }
249}
250
Robert Richter85cf9db2009-04-29 12:47:20 +0200251static inline int x86_pmu_initialized(void)
252{
253 return x86_pmu.handle_irq != NULL;
254}
255
Ingo Molnar8326f442009-06-05 20:22:46 +0200256static inline int
Andi Kleene994d7d2011-03-03 10:34:48 +0800257set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
Ingo Molnar8326f442009-06-05 20:22:46 +0200258{
Andi Kleene994d7d2011-03-03 10:34:48 +0800259 struct perf_event_attr *attr = &event->attr;
Ingo Molnar8326f442009-06-05 20:22:46 +0200260 unsigned int cache_type, cache_op, cache_result;
261 u64 config, val;
262
263 config = attr->config;
264
265 cache_type = (config >> 0) & 0xff;
266 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
267 return -EINVAL;
268
269 cache_op = (config >> 8) & 0xff;
270 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
271 return -EINVAL;
272
273 cache_result = (config >> 16) & 0xff;
274 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
275 return -EINVAL;
276
277 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
278
279 if (val == 0)
280 return -ENOENT;
281
282 if (val == -1)
283 return -EINVAL;
284
285 hwc->config |= val;
Andi Kleene994d7d2011-03-03 10:34:48 +0800286 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
287 return x86_pmu_extra_regs(val, event);
Ingo Molnar8326f442009-06-05 20:22:46 +0200288}
289
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300290int x86_setup_perfctr(struct perf_event *event)
Robert Richterc1726f32010-04-13 22:23:11 +0200291{
292 struct perf_event_attr *attr = &event->attr;
293 struct hw_perf_event *hwc = &event->hw;
294 u64 config;
295
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +0100296 if (!is_sampling_event(event)) {
Robert Richterc1726f32010-04-13 22:23:11 +0200297 hwc->sample_period = x86_pmu.max_period;
298 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200299 local64_set(&hwc->period_left, hwc->sample_period);
Robert Richterc1726f32010-04-13 22:23:11 +0200300 } else {
301 /*
302 * If we have a PMU initialized but no APIC
303 * interrupts, we cannot sample hardware
304 * events (user-space has to fall back and
305 * sample via a hrtimer based software event):
306 */
307 if (!x86_pmu.apic)
308 return -EOPNOTSUPP;
309 }
310
311 if (attr->type == PERF_TYPE_RAW)
Peter Zijlstraed13ec52011-11-14 10:03:25 +0100312 return x86_pmu_extra_regs(event->attr.config, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200313
314 if (attr->type == PERF_TYPE_HW_CACHE)
Andi Kleene994d7d2011-03-03 10:34:48 +0800315 return set_ext_hw_attr(hwc, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200316
317 if (attr->config >= x86_pmu.max_events)
318 return -EINVAL;
319
320 /*
321 * The generic map:
322 */
323 config = x86_pmu.event_map(attr->config);
324
325 if (config == 0)
326 return -ENOENT;
327
328 if (config == -1LL)
329 return -EINVAL;
330
331 /*
332 * Branch tracing:
333 */
Peter Zijlstra18a073a2011-04-26 13:24:33 +0200334 if (attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
335 !attr->freq && hwc->sample_period == 1) {
Robert Richterc1726f32010-04-13 22:23:11 +0200336 /* BTS is not supported by this architecture. */
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200337 if (!x86_pmu.bts_active)
Robert Richterc1726f32010-04-13 22:23:11 +0200338 return -EOPNOTSUPP;
339
340 /* BTS is currently only allowed for user-mode. */
341 if (!attr->exclude_kernel)
342 return -EOPNOTSUPP;
343 }
344
345 hwc->config |= config;
346
347 return 0;
348}
Robert Richter4261e0e2010-04-13 22:23:10 +0200349
Stephane Eranianff3fb512012-02-09 23:20:54 +0100350/*
351 * check that branch_sample_type is compatible with
352 * settings needed for precise_ip > 1 which implies
353 * using the LBR to capture ALL taken branches at the
354 * priv levels of the measurement
355 */
356static inline int precise_br_compat(struct perf_event *event)
357{
358 u64 m = event->attr.branch_sample_type;
359 u64 b = 0;
360
361 /* must capture all branches */
362 if (!(m & PERF_SAMPLE_BRANCH_ANY))
363 return 0;
364
365 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
366
367 if (!event->attr.exclude_user)
368 b |= PERF_SAMPLE_BRANCH_USER;
369
370 if (!event->attr.exclude_kernel)
371 b |= PERF_SAMPLE_BRANCH_KERNEL;
372
373 /*
374 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
375 */
376
377 return m == b;
378}
379
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300380int x86_pmu_hw_config(struct perf_event *event)
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300381{
Peter Zijlstraab608342010-04-08 23:03:20 +0200382 if (event->attr.precise_ip) {
383 int precise = 0;
384
385 /* Support for constant skid */
Peter Zijlstrac93dc842012-06-08 14:50:50 +0200386 if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
Peter Zijlstraab608342010-04-08 23:03:20 +0200387 precise++;
388
Peter Zijlstra5553be22010-10-19 14:38:11 +0200389 /* Support for IP fixup */
390 if (x86_pmu.lbr_nr)
391 precise++;
392 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200393
394 if (event->attr.precise_ip > precise)
395 return -EOPNOTSUPP;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100396 /*
397 * check that PEBS LBR correction does not conflict with
398 * whatever the user is asking with attr->branch_sample_type
399 */
400 if (event->attr.precise_ip > 1) {
401 u64 *br_type = &event->attr.branch_sample_type;
402
403 if (has_branch_stack(event)) {
404 if (!precise_br_compat(event))
405 return -EOPNOTSUPP;
406
407 /* branch_sample_type is compatible */
408
409 } else {
410 /*
411 * user did not specify branch_sample_type
412 *
413 * For PEBS fixups, we capture all
414 * the branches at the priv level of the
415 * event.
416 */
417 *br_type = PERF_SAMPLE_BRANCH_ANY;
418
419 if (!event->attr.exclude_user)
420 *br_type |= PERF_SAMPLE_BRANCH_USER;
421
422 if (!event->attr.exclude_kernel)
423 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
424 }
425 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200426 }
427
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300428 /*
429 * Generate PMC IRQs:
430 * (keep 'enabled' bit clear for now)
431 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200432 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300433
434 /*
435 * Count user and OS events unless requested not to
436 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200437 if (!event->attr.exclude_user)
438 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
439 if (!event->attr.exclude_kernel)
440 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
441
442 if (event->attr.type == PERF_TYPE_RAW)
443 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300444
Robert Richter9d0fcba62010-04-13 22:23:12 +0200445 return x86_setup_perfctr(event);
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300446}
447
Ingo Molnaree060942008-12-13 09:00:03 +0100448/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200449 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100450 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200451static int __x86_pmu_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100452{
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200453 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100454
Robert Richter85cf9db2009-04-29 12:47:20 +0200455 if (!x86_pmu_initialized())
456 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100457
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200458 err = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200459 if (!atomic_inc_not_zero(&active_events)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200460 mutex_lock(&pmc_reserve_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200461 if (atomic_read(&active_events) == 0) {
Markus Metzger30dd5682009-07-21 15:56:48 +0200462 if (!reserve_pmc_hardware())
463 err = -EBUSY;
Peter Zijlstraf80c9e32010-10-19 14:50:02 +0200464 else
465 reserve_ds_buffers();
Markus Metzger30dd5682009-07-21 15:56:48 +0200466 }
467 if (!err)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200468 atomic_inc(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200469 mutex_unlock(&pmc_reserve_mutex);
470 }
471 if (err)
472 return err;
473
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200474 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200475
Robert Richter4261e0e2010-04-13 22:23:10 +0200476 event->hw.idx = -1;
477 event->hw.last_cpu = -1;
478 event->hw.last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200479
Stephane Eranianefc9f052011-06-06 16:57:03 +0200480 /* mark unused */
481 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Stephane Eranianb36817e2012-02-09 23:20:53 +0100482 event->hw.branch_reg.idx = EXTRA_REG_NONE;
483
Robert Richter9d0fcba62010-04-13 22:23:12 +0200484 return x86_pmu.hw_config(event);
Robert Richter4261e0e2010-04-13 22:23:10 +0200485}
486
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300487void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530488{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200489 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200490 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100491
Robert Richter948b1bb2010-03-29 18:36:50 +0200492 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100493 u64 val;
494
Robert Richter43f62012009-04-29 16:55:56 +0200495 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200496 continue;
Robert Richter41bf4982011-02-02 17:40:57 +0100497 rdmsrl(x86_pmu_config_addr(idx), val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100498 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200499 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100500 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richter41bf4982011-02-02 17:40:57 +0100501 wrmsrl(x86_pmu_config_addr(idx), val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530502 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530503}
504
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200505static void x86_pmu_disable(struct pmu *pmu)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530506{
Stephane Eranian1da53e02010-01-18 10:58:01 +0200507 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
508
Robert Richter85cf9db2009-04-29 12:47:20 +0200509 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200510 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200511
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100512 if (!cpuc->enabled)
513 return;
514
515 cpuc->n_added = 0;
516 cpuc->enabled = 0;
517 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200518
519 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530520}
Ingo Molnar241771e2008-12-03 10:39:53 +0100521
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300522void x86_pmu_enable_all(int added)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530523{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200524 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530525 int idx;
526
Robert Richter948b1bb2010-03-29 18:36:50 +0200527 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richterd45dd922011-02-02 17:40:56 +0100528 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100529
Robert Richter43f62012009-04-29 16:55:56 +0200530 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200531 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200532
Robert Richterd45dd922011-02-02 17:40:56 +0100533 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530534 }
535}
536
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200537static struct pmu pmu;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200538
539static inline int is_x86_event(struct perf_event *event)
540{
541 return event->pmu == &pmu;
542}
543
Robert Richter1e2ad282011-11-18 12:35:21 +0100544/*
545 * Event scheduler state:
546 *
547 * Assign events iterating over all events and counters, beginning
548 * with events with least weights first. Keep the current iterator
549 * state in struct sched_state.
550 */
551struct sched_state {
552 int weight;
553 int event; /* event index */
554 int counter; /* counter index */
555 int unassigned; /* number of events to be assigned left */
556 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
557};
558
Robert Richterbc1738f2011-11-18 12:35:22 +0100559/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
560#define SCHED_STATES_MAX 2
561
Robert Richter1e2ad282011-11-18 12:35:21 +0100562struct perf_sched {
563 int max_weight;
564 int max_events;
565 struct event_constraint **constraints;
566 struct sched_state state;
Robert Richterbc1738f2011-11-18 12:35:22 +0100567 int saved_states;
568 struct sched_state saved[SCHED_STATES_MAX];
Robert Richter1e2ad282011-11-18 12:35:21 +0100569};
570
571/*
572 * Initialize interator that runs through all events and counters.
573 */
574static void perf_sched_init(struct perf_sched *sched, struct event_constraint **c,
575 int num, int wmin, int wmax)
576{
577 int idx;
578
579 memset(sched, 0, sizeof(*sched));
580 sched->max_events = num;
581 sched->max_weight = wmax;
582 sched->constraints = c;
583
584 for (idx = 0; idx < num; idx++) {
585 if (c[idx]->weight == wmin)
586 break;
587 }
588
589 sched->state.event = idx; /* start with min weight */
590 sched->state.weight = wmin;
591 sched->state.unassigned = num;
592}
593
Robert Richterbc1738f2011-11-18 12:35:22 +0100594static void perf_sched_save_state(struct perf_sched *sched)
595{
596 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
597 return;
598
599 sched->saved[sched->saved_states] = sched->state;
600 sched->saved_states++;
601}
602
603static bool perf_sched_restore_state(struct perf_sched *sched)
604{
605 if (!sched->saved_states)
606 return false;
607
608 sched->saved_states--;
609 sched->state = sched->saved[sched->saved_states];
610
611 /* continue with next counter: */
612 clear_bit(sched->state.counter++, sched->state.used);
613
614 return true;
615}
616
Robert Richter1e2ad282011-11-18 12:35:21 +0100617/*
618 * Select a counter for the current event to schedule. Return true on
619 * success.
620 */
Robert Richterbc1738f2011-11-18 12:35:22 +0100621static bool __perf_sched_find_counter(struct perf_sched *sched)
Robert Richter1e2ad282011-11-18 12:35:21 +0100622{
623 struct event_constraint *c;
624 int idx;
625
626 if (!sched->state.unassigned)
627 return false;
628
629 if (sched->state.event >= sched->max_events)
630 return false;
631
632 c = sched->constraints[sched->state.event];
633
Peter Zijlstra4defea82011-11-10 15:15:42 +0100634 /* Prefer fixed purpose counters */
Robert Richter15c7ad52012-06-20 20:46:33 +0200635 if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
636 idx = INTEL_PMC_IDX_FIXED;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700637 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100638 if (!__test_and_set_bit(idx, sched->state.used))
639 goto done;
640 }
641 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100642 /* Grab the first unused counter starting with idx */
643 idx = sched->state.counter;
Robert Richter15c7ad52012-06-20 20:46:33 +0200644 for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
Robert Richter1e2ad282011-11-18 12:35:21 +0100645 if (!__test_and_set_bit(idx, sched->state.used))
Peter Zijlstra4defea82011-11-10 15:15:42 +0100646 goto done;
Robert Richter1e2ad282011-11-18 12:35:21 +0100647 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100648
Peter Zijlstra4defea82011-11-10 15:15:42 +0100649 return false;
650
651done:
652 sched->state.counter = idx;
Robert Richter1e2ad282011-11-18 12:35:21 +0100653
Robert Richterbc1738f2011-11-18 12:35:22 +0100654 if (c->overlap)
655 perf_sched_save_state(sched);
656
657 return true;
658}
659
660static bool perf_sched_find_counter(struct perf_sched *sched)
661{
662 while (!__perf_sched_find_counter(sched)) {
663 if (!perf_sched_restore_state(sched))
664 return false;
665 }
666
Robert Richter1e2ad282011-11-18 12:35:21 +0100667 return true;
668}
669
670/*
671 * Go through all unassigned events and find the next one to schedule.
672 * Take events with the least weight first. Return true on success.
673 */
674static bool perf_sched_next_event(struct perf_sched *sched)
675{
676 struct event_constraint *c;
677
678 if (!sched->state.unassigned || !--sched->state.unassigned)
679 return false;
680
681 do {
682 /* next event */
683 sched->state.event++;
684 if (sched->state.event >= sched->max_events) {
685 /* next weight */
686 sched->state.event = 0;
687 sched->state.weight++;
688 if (sched->state.weight > sched->max_weight)
689 return false;
690 }
691 c = sched->constraints[sched->state.event];
692 } while (c->weight != sched->state.weight);
693
694 sched->state.counter = 0; /* start with first counter */
695
696 return true;
697}
698
699/*
700 * Assign a counter for each event.
701 */
Yan, Zheng4b4969b2012-06-15 14:31:30 +0800702int perf_assign_events(struct event_constraint **constraints, int n,
703 int wmin, int wmax, int *assign)
Robert Richter1e2ad282011-11-18 12:35:21 +0100704{
705 struct perf_sched sched;
706
707 perf_sched_init(&sched, constraints, n, wmin, wmax);
708
709 do {
710 if (!perf_sched_find_counter(&sched))
711 break; /* failed */
712 if (assign)
713 assign[sched.state.event] = sched.state.counter;
714 } while (perf_sched_next_event(&sched));
715
716 return sched.state.unassigned;
717}
718
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300719int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200720{
Peter Zijlstra63b14642010-01-22 16:32:17 +0100721 struct event_constraint *c, *constraints[X86_PMC_IDX_MAX];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200722 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Robert Richter1e2ad282011-11-18 12:35:21 +0100723 int i, wmin, wmax, num = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200724 struct hw_perf_event *hwc;
725
726 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
727
Robert Richter1e2ad282011-11-18 12:35:21 +0100728 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Peter Zijlstrab622d642010-02-01 15:36:30 +0100729 c = x86_pmu.get_event_constraints(cpuc, cpuc->event_list[i]);
730 constraints[i] = c;
Robert Richter1e2ad282011-11-18 12:35:21 +0100731 wmin = min(wmin, c->weight);
732 wmax = max(wmax, c->weight);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200733 }
734
735 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200736 * fastpath, try to reuse previous register
737 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100738 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200739 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstra81269a02010-01-22 14:55:22 +0100740 c = constraints[i];
Stephane Eranian81130702010-01-21 17:39:01 +0200741
742 /* never assigned */
743 if (hwc->idx == -1)
744 break;
745
746 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100747 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200748 break;
749
750 /* not already used */
751 if (test_bit(hwc->idx, used_mask))
752 break;
753
Peter Zijlstra34538ee2010-03-02 21:16:55 +0100754 __set_bit(hwc->idx, used_mask);
Stephane Eranian81130702010-01-21 17:39:01 +0200755 if (assign)
756 assign[i] = hwc->idx;
757 }
Stephane Eranian81130702010-01-21 17:39:01 +0200758
Robert Richter1e2ad282011-11-18 12:35:21 +0100759 /* slow path */
760 if (i != n)
761 num = perf_assign_events(constraints, n, wmin, wmax, assign);
Stephane Eranian81130702010-01-21 17:39:01 +0200762
Stephane Eranian1da53e02010-01-18 10:58:01 +0200763 /*
764 * scheduling failed or is just a simulation,
765 * free resources if necessary
766 */
767 if (!assign || num) {
768 for (i = 0; i < n; i++) {
769 if (x86_pmu.put_event_constraints)
770 x86_pmu.put_event_constraints(cpuc, cpuc->event_list[i]);
771 }
772 }
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100773 return num ? -EINVAL : 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200774}
775
776/*
777 * dogrp: true if must collect siblings events (group)
778 * returns total number of events and error code
779 */
780static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
781{
782 struct perf_event *event;
783 int n, max_count;
784
Robert Richter948b1bb2010-03-29 18:36:50 +0200785 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200786
787 /* current number of events already accepted */
788 n = cpuc->n_events;
789
790 if (is_x86_event(leader)) {
791 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100792 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200793 cpuc->event_list[n] = leader;
794 n++;
795 }
796 if (!dogrp)
797 return n;
798
799 list_for_each_entry(event, &leader->sibling_list, group_entry) {
800 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200801 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200802 continue;
803
804 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100805 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200806
807 cpuc->event_list[n] = event;
808 n++;
809 }
810 return n;
811}
812
Stephane Eranian1da53e02010-01-18 10:58:01 +0200813static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +0200814 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200815{
Stephane Eranian447a1942010-02-01 14:50:01 +0200816 struct hw_perf_event *hwc = &event->hw;
817
818 hwc->idx = cpuc->assign[i];
819 hwc->last_cpu = smp_processor_id();
820 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200821
Robert Richter15c7ad52012-06-20 20:46:33 +0200822 if (hwc->idx == INTEL_PMC_IDX_FIXED_BTS) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200823 hwc->config_base = 0;
824 hwc->event_base = 0;
Robert Richter15c7ad52012-06-20 20:46:33 +0200825 } else if (hwc->idx >= INTEL_PMC_IDX_FIXED) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200826 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
Robert Richter15c7ad52012-06-20 20:46:33 +0200827 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - INTEL_PMC_IDX_FIXED);
828 hwc->event_base_rdpmc = (hwc->idx - INTEL_PMC_IDX_FIXED) | 1<<30;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200829 } else {
Robert Richter73d6e522011-02-02 17:40:59 +0100830 hwc->config_base = x86_pmu_config_addr(hwc->idx);
831 hwc->event_base = x86_pmu_event_addr(hwc->idx);
Jacob Shin0fbdad02013-02-06 11:26:28 -0600832 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200833 }
834}
835
Stephane Eranian447a1942010-02-01 14:50:01 +0200836static inline int match_prev_assignment(struct hw_perf_event *hwc,
837 struct cpu_hw_events *cpuc,
838 int i)
839{
840 return hwc->idx == cpuc->assign[i] &&
841 hwc->last_cpu == smp_processor_id() &&
842 hwc->last_tag == cpuc->tags[i];
843}
844
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200845static void x86_pmu_start(struct perf_event *event, int flags);
Peter Zijlstra2e841872010-01-25 15:58:43 +0100846
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200847static void x86_pmu_enable(struct pmu *pmu)
Ingo Molnaree060942008-12-13 09:00:03 +0100848{
Stephane Eranian1da53e02010-01-18 10:58:01 +0200849 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
850 struct perf_event *event;
851 struct hw_perf_event *hwc;
Peter Zijlstra11164cd2010-03-26 14:08:44 +0100852 int i, added = cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200853
Robert Richter85cf9db2009-04-29 12:47:20 +0200854 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +0100855 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100856
857 if (cpuc->enabled)
858 return;
859
Stephane Eranian1da53e02010-01-18 10:58:01 +0200860 if (cpuc->n_added) {
Peter Zijlstra19925ce2010-03-06 13:20:40 +0100861 int n_running = cpuc->n_events - cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200862 /*
863 * apply assignment obtained either from
864 * hw_perf_group_sched_in() or x86_pmu_enable()
865 *
866 * step1: save events moving to new counters
867 * step2: reprogram moved events into new counters
868 */
Peter Zijlstra19925ce2010-03-06 13:20:40 +0100869 for (i = 0; i < n_running; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200870 event = cpuc->event_list[i];
871 hwc = &event->hw;
872
Stephane Eranian447a1942010-02-01 14:50:01 +0200873 /*
874 * we can avoid reprogramming counter if:
875 * - assigned same counter as last time
876 * - running on same CPU as last time
877 * - no other event has used the counter since
878 */
879 if (hwc->idx == -1 ||
880 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +0200881 continue;
882
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200883 /*
884 * Ensure we don't accidentally enable a stopped
885 * counter simply because we rescheduled.
886 */
887 if (hwc->state & PERF_HES_STOPPED)
888 hwc->state |= PERF_HES_ARCH;
889
890 x86_pmu_stop(event, PERF_EF_UPDATE);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200891 }
892
893 for (i = 0; i < cpuc->n_events; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200894 event = cpuc->event_list[i];
895 hwc = &event->hw;
896
Peter Zijlstra45e16a62010-03-11 13:40:30 +0100897 if (!match_prev_assignment(hwc, cpuc, i))
Stephane Eranian447a1942010-02-01 14:50:01 +0200898 x86_assign_hw_event(event, cpuc, i);
Peter Zijlstra45e16a62010-03-11 13:40:30 +0100899 else if (i < n_running)
900 continue;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200901
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200902 if (hwc->state & PERF_HES_ARCH)
903 continue;
904
905 x86_pmu_start(event, PERF_EF_RELOAD);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200906 }
907 cpuc->n_added = 0;
908 perf_events_lapic_init();
909 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100910
911 cpuc->enabled = 1;
912 barrier();
913
Peter Zijlstra11164cd2010-03-26 14:08:44 +0100914 x86_pmu.enable_all(added);
Ingo Molnaree060942008-12-13 09:00:03 +0100915}
Ingo Molnaree060942008-12-13 09:00:03 +0100916
Tejun Heo245b2e72009-06-24 15:13:48 +0900917static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +0100918
Ingo Molnaree060942008-12-13 09:00:03 +0100919/*
920 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200921 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +0100922 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300923int x86_perf_event_set_period(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100924{
Peter Zijlstra07088ed2010-03-02 20:16:01 +0100925 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200926 s64 left = local64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200927 s64 period = hwc->sample_period;
Peter Zijlstra7645a242010-03-08 13:51:31 +0100928 int ret = 0, idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +0100929
Robert Richter15c7ad52012-06-20 20:46:33 +0200930 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +0200931 return 0;
932
Ingo Molnaree060942008-12-13 09:00:03 +0100933 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200934 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +0100935 */
936 if (unlikely(left <= -period)) {
937 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200938 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200939 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200940 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100941 }
942
943 if (unlikely(left <= 0)) {
944 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200945 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200946 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200947 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100948 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200949 /*
Ingo Molnardfc65092009-09-21 11:31:35 +0200950 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200951 */
952 if (unlikely(left < 2))
953 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +0100954
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200955 if (left > x86_pmu.max_period)
956 left = x86_pmu.max_period;
957
Tejun Heo245b2e72009-06-24 15:13:48 +0900958 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +0100959
960 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200961 * The hw event starts counting from this event offset,
Ingo Molnaree060942008-12-13 09:00:03 +0100962 * mark it to be able to extra future deltas:
963 */
Peter Zijlstrae7850592010-05-21 14:43:08 +0200964 local64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +0100965
Robert Richter73d6e522011-02-02 17:40:59 +0100966 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +0400967
968 /*
969 * Due to erratum on certan cpu we need
970 * a second write to be sure the register
971 * is updated properly
972 */
973 if (x86_pmu.perfctr_second_write) {
Robert Richter73d6e522011-02-02 17:40:59 +0100974 wrmsrl(hwc->event_base,
Robert Richter948b1bb2010-03-29 18:36:50 +0200975 (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +0400976 }
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200977
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200978 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +0200979
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200980 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +0100981}
982
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300983void x86_pmu_enable_event(struct perf_event *event)
Robert Richter7c90cc42009-04-29 12:47:18 +0200984{
Tejun Heo0a3aee02010-12-18 16:28:55 +0100985 if (__this_cpu_read(cpu_hw_events.enabled))
Robert Richter31fa58a2010-04-13 22:23:14 +0200986 __x86_pmu_enable_event(&event->hw,
987 ARCH_PERFMON_EVENTSEL_ENABLE);
Ingo Molnar241771e2008-12-03 10:39:53 +0100988}
989
Ingo Molnaree060942008-12-13 09:00:03 +0100990/*
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200991 * Add a single event to the PMU.
Stephane Eranian1da53e02010-01-18 10:58:01 +0200992 *
993 * The event is added to the group of enabled events
994 * but only if it can be scehduled with existing events.
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200995 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200996static int x86_pmu_add(struct perf_event *event, int flags)
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200997{
998 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200999 struct hw_perf_event *hwc;
1000 int assign[X86_PMC_IDX_MAX];
1001 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001002
Stephane Eranian1da53e02010-01-18 10:58:01 +02001003 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001004
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001005 perf_pmu_disable(event->pmu);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001006 n0 = cpuc->n_events;
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001007 ret = n = collect_events(cpuc, event, false);
1008 if (ret < 0)
1009 goto out;
Ingo Molnar53b441a2009-05-25 21:41:28 +02001010
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001011 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1012 if (!(flags & PERF_EF_START))
1013 hwc->state |= PERF_HES_ARCH;
1014
Lin Ming4d1c52b2010-04-23 13:56:12 +08001015 /*
1016 * If group events scheduling transaction was started,
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001017 * skip the schedulability test here, it will be performed
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001018 * at commit time (->commit_txn) as a whole
Lin Ming4d1c52b2010-04-23 13:56:12 +08001019 */
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001020 if (cpuc->group_flag & PERF_EVENT_TXN)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001021 goto done_collect;
Lin Ming4d1c52b2010-04-23 13:56:12 +08001022
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001023 ret = x86_pmu.schedule_events(cpuc, n, assign);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001024 if (ret)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001025 goto out;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001026 /*
1027 * copy new assignment, now we know it is possible
1028 * will be used by hw_perf_enable()
1029 */
1030 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +01001031
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001032done_collect:
Stephane Eranian1da53e02010-01-18 10:58:01 +02001033 cpuc->n_events = n;
Peter Zijlstra356e1f22010-03-06 13:49:56 +01001034 cpuc->n_added += n - n0;
Stephane Eranian90151c352010-05-25 16:23:10 +02001035 cpuc->n_txn += n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +01001036
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001037 ret = 0;
1038out:
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001039 perf_pmu_enable(event->pmu);
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001040 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001041}
1042
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001043static void x86_pmu_start(struct perf_event *event, int flags)
Stephane Eraniand76a0812010-02-08 17:06:01 +02001044{
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001045 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1046 int idx = event->hw.idx;
1047
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001048 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1049 return;
Stephane Eraniand76a0812010-02-08 17:06:01 +02001050
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001051 if (WARN_ON_ONCE(idx == -1))
1052 return;
1053
1054 if (flags & PERF_EF_RELOAD) {
1055 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1056 x86_perf_event_set_period(event);
1057 }
1058
1059 event->hw.state = 0;
1060
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001061 cpuc->events[idx] = event;
1062 __set_bit(idx, cpuc->active_mask);
Robert Richter63e6be62010-09-15 18:20:34 +02001063 __set_bit(idx, cpuc->running);
Peter Zijlstraaff3d912010-03-02 20:32:08 +01001064 x86_pmu.enable(event);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001065 perf_event_update_userpage(event);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001066}
1067
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001068void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001069{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001070 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Peter Zijlstraca037702010-03-02 19:52:12 +01001071 u64 pebs;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001072 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001073 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001074 int cpu, idx;
1075
Robert Richter948b1bb2010-03-29 18:36:50 +02001076 if (!x86_pmu.num_counters)
Ingo Molnar1e125672008-12-09 12:18:18 +01001077 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001078
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001079 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001080
1081 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001082 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001083
Robert Richterfaa28ae2009-04-29 12:47:13 +02001084 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301085 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1086 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1087 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1088 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Peter Zijlstraca037702010-03-02 19:52:12 +01001089 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
Ingo Molnar241771e2008-12-03 10:39:53 +01001090
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301091 pr_info("\n");
1092 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1093 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1094 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1095 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Peter Zijlstraca037702010-03-02 19:52:12 +01001096 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301097 }
Peter Zijlstra7645a242010-03-08 13:51:31 +01001098 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001099
Robert Richter948b1bb2010-03-29 18:36:50 +02001100 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter41bf4982011-02-02 17:40:57 +01001101 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1102 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001103
Tejun Heo245b2e72009-06-24 15:13:48 +09001104 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001105
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301106 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001107 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301108 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001109 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301110 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001111 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001112 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001113 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001114 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1115
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301116 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001117 cpu, idx, pmc_count);
1118 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001119 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001120}
1121
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001122void x86_pmu_stop(struct perf_event *event, int flags)
Ingo Molnar241771e2008-12-03 10:39:53 +01001123{
Stephane Eraniand76a0812010-02-08 17:06:01 +02001124 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001125 struct hw_perf_event *hwc = &event->hw;
Ingo Molnar241771e2008-12-03 10:39:53 +01001126
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001127 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1128 x86_pmu.disable(event);
1129 cpuc->events[hwc->idx] = NULL;
1130 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1131 hwc->state |= PERF_HES_STOPPED;
1132 }
Peter Zijlstra71e2d282010-03-08 17:51:33 +01001133
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001134 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1135 /*
1136 * Drain the remaining delta count out of a event
1137 * that we are disabling:
1138 */
1139 x86_perf_event_update(event);
1140 hwc->state |= PERF_HES_UPTODATE;
1141 }
Peter Zijlstra2e841872010-01-25 15:58:43 +01001142}
1143
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001144static void x86_pmu_del(struct perf_event *event, int flags)
Peter Zijlstra2e841872010-01-25 15:58:43 +01001145{
1146 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1147 int i;
1148
Stephane Eranian90151c352010-05-25 16:23:10 +02001149 /*
1150 * If we're called during a txn, we don't need to do anything.
1151 * The events never got scheduled and ->cancel_txn will truncate
1152 * the event_list.
1153 */
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001154 if (cpuc->group_flag & PERF_EVENT_TXN)
Stephane Eranian90151c352010-05-25 16:23:10 +02001155 return;
1156
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001157 x86_pmu_stop(event, PERF_EF_UPDATE);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001158
Stephane Eranian1da53e02010-01-18 10:58:01 +02001159 for (i = 0; i < cpuc->n_events; i++) {
1160 if (event == cpuc->event_list[i]) {
1161
1162 if (x86_pmu.put_event_constraints)
1163 x86_pmu.put_event_constraints(cpuc, event);
1164
1165 while (++i < cpuc->n_events)
1166 cpuc->event_list[i-1] = cpuc->event_list[i];
1167
1168 --cpuc->n_events;
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001169 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001170 }
1171 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001172 perf_event_update_userpage(event);
Ingo Molnar241771e2008-12-03 10:39:53 +01001173}
1174
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001175int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001176{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001177 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001178 struct cpu_hw_events *cpuc;
1179 struct perf_event *event;
Vince Weaver11d15782009-07-08 17:46:14 -04001180 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001181 u64 val;
1182
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001183 cpuc = &__get_cpu_var(cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001184
Don Zickus2bce5da2011-04-27 06:32:33 -04001185 /*
1186 * Some chipsets need to unmask the LVTPC in a particular spot
1187 * inside the nmi handler. As a result, the unmasking was pushed
1188 * into all the nmi handlers.
1189 *
1190 * This generic handler doesn't seem to have any issues where the
1191 * unmasking occurs so it was left at the top.
1192 */
1193 apic_write(APIC_LVTPC, APIC_DM_NMI);
1194
Robert Richter948b1bb2010-03-29 18:36:50 +02001195 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter63e6be62010-09-15 18:20:34 +02001196 if (!test_bit(idx, cpuc->active_mask)) {
1197 /*
1198 * Though we deactivated the counter some cpus
1199 * might still deliver spurious interrupts still
1200 * in flight. Catch them:
1201 */
1202 if (__test_and_clear_bit(idx, cpuc->running))
1203 handled++;
Robert Richtera29aa8a2009-04-29 12:47:21 +02001204 continue;
Robert Richter63e6be62010-09-15 18:20:34 +02001205 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001206
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001207 event = cpuc->events[idx];
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001208
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001209 val = x86_perf_event_update(event);
Robert Richter948b1bb2010-03-29 18:36:50 +02001210 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001211 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001212
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001213 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001214 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001215 */
Robert Richter4177c422010-09-02 15:07:48 -04001216 handled++;
Robert Richterfd0d0002012-04-02 20:19:08 +02001217 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001218
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001219 if (!x86_perf_event_set_period(event))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001220 continue;
1221
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001222 if (perf_event_overflow(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001223 x86_pmu_stop(event, 0);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001224 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001225
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001226 if (handled)
1227 inc_irq_stat(apic_perf_irqs);
1228
Robert Richtera29aa8a2009-04-29 12:47:21 +02001229 return handled;
1230}
Robert Richter39d81ea2009-04-29 12:47:05 +02001231
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001232void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001233{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001234 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001235 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001236
Ingo Molnar241771e2008-12-03 10:39:53 +01001237 /*
Yong Wangc323d952009-05-29 13:28:35 +08001238 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001239 */
Yong Wangc323d952009-05-29 13:28:35 +08001240 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar241771e2008-12-03 10:39:53 +01001241}
1242
1243static int __kprobes
Don Zickus9c48f1c2011-09-30 15:06:21 -04001244perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
Ingo Molnar241771e2008-12-03 10:39:53 +01001245{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001246 if (!atomic_read(&active_events))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001247 return NMI_DONE;
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001248
Don Zickus9c48f1c2011-09-30 15:06:21 -04001249 return x86_pmu.handle_irq(regs);
Ingo Molnar241771e2008-12-03 10:39:53 +01001250}
1251
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001252struct event_constraint emptyconstraint;
1253struct event_constraint unconstrained;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301254
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001255static int __cpuinit
1256x86_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1257{
1258 unsigned int cpu = (long)hcpu;
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001259 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001260 int ret = NOTIFY_OK;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001261
1262 switch (action & ~CPU_TASKS_FROZEN) {
1263 case CPU_UP_PREPARE:
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001264 cpuc->kfree_on_online = NULL;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001265 if (x86_pmu.cpu_prepare)
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001266 ret = x86_pmu.cpu_prepare(cpu);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001267 break;
1268
1269 case CPU_STARTING:
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001270 if (x86_pmu.attr_rdpmc)
1271 set_in_cr4(X86_CR4_PCE);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001272 if (x86_pmu.cpu_starting)
1273 x86_pmu.cpu_starting(cpu);
1274 break;
1275
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001276 case CPU_ONLINE:
1277 kfree(cpuc->kfree_on_online);
1278 break;
1279
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001280 case CPU_DYING:
1281 if (x86_pmu.cpu_dying)
1282 x86_pmu.cpu_dying(cpu);
1283 break;
1284
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001285 case CPU_UP_CANCELED:
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001286 case CPU_DEAD:
1287 if (x86_pmu.cpu_dead)
1288 x86_pmu.cpu_dead(cpu);
1289 break;
1290
1291 default:
1292 break;
1293 }
1294
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001295 return ret;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001296}
1297
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001298static void __init pmu_check_apic(void)
1299{
1300 if (cpu_has_apic)
1301 return;
1302
1303 x86_pmu.apic = 0;
1304 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1305 pr_info("no hardware sampling interrupt available.\n");
1306}
1307
Jiri Olsa641cc932012-03-15 20:09:14 +01001308static struct attribute_group x86_pmu_format_group = {
1309 .name = "format",
1310 .attrs = NULL,
1311};
1312
Jiri Olsa8300daa2012-10-10 14:53:12 +02001313/*
1314 * Remove all undefined events (x86_pmu.event_map(id) == 0)
1315 * out of events_attr attributes.
1316 */
1317static void __init filter_events(struct attribute **attrs)
1318{
1319 int i, j;
1320
1321 for (i = 0; attrs[i]; i++) {
1322 if (x86_pmu.event_map(i))
1323 continue;
1324
1325 for (j = i; attrs[j]; j++)
1326 attrs[j] = attrs[j + 1];
1327
1328 /* Check the shifted attr. */
1329 i--;
1330 }
1331}
1332
Peter Huewe95d18aa2012-10-29 21:48:17 +01001333static ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr,
Jiri Olsaa4747392012-10-10 14:53:11 +02001334 char *page)
1335{
1336 struct perf_pmu_events_attr *pmu_attr = \
1337 container_of(attr, struct perf_pmu_events_attr, attr);
1338
1339 u64 config = x86_pmu.event_map(pmu_attr->id);
1340 return x86_pmu.events_sysfs_show(page, config);
1341}
1342
1343#define EVENT_VAR(_id) event_attr_##_id
1344#define EVENT_PTR(_id) &event_attr_##_id.attr.attr
1345
Sukadev Bhattiprolu26639602013-01-22 22:24:23 -08001346#define EVENT_ATTR(_name, _id) \
1347 PMU_EVENT_ATTR(_name, EVENT_VAR(_id), PERF_COUNT_HW_##_id, \
1348 events_sysfs_show)
Jiri Olsaa4747392012-10-10 14:53:11 +02001349
1350EVENT_ATTR(cpu-cycles, CPU_CYCLES );
1351EVENT_ATTR(instructions, INSTRUCTIONS );
1352EVENT_ATTR(cache-references, CACHE_REFERENCES );
1353EVENT_ATTR(cache-misses, CACHE_MISSES );
1354EVENT_ATTR(branch-instructions, BRANCH_INSTRUCTIONS );
1355EVENT_ATTR(branch-misses, BRANCH_MISSES );
1356EVENT_ATTR(bus-cycles, BUS_CYCLES );
1357EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND );
1358EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND );
1359EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
1360
1361static struct attribute *empty_attrs;
1362
Peter Huewe95d18aa2012-10-29 21:48:17 +01001363static struct attribute *events_attr[] = {
Jiri Olsaa4747392012-10-10 14:53:11 +02001364 EVENT_PTR(CPU_CYCLES),
1365 EVENT_PTR(INSTRUCTIONS),
1366 EVENT_PTR(CACHE_REFERENCES),
1367 EVENT_PTR(CACHE_MISSES),
1368 EVENT_PTR(BRANCH_INSTRUCTIONS),
1369 EVENT_PTR(BRANCH_MISSES),
1370 EVENT_PTR(BUS_CYCLES),
1371 EVENT_PTR(STALLED_CYCLES_FRONTEND),
1372 EVENT_PTR(STALLED_CYCLES_BACKEND),
1373 EVENT_PTR(REF_CPU_CYCLES),
1374 NULL,
1375};
1376
1377static struct attribute_group x86_pmu_events_group = {
1378 .name = "events",
1379 .attrs = events_attr,
1380};
1381
Jiri Olsa0bf79d42012-10-10 14:53:14 +02001382ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
Jiri Olsa43c032f2012-10-10 14:53:13 +02001383{
Jiri Olsa43c032f2012-10-10 14:53:13 +02001384 u64 umask = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1385 u64 cmask = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1386 bool edge = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1387 bool pc = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1388 bool any = (config & ARCH_PERFMON_EVENTSEL_ANY);
1389 bool inv = (config & ARCH_PERFMON_EVENTSEL_INV);
1390 ssize_t ret;
1391
1392 /*
1393 * We have whole page size to spend and just little data
1394 * to write, so we can safely use sprintf.
1395 */
1396 ret = sprintf(page, "event=0x%02llx", event);
1397
1398 if (umask)
1399 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1400
1401 if (edge)
1402 ret += sprintf(page + ret, ",edge");
1403
1404 if (pc)
1405 ret += sprintf(page + ret, ",pc");
1406
1407 if (any)
1408 ret += sprintf(page + ret, ",any");
1409
1410 if (inv)
1411 ret += sprintf(page + ret, ",inv");
1412
1413 if (cmask)
1414 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1415
1416 ret += sprintf(page + ret, "\n");
1417
1418 return ret;
1419}
1420
Yinghai Ludda99112011-01-21 15:30:01 -08001421static int __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301422{
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001423 struct x86_pmu_quirk *quirk;
Robert Richter72eae042009-04-29 12:47:10 +02001424 int err;
1425
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001426 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001427
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301428 switch (boot_cpu_data.x86_vendor) {
1429 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001430 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301431 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301432 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001433 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301434 break;
Robert Richter41389602009-04-29 12:47:00 +02001435 default:
Peter Zijlstra004417a2010-11-25 18:38:29 +01001436 return 0;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301437 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001438 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001439 pr_cont("no PMU driver, software events only.\n");
Peter Zijlstra004417a2010-11-25 18:38:29 +01001440 return 0;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001441 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301442
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001443 pmu_check_apic();
1444
Don Zickus33c6d6a2010-11-22 16:55:23 -05001445 /* sanity check that the hardware exists or is emulated */
Peter Zijlstra44072042010-12-08 15:56:23 +01001446 if (!check_hw_exists())
Peter Zijlstra004417a2010-11-25 18:38:29 +01001447 return 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -05001448
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001449 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001450
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001451 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1452 quirk->func();
Peter Zijlstra3c447802010-03-04 21:49:01 +01001453
Robert Richtera1eac7a2012-06-20 20:46:34 +02001454 if (!x86_pmu.intel_ctrl)
1455 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001456
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457 perf_events_lapic_init();
Don Zickus9c48f1c2011-09-30 15:06:21 -04001458 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001459
Peter Zijlstra63b14642010-01-22 16:32:17 +01001460 unconstrained = (struct event_constraint)
Robert Richter948b1bb2010-03-29 18:36:50 +02001461 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
Robert Richterbc1738f2011-11-18 12:35:22 +01001462 0, x86_pmu.num_counters, 0);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001463
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001464 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
Jiri Olsa641cc932012-03-15 20:09:14 +01001465 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001466
Jiri Olsaa4747392012-10-10 14:53:11 +02001467 if (!x86_pmu.events_sysfs_show)
1468 x86_pmu_events_group.attrs = &empty_attrs;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001469 else
1470 filter_events(x86_pmu_events_group.attrs);
Jiri Olsaa4747392012-10-10 14:53:11 +02001471
Ingo Molnar57c0c152009-09-21 12:20:38 +02001472 pr_info("... version: %d\n", x86_pmu.version);
Robert Richter948b1bb2010-03-29 18:36:50 +02001473 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1474 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1475 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
Ingo Molnar57c0c152009-09-21 12:20:38 +02001476 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
Robert Richter948b1bb2010-03-29 18:36:50 +02001477 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
Robert Richterd6dc0b42010-03-17 12:49:13 +01001478 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001479
Peter Zijlstra2e80a822010-11-17 23:17:36 +01001480 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001481 perf_cpu_notifier(x86_pmu_notifier);
Peter Zijlstra004417a2010-11-25 18:38:29 +01001482
1483 return 0;
Ingo Molnar241771e2008-12-03 10:39:53 +01001484}
Peter Zijlstra004417a2010-11-25 18:38:29 +01001485early_initcall(init_hw_perf_events);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001486
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001487static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001488{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001489 x86_perf_event_update(event);
Ingo Molnaree060942008-12-13 09:00:03 +01001490}
1491
Lin Ming4d1c52b2010-04-23 13:56:12 +08001492/*
1493 * Start group events scheduling transaction
1494 * Set the flag to make pmu::enable() not perform the
1495 * schedulability test, it will be performed at commit time
1496 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001497static void x86_pmu_start_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001498{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001499 perf_pmu_disable(pmu);
Tejun Heo0a3aee02010-12-18 16:28:55 +01001500 __this_cpu_or(cpu_hw_events.group_flag, PERF_EVENT_TXN);
1501 __this_cpu_write(cpu_hw_events.n_txn, 0);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001502}
1503
1504/*
1505 * Stop group events scheduling transaction
1506 * Clear the flag and pmu::enable() will perform the
1507 * schedulability test.
1508 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001509static void x86_pmu_cancel_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001510{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001511 __this_cpu_and(cpu_hw_events.group_flag, ~PERF_EVENT_TXN);
Stephane Eranian90151c352010-05-25 16:23:10 +02001512 /*
1513 * Truncate the collected events.
1514 */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001515 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1516 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001517 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001518}
1519
1520/*
1521 * Commit group events scheduling transaction
1522 * Perform the group schedulability test as a whole
1523 * Return 0 if success
1524 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001525static int x86_pmu_commit_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001526{
1527 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1528 int assign[X86_PMC_IDX_MAX];
1529 int n, ret;
1530
1531 n = cpuc->n_events;
1532
1533 if (!x86_pmu_initialized())
1534 return -EAGAIN;
1535
1536 ret = x86_pmu.schedule_events(cpuc, n, assign);
1537 if (ret)
1538 return ret;
1539
1540 /*
1541 * copy new assignment, now we know it is possible
1542 * will be used by hw_perf_enable()
1543 */
1544 memcpy(cpuc->assign, assign, n*sizeof(int));
1545
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001546 cpuc->group_flag &= ~PERF_EVENT_TXN;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001547 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001548 return 0;
1549}
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001550/*
1551 * a fake_cpuc is used to validate event groups. Due to
1552 * the extra reg logic, we need to also allocate a fake
1553 * per_core and per_cpu structure. Otherwise, group events
1554 * using extra reg may conflict without the kernel being
1555 * able to catch this when the last event gets added to
1556 * the group.
1557 */
1558static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1559{
1560 kfree(cpuc->shared_regs);
1561 kfree(cpuc);
1562}
1563
1564static struct cpu_hw_events *allocate_fake_cpuc(void)
1565{
1566 struct cpu_hw_events *cpuc;
1567 int cpu = raw_smp_processor_id();
1568
1569 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1570 if (!cpuc)
1571 return ERR_PTR(-ENOMEM);
1572
1573 /* only needed, if we have extra_regs */
1574 if (x86_pmu.extra_regs) {
1575 cpuc->shared_regs = allocate_shared_regs(cpu);
1576 if (!cpuc->shared_regs)
1577 goto error;
1578 }
Peter Zijlstrab430f7c2012-06-05 15:30:31 +02001579 cpuc->is_fake = 1;
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001580 return cpuc;
1581error:
1582 free_fake_cpuc(cpuc);
1583 return ERR_PTR(-ENOMEM);
1584}
Lin Ming4d1c52b2010-04-23 13:56:12 +08001585
Stephane Eranian1da53e02010-01-18 10:58:01 +02001586/*
Peter Zijlstraca037702010-03-02 19:52:12 +01001587 * validate that we can schedule this event
1588 */
1589static int validate_event(struct perf_event *event)
1590{
1591 struct cpu_hw_events *fake_cpuc;
1592 struct event_constraint *c;
1593 int ret = 0;
1594
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001595 fake_cpuc = allocate_fake_cpuc();
1596 if (IS_ERR(fake_cpuc))
1597 return PTR_ERR(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001598
1599 c = x86_pmu.get_event_constraints(fake_cpuc, event);
1600
1601 if (!c || !c->weight)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001602 ret = -EINVAL;
Peter Zijlstraca037702010-03-02 19:52:12 +01001603
1604 if (x86_pmu.put_event_constraints)
1605 x86_pmu.put_event_constraints(fake_cpuc, event);
1606
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001607 free_fake_cpuc(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001608
1609 return ret;
1610}
1611
1612/*
Stephane Eranian1da53e02010-01-18 10:58:01 +02001613 * validate a single event group
1614 *
1615 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01001616 * - check events are compatible which each other
1617 * - events do not compete for the same counter
1618 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001619 *
1620 * validation ensures the group can be loaded onto the
1621 * PMU if it was the only group available.
1622 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001623static int validate_group(struct perf_event *event)
1624{
Stephane Eranian1da53e02010-01-18 10:58:01 +02001625 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01001626 struct cpu_hw_events *fake_cpuc;
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001627 int ret = -EINVAL, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001628
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001629 fake_cpuc = allocate_fake_cpuc();
1630 if (IS_ERR(fake_cpuc))
1631 return PTR_ERR(fake_cpuc);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001632 /*
1633 * the event is not yet connected with its
1634 * siblings therefore we must first collect
1635 * existing siblings, then add the new event
1636 * before we can simulate the scheduling
1637 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01001638 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001639 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001640 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001641
Peter Zijlstra502568d2010-01-22 14:35:46 +01001642 fake_cpuc->n_events = n;
1643 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001644 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001645 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001646
Peter Zijlstra502568d2010-01-22 14:35:46 +01001647 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001648
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001649 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001650
Peter Zijlstra502568d2010-01-22 14:35:46 +01001651out:
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001652 free_fake_cpuc(fake_cpuc);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001653 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001654}
1655
Yinghai Ludda99112011-01-21 15:30:01 -08001656static int x86_pmu_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01001657{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001658 struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001659 int err;
1660
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001661 switch (event->attr.type) {
1662 case PERF_TYPE_RAW:
1663 case PERF_TYPE_HARDWARE:
1664 case PERF_TYPE_HW_CACHE:
1665 break;
1666
1667 default:
1668 return -ENOENT;
1669 }
1670
1671 err = __x86_pmu_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001672 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02001673 /*
1674 * we temporarily connect event to its pmu
1675 * such that validate_group() can classify
1676 * it as an x86 event using is_x86_event()
1677 */
1678 tmp = event->pmu;
1679 event->pmu = &pmu;
1680
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001681 if (event->group_leader != event)
1682 err = validate_group(event);
Peter Zijlstraca037702010-03-02 19:52:12 +01001683 else
1684 err = validate_event(event);
Stephane Eranian81130702010-01-21 17:39:01 +02001685
1686 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001687 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001688 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001689 if (event->destroy)
1690 event->destroy(event);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001691 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01001692
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001693 return err;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001694}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001695
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001696static int x86_pmu_event_idx(struct perf_event *event)
1697{
1698 int idx = event->hw.idx;
1699
Peter Zijlstrac7206202012-03-22 17:26:36 +01001700 if (!x86_pmu.attr_rdpmc)
1701 return 0;
1702
Robert Richter15c7ad52012-06-20 20:46:33 +02001703 if (x86_pmu.num_counters_fixed && idx >= INTEL_PMC_IDX_FIXED) {
1704 idx -= INTEL_PMC_IDX_FIXED;
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001705 idx |= 1 << 30;
1706 }
1707
1708 return idx + 1;
1709}
1710
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001711static ssize_t get_attr_rdpmc(struct device *cdev,
1712 struct device_attribute *attr,
1713 char *buf)
1714{
1715 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
1716}
1717
1718static void change_rdpmc(void *info)
1719{
1720 bool enable = !!(unsigned long)info;
1721
1722 if (enable)
1723 set_in_cr4(X86_CR4_PCE);
1724 else
1725 clear_in_cr4(X86_CR4_PCE);
1726}
1727
1728static ssize_t set_attr_rdpmc(struct device *cdev,
1729 struct device_attribute *attr,
1730 const char *buf, size_t count)
1731{
Shuah Khane2b297f2012-06-10 21:13:41 -06001732 unsigned long val;
1733 ssize_t ret;
1734
1735 ret = kstrtoul(buf, 0, &val);
1736 if (ret)
1737 return ret;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001738
1739 if (!!val != !!x86_pmu.attr_rdpmc) {
1740 x86_pmu.attr_rdpmc = !!val;
1741 smp_call_function(change_rdpmc, (void *)val, 1);
1742 }
1743
1744 return count;
1745}
1746
1747static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
1748
1749static struct attribute *x86_pmu_attrs[] = {
1750 &dev_attr_rdpmc.attr,
1751 NULL,
1752};
1753
1754static struct attribute_group x86_pmu_attr_group = {
1755 .attrs = x86_pmu_attrs,
1756};
1757
1758static const struct attribute_group *x86_pmu_attr_groups[] = {
1759 &x86_pmu_attr_group,
Jiri Olsa641cc932012-03-15 20:09:14 +01001760 &x86_pmu_format_group,
Jiri Olsaa4747392012-10-10 14:53:11 +02001761 &x86_pmu_events_group,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001762 NULL,
1763};
1764
Stephane Eraniand010b332012-02-09 23:21:00 +01001765static void x86_pmu_flush_branch_stack(void)
1766{
1767 if (x86_pmu.flush_branch_stack)
1768 x86_pmu.flush_branch_stack();
1769}
1770
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001771void perf_check_microcode(void)
1772{
1773 if (x86_pmu.check_microcode)
1774 x86_pmu.check_microcode();
1775}
1776EXPORT_SYMBOL_GPL(perf_check_microcode);
1777
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001778static struct pmu pmu = {
Stephane Eraniand010b332012-02-09 23:21:00 +01001779 .pmu_enable = x86_pmu_enable,
1780 .pmu_disable = x86_pmu_disable,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001781
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001782 .attr_groups = x86_pmu_attr_groups,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001783
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001784 .event_init = x86_pmu_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001785
Stephane Eraniand010b332012-02-09 23:21:00 +01001786 .add = x86_pmu_add,
1787 .del = x86_pmu_del,
1788 .start = x86_pmu_start,
1789 .stop = x86_pmu_stop,
1790 .read = x86_pmu_read,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001791
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001792 .start_txn = x86_pmu_start_txn,
1793 .cancel_txn = x86_pmu_cancel_txn,
1794 .commit_txn = x86_pmu_commit_txn,
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001795
Peter Zijlstrac93dc842012-06-08 14:50:50 +02001796 .event_idx = x86_pmu_event_idx,
Stephane Eraniand010b332012-02-09 23:21:00 +01001797 .flush_branch_stack = x86_pmu_flush_branch_stack,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001798};
1799
Peter Zijlstrac7206202012-03-22 17:26:36 +01001800void arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001801{
Peter Zijlstrac7206202012-03-22 17:26:36 +01001802 userpg->cap_usr_time = 0;
1803 userpg->cap_usr_rdpmc = x86_pmu.attr_rdpmc;
1804 userpg->pmc_width = x86_pmu.cntval_bits;
1805
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001806 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
1807 return;
1808
1809 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
1810 return;
1811
Peter Zijlstrac7206202012-03-22 17:26:36 +01001812 userpg->cap_usr_time = 1;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001813 userpg->time_mult = this_cpu_read(cyc2ns);
1814 userpg->time_shift = CYC2NS_SCALE_FACTOR;
1815 userpg->time_offset = this_cpu_read(cyc2ns_offset) - now;
1816}
1817
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001818/*
1819 * callchain support
1820 */
1821
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001822static int backtrace_stack(void *data, char *name)
1823{
Ingo Molnar038e8362009-06-15 09:57:59 +02001824 return 0;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001825}
1826
1827static void backtrace_address(void *data, unsigned long addr, int reliable)
1828{
1829 struct perf_callchain_entry *entry = data;
1830
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001831 perf_callchain_store(entry, addr);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001832}
1833
1834static const struct stacktrace_ops backtrace_ops = {
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001835 .stack = backtrace_stack,
1836 .address = backtrace_address,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +01001837 .walk_stack = print_context_stack_bp,
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001838};
1839
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02001840void
1841perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001842{
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001843 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
1844 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02001845 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001846 }
1847
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001848 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001849
Namhyung Kime8e999cf2011-03-18 11:40:06 +09001850 dump_trace(NULL, regs, NULL, 0, &backtrace_ops, entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001851}
1852
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07001853static inline int
1854valid_user_frame(const void __user *fp, unsigned long size)
1855{
1856 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
1857}
1858
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001859static unsigned long get_segment_base(unsigned int segment)
1860{
1861 struct desc_struct *desc;
1862 int idx = segment >> 3;
1863
1864 if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
1865 if (idx > LDT_ENTRIES)
1866 return 0;
1867
1868 if (idx > current->active_mm->context.size)
1869 return 0;
1870
1871 desc = current->active_mm->context.ldt;
1872 } else {
1873 if (idx > GDT_ENTRIES)
1874 return 0;
1875
1876 desc = __this_cpu_ptr(&gdt_page.gdt[0]);
1877 }
1878
1879 return get_desc_base(desc + idx);
1880}
1881
Torok Edwin257ef9d2010-03-17 12:07:16 +02001882#ifdef CONFIG_COMPAT
H. Peter Anvind1a797f2012-02-19 10:06:34 -08001883
1884#include <asm/compat.h>
1885
Torok Edwin257ef9d2010-03-17 12:07:16 +02001886static inline int
1887perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001888{
Torok Edwin257ef9d2010-03-17 12:07:16 +02001889 /* 32-bit process in 64-bit kernel. */
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001890 unsigned long ss_base, cs_base;
Torok Edwin257ef9d2010-03-17 12:07:16 +02001891 struct stack_frame_ia32 frame;
1892 const void __user *fp;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001893
Torok Edwin257ef9d2010-03-17 12:07:16 +02001894 if (!test_thread_flag(TIF_IA32))
1895 return 0;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001896
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001897 cs_base = get_segment_base(regs->cs);
1898 ss_base = get_segment_base(regs->ss);
1899
1900 fp = compat_ptr(ss_base + regs->bp);
Torok Edwin257ef9d2010-03-17 12:07:16 +02001901 while (entry->nr < PERF_MAX_STACK_DEPTH) {
1902 unsigned long bytes;
1903 frame.next_frame = 0;
1904 frame.return_address = 0;
1905
1906 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
1907 if (bytes != sizeof(frame))
1908 break;
1909
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07001910 if (!valid_user_frame(fp, sizeof(frame)))
1911 break;
1912
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001913 perf_callchain_store(entry, cs_base + frame.return_address);
1914 fp = compat_ptr(ss_base + frame.next_frame);
Torok Edwin257ef9d2010-03-17 12:07:16 +02001915 }
1916 return 1;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001917}
Torok Edwin257ef9d2010-03-17 12:07:16 +02001918#else
1919static inline int
1920perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
1921{
1922 return 0;
1923}
1924#endif
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001925
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02001926void
1927perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001928{
1929 struct stack_frame frame;
1930 const void __user *fp;
1931
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001932 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
1933 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02001934 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001935 }
Ingo Molnar5a6cec32009-05-29 11:25:09 +02001936
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001937 /*
1938 * We don't know what to do with VM86 stacks.. ignore them for now.
1939 */
1940 if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
1941 return;
1942
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001943 fp = (void __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001944
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001945 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001946
Andrey Vagin20afc602011-08-30 12:32:36 +04001947 if (!current->mm)
1948 return;
1949
Torok Edwin257ef9d2010-03-17 12:07:16 +02001950 if (perf_callchain_user32(regs, entry))
1951 return;
1952
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001953 while (entry->nr < PERF_MAX_STACK_DEPTH) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02001954 unsigned long bytes;
Ingo Molnar038e8362009-06-15 09:57:59 +02001955 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001956 frame.return_address = 0;
1957
Torok Edwin257ef9d2010-03-17 12:07:16 +02001958 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
1959 if (bytes != sizeof(frame))
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001960 break;
1961
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07001962 if (!valid_user_frame(fp, sizeof(frame)))
1963 break;
1964
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001965 perf_callchain_store(entry, frame.return_address);
Ingo Molnar038e8362009-06-15 09:57:59 +02001966 fp = frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001967 }
1968}
1969
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02001970/*
1971 * Deal with code segment offsets for the various execution modes:
1972 *
1973 * VM86 - the good olde 16 bit days, where the linear address is
1974 * 20 bits and we use regs->ip + 0x10 * regs->cs.
1975 *
1976 * IA32 - Where we need to look at GDT/LDT segment descriptor tables
1977 * to figure out what the 32bit base address is.
1978 *
1979 * X32 - has TIF_X32 set, but is running in x86_64
1980 *
1981 * X86_64 - CS,DS,SS,ES are all zero based.
1982 */
1983static unsigned long code_segment_base(struct pt_regs *regs)
1984{
1985 /*
1986 * If we are in VM86 mode, add the segment offset to convert to a
1987 * linear address.
1988 */
1989 if (regs->flags & X86_VM_MASK)
1990 return 0x10 * regs->cs;
1991
1992 /*
1993 * For IA32 we look at the GDT/LDT segment base to convert the
1994 * effective IP to a linear address.
1995 */
1996#ifdef CONFIG_X86_32
1997 if (user_mode(regs) && regs->cs != __USER_CS)
1998 return get_segment_base(regs->cs);
1999#else
2000 if (test_thread_flag(TIF_IA32)) {
2001 if (user_mode(regs) && regs->cs != __USER32_CS)
2002 return get_segment_base(regs->cs);
2003 }
2004#endif
2005 return 0;
2006}
2007
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002008unsigned long perf_instruction_pointer(struct pt_regs *regs)
2009{
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002010 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002011 return perf_guest_cbs->get_guest_ip();
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002012
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002013 return regs->ip + code_segment_base(regs);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002014}
2015
2016unsigned long perf_misc_flags(struct pt_regs *regs)
2017{
2018 int misc = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002019
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002020 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002021 if (perf_guest_cbs->is_user_mode())
2022 misc |= PERF_RECORD_MISC_GUEST_USER;
2023 else
2024 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2025 } else {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002026 if (user_mode(regs))
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002027 misc |= PERF_RECORD_MISC_USER;
2028 else
2029 misc |= PERF_RECORD_MISC_KERNEL;
2030 }
2031
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002032 if (regs->flags & PERF_EFLAGS_EXACT)
Peter Zijlstraab608342010-04-08 23:03:20 +02002033 misc |= PERF_RECORD_MISC_EXACT_IP;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002034
2035 return misc;
2036}
Gleb Natapovb3d94682011-11-10 14:57:27 +02002037
2038void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2039{
2040 cap->version = x86_pmu.version;
2041 cap->num_counters_gp = x86_pmu.num_counters;
2042 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2043 cap->bit_width_gp = x86_pmu.cntval_bits;
2044 cap->bit_width_fixed = x86_pmu.cntval_bits;
2045 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
2046 cap->events_mask_len = x86_pmu.events_mask_len;
2047}
2048EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);