blob: e677d9923f4f1d483721b3a0f1aa566d2dfbbfa7 [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>
Ingo Molnar241771e2008-12-03 10:39:53 +010035
Kevin Winchesterde0428a2011-08-30 20:41:05 -030036#include "perf_event.h"
37
Kevin Winchesterde0428a2011-08-30 20:41:05 -030038struct x86_pmu x86_pmu __read_mostly;
Stephane Eranianefc9f052011-06-06 16:57:03 +020039
Kevin Winchesterde0428a2011-08-30 20:41:05 -030040DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +010041 .enabled = 1,
42};
Ingo Molnar241771e2008-12-03 10:39:53 +010043
Kevin Winchesterde0428a2011-08-30 20:41:05 -030044u64 __read_mostly hw_cache_event_ids
Ingo Molnar8326f442009-06-05 20:22:46 +020045 [PERF_COUNT_HW_CACHE_MAX]
46 [PERF_COUNT_HW_CACHE_OP_MAX]
47 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -030048u64 __read_mostly hw_cache_extra_regs
Andi Kleene994d7d2011-03-03 10:34:48 +080049 [PERF_COUNT_HW_CACHE_MAX]
50 [PERF_COUNT_HW_CACHE_OP_MAX]
51 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Ingo Molnar8326f442009-06-05 20:22:46 +020052
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +053053/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020054 * Propagate event elapsed time into the generic event.
55 * Can only be executed on the CPU where the event is active.
Ingo Molnaree060942008-12-13 09:00:03 +010056 * Returns the delta events processed.
57 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -030058u64 x86_perf_event_update(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +010059{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010060 struct hw_perf_event *hwc = &event->hw;
Robert Richter948b1bb2010-03-29 18:36:50 +020061 int shift = 64 - x86_pmu.cntval_bits;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020062 u64 prev_raw_count, new_raw_count;
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010063 int idx = hwc->idx;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020064 s64 delta;
Ingo Molnaree060942008-12-13 09:00:03 +010065
Markus Metzger30dd5682009-07-21 15:56:48 +020066 if (idx == X86_PMC_IDX_FIXED_BTS)
67 return 0;
68
Ingo Molnaree060942008-12-13 09:00:03 +010069 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020070 * Careful: an NMI might modify the previous event value.
Ingo Molnaree060942008-12-13 09:00:03 +010071 *
72 * Our tactic to handle this is to first atomically read and
73 * exchange a new raw count - then add that new-prev delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020074 * count to the generic event atomically:
Ingo Molnaree060942008-12-13 09:00:03 +010075 */
76again:
Peter Zijlstrae7850592010-05-21 14:43:08 +020077 prev_raw_count = local64_read(&hwc->prev_count);
Vince Weaverc48b6052012-03-01 17:28:14 -050078 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
Ingo Molnaree060942008-12-13 09:00:03 +010079
Peter Zijlstrae7850592010-05-21 14:43:08 +020080 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Ingo Molnaree060942008-12-13 09:00:03 +010081 new_raw_count) != prev_raw_count)
82 goto again;
83
84 /*
85 * Now we have the new raw value and have updated the prev
86 * timestamp already. We can now calculate the elapsed delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020087 * (event-)time and add that to the generic event.
Ingo Molnaree060942008-12-13 09:00:03 +010088 *
89 * Careful, not all hw sign-extends above the physical width
Peter Zijlstraec3232b2009-05-13 09:45:19 +020090 * of the count.
Ingo Molnaree060942008-12-13 09:00:03 +010091 */
Peter Zijlstraec3232b2009-05-13 09:45:19 +020092 delta = (new_raw_count << shift) - (prev_raw_count << shift);
93 delta >>= shift;
Ingo Molnaree060942008-12-13 09:00:03 +010094
Peter Zijlstrae7850592010-05-21 14:43:08 +020095 local64_add(delta, &event->count);
96 local64_sub(delta, &hwc->period_left);
Robert Richter4b7bfd02009-04-29 12:47:22 +020097
98 return new_raw_count;
Ingo Molnaree060942008-12-13 09:00:03 +010099}
100
Andi Kleena7e3ed12011-03-03 10:34:47 +0800101/*
102 * Find and validate any extra registers to set up.
103 */
104static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
105{
Stephane Eranianefc9f052011-06-06 16:57:03 +0200106 struct hw_perf_event_extra *reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800107 struct extra_reg *er;
108
Stephane Eranianefc9f052011-06-06 16:57:03 +0200109 reg = &event->hw.extra_reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800110
111 if (!x86_pmu.extra_regs)
112 return 0;
113
114 for (er = x86_pmu.extra_regs; er->msr; er++) {
115 if (er->event != (config & er->config_mask))
116 continue;
117 if (event->attr.config1 & ~er->valid_mask)
118 return -EINVAL;
Stephane Eranianefc9f052011-06-06 16:57:03 +0200119
120 reg->idx = er->idx;
121 reg->config = event->attr.config1;
122 reg->reg = er->msr;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800123 break;
124 }
125 return 0;
126}
127
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200128static atomic_t active_events;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200129static DEFINE_MUTEX(pmc_reserve_mutex);
130
Robert Richterb27ea292010-03-17 12:49:10 +0100131#ifdef CONFIG_X86_LOCAL_APIC
132
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200133static bool reserve_pmc_hardware(void)
134{
135 int i;
136
Robert Richter948b1bb2010-03-29 18:36:50 +0200137 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100138 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200139 goto perfctr_fail;
140 }
141
Robert Richter948b1bb2010-03-29 18:36:50 +0200142 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100143 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200144 goto eventsel_fail;
145 }
146
147 return true;
148
149eventsel_fail:
150 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100151 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200152
Robert Richter948b1bb2010-03-29 18:36:50 +0200153 i = x86_pmu.num_counters;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200154
155perfctr_fail:
156 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100157 release_perfctr_nmi(x86_pmu_event_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200158
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200159 return false;
160}
161
162static void release_pmc_hardware(void)
163{
164 int i;
165
Robert Richter948b1bb2010-03-29 18:36:50 +0200166 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100167 release_perfctr_nmi(x86_pmu_event_addr(i));
168 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200169 }
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200170}
171
Robert Richterb27ea292010-03-17 12:49:10 +0100172#else
173
174static bool reserve_pmc_hardware(void) { return true; }
175static void release_pmc_hardware(void) {}
176
177#endif
178
Don Zickus33c6d6a2010-11-22 16:55:23 -0500179static bool check_hw_exists(void)
180{
181 u64 val, val_new = 0;
Peter Zijlstra44072042010-12-08 15:56:23 +0100182 int i, reg, ret = 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500183
Peter Zijlstra44072042010-12-08 15:56:23 +0100184 /*
185 * Check to see if the BIOS enabled any of the counters, if so
186 * complain and bail.
187 */
188 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100189 reg = x86_pmu_config_addr(i);
Peter Zijlstra44072042010-12-08 15:56:23 +0100190 ret = rdmsrl_safe(reg, &val);
191 if (ret)
192 goto msr_fail;
193 if (val & ARCH_PERFMON_EVENTSEL_ENABLE)
194 goto bios_fail;
195 }
196
197 if (x86_pmu.num_counters_fixed) {
198 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
199 ret = rdmsrl_safe(reg, &val);
200 if (ret)
201 goto msr_fail;
202 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
203 if (val & (0x03 << i*4))
204 goto bios_fail;
205 }
206 }
207
208 /*
209 * Now write a value and read it back to see if it matches,
210 * this is needed to detect certain hardware emulators (qemu/kvm)
211 * that don't trap on the MSR access and always return 0s.
212 */
Don Zickus33c6d6a2010-11-22 16:55:23 -0500213 val = 0xabcdUL;
H. Peter Anvin715c85b2012-06-07 13:32:04 -0700214 ret = wrmsrl_safe(x86_pmu_event_addr(0), val);
Robert Richter41bf4982011-02-02 17:40:57 +0100215 ret |= rdmsrl_safe(x86_pmu_event_addr(0), &val_new);
Don Zickus33c6d6a2010-11-22 16:55:23 -0500216 if (ret || val != val_new)
Peter Zijlstra44072042010-12-08 15:56:23 +0100217 goto msr_fail;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500218
219 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100220
221bios_fail:
Ingo Molnar45daae52011-03-25 10:24:23 +0100222 /*
223 * We still allow the PMU driver to operate:
224 */
225 printk(KERN_CONT "Broken BIOS detected, complain to your hardware vendor.\n");
Peter Zijlstra44072042010-12-08 15:56:23 +0100226 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 +0100227
228 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100229
230msr_fail:
231 printk(KERN_CONT "Broken PMU hardware detected, using software events only.\n");
Ingo Molnar45daae52011-03-25 10:24:23 +0100232
Peter Zijlstra44072042010-12-08 15:56:23 +0100233 return false;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500234}
235
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200236static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200237{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200238 if (atomic_dec_and_mutex_lock(&active_events, &pmc_reserve_mutex)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200239 release_pmc_hardware();
Peter Zijlstraca037702010-03-02 19:52:12 +0100240 release_ds_buffers();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200241 mutex_unlock(&pmc_reserve_mutex);
242 }
243}
244
Robert Richter85cf9db2009-04-29 12:47:20 +0200245static inline int x86_pmu_initialized(void)
246{
247 return x86_pmu.handle_irq != NULL;
248}
249
Ingo Molnar8326f442009-06-05 20:22:46 +0200250static inline int
Andi Kleene994d7d2011-03-03 10:34:48 +0800251set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
Ingo Molnar8326f442009-06-05 20:22:46 +0200252{
Andi Kleene994d7d2011-03-03 10:34:48 +0800253 struct perf_event_attr *attr = &event->attr;
Ingo Molnar8326f442009-06-05 20:22:46 +0200254 unsigned int cache_type, cache_op, cache_result;
255 u64 config, val;
256
257 config = attr->config;
258
259 cache_type = (config >> 0) & 0xff;
260 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
261 return -EINVAL;
262
263 cache_op = (config >> 8) & 0xff;
264 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
265 return -EINVAL;
266
267 cache_result = (config >> 16) & 0xff;
268 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
269 return -EINVAL;
270
271 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
272
273 if (val == 0)
274 return -ENOENT;
275
276 if (val == -1)
277 return -EINVAL;
278
279 hwc->config |= val;
Andi Kleene994d7d2011-03-03 10:34:48 +0800280 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
281 return x86_pmu_extra_regs(val, event);
Ingo Molnar8326f442009-06-05 20:22:46 +0200282}
283
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300284int x86_setup_perfctr(struct perf_event *event)
Robert Richterc1726f32010-04-13 22:23:11 +0200285{
286 struct perf_event_attr *attr = &event->attr;
287 struct hw_perf_event *hwc = &event->hw;
288 u64 config;
289
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +0100290 if (!is_sampling_event(event)) {
Robert Richterc1726f32010-04-13 22:23:11 +0200291 hwc->sample_period = x86_pmu.max_period;
292 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200293 local64_set(&hwc->period_left, hwc->sample_period);
Robert Richterc1726f32010-04-13 22:23:11 +0200294 } else {
295 /*
296 * If we have a PMU initialized but no APIC
297 * interrupts, we cannot sample hardware
298 * events (user-space has to fall back and
299 * sample via a hrtimer based software event):
300 */
301 if (!x86_pmu.apic)
302 return -EOPNOTSUPP;
303 }
304
305 if (attr->type == PERF_TYPE_RAW)
Peter Zijlstraed13ec52011-11-14 10:03:25 +0100306 return x86_pmu_extra_regs(event->attr.config, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200307
308 if (attr->type == PERF_TYPE_HW_CACHE)
Andi Kleene994d7d2011-03-03 10:34:48 +0800309 return set_ext_hw_attr(hwc, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200310
311 if (attr->config >= x86_pmu.max_events)
312 return -EINVAL;
313
314 /*
315 * The generic map:
316 */
317 config = x86_pmu.event_map(attr->config);
318
319 if (config == 0)
320 return -ENOENT;
321
322 if (config == -1LL)
323 return -EINVAL;
324
325 /*
326 * Branch tracing:
327 */
Peter Zijlstra18a073a2011-04-26 13:24:33 +0200328 if (attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
329 !attr->freq && hwc->sample_period == 1) {
Robert Richterc1726f32010-04-13 22:23:11 +0200330 /* BTS is not supported by this architecture. */
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200331 if (!x86_pmu.bts_active)
Robert Richterc1726f32010-04-13 22:23:11 +0200332 return -EOPNOTSUPP;
333
334 /* BTS is currently only allowed for user-mode. */
335 if (!attr->exclude_kernel)
336 return -EOPNOTSUPP;
337 }
338
339 hwc->config |= config;
340
341 return 0;
342}
Robert Richter4261e0e2010-04-13 22:23:10 +0200343
Stephane Eranianff3fb512012-02-09 23:20:54 +0100344/*
345 * check that branch_sample_type is compatible with
346 * settings needed for precise_ip > 1 which implies
347 * using the LBR to capture ALL taken branches at the
348 * priv levels of the measurement
349 */
350static inline int precise_br_compat(struct perf_event *event)
351{
352 u64 m = event->attr.branch_sample_type;
353 u64 b = 0;
354
355 /* must capture all branches */
356 if (!(m & PERF_SAMPLE_BRANCH_ANY))
357 return 0;
358
359 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
360
361 if (!event->attr.exclude_user)
362 b |= PERF_SAMPLE_BRANCH_USER;
363
364 if (!event->attr.exclude_kernel)
365 b |= PERF_SAMPLE_BRANCH_KERNEL;
366
367 /*
368 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
369 */
370
371 return m == b;
372}
373
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300374int x86_pmu_hw_config(struct perf_event *event)
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300375{
Peter Zijlstraab608342010-04-08 23:03:20 +0200376 if (event->attr.precise_ip) {
377 int precise = 0;
378
379 /* Support for constant skid */
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200380 if (x86_pmu.pebs_active) {
Peter Zijlstraab608342010-04-08 23:03:20 +0200381 precise++;
382
Peter Zijlstra5553be22010-10-19 14:38:11 +0200383 /* Support for IP fixup */
384 if (x86_pmu.lbr_nr)
385 precise++;
386 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200387
388 if (event->attr.precise_ip > precise)
389 return -EOPNOTSUPP;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100390 /*
391 * check that PEBS LBR correction does not conflict with
392 * whatever the user is asking with attr->branch_sample_type
393 */
394 if (event->attr.precise_ip > 1) {
395 u64 *br_type = &event->attr.branch_sample_type;
396
397 if (has_branch_stack(event)) {
398 if (!precise_br_compat(event))
399 return -EOPNOTSUPP;
400
401 /* branch_sample_type is compatible */
402
403 } else {
404 /*
405 * user did not specify branch_sample_type
406 *
407 * For PEBS fixups, we capture all
408 * the branches at the priv level of the
409 * event.
410 */
411 *br_type = PERF_SAMPLE_BRANCH_ANY;
412
413 if (!event->attr.exclude_user)
414 *br_type |= PERF_SAMPLE_BRANCH_USER;
415
416 if (!event->attr.exclude_kernel)
417 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
418 }
419 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200420 }
421
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300422 /*
423 * Generate PMC IRQs:
424 * (keep 'enabled' bit clear for now)
425 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200426 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300427
428 /*
429 * Count user and OS events unless requested not to
430 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200431 if (!event->attr.exclude_user)
432 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
433 if (!event->attr.exclude_kernel)
434 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
435
436 if (event->attr.type == PERF_TYPE_RAW)
437 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300438
Robert Richter9d0fcba62010-04-13 22:23:12 +0200439 return x86_setup_perfctr(event);
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300440}
441
Ingo Molnaree060942008-12-13 09:00:03 +0100442/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200443 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100444 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200445static int __x86_pmu_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100446{
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200447 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100448
Robert Richter85cf9db2009-04-29 12:47:20 +0200449 if (!x86_pmu_initialized())
450 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100451
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200452 err = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200453 if (!atomic_inc_not_zero(&active_events)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200454 mutex_lock(&pmc_reserve_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200455 if (atomic_read(&active_events) == 0) {
Markus Metzger30dd5682009-07-21 15:56:48 +0200456 if (!reserve_pmc_hardware())
457 err = -EBUSY;
Peter Zijlstraf80c9e32010-10-19 14:50:02 +0200458 else
459 reserve_ds_buffers();
Markus Metzger30dd5682009-07-21 15:56:48 +0200460 }
461 if (!err)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200462 atomic_inc(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200463 mutex_unlock(&pmc_reserve_mutex);
464 }
465 if (err)
466 return err;
467
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200468 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200469
Robert Richter4261e0e2010-04-13 22:23:10 +0200470 event->hw.idx = -1;
471 event->hw.last_cpu = -1;
472 event->hw.last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200473
Stephane Eranianefc9f052011-06-06 16:57:03 +0200474 /* mark unused */
475 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Stephane Eranianb36817e2012-02-09 23:20:53 +0100476 event->hw.branch_reg.idx = EXTRA_REG_NONE;
477
Robert Richter9d0fcba62010-04-13 22:23:12 +0200478 return x86_pmu.hw_config(event);
Robert Richter4261e0e2010-04-13 22:23:10 +0200479}
480
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300481void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530482{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200483 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200484 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100485
Robert Richter948b1bb2010-03-29 18:36:50 +0200486 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100487 u64 val;
488
Robert Richter43f62012009-04-29 16:55:56 +0200489 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200490 continue;
Robert Richter41bf4982011-02-02 17:40:57 +0100491 rdmsrl(x86_pmu_config_addr(idx), val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100492 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200493 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100494 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richter41bf4982011-02-02 17:40:57 +0100495 wrmsrl(x86_pmu_config_addr(idx), val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530496 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530497}
498
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200499static void x86_pmu_disable(struct pmu *pmu)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530500{
Stephane Eranian1da53e02010-01-18 10:58:01 +0200501 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
502
Robert Richter85cf9db2009-04-29 12:47:20 +0200503 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200504 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200505
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100506 if (!cpuc->enabled)
507 return;
508
509 cpuc->n_added = 0;
510 cpuc->enabled = 0;
511 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200512
513 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530514}
Ingo Molnar241771e2008-12-03 10:39:53 +0100515
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300516void x86_pmu_enable_all(int added)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530517{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200518 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530519 int idx;
520
Robert Richter948b1bb2010-03-29 18:36:50 +0200521 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richterd45dd922011-02-02 17:40:56 +0100522 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100523
Robert Richter43f62012009-04-29 16:55:56 +0200524 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200525 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200526
Robert Richterd45dd922011-02-02 17:40:56 +0100527 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530528 }
529}
530
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200531static struct pmu pmu;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200532
533static inline int is_x86_event(struct perf_event *event)
534{
535 return event->pmu == &pmu;
536}
537
Robert Richter1e2ad282011-11-18 12:35:21 +0100538/*
539 * Event scheduler state:
540 *
541 * Assign events iterating over all events and counters, beginning
542 * with events with least weights first. Keep the current iterator
543 * state in struct sched_state.
544 */
545struct sched_state {
546 int weight;
547 int event; /* event index */
548 int counter; /* counter index */
549 int unassigned; /* number of events to be assigned left */
550 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
551};
552
Robert Richterbc1738f2011-11-18 12:35:22 +0100553/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
554#define SCHED_STATES_MAX 2
555
Robert Richter1e2ad282011-11-18 12:35:21 +0100556struct perf_sched {
557 int max_weight;
558 int max_events;
559 struct event_constraint **constraints;
560 struct sched_state state;
Robert Richterbc1738f2011-11-18 12:35:22 +0100561 int saved_states;
562 struct sched_state saved[SCHED_STATES_MAX];
Robert Richter1e2ad282011-11-18 12:35:21 +0100563};
564
565/*
566 * Initialize interator that runs through all events and counters.
567 */
568static void perf_sched_init(struct perf_sched *sched, struct event_constraint **c,
569 int num, int wmin, int wmax)
570{
571 int idx;
572
573 memset(sched, 0, sizeof(*sched));
574 sched->max_events = num;
575 sched->max_weight = wmax;
576 sched->constraints = c;
577
578 for (idx = 0; idx < num; idx++) {
579 if (c[idx]->weight == wmin)
580 break;
581 }
582
583 sched->state.event = idx; /* start with min weight */
584 sched->state.weight = wmin;
585 sched->state.unassigned = num;
586}
587
Robert Richterbc1738f2011-11-18 12:35:22 +0100588static void perf_sched_save_state(struct perf_sched *sched)
589{
590 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
591 return;
592
593 sched->saved[sched->saved_states] = sched->state;
594 sched->saved_states++;
595}
596
597static bool perf_sched_restore_state(struct perf_sched *sched)
598{
599 if (!sched->saved_states)
600 return false;
601
602 sched->saved_states--;
603 sched->state = sched->saved[sched->saved_states];
604
605 /* continue with next counter: */
606 clear_bit(sched->state.counter++, sched->state.used);
607
608 return true;
609}
610
Robert Richter1e2ad282011-11-18 12:35:21 +0100611/*
612 * Select a counter for the current event to schedule. Return true on
613 * success.
614 */
Robert Richterbc1738f2011-11-18 12:35:22 +0100615static bool __perf_sched_find_counter(struct perf_sched *sched)
Robert Richter1e2ad282011-11-18 12:35:21 +0100616{
617 struct event_constraint *c;
618 int idx;
619
620 if (!sched->state.unassigned)
621 return false;
622
623 if (sched->state.event >= sched->max_events)
624 return false;
625
626 c = sched->constraints[sched->state.event];
627
Peter Zijlstra4defea82011-11-10 15:15:42 +0100628 /* Prefer fixed purpose counters */
Yan, Zheng4b4969b2012-06-15 14:31:30 +0800629 if (c->idxmsk64 & (~0ULL << X86_PMC_IDX_FIXED)) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100630 idx = X86_PMC_IDX_FIXED;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700631 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100632 if (!__test_and_set_bit(idx, sched->state.used))
633 goto done;
634 }
635 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100636 /* Grab the first unused counter starting with idx */
637 idx = sched->state.counter;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700638 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_FIXED) {
Robert Richter1e2ad282011-11-18 12:35:21 +0100639 if (!__test_and_set_bit(idx, sched->state.used))
Peter Zijlstra4defea82011-11-10 15:15:42 +0100640 goto done;
Robert Richter1e2ad282011-11-18 12:35:21 +0100641 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100642
Peter Zijlstra4defea82011-11-10 15:15:42 +0100643 return false;
644
645done:
646 sched->state.counter = idx;
Robert Richter1e2ad282011-11-18 12:35:21 +0100647
Robert Richterbc1738f2011-11-18 12:35:22 +0100648 if (c->overlap)
649 perf_sched_save_state(sched);
650
651 return true;
652}
653
654static bool perf_sched_find_counter(struct perf_sched *sched)
655{
656 while (!__perf_sched_find_counter(sched)) {
657 if (!perf_sched_restore_state(sched))
658 return false;
659 }
660
Robert Richter1e2ad282011-11-18 12:35:21 +0100661 return true;
662}
663
664/*
665 * Go through all unassigned events and find the next one to schedule.
666 * Take events with the least weight first. Return true on success.
667 */
668static bool perf_sched_next_event(struct perf_sched *sched)
669{
670 struct event_constraint *c;
671
672 if (!sched->state.unassigned || !--sched->state.unassigned)
673 return false;
674
675 do {
676 /* next event */
677 sched->state.event++;
678 if (sched->state.event >= sched->max_events) {
679 /* next weight */
680 sched->state.event = 0;
681 sched->state.weight++;
682 if (sched->state.weight > sched->max_weight)
683 return false;
684 }
685 c = sched->constraints[sched->state.event];
686 } while (c->weight != sched->state.weight);
687
688 sched->state.counter = 0; /* start with first counter */
689
690 return true;
691}
692
693/*
694 * Assign a counter for each event.
695 */
Yan, Zheng4b4969b2012-06-15 14:31:30 +0800696int perf_assign_events(struct event_constraint **constraints, int n,
697 int wmin, int wmax, int *assign)
Robert Richter1e2ad282011-11-18 12:35:21 +0100698{
699 struct perf_sched sched;
700
701 perf_sched_init(&sched, constraints, n, wmin, wmax);
702
703 do {
704 if (!perf_sched_find_counter(&sched))
705 break; /* failed */
706 if (assign)
707 assign[sched.state.event] = sched.state.counter;
708 } while (perf_sched_next_event(&sched));
709
710 return sched.state.unassigned;
711}
712
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300713int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200714{
Peter Zijlstra63b14642010-01-22 16:32:17 +0100715 struct event_constraint *c, *constraints[X86_PMC_IDX_MAX];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200716 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Robert Richter1e2ad282011-11-18 12:35:21 +0100717 int i, wmin, wmax, num = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200718 struct hw_perf_event *hwc;
719
720 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
721
Robert Richter1e2ad282011-11-18 12:35:21 +0100722 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Peter Zijlstrab622d642010-02-01 15:36:30 +0100723 c = x86_pmu.get_event_constraints(cpuc, cpuc->event_list[i]);
724 constraints[i] = c;
Robert Richter1e2ad282011-11-18 12:35:21 +0100725 wmin = min(wmin, c->weight);
726 wmax = max(wmax, c->weight);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200727 }
728
729 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200730 * fastpath, try to reuse previous register
731 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100732 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200733 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstra81269a02010-01-22 14:55:22 +0100734 c = constraints[i];
Stephane Eranian81130702010-01-21 17:39:01 +0200735
736 /* never assigned */
737 if (hwc->idx == -1)
738 break;
739
740 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100741 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200742 break;
743
744 /* not already used */
745 if (test_bit(hwc->idx, used_mask))
746 break;
747
Peter Zijlstra34538ee2010-03-02 21:16:55 +0100748 __set_bit(hwc->idx, used_mask);
Stephane Eranian81130702010-01-21 17:39:01 +0200749 if (assign)
750 assign[i] = hwc->idx;
751 }
Stephane Eranian81130702010-01-21 17:39:01 +0200752
Robert Richter1e2ad282011-11-18 12:35:21 +0100753 /* slow path */
754 if (i != n)
755 num = perf_assign_events(constraints, n, wmin, wmax, assign);
Stephane Eranian81130702010-01-21 17:39:01 +0200756
Stephane Eranian1da53e02010-01-18 10:58:01 +0200757 /*
758 * scheduling failed or is just a simulation,
759 * free resources if necessary
760 */
761 if (!assign || num) {
762 for (i = 0; i < n; i++) {
763 if (x86_pmu.put_event_constraints)
764 x86_pmu.put_event_constraints(cpuc, cpuc->event_list[i]);
765 }
766 }
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100767 return num ? -EINVAL : 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200768}
769
770/*
771 * dogrp: true if must collect siblings events (group)
772 * returns total number of events and error code
773 */
774static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
775{
776 struct perf_event *event;
777 int n, max_count;
778
Robert Richter948b1bb2010-03-29 18:36:50 +0200779 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200780
781 /* current number of events already accepted */
782 n = cpuc->n_events;
783
784 if (is_x86_event(leader)) {
785 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100786 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200787 cpuc->event_list[n] = leader;
788 n++;
789 }
790 if (!dogrp)
791 return n;
792
793 list_for_each_entry(event, &leader->sibling_list, group_entry) {
794 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200795 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200796 continue;
797
798 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100799 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200800
801 cpuc->event_list[n] = event;
802 n++;
803 }
804 return n;
805}
806
Stephane Eranian1da53e02010-01-18 10:58:01 +0200807static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +0200808 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200809{
Stephane Eranian447a1942010-02-01 14:50:01 +0200810 struct hw_perf_event *hwc = &event->hw;
811
812 hwc->idx = cpuc->assign[i];
813 hwc->last_cpu = smp_processor_id();
814 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200815
816 if (hwc->idx == X86_PMC_IDX_FIXED_BTS) {
817 hwc->config_base = 0;
818 hwc->event_base = 0;
819 } else if (hwc->idx >= X86_PMC_IDX_FIXED) {
820 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
Stephane Eranianfc66c522011-03-19 18:20:05 +0100821 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - X86_PMC_IDX_FIXED);
Vince Weaverc48b6052012-03-01 17:28:14 -0500822 hwc->event_base_rdpmc = (hwc->idx - X86_PMC_IDX_FIXED) | 1<<30;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200823 } else {
Robert Richter73d6e522011-02-02 17:40:59 +0100824 hwc->config_base = x86_pmu_config_addr(hwc->idx);
825 hwc->event_base = x86_pmu_event_addr(hwc->idx);
Robert Richter76958a62012-06-15 19:06:44 +0200826 hwc->event_base_rdpmc = hwc->idx;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200827 }
828}
829
Stephane Eranian447a1942010-02-01 14:50:01 +0200830static inline int match_prev_assignment(struct hw_perf_event *hwc,
831 struct cpu_hw_events *cpuc,
832 int i)
833{
834 return hwc->idx == cpuc->assign[i] &&
835 hwc->last_cpu == smp_processor_id() &&
836 hwc->last_tag == cpuc->tags[i];
837}
838
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200839static void x86_pmu_start(struct perf_event *event, int flags);
Peter Zijlstra2e841872010-01-25 15:58:43 +0100840
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200841static void x86_pmu_enable(struct pmu *pmu)
Ingo Molnaree060942008-12-13 09:00:03 +0100842{
Stephane Eranian1da53e02010-01-18 10:58:01 +0200843 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
844 struct perf_event *event;
845 struct hw_perf_event *hwc;
Peter Zijlstra11164cd2010-03-26 14:08:44 +0100846 int i, added = cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200847
Robert Richter85cf9db2009-04-29 12:47:20 +0200848 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +0100849 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100850
851 if (cpuc->enabled)
852 return;
853
Stephane Eranian1da53e02010-01-18 10:58:01 +0200854 if (cpuc->n_added) {
Peter Zijlstra19925ce2010-03-06 13:20:40 +0100855 int n_running = cpuc->n_events - cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200856 /*
857 * apply assignment obtained either from
858 * hw_perf_group_sched_in() or x86_pmu_enable()
859 *
860 * step1: save events moving to new counters
861 * step2: reprogram moved events into new counters
862 */
Peter Zijlstra19925ce2010-03-06 13:20:40 +0100863 for (i = 0; i < n_running; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200864 event = cpuc->event_list[i];
865 hwc = &event->hw;
866
Stephane Eranian447a1942010-02-01 14:50:01 +0200867 /*
868 * we can avoid reprogramming counter if:
869 * - assigned same counter as last time
870 * - running on same CPU as last time
871 * - no other event has used the counter since
872 */
873 if (hwc->idx == -1 ||
874 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +0200875 continue;
876
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200877 /*
878 * Ensure we don't accidentally enable a stopped
879 * counter simply because we rescheduled.
880 */
881 if (hwc->state & PERF_HES_STOPPED)
882 hwc->state |= PERF_HES_ARCH;
883
884 x86_pmu_stop(event, PERF_EF_UPDATE);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200885 }
886
887 for (i = 0; i < cpuc->n_events; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200888 event = cpuc->event_list[i];
889 hwc = &event->hw;
890
Peter Zijlstra45e16a62010-03-11 13:40:30 +0100891 if (!match_prev_assignment(hwc, cpuc, i))
Stephane Eranian447a1942010-02-01 14:50:01 +0200892 x86_assign_hw_event(event, cpuc, i);
Peter Zijlstra45e16a62010-03-11 13:40:30 +0100893 else if (i < n_running)
894 continue;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200895
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200896 if (hwc->state & PERF_HES_ARCH)
897 continue;
898
899 x86_pmu_start(event, PERF_EF_RELOAD);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200900 }
901 cpuc->n_added = 0;
902 perf_events_lapic_init();
903 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100904
905 cpuc->enabled = 1;
906 barrier();
907
Peter Zijlstra11164cd2010-03-26 14:08:44 +0100908 x86_pmu.enable_all(added);
Ingo Molnaree060942008-12-13 09:00:03 +0100909}
Ingo Molnaree060942008-12-13 09:00:03 +0100910
Tejun Heo245b2e72009-06-24 15:13:48 +0900911static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +0100912
Ingo Molnaree060942008-12-13 09:00:03 +0100913/*
914 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200915 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +0100916 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300917int x86_perf_event_set_period(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100918{
Peter Zijlstra07088ed2010-03-02 20:16:01 +0100919 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200920 s64 left = local64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200921 s64 period = hwc->sample_period;
Peter Zijlstra7645a242010-03-08 13:51:31 +0100922 int ret = 0, idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +0100923
Markus Metzger30dd5682009-07-21 15:56:48 +0200924 if (idx == X86_PMC_IDX_FIXED_BTS)
925 return 0;
926
Ingo Molnaree060942008-12-13 09:00:03 +0100927 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200928 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +0100929 */
930 if (unlikely(left <= -period)) {
931 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200932 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200933 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200934 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100935 }
936
937 if (unlikely(left <= 0)) {
938 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200939 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200940 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200941 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100942 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200943 /*
Ingo Molnardfc65092009-09-21 11:31:35 +0200944 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200945 */
946 if (unlikely(left < 2))
947 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +0100948
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200949 if (left > x86_pmu.max_period)
950 left = x86_pmu.max_period;
951
Tejun Heo245b2e72009-06-24 15:13:48 +0900952 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +0100953
954 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200955 * The hw event starts counting from this event offset,
Ingo Molnaree060942008-12-13 09:00:03 +0100956 * mark it to be able to extra future deltas:
957 */
Peter Zijlstrae7850592010-05-21 14:43:08 +0200958 local64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +0100959
Robert Richter73d6e522011-02-02 17:40:59 +0100960 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +0400961
962 /*
963 * Due to erratum on certan cpu we need
964 * a second write to be sure the register
965 * is updated properly
966 */
967 if (x86_pmu.perfctr_second_write) {
Robert Richter73d6e522011-02-02 17:40:59 +0100968 wrmsrl(hwc->event_base,
Robert Richter948b1bb2010-03-29 18:36:50 +0200969 (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +0400970 }
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200971
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200972 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +0200973
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200974 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +0100975}
976
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300977void x86_pmu_enable_event(struct perf_event *event)
Robert Richter7c90cc42009-04-29 12:47:18 +0200978{
Tejun Heo0a3aee02010-12-18 16:28:55 +0100979 if (__this_cpu_read(cpu_hw_events.enabled))
Robert Richter31fa58a2010-04-13 22:23:14 +0200980 __x86_pmu_enable_event(&event->hw,
981 ARCH_PERFMON_EVENTSEL_ENABLE);
Ingo Molnar241771e2008-12-03 10:39:53 +0100982}
983
Ingo Molnaree060942008-12-13 09:00:03 +0100984/*
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200985 * Add a single event to the PMU.
Stephane Eranian1da53e02010-01-18 10:58:01 +0200986 *
987 * The event is added to the group of enabled events
988 * but only if it can be scehduled with existing events.
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200989 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200990static int x86_pmu_add(struct perf_event *event, int flags)
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200991{
992 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200993 struct hw_perf_event *hwc;
994 int assign[X86_PMC_IDX_MAX];
995 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200996
Stephane Eranian1da53e02010-01-18 10:58:01 +0200997 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200998
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200999 perf_pmu_disable(event->pmu);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001000 n0 = cpuc->n_events;
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001001 ret = n = collect_events(cpuc, event, false);
1002 if (ret < 0)
1003 goto out;
Ingo Molnar53b441a2009-05-25 21:41:28 +02001004
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001005 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1006 if (!(flags & PERF_EF_START))
1007 hwc->state |= PERF_HES_ARCH;
1008
Lin Ming4d1c52b2010-04-23 13:56:12 +08001009 /*
1010 * If group events scheduling transaction was started,
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001011 * skip the schedulability test here, it will be performed
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001012 * at commit time (->commit_txn) as a whole
Lin Ming4d1c52b2010-04-23 13:56:12 +08001013 */
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001014 if (cpuc->group_flag & PERF_EVENT_TXN)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001015 goto done_collect;
Lin Ming4d1c52b2010-04-23 13:56:12 +08001016
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001017 ret = x86_pmu.schedule_events(cpuc, n, assign);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001018 if (ret)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001019 goto out;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001020 /*
1021 * copy new assignment, now we know it is possible
1022 * will be used by hw_perf_enable()
1023 */
1024 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +01001025
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001026done_collect:
Stephane Eranian1da53e02010-01-18 10:58:01 +02001027 cpuc->n_events = n;
Peter Zijlstra356e1f22010-03-06 13:49:56 +01001028 cpuc->n_added += n - n0;
Stephane Eranian90151c352010-05-25 16:23:10 +02001029 cpuc->n_txn += n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +01001030
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001031 ret = 0;
1032out:
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001033 perf_pmu_enable(event->pmu);
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001034 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001035}
1036
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001037static void x86_pmu_start(struct perf_event *event, int flags)
Stephane Eraniand76a0812010-02-08 17:06:01 +02001038{
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001039 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1040 int idx = event->hw.idx;
1041
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001042 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1043 return;
Stephane Eraniand76a0812010-02-08 17:06:01 +02001044
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001045 if (WARN_ON_ONCE(idx == -1))
1046 return;
1047
1048 if (flags & PERF_EF_RELOAD) {
1049 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1050 x86_perf_event_set_period(event);
1051 }
1052
1053 event->hw.state = 0;
1054
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001055 cpuc->events[idx] = event;
1056 __set_bit(idx, cpuc->active_mask);
Robert Richter63e6be62010-09-15 18:20:34 +02001057 __set_bit(idx, cpuc->running);
Peter Zijlstraaff3d912010-03-02 20:32:08 +01001058 x86_pmu.enable(event);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001059 perf_event_update_userpage(event);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001060}
1061
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001062void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001063{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001064 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Peter Zijlstraca037702010-03-02 19:52:12 +01001065 u64 pebs;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001066 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001067 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001068 int cpu, idx;
1069
Robert Richter948b1bb2010-03-29 18:36:50 +02001070 if (!x86_pmu.num_counters)
Ingo Molnar1e125672008-12-09 12:18:18 +01001071 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001072
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001073 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001074
1075 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001076 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001077
Robert Richterfaa28ae2009-04-29 12:47:13 +02001078 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301079 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1080 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1081 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1082 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Peter Zijlstraca037702010-03-02 19:52:12 +01001083 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
Ingo Molnar241771e2008-12-03 10:39:53 +01001084
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301085 pr_info("\n");
1086 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1087 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1088 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1089 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Peter Zijlstraca037702010-03-02 19:52:12 +01001090 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301091 }
Peter Zijlstra7645a242010-03-08 13:51:31 +01001092 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001093
Robert Richter948b1bb2010-03-29 18:36:50 +02001094 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter41bf4982011-02-02 17:40:57 +01001095 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1096 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001097
Tejun Heo245b2e72009-06-24 15:13:48 +09001098 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001099
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301100 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001101 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301102 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001103 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301104 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001105 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001106 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001107 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001108 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1109
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301110 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001111 cpu, idx, pmc_count);
1112 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001113 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001114}
1115
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001116void x86_pmu_stop(struct perf_event *event, int flags)
Ingo Molnar241771e2008-12-03 10:39:53 +01001117{
Stephane Eraniand76a0812010-02-08 17:06:01 +02001118 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001119 struct hw_perf_event *hwc = &event->hw;
Ingo Molnar241771e2008-12-03 10:39:53 +01001120
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001121 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1122 x86_pmu.disable(event);
1123 cpuc->events[hwc->idx] = NULL;
1124 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1125 hwc->state |= PERF_HES_STOPPED;
1126 }
Peter Zijlstra71e2d282010-03-08 17:51:33 +01001127
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001128 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1129 /*
1130 * Drain the remaining delta count out of a event
1131 * that we are disabling:
1132 */
1133 x86_perf_event_update(event);
1134 hwc->state |= PERF_HES_UPTODATE;
1135 }
Peter Zijlstra2e841872010-01-25 15:58:43 +01001136}
1137
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001138static void x86_pmu_del(struct perf_event *event, int flags)
Peter Zijlstra2e841872010-01-25 15:58:43 +01001139{
1140 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1141 int i;
1142
Stephane Eranian90151c352010-05-25 16:23:10 +02001143 /*
1144 * If we're called during a txn, we don't need to do anything.
1145 * The events never got scheduled and ->cancel_txn will truncate
1146 * the event_list.
1147 */
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001148 if (cpuc->group_flag & PERF_EVENT_TXN)
Stephane Eranian90151c352010-05-25 16:23:10 +02001149 return;
1150
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001151 x86_pmu_stop(event, PERF_EF_UPDATE);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001152
Stephane Eranian1da53e02010-01-18 10:58:01 +02001153 for (i = 0; i < cpuc->n_events; i++) {
1154 if (event == cpuc->event_list[i]) {
1155
1156 if (x86_pmu.put_event_constraints)
1157 x86_pmu.put_event_constraints(cpuc, event);
1158
1159 while (++i < cpuc->n_events)
1160 cpuc->event_list[i-1] = cpuc->event_list[i];
1161
1162 --cpuc->n_events;
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001163 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001164 }
1165 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001166 perf_event_update_userpage(event);
Ingo Molnar241771e2008-12-03 10:39:53 +01001167}
1168
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001169int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001170{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001171 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001172 struct cpu_hw_events *cpuc;
1173 struct perf_event *event;
Vince Weaver11d15782009-07-08 17:46:14 -04001174 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001175 u64 val;
1176
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001177 cpuc = &__get_cpu_var(cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001178
Don Zickus2bce5da2011-04-27 06:32:33 -04001179 /*
1180 * Some chipsets need to unmask the LVTPC in a particular spot
1181 * inside the nmi handler. As a result, the unmasking was pushed
1182 * into all the nmi handlers.
1183 *
1184 * This generic handler doesn't seem to have any issues where the
1185 * unmasking occurs so it was left at the top.
1186 */
1187 apic_write(APIC_LVTPC, APIC_DM_NMI);
1188
Robert Richter948b1bb2010-03-29 18:36:50 +02001189 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter63e6be62010-09-15 18:20:34 +02001190 if (!test_bit(idx, cpuc->active_mask)) {
1191 /*
1192 * Though we deactivated the counter some cpus
1193 * might still deliver spurious interrupts still
1194 * in flight. Catch them:
1195 */
1196 if (__test_and_clear_bit(idx, cpuc->running))
1197 handled++;
Robert Richtera29aa8a2009-04-29 12:47:21 +02001198 continue;
Robert Richter63e6be62010-09-15 18:20:34 +02001199 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001200
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001201 event = cpuc->events[idx];
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001202
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001203 val = x86_perf_event_update(event);
Robert Richter948b1bb2010-03-29 18:36:50 +02001204 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001205 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001206
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001207 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001208 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001209 */
Robert Richter4177c422010-09-02 15:07:48 -04001210 handled++;
Robert Richterfd0d0002012-04-02 20:19:08 +02001211 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001212
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001213 if (!x86_perf_event_set_period(event))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001214 continue;
1215
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001216 if (perf_event_overflow(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001217 x86_pmu_stop(event, 0);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001218 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001219
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001220 if (handled)
1221 inc_irq_stat(apic_perf_irqs);
1222
Robert Richtera29aa8a2009-04-29 12:47:21 +02001223 return handled;
1224}
Robert Richter39d81ea2009-04-29 12:47:05 +02001225
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001226void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001227{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001228 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001229 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001230
Ingo Molnar241771e2008-12-03 10:39:53 +01001231 /*
Yong Wangc323d952009-05-29 13:28:35 +08001232 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001233 */
Yong Wangc323d952009-05-29 13:28:35 +08001234 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar241771e2008-12-03 10:39:53 +01001235}
1236
1237static int __kprobes
Don Zickus9c48f1c2011-09-30 15:06:21 -04001238perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
Ingo Molnar241771e2008-12-03 10:39:53 +01001239{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001240 if (!atomic_read(&active_events))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001241 return NMI_DONE;
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001242
Don Zickus9c48f1c2011-09-30 15:06:21 -04001243 return x86_pmu.handle_irq(regs);
Ingo Molnar241771e2008-12-03 10:39:53 +01001244}
1245
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001246struct event_constraint emptyconstraint;
1247struct event_constraint unconstrained;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301248
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001249static int __cpuinit
1250x86_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1251{
1252 unsigned int cpu = (long)hcpu;
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001253 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001254 int ret = NOTIFY_OK;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001255
1256 switch (action & ~CPU_TASKS_FROZEN) {
1257 case CPU_UP_PREPARE:
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001258 cpuc->kfree_on_online = NULL;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001259 if (x86_pmu.cpu_prepare)
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001260 ret = x86_pmu.cpu_prepare(cpu);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001261 break;
1262
1263 case CPU_STARTING:
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001264 if (x86_pmu.attr_rdpmc)
1265 set_in_cr4(X86_CR4_PCE);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001266 if (x86_pmu.cpu_starting)
1267 x86_pmu.cpu_starting(cpu);
1268 break;
1269
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001270 case CPU_ONLINE:
1271 kfree(cpuc->kfree_on_online);
1272 break;
1273
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001274 case CPU_DYING:
1275 if (x86_pmu.cpu_dying)
1276 x86_pmu.cpu_dying(cpu);
1277 break;
1278
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001279 case CPU_UP_CANCELED:
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001280 case CPU_DEAD:
1281 if (x86_pmu.cpu_dead)
1282 x86_pmu.cpu_dead(cpu);
1283 break;
1284
1285 default:
1286 break;
1287 }
1288
Peter Zijlstrab38b24e2010-03-23 19:31:15 +01001289 return ret;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001290}
1291
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001292static void __init pmu_check_apic(void)
1293{
1294 if (cpu_has_apic)
1295 return;
1296
1297 x86_pmu.apic = 0;
1298 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1299 pr_info("no hardware sampling interrupt available.\n");
1300}
1301
Jiri Olsa641cc932012-03-15 20:09:14 +01001302static struct attribute_group x86_pmu_format_group = {
1303 .name = "format",
1304 .attrs = NULL,
1305};
1306
Yinghai Ludda99112011-01-21 15:30:01 -08001307static int __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301308{
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001309 struct x86_pmu_quirk *quirk;
Peter Zijlstrab622d642010-02-01 15:36:30 +01001310 struct event_constraint *c;
Robert Richter72eae042009-04-29 12:47:10 +02001311 int err;
1312
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001313 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001314
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301315 switch (boot_cpu_data.x86_vendor) {
1316 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001317 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301318 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301319 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001320 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301321 break;
Robert Richter41389602009-04-29 12:47:00 +02001322 default:
Peter Zijlstra004417a2010-11-25 18:38:29 +01001323 return 0;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301324 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001325 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001326 pr_cont("no PMU driver, software events only.\n");
Peter Zijlstra004417a2010-11-25 18:38:29 +01001327 return 0;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001328 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301329
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001330 pmu_check_apic();
1331
Don Zickus33c6d6a2010-11-22 16:55:23 -05001332 /* sanity check that the hardware exists or is emulated */
Peter Zijlstra44072042010-12-08 15:56:23 +01001333 if (!check_hw_exists())
Peter Zijlstra004417a2010-11-25 18:38:29 +01001334 return 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -05001335
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001336 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001337
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001338 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1339 quirk->func();
Peter Zijlstra3c447802010-03-04 21:49:01 +01001340
Robert Richter948b1bb2010-03-29 18:36:50 +02001341 if (x86_pmu.num_counters > X86_PMC_MAX_GENERIC) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001342 WARN(1, KERN_ERR "hw perf events %d > max(%d), clipping!",
Robert Richter948b1bb2010-03-29 18:36:50 +02001343 x86_pmu.num_counters, X86_PMC_MAX_GENERIC);
1344 x86_pmu.num_counters = X86_PMC_MAX_GENERIC;
Ingo Molnar241771e2008-12-03 10:39:53 +01001345 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001346 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
Ingo Molnar241771e2008-12-03 10:39:53 +01001347
Robert Richter948b1bb2010-03-29 18:36:50 +02001348 if (x86_pmu.num_counters_fixed > X86_PMC_MAX_FIXED) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001349 WARN(1, KERN_ERR "hw perf events fixed %d > max(%d), clipping!",
Robert Richter948b1bb2010-03-29 18:36:50 +02001350 x86_pmu.num_counters_fixed, X86_PMC_MAX_FIXED);
1351 x86_pmu.num_counters_fixed = X86_PMC_MAX_FIXED;
Ingo Molnar703e9372008-12-17 10:51:15 +01001352 }
Ingo Molnar241771e2008-12-03 10:39:53 +01001353
Robert Richterd6dc0b42010-03-17 12:49:13 +01001354 x86_pmu.intel_ctrl |=
Robert Richter948b1bb2010-03-29 18:36:50 +02001355 ((1LL << x86_pmu.num_counters_fixed)-1) << X86_PMC_IDX_FIXED;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001356
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001357 perf_events_lapic_init();
Don Zickus9c48f1c2011-09-30 15:06:21 -04001358 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001359
Peter Zijlstra63b14642010-01-22 16:32:17 +01001360 unconstrained = (struct event_constraint)
Robert Richter948b1bb2010-03-29 18:36:50 +02001361 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
Robert Richterbc1738f2011-11-18 12:35:22 +01001362 0, x86_pmu.num_counters, 0);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001363
Peter Zijlstrab622d642010-02-01 15:36:30 +01001364 if (x86_pmu.event_constraints) {
Stephane Eraniancd09c0c2011-12-11 00:28:51 +01001365 /*
1366 * event on fixed counter2 (REF_CYCLES) only works on this
1367 * counter, so do not extend mask to generic counters
1368 */
Peter Zijlstrab622d642010-02-01 15:36:30 +01001369 for_each_event_constraint(c, x86_pmu.event_constraints) {
Stephane Eraniancd09c0c2011-12-11 00:28:51 +01001370 if (c->cmask != X86_RAW_EVENT_MASK
1371 || c->idxmsk64 == X86_PMC_MSK_FIXED_REF_CYCLES) {
Peter Zijlstrab622d642010-02-01 15:36:30 +01001372 continue;
Stephane Eraniancd09c0c2011-12-11 00:28:51 +01001373 }
Peter Zijlstrab622d642010-02-01 15:36:30 +01001374
Robert Richter948b1bb2010-03-29 18:36:50 +02001375 c->idxmsk64 |= (1ULL << x86_pmu.num_counters) - 1;
1376 c->weight += x86_pmu.num_counters;
Peter Zijlstrab622d642010-02-01 15:36:30 +01001377 }
1378 }
1379
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001380 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
Jiri Olsa641cc932012-03-15 20:09:14 +01001381 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001382
Ingo Molnar57c0c152009-09-21 12:20:38 +02001383 pr_info("... version: %d\n", x86_pmu.version);
Robert Richter948b1bb2010-03-29 18:36:50 +02001384 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1385 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1386 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
Ingo Molnar57c0c152009-09-21 12:20:38 +02001387 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
Robert Richter948b1bb2010-03-29 18:36:50 +02001388 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
Robert Richterd6dc0b42010-03-17 12:49:13 +01001389 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001390
Peter Zijlstra2e80a822010-11-17 23:17:36 +01001391 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001392 perf_cpu_notifier(x86_pmu_notifier);
Peter Zijlstra004417a2010-11-25 18:38:29 +01001393
1394 return 0;
Ingo Molnar241771e2008-12-03 10:39:53 +01001395}
Peter Zijlstra004417a2010-11-25 18:38:29 +01001396early_initcall(init_hw_perf_events);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001397
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001398static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001399{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001400 x86_perf_event_update(event);
Ingo Molnaree060942008-12-13 09:00:03 +01001401}
1402
Lin Ming4d1c52b2010-04-23 13:56:12 +08001403/*
1404 * Start group events scheduling transaction
1405 * Set the flag to make pmu::enable() not perform the
1406 * schedulability test, it will be performed at commit time
1407 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001408static void x86_pmu_start_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001409{
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001410 perf_pmu_disable(pmu);
Tejun Heo0a3aee02010-12-18 16:28:55 +01001411 __this_cpu_or(cpu_hw_events.group_flag, PERF_EVENT_TXN);
1412 __this_cpu_write(cpu_hw_events.n_txn, 0);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001413}
1414
1415/*
1416 * Stop group events scheduling transaction
1417 * Clear the flag and pmu::enable() will perform the
1418 * schedulability test.
1419 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001420static void x86_pmu_cancel_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001421{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001422 __this_cpu_and(cpu_hw_events.group_flag, ~PERF_EVENT_TXN);
Stephane Eranian90151c352010-05-25 16:23:10 +02001423 /*
1424 * Truncate the collected events.
1425 */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001426 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1427 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001428 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001429}
1430
1431/*
1432 * Commit group events scheduling transaction
1433 * Perform the group schedulability test as a whole
1434 * Return 0 if success
1435 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001436static int x86_pmu_commit_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001437{
1438 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1439 int assign[X86_PMC_IDX_MAX];
1440 int n, ret;
1441
1442 n = cpuc->n_events;
1443
1444 if (!x86_pmu_initialized())
1445 return -EAGAIN;
1446
1447 ret = x86_pmu.schedule_events(cpuc, n, assign);
1448 if (ret)
1449 return ret;
1450
1451 /*
1452 * copy new assignment, now we know it is possible
1453 * will be used by hw_perf_enable()
1454 */
1455 memcpy(cpuc->assign, assign, n*sizeof(int));
1456
Peter Zijlstra8d2cacb2010-05-25 17:49:05 +02001457 cpuc->group_flag &= ~PERF_EVENT_TXN;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001458 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001459 return 0;
1460}
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001461/*
1462 * a fake_cpuc is used to validate event groups. Due to
1463 * the extra reg logic, we need to also allocate a fake
1464 * per_core and per_cpu structure. Otherwise, group events
1465 * using extra reg may conflict without the kernel being
1466 * able to catch this when the last event gets added to
1467 * the group.
1468 */
1469static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1470{
1471 kfree(cpuc->shared_regs);
1472 kfree(cpuc);
1473}
1474
1475static struct cpu_hw_events *allocate_fake_cpuc(void)
1476{
1477 struct cpu_hw_events *cpuc;
1478 int cpu = raw_smp_processor_id();
1479
1480 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1481 if (!cpuc)
1482 return ERR_PTR(-ENOMEM);
1483
1484 /* only needed, if we have extra_regs */
1485 if (x86_pmu.extra_regs) {
1486 cpuc->shared_regs = allocate_shared_regs(cpu);
1487 if (!cpuc->shared_regs)
1488 goto error;
1489 }
Peter Zijlstrab430f7c2012-06-05 15:30:31 +02001490 cpuc->is_fake = 1;
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001491 return cpuc;
1492error:
1493 free_fake_cpuc(cpuc);
1494 return ERR_PTR(-ENOMEM);
1495}
Lin Ming4d1c52b2010-04-23 13:56:12 +08001496
Stephane Eranian1da53e02010-01-18 10:58:01 +02001497/*
Peter Zijlstraca037702010-03-02 19:52:12 +01001498 * validate that we can schedule this event
1499 */
1500static int validate_event(struct perf_event *event)
1501{
1502 struct cpu_hw_events *fake_cpuc;
1503 struct event_constraint *c;
1504 int ret = 0;
1505
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001506 fake_cpuc = allocate_fake_cpuc();
1507 if (IS_ERR(fake_cpuc))
1508 return PTR_ERR(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001509
1510 c = x86_pmu.get_event_constraints(fake_cpuc, event);
1511
1512 if (!c || !c->weight)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001513 ret = -EINVAL;
Peter Zijlstraca037702010-03-02 19:52:12 +01001514
1515 if (x86_pmu.put_event_constraints)
1516 x86_pmu.put_event_constraints(fake_cpuc, event);
1517
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001518 free_fake_cpuc(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01001519
1520 return ret;
1521}
1522
1523/*
Stephane Eranian1da53e02010-01-18 10:58:01 +02001524 * validate a single event group
1525 *
1526 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01001527 * - check events are compatible which each other
1528 * - events do not compete for the same counter
1529 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001530 *
1531 * validation ensures the group can be loaded onto the
1532 * PMU if it was the only group available.
1533 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001534static int validate_group(struct perf_event *event)
1535{
Stephane Eranian1da53e02010-01-18 10:58:01 +02001536 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01001537 struct cpu_hw_events *fake_cpuc;
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01001538 int ret = -EINVAL, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001539
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001540 fake_cpuc = allocate_fake_cpuc();
1541 if (IS_ERR(fake_cpuc))
1542 return PTR_ERR(fake_cpuc);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001543 /*
1544 * the event is not yet connected with its
1545 * siblings therefore we must first collect
1546 * existing siblings, then add the new event
1547 * before we can simulate the scheduling
1548 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01001549 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001550 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001551 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001552
Peter Zijlstra502568d2010-01-22 14:35:46 +01001553 fake_cpuc->n_events = n;
1554 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001555 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001556 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001557
Peter Zijlstra502568d2010-01-22 14:35:46 +01001558 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001559
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001560 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001561
Peter Zijlstra502568d2010-01-22 14:35:46 +01001562out:
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001563 free_fake_cpuc(fake_cpuc);
Peter Zijlstra502568d2010-01-22 14:35:46 +01001564 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001565}
1566
Yinghai Ludda99112011-01-21 15:30:01 -08001567static int x86_pmu_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01001568{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001569 struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001570 int err;
1571
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001572 switch (event->attr.type) {
1573 case PERF_TYPE_RAW:
1574 case PERF_TYPE_HARDWARE:
1575 case PERF_TYPE_HW_CACHE:
1576 break;
1577
1578 default:
1579 return -ENOENT;
1580 }
1581
1582 err = __x86_pmu_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001583 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02001584 /*
1585 * we temporarily connect event to its pmu
1586 * such that validate_group() can classify
1587 * it as an x86 event using is_x86_event()
1588 */
1589 tmp = event->pmu;
1590 event->pmu = &pmu;
1591
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001592 if (event->group_leader != event)
1593 err = validate_group(event);
Peter Zijlstraca037702010-03-02 19:52:12 +01001594 else
1595 err = validate_event(event);
Stephane Eranian81130702010-01-21 17:39:01 +02001596
1597 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001598 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001599 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001600 if (event->destroy)
1601 event->destroy(event);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001602 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01001603
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001604 return err;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001605}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001606
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001607static int x86_pmu_event_idx(struct perf_event *event)
1608{
1609 int idx = event->hw.idx;
1610
Peter Zijlstrac7206202012-03-22 17:26:36 +01001611 if (!x86_pmu.attr_rdpmc)
1612 return 0;
1613
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001614 if (x86_pmu.num_counters_fixed && idx >= X86_PMC_IDX_FIXED) {
1615 idx -= X86_PMC_IDX_FIXED;
1616 idx |= 1 << 30;
1617 }
1618
1619 return idx + 1;
1620}
1621
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001622static ssize_t get_attr_rdpmc(struct device *cdev,
1623 struct device_attribute *attr,
1624 char *buf)
1625{
1626 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
1627}
1628
1629static void change_rdpmc(void *info)
1630{
1631 bool enable = !!(unsigned long)info;
1632
1633 if (enable)
1634 set_in_cr4(X86_CR4_PCE);
1635 else
1636 clear_in_cr4(X86_CR4_PCE);
1637}
1638
1639static ssize_t set_attr_rdpmc(struct device *cdev,
1640 struct device_attribute *attr,
1641 const char *buf, size_t count)
1642{
Shuah Khane2b297f2012-06-10 21:13:41 -06001643 unsigned long val;
1644 ssize_t ret;
1645
1646 ret = kstrtoul(buf, 0, &val);
1647 if (ret)
1648 return ret;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001649
1650 if (!!val != !!x86_pmu.attr_rdpmc) {
1651 x86_pmu.attr_rdpmc = !!val;
1652 smp_call_function(change_rdpmc, (void *)val, 1);
1653 }
1654
1655 return count;
1656}
1657
1658static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
1659
1660static struct attribute *x86_pmu_attrs[] = {
1661 &dev_attr_rdpmc.attr,
1662 NULL,
1663};
1664
1665static struct attribute_group x86_pmu_attr_group = {
1666 .attrs = x86_pmu_attrs,
1667};
1668
1669static const struct attribute_group *x86_pmu_attr_groups[] = {
1670 &x86_pmu_attr_group,
Jiri Olsa641cc932012-03-15 20:09:14 +01001671 &x86_pmu_format_group,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001672 NULL,
1673};
1674
Stephane Eraniand010b332012-02-09 23:21:00 +01001675static void x86_pmu_flush_branch_stack(void)
1676{
1677 if (x86_pmu.flush_branch_stack)
1678 x86_pmu.flush_branch_stack();
1679}
1680
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001681static struct pmu pmu = {
Stephane Eraniand010b332012-02-09 23:21:00 +01001682 .pmu_enable = x86_pmu_enable,
1683 .pmu_disable = x86_pmu_disable,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001684
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001685 .attr_groups = x86_pmu_attr_groups,
1686
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001687 .event_init = x86_pmu_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001688
Stephane Eraniand010b332012-02-09 23:21:00 +01001689 .add = x86_pmu_add,
1690 .del = x86_pmu_del,
1691 .start = x86_pmu_start,
1692 .stop = x86_pmu_stop,
1693 .read = x86_pmu_read,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001694
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001695 .start_txn = x86_pmu_start_txn,
1696 .cancel_txn = x86_pmu_cancel_txn,
1697 .commit_txn = x86_pmu_commit_txn,
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01001698
1699 .event_idx = x86_pmu_event_idx,
Stephane Eraniand010b332012-02-09 23:21:00 +01001700 .flush_branch_stack = x86_pmu_flush_branch_stack,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02001701};
1702
Peter Zijlstrac7206202012-03-22 17:26:36 +01001703void arch_perf_update_userpage(struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001704{
Peter Zijlstrac7206202012-03-22 17:26:36 +01001705 userpg->cap_usr_time = 0;
1706 userpg->cap_usr_rdpmc = x86_pmu.attr_rdpmc;
1707 userpg->pmc_width = x86_pmu.cntval_bits;
1708
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001709 if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
1710 return;
1711
1712 if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
1713 return;
1714
Peter Zijlstrac7206202012-03-22 17:26:36 +01001715 userpg->cap_usr_time = 1;
Peter Zijlstrae3f35412011-11-21 11:43:53 +01001716 userpg->time_mult = this_cpu_read(cyc2ns);
1717 userpg->time_shift = CYC2NS_SCALE_FACTOR;
1718 userpg->time_offset = this_cpu_read(cyc2ns_offset) - now;
1719}
1720
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001721/*
1722 * callchain support
1723 */
1724
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001725static int backtrace_stack(void *data, char *name)
1726{
Ingo Molnar038e8362009-06-15 09:57:59 +02001727 return 0;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001728}
1729
1730static void backtrace_address(void *data, unsigned long addr, int reliable)
1731{
1732 struct perf_callchain_entry *entry = data;
1733
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001734 perf_callchain_store(entry, addr);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001735}
1736
1737static const struct stacktrace_ops backtrace_ops = {
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001738 .stack = backtrace_stack,
1739 .address = backtrace_address,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +01001740 .walk_stack = print_context_stack_bp,
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001741};
1742
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02001743void
1744perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001745{
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001746 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
1747 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02001748 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001749 }
1750
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001751 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001752
Namhyung Kime8e999cf2011-03-18 11:40:06 +09001753 dump_trace(NULL, regs, NULL, 0, &backtrace_ops, entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001754}
1755
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07001756static inline int
1757valid_user_frame(const void __user *fp, unsigned long size)
1758{
1759 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
1760}
1761
Torok Edwin257ef9d2010-03-17 12:07:16 +02001762#ifdef CONFIG_COMPAT
H. Peter Anvind1a797f2012-02-19 10:06:34 -08001763
1764#include <asm/compat.h>
1765
Torok Edwin257ef9d2010-03-17 12:07:16 +02001766static inline int
1767perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001768{
Torok Edwin257ef9d2010-03-17 12:07:16 +02001769 /* 32-bit process in 64-bit kernel. */
1770 struct stack_frame_ia32 frame;
1771 const void __user *fp;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001772
Torok Edwin257ef9d2010-03-17 12:07:16 +02001773 if (!test_thread_flag(TIF_IA32))
1774 return 0;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001775
Torok Edwin257ef9d2010-03-17 12:07:16 +02001776 fp = compat_ptr(regs->bp);
1777 while (entry->nr < PERF_MAX_STACK_DEPTH) {
1778 unsigned long bytes;
1779 frame.next_frame = 0;
1780 frame.return_address = 0;
1781
1782 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
1783 if (bytes != sizeof(frame))
1784 break;
1785
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07001786 if (!valid_user_frame(fp, sizeof(frame)))
1787 break;
1788
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001789 perf_callchain_store(entry, frame.return_address);
Torok Edwin257ef9d2010-03-17 12:07:16 +02001790 fp = compat_ptr(frame.next_frame);
1791 }
1792 return 1;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001793}
Torok Edwin257ef9d2010-03-17 12:07:16 +02001794#else
1795static inline int
1796perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry)
1797{
1798 return 0;
1799}
1800#endif
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001801
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02001802void
1803perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001804{
1805 struct stack_frame frame;
1806 const void __user *fp;
1807
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001808 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
1809 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02001810 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02001811 }
Ingo Molnar5a6cec32009-05-29 11:25:09 +02001812
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001813 fp = (void __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001814
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001815 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001816
Andrey Vagin20afc602011-08-30 12:32:36 +04001817 if (!current->mm)
1818 return;
1819
Torok Edwin257ef9d2010-03-17 12:07:16 +02001820 if (perf_callchain_user32(regs, entry))
1821 return;
1822
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001823 while (entry->nr < PERF_MAX_STACK_DEPTH) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02001824 unsigned long bytes;
Ingo Molnar038e8362009-06-15 09:57:59 +02001825 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001826 frame.return_address = 0;
1827
Torok Edwin257ef9d2010-03-17 12:07:16 +02001828 bytes = copy_from_user_nmi(&frame, fp, sizeof(frame));
1829 if (bytes != sizeof(frame))
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001830 break;
1831
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07001832 if (!valid_user_frame(fp, sizeof(frame)))
1833 break;
1834
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02001835 perf_callchain_store(entry, frame.return_address);
Ingo Molnar038e8362009-06-15 09:57:59 +02001836 fp = frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001837 }
1838}
1839
Zhang, Yanmin39447b32010-04-19 13:32:41 +08001840unsigned long perf_instruction_pointer(struct pt_regs *regs)
1841{
1842 unsigned long ip;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08001843
Zhang, Yanmin39447b32010-04-19 13:32:41 +08001844 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
1845 ip = perf_guest_cbs->get_guest_ip();
1846 else
1847 ip = instruction_pointer(regs);
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08001848
Zhang, Yanmin39447b32010-04-19 13:32:41 +08001849 return ip;
1850}
1851
1852unsigned long perf_misc_flags(struct pt_regs *regs)
1853{
1854 int misc = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08001855
Zhang, Yanmin39447b32010-04-19 13:32:41 +08001856 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08001857 if (perf_guest_cbs->is_user_mode())
1858 misc |= PERF_RECORD_MISC_GUEST_USER;
1859 else
1860 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
1861 } else {
Peter Zijlstrace5c1fe2012-06-20 11:11:38 +02001862 if (!kernel_ip(regs->ip))
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08001863 misc |= PERF_RECORD_MISC_USER;
1864 else
1865 misc |= PERF_RECORD_MISC_KERNEL;
1866 }
1867
Zhang, Yanmin39447b32010-04-19 13:32:41 +08001868 if (regs->flags & PERF_EFLAGS_EXACT)
Peter Zijlstraab608342010-04-08 23:03:20 +02001869 misc |= PERF_RECORD_MISC_EXACT_IP;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08001870
1871 return misc;
1872}
Gleb Natapovb3d94682011-11-10 14:57:27 +02001873
1874void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
1875{
1876 cap->version = x86_pmu.version;
1877 cap->num_counters_gp = x86_pmu.num_counters;
1878 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
1879 cap->bit_width_gp = x86_pmu.cntval_bits;
1880 cap->bit_width_fixed = x86_pmu.cntval_bits;
1881 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
1882 cap->events_mask_len = x86_pmu.events_mask_len;
1883}
1884EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);