blob: e07b36c5588afa95c42a880ea56898b0fd27e83e [file] [log] [blame]
Ingo Molnar241771e2008-12-03 10:39:53 +01001/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002 * Performance events x86 architecture code
Ingo Molnar241771e2008-12-03 10:39:53 +01003 *
Ingo Molnar98144512009-04-29 14:52:50 +02004 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2009 Jaswinder Singh Rajput
7 * Copyright (C) 2009 Advanced Micro Devices, Inc., Robert Richter
Peter Zijlstra90eec102015-11-16 11:08:45 +01008 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra
Markus Metzger30dd5682009-07-21 15:56:48 +02009 * Copyright (C) 2009 Intel Corporation, <markus.t.metzger@intel.com>
Stephane Eranian1da53e02010-01-18 10:58:01 +020010 * Copyright (C) 2009 Google, Inc., Stephane Eranian
Ingo Molnar241771e2008-12-03 10:39:53 +010011 *
12 * For licencing details see kernel-base/COPYING
13 */
14
Ingo Molnarcdd6c482009-09-21 12:02:48 +020015#include <linux/perf_event.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010016#include <linux/capability.h>
17#include <linux/notifier.h>
18#include <linux/hardirq.h>
19#include <linux/kprobes.h>
Paul Gortmakereb008eb2016-07-13 20:19:01 -040020#include <linux/export.h>
21#include <linux/init.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010022#include <linux/kdebug.h>
23#include <linux/sched.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020024#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Markus Metzger30dd5682009-07-21 15:56:48 +020026#include <linux/cpu.h>
Peter Zijlstra272d30b2010-01-22 16:32:17 +010027#include <linux/bitops.h>
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010028#include <linux/device.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010029
Ingo Molnar241771e2008-12-03 10:39:53 +010030#include <asm/apic.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020031#include <asm/stacktrace.h>
Peter Zijlstra4e935e42009-03-30 19:07:16 +020032#include <asm/nmi.h>
Lin Ming69092622011-03-03 10:34:50 +080033#include <asm/smp.h>
Robert Richterc8e59102011-04-16 02:27:55 +020034#include <asm/alternative.h>
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070035#include <asm/mmu_context.h>
Andy Lutomirski375074c2014-10-24 15:58:07 -070036#include <asm/tlbflush.h>
Peter Zijlstrae3f35412011-11-21 11:43:53 +010037#include <asm/timer.h>
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +020038#include <asm/desc.h>
39#include <asm/ldt.h>
Josh Poimboeuf35f4d9b2016-09-16 14:18:13 -050040#include <asm/unwind.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010041
Borislav Petkov27f6d222016-02-10 10:55:23 +010042#include "perf_event.h"
Kevin Winchesterde0428a2011-08-30 20:41:05 -030043
Kevin Winchesterde0428a2011-08-30 20:41:05 -030044struct x86_pmu x86_pmu __read_mostly;
Stephane Eranianefc9f052011-06-06 16:57:03 +020045
Kevin Winchesterde0428a2011-08-30 20:41:05 -030046DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +010047 .enabled = 1,
48};
Ingo Molnar241771e2008-12-03 10:39:53 +010049
Andy Lutomirskia6673422014-10-24 15:58:13 -070050struct static_key rdpmc_always_available = STATIC_KEY_INIT_FALSE;
51
Kevin Winchesterde0428a2011-08-30 20:41:05 -030052u64 __read_mostly hw_cache_event_ids
Ingo Molnar8326f442009-06-05 20:22:46 +020053 [PERF_COUNT_HW_CACHE_MAX]
54 [PERF_COUNT_HW_CACHE_OP_MAX]
55 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -030056u64 __read_mostly hw_cache_extra_regs
Andi Kleene994d7d2011-03-03 10:34:48 +080057 [PERF_COUNT_HW_CACHE_MAX]
58 [PERF_COUNT_HW_CACHE_OP_MAX]
59 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Ingo Molnar8326f442009-06-05 20:22:46 +020060
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +053061/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020062 * Propagate event elapsed time into the generic event.
63 * Can only be executed on the CPU where the event is active.
Ingo Molnaree060942008-12-13 09:00:03 +010064 * Returns the delta events processed.
65 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -030066u64 x86_perf_event_update(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +010067{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010068 struct hw_perf_event *hwc = &event->hw;
Robert Richter948b1bb2010-03-29 18:36:50 +020069 int shift = 64 - x86_pmu.cntval_bits;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020070 u64 prev_raw_count, new_raw_count;
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010071 int idx = hwc->idx;
Peter Zijlstra (Intel)7f612a72016-11-29 20:33:28 +000072 u64 delta;
Ingo Molnaree060942008-12-13 09:00:03 +010073
Robert Richter15c7ad52012-06-20 20:46:33 +020074 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +020075 return 0;
76
Ingo Molnaree060942008-12-13 09:00:03 +010077 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020078 * Careful: an NMI might modify the previous event value.
Ingo Molnaree060942008-12-13 09:00:03 +010079 *
80 * Our tactic to handle this is to first atomically read and
81 * exchange a new raw count - then add that new-prev delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020082 * count to the generic event atomically:
Ingo Molnaree060942008-12-13 09:00:03 +010083 */
84again:
Peter Zijlstrae7850592010-05-21 14:43:08 +020085 prev_raw_count = local64_read(&hwc->prev_count);
Vince Weaverc48b6052012-03-01 17:28:14 -050086 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
Ingo Molnaree060942008-12-13 09:00:03 +010087
Peter Zijlstrae7850592010-05-21 14:43:08 +020088 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Ingo Molnaree060942008-12-13 09:00:03 +010089 new_raw_count) != prev_raw_count)
90 goto again;
91
92 /*
93 * Now we have the new raw value and have updated the prev
94 * timestamp already. We can now calculate the elapsed delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020095 * (event-)time and add that to the generic event.
Ingo Molnaree060942008-12-13 09:00:03 +010096 *
97 * Careful, not all hw sign-extends above the physical width
Peter Zijlstraec3232b2009-05-13 09:45:19 +020098 * of the count.
Ingo Molnaree060942008-12-13 09:00:03 +010099 */
Peter Zijlstraec3232b2009-05-13 09:45:19 +0200100 delta = (new_raw_count << shift) - (prev_raw_count << shift);
101 delta >>= shift;
Ingo Molnaree060942008-12-13 09:00:03 +0100102
Peter Zijlstrae7850592010-05-21 14:43:08 +0200103 local64_add(delta, &event->count);
104 local64_sub(delta, &hwc->period_left);
Robert Richter4b7bfd02009-04-29 12:47:22 +0200105
106 return new_raw_count;
Ingo Molnaree060942008-12-13 09:00:03 +0100107}
108
Andi Kleena7e3ed12011-03-03 10:34:47 +0800109/*
110 * Find and validate any extra registers to set up.
111 */
112static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
113{
Stephane Eranianefc9f052011-06-06 16:57:03 +0200114 struct hw_perf_event_extra *reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800115 struct extra_reg *er;
116
Stephane Eranianefc9f052011-06-06 16:57:03 +0200117 reg = &event->hw.extra_reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800118
119 if (!x86_pmu.extra_regs)
120 return 0;
121
122 for (er = x86_pmu.extra_regs; er->msr; er++) {
123 if (er->event != (config & er->config_mask))
124 continue;
125 if (event->attr.config1 & ~er->valid_mask)
126 return -EINVAL;
Kan Liang338b5222014-07-14 12:25:56 -0700127 /* Check if the extra msrs can be safely accessed*/
128 if (!er->extra_msr_access)
129 return -ENXIO;
Stephane Eranianefc9f052011-06-06 16:57:03 +0200130
131 reg->idx = er->idx;
132 reg->config = event->attr.config1;
133 reg->reg = er->msr;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800134 break;
135 }
136 return 0;
137}
138
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200139static atomic_t active_events;
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300140static atomic_t pmc_refcount;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200141static DEFINE_MUTEX(pmc_reserve_mutex);
142
Robert Richterb27ea292010-03-17 12:49:10 +0100143#ifdef CONFIG_X86_LOCAL_APIC
144
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200145static bool reserve_pmc_hardware(void)
146{
147 int i;
148
Robert Richter948b1bb2010-03-29 18:36:50 +0200149 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100150 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200151 goto perfctr_fail;
152 }
153
Robert Richter948b1bb2010-03-29 18:36:50 +0200154 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100155 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200156 goto eventsel_fail;
157 }
158
159 return true;
160
161eventsel_fail:
162 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100163 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200164
Robert Richter948b1bb2010-03-29 18:36:50 +0200165 i = x86_pmu.num_counters;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200166
167perfctr_fail:
168 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100169 release_perfctr_nmi(x86_pmu_event_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200170
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200171 return false;
172}
173
174static void release_pmc_hardware(void)
175{
176 int i;
177
Robert Richter948b1bb2010-03-29 18:36:50 +0200178 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100179 release_perfctr_nmi(x86_pmu_event_addr(i));
180 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200181 }
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200182}
183
Robert Richterb27ea292010-03-17 12:49:10 +0100184#else
185
186static bool reserve_pmc_hardware(void) { return true; }
187static void release_pmc_hardware(void) {}
188
189#endif
190
Don Zickus33c6d6a2010-11-22 16:55:23 -0500191static bool check_hw_exists(void)
192{
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100193 u64 val, val_fail, val_new= ~0;
194 int i, reg, reg_fail, ret = 0;
195 int bios_fail = 0;
Don Zickus68ab7472015-05-18 15:16:48 -0400196 int reg_safe = -1;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500197
Peter Zijlstra44072042010-12-08 15:56:23 +0100198 /*
199 * Check to see if the BIOS enabled any of the counters, if so
200 * complain and bail.
201 */
202 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100203 reg = x86_pmu_config_addr(i);
Peter Zijlstra44072042010-12-08 15:56:23 +0100204 ret = rdmsrl_safe(reg, &val);
205 if (ret)
206 goto msr_fail;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100207 if (val & ARCH_PERFMON_EVENTSEL_ENABLE) {
208 bios_fail = 1;
209 val_fail = val;
210 reg_fail = reg;
Don Zickus68ab7472015-05-18 15:16:48 -0400211 } else {
212 reg_safe = i;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100213 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100214 }
215
216 if (x86_pmu.num_counters_fixed) {
217 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
218 ret = rdmsrl_safe(reg, &val);
219 if (ret)
220 goto msr_fail;
221 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100222 if (val & (0x03 << i*4)) {
223 bios_fail = 1;
224 val_fail = val;
225 reg_fail = reg;
226 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100227 }
228 }
229
230 /*
Don Zickus68ab7472015-05-18 15:16:48 -0400231 * If all the counters are enabled, the below test will always
232 * fail. The tools will also become useless in this scenario.
233 * Just fail and disable the hardware counters.
234 */
235
236 if (reg_safe == -1) {
237 reg = reg_safe;
238 goto msr_fail;
239 }
240
241 /*
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200242 * Read the current value, change it and read it back to see if it
243 * matches, this is needed to detect certain hardware emulators
244 * (qemu/kvm) that don't trap on the MSR access and always return 0s.
Peter Zijlstra44072042010-12-08 15:56:23 +0100245 */
Don Zickus68ab7472015-05-18 15:16:48 -0400246 reg = x86_pmu_event_addr(reg_safe);
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200247 if (rdmsrl_safe(reg, &val))
248 goto msr_fail;
249 val ^= 0xffffUL;
Robert Richterf285f922012-06-20 20:46:36 +0200250 ret = wrmsrl_safe(reg, val);
251 ret |= rdmsrl_safe(reg, &val_new);
Don Zickus33c6d6a2010-11-22 16:55:23 -0500252 if (ret || val != val_new)
Peter Zijlstra44072042010-12-08 15:56:23 +0100253 goto msr_fail;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500254
Ingo Molnar45daae52011-03-25 10:24:23 +0100255 /*
256 * We still allow the PMU driver to operate:
257 */
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100258 if (bios_fail) {
Chen Yucong1b74dde2016-02-02 11:45:02 +0800259 pr_cont("Broken BIOS detected, complain to your hardware vendor.\n");
260 pr_err(FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n",
261 reg_fail, val_fail);
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100262 }
Ingo Molnar45daae52011-03-25 10:24:23 +0100263
264 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100265
266msr_fail:
Juergen Gross005bd002016-08-01 13:37:07 +0200267 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
268 pr_cont("PMU not available due to virtualization, using software events only.\n");
269 } else {
270 pr_cont("Broken PMU hardware detected, using software events only.\n");
271 pr_err("Failed to access perfctr msr (MSR %x is %Lx)\n",
272 reg, val_new);
273 }
Ingo Molnar45daae52011-03-25 10:24:23 +0100274
Peter Zijlstra44072042010-12-08 15:56:23 +0100275 return false;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500276}
277
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200278static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200279{
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300280 x86_release_hardware();
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300281 atomic_dec(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200282}
283
Alexander Shishkin48070342015-01-14 14:18:20 +0200284void hw_perf_lbr_event_destroy(struct perf_event *event)
285{
286 hw_perf_event_destroy(event);
287
288 /* undo the lbr/bts event accounting */
289 x86_del_exclusive(x86_lbr_exclusive_lbr);
290}
291
Robert Richter85cf9db2009-04-29 12:47:20 +0200292static inline int x86_pmu_initialized(void)
293{
294 return x86_pmu.handle_irq != NULL;
295}
296
Ingo Molnar8326f442009-06-05 20:22:46 +0200297static inline int
Andi Kleene994d7d2011-03-03 10:34:48 +0800298set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
Ingo Molnar8326f442009-06-05 20:22:46 +0200299{
Andi Kleene994d7d2011-03-03 10:34:48 +0800300 struct perf_event_attr *attr = &event->attr;
Ingo Molnar8326f442009-06-05 20:22:46 +0200301 unsigned int cache_type, cache_op, cache_result;
302 u64 config, val;
303
304 config = attr->config;
305
306 cache_type = (config >> 0) & 0xff;
307 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
308 return -EINVAL;
309
310 cache_op = (config >> 8) & 0xff;
311 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
312 return -EINVAL;
313
314 cache_result = (config >> 16) & 0xff;
315 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
316 return -EINVAL;
317
318 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
319
320 if (val == 0)
321 return -ENOENT;
322
323 if (val == -1)
324 return -EINVAL;
325
326 hwc->config |= val;
Andi Kleene994d7d2011-03-03 10:34:48 +0800327 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
328 return x86_pmu_extra_regs(val, event);
Ingo Molnar8326f442009-06-05 20:22:46 +0200329}
330
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300331int x86_reserve_hardware(void)
332{
333 int err = 0;
334
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300335 if (!atomic_inc_not_zero(&pmc_refcount)) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300336 mutex_lock(&pmc_reserve_mutex);
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300337 if (atomic_read(&pmc_refcount) == 0) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300338 if (!reserve_pmc_hardware())
339 err = -EBUSY;
340 else
341 reserve_ds_buffers();
342 }
343 if (!err)
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300344 atomic_inc(&pmc_refcount);
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300345 mutex_unlock(&pmc_reserve_mutex);
346 }
347
348 return err;
349}
350
351void x86_release_hardware(void)
352{
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300353 if (atomic_dec_and_mutex_lock(&pmc_refcount, &pmc_reserve_mutex)) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300354 release_pmc_hardware();
355 release_ds_buffers();
356 mutex_unlock(&pmc_reserve_mutex);
357 }
358}
359
Alexander Shishkin48070342015-01-14 14:18:20 +0200360/*
361 * Check if we can create event of a certain type (that no conflicting events
362 * are present).
363 */
364int x86_add_exclusive(unsigned int what)
365{
Peter Zijlstra93472af2015-06-24 16:47:50 +0200366 int i;
Alexander Shishkin48070342015-01-14 14:18:20 +0200367
Andi Kleenb0c1ef52016-12-08 16:14:17 -0800368 /*
369 * When lbr_pt_coexist we allow PT to coexist with either LBR or BTS.
370 * LBR and BTS are still mutually exclusive.
371 */
372 if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt)
Alexander Shishkinccbebba2016-04-28 18:35:46 +0300373 return 0;
374
Peter Zijlstra93472af2015-06-24 16:47:50 +0200375 if (!atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what])) {
376 mutex_lock(&pmc_reserve_mutex);
377 for (i = 0; i < ARRAY_SIZE(x86_pmu.lbr_exclusive); i++) {
378 if (i != what && atomic_read(&x86_pmu.lbr_exclusive[i]))
379 goto fail_unlock;
380 }
381 atomic_inc(&x86_pmu.lbr_exclusive[what]);
382 mutex_unlock(&pmc_reserve_mutex);
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300383 }
Alexander Shishkin48070342015-01-14 14:18:20 +0200384
Peter Zijlstra93472af2015-06-24 16:47:50 +0200385 atomic_inc(&active_events);
386 return 0;
Alexander Shishkin48070342015-01-14 14:18:20 +0200387
Peter Zijlstra93472af2015-06-24 16:47:50 +0200388fail_unlock:
Alexander Shishkin48070342015-01-14 14:18:20 +0200389 mutex_unlock(&pmc_reserve_mutex);
Peter Zijlstra93472af2015-06-24 16:47:50 +0200390 return -EBUSY;
Alexander Shishkin48070342015-01-14 14:18:20 +0200391}
392
393void x86_del_exclusive(unsigned int what)
394{
Andi Kleenb0c1ef52016-12-08 16:14:17 -0800395 if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt)
Alexander Shishkinccbebba2016-04-28 18:35:46 +0300396 return;
397
Alexander Shishkin48070342015-01-14 14:18:20 +0200398 atomic_dec(&x86_pmu.lbr_exclusive[what]);
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300399 atomic_dec(&active_events);
Alexander Shishkin48070342015-01-14 14:18:20 +0200400}
401
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300402int x86_setup_perfctr(struct perf_event *event)
Robert Richterc1726f32010-04-13 22:23:11 +0200403{
404 struct perf_event_attr *attr = &event->attr;
405 struct hw_perf_event *hwc = &event->hw;
406 u64 config;
407
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +0100408 if (!is_sampling_event(event)) {
Robert Richterc1726f32010-04-13 22:23:11 +0200409 hwc->sample_period = x86_pmu.max_period;
410 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200411 local64_set(&hwc->period_left, hwc->sample_period);
Robert Richterc1726f32010-04-13 22:23:11 +0200412 }
413
414 if (attr->type == PERF_TYPE_RAW)
Peter Zijlstraed13ec52011-11-14 10:03:25 +0100415 return x86_pmu_extra_regs(event->attr.config, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200416
417 if (attr->type == PERF_TYPE_HW_CACHE)
Andi Kleene994d7d2011-03-03 10:34:48 +0800418 return set_ext_hw_attr(hwc, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200419
420 if (attr->config >= x86_pmu.max_events)
421 return -EINVAL;
422
423 /*
424 * The generic map:
425 */
426 config = x86_pmu.event_map(attr->config);
427
428 if (config == 0)
429 return -ENOENT;
430
431 if (config == -1LL)
432 return -EINVAL;
433
434 /*
435 * Branch tracing:
436 */
Peter Zijlstra18a073a2011-04-26 13:24:33 +0200437 if (attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS &&
438 !attr->freq && hwc->sample_period == 1) {
Robert Richterc1726f32010-04-13 22:23:11 +0200439 /* BTS is not supported by this architecture. */
Peter Zijlstra6809b6e2010-10-19 14:22:50 +0200440 if (!x86_pmu.bts_active)
Robert Richterc1726f32010-04-13 22:23:11 +0200441 return -EOPNOTSUPP;
442
443 /* BTS is currently only allowed for user-mode. */
444 if (!attr->exclude_kernel)
445 return -EOPNOTSUPP;
Alexander Shishkin48070342015-01-14 14:18:20 +0200446
447 /* disallow bts if conflicting events are present */
448 if (x86_add_exclusive(x86_lbr_exclusive_lbr))
449 return -EBUSY;
450
451 event->destroy = hw_perf_lbr_event_destroy;
Robert Richterc1726f32010-04-13 22:23:11 +0200452 }
453
454 hwc->config |= config;
455
456 return 0;
457}
Robert Richter4261e0e2010-04-13 22:23:10 +0200458
Stephane Eranianff3fb512012-02-09 23:20:54 +0100459/*
460 * check that branch_sample_type is compatible with
461 * settings needed for precise_ip > 1 which implies
462 * using the LBR to capture ALL taken branches at the
463 * priv levels of the measurement
464 */
465static inline int precise_br_compat(struct perf_event *event)
466{
467 u64 m = event->attr.branch_sample_type;
468 u64 b = 0;
469
470 /* must capture all branches */
471 if (!(m & PERF_SAMPLE_BRANCH_ANY))
472 return 0;
473
474 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
475
476 if (!event->attr.exclude_user)
477 b |= PERF_SAMPLE_BRANCH_USER;
478
479 if (!event->attr.exclude_kernel)
480 b |= PERF_SAMPLE_BRANCH_KERNEL;
481
482 /*
483 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
484 */
485
486 return m == b;
487}
488
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300489int x86_pmu_hw_config(struct perf_event *event)
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300490{
Peter Zijlstraab608342010-04-08 23:03:20 +0200491 if (event->attr.precise_ip) {
492 int precise = 0;
493
494 /* Support for constant skid */
Peter Zijlstrac93dc842012-06-08 14:50:50 +0200495 if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
Peter Zijlstraab608342010-04-08 23:03:20 +0200496 precise++;
497
Peter Zijlstra5553be22010-10-19 14:38:11 +0200498 /* Support for IP fixup */
Andi Kleen03de8742014-08-07 17:08:54 -0700499 if (x86_pmu.lbr_nr || x86_pmu.intel_cap.pebs_format >= 2)
Peter Zijlstra5553be22010-10-19 14:38:11 +0200500 precise++;
Andi Kleen72469762015-12-04 03:50:52 -0800501
502 if (x86_pmu.pebs_prec_dist)
503 precise++;
Peter Zijlstra5553be22010-10-19 14:38:11 +0200504 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200505
506 if (event->attr.precise_ip > precise)
507 return -EOPNOTSUPP;
Jiri Olsa18e7a452017-01-03 15:24:54 +0100508
509 /* There's no sense in having PEBS for non sampling events: */
510 if (!is_sampling_event(event))
511 return -EINVAL;
Yan, Zheng4b854902014-11-04 21:56:08 -0500512 }
513 /*
514 * check that PEBS LBR correction does not conflict with
515 * whatever the user is asking with attr->branch_sample_type
516 */
517 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format < 2) {
518 u64 *br_type = &event->attr.branch_sample_type;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100519
Yan, Zheng4b854902014-11-04 21:56:08 -0500520 if (has_branch_stack(event)) {
521 if (!precise_br_compat(event))
522 return -EOPNOTSUPP;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100523
Yan, Zheng4b854902014-11-04 21:56:08 -0500524 /* branch_sample_type is compatible */
Stephane Eranianff3fb512012-02-09 23:20:54 +0100525
Yan, Zheng4b854902014-11-04 21:56:08 -0500526 } else {
527 /*
528 * user did not specify branch_sample_type
529 *
530 * For PEBS fixups, we capture all
531 * the branches at the priv level of the
532 * event.
533 */
534 *br_type = PERF_SAMPLE_BRANCH_ANY;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100535
Yan, Zheng4b854902014-11-04 21:56:08 -0500536 if (!event->attr.exclude_user)
537 *br_type |= PERF_SAMPLE_BRANCH_USER;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100538
Yan, Zheng4b854902014-11-04 21:56:08 -0500539 if (!event->attr.exclude_kernel)
540 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100541 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200542 }
543
Yan, Zhenge18bf522014-11-04 21:56:03 -0500544 if (event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK)
545 event->attach_state |= PERF_ATTACH_TASK_DATA;
546
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300547 /*
548 * Generate PMC IRQs:
549 * (keep 'enabled' bit clear for now)
550 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200551 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300552
553 /*
554 * Count user and OS events unless requested not to
555 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200556 if (!event->attr.exclude_user)
557 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
558 if (!event->attr.exclude_kernel)
559 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
560
561 if (event->attr.type == PERF_TYPE_RAW)
562 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300563
Andi Kleen294fe0f2015-02-17 18:18:06 -0800564 if (event->attr.sample_period && x86_pmu.limit_period) {
565 if (x86_pmu.limit_period(event, event->attr.sample_period) >
566 event->attr.sample_period)
567 return -EINVAL;
568 }
569
Robert Richter9d0fcba62010-04-13 22:23:12 +0200570 return x86_setup_perfctr(event);
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300571}
572
Ingo Molnaree060942008-12-13 09:00:03 +0100573/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200574 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100575 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200576static int __x86_pmu_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100577{
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200578 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100579
Robert Richter85cf9db2009-04-29 12:47:20 +0200580 if (!x86_pmu_initialized())
581 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100582
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300583 err = x86_reserve_hardware();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200584 if (err)
585 return err;
586
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300587 atomic_inc(&active_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200588 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200589
Robert Richter4261e0e2010-04-13 22:23:10 +0200590 event->hw.idx = -1;
591 event->hw.last_cpu = -1;
592 event->hw.last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200593
Stephane Eranianefc9f052011-06-06 16:57:03 +0200594 /* mark unused */
595 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Stephane Eranianb36817e2012-02-09 23:20:53 +0100596 event->hw.branch_reg.idx = EXTRA_REG_NONE;
597
Robert Richter9d0fcba62010-04-13 22:23:12 +0200598 return x86_pmu.hw_config(event);
Robert Richter4261e0e2010-04-13 22:23:10 +0200599}
600
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300601void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530602{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500603 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200604 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100605
Robert Richter948b1bb2010-03-29 18:36:50 +0200606 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100607 u64 val;
608
Robert Richter43f62012009-04-29 16:55:56 +0200609 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200610 continue;
Robert Richter41bf4982011-02-02 17:40:57 +0100611 rdmsrl(x86_pmu_config_addr(idx), val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100612 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200613 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100614 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richter41bf4982011-02-02 17:40:57 +0100615 wrmsrl(x86_pmu_config_addr(idx), val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530616 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530617}
618
Kan Liangc3d266c2016-03-03 18:07:28 -0500619/*
620 * There may be PMI landing after enabled=0. The PMI hitting could be before or
621 * after disable_all.
622 *
623 * If PMI hits before disable_all, the PMU will be disabled in the NMI handler.
624 * It will not be re-enabled in the NMI handler again, because enabled=0. After
625 * handling the NMI, disable_all will be called, which will not change the
626 * state either. If PMI hits after disable_all, the PMU is already disabled
627 * before entering NMI handler. The NMI handler will not change the state
628 * either.
629 *
630 * So either situation is harmless.
631 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200632static void x86_pmu_disable(struct pmu *pmu)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530633{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500634 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200635
Robert Richter85cf9db2009-04-29 12:47:20 +0200636 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200637 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200638
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100639 if (!cpuc->enabled)
640 return;
641
642 cpuc->n_added = 0;
643 cpuc->enabled = 0;
644 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200645
646 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530647}
Ingo Molnar241771e2008-12-03 10:39:53 +0100648
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300649void x86_pmu_enable_all(int added)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530650{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500651 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530652 int idx;
653
Robert Richter948b1bb2010-03-29 18:36:50 +0200654 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richterd45dd922011-02-02 17:40:56 +0100655 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100656
Robert Richter43f62012009-04-29 16:55:56 +0200657 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200658 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200659
Robert Richterd45dd922011-02-02 17:40:56 +0100660 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530661 }
662}
663
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200664static struct pmu pmu;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200665
666static inline int is_x86_event(struct perf_event *event)
667{
668 return event->pmu == &pmu;
669}
670
Robert Richter1e2ad282011-11-18 12:35:21 +0100671/*
672 * Event scheduler state:
673 *
674 * Assign events iterating over all events and counters, beginning
675 * with events with least weights first. Keep the current iterator
676 * state in struct sched_state.
677 */
678struct sched_state {
679 int weight;
680 int event; /* event index */
681 int counter; /* counter index */
682 int unassigned; /* number of events to be assigned left */
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200683 int nr_gp; /* number of GP counters used */
Robert Richter1e2ad282011-11-18 12:35:21 +0100684 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
685};
686
Robert Richterbc1738f2011-11-18 12:35:22 +0100687/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
688#define SCHED_STATES_MAX 2
689
Robert Richter1e2ad282011-11-18 12:35:21 +0100690struct perf_sched {
691 int max_weight;
692 int max_events;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200693 int max_gp;
694 int saved_states;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200695 struct event_constraint **constraints;
Robert Richter1e2ad282011-11-18 12:35:21 +0100696 struct sched_state state;
Robert Richterbc1738f2011-11-18 12:35:22 +0100697 struct sched_state saved[SCHED_STATES_MAX];
Robert Richter1e2ad282011-11-18 12:35:21 +0100698};
699
700/*
701 * Initialize interator that runs through all events and counters.
702 */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200703static void perf_sched_init(struct perf_sched *sched, struct event_constraint **constraints,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200704 int num, int wmin, int wmax, int gpmax)
Robert Richter1e2ad282011-11-18 12:35:21 +0100705{
706 int idx;
707
708 memset(sched, 0, sizeof(*sched));
709 sched->max_events = num;
710 sched->max_weight = wmax;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200711 sched->max_gp = gpmax;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200712 sched->constraints = constraints;
Robert Richter1e2ad282011-11-18 12:35:21 +0100713
714 for (idx = 0; idx < num; idx++) {
Peter Zijlstrab371b592015-05-21 10:57:13 +0200715 if (constraints[idx]->weight == wmin)
Robert Richter1e2ad282011-11-18 12:35:21 +0100716 break;
717 }
718
719 sched->state.event = idx; /* start with min weight */
720 sched->state.weight = wmin;
721 sched->state.unassigned = num;
722}
723
Robert Richterbc1738f2011-11-18 12:35:22 +0100724static void perf_sched_save_state(struct perf_sched *sched)
725{
726 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
727 return;
728
729 sched->saved[sched->saved_states] = sched->state;
730 sched->saved_states++;
731}
732
733static bool perf_sched_restore_state(struct perf_sched *sched)
734{
735 if (!sched->saved_states)
736 return false;
737
738 sched->saved_states--;
739 sched->state = sched->saved[sched->saved_states];
740
741 /* continue with next counter: */
742 clear_bit(sched->state.counter++, sched->state.used);
743
744 return true;
745}
746
Robert Richter1e2ad282011-11-18 12:35:21 +0100747/*
748 * Select a counter for the current event to schedule. Return true on
749 * success.
750 */
Robert Richterbc1738f2011-11-18 12:35:22 +0100751static bool __perf_sched_find_counter(struct perf_sched *sched)
Robert Richter1e2ad282011-11-18 12:35:21 +0100752{
753 struct event_constraint *c;
754 int idx;
755
756 if (!sched->state.unassigned)
757 return false;
758
759 if (sched->state.event >= sched->max_events)
760 return false;
761
Peter Zijlstrab371b592015-05-21 10:57:13 +0200762 c = sched->constraints[sched->state.event];
Peter Zijlstra4defea82011-11-10 15:15:42 +0100763 /* Prefer fixed purpose counters */
Robert Richter15c7ad52012-06-20 20:46:33 +0200764 if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
765 idx = INTEL_PMC_IDX_FIXED;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700766 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100767 if (!__test_and_set_bit(idx, sched->state.used))
768 goto done;
769 }
770 }
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200771
Robert Richter1e2ad282011-11-18 12:35:21 +0100772 /* Grab the first unused counter starting with idx */
773 idx = sched->state.counter;
Robert Richter15c7ad52012-06-20 20:46:33 +0200774 for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200775 if (!__test_and_set_bit(idx, sched->state.used)) {
776 if (sched->state.nr_gp++ >= sched->max_gp)
777 return false;
778
Peter Zijlstra4defea82011-11-10 15:15:42 +0100779 goto done;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200780 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100781 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100782
Peter Zijlstra4defea82011-11-10 15:15:42 +0100783 return false;
784
785done:
786 sched->state.counter = idx;
Robert Richter1e2ad282011-11-18 12:35:21 +0100787
Robert Richterbc1738f2011-11-18 12:35:22 +0100788 if (c->overlap)
789 perf_sched_save_state(sched);
790
791 return true;
792}
793
794static bool perf_sched_find_counter(struct perf_sched *sched)
795{
796 while (!__perf_sched_find_counter(sched)) {
797 if (!perf_sched_restore_state(sched))
798 return false;
799 }
800
Robert Richter1e2ad282011-11-18 12:35:21 +0100801 return true;
802}
803
804/*
805 * Go through all unassigned events and find the next one to schedule.
806 * Take events with the least weight first. Return true on success.
807 */
808static bool perf_sched_next_event(struct perf_sched *sched)
809{
810 struct event_constraint *c;
811
812 if (!sched->state.unassigned || !--sched->state.unassigned)
813 return false;
814
815 do {
816 /* next event */
817 sched->state.event++;
818 if (sched->state.event >= sched->max_events) {
819 /* next weight */
820 sched->state.event = 0;
821 sched->state.weight++;
822 if (sched->state.weight > sched->max_weight)
823 return false;
824 }
Peter Zijlstrab371b592015-05-21 10:57:13 +0200825 c = sched->constraints[sched->state.event];
Robert Richter1e2ad282011-11-18 12:35:21 +0100826 } while (c->weight != sched->state.weight);
827
828 sched->state.counter = 0; /* start with first counter */
829
830 return true;
831}
832
833/*
834 * Assign a counter for each event.
835 */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200836int perf_assign_events(struct event_constraint **constraints, int n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200837 int wmin, int wmax, int gpmax, int *assign)
Robert Richter1e2ad282011-11-18 12:35:21 +0100838{
839 struct perf_sched sched;
840
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200841 perf_sched_init(&sched, constraints, n, wmin, wmax, gpmax);
Robert Richter1e2ad282011-11-18 12:35:21 +0100842
843 do {
844 if (!perf_sched_find_counter(&sched))
845 break; /* failed */
846 if (assign)
847 assign[sched.state.event] = sched.state.counter;
848 } while (perf_sched_next_event(&sched));
849
850 return sched.state.unassigned;
851}
Yan, Zheng4a3dc122014-03-18 16:56:43 +0800852EXPORT_SYMBOL_GPL(perf_assign_events);
Robert Richter1e2ad282011-11-18 12:35:21 +0100853
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300854int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200855{
Andrew Hunter43b457802013-05-23 11:07:03 -0700856 struct event_constraint *c;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200857 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200858 struct perf_event *e;
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100859 int i, wmin, wmax, unsched = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200860 struct hw_perf_event *hwc;
861
862 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
863
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100864 if (x86_pmu.start_scheduling)
865 x86_pmu.start_scheduling(cpuc);
866
Robert Richter1e2ad282011-11-18 12:35:21 +0100867 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Peter Zijlstrab371b592015-05-21 10:57:13 +0200868 cpuc->event_constraint[i] = NULL;
Stephane Eranian79cba822014-11-17 20:06:56 +0100869 c = x86_pmu.get_event_constraints(cpuc, i, cpuc->event_list[i]);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200870 cpuc->event_constraint[i] = c;
Andrew Hunter43b457802013-05-23 11:07:03 -0700871
Robert Richter1e2ad282011-11-18 12:35:21 +0100872 wmin = min(wmin, c->weight);
873 wmax = max(wmax, c->weight);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200874 }
875
876 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200877 * fastpath, try to reuse previous register
878 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100879 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200880 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200881 c = cpuc->event_constraint[i];
Stephane Eranian81130702010-01-21 17:39:01 +0200882
883 /* never assigned */
884 if (hwc->idx == -1)
885 break;
886
887 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100888 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200889 break;
890
891 /* not already used */
892 if (test_bit(hwc->idx, used_mask))
893 break;
894
Peter Zijlstra34538ee2010-03-02 21:16:55 +0100895 __set_bit(hwc->idx, used_mask);
Stephane Eranian81130702010-01-21 17:39:01 +0200896 if (assign)
897 assign[i] = hwc->idx;
898 }
Stephane Eranian81130702010-01-21 17:39:01 +0200899
Robert Richter1e2ad282011-11-18 12:35:21 +0100900 /* slow path */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200901 if (i != n) {
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200902 int gpmax = x86_pmu.num_counters;
903
904 /*
905 * Do not allow scheduling of more than half the available
906 * generic counters.
907 *
908 * This helps avoid counter starvation of sibling thread by
909 * ensuring at most half the counters cannot be in exclusive
910 * mode. There is no designated counters for the limits. Any
911 * N/2 counters can be used. This helps with events with
912 * specific counter constraints.
913 */
914 if (is_ht_workaround_enabled() && !cpuc->is_fake &&
915 READ_ONCE(cpuc->excl_cntrs->exclusive_present))
916 gpmax /= 2;
917
Peter Zijlstrab371b592015-05-21 10:57:13 +0200918 unsched = perf_assign_events(cpuc->event_constraint, n, wmin,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200919 wmax, gpmax, assign);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200920 }
Stephane Eranian81130702010-01-21 17:39:01 +0200921
Stephane Eranian1da53e02010-01-18 10:58:01 +0200922 /*
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100923 * In case of success (unsched = 0), mark events as committed,
924 * so we do not put_constraint() in case new events are added
925 * and fail to be scheduled
926 *
927 * We invoke the lower level commit callback to lock the resource
928 *
929 * We do not need to do all of this in case we are called to
930 * validate an event group (assign == NULL)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200931 */
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100932 if (!unsched && assign) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200933 for (i = 0; i < n; i++) {
934 e = cpuc->event_list[i];
935 e->hw.flags |= PERF_X86_EVENT_COMMITTED;
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100936 if (x86_pmu.commit_scheduling)
Peter Zijlstrab371b592015-05-21 10:57:13 +0200937 x86_pmu.commit_scheduling(cpuc, i, assign[i]);
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200938 }
Peter Zijlstra8736e542015-05-21 10:57:43 +0200939 } else {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200940 for (i = 0; i < n; i++) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200941 e = cpuc->event_list[i];
942 /*
943 * do not put_constraint() on comitted events,
944 * because they are good to go
945 */
946 if ((e->hw.flags & PERF_X86_EVENT_COMMITTED))
947 continue;
948
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100949 /*
950 * release events that failed scheduling
951 */
Stephane Eranian1da53e02010-01-18 10:58:01 +0200952 if (x86_pmu.put_event_constraints)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200953 x86_pmu.put_event_constraints(cpuc, e);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200954 }
955 }
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100956
957 if (x86_pmu.stop_scheduling)
958 x86_pmu.stop_scheduling(cpuc);
959
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100960 return unsched ? -EINVAL : 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200961}
962
963/*
964 * dogrp: true if must collect siblings events (group)
965 * returns total number of events and error code
966 */
967static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
968{
969 struct perf_event *event;
970 int n, max_count;
971
Robert Richter948b1bb2010-03-29 18:36:50 +0200972 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200973
974 /* current number of events already accepted */
975 n = cpuc->n_events;
976
977 if (is_x86_event(leader)) {
978 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100979 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200980 cpuc->event_list[n] = leader;
981 n++;
982 }
983 if (!dogrp)
984 return n;
985
986 list_for_each_entry(event, &leader->sibling_list, group_entry) {
987 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200988 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200989 continue;
990
991 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100992 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200993
994 cpuc->event_list[n] = event;
995 n++;
996 }
997 return n;
998}
999
Stephane Eranian1da53e02010-01-18 10:58:01 +02001000static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +02001001 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +02001002{
Stephane Eranian447a1942010-02-01 14:50:01 +02001003 struct hw_perf_event *hwc = &event->hw;
1004
1005 hwc->idx = cpuc->assign[i];
1006 hwc->last_cpu = smp_processor_id();
1007 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +02001008
Robert Richter15c7ad52012-06-20 20:46:33 +02001009 if (hwc->idx == INTEL_PMC_IDX_FIXED_BTS) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001010 hwc->config_base = 0;
1011 hwc->event_base = 0;
Robert Richter15c7ad52012-06-20 20:46:33 +02001012 } else if (hwc->idx >= INTEL_PMC_IDX_FIXED) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001013 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
Robert Richter15c7ad52012-06-20 20:46:33 +02001014 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - INTEL_PMC_IDX_FIXED);
1015 hwc->event_base_rdpmc = (hwc->idx - INTEL_PMC_IDX_FIXED) | 1<<30;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001016 } else {
Robert Richter73d6e522011-02-02 17:40:59 +01001017 hwc->config_base = x86_pmu_config_addr(hwc->idx);
1018 hwc->event_base = x86_pmu_event_addr(hwc->idx);
Jacob Shin0fbdad02013-02-06 11:26:28 -06001019 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001020 }
1021}
1022
Stephane Eranian447a1942010-02-01 14:50:01 +02001023static inline int match_prev_assignment(struct hw_perf_event *hwc,
1024 struct cpu_hw_events *cpuc,
1025 int i)
1026{
1027 return hwc->idx == cpuc->assign[i] &&
1028 hwc->last_cpu == smp_processor_id() &&
1029 hwc->last_tag == cpuc->tags[i];
1030}
1031
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001032static void x86_pmu_start(struct perf_event *event, int flags);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001033
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001034static void x86_pmu_enable(struct pmu *pmu)
Ingo Molnaree060942008-12-13 09:00:03 +01001035{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001036 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001037 struct perf_event *event;
1038 struct hw_perf_event *hwc;
Peter Zijlstra11164cd2010-03-26 14:08:44 +01001039 int i, added = cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001040
Robert Richter85cf9db2009-04-29 12:47:20 +02001041 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +01001042 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +01001043
1044 if (cpuc->enabled)
1045 return;
1046
Stephane Eranian1da53e02010-01-18 10:58:01 +02001047 if (cpuc->n_added) {
Peter Zijlstra19925ce2010-03-06 13:20:40 +01001048 int n_running = cpuc->n_events - cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001049 /*
1050 * apply assignment obtained either from
1051 * hw_perf_group_sched_in() or x86_pmu_enable()
1052 *
1053 * step1: save events moving to new counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001054 */
Peter Zijlstra19925ce2010-03-06 13:20:40 +01001055 for (i = 0; i < n_running; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001056 event = cpuc->event_list[i];
1057 hwc = &event->hw;
1058
Stephane Eranian447a1942010-02-01 14:50:01 +02001059 /*
1060 * we can avoid reprogramming counter if:
1061 * - assigned same counter as last time
1062 * - running on same CPU as last time
1063 * - no other event has used the counter since
1064 */
1065 if (hwc->idx == -1 ||
1066 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +02001067 continue;
1068
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001069 /*
1070 * Ensure we don't accidentally enable a stopped
1071 * counter simply because we rescheduled.
1072 */
1073 if (hwc->state & PERF_HES_STOPPED)
1074 hwc->state |= PERF_HES_ARCH;
1075
1076 x86_pmu_stop(event, PERF_EF_UPDATE);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001077 }
1078
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001079 /*
1080 * step2: reprogram moved events into new counters
1081 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001082 for (i = 0; i < cpuc->n_events; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001083 event = cpuc->event_list[i];
1084 hwc = &event->hw;
1085
Peter Zijlstra45e16a62010-03-11 13:40:30 +01001086 if (!match_prev_assignment(hwc, cpuc, i))
Stephane Eranian447a1942010-02-01 14:50:01 +02001087 x86_assign_hw_event(event, cpuc, i);
Peter Zijlstra45e16a62010-03-11 13:40:30 +01001088 else if (i < n_running)
1089 continue;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001090
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001091 if (hwc->state & PERF_HES_ARCH)
1092 continue;
1093
1094 x86_pmu_start(event, PERF_EF_RELOAD);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001095 }
1096 cpuc->n_added = 0;
1097 perf_events_lapic_init();
1098 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +01001099
1100 cpuc->enabled = 1;
1101 barrier();
1102
Peter Zijlstra11164cd2010-03-26 14:08:44 +01001103 x86_pmu.enable_all(added);
Ingo Molnaree060942008-12-13 09:00:03 +01001104}
Ingo Molnaree060942008-12-13 09:00:03 +01001105
Tejun Heo245b2e72009-06-24 15:13:48 +09001106static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001107
Ingo Molnaree060942008-12-13 09:00:03 +01001108/*
1109 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001110 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +01001111 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001112int x86_perf_event_set_period(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +01001113{
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001114 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001115 s64 left = local64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001116 s64 period = hwc->sample_period;
Peter Zijlstra7645a242010-03-08 13:51:31 +01001117 int ret = 0, idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +01001118
Robert Richter15c7ad52012-06-20 20:46:33 +02001119 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +02001120 return 0;
1121
Ingo Molnaree060942008-12-13 09:00:03 +01001122 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001123 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +01001124 */
1125 if (unlikely(left <= -period)) {
1126 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001127 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001128 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001129 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +01001130 }
1131
1132 if (unlikely(left <= 0)) {
1133 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001134 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001135 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001136 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +01001137 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +02001138 /*
Ingo Molnardfc65092009-09-21 11:31:35 +02001139 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +02001140 */
1141 if (unlikely(left < 2))
1142 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +01001143
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001144 if (left > x86_pmu.max_period)
1145 left = x86_pmu.max_period;
1146
Andi Kleen294fe0f2015-02-17 18:18:06 -08001147 if (x86_pmu.limit_period)
1148 left = x86_pmu.limit_period(event, left);
1149
Tejun Heo245b2e72009-06-24 15:13:48 +09001150 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +01001151
Yan, Zheng851559e2015-05-06 15:33:47 -04001152 if (!(hwc->flags & PERF_X86_EVENT_AUTO_RELOAD) ||
1153 local64_read(&hwc->prev_count) != (u64)-left) {
1154 /*
1155 * The hw event starts counting from this event offset,
1156 * mark it to be able to extra future deltas:
1157 */
1158 local64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +01001159
Yan, Zheng851559e2015-05-06 15:33:47 -04001160 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
1161 }
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001162
1163 /*
1164 * Due to erratum on certan cpu we need
1165 * a second write to be sure the register
1166 * is updated properly
1167 */
1168 if (x86_pmu.perfctr_second_write) {
Robert Richter73d6e522011-02-02 17:40:59 +01001169 wrmsrl(hwc->event_base,
Robert Richter948b1bb2010-03-29 18:36:50 +02001170 (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001171 }
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001172
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001173 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001174
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001175 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001176}
1177
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001178void x86_pmu_enable_event(struct perf_event *event)
Robert Richter7c90cc42009-04-29 12:47:18 +02001179{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001180 if (__this_cpu_read(cpu_hw_events.enabled))
Robert Richter31fa58a2010-04-13 22:23:14 +02001181 __x86_pmu_enable_event(&event->hw,
1182 ARCH_PERFMON_EVENTSEL_ENABLE);
Ingo Molnar241771e2008-12-03 10:39:53 +01001183}
1184
Ingo Molnaree060942008-12-13 09:00:03 +01001185/*
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001186 * Add a single event to the PMU.
Stephane Eranian1da53e02010-01-18 10:58:01 +02001187 *
1188 * The event is added to the group of enabled events
1189 * but only if it can be scehduled with existing events.
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001190 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001191static int x86_pmu_add(struct perf_event *event, int flags)
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001192{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001193 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001194 struct hw_perf_event *hwc;
1195 int assign[X86_PMC_IDX_MAX];
1196 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001197
Stephane Eranian1da53e02010-01-18 10:58:01 +02001198 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001199
Stephane Eranian1da53e02010-01-18 10:58:01 +02001200 n0 = cpuc->n_events;
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001201 ret = n = collect_events(cpuc, event, false);
1202 if (ret < 0)
1203 goto out;
Ingo Molnar53b441a2009-05-25 21:41:28 +02001204
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001205 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1206 if (!(flags & PERF_EF_START))
1207 hwc->state |= PERF_HES_ARCH;
1208
Lin Ming4d1c52b2010-04-23 13:56:12 +08001209 /*
1210 * If group events scheduling transaction was started,
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001211 * skip the schedulability test here, it will be performed
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001212 * at commit time (->commit_txn) as a whole.
Peter Zijlstra68f70822016-07-06 18:02:43 +02001213 *
1214 * If commit fails, we'll call ->del() on all events
1215 * for which ->add() was called.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001216 */
Sukadev Bhattiprolu8f3e5682015-09-03 20:07:53 -07001217 if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001218 goto done_collect;
Lin Ming4d1c52b2010-04-23 13:56:12 +08001219
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001220 ret = x86_pmu.schedule_events(cpuc, n, assign);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001221 if (ret)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001222 goto out;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001223 /*
1224 * copy new assignment, now we know it is possible
1225 * will be used by hw_perf_enable()
1226 */
1227 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +01001228
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001229done_collect:
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001230 /*
1231 * Commit the collect_events() state. See x86_pmu_del() and
1232 * x86_pmu_*_txn().
1233 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001234 cpuc->n_events = n;
Peter Zijlstra356e1f22010-03-06 13:49:56 +01001235 cpuc->n_added += n - n0;
Stephane Eranian90151c352010-05-25 16:23:10 +02001236 cpuc->n_txn += n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +01001237
Peter Zijlstra68f70822016-07-06 18:02:43 +02001238 if (x86_pmu.add) {
1239 /*
1240 * This is before x86_pmu_enable() will call x86_pmu_start(),
1241 * so we enable LBRs before an event needs them etc..
1242 */
1243 x86_pmu.add(event);
1244 }
1245
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001246 ret = 0;
1247out:
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001248 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001249}
1250
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001251static void x86_pmu_start(struct perf_event *event, int flags)
Stephane Eraniand76a0812010-02-08 17:06:01 +02001252{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001253 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001254 int idx = event->hw.idx;
1255
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001256 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1257 return;
Stephane Eraniand76a0812010-02-08 17:06:01 +02001258
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001259 if (WARN_ON_ONCE(idx == -1))
1260 return;
1261
1262 if (flags & PERF_EF_RELOAD) {
1263 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1264 x86_perf_event_set_period(event);
1265 }
1266
1267 event->hw.state = 0;
1268
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001269 cpuc->events[idx] = event;
1270 __set_bit(idx, cpuc->active_mask);
Robert Richter63e6be62010-09-15 18:20:34 +02001271 __set_bit(idx, cpuc->running);
Peter Zijlstraaff3d912010-03-02 20:32:08 +01001272 x86_pmu.enable(event);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001273 perf_event_update_userpage(event);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001274}
1275
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001276void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001277{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001278 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Andi Kleenda3e6062015-02-27 09:48:31 -08001279 u64 pebs, debugctl;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001280 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001281 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001282 int cpu, idx;
1283
Robert Richter948b1bb2010-03-29 18:36:50 +02001284 if (!x86_pmu.num_counters)
Ingo Molnar1e125672008-12-09 12:18:18 +01001285 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001286
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001287 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001288
1289 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001290 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001291
Robert Richterfaa28ae2009-04-29 12:47:13 +02001292 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301293 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1294 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1295 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1296 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Ingo Molnar241771e2008-12-03 10:39:53 +01001297
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301298 pr_info("\n");
1299 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1300 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1301 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1302 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Andi Kleen15fde112015-02-27 09:48:32 -08001303 if (x86_pmu.pebs_constraints) {
1304 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
1305 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
1306 }
Andi Kleenda3e6062015-02-27 09:48:31 -08001307 if (x86_pmu.lbr_nr) {
1308 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
1309 pr_info("CPU#%d: debugctl: %016llx\n", cpu, debugctl);
1310 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301311 }
Peter Zijlstra7645a242010-03-08 13:51:31 +01001312 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001313
Robert Richter948b1bb2010-03-29 18:36:50 +02001314 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter41bf4982011-02-02 17:40:57 +01001315 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1316 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001317
Tejun Heo245b2e72009-06-24 15:13:48 +09001318 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001319
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301320 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001321 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301322 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001323 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301324 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001325 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001326 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001327 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001328 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1329
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301330 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001331 cpu, idx, pmc_count);
1332 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001333 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001334}
1335
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001336void x86_pmu_stop(struct perf_event *event, int flags)
Ingo Molnar241771e2008-12-03 10:39:53 +01001337{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001338 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001339 struct hw_perf_event *hwc = &event->hw;
Ingo Molnar241771e2008-12-03 10:39:53 +01001340
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001341 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1342 x86_pmu.disable(event);
1343 cpuc->events[hwc->idx] = NULL;
1344 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1345 hwc->state |= PERF_HES_STOPPED;
1346 }
Peter Zijlstra71e2d282010-03-08 17:51:33 +01001347
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001348 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1349 /*
1350 * Drain the remaining delta count out of a event
1351 * that we are disabling:
1352 */
1353 x86_perf_event_update(event);
1354 hwc->state |= PERF_HES_UPTODATE;
1355 }
Peter Zijlstra2e841872010-01-25 15:58:43 +01001356}
1357
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001358static void x86_pmu_del(struct perf_event *event, int flags)
Peter Zijlstra2e841872010-01-25 15:58:43 +01001359{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001360 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001361 int i;
1362
Stephane Eranian90151c352010-05-25 16:23:10 +02001363 /*
Stephane Eranian2f7f73a2013-06-20 18:42:54 +02001364 * event is descheduled
1365 */
1366 event->hw.flags &= ~PERF_X86_EVENT_COMMITTED;
1367
1368 /*
Peter Zijlstra68f70822016-07-06 18:02:43 +02001369 * If we're called during a txn, we only need to undo x86_pmu.add.
Stephane Eranian90151c352010-05-25 16:23:10 +02001370 * The events never got scheduled and ->cancel_txn will truncate
1371 * the event_list.
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001372 *
1373 * XXX assumes any ->del() called during a TXN will only be on
1374 * an event added during that same TXN.
Stephane Eranian90151c352010-05-25 16:23:10 +02001375 */
Sukadev Bhattiprolu8f3e5682015-09-03 20:07:53 -07001376 if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
Peter Zijlstra68f70822016-07-06 18:02:43 +02001377 goto do_del;
Stephane Eranian90151c352010-05-25 16:23:10 +02001378
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001379 /*
1380 * Not a TXN, therefore cleanup properly.
1381 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001382 x86_pmu_stop(event, PERF_EF_UPDATE);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001383
Stephane Eranian1da53e02010-01-18 10:58:01 +02001384 for (i = 0; i < cpuc->n_events; i++) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001385 if (event == cpuc->event_list[i])
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001386 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001387 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001388
1389 if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1390 return;
1391
1392 /* If we have a newly added event; make sure to decrease n_added. */
1393 if (i >= cpuc->n_events - cpuc->n_added)
1394 --cpuc->n_added;
1395
1396 if (x86_pmu.put_event_constraints)
1397 x86_pmu.put_event_constraints(cpuc, event);
1398
1399 /* Delete the array entry. */
Peter Zijlstrab371b592015-05-21 10:57:13 +02001400 while (++i < cpuc->n_events) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001401 cpuc->event_list[i-1] = cpuc->event_list[i];
Peter Zijlstrab371b592015-05-21 10:57:13 +02001402 cpuc->event_constraint[i-1] = cpuc->event_constraint[i];
1403 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001404 --cpuc->n_events;
1405
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001406 perf_event_update_userpage(event);
Peter Zijlstra68f70822016-07-06 18:02:43 +02001407
1408do_del:
1409 if (x86_pmu.del) {
1410 /*
1411 * This is after x86_pmu_stop(); so we disable LBRs after any
1412 * event can need them etc..
1413 */
1414 x86_pmu.del(event);
1415 }
Ingo Molnar241771e2008-12-03 10:39:53 +01001416}
1417
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001418int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001419{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001420 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001421 struct cpu_hw_events *cpuc;
1422 struct perf_event *event;
Vince Weaver11d15782009-07-08 17:46:14 -04001423 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001424 u64 val;
1425
Christoph Lameter89cbc762014-08-17 12:30:40 -05001426 cpuc = this_cpu_ptr(&cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001427
Don Zickus2bce5da2011-04-27 06:32:33 -04001428 /*
1429 * Some chipsets need to unmask the LVTPC in a particular spot
1430 * inside the nmi handler. As a result, the unmasking was pushed
1431 * into all the nmi handlers.
1432 *
1433 * This generic handler doesn't seem to have any issues where the
1434 * unmasking occurs so it was left at the top.
1435 */
1436 apic_write(APIC_LVTPC, APIC_DM_NMI);
1437
Robert Richter948b1bb2010-03-29 18:36:50 +02001438 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter63e6be62010-09-15 18:20:34 +02001439 if (!test_bit(idx, cpuc->active_mask)) {
1440 /*
1441 * Though we deactivated the counter some cpus
1442 * might still deliver spurious interrupts still
1443 * in flight. Catch them:
1444 */
1445 if (__test_and_clear_bit(idx, cpuc->running))
1446 handled++;
Robert Richtera29aa8a2009-04-29 12:47:21 +02001447 continue;
Robert Richter63e6be62010-09-15 18:20:34 +02001448 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001449
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001450 event = cpuc->events[idx];
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001451
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001452 val = x86_perf_event_update(event);
Robert Richter948b1bb2010-03-29 18:36:50 +02001453 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001454 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001455
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001456 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001457 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001458 */
Robert Richter4177c422010-09-02 15:07:48 -04001459 handled++;
Robert Richterfd0d0002012-04-02 20:19:08 +02001460 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001461
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001462 if (!x86_perf_event_set_period(event))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001463 continue;
1464
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001465 if (perf_event_overflow(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001466 x86_pmu_stop(event, 0);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001467 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001468
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001469 if (handled)
1470 inc_irq_stat(apic_perf_irqs);
1471
Robert Richtera29aa8a2009-04-29 12:47:21 +02001472 return handled;
1473}
Robert Richter39d81ea2009-04-29 12:47:05 +02001474
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001475void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001476{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001477 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001478 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001479
Ingo Molnar241771e2008-12-03 10:39:53 +01001480 /*
Yong Wangc323d952009-05-29 13:28:35 +08001481 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001482 */
Yong Wangc323d952009-05-29 13:28:35 +08001483 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar241771e2008-12-03 10:39:53 +01001484}
1485
Masami Hiramatsu93266382014-04-17 17:18:14 +09001486static int
Don Zickus9c48f1c2011-09-30 15:06:21 -04001487perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
Ingo Molnar241771e2008-12-03 10:39:53 +01001488{
Dave Hansen14c63f12013-06-21 08:51:36 -07001489 u64 start_clock;
1490 u64 finish_clock;
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001491 int ret;
Dave Hansen14c63f12013-06-21 08:51:36 -07001492
Alexander Shishkin1b7b9382015-06-09 13:03:26 +03001493 /*
1494 * All PMUs/events that share this PMI handler should make sure to
1495 * increment active_events for their events.
1496 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001497 if (!atomic_read(&active_events))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001498 return NMI_DONE;
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001499
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001500 start_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001501 ret = x86_pmu.handle_irq(regs);
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001502 finish_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001503
1504 perf_sample_event_took(finish_clock - start_clock);
1505
1506 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001507}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001508NOKPROBE_SYMBOL(perf_event_nmi_handler);
Ingo Molnar241771e2008-12-03 10:39:53 +01001509
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001510struct event_constraint emptyconstraint;
1511struct event_constraint unconstrained;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301512
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001513static int x86_pmu_prepare_cpu(unsigned int cpu)
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001514{
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001515 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001516 int i;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001517
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001518 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++)
1519 cpuc->kfree_on_online[i] = NULL;
1520 if (x86_pmu.cpu_prepare)
1521 return x86_pmu.cpu_prepare(cpu);
1522 return 0;
1523}
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001524
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001525static int x86_pmu_dead_cpu(unsigned int cpu)
1526{
1527 if (x86_pmu.cpu_dead)
1528 x86_pmu.cpu_dead(cpu);
1529 return 0;
1530}
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001531
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001532static int x86_pmu_online_cpu(unsigned int cpu)
1533{
1534 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1535 int i;
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001536
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001537 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++) {
1538 kfree(cpuc->kfree_on_online[i]);
1539 cpuc->kfree_on_online[i] = NULL;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001540 }
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001541 return 0;
1542}
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001543
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001544static int x86_pmu_starting_cpu(unsigned int cpu)
1545{
1546 if (x86_pmu.cpu_starting)
1547 x86_pmu.cpu_starting(cpu);
1548 return 0;
1549}
1550
1551static int x86_pmu_dying_cpu(unsigned int cpu)
1552{
1553 if (x86_pmu.cpu_dying)
1554 x86_pmu.cpu_dying(cpu);
1555 return 0;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001556}
1557
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001558static void __init pmu_check_apic(void)
1559{
Borislav Petkov93984fb2016-04-04 22:25:00 +02001560 if (boot_cpu_has(X86_FEATURE_APIC))
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001561 return;
1562
1563 x86_pmu.apic = 0;
1564 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1565 pr_info("no hardware sampling interrupt available.\n");
Vince Weaverc184c982014-05-16 17:18:07 -04001566
1567 /*
1568 * If we have a PMU initialized but no APIC
1569 * interrupts, we cannot sample hardware
1570 * events (user-space has to fall back and
1571 * sample via a hrtimer based software event):
1572 */
1573 pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1574
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001575}
1576
Jiri Olsa641cc932012-03-15 20:09:14 +01001577static struct attribute_group x86_pmu_format_group = {
1578 .name = "format",
1579 .attrs = NULL,
1580};
1581
Jiri Olsa8300daa2012-10-10 14:53:12 +02001582/*
1583 * Remove all undefined events (x86_pmu.event_map(id) == 0)
1584 * out of events_attr attributes.
1585 */
1586static void __init filter_events(struct attribute **attrs)
1587{
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001588 struct device_attribute *d;
1589 struct perf_pmu_events_attr *pmu_attr;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001590 int offset = 0;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001591 int i, j;
1592
1593 for (i = 0; attrs[i]; i++) {
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001594 d = (struct device_attribute *)attrs[i];
1595 pmu_attr = container_of(d, struct perf_pmu_events_attr, attr);
1596 /* str trumps id */
1597 if (pmu_attr->event_str)
1598 continue;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001599 if (x86_pmu.event_map(i + offset))
Jiri Olsa8300daa2012-10-10 14:53:12 +02001600 continue;
1601
1602 for (j = i; attrs[j]; j++)
1603 attrs[j] = attrs[j + 1];
1604
1605 /* Check the shifted attr. */
1606 i--;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001607
1608 /*
1609 * event_map() is index based, the attrs array is organized
1610 * by increasing event index. If we shift the events, then
1611 * we need to compensate for the event_map(), otherwise
1612 * we are looking up the wrong event in the map
1613 */
1614 offset++;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001615 }
1616}
1617
Andi Kleen1a6461b2013-01-24 16:10:25 +01001618/* Merge two pointer arrays */
Andi Kleen47732d82015-06-29 14:22:13 -07001619__init struct attribute **merge_attr(struct attribute **a, struct attribute **b)
Andi Kleen1a6461b2013-01-24 16:10:25 +01001620{
1621 struct attribute **new;
1622 int j, i;
1623
1624 for (j = 0; a[j]; j++)
1625 ;
1626 for (i = 0; b[i]; i++)
1627 j++;
1628 j++;
1629
1630 new = kmalloc(sizeof(struct attribute *) * j, GFP_KERNEL);
1631 if (!new)
1632 return NULL;
1633
1634 j = 0;
1635 for (i = 0; a[i]; i++)
1636 new[j++] = a[i];
1637 for (i = 0; b[i]; i++)
1638 new[j++] = b[i];
1639 new[j] = NULL;
1640
1641 return new;
1642}
1643
Huang Ruic7ab62b2016-03-09 13:45:06 +08001644ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr, char *page)
Jiri Olsaa4747392012-10-10 14:53:11 +02001645{
1646 struct perf_pmu_events_attr *pmu_attr = \
1647 container_of(attr, struct perf_pmu_events_attr, attr);
Jiri Olsaa4747392012-10-10 14:53:11 +02001648 u64 config = x86_pmu.event_map(pmu_attr->id);
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001649
1650 /* string trumps id */
1651 if (pmu_attr->event_str)
1652 return sprintf(page, "%s", pmu_attr->event_str);
1653
Jiri Olsaa4747392012-10-10 14:53:11 +02001654 return x86_pmu.events_sysfs_show(page, config);
1655}
Huang Ruic7ab62b2016-03-09 13:45:06 +08001656EXPORT_SYMBOL_GPL(events_sysfs_show);
Jiri Olsaa4747392012-10-10 14:53:11 +02001657
Andi Kleenfc07e9f2016-05-19 17:09:56 -07001658ssize_t events_ht_sysfs_show(struct device *dev, struct device_attribute *attr,
1659 char *page)
1660{
1661 struct perf_pmu_events_ht_attr *pmu_attr =
1662 container_of(attr, struct perf_pmu_events_ht_attr, attr);
1663
1664 /*
1665 * Report conditional events depending on Hyper-Threading.
1666 *
1667 * This is overly conservative as usually the HT special
1668 * handling is not needed if the other CPU thread is idle.
1669 *
1670 * Note this does not (and cannot) handle the case when thread
1671 * siblings are invisible, for example with virtualization
1672 * if they are owned by some other guest. The user tool
1673 * has to re-read when a thread sibling gets onlined later.
1674 */
1675 return sprintf(page, "%s",
1676 topology_max_smt_threads() > 1 ?
1677 pmu_attr->event_str_ht :
1678 pmu_attr->event_str_noht);
1679}
1680
Jiri Olsaa4747392012-10-10 14:53:11 +02001681EVENT_ATTR(cpu-cycles, CPU_CYCLES );
1682EVENT_ATTR(instructions, INSTRUCTIONS );
1683EVENT_ATTR(cache-references, CACHE_REFERENCES );
1684EVENT_ATTR(cache-misses, CACHE_MISSES );
1685EVENT_ATTR(branch-instructions, BRANCH_INSTRUCTIONS );
1686EVENT_ATTR(branch-misses, BRANCH_MISSES );
1687EVENT_ATTR(bus-cycles, BUS_CYCLES );
1688EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND );
1689EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND );
1690EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
1691
1692static struct attribute *empty_attrs;
1693
Peter Huewe95d18aa2012-10-29 21:48:17 +01001694static struct attribute *events_attr[] = {
Jiri Olsaa4747392012-10-10 14:53:11 +02001695 EVENT_PTR(CPU_CYCLES),
1696 EVENT_PTR(INSTRUCTIONS),
1697 EVENT_PTR(CACHE_REFERENCES),
1698 EVENT_PTR(CACHE_MISSES),
1699 EVENT_PTR(BRANCH_INSTRUCTIONS),
1700 EVENT_PTR(BRANCH_MISSES),
1701 EVENT_PTR(BUS_CYCLES),
1702 EVENT_PTR(STALLED_CYCLES_FRONTEND),
1703 EVENT_PTR(STALLED_CYCLES_BACKEND),
1704 EVENT_PTR(REF_CPU_CYCLES),
1705 NULL,
1706};
1707
1708static struct attribute_group x86_pmu_events_group = {
1709 .name = "events",
1710 .attrs = events_attr,
1711};
1712
Jiri Olsa0bf79d42012-10-10 14:53:14 +02001713ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
Jiri Olsa43c032f2012-10-10 14:53:13 +02001714{
Jiri Olsa43c032f2012-10-10 14:53:13 +02001715 u64 umask = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1716 u64 cmask = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1717 bool edge = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1718 bool pc = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1719 bool any = (config & ARCH_PERFMON_EVENTSEL_ANY);
1720 bool inv = (config & ARCH_PERFMON_EVENTSEL_INV);
1721 ssize_t ret;
1722
1723 /*
1724 * We have whole page size to spend and just little data
1725 * to write, so we can safely use sprintf.
1726 */
1727 ret = sprintf(page, "event=0x%02llx", event);
1728
1729 if (umask)
1730 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1731
1732 if (edge)
1733 ret += sprintf(page + ret, ",edge");
1734
1735 if (pc)
1736 ret += sprintf(page + ret, ",pc");
1737
1738 if (any)
1739 ret += sprintf(page + ret, ",any");
1740
1741 if (inv)
1742 ret += sprintf(page + ret, ",inv");
1743
1744 if (cmask)
1745 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1746
1747 ret += sprintf(page + ret, "\n");
1748
1749 return ret;
1750}
1751
Yinghai Ludda99112011-01-21 15:30:01 -08001752static int __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301753{
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001754 struct x86_pmu_quirk *quirk;
Robert Richter72eae042009-04-29 12:47:10 +02001755 int err;
1756
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001757 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001758
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301759 switch (boot_cpu_data.x86_vendor) {
1760 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001761 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301762 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301763 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001764 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301765 break;
Robert Richter41389602009-04-29 12:47:00 +02001766 default:
Ingo Molnar8a3da6c72013-09-28 15:48:48 +02001767 err = -ENOTSUPP;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301768 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001769 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001770 pr_cont("no PMU driver, software events only.\n");
Peter Zijlstra004417a2010-11-25 18:38:29 +01001771 return 0;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001772 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301773
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001774 pmu_check_apic();
1775
Don Zickus33c6d6a2010-11-22 16:55:23 -05001776 /* sanity check that the hardware exists or is emulated */
Peter Zijlstra44072042010-12-08 15:56:23 +01001777 if (!check_hw_exists())
Peter Zijlstra004417a2010-11-25 18:38:29 +01001778 return 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -05001779
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001780 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001781
Peter Zijlstrae97df762014-02-05 20:48:51 +01001782 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1783
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001784 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1785 quirk->func();
Peter Zijlstra3c447802010-03-04 21:49:01 +01001786
Robert Richtera1eac7a2012-06-20 20:46:34 +02001787 if (!x86_pmu.intel_ctrl)
1788 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001789
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001790 perf_events_lapic_init();
Don Zickus9c48f1c2011-09-30 15:06:21 -04001791 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001792
Peter Zijlstra63b14642010-01-22 16:32:17 +01001793 unconstrained = (struct event_constraint)
Robert Richter948b1bb2010-03-29 18:36:50 +02001794 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
Stephane Eranian9fac2cf2013-01-24 16:10:27 +01001795 0, x86_pmu.num_counters, 0, 0);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001796
Jiri Olsa641cc932012-03-15 20:09:14 +01001797 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001798
Stephane Eranianf20093e2013-01-24 16:10:32 +01001799 if (x86_pmu.event_attrs)
1800 x86_pmu_events_group.attrs = x86_pmu.event_attrs;
1801
Jiri Olsaa4747392012-10-10 14:53:11 +02001802 if (!x86_pmu.events_sysfs_show)
1803 x86_pmu_events_group.attrs = &empty_attrs;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001804 else
1805 filter_events(x86_pmu_events_group.attrs);
Jiri Olsaa4747392012-10-10 14:53:11 +02001806
Andi Kleen1a6461b2013-01-24 16:10:25 +01001807 if (x86_pmu.cpu_events) {
1808 struct attribute **tmp;
1809
1810 tmp = merge_attr(x86_pmu_events_group.attrs, x86_pmu.cpu_events);
1811 if (!WARN_ON(!tmp))
1812 x86_pmu_events_group.attrs = tmp;
1813 }
1814
Ingo Molnar57c0c152009-09-21 12:20:38 +02001815 pr_info("... version: %d\n", x86_pmu.version);
Robert Richter948b1bb2010-03-29 18:36:50 +02001816 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1817 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1818 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
Ingo Molnar57c0c152009-09-21 12:20:38 +02001819 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
Robert Richter948b1bb2010-03-29 18:36:50 +02001820 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
Robert Richterd6dc0b42010-03-17 12:49:13 +01001821 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001822
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001823 /*
1824 * Install callbacks. Core will call them for each online
1825 * cpu.
1826 */
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001827 err = cpuhp_setup_state(CPUHP_PERF_X86_PREPARE, "perf/x86:prepare",
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001828 x86_pmu_prepare_cpu, x86_pmu_dead_cpu);
1829 if (err)
1830 return err;
1831
1832 err = cpuhp_setup_state(CPUHP_AP_PERF_X86_STARTING,
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001833 "perf/x86:starting", x86_pmu_starting_cpu,
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001834 x86_pmu_dying_cpu);
1835 if (err)
1836 goto out;
1837
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001838 err = cpuhp_setup_state(CPUHP_AP_PERF_X86_ONLINE, "perf/x86:online",
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001839 x86_pmu_online_cpu, NULL);
1840 if (err)
1841 goto out1;
1842
1843 err = perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
1844 if (err)
1845 goto out2;
Peter Zijlstra004417a2010-11-25 18:38:29 +01001846
1847 return 0;
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001848
1849out2:
1850 cpuhp_remove_state(CPUHP_AP_PERF_X86_ONLINE);
1851out1:
1852 cpuhp_remove_state(CPUHP_AP_PERF_X86_STARTING);
1853out:
1854 cpuhp_remove_state(CPUHP_PERF_X86_PREPARE);
1855 return err;
Ingo Molnar241771e2008-12-03 10:39:53 +01001856}
Peter Zijlstra004417a2010-11-25 18:38:29 +01001857early_initcall(init_hw_perf_events);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001858
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001859static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001860{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001861 x86_perf_event_update(event);
Ingo Molnaree060942008-12-13 09:00:03 +01001862}
1863
Lin Ming4d1c52b2010-04-23 13:56:12 +08001864/*
1865 * Start group events scheduling transaction
1866 * Set the flag to make pmu::enable() not perform the
1867 * schedulability test, it will be performed at commit time
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001868 *
1869 * We only support PERF_PMU_TXN_ADD transactions. Save the
1870 * transaction flags but otherwise ignore non-PERF_PMU_TXN_ADD
1871 * transactions.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001872 */
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001873static void x86_pmu_start_txn(struct pmu *pmu, unsigned int txn_flags)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001874{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001875 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1876
1877 WARN_ON_ONCE(cpuc->txn_flags); /* txn already in flight */
1878
1879 cpuc->txn_flags = txn_flags;
1880 if (txn_flags & ~PERF_PMU_TXN_ADD)
1881 return;
1882
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001883 perf_pmu_disable(pmu);
Tejun Heo0a3aee02010-12-18 16:28:55 +01001884 __this_cpu_write(cpu_hw_events.n_txn, 0);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001885}
1886
1887/*
1888 * Stop group events scheduling transaction
1889 * Clear the flag and pmu::enable() will perform the
1890 * schedulability test.
1891 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001892static void x86_pmu_cancel_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001893{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001894 unsigned int txn_flags;
1895 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1896
1897 WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
1898
1899 txn_flags = cpuc->txn_flags;
1900 cpuc->txn_flags = 0;
1901 if (txn_flags & ~PERF_PMU_TXN_ADD)
1902 return;
1903
Stephane Eranian90151c352010-05-25 16:23:10 +02001904 /*
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001905 * Truncate collected array by the number of events added in this
1906 * transaction. See x86_pmu_add() and x86_pmu_*_txn().
Stephane Eranian90151c352010-05-25 16:23:10 +02001907 */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001908 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1909 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001910 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001911}
1912
1913/*
1914 * Commit group events scheduling transaction
1915 * Perform the group schedulability test as a whole
1916 * Return 0 if success
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001917 *
1918 * Does not cancel the transaction on failure; expects the caller to do this.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001919 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001920static int x86_pmu_commit_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001921{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001922 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001923 int assign[X86_PMC_IDX_MAX];
1924 int n, ret;
1925
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001926 WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
1927
1928 if (cpuc->txn_flags & ~PERF_PMU_TXN_ADD) {
1929 cpuc->txn_flags = 0;
1930 return 0;
1931 }
1932
Lin Ming4d1c52b2010-04-23 13:56:12 +08001933 n = cpuc->n_events;
1934
1935 if (!x86_pmu_initialized())
1936 return -EAGAIN;
1937
1938 ret = x86_pmu.schedule_events(cpuc, n, assign);
1939 if (ret)
1940 return ret;
1941
1942 /*
1943 * copy new assignment, now we know it is possible
1944 * will be used by hw_perf_enable()
1945 */
1946 memcpy(cpuc->assign, assign, n*sizeof(int));
1947
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001948 cpuc->txn_flags = 0;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001949 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001950 return 0;
1951}
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001952/*
1953 * a fake_cpuc is used to validate event groups. Due to
1954 * the extra reg logic, we need to also allocate a fake
1955 * per_core and per_cpu structure. Otherwise, group events
1956 * using extra reg may conflict without the kernel being
1957 * able to catch this when the last event gets added to
1958 * the group.
1959 */
1960static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1961{
1962 kfree(cpuc->shared_regs);
1963 kfree(cpuc);
1964}
1965
1966static struct cpu_hw_events *allocate_fake_cpuc(void)
1967{
1968 struct cpu_hw_events *cpuc;
1969 int cpu = raw_smp_processor_id();
1970
1971 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1972 if (!cpuc)
1973 return ERR_PTR(-ENOMEM);
1974
1975 /* only needed, if we have extra_regs */
1976 if (x86_pmu.extra_regs) {
1977 cpuc->shared_regs = allocate_shared_regs(cpu);
1978 if (!cpuc->shared_regs)
1979 goto error;
1980 }
Peter Zijlstrab430f7c2012-06-05 15:30:31 +02001981 cpuc->is_fake = 1;
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001982 return cpuc;
1983error:
1984 free_fake_cpuc(cpuc);
1985 return ERR_PTR(-ENOMEM);
1986}
Lin Ming4d1c52b2010-04-23 13:56:12 +08001987
Stephane Eranian1da53e02010-01-18 10:58:01 +02001988/*
Peter Zijlstraca037702010-03-02 19:52:12 +01001989 * validate that we can schedule this event
1990 */
1991static int validate_event(struct perf_event *event)
1992{
1993 struct cpu_hw_events *fake_cpuc;
1994 struct event_constraint *c;
1995 int ret = 0;
1996
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001997 fake_cpuc = allocate_fake_cpuc();
1998 if (IS_ERR(fake_cpuc))
1999 return PTR_ERR(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01002000
Stephane Eranian79cba822014-11-17 20:06:56 +01002001 c = x86_pmu.get_event_constraints(fake_cpuc, -1, event);
Peter Zijlstraca037702010-03-02 19:52:12 +01002002
2003 if (!c || !c->weight)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01002004 ret = -EINVAL;
Peter Zijlstraca037702010-03-02 19:52:12 +01002005
2006 if (x86_pmu.put_event_constraints)
2007 x86_pmu.put_event_constraints(fake_cpuc, event);
2008
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002009 free_fake_cpuc(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01002010
2011 return ret;
2012}
2013
2014/*
Stephane Eranian1da53e02010-01-18 10:58:01 +02002015 * validate a single event group
2016 *
2017 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01002018 * - check events are compatible which each other
2019 * - events do not compete for the same counter
2020 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02002021 *
2022 * validation ensures the group can be loaded onto the
2023 * PMU if it was the only group available.
2024 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002025static int validate_group(struct perf_event *event)
2026{
Stephane Eranian1da53e02010-01-18 10:58:01 +02002027 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01002028 struct cpu_hw_events *fake_cpuc;
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01002029 int ret = -EINVAL, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002030
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002031 fake_cpuc = allocate_fake_cpuc();
2032 if (IS_ERR(fake_cpuc))
2033 return PTR_ERR(fake_cpuc);
Stephane Eranian1da53e02010-01-18 10:58:01 +02002034 /*
2035 * the event is not yet connected with its
2036 * siblings therefore we must first collect
2037 * existing siblings, then add the new event
2038 * before we can simulate the scheduling
2039 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01002040 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02002041 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002042 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002043
Peter Zijlstra502568d2010-01-22 14:35:46 +01002044 fake_cpuc->n_events = n;
2045 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02002046 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002047 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002048
Peter Zijlstra502568d2010-01-22 14:35:46 +01002049 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02002050
Cyrill Gorcunova0727382010-03-11 19:54:39 +03002051 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
Peter Zijlstra502568d2010-01-22 14:35:46 +01002052
Peter Zijlstra502568d2010-01-22 14:35:46 +01002053out:
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002054 free_fake_cpuc(fake_cpuc);
Peter Zijlstra502568d2010-01-22 14:35:46 +01002055 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002056}
2057
Yinghai Ludda99112011-01-21 15:30:01 -08002058static int x86_pmu_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01002059{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02002060 struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01002061 int err;
2062
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002063 switch (event->attr.type) {
2064 case PERF_TYPE_RAW:
2065 case PERF_TYPE_HARDWARE:
2066 case PERF_TYPE_HW_CACHE:
2067 break;
2068
2069 default:
2070 return -ENOENT;
2071 }
2072
2073 err = __x86_pmu_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002074 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02002075 /*
2076 * we temporarily connect event to its pmu
2077 * such that validate_group() can classify
2078 * it as an x86 event using is_x86_event()
2079 */
2080 tmp = event->pmu;
2081 event->pmu = &pmu;
2082
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002083 if (event->group_leader != event)
2084 err = validate_group(event);
Peter Zijlstraca037702010-03-02 19:52:12 +01002085 else
2086 err = validate_event(event);
Stephane Eranian81130702010-01-21 17:39:01 +02002087
2088 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002089 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02002090 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002091 if (event->destroy)
2092 event->destroy(event);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02002093 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01002094
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002095 if (ACCESS_ONCE(x86_pmu.attr_rdpmc))
2096 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
2097
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002098 return err;
Ingo Molnar621a01e2008-12-11 12:46:46 +01002099}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002100
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002101static void refresh_pce(void *ignored)
2102{
Andy Lutomirski5dc855d2017-03-16 12:59:39 -07002103 if (current->active_mm)
2104 load_mm_cr4(current->active_mm);
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002105}
2106
2107static void x86_pmu_event_mapped(struct perf_event *event)
2108{
2109 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2110 return;
2111
2112 if (atomic_inc_return(&current->mm->context.perf_rdpmc_allowed) == 1)
2113 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
2114}
2115
2116static void x86_pmu_event_unmapped(struct perf_event *event)
2117{
2118 if (!current->mm)
2119 return;
2120
2121 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2122 return;
2123
2124 if (atomic_dec_and_test(&current->mm->context.perf_rdpmc_allowed))
2125 on_each_cpu_mask(mm_cpumask(current->mm), refresh_pce, NULL, 1);
2126}
2127
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002128static int x86_pmu_event_idx(struct perf_event *event)
2129{
2130 int idx = event->hw.idx;
2131
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002132 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
Peter Zijlstrac7206202012-03-22 17:26:36 +01002133 return 0;
2134
Robert Richter15c7ad52012-06-20 20:46:33 +02002135 if (x86_pmu.num_counters_fixed && idx >= INTEL_PMC_IDX_FIXED) {
2136 idx -= INTEL_PMC_IDX_FIXED;
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002137 idx |= 1 << 30;
2138 }
2139
2140 return idx + 1;
2141}
2142
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002143static ssize_t get_attr_rdpmc(struct device *cdev,
2144 struct device_attribute *attr,
2145 char *buf)
2146{
2147 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
2148}
2149
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002150static ssize_t set_attr_rdpmc(struct device *cdev,
2151 struct device_attribute *attr,
2152 const char *buf, size_t count)
2153{
Shuah Khane2b297f2012-06-10 21:13:41 -06002154 unsigned long val;
2155 ssize_t ret;
2156
2157 ret = kstrtoul(buf, 0, &val);
2158 if (ret)
2159 return ret;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002160
Andy Lutomirskia6673422014-10-24 15:58:13 -07002161 if (val > 2)
2162 return -EINVAL;
2163
Peter Zijlstrae97df762014-02-05 20:48:51 +01002164 if (x86_pmu.attr_rdpmc_broken)
2165 return -ENOTSUPP;
2166
Andy Lutomirskia6673422014-10-24 15:58:13 -07002167 if ((val == 2) != (x86_pmu.attr_rdpmc == 2)) {
2168 /*
2169 * Changing into or out of always available, aka
2170 * perf-event-bypassing mode. This path is extremely slow,
2171 * but only root can trigger it, so it's okay.
2172 */
2173 if (val == 2)
2174 static_key_slow_inc(&rdpmc_always_available);
2175 else
2176 static_key_slow_dec(&rdpmc_always_available);
2177 on_each_cpu(refresh_pce, NULL, 1);
2178 }
2179
2180 x86_pmu.attr_rdpmc = val;
2181
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002182 return count;
2183}
2184
2185static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
2186
2187static struct attribute *x86_pmu_attrs[] = {
2188 &dev_attr_rdpmc.attr,
2189 NULL,
2190};
2191
2192static struct attribute_group x86_pmu_attr_group = {
2193 .attrs = x86_pmu_attrs,
2194};
2195
2196static const struct attribute_group *x86_pmu_attr_groups[] = {
2197 &x86_pmu_attr_group,
Jiri Olsa641cc932012-03-15 20:09:14 +01002198 &x86_pmu_format_group,
Jiri Olsaa4747392012-10-10 14:53:11 +02002199 &x86_pmu_events_group,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002200 NULL,
2201};
2202
Yan, Zhengba532502014-11-04 21:55:58 -05002203static void x86_pmu_sched_task(struct perf_event_context *ctx, bool sched_in)
Stephane Eraniand010b332012-02-09 23:21:00 +01002204{
Yan, Zhengba532502014-11-04 21:55:58 -05002205 if (x86_pmu.sched_task)
2206 x86_pmu.sched_task(ctx, sched_in);
Stephane Eraniand010b332012-02-09 23:21:00 +01002207}
2208
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002209void perf_check_microcode(void)
2210{
2211 if (x86_pmu.check_microcode)
2212 x86_pmu.check_microcode();
2213}
2214EXPORT_SYMBOL_GPL(perf_check_microcode);
2215
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002216static struct pmu pmu = {
Stephane Eraniand010b332012-02-09 23:21:00 +01002217 .pmu_enable = x86_pmu_enable,
2218 .pmu_disable = x86_pmu_disable,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002219
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002220 .attr_groups = x86_pmu_attr_groups,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002221
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002222 .event_init = x86_pmu_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002223
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002224 .event_mapped = x86_pmu_event_mapped,
2225 .event_unmapped = x86_pmu_event_unmapped,
2226
Stephane Eraniand010b332012-02-09 23:21:00 +01002227 .add = x86_pmu_add,
2228 .del = x86_pmu_del,
2229 .start = x86_pmu_start,
2230 .stop = x86_pmu_stop,
2231 .read = x86_pmu_read,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002232
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002233 .start_txn = x86_pmu_start_txn,
2234 .cancel_txn = x86_pmu_cancel_txn,
2235 .commit_txn = x86_pmu_commit_txn,
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002236
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002237 .event_idx = x86_pmu_event_idx,
Yan, Zhengba532502014-11-04 21:55:58 -05002238 .sched_task = x86_pmu_sched_task,
Yan, Zhenge18bf522014-11-04 21:56:03 -05002239 .task_ctx_size = sizeof(struct x86_perf_task_context),
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002240};
2241
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07002242void arch_perf_update_userpage(struct perf_event *event,
2243 struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002244{
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002245 struct cyc2ns_data *data;
2246
Peter Zijlstrafa731582013-09-19 10:16:42 +02002247 userpg->cap_user_time = 0;
2248 userpg->cap_user_time_zero = 0;
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002249 userpg->cap_user_rdpmc =
2250 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
Peter Zijlstrac7206202012-03-22 17:26:36 +01002251 userpg->pmc_width = x86_pmu.cntval_bits;
2252
Peter Zijlstra35af99e2013-11-28 19:38:42 +01002253 if (!sched_clock_stable())
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002254 return;
2255
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002256 data = cyc2ns_read_begin();
2257
Peter Zijlstra34f43922015-02-20 14:05:38 +01002258 /*
2259 * Internal timekeeping for enabled/running/stopped times
2260 * is always in the local_clock domain.
2261 */
Peter Zijlstrafa731582013-09-19 10:16:42 +02002262 userpg->cap_user_time = 1;
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002263 userpg->time_mult = data->cyc2ns_mul;
2264 userpg->time_shift = data->cyc2ns_shift;
2265 userpg->time_offset = data->cyc2ns_offset - now;
Adrian Hunterc73deb62013-06-28 16:22:18 +03002266
Peter Zijlstra34f43922015-02-20 14:05:38 +01002267 /*
2268 * cap_user_time_zero doesn't make sense when we're using a different
2269 * time base for the records.
2270 */
Alexander Shishkinf454bfd2016-04-14 14:59:49 +03002271 if (!event->attr.use_clockid) {
Peter Zijlstra34f43922015-02-20 14:05:38 +01002272 userpg->cap_user_time_zero = 1;
2273 userpg->time_zero = data->cyc2ns_offset;
2274 }
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002275
2276 cyc2ns_read_end(data);
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002277}
2278
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02002279void
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002280perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002281{
Josh Poimboeuf35f4d9b2016-09-16 14:18:13 -05002282 struct unwind_state state;
2283 unsigned long addr;
2284
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002285 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2286 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002287 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002288 }
2289
Josh Poimboeuf019e5792016-08-24 11:50:14 -05002290 if (perf_callchain_store(entry, regs->ip))
2291 return;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002292
Josh Poimboeuf35f4d9b2016-09-16 14:18:13 -05002293 for (unwind_start(&state, current, regs, NULL); !unwind_done(&state);
2294 unwind_next_frame(&state)) {
2295 addr = unwind_get_return_address(&state);
2296 if (!addr || perf_callchain_store(entry, addr))
2297 return;
2298 }
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002299}
2300
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002301static inline int
2302valid_user_frame(const void __user *fp, unsigned long size)
2303{
2304 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2305}
2306
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002307static unsigned long get_segment_base(unsigned int segment)
2308{
2309 struct desc_struct *desc;
Thomas Gleixner990e9dc2016-12-10 00:13:51 +01002310 unsigned int idx = segment >> 3;
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002311
2312 if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -07002313#ifdef CONFIG_MODIFY_LDT_SYSCALL
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002314 struct ldt_struct *ldt;
2315
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002316 if (idx > LDT_ENTRIES)
2317 return 0;
2318
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002319 /* IRQs are off, so this synchronizes with smp_store_release */
2320 ldt = lockless_dereference(current->active_mm->context.ldt);
2321 if (!ldt || idx > ldt->size)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002322 return 0;
2323
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002324 desc = &ldt->entries[idx];
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -07002325#else
2326 return 0;
2327#endif
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002328 } else {
2329 if (idx > GDT_ENTRIES)
2330 return 0;
2331
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002332 desc = raw_cpu_ptr(gdt_page.gdt) + idx;
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002333 }
2334
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002335 return get_desc_base(desc);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002336}
2337
Brian Gerst10ed3492015-06-22 07:55:17 -04002338#ifdef CONFIG_IA32_EMULATION
H. Peter Anvind1a797f2012-02-19 10:06:34 -08002339
2340#include <asm/compat.h>
2341
Torok Edwin257ef9d2010-03-17 12:07:16 +02002342static inline int
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002343perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002344{
Torok Edwin257ef9d2010-03-17 12:07:16 +02002345 /* 32-bit process in 64-bit kernel. */
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002346 unsigned long ss_base, cs_base;
Torok Edwin257ef9d2010-03-17 12:07:16 +02002347 struct stack_frame_ia32 frame;
2348 const void __user *fp;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002349
Torok Edwin257ef9d2010-03-17 12:07:16 +02002350 if (!test_thread_flag(TIF_IA32))
2351 return 0;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002352
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002353 cs_base = get_segment_base(regs->cs);
2354 ss_base = get_segment_base(regs->ss);
2355
2356 fp = compat_ptr(ss_base + regs->bp);
Andi Kleen75925e12015-10-22 15:07:21 -07002357 pagefault_disable();
Arnaldo Carvalho de Melo3b1fff02016-05-10 18:08:32 -03002358 while (entry->nr < entry->max_stack) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02002359 unsigned long bytes;
2360 frame.next_frame = 0;
2361 frame.return_address = 0;
2362
Johannes Weinerae31fe52016-11-22 10:57:42 +01002363 if (!valid_user_frame(fp, sizeof(frame)))
Andi Kleen75925e12015-10-22 15:07:21 -07002364 break;
2365
2366 bytes = __copy_from_user_nmi(&frame.next_frame, fp, 4);
2367 if (bytes != 0)
2368 break;
2369 bytes = __copy_from_user_nmi(&frame.return_address, fp+4, 4);
Peter Zijlstra0a196842013-10-30 21:16:22 +01002370 if (bytes != 0)
Torok Edwin257ef9d2010-03-17 12:07:16 +02002371 break;
2372
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002373 perf_callchain_store(entry, cs_base + frame.return_address);
2374 fp = compat_ptr(ss_base + frame.next_frame);
Torok Edwin257ef9d2010-03-17 12:07:16 +02002375 }
Andi Kleen75925e12015-10-22 15:07:21 -07002376 pagefault_enable();
Torok Edwin257ef9d2010-03-17 12:07:16 +02002377 return 1;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002378}
Torok Edwin257ef9d2010-03-17 12:07:16 +02002379#else
2380static inline int
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002381perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
Torok Edwin257ef9d2010-03-17 12:07:16 +02002382{
2383 return 0;
2384}
2385#endif
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002386
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02002387void
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002388perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002389{
2390 struct stack_frame frame;
Josh Poimboeuffc188222016-07-01 23:02:05 -05002391 const unsigned long __user *fp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002392
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002393 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2394 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002395 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002396 }
Ingo Molnar5a6cec32009-05-29 11:25:09 +02002397
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002398 /*
2399 * We don't know what to do with VM86 stacks.. ignore them for now.
2400 */
2401 if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2402 return;
2403
Josh Poimboeuffc188222016-07-01 23:02:05 -05002404 fp = (unsigned long __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002405
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002406 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002407
Andrey Vagin20afc602011-08-30 12:32:36 +04002408 if (!current->mm)
2409 return;
2410
Torok Edwin257ef9d2010-03-17 12:07:16 +02002411 if (perf_callchain_user32(regs, entry))
2412 return;
2413
Andi Kleen75925e12015-10-22 15:07:21 -07002414 pagefault_disable();
Arnaldo Carvalho de Melo3b1fff02016-05-10 18:08:32 -03002415 while (entry->nr < entry->max_stack) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02002416 unsigned long bytes;
Josh Poimboeuffc188222016-07-01 23:02:05 -05002417
Ingo Molnar038e8362009-06-15 09:57:59 +02002418 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002419 frame.return_address = 0;
2420
Johannes Weinerae31fe52016-11-22 10:57:42 +01002421 if (!valid_user_frame(fp, sizeof(frame)))
Andi Kleen75925e12015-10-22 15:07:21 -07002422 break;
2423
Josh Poimboeuffc188222016-07-01 23:02:05 -05002424 bytes = __copy_from_user_nmi(&frame.next_frame, fp, sizeof(*fp));
Andi Kleen75925e12015-10-22 15:07:21 -07002425 if (bytes != 0)
2426 break;
Josh Poimboeuffc188222016-07-01 23:02:05 -05002427 bytes = __copy_from_user_nmi(&frame.return_address, fp + 1, sizeof(*fp));
Peter Zijlstra0a196842013-10-30 21:16:22 +01002428 if (bytes != 0)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002429 break;
2430
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002431 perf_callchain_store(entry, frame.return_address);
Andi Kleen75925e12015-10-22 15:07:21 -07002432 fp = (void __user *)frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002433 }
Andi Kleen75925e12015-10-22 15:07:21 -07002434 pagefault_enable();
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002435}
2436
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002437/*
2438 * Deal with code segment offsets for the various execution modes:
2439 *
2440 * VM86 - the good olde 16 bit days, where the linear address is
2441 * 20 bits and we use regs->ip + 0x10 * regs->cs.
2442 *
2443 * IA32 - Where we need to look at GDT/LDT segment descriptor tables
2444 * to figure out what the 32bit base address is.
2445 *
2446 * X32 - has TIF_X32 set, but is running in x86_64
2447 *
2448 * X86_64 - CS,DS,SS,ES are all zero based.
2449 */
2450static unsigned long code_segment_base(struct pt_regs *regs)
2451{
2452 /*
Andy Lutomirski383f3af2015-03-18 18:33:30 -07002453 * For IA32 we look at the GDT/LDT segment base to convert the
2454 * effective IP to a linear address.
2455 */
2456
2457#ifdef CONFIG_X86_32
2458 /*
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002459 * If we are in VM86 mode, add the segment offset to convert to a
2460 * linear address.
2461 */
2462 if (regs->flags & X86_VM_MASK)
2463 return 0x10 * regs->cs;
2464
Ingo Molnar55474c42015-03-29 11:02:34 +02002465 if (user_mode(regs) && regs->cs != __USER_CS)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002466 return get_segment_base(regs->cs);
2467#else
Andy Lutomirskic56716a2015-03-18 18:33:28 -07002468 if (user_mode(regs) && !user_64bit_mode(regs) &&
2469 regs->cs != __USER32_CS)
2470 return get_segment_base(regs->cs);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002471#endif
2472 return 0;
2473}
2474
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002475unsigned long perf_instruction_pointer(struct pt_regs *regs)
2476{
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002477 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002478 return perf_guest_cbs->get_guest_ip();
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002479
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002480 return regs->ip + code_segment_base(regs);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002481}
2482
2483unsigned long perf_misc_flags(struct pt_regs *regs)
2484{
2485 int misc = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002486
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002487 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002488 if (perf_guest_cbs->is_user_mode())
2489 misc |= PERF_RECORD_MISC_GUEST_USER;
2490 else
2491 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2492 } else {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002493 if (user_mode(regs))
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002494 misc |= PERF_RECORD_MISC_USER;
2495 else
2496 misc |= PERF_RECORD_MISC_KERNEL;
2497 }
2498
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002499 if (regs->flags & PERF_EFLAGS_EXACT)
Peter Zijlstraab608342010-04-08 23:03:20 +02002500 misc |= PERF_RECORD_MISC_EXACT_IP;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002501
2502 return misc;
2503}
Gleb Natapovb3d94682011-11-10 14:57:27 +02002504
2505void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2506{
2507 cap->version = x86_pmu.version;
2508 cap->num_counters_gp = x86_pmu.num_counters;
2509 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2510 cap->bit_width_gp = x86_pmu.cntval_bits;
2511 cap->bit_width_fixed = x86_pmu.cntval_bits;
2512 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
2513 cap->events_mask_len = x86_pmu.events_mask_len;
2514}
2515EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);