blob: c04a8813cff9bb6f9836fa91b84bef5351c59843 [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>
Ingo Molnar589ee622017-02-04 00:16:44 +010023#include <linux/sched/mm.h>
Ingo Molnare6017572017-02-01 16:36:40 +010024#include <linux/sched/clock.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020025#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Markus Metzger30dd5682009-07-21 15:56:48 +020027#include <linux/cpu.h>
Peter Zijlstra272d30b2010-01-22 16:32:17 +010028#include <linux/bitops.h>
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +010029#include <linux/device.h>
Peter Zijlstra46b1b572018-04-20 14:08:58 +020030#include <linux/nospec.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010031
Ingo Molnar241771e2008-12-03 10:39:53 +010032#include <asm/apic.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020033#include <asm/stacktrace.h>
Peter Zijlstra4e935e42009-03-30 19:07:16 +020034#include <asm/nmi.h>
Lin Ming69092622011-03-03 10:34:50 +080035#include <asm/smp.h>
Robert Richterc8e59102011-04-16 02:27:55 +020036#include <asm/alternative.h>
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070037#include <asm/mmu_context.h>
Andy Lutomirski375074c2014-10-24 15:58:07 -070038#include <asm/tlbflush.h>
Peter Zijlstrae3f35412011-11-21 11:43:53 +010039#include <asm/timer.h>
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +020040#include <asm/desc.h>
41#include <asm/ldt.h>
Josh Poimboeuf35f4d9b2016-09-16 14:18:13 -050042#include <asm/unwind.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010043
Borislav Petkov27f6d222016-02-10 10:55:23 +010044#include "perf_event.h"
Kevin Winchesterde0428a2011-08-30 20:41:05 -030045
Kevin Winchesterde0428a2011-08-30 20:41:05 -030046struct x86_pmu x86_pmu __read_mostly;
Stephane Eranianefc9f052011-06-06 16:57:03 +020047
Kevin Winchesterde0428a2011-08-30 20:41:05 -030048DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +010049 .enabled = 1,
50};
Ingo Molnar241771e2008-12-03 10:39:53 +010051
Davidlohr Bueso631fe152018-03-26 14:09:27 -070052DEFINE_STATIC_KEY_FALSE(rdpmc_always_available_key);
Andy Lutomirskia6673422014-10-24 15:58:13 -070053
Kevin Winchesterde0428a2011-08-30 20:41:05 -030054u64 __read_mostly hw_cache_event_ids
Ingo Molnar8326f442009-06-05 20:22:46 +020055 [PERF_COUNT_HW_CACHE_MAX]
56 [PERF_COUNT_HW_CACHE_OP_MAX]
57 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Kevin Winchesterde0428a2011-08-30 20:41:05 -030058u64 __read_mostly hw_cache_extra_regs
Andi Kleene994d7d2011-03-03 10:34:48 +080059 [PERF_COUNT_HW_CACHE_MAX]
60 [PERF_COUNT_HW_CACHE_OP_MAX]
61 [PERF_COUNT_HW_CACHE_RESULT_MAX];
Ingo Molnar8326f442009-06-05 20:22:46 +020062
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +053063/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020064 * Propagate event elapsed time into the generic event.
65 * Can only be executed on the CPU where the event is active.
Ingo Molnaree060942008-12-13 09:00:03 +010066 * Returns the delta events processed.
67 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -030068u64 x86_perf_event_update(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +010069{
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010070 struct hw_perf_event *hwc = &event->hw;
Robert Richter948b1bb2010-03-29 18:36:50 +020071 int shift = 64 - x86_pmu.cntval_bits;
Peter Zijlstraec3232b2009-05-13 09:45:19 +020072 u64 prev_raw_count, new_raw_count;
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +010073 int idx = hwc->idx;
Peter Zijlstra (Intel)7f612a72016-11-29 20:33:28 +000074 u64 delta;
Ingo Molnaree060942008-12-13 09:00:03 +010075
Robert Richter15c7ad52012-06-20 20:46:33 +020076 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +020077 return 0;
78
Ingo Molnaree060942008-12-13 09:00:03 +010079 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +020080 * Careful: an NMI might modify the previous event value.
Ingo Molnaree060942008-12-13 09:00:03 +010081 *
82 * Our tactic to handle this is to first atomically read and
83 * exchange a new raw count - then add that new-prev delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020084 * count to the generic event atomically:
Ingo Molnaree060942008-12-13 09:00:03 +010085 */
86again:
Peter Zijlstrae7850592010-05-21 14:43:08 +020087 prev_raw_count = local64_read(&hwc->prev_count);
Vince Weaverc48b6052012-03-01 17:28:14 -050088 rdpmcl(hwc->event_base_rdpmc, new_raw_count);
Ingo Molnaree060942008-12-13 09:00:03 +010089
Peter Zijlstrae7850592010-05-21 14:43:08 +020090 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Ingo Molnaree060942008-12-13 09:00:03 +010091 new_raw_count) != prev_raw_count)
92 goto again;
93
94 /*
95 * Now we have the new raw value and have updated the prev
96 * timestamp already. We can now calculate the elapsed delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +020097 * (event-)time and add that to the generic event.
Ingo Molnaree060942008-12-13 09:00:03 +010098 *
99 * Careful, not all hw sign-extends above the physical width
Peter Zijlstraec3232b2009-05-13 09:45:19 +0200100 * of the count.
Ingo Molnaree060942008-12-13 09:00:03 +0100101 */
Peter Zijlstraec3232b2009-05-13 09:45:19 +0200102 delta = (new_raw_count << shift) - (prev_raw_count << shift);
103 delta >>= shift;
Ingo Molnaree060942008-12-13 09:00:03 +0100104
Peter Zijlstrae7850592010-05-21 14:43:08 +0200105 local64_add(delta, &event->count);
106 local64_sub(delta, &hwc->period_left);
Robert Richter4b7bfd02009-04-29 12:47:22 +0200107
108 return new_raw_count;
Ingo Molnaree060942008-12-13 09:00:03 +0100109}
110
Andi Kleena7e3ed12011-03-03 10:34:47 +0800111/*
112 * Find and validate any extra registers to set up.
113 */
114static int x86_pmu_extra_regs(u64 config, struct perf_event *event)
115{
Stephane Eranianefc9f052011-06-06 16:57:03 +0200116 struct hw_perf_event_extra *reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800117 struct extra_reg *er;
118
Stephane Eranianefc9f052011-06-06 16:57:03 +0200119 reg = &event->hw.extra_reg;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800120
121 if (!x86_pmu.extra_regs)
122 return 0;
123
124 for (er = x86_pmu.extra_regs; er->msr; er++) {
125 if (er->event != (config & er->config_mask))
126 continue;
127 if (event->attr.config1 & ~er->valid_mask)
128 return -EINVAL;
Kan Liang338b5222014-07-14 12:25:56 -0700129 /* Check if the extra msrs can be safely accessed*/
130 if (!er->extra_msr_access)
131 return -ENXIO;
Stephane Eranianefc9f052011-06-06 16:57:03 +0200132
133 reg->idx = er->idx;
134 reg->config = event->attr.config1;
135 reg->reg = er->msr;
Andi Kleena7e3ed12011-03-03 10:34:47 +0800136 break;
137 }
138 return 0;
139}
140
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200141static atomic_t active_events;
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300142static atomic_t pmc_refcount;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200143static DEFINE_MUTEX(pmc_reserve_mutex);
144
Robert Richterb27ea292010-03-17 12:49:10 +0100145#ifdef CONFIG_X86_LOCAL_APIC
146
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200147static bool reserve_pmc_hardware(void)
148{
149 int i;
150
Robert Richter948b1bb2010-03-29 18:36:50 +0200151 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100152 if (!reserve_perfctr_nmi(x86_pmu_event_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200153 goto perfctr_fail;
154 }
155
Robert Richter948b1bb2010-03-29 18:36:50 +0200156 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100157 if (!reserve_evntsel_nmi(x86_pmu_config_addr(i)))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200158 goto eventsel_fail;
159 }
160
161 return true;
162
163eventsel_fail:
164 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100165 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200166
Robert Richter948b1bb2010-03-29 18:36:50 +0200167 i = x86_pmu.num_counters;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200168
169perfctr_fail:
170 for (i--; i >= 0; i--)
Robert Richter41bf4982011-02-02 17:40:57 +0100171 release_perfctr_nmi(x86_pmu_event_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200172
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200173 return false;
174}
175
176static void release_pmc_hardware(void)
177{
178 int i;
179
Robert Richter948b1bb2010-03-29 18:36:50 +0200180 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100181 release_perfctr_nmi(x86_pmu_event_addr(i));
182 release_evntsel_nmi(x86_pmu_config_addr(i));
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200183 }
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200184}
185
Robert Richterb27ea292010-03-17 12:49:10 +0100186#else
187
188static bool reserve_pmc_hardware(void) { return true; }
189static void release_pmc_hardware(void) {}
190
191#endif
192
Don Zickus33c6d6a2010-11-22 16:55:23 -0500193static bool check_hw_exists(void)
194{
Arnd Bergmann11d8b052017-07-19 14:52:59 +0200195 u64 val, val_fail = -1, val_new= ~0;
196 int i, reg, reg_fail = -1, ret = 0;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100197 int bios_fail = 0;
Don Zickus68ab7472015-05-18 15:16:48 -0400198 int reg_safe = -1;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500199
Peter Zijlstra44072042010-12-08 15:56:23 +0100200 /*
201 * Check to see if the BIOS enabled any of the counters, if so
202 * complain and bail.
203 */
204 for (i = 0; i < x86_pmu.num_counters; i++) {
Robert Richter41bf4982011-02-02 17:40:57 +0100205 reg = x86_pmu_config_addr(i);
Peter Zijlstra44072042010-12-08 15:56:23 +0100206 ret = rdmsrl_safe(reg, &val);
207 if (ret)
208 goto msr_fail;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100209 if (val & ARCH_PERFMON_EVENTSEL_ENABLE) {
210 bios_fail = 1;
211 val_fail = val;
212 reg_fail = reg;
Don Zickus68ab7472015-05-18 15:16:48 -0400213 } else {
214 reg_safe = i;
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100215 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100216 }
217
218 if (x86_pmu.num_counters_fixed) {
219 reg = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
220 ret = rdmsrl_safe(reg, &val);
221 if (ret)
222 goto msr_fail;
223 for (i = 0; i < x86_pmu.num_counters_fixed; i++) {
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100224 if (val & (0x03 << i*4)) {
225 bios_fail = 1;
226 val_fail = val;
227 reg_fail = reg;
228 }
Peter Zijlstra44072042010-12-08 15:56:23 +0100229 }
230 }
231
232 /*
Don Zickus68ab7472015-05-18 15:16:48 -0400233 * If all the counters are enabled, the below test will always
234 * fail. The tools will also become useless in this scenario.
235 * Just fail and disable the hardware counters.
236 */
237
238 if (reg_safe == -1) {
239 reg = reg_safe;
240 goto msr_fail;
241 }
242
243 /*
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200244 * Read the current value, change it and read it back to see if it
245 * matches, this is needed to detect certain hardware emulators
246 * (qemu/kvm) that don't trap on the MSR access and always return 0s.
Peter Zijlstra44072042010-12-08 15:56:23 +0100247 */
Don Zickus68ab7472015-05-18 15:16:48 -0400248 reg = x86_pmu_event_addr(reg_safe);
Andre Przywarabffd5fc2012-10-09 17:38:35 +0200249 if (rdmsrl_safe(reg, &val))
250 goto msr_fail;
251 val ^= 0xffffUL;
Robert Richterf285f922012-06-20 20:46:36 +0200252 ret = wrmsrl_safe(reg, val);
253 ret |= rdmsrl_safe(reg, &val_new);
Don Zickus33c6d6a2010-11-22 16:55:23 -0500254 if (ret || val != val_new)
Peter Zijlstra44072042010-12-08 15:56:23 +0100255 goto msr_fail;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500256
Ingo Molnar45daae52011-03-25 10:24:23 +0100257 /*
258 * We still allow the PMU driver to operate:
259 */
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100260 if (bios_fail) {
Chen Yucong1b74dde2016-02-02 11:45:02 +0800261 pr_cont("Broken BIOS detected, complain to your hardware vendor.\n");
262 pr_err(FW_BUG "the BIOS has corrupted hw-PMU resources (MSR %x is %Lx)\n",
263 reg_fail, val_fail);
George Dunlapa5ebe0b2013-04-03 15:46:28 +0100264 }
Ingo Molnar45daae52011-03-25 10:24:23 +0100265
266 return true;
Peter Zijlstra44072042010-12-08 15:56:23 +0100267
268msr_fail:
Juergen Gross005bd002016-08-01 13:37:07 +0200269 if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
270 pr_cont("PMU not available due to virtualization, using software events only.\n");
271 } else {
272 pr_cont("Broken PMU hardware detected, using software events only.\n");
273 pr_err("Failed to access perfctr msr (MSR %x is %Lx)\n",
274 reg, val_new);
275 }
Ingo Molnar45daae52011-03-25 10:24:23 +0100276
Peter Zijlstra44072042010-12-08 15:56:23 +0100277 return false;
Don Zickus33c6d6a2010-11-22 16:55:23 -0500278}
279
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200280static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200281{
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300282 x86_release_hardware();
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300283 atomic_dec(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200284}
285
Alexander Shishkin48070342015-01-14 14:18:20 +0200286void hw_perf_lbr_event_destroy(struct perf_event *event)
287{
288 hw_perf_event_destroy(event);
289
290 /* undo the lbr/bts event accounting */
291 x86_del_exclusive(x86_lbr_exclusive_lbr);
292}
293
Robert Richter85cf9db2009-04-29 12:47:20 +0200294static inline int x86_pmu_initialized(void)
295{
296 return x86_pmu.handle_irq != NULL;
297}
298
Ingo Molnar8326f442009-06-05 20:22:46 +0200299static inline int
Andi Kleene994d7d2011-03-03 10:34:48 +0800300set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event *event)
Ingo Molnar8326f442009-06-05 20:22:46 +0200301{
Andi Kleene994d7d2011-03-03 10:34:48 +0800302 struct perf_event_attr *attr = &event->attr;
Ingo Molnar8326f442009-06-05 20:22:46 +0200303 unsigned int cache_type, cache_op, cache_result;
304 u64 config, val;
305
306 config = attr->config;
307
Peter Zijlstraef9ee4a2018-04-20 14:06:29 +0200308 cache_type = (config >> 0) & 0xff;
Ingo Molnar8326f442009-06-05 20:22:46 +0200309 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
310 return -EINVAL;
Peter Zijlstraef9ee4a2018-04-20 14:06:29 +0200311 cache_type = array_index_nospec(cache_type, PERF_COUNT_HW_CACHE_MAX);
Ingo Molnar8326f442009-06-05 20:22:46 +0200312
313 cache_op = (config >> 8) & 0xff;
314 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
315 return -EINVAL;
Peter Zijlstraef9ee4a2018-04-20 14:06:29 +0200316 cache_op = array_index_nospec(cache_op, PERF_COUNT_HW_CACHE_OP_MAX);
Ingo Molnar8326f442009-06-05 20:22:46 +0200317
318 cache_result = (config >> 16) & 0xff;
319 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
320 return -EINVAL;
Peter Zijlstraef9ee4a2018-04-20 14:06:29 +0200321 cache_result = array_index_nospec(cache_result, PERF_COUNT_HW_CACHE_RESULT_MAX);
Ingo Molnar8326f442009-06-05 20:22:46 +0200322
323 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
324
325 if (val == 0)
326 return -ENOENT;
327
328 if (val == -1)
329 return -EINVAL;
330
331 hwc->config |= val;
Andi Kleene994d7d2011-03-03 10:34:48 +0800332 attr->config1 = hw_cache_extra_regs[cache_type][cache_op][cache_result];
333 return x86_pmu_extra_regs(val, event);
Ingo Molnar8326f442009-06-05 20:22:46 +0200334}
335
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300336int x86_reserve_hardware(void)
337{
338 int err = 0;
339
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300340 if (!atomic_inc_not_zero(&pmc_refcount)) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300341 mutex_lock(&pmc_reserve_mutex);
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300342 if (atomic_read(&pmc_refcount) == 0) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300343 if (!reserve_pmc_hardware())
344 err = -EBUSY;
345 else
346 reserve_ds_buffers();
347 }
348 if (!err)
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300349 atomic_inc(&pmc_refcount);
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300350 mutex_unlock(&pmc_reserve_mutex);
351 }
352
353 return err;
354}
355
356void x86_release_hardware(void)
357{
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300358 if (atomic_dec_and_mutex_lock(&pmc_refcount, &pmc_reserve_mutex)) {
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300359 release_pmc_hardware();
360 release_ds_buffers();
361 mutex_unlock(&pmc_reserve_mutex);
362 }
363}
364
Alexander Shishkin48070342015-01-14 14:18:20 +0200365/*
366 * Check if we can create event of a certain type (that no conflicting events
367 * are present).
368 */
369int x86_add_exclusive(unsigned int what)
370{
Peter Zijlstra93472af2015-06-24 16:47:50 +0200371 int i;
Alexander Shishkin48070342015-01-14 14:18:20 +0200372
Andi Kleenb0c1ef52016-12-08 16:14:17 -0800373 /*
374 * When lbr_pt_coexist we allow PT to coexist with either LBR or BTS.
375 * LBR and BTS are still mutually exclusive.
376 */
377 if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt)
Alexander Shishkinccbebba2016-04-28 18:35:46 +0300378 return 0;
379
Peter Zijlstra93472af2015-06-24 16:47:50 +0200380 if (!atomic_inc_not_zero(&x86_pmu.lbr_exclusive[what])) {
381 mutex_lock(&pmc_reserve_mutex);
382 for (i = 0; i < ARRAY_SIZE(x86_pmu.lbr_exclusive); i++) {
383 if (i != what && atomic_read(&x86_pmu.lbr_exclusive[i]))
384 goto fail_unlock;
385 }
386 atomic_inc(&x86_pmu.lbr_exclusive[what]);
387 mutex_unlock(&pmc_reserve_mutex);
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300388 }
Alexander Shishkin48070342015-01-14 14:18:20 +0200389
Peter Zijlstra93472af2015-06-24 16:47:50 +0200390 atomic_inc(&active_events);
391 return 0;
Alexander Shishkin48070342015-01-14 14:18:20 +0200392
Peter Zijlstra93472af2015-06-24 16:47:50 +0200393fail_unlock:
Alexander Shishkin48070342015-01-14 14:18:20 +0200394 mutex_unlock(&pmc_reserve_mutex);
Peter Zijlstra93472af2015-06-24 16:47:50 +0200395 return -EBUSY;
Alexander Shishkin48070342015-01-14 14:18:20 +0200396}
397
398void x86_del_exclusive(unsigned int what)
399{
Andi Kleenb0c1ef52016-12-08 16:14:17 -0800400 if (x86_pmu.lbr_pt_coexist && what == x86_lbr_exclusive_pt)
Alexander Shishkinccbebba2016-04-28 18:35:46 +0300401 return;
402
Alexander Shishkin48070342015-01-14 14:18:20 +0200403 atomic_dec(&x86_pmu.lbr_exclusive[what]);
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300404 atomic_dec(&active_events);
Alexander Shishkin48070342015-01-14 14:18:20 +0200405}
406
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300407int x86_setup_perfctr(struct perf_event *event)
Robert Richterc1726f32010-04-13 22:23:11 +0200408{
409 struct perf_event_attr *attr = &event->attr;
410 struct hw_perf_event *hwc = &event->hw;
411 u64 config;
412
Franck Bui-Huu6c7e5502010-11-23 16:21:43 +0100413 if (!is_sampling_event(event)) {
Robert Richterc1726f32010-04-13 22:23:11 +0200414 hwc->sample_period = x86_pmu.max_period;
415 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200416 local64_set(&hwc->period_left, hwc->sample_period);
Robert Richterc1726f32010-04-13 22:23:11 +0200417 }
418
419 if (attr->type == PERF_TYPE_RAW)
Peter Zijlstraed13ec52011-11-14 10:03:25 +0100420 return x86_pmu_extra_regs(event->attr.config, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200421
422 if (attr->type == PERF_TYPE_HW_CACHE)
Andi Kleene994d7d2011-03-03 10:34:48 +0800423 return set_ext_hw_attr(hwc, event);
Robert Richterc1726f32010-04-13 22:23:11 +0200424
425 if (attr->config >= x86_pmu.max_events)
426 return -EINVAL;
427
Peter Zijlstra46b1b572018-04-20 14:08:58 +0200428 attr->config = array_index_nospec((unsigned long)attr->config, x86_pmu.max_events);
429
Robert Richterc1726f32010-04-13 22:23:11 +0200430 /*
431 * The generic map:
432 */
433 config = x86_pmu.event_map(attr->config);
434
435 if (config == 0)
436 return -ENOENT;
437
438 if (config == -1LL)
439 return -EINVAL;
440
Robert Richterc1726f32010-04-13 22:23:11 +0200441 hwc->config |= config;
442
443 return 0;
444}
Robert Richter4261e0e2010-04-13 22:23:10 +0200445
Stephane Eranianff3fb512012-02-09 23:20:54 +0100446/*
447 * check that branch_sample_type is compatible with
448 * settings needed for precise_ip > 1 which implies
449 * using the LBR to capture ALL taken branches at the
450 * priv levels of the measurement
451 */
452static inline int precise_br_compat(struct perf_event *event)
453{
454 u64 m = event->attr.branch_sample_type;
455 u64 b = 0;
456
457 /* must capture all branches */
458 if (!(m & PERF_SAMPLE_BRANCH_ANY))
459 return 0;
460
461 m &= PERF_SAMPLE_BRANCH_KERNEL | PERF_SAMPLE_BRANCH_USER;
462
463 if (!event->attr.exclude_user)
464 b |= PERF_SAMPLE_BRANCH_USER;
465
466 if (!event->attr.exclude_kernel)
467 b |= PERF_SAMPLE_BRANCH_KERNEL;
468
469 /*
470 * ignore PERF_SAMPLE_BRANCH_HV, not supported on x86
471 */
472
473 return m == b;
474}
475
Andi Kleenb00233b2017-08-22 11:52:01 -0700476int x86_pmu_max_precise(void)
477{
478 int precise = 0;
479
480 /* Support for constant skid */
481 if (x86_pmu.pebs_active && !x86_pmu.pebs_broken) {
482 precise++;
483
484 /* Support for IP fixup */
485 if (x86_pmu.lbr_nr || x86_pmu.intel_cap.pebs_format >= 2)
486 precise++;
487
488 if (x86_pmu.pebs_prec_dist)
489 precise++;
490 }
491 return precise;
492}
493
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300494int x86_pmu_hw_config(struct perf_event *event)
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300495{
Peter Zijlstraab608342010-04-08 23:03:20 +0200496 if (event->attr.precise_ip) {
Andi Kleenb00233b2017-08-22 11:52:01 -0700497 int precise = x86_pmu_max_precise();
Peter Zijlstraab608342010-04-08 23:03:20 +0200498
499 if (event->attr.precise_ip > precise)
500 return -EOPNOTSUPP;
Jiri Olsa18e7a452017-01-03 15:24:54 +0100501
502 /* There's no sense in having PEBS for non sampling events: */
503 if (!is_sampling_event(event))
504 return -EINVAL;
Yan, Zheng4b854902014-11-04 21:56:08 -0500505 }
506 /*
507 * check that PEBS LBR correction does not conflict with
508 * whatever the user is asking with attr->branch_sample_type
509 */
510 if (event->attr.precise_ip > 1 && x86_pmu.intel_cap.pebs_format < 2) {
511 u64 *br_type = &event->attr.branch_sample_type;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100512
Yan, Zheng4b854902014-11-04 21:56:08 -0500513 if (has_branch_stack(event)) {
514 if (!precise_br_compat(event))
515 return -EOPNOTSUPP;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100516
Yan, Zheng4b854902014-11-04 21:56:08 -0500517 /* branch_sample_type is compatible */
Stephane Eranianff3fb512012-02-09 23:20:54 +0100518
Yan, Zheng4b854902014-11-04 21:56:08 -0500519 } else {
520 /*
521 * user did not specify branch_sample_type
522 *
523 * For PEBS fixups, we capture all
524 * the branches at the priv level of the
525 * event.
526 */
527 *br_type = PERF_SAMPLE_BRANCH_ANY;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100528
Yan, Zheng4b854902014-11-04 21:56:08 -0500529 if (!event->attr.exclude_user)
530 *br_type |= PERF_SAMPLE_BRANCH_USER;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100531
Yan, Zheng4b854902014-11-04 21:56:08 -0500532 if (!event->attr.exclude_kernel)
533 *br_type |= PERF_SAMPLE_BRANCH_KERNEL;
Stephane Eranianff3fb512012-02-09 23:20:54 +0100534 }
Peter Zijlstraab608342010-04-08 23:03:20 +0200535 }
536
Yan, Zhenge18bf522014-11-04 21:56:03 -0500537 if (event->attr.branch_sample_type & PERF_SAMPLE_BRANCH_CALL_STACK)
538 event->attach_state |= PERF_ATTACH_TASK_DATA;
539
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300540 /*
541 * Generate PMC IRQs:
542 * (keep 'enabled' bit clear for now)
543 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200544 event->hw.config = ARCH_PERFMON_EVENTSEL_INT;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300545
546 /*
547 * Count user and OS events unless requested not to
548 */
Peter Zijlstrab4cdc5c2010-03-30 17:00:06 +0200549 if (!event->attr.exclude_user)
550 event->hw.config |= ARCH_PERFMON_EVENTSEL_USR;
551 if (!event->attr.exclude_kernel)
552 event->hw.config |= ARCH_PERFMON_EVENTSEL_OS;
553
554 if (event->attr.type == PERF_TYPE_RAW)
555 event->hw.config |= event->attr.config & X86_RAW_EVENT_MASK;
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300556
Andi Kleen294fe0f2015-02-17 18:18:06 -0800557 if (event->attr.sample_period && x86_pmu.limit_period) {
558 if (x86_pmu.limit_period(event, event->attr.sample_period) >
559 event->attr.sample_period)
560 return -EINVAL;
561 }
562
Robert Richter9d0fcba62010-04-13 22:23:12 +0200563 return x86_setup_perfctr(event);
Cyrill Gorcunova0727382010-03-11 19:54:39 +0300564}
565
Ingo Molnaree060942008-12-13 09:00:03 +0100566/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200567 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100568 */
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200569static int __x86_pmu_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100570{
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200571 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100572
Robert Richter85cf9db2009-04-29 12:47:20 +0200573 if (!x86_pmu_initialized())
574 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100575
Alexander Shishkin6b099d92015-06-11 15:13:56 +0300576 err = x86_reserve_hardware();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200577 if (err)
578 return err;
579
Alexander Shishkin1b7b9382015-06-09 13:03:26 +0300580 atomic_inc(&active_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200581 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200582
Robert Richter4261e0e2010-04-13 22:23:10 +0200583 event->hw.idx = -1;
584 event->hw.last_cpu = -1;
585 event->hw.last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200586
Stephane Eranianefc9f052011-06-06 16:57:03 +0200587 /* mark unused */
588 event->hw.extra_reg.idx = EXTRA_REG_NONE;
Stephane Eranianb36817e2012-02-09 23:20:53 +0100589 event->hw.branch_reg.idx = EXTRA_REG_NONE;
590
Robert Richter9d0fcba62010-04-13 22:23:12 +0200591 return x86_pmu.hw_config(event);
Robert Richter4261e0e2010-04-13 22:23:10 +0200592}
593
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300594void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530595{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500596 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200597 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100598
Robert Richter948b1bb2010-03-29 18:36:50 +0200599 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100600 u64 val;
601
Robert Richter43f62012009-04-29 16:55:56 +0200602 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200603 continue;
Robert Richter41bf4982011-02-02 17:40:57 +0100604 rdmsrl(x86_pmu_config_addr(idx), val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100605 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200606 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100607 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Robert Richter41bf4982011-02-02 17:40:57 +0100608 wrmsrl(x86_pmu_config_addr(idx), val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530609 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530610}
611
Kan Liangc3d266c2016-03-03 18:07:28 -0500612/*
613 * There may be PMI landing after enabled=0. The PMI hitting could be before or
614 * after disable_all.
615 *
616 * If PMI hits before disable_all, the PMU will be disabled in the NMI handler.
617 * It will not be re-enabled in the NMI handler again, because enabled=0. After
618 * handling the NMI, disable_all will be called, which will not change the
619 * state either. If PMI hits after disable_all, the PMU is already disabled
620 * before entering NMI handler. The NMI handler will not change the state
621 * either.
622 *
623 * So either situation is harmless.
624 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200625static void x86_pmu_disable(struct pmu *pmu)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530626{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500627 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200628
Robert Richter85cf9db2009-04-29 12:47:20 +0200629 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200630 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200631
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100632 if (!cpuc->enabled)
633 return;
634
635 cpuc->n_added = 0;
636 cpuc->enabled = 0;
637 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200638
639 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530640}
Ingo Molnar241771e2008-12-03 10:39:53 +0100641
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300642void x86_pmu_enable_all(int added)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530643{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500644 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530645 int idx;
646
Robert Richter948b1bb2010-03-29 18:36:50 +0200647 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richterd45dd922011-02-02 17:40:56 +0100648 struct hw_perf_event *hwc = &cpuc->events[idx]->hw;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100649
Robert Richter43f62012009-04-29 16:55:56 +0200650 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200651 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200652
Robert Richterd45dd922011-02-02 17:40:56 +0100653 __x86_pmu_enable_event(hwc, ARCH_PERFMON_EVENTSEL_ENABLE);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530654 }
655}
656
Peter Zijlstra51b0fe32010-06-11 13:35:57 +0200657static struct pmu pmu;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200658
659static inline int is_x86_event(struct perf_event *event)
660{
661 return event->pmu == &pmu;
662}
663
Robert Richter1e2ad282011-11-18 12:35:21 +0100664/*
665 * Event scheduler state:
666 *
667 * Assign events iterating over all events and counters, beginning
668 * with events with least weights first. Keep the current iterator
669 * state in struct sched_state.
670 */
671struct sched_state {
672 int weight;
673 int event; /* event index */
674 int counter; /* counter index */
675 int unassigned; /* number of events to be assigned left */
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200676 int nr_gp; /* number of GP counters used */
Robert Richter1e2ad282011-11-18 12:35:21 +0100677 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
678};
679
Robert Richterbc1738f2011-11-18 12:35:22 +0100680/* Total max is X86_PMC_IDX_MAX, but we are O(n!) limited */
681#define SCHED_STATES_MAX 2
682
Robert Richter1e2ad282011-11-18 12:35:21 +0100683struct perf_sched {
684 int max_weight;
685 int max_events;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200686 int max_gp;
687 int saved_states;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200688 struct event_constraint **constraints;
Robert Richter1e2ad282011-11-18 12:35:21 +0100689 struct sched_state state;
Robert Richterbc1738f2011-11-18 12:35:22 +0100690 struct sched_state saved[SCHED_STATES_MAX];
Robert Richter1e2ad282011-11-18 12:35:21 +0100691};
692
693/*
694 * Initialize interator that runs through all events and counters.
695 */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200696static void perf_sched_init(struct perf_sched *sched, struct event_constraint **constraints,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200697 int num, int wmin, int wmax, int gpmax)
Robert Richter1e2ad282011-11-18 12:35:21 +0100698{
699 int idx;
700
701 memset(sched, 0, sizeof(*sched));
702 sched->max_events = num;
703 sched->max_weight = wmax;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200704 sched->max_gp = gpmax;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200705 sched->constraints = constraints;
Robert Richter1e2ad282011-11-18 12:35:21 +0100706
707 for (idx = 0; idx < num; idx++) {
Peter Zijlstrab371b592015-05-21 10:57:13 +0200708 if (constraints[idx]->weight == wmin)
Robert Richter1e2ad282011-11-18 12:35:21 +0100709 break;
710 }
711
712 sched->state.event = idx; /* start with min weight */
713 sched->state.weight = wmin;
714 sched->state.unassigned = num;
715}
716
Robert Richterbc1738f2011-11-18 12:35:22 +0100717static void perf_sched_save_state(struct perf_sched *sched)
718{
719 if (WARN_ON_ONCE(sched->saved_states >= SCHED_STATES_MAX))
720 return;
721
722 sched->saved[sched->saved_states] = sched->state;
723 sched->saved_states++;
724}
725
726static bool perf_sched_restore_state(struct perf_sched *sched)
727{
728 if (!sched->saved_states)
729 return false;
730
731 sched->saved_states--;
732 sched->state = sched->saved[sched->saved_states];
733
734 /* continue with next counter: */
735 clear_bit(sched->state.counter++, sched->state.used);
736
737 return true;
738}
739
Robert Richter1e2ad282011-11-18 12:35:21 +0100740/*
741 * Select a counter for the current event to schedule. Return true on
742 * success.
743 */
Robert Richterbc1738f2011-11-18 12:35:22 +0100744static bool __perf_sched_find_counter(struct perf_sched *sched)
Robert Richter1e2ad282011-11-18 12:35:21 +0100745{
746 struct event_constraint *c;
747 int idx;
748
749 if (!sched->state.unassigned)
750 return false;
751
752 if (sched->state.event >= sched->max_events)
753 return false;
754
Peter Zijlstrab371b592015-05-21 10:57:13 +0200755 c = sched->constraints[sched->state.event];
Peter Zijlstra4defea82011-11-10 15:15:42 +0100756 /* Prefer fixed purpose counters */
Robert Richter15c7ad52012-06-20 20:46:33 +0200757 if (c->idxmsk64 & (~0ULL << INTEL_PMC_IDX_FIXED)) {
758 idx = INTEL_PMC_IDX_FIXED;
Akinobu Mita307b1cd2012-03-23 15:02:03 -0700759 for_each_set_bit_from(idx, c->idxmsk, X86_PMC_IDX_MAX) {
Peter Zijlstra4defea82011-11-10 15:15:42 +0100760 if (!__test_and_set_bit(idx, sched->state.used))
761 goto done;
762 }
763 }
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200764
Robert Richter1e2ad282011-11-18 12:35:21 +0100765 /* Grab the first unused counter starting with idx */
766 idx = sched->state.counter;
Robert Richter15c7ad52012-06-20 20:46:33 +0200767 for_each_set_bit_from(idx, c->idxmsk, INTEL_PMC_IDX_FIXED) {
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200768 if (!__test_and_set_bit(idx, sched->state.used)) {
769 if (sched->state.nr_gp++ >= sched->max_gp)
770 return false;
771
Peter Zijlstra4defea82011-11-10 15:15:42 +0100772 goto done;
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200773 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100774 }
Robert Richter1e2ad282011-11-18 12:35:21 +0100775
Peter Zijlstra4defea82011-11-10 15:15:42 +0100776 return false;
777
778done:
779 sched->state.counter = idx;
Robert Richter1e2ad282011-11-18 12:35:21 +0100780
Robert Richterbc1738f2011-11-18 12:35:22 +0100781 if (c->overlap)
782 perf_sched_save_state(sched);
783
784 return true;
785}
786
787static bool perf_sched_find_counter(struct perf_sched *sched)
788{
789 while (!__perf_sched_find_counter(sched)) {
790 if (!perf_sched_restore_state(sched))
791 return false;
792 }
793
Robert Richter1e2ad282011-11-18 12:35:21 +0100794 return true;
795}
796
797/*
798 * Go through all unassigned events and find the next one to schedule.
799 * Take events with the least weight first. Return true on success.
800 */
801static bool perf_sched_next_event(struct perf_sched *sched)
802{
803 struct event_constraint *c;
804
805 if (!sched->state.unassigned || !--sched->state.unassigned)
806 return false;
807
808 do {
809 /* next event */
810 sched->state.event++;
811 if (sched->state.event >= sched->max_events) {
812 /* next weight */
813 sched->state.event = 0;
814 sched->state.weight++;
815 if (sched->state.weight > sched->max_weight)
816 return false;
817 }
Peter Zijlstrab371b592015-05-21 10:57:13 +0200818 c = sched->constraints[sched->state.event];
Robert Richter1e2ad282011-11-18 12:35:21 +0100819 } while (c->weight != sched->state.weight);
820
821 sched->state.counter = 0; /* start with first counter */
822
823 return true;
824}
825
826/*
827 * Assign a counter for each event.
828 */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200829int perf_assign_events(struct event_constraint **constraints, int n,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200830 int wmin, int wmax, int gpmax, int *assign)
Robert Richter1e2ad282011-11-18 12:35:21 +0100831{
832 struct perf_sched sched;
833
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200834 perf_sched_init(&sched, constraints, n, wmin, wmax, gpmax);
Robert Richter1e2ad282011-11-18 12:35:21 +0100835
836 do {
837 if (!perf_sched_find_counter(&sched))
838 break; /* failed */
839 if (assign)
840 assign[sched.state.event] = sched.state.counter;
841 } while (perf_sched_next_event(&sched));
842
843 return sched.state.unassigned;
844}
Yan, Zheng4a3dc122014-03-18 16:56:43 +0800845EXPORT_SYMBOL_GPL(perf_assign_events);
Robert Richter1e2ad282011-11-18 12:35:21 +0100846
Kevin Winchesterde0428a2011-08-30 20:41:05 -0300847int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200848{
Andrew Hunter43b457802013-05-23 11:07:03 -0700849 struct event_constraint *c;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200850 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200851 struct perf_event *e;
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100852 int i, wmin, wmax, unsched = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200853 struct hw_perf_event *hwc;
854
855 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
856
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100857 if (x86_pmu.start_scheduling)
858 x86_pmu.start_scheduling(cpuc);
859
Robert Richter1e2ad282011-11-18 12:35:21 +0100860 for (i = 0, wmin = X86_PMC_IDX_MAX, wmax = 0; i < n; i++) {
Peter Zijlstrab371b592015-05-21 10:57:13 +0200861 cpuc->event_constraint[i] = NULL;
Stephane Eranian79cba822014-11-17 20:06:56 +0100862 c = x86_pmu.get_event_constraints(cpuc, i, cpuc->event_list[i]);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200863 cpuc->event_constraint[i] = c;
Andrew Hunter43b457802013-05-23 11:07:03 -0700864
Robert Richter1e2ad282011-11-18 12:35:21 +0100865 wmin = min(wmin, c->weight);
866 wmax = max(wmax, c->weight);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200867 }
868
869 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200870 * fastpath, try to reuse previous register
871 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100872 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200873 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstrab371b592015-05-21 10:57:13 +0200874 c = cpuc->event_constraint[i];
Stephane Eranian81130702010-01-21 17:39:01 +0200875
876 /* never assigned */
877 if (hwc->idx == -1)
878 break;
879
880 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100881 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200882 break;
883
884 /* not already used */
885 if (test_bit(hwc->idx, used_mask))
886 break;
887
Peter Zijlstra34538ee2010-03-02 21:16:55 +0100888 __set_bit(hwc->idx, used_mask);
Stephane Eranian81130702010-01-21 17:39:01 +0200889 if (assign)
890 assign[i] = hwc->idx;
891 }
Stephane Eranian81130702010-01-21 17:39:01 +0200892
Robert Richter1e2ad282011-11-18 12:35:21 +0100893 /* slow path */
Peter Zijlstrab371b592015-05-21 10:57:13 +0200894 if (i != n) {
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200895 int gpmax = x86_pmu.num_counters;
896
897 /*
898 * Do not allow scheduling of more than half the available
899 * generic counters.
900 *
901 * This helps avoid counter starvation of sibling thread by
902 * ensuring at most half the counters cannot be in exclusive
903 * mode. There is no designated counters for the limits. Any
904 * N/2 counters can be used. This helps with events with
905 * specific counter constraints.
906 */
907 if (is_ht_workaround_enabled() && !cpuc->is_fake &&
908 READ_ONCE(cpuc->excl_cntrs->exclusive_present))
909 gpmax /= 2;
910
Peter Zijlstrab371b592015-05-21 10:57:13 +0200911 unsched = perf_assign_events(cpuc->event_constraint, n, wmin,
Peter Zijlstracc1790c2015-05-21 10:57:17 +0200912 wmax, gpmax, assign);
Peter Zijlstrab371b592015-05-21 10:57:13 +0200913 }
Stephane Eranian81130702010-01-21 17:39:01 +0200914
Stephane Eranian1da53e02010-01-18 10:58:01 +0200915 /*
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100916 * In case of success (unsched = 0), mark events as committed,
917 * so we do not put_constraint() in case new events are added
918 * and fail to be scheduled
919 *
920 * We invoke the lower level commit callback to lock the resource
921 *
922 * We do not need to do all of this in case we are called to
923 * validate an event group (assign == NULL)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200924 */
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100925 if (!unsched && assign) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200926 for (i = 0; i < n; i++) {
927 e = cpuc->event_list[i];
928 e->hw.flags |= PERF_X86_EVENT_COMMITTED;
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100929 if (x86_pmu.commit_scheduling)
Peter Zijlstrab371b592015-05-21 10:57:13 +0200930 x86_pmu.commit_scheduling(cpuc, i, assign[i]);
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200931 }
Peter Zijlstra8736e542015-05-21 10:57:43 +0200932 } else {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200933 for (i = 0; i < n; i++) {
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200934 e = cpuc->event_list[i];
935 /*
936 * do not put_constraint() on comitted events,
937 * because they are good to go
938 */
939 if ((e->hw.flags & PERF_X86_EVENT_COMMITTED))
940 continue;
941
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100942 /*
943 * release events that failed scheduling
944 */
Stephane Eranian1da53e02010-01-18 10:58:01 +0200945 if (x86_pmu.put_event_constraints)
Stephane Eranian2f7f73a2013-06-20 18:42:54 +0200946 x86_pmu.put_event_constraints(cpuc, e);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200947 }
948 }
Maria Dimakopoulouc5362c02014-11-17 20:06:55 +0100949
950 if (x86_pmu.stop_scheduling)
951 x86_pmu.stop_scheduling(cpuc);
952
Maria Dimakopouloue9791212014-11-17 20:06:58 +0100953 return unsched ? -EINVAL : 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200954}
955
956/*
957 * dogrp: true if must collect siblings events (group)
958 * returns total number of events and error code
959 */
960static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
961{
962 struct perf_event *event;
963 int n, max_count;
964
Robert Richter948b1bb2010-03-29 18:36:50 +0200965 max_count = x86_pmu.num_counters + x86_pmu.num_counters_fixed;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200966
967 /* current number of events already accepted */
968 n = cpuc->n_events;
969
970 if (is_x86_event(leader)) {
971 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100972 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200973 cpuc->event_list[n] = leader;
974 n++;
975 }
976 if (!dogrp)
977 return n;
978
Peter Zijlstraedb39592018-03-15 17:36:56 +0100979 for_each_sibling_event(event, leader) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200980 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200981 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200982 continue;
983
984 if (n >= max_count)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +0100985 return -EINVAL;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200986
987 cpuc->event_list[n] = event;
988 n++;
989 }
990 return n;
991}
992
Stephane Eranian1da53e02010-01-18 10:58:01 +0200993static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +0200994 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200995{
Stephane Eranian447a1942010-02-01 14:50:01 +0200996 struct hw_perf_event *hwc = &event->hw;
997
998 hwc->idx = cpuc->assign[i];
999 hwc->last_cpu = smp_processor_id();
1000 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +02001001
Robert Richter15c7ad52012-06-20 20:46:33 +02001002 if (hwc->idx == INTEL_PMC_IDX_FIXED_BTS) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001003 hwc->config_base = 0;
1004 hwc->event_base = 0;
Robert Richter15c7ad52012-06-20 20:46:33 +02001005 } else if (hwc->idx >= INTEL_PMC_IDX_FIXED) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001006 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
Robert Richter15c7ad52012-06-20 20:46:33 +02001007 hwc->event_base = MSR_ARCH_PERFMON_FIXED_CTR0 + (hwc->idx - INTEL_PMC_IDX_FIXED);
1008 hwc->event_base_rdpmc = (hwc->idx - INTEL_PMC_IDX_FIXED) | 1<<30;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001009 } else {
Robert Richter73d6e522011-02-02 17:40:59 +01001010 hwc->config_base = x86_pmu_config_addr(hwc->idx);
1011 hwc->event_base = x86_pmu_event_addr(hwc->idx);
Jacob Shin0fbdad02013-02-06 11:26:28 -06001012 hwc->event_base_rdpmc = x86_pmu_rdpmc_index(hwc->idx);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001013 }
1014}
1015
Stephane Eranian447a1942010-02-01 14:50:01 +02001016static inline int match_prev_assignment(struct hw_perf_event *hwc,
1017 struct cpu_hw_events *cpuc,
1018 int i)
1019{
1020 return hwc->idx == cpuc->assign[i] &&
1021 hwc->last_cpu == smp_processor_id() &&
1022 hwc->last_tag == cpuc->tags[i];
1023}
1024
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001025static void x86_pmu_start(struct perf_event *event, int flags);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001026
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001027static void x86_pmu_enable(struct pmu *pmu)
Ingo Molnaree060942008-12-13 09:00:03 +01001028{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001029 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001030 struct perf_event *event;
1031 struct hw_perf_event *hwc;
Peter Zijlstra11164cd2010-03-26 14:08:44 +01001032 int i, added = cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001033
Robert Richter85cf9db2009-04-29 12:47:20 +02001034 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +01001035 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +01001036
1037 if (cpuc->enabled)
1038 return;
1039
Stephane Eranian1da53e02010-01-18 10:58:01 +02001040 if (cpuc->n_added) {
Peter Zijlstra19925ce2010-03-06 13:20:40 +01001041 int n_running = cpuc->n_events - cpuc->n_added;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001042 /*
1043 * apply assignment obtained either from
1044 * hw_perf_group_sched_in() or x86_pmu_enable()
1045 *
1046 * step1: save events moving to new counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001047 */
Peter Zijlstra19925ce2010-03-06 13:20:40 +01001048 for (i = 0; i < n_running; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001049 event = cpuc->event_list[i];
1050 hwc = &event->hw;
1051
Stephane Eranian447a1942010-02-01 14:50:01 +02001052 /*
1053 * we can avoid reprogramming counter if:
1054 * - assigned same counter as last time
1055 * - running on same CPU as last time
1056 * - no other event has used the counter since
1057 */
1058 if (hwc->idx == -1 ||
1059 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +02001060 continue;
1061
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001062 /*
1063 * Ensure we don't accidentally enable a stopped
1064 * counter simply because we rescheduled.
1065 */
1066 if (hwc->state & PERF_HES_STOPPED)
1067 hwc->state |= PERF_HES_ARCH;
1068
1069 x86_pmu_stop(event, PERF_EF_UPDATE);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001070 }
1071
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001072 /*
1073 * step2: reprogram moved events into new counters
1074 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001075 for (i = 0; i < cpuc->n_events; i++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +02001076 event = cpuc->event_list[i];
1077 hwc = &event->hw;
1078
Peter Zijlstra45e16a62010-03-11 13:40:30 +01001079 if (!match_prev_assignment(hwc, cpuc, i))
Stephane Eranian447a1942010-02-01 14:50:01 +02001080 x86_assign_hw_event(event, cpuc, i);
Peter Zijlstra45e16a62010-03-11 13:40:30 +01001081 else if (i < n_running)
1082 continue;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001083
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001084 if (hwc->state & PERF_HES_ARCH)
1085 continue;
1086
1087 x86_pmu_start(event, PERF_EF_RELOAD);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001088 }
1089 cpuc->n_added = 0;
1090 perf_events_lapic_init();
1091 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +01001092
1093 cpuc->enabled = 1;
1094 barrier();
1095
Peter Zijlstra11164cd2010-03-26 14:08:44 +01001096 x86_pmu.enable_all(added);
Ingo Molnaree060942008-12-13 09:00:03 +01001097}
Ingo Molnaree060942008-12-13 09:00:03 +01001098
Tejun Heo245b2e72009-06-24 15:13:48 +09001099static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001100
Ingo Molnaree060942008-12-13 09:00:03 +01001101/*
1102 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001103 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +01001104 */
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001105int x86_perf_event_set_period(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +01001106{
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001107 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001108 s64 left = local64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001109 s64 period = hwc->sample_period;
Peter Zijlstra7645a242010-03-08 13:51:31 +01001110 int ret = 0, idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +01001111
Robert Richter15c7ad52012-06-20 20:46:33 +02001112 if (idx == INTEL_PMC_IDX_FIXED_BTS)
Markus Metzger30dd5682009-07-21 15:56:48 +02001113 return 0;
1114
Ingo Molnaree060942008-12-13 09:00:03 +01001115 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001116 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +01001117 */
1118 if (unlikely(left <= -period)) {
1119 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +02001120 local64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001121 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001122 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +01001123 }
1124
1125 if (unlikely(left <= 0)) {
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 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +02001131 /*
Ingo Molnardfc65092009-09-21 11:31:35 +02001132 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +02001133 */
1134 if (unlikely(left < 2))
1135 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +01001136
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001137 if (left > x86_pmu.max_period)
1138 left = x86_pmu.max_period;
1139
Andi Kleen294fe0f2015-02-17 18:18:06 -08001140 if (x86_pmu.limit_period)
1141 left = x86_pmu.limit_period(event, left);
1142
Tejun Heo245b2e72009-06-24 15:13:48 +09001143 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +01001144
Kan Liangd31fc132018-02-12 14:20:31 -08001145 /*
1146 * The hw event starts counting from this event offset,
1147 * mark it to be able to extra future deltas:
1148 */
1149 local64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +01001150
Kan Liangd31fc132018-02-12 14:20:31 -08001151 wrmsrl(hwc->event_base, (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001152
1153 /*
1154 * Due to erratum on certan cpu we need
1155 * a second write to be sure the register
1156 * is updated properly
1157 */
1158 if (x86_pmu.perfctr_second_write) {
Robert Richter73d6e522011-02-02 17:40:59 +01001159 wrmsrl(hwc->event_base,
Robert Richter948b1bb2010-03-29 18:36:50 +02001160 (u64)(-left) & x86_pmu.cntval_mask);
Cyrill Gorcunov68aa00a2010-06-03 01:23:04 +04001161 }
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001162
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001163 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001164
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001165 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001166}
1167
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001168void x86_pmu_enable_event(struct perf_event *event)
Robert Richter7c90cc42009-04-29 12:47:18 +02001169{
Tejun Heo0a3aee02010-12-18 16:28:55 +01001170 if (__this_cpu_read(cpu_hw_events.enabled))
Robert Richter31fa58a2010-04-13 22:23:14 +02001171 __x86_pmu_enable_event(&event->hw,
1172 ARCH_PERFMON_EVENTSEL_ENABLE);
Ingo Molnar241771e2008-12-03 10:39:53 +01001173}
1174
Ingo Molnaree060942008-12-13 09:00:03 +01001175/*
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001176 * Add a single event to the PMU.
Stephane Eranian1da53e02010-01-18 10:58:01 +02001177 *
1178 * The event is added to the group of enabled events
1179 * but only if it can be scehduled with existing events.
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001180 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001181static int x86_pmu_add(struct perf_event *event, int flags)
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001182{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001183 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001184 struct hw_perf_event *hwc;
1185 int assign[X86_PMC_IDX_MAX];
1186 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001187
Stephane Eranian1da53e02010-01-18 10:58:01 +02001188 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001189
Stephane Eranian1da53e02010-01-18 10:58:01 +02001190 n0 = cpuc->n_events;
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001191 ret = n = collect_events(cpuc, event, false);
1192 if (ret < 0)
1193 goto out;
Ingo Molnar53b441a2009-05-25 21:41:28 +02001194
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001195 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
1196 if (!(flags & PERF_EF_START))
1197 hwc->state |= PERF_HES_ARCH;
1198
Lin Ming4d1c52b2010-04-23 13:56:12 +08001199 /*
1200 * If group events scheduling transaction was started,
Lucas De Marchi0d2eb442011-03-17 16:24:16 -03001201 * skip the schedulability test here, it will be performed
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001202 * at commit time (->commit_txn) as a whole.
Peter Zijlstra68f70822016-07-06 18:02:43 +02001203 *
1204 * If commit fails, we'll call ->del() on all events
1205 * for which ->add() was called.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001206 */
Sukadev Bhattiprolu8f3e5682015-09-03 20:07:53 -07001207 if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001208 goto done_collect;
Lin Ming4d1c52b2010-04-23 13:56:12 +08001209
Cyrill Gorcunova0727382010-03-11 19:54:39 +03001210 ret = x86_pmu.schedule_events(cpuc, n, assign);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001211 if (ret)
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001212 goto out;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001213 /*
1214 * copy new assignment, now we know it is possible
1215 * will be used by hw_perf_enable()
1216 */
1217 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +01001218
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001219done_collect:
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001220 /*
1221 * Commit the collect_events() state. See x86_pmu_del() and
1222 * x86_pmu_*_txn().
1223 */
Stephane Eranian1da53e02010-01-18 10:58:01 +02001224 cpuc->n_events = n;
Peter Zijlstra356e1f22010-03-06 13:49:56 +01001225 cpuc->n_added += n - n0;
Stephane Eranian90151c352010-05-25 16:23:10 +02001226 cpuc->n_txn += n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +01001227
Peter Zijlstra68f70822016-07-06 18:02:43 +02001228 if (x86_pmu.add) {
1229 /*
1230 * This is before x86_pmu_enable() will call x86_pmu_start(),
1231 * so we enable LBRs before an event needs them etc..
1232 */
1233 x86_pmu.add(event);
1234 }
1235
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001236 ret = 0;
1237out:
Peter Zijlstra24cd7f52010-06-11 17:32:03 +02001238 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001239}
1240
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001241static void x86_pmu_start(struct perf_event *event, int flags)
Stephane Eraniand76a0812010-02-08 17:06:01 +02001242{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001243 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001244 int idx = event->hw.idx;
1245
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001246 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
1247 return;
Stephane Eraniand76a0812010-02-08 17:06:01 +02001248
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001249 if (WARN_ON_ONCE(idx == -1))
1250 return;
1251
1252 if (flags & PERF_EF_RELOAD) {
1253 WARN_ON_ONCE(!(event->hw.state & PERF_HES_UPTODATE));
1254 x86_perf_event_set_period(event);
1255 }
1256
1257 event->hw.state = 0;
1258
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001259 cpuc->events[idx] = event;
1260 __set_bit(idx, cpuc->active_mask);
Robert Richter63e6be62010-09-15 18:20:34 +02001261 __set_bit(idx, cpuc->running);
Peter Zijlstraaff3d912010-03-02 20:32:08 +01001262 x86_pmu.enable(event);
Peter Zijlstrac08053e2010-03-06 13:19:24 +01001263 perf_event_update_userpage(event);
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001264}
1265
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001266void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001267{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001268 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Andi Kleenda3e6062015-02-27 09:48:31 -08001269 u64 pebs, debugctl;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001270 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001271 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001272 int cpu, idx;
1273
Robert Richter948b1bb2010-03-29 18:36:50 +02001274 if (!x86_pmu.num_counters)
Ingo Molnar1e125672008-12-09 12:18:18 +01001275 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001276
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001277 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001278
1279 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001280 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001281
Robert Richterfaa28ae2009-04-29 12:47:13 +02001282 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301283 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1284 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1285 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1286 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Ingo Molnar241771e2008-12-03 10:39:53 +01001287
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301288 pr_info("\n");
1289 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1290 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1291 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1292 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Andi Kleen15fde112015-02-27 09:48:32 -08001293 if (x86_pmu.pebs_constraints) {
1294 rdmsrl(MSR_IA32_PEBS_ENABLE, pebs);
1295 pr_info("CPU#%d: pebs: %016llx\n", cpu, pebs);
1296 }
Andi Kleenda3e6062015-02-27 09:48:31 -08001297 if (x86_pmu.lbr_nr) {
1298 rdmsrl(MSR_IA32_DEBUGCTLMSR, debugctl);
1299 pr_info("CPU#%d: debugctl: %016llx\n", cpu, debugctl);
1300 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301301 }
Peter Zijlstra7645a242010-03-08 13:51:31 +01001302 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001303
Robert Richter948b1bb2010-03-29 18:36:50 +02001304 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter41bf4982011-02-02 17:40:57 +01001305 rdmsrl(x86_pmu_config_addr(idx), pmc_ctrl);
1306 rdmsrl(x86_pmu_event_addr(idx), pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001307
Tejun Heo245b2e72009-06-24 15:13:48 +09001308 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001309
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301310 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001311 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301312 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001313 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301314 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001315 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001316 }
Robert Richter948b1bb2010-03-29 18:36:50 +02001317 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001318 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1319
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301320 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001321 cpu, idx, pmc_count);
1322 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001323 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001324}
1325
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001326void x86_pmu_stop(struct perf_event *event, int flags)
Ingo Molnar241771e2008-12-03 10:39:53 +01001327{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001328 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001329 struct hw_perf_event *hwc = &event->hw;
Ingo Molnar241771e2008-12-03 10:39:53 +01001330
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001331 if (__test_and_clear_bit(hwc->idx, cpuc->active_mask)) {
1332 x86_pmu.disable(event);
1333 cpuc->events[hwc->idx] = NULL;
1334 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
1335 hwc->state |= PERF_HES_STOPPED;
1336 }
Peter Zijlstra71e2d282010-03-08 17:51:33 +01001337
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001338 if ((flags & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
1339 /*
1340 * Drain the remaining delta count out of a event
1341 * that we are disabling:
1342 */
1343 x86_perf_event_update(event);
1344 hwc->state |= PERF_HES_UPTODATE;
1345 }
Peter Zijlstra2e841872010-01-25 15:58:43 +01001346}
1347
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001348static void x86_pmu_del(struct perf_event *event, int flags)
Peter Zijlstra2e841872010-01-25 15:58:43 +01001349{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001350 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Peter Zijlstra2e841872010-01-25 15:58:43 +01001351 int i;
1352
Stephane Eranian90151c352010-05-25 16:23:10 +02001353 /*
Stephane Eranian2f7f73a2013-06-20 18:42:54 +02001354 * event is descheduled
1355 */
1356 event->hw.flags &= ~PERF_X86_EVENT_COMMITTED;
1357
1358 /*
Peter Zijlstra68f70822016-07-06 18:02:43 +02001359 * If we're called during a txn, we only need to undo x86_pmu.add.
Stephane Eranian90151c352010-05-25 16:23:10 +02001360 * The events never got scheduled and ->cancel_txn will truncate
1361 * the event_list.
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001362 *
1363 * XXX assumes any ->del() called during a TXN will only be on
1364 * an event added during that same TXN.
Stephane Eranian90151c352010-05-25 16:23:10 +02001365 */
Sukadev Bhattiprolu8f3e5682015-09-03 20:07:53 -07001366 if (cpuc->txn_flags & PERF_PMU_TXN_ADD)
Peter Zijlstra68f70822016-07-06 18:02:43 +02001367 goto do_del;
Stephane Eranian90151c352010-05-25 16:23:10 +02001368
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001369 /*
1370 * Not a TXN, therefore cleanup properly.
1371 */
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001372 x86_pmu_stop(event, PERF_EF_UPDATE);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001373
Stephane Eranian1da53e02010-01-18 10:58:01 +02001374 for (i = 0; i < cpuc->n_events; i++) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001375 if (event == cpuc->event_list[i])
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001376 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001377 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001378
1379 if (WARN_ON_ONCE(i == cpuc->n_events)) /* called ->del() without ->add() ? */
1380 return;
1381
1382 /* If we have a newly added event; make sure to decrease n_added. */
1383 if (i >= cpuc->n_events - cpuc->n_added)
1384 --cpuc->n_added;
1385
1386 if (x86_pmu.put_event_constraints)
1387 x86_pmu.put_event_constraints(cpuc, event);
1388
1389 /* Delete the array entry. */
Peter Zijlstrab371b592015-05-21 10:57:13 +02001390 while (++i < cpuc->n_events) {
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001391 cpuc->event_list[i-1] = cpuc->event_list[i];
Peter Zijlstrab371b592015-05-21 10:57:13 +02001392 cpuc->event_constraint[i-1] = cpuc->event_constraint[i];
1393 }
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001394 --cpuc->n_events;
1395
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001396 perf_event_update_userpage(event);
Peter Zijlstra68f70822016-07-06 18:02:43 +02001397
1398do_del:
1399 if (x86_pmu.del) {
1400 /*
1401 * This is after x86_pmu_stop(); so we disable LBRs after any
1402 * event can need them etc..
1403 */
1404 x86_pmu.del(event);
1405 }
Ingo Molnar241771e2008-12-03 10:39:53 +01001406}
1407
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001408int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001409{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001410 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001411 struct cpu_hw_events *cpuc;
1412 struct perf_event *event;
Vince Weaver11d15782009-07-08 17:46:14 -04001413 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001414 u64 val;
1415
Christoph Lameter89cbc762014-08-17 12:30:40 -05001416 cpuc = this_cpu_ptr(&cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001417
Don Zickus2bce5da2011-04-27 06:32:33 -04001418 /*
1419 * Some chipsets need to unmask the LVTPC in a particular spot
1420 * inside the nmi handler. As a result, the unmasking was pushed
1421 * into all the nmi handlers.
1422 *
1423 * This generic handler doesn't seem to have any issues where the
1424 * unmasking occurs so it was left at the top.
1425 */
1426 apic_write(APIC_LVTPC, APIC_DM_NMI);
1427
Robert Richter948b1bb2010-03-29 18:36:50 +02001428 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
Robert Richter63e6be62010-09-15 18:20:34 +02001429 if (!test_bit(idx, cpuc->active_mask)) {
1430 /*
1431 * Though we deactivated the counter some cpus
1432 * might still deliver spurious interrupts still
1433 * in flight. Catch them:
1434 */
1435 if (__test_and_clear_bit(idx, cpuc->running))
1436 handled++;
Robert Richtera29aa8a2009-04-29 12:47:21 +02001437 continue;
Robert Richter63e6be62010-09-15 18:20:34 +02001438 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001439
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001440 event = cpuc->events[idx];
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001441
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001442 val = x86_perf_event_update(event);
Robert Richter948b1bb2010-03-29 18:36:50 +02001443 if (val & (1ULL << (x86_pmu.cntval_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001444 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001445
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001446 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001447 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001448 */
Robert Richter4177c422010-09-02 15:07:48 -04001449 handled++;
Robert Richterfd0d0002012-04-02 20:19:08 +02001450 perf_sample_data_init(&data, 0, event->hw.last_period);
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001451
Peter Zijlstra07088ed2010-03-02 20:16:01 +01001452 if (!x86_perf_event_set_period(event))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001453 continue;
1454
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02001455 if (perf_event_overflow(event, &data, regs))
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02001456 x86_pmu_stop(event, 0);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001457 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001458
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001459 if (handled)
1460 inc_irq_stat(apic_perf_irqs);
1461
Robert Richtera29aa8a2009-04-29 12:47:21 +02001462 return handled;
1463}
Robert Richter39d81ea2009-04-29 12:47:05 +02001464
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001465void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001466{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001467 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001468 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001469
Ingo Molnar241771e2008-12-03 10:39:53 +01001470 /*
Yong Wangc323d952009-05-29 13:28:35 +08001471 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001472 */
Yong Wangc323d952009-05-29 13:28:35 +08001473 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar241771e2008-12-03 10:39:53 +01001474}
1475
Masami Hiramatsu93266382014-04-17 17:18:14 +09001476static int
Don Zickus9c48f1c2011-09-30 15:06:21 -04001477perf_event_nmi_handler(unsigned int cmd, struct pt_regs *regs)
Ingo Molnar241771e2008-12-03 10:39:53 +01001478{
Dave Hansen14c63f12013-06-21 08:51:36 -07001479 u64 start_clock;
1480 u64 finish_clock;
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001481 int ret;
Dave Hansen14c63f12013-06-21 08:51:36 -07001482
Alexander Shishkin1b7b9382015-06-09 13:03:26 +03001483 /*
1484 * All PMUs/events that share this PMI handler should make sure to
1485 * increment active_events for their events.
1486 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001487 if (!atomic_read(&active_events))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001488 return NMI_DONE;
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001489
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001490 start_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001491 ret = x86_pmu.handle_irq(regs);
Peter Zijlstrae8a923c2013-10-17 15:32:10 +02001492 finish_clock = sched_clock();
Dave Hansen14c63f12013-06-21 08:51:36 -07001493
1494 perf_sample_event_took(finish_clock - start_clock);
1495
1496 return ret;
Ingo Molnar241771e2008-12-03 10:39:53 +01001497}
Masami Hiramatsu93266382014-04-17 17:18:14 +09001498NOKPROBE_SYMBOL(perf_event_nmi_handler);
Ingo Molnar241771e2008-12-03 10:39:53 +01001499
Kevin Winchesterde0428a2011-08-30 20:41:05 -03001500struct event_constraint emptyconstraint;
1501struct event_constraint unconstrained;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301502
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001503static int x86_pmu_prepare_cpu(unsigned int cpu)
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001504{
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001505 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001506 int i;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001507
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001508 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++)
1509 cpuc->kfree_on_online[i] = NULL;
1510 if (x86_pmu.cpu_prepare)
1511 return x86_pmu.cpu_prepare(cpu);
1512 return 0;
1513}
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001514
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001515static int x86_pmu_dead_cpu(unsigned int cpu)
1516{
1517 if (x86_pmu.cpu_dead)
1518 x86_pmu.cpu_dead(cpu);
1519 return 0;
1520}
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001521
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001522static int x86_pmu_online_cpu(unsigned int cpu)
1523{
1524 struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1525 int i;
Peter Zijlstra7fdba1c2011-07-22 13:41:54 +02001526
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001527 for (i = 0 ; i < X86_PERF_KFREE_MAX; i++) {
1528 kfree(cpuc->kfree_on_online[i]);
1529 cpuc->kfree_on_online[i] = NULL;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001530 }
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001531 return 0;
1532}
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001533
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001534static int x86_pmu_starting_cpu(unsigned int cpu)
1535{
1536 if (x86_pmu.cpu_starting)
1537 x86_pmu.cpu_starting(cpu);
1538 return 0;
1539}
1540
1541static int x86_pmu_dying_cpu(unsigned int cpu)
1542{
1543 if (x86_pmu.cpu_dying)
1544 x86_pmu.cpu_dying(cpu);
1545 return 0;
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001546}
1547
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001548static void __init pmu_check_apic(void)
1549{
Borislav Petkov93984fb2016-04-04 22:25:00 +02001550 if (boot_cpu_has(X86_FEATURE_APIC))
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001551 return;
1552
1553 x86_pmu.apic = 0;
1554 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1555 pr_info("no hardware sampling interrupt available.\n");
Vince Weaverc184c982014-05-16 17:18:07 -04001556
1557 /*
1558 * If we have a PMU initialized but no APIC
1559 * interrupts, we cannot sample hardware
1560 * events (user-space has to fall back and
1561 * sample via a hrtimer based software event):
1562 */
1563 pmu.capabilities |= PERF_PMU_CAP_NO_INTERRUPT;
1564
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001565}
1566
Jiri Olsa641cc932012-03-15 20:09:14 +01001567static struct attribute_group x86_pmu_format_group = {
1568 .name = "format",
1569 .attrs = NULL,
1570};
1571
Jiri Olsa8300daa2012-10-10 14:53:12 +02001572/*
1573 * Remove all undefined events (x86_pmu.event_map(id) == 0)
1574 * out of events_attr attributes.
1575 */
1576static void __init filter_events(struct attribute **attrs)
1577{
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001578 struct device_attribute *d;
1579 struct perf_pmu_events_attr *pmu_attr;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001580 int offset = 0;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001581 int i, j;
1582
1583 for (i = 0; attrs[i]; i++) {
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001584 d = (struct device_attribute *)attrs[i];
1585 pmu_attr = container_of(d, struct perf_pmu_events_attr, attr);
1586 /* str trumps id */
1587 if (pmu_attr->event_str)
1588 continue;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001589 if (x86_pmu.event_map(i + offset))
Jiri Olsa8300daa2012-10-10 14:53:12 +02001590 continue;
1591
1592 for (j = i; attrs[j]; j++)
1593 attrs[j] = attrs[j + 1];
1594
1595 /* Check the shifted attr. */
1596 i--;
Stephane Eranian61b87ca2015-12-07 20:33:25 +01001597
1598 /*
1599 * event_map() is index based, the attrs array is organized
1600 * by increasing event index. If we shift the events, then
1601 * we need to compensate for the event_map(), otherwise
1602 * we are looking up the wrong event in the map
1603 */
1604 offset++;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001605 }
1606}
1607
Andi Kleen1a6461b2013-01-24 16:10:25 +01001608/* Merge two pointer arrays */
Andi Kleen47732d82015-06-29 14:22:13 -07001609__init struct attribute **merge_attr(struct attribute **a, struct attribute **b)
Andi Kleen1a6461b2013-01-24 16:10:25 +01001610{
1611 struct attribute **new;
1612 int j, i;
1613
1614 for (j = 0; a[j]; j++)
1615 ;
1616 for (i = 0; b[i]; i++)
1617 j++;
1618 j++;
1619
Kees Cook6da2ec52018-06-12 13:55:00 -07001620 new = kmalloc_array(j, sizeof(struct attribute *), GFP_KERNEL);
Andi Kleen1a6461b2013-01-24 16:10:25 +01001621 if (!new)
1622 return NULL;
1623
1624 j = 0;
1625 for (i = 0; a[i]; i++)
1626 new[j++] = a[i];
1627 for (i = 0; b[i]; i++)
1628 new[j++] = b[i];
1629 new[j] = NULL;
1630
1631 return new;
1632}
1633
Huang Ruic7ab62b2016-03-09 13:45:06 +08001634ssize_t events_sysfs_show(struct device *dev, struct device_attribute *attr, char *page)
Jiri Olsaa4747392012-10-10 14:53:11 +02001635{
1636 struct perf_pmu_events_attr *pmu_attr = \
1637 container_of(attr, struct perf_pmu_events_attr, attr);
Jiri Olsaa4747392012-10-10 14:53:11 +02001638 u64 config = x86_pmu.event_map(pmu_attr->id);
Stephane Eranian3a54aaa2013-01-24 16:10:26 +01001639
1640 /* string trumps id */
1641 if (pmu_attr->event_str)
1642 return sprintf(page, "%s", pmu_attr->event_str);
1643
Jiri Olsaa4747392012-10-10 14:53:11 +02001644 return x86_pmu.events_sysfs_show(page, config);
1645}
Huang Ruic7ab62b2016-03-09 13:45:06 +08001646EXPORT_SYMBOL_GPL(events_sysfs_show);
Jiri Olsaa4747392012-10-10 14:53:11 +02001647
Andi Kleenfc07e9f2016-05-19 17:09:56 -07001648ssize_t events_ht_sysfs_show(struct device *dev, struct device_attribute *attr,
1649 char *page)
1650{
1651 struct perf_pmu_events_ht_attr *pmu_attr =
1652 container_of(attr, struct perf_pmu_events_ht_attr, attr);
1653
1654 /*
1655 * Report conditional events depending on Hyper-Threading.
1656 *
1657 * This is overly conservative as usually the HT special
1658 * handling is not needed if the other CPU thread is idle.
1659 *
1660 * Note this does not (and cannot) handle the case when thread
1661 * siblings are invisible, for example with virtualization
1662 * if they are owned by some other guest. The user tool
1663 * has to re-read when a thread sibling gets onlined later.
1664 */
1665 return sprintf(page, "%s",
1666 topology_max_smt_threads() > 1 ?
1667 pmu_attr->event_str_ht :
1668 pmu_attr->event_str_noht);
1669}
1670
Jiri Olsaa4747392012-10-10 14:53:11 +02001671EVENT_ATTR(cpu-cycles, CPU_CYCLES );
1672EVENT_ATTR(instructions, INSTRUCTIONS );
1673EVENT_ATTR(cache-references, CACHE_REFERENCES );
1674EVENT_ATTR(cache-misses, CACHE_MISSES );
1675EVENT_ATTR(branch-instructions, BRANCH_INSTRUCTIONS );
1676EVENT_ATTR(branch-misses, BRANCH_MISSES );
1677EVENT_ATTR(bus-cycles, BUS_CYCLES );
1678EVENT_ATTR(stalled-cycles-frontend, STALLED_CYCLES_FRONTEND );
1679EVENT_ATTR(stalled-cycles-backend, STALLED_CYCLES_BACKEND );
1680EVENT_ATTR(ref-cycles, REF_CPU_CYCLES );
1681
1682static struct attribute *empty_attrs;
1683
Peter Huewe95d18aa2012-10-29 21:48:17 +01001684static struct attribute *events_attr[] = {
Jiri Olsaa4747392012-10-10 14:53:11 +02001685 EVENT_PTR(CPU_CYCLES),
1686 EVENT_PTR(INSTRUCTIONS),
1687 EVENT_PTR(CACHE_REFERENCES),
1688 EVENT_PTR(CACHE_MISSES),
1689 EVENT_PTR(BRANCH_INSTRUCTIONS),
1690 EVENT_PTR(BRANCH_MISSES),
1691 EVENT_PTR(BUS_CYCLES),
1692 EVENT_PTR(STALLED_CYCLES_FRONTEND),
1693 EVENT_PTR(STALLED_CYCLES_BACKEND),
1694 EVENT_PTR(REF_CPU_CYCLES),
1695 NULL,
1696};
1697
1698static struct attribute_group x86_pmu_events_group = {
1699 .name = "events",
1700 .attrs = events_attr,
1701};
1702
Jiri Olsa0bf79d42012-10-10 14:53:14 +02001703ssize_t x86_event_sysfs_show(char *page, u64 config, u64 event)
Jiri Olsa43c032f2012-10-10 14:53:13 +02001704{
Jiri Olsa43c032f2012-10-10 14:53:13 +02001705 u64 umask = (config & ARCH_PERFMON_EVENTSEL_UMASK) >> 8;
1706 u64 cmask = (config & ARCH_PERFMON_EVENTSEL_CMASK) >> 24;
1707 bool edge = (config & ARCH_PERFMON_EVENTSEL_EDGE);
1708 bool pc = (config & ARCH_PERFMON_EVENTSEL_PIN_CONTROL);
1709 bool any = (config & ARCH_PERFMON_EVENTSEL_ANY);
1710 bool inv = (config & ARCH_PERFMON_EVENTSEL_INV);
1711 ssize_t ret;
1712
1713 /*
1714 * We have whole page size to spend and just little data
1715 * to write, so we can safely use sprintf.
1716 */
1717 ret = sprintf(page, "event=0x%02llx", event);
1718
1719 if (umask)
1720 ret += sprintf(page + ret, ",umask=0x%02llx", umask);
1721
1722 if (edge)
1723 ret += sprintf(page + ret, ",edge");
1724
1725 if (pc)
1726 ret += sprintf(page + ret, ",pc");
1727
1728 if (any)
1729 ret += sprintf(page + ret, ",any");
1730
1731 if (inv)
1732 ret += sprintf(page + ret, ",inv");
1733
1734 if (cmask)
1735 ret += sprintf(page + ret, ",cmask=0x%02llx", cmask);
1736
1737 ret += sprintf(page + ret, "\n");
1738
1739 return ret;
1740}
1741
Kan Liang60893272017-05-12 07:51:13 -07001742static struct attribute_group x86_pmu_attr_group;
Peter Zijlstra5da382e2017-08-28 12:46:50 +02001743static struct attribute_group x86_pmu_caps_group;
Kan Liang60893272017-05-12 07:51:13 -07001744
Yinghai Ludda99112011-01-21 15:30:01 -08001745static int __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301746{
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001747 struct x86_pmu_quirk *quirk;
Robert Richter72eae042009-04-29 12:47:10 +02001748 int err;
1749
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001750 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001751
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301752 switch (boot_cpu_data.x86_vendor) {
1753 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001754 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301755 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301756 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001757 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301758 break;
Robert Richter41389602009-04-29 12:47:00 +02001759 default:
Ingo Molnar8a3da6c72013-09-28 15:48:48 +02001760 err = -ENOTSUPP;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301761 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001762 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001763 pr_cont("no PMU driver, software events only.\n");
Peter Zijlstra004417a2010-11-25 18:38:29 +01001764 return 0;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001765 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301766
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001767 pmu_check_apic();
1768
Don Zickus33c6d6a2010-11-22 16:55:23 -05001769 /* sanity check that the hardware exists or is emulated */
Peter Zijlstra44072042010-12-08 15:56:23 +01001770 if (!check_hw_exists())
Peter Zijlstra004417a2010-11-25 18:38:29 +01001771 return 0;
Don Zickus33c6d6a2010-11-22 16:55:23 -05001772
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001773 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001774
Peter Zijlstrae97df762014-02-05 20:48:51 +01001775 x86_pmu.attr_rdpmc = 1; /* enable userspace RDPMC usage by default */
1776
Peter Zijlstrac1d6f422011-12-06 14:07:15 +01001777 for (quirk = x86_pmu.quirks; quirk; quirk = quirk->next)
1778 quirk->func();
Peter Zijlstra3c447802010-03-04 21:49:01 +01001779
Robert Richtera1eac7a2012-06-20 20:46:34 +02001780 if (!x86_pmu.intel_ctrl)
1781 x86_pmu.intel_ctrl = (1 << x86_pmu.num_counters) - 1;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001782
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001783 perf_events_lapic_init();
Don Zickus9c48f1c2011-09-30 15:06:21 -04001784 register_nmi_handler(NMI_LOCAL, perf_event_nmi_handler, 0, "PMI");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001785
Peter Zijlstra63b14642010-01-22 16:32:17 +01001786 unconstrained = (struct event_constraint)
Robert Richter948b1bb2010-03-29 18:36:50 +02001787 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_counters) - 1,
Stephane Eranian9fac2cf2013-01-24 16:10:27 +01001788 0, x86_pmu.num_counters, 0, 0);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001789
Jiri Olsa641cc932012-03-15 20:09:14 +01001790 x86_pmu_format_group.attrs = x86_pmu.format_attrs;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01001791
Peter Zijlstra5da382e2017-08-28 12:46:50 +02001792 if (x86_pmu.caps_attrs) {
1793 struct attribute **tmp;
1794
1795 tmp = merge_attr(x86_pmu_caps_group.attrs, x86_pmu.caps_attrs);
1796 if (!WARN_ON(!tmp))
1797 x86_pmu_caps_group.attrs = tmp;
1798 }
Peter Zijlstrab622d642010-02-01 15:36:30 +01001799
Stephane Eranianf20093e2013-01-24 16:10:32 +01001800 if (x86_pmu.event_attrs)
1801 x86_pmu_events_group.attrs = x86_pmu.event_attrs;
1802
Jiri Olsaa4747392012-10-10 14:53:11 +02001803 if (!x86_pmu.events_sysfs_show)
1804 x86_pmu_events_group.attrs = &empty_attrs;
Jiri Olsa8300daa2012-10-10 14:53:12 +02001805 else
1806 filter_events(x86_pmu_events_group.attrs);
Jiri Olsaa4747392012-10-10 14:53:11 +02001807
Andi Kleen1a6461b2013-01-24 16:10:25 +01001808 if (x86_pmu.cpu_events) {
1809 struct attribute **tmp;
1810
1811 tmp = merge_attr(x86_pmu_events_group.attrs, x86_pmu.cpu_events);
1812 if (!WARN_ON(!tmp))
1813 x86_pmu_events_group.attrs = tmp;
1814 }
1815
Kan Liang60893272017-05-12 07:51:13 -07001816 if (x86_pmu.attrs) {
1817 struct attribute **tmp;
1818
1819 tmp = merge_attr(x86_pmu_attr_group.attrs, x86_pmu.attrs);
1820 if (!WARN_ON(!tmp))
1821 x86_pmu_attr_group.attrs = tmp;
1822 }
1823
Ingo Molnar57c0c152009-09-21 12:20:38 +02001824 pr_info("... version: %d\n", x86_pmu.version);
Robert Richter948b1bb2010-03-29 18:36:50 +02001825 pr_info("... bit width: %d\n", x86_pmu.cntval_bits);
1826 pr_info("... generic registers: %d\n", x86_pmu.num_counters);
1827 pr_info("... value mask: %016Lx\n", x86_pmu.cntval_mask);
Ingo Molnar57c0c152009-09-21 12:20:38 +02001828 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
Robert Richter948b1bb2010-03-29 18:36:50 +02001829 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_counters_fixed);
Robert Richterd6dc0b42010-03-17 12:49:13 +01001830 pr_info("... event mask: %016Lx\n", x86_pmu.intel_ctrl);
Peter Zijlstra3f6da392010-03-05 13:01:18 +01001831
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001832 /*
1833 * Install callbacks. Core will call them for each online
1834 * cpu.
1835 */
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001836 err = cpuhp_setup_state(CPUHP_PERF_X86_PREPARE, "perf/x86:prepare",
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001837 x86_pmu_prepare_cpu, x86_pmu_dead_cpu);
1838 if (err)
1839 return err;
1840
1841 err = cpuhp_setup_state(CPUHP_AP_PERF_X86_STARTING,
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001842 "perf/x86:starting", x86_pmu_starting_cpu,
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001843 x86_pmu_dying_cpu);
1844 if (err)
1845 goto out;
1846
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001847 err = cpuhp_setup_state(CPUHP_AP_PERF_X86_ONLINE, "perf/x86:online",
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001848 x86_pmu_online_cpu, NULL);
1849 if (err)
1850 goto out1;
1851
1852 err = perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
1853 if (err)
1854 goto out2;
Peter Zijlstra004417a2010-11-25 18:38:29 +01001855
1856 return 0;
Thomas Gleixner95ca7922016-07-13 17:16:10 +00001857
1858out2:
1859 cpuhp_remove_state(CPUHP_AP_PERF_X86_ONLINE);
1860out1:
1861 cpuhp_remove_state(CPUHP_AP_PERF_X86_STARTING);
1862out:
1863 cpuhp_remove_state(CPUHP_PERF_X86_PREPARE);
1864 return err;
Ingo Molnar241771e2008-12-03 10:39:53 +01001865}
Peter Zijlstra004417a2010-11-25 18:38:29 +01001866early_initcall(init_hw_perf_events);
Ingo Molnar621a01e2008-12-11 12:46:46 +01001867
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001868static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001869{
Kan Liangbcfbe5c2018-02-12 14:20:32 -08001870 if (x86_pmu.read)
1871 return x86_pmu.read(event);
Peter Zijlstracc2ad4b2010-03-02 20:18:39 +01001872 x86_perf_event_update(event);
Ingo Molnaree060942008-12-13 09:00:03 +01001873}
1874
Lin Ming4d1c52b2010-04-23 13:56:12 +08001875/*
1876 * Start group events scheduling transaction
1877 * Set the flag to make pmu::enable() not perform the
1878 * schedulability test, it will be performed at commit time
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001879 *
1880 * We only support PERF_PMU_TXN_ADD transactions. Save the
1881 * transaction flags but otherwise ignore non-PERF_PMU_TXN_ADD
1882 * transactions.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001883 */
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001884static void x86_pmu_start_txn(struct pmu *pmu, unsigned int txn_flags)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001885{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001886 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1887
1888 WARN_ON_ONCE(cpuc->txn_flags); /* txn already in flight */
1889
1890 cpuc->txn_flags = txn_flags;
1891 if (txn_flags & ~PERF_PMU_TXN_ADD)
1892 return;
1893
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001894 perf_pmu_disable(pmu);
Tejun Heo0a3aee02010-12-18 16:28:55 +01001895 __this_cpu_write(cpu_hw_events.n_txn, 0);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001896}
1897
1898/*
1899 * Stop group events scheduling transaction
1900 * Clear the flag and pmu::enable() will perform the
1901 * schedulability test.
1902 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001903static void x86_pmu_cancel_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001904{
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001905 unsigned int txn_flags;
1906 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
1907
1908 WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
1909
1910 txn_flags = cpuc->txn_flags;
1911 cpuc->txn_flags = 0;
1912 if (txn_flags & ~PERF_PMU_TXN_ADD)
1913 return;
1914
Stephane Eranian90151c352010-05-25 16:23:10 +02001915 /*
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001916 * Truncate collected array by the number of events added in this
1917 * transaction. See x86_pmu_add() and x86_pmu_*_txn().
Stephane Eranian90151c352010-05-25 16:23:10 +02001918 */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001919 __this_cpu_sub(cpu_hw_events.n_added, __this_cpu_read(cpu_hw_events.n_txn));
1920 __this_cpu_sub(cpu_hw_events.n_events, __this_cpu_read(cpu_hw_events.n_txn));
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001921 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001922}
1923
1924/*
1925 * Commit group events scheduling transaction
1926 * Perform the group schedulability test as a whole
1927 * Return 0 if success
Peter Zijlstrac347a2f2014-02-24 12:26:21 +01001928 *
1929 * Does not cancel the transaction on failure; expects the caller to do this.
Lin Ming4d1c52b2010-04-23 13:56:12 +08001930 */
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02001931static int x86_pmu_commit_txn(struct pmu *pmu)
Lin Ming4d1c52b2010-04-23 13:56:12 +08001932{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001933 struct cpu_hw_events *cpuc = this_cpu_ptr(&cpu_hw_events);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001934 int assign[X86_PMC_IDX_MAX];
1935 int n, ret;
1936
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001937 WARN_ON_ONCE(!cpuc->txn_flags); /* no txn in flight */
1938
1939 if (cpuc->txn_flags & ~PERF_PMU_TXN_ADD) {
1940 cpuc->txn_flags = 0;
1941 return 0;
1942 }
1943
Lin Ming4d1c52b2010-04-23 13:56:12 +08001944 n = cpuc->n_events;
1945
1946 if (!x86_pmu_initialized())
1947 return -EAGAIN;
1948
1949 ret = x86_pmu.schedule_events(cpuc, n, assign);
1950 if (ret)
1951 return ret;
1952
1953 /*
1954 * copy new assignment, now we know it is possible
1955 * will be used by hw_perf_enable()
1956 */
1957 memcpy(cpuc->assign, assign, n*sizeof(int));
1958
Sukadev Bhattiprolufbbe0702015-09-03 20:07:45 -07001959 cpuc->txn_flags = 0;
Peter Zijlstra33696fc2010-06-14 08:49:00 +02001960 perf_pmu_enable(pmu);
Lin Ming4d1c52b2010-04-23 13:56:12 +08001961 return 0;
1962}
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001963/*
1964 * a fake_cpuc is used to validate event groups. Due to
1965 * the extra reg logic, we need to also allocate a fake
1966 * per_core and per_cpu structure. Otherwise, group events
1967 * using extra reg may conflict without the kernel being
1968 * able to catch this when the last event gets added to
1969 * the group.
1970 */
1971static void free_fake_cpuc(struct cpu_hw_events *cpuc)
1972{
1973 kfree(cpuc->shared_regs);
1974 kfree(cpuc);
1975}
1976
1977static struct cpu_hw_events *allocate_fake_cpuc(void)
1978{
1979 struct cpu_hw_events *cpuc;
1980 int cpu = raw_smp_processor_id();
1981
1982 cpuc = kzalloc(sizeof(*cpuc), GFP_KERNEL);
1983 if (!cpuc)
1984 return ERR_PTR(-ENOMEM);
1985
1986 /* only needed, if we have extra_regs */
1987 if (x86_pmu.extra_regs) {
1988 cpuc->shared_regs = allocate_shared_regs(cpu);
1989 if (!cpuc->shared_regs)
1990 goto error;
1991 }
Peter Zijlstrab430f7c2012-06-05 15:30:31 +02001992 cpuc->is_fake = 1;
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02001993 return cpuc;
1994error:
1995 free_fake_cpuc(cpuc);
1996 return ERR_PTR(-ENOMEM);
1997}
Lin Ming4d1c52b2010-04-23 13:56:12 +08001998
Stephane Eranian1da53e02010-01-18 10:58:01 +02001999/*
Peter Zijlstraca037702010-03-02 19:52:12 +01002000 * validate that we can schedule this event
2001 */
2002static int validate_event(struct perf_event *event)
2003{
2004 struct cpu_hw_events *fake_cpuc;
2005 struct event_constraint *c;
2006 int ret = 0;
2007
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002008 fake_cpuc = allocate_fake_cpuc();
2009 if (IS_ERR(fake_cpuc))
2010 return PTR_ERR(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01002011
Stephane Eranian79cba822014-11-17 20:06:56 +01002012 c = x86_pmu.get_event_constraints(fake_cpuc, -1, event);
Peter Zijlstraca037702010-03-02 19:52:12 +01002013
2014 if (!c || !c->weight)
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01002015 ret = -EINVAL;
Peter Zijlstraca037702010-03-02 19:52:12 +01002016
2017 if (x86_pmu.put_event_constraints)
2018 x86_pmu.put_event_constraints(fake_cpuc, event);
2019
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002020 free_fake_cpuc(fake_cpuc);
Peter Zijlstraca037702010-03-02 19:52:12 +01002021
2022 return ret;
2023}
2024
2025/*
Stephane Eranian1da53e02010-01-18 10:58:01 +02002026 * validate a single event group
2027 *
2028 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01002029 * - check events are compatible which each other
2030 * - events do not compete for the same counter
2031 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02002032 *
2033 * validation ensures the group can be loaded onto the
2034 * PMU if it was the only group available.
2035 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002036static int validate_group(struct perf_event *event)
2037{
Stephane Eranian1da53e02010-01-18 10:58:01 +02002038 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01002039 struct cpu_hw_events *fake_cpuc;
Peter Zijlstraaa2bc1a2011-11-09 17:56:37 +01002040 int ret = -EINVAL, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002041
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002042 fake_cpuc = allocate_fake_cpuc();
2043 if (IS_ERR(fake_cpuc))
2044 return PTR_ERR(fake_cpuc);
Stephane Eranian1da53e02010-01-18 10:58:01 +02002045 /*
2046 * the event is not yet connected with its
2047 * siblings therefore we must first collect
2048 * existing siblings, then add the new event
2049 * before we can simulate the scheduling
2050 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01002051 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02002052 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002053 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002054
Peter Zijlstra502568d2010-01-22 14:35:46 +01002055 fake_cpuc->n_events = n;
2056 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02002057 if (n < 0)
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002058 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002059
Peter Zijlstra502568d2010-01-22 14:35:46 +01002060 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02002061
Cyrill Gorcunova0727382010-03-11 19:54:39 +03002062 ret = x86_pmu.schedule_events(fake_cpuc, n, NULL);
Peter Zijlstra502568d2010-01-22 14:35:46 +01002063
Peter Zijlstra502568d2010-01-22 14:35:46 +01002064out:
Stephane Eraniancd8a38d2011-06-06 16:57:08 +02002065 free_fake_cpuc(fake_cpuc);
Peter Zijlstra502568d2010-01-22 14:35:46 +01002066 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002067}
2068
Yinghai Ludda99112011-01-21 15:30:01 -08002069static int x86_pmu_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01002070{
Peter Zijlstra51b0fe32010-06-11 13:35:57 +02002071 struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01002072 int err;
2073
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002074 switch (event->attr.type) {
2075 case PERF_TYPE_RAW:
2076 case PERF_TYPE_HARDWARE:
2077 case PERF_TYPE_HW_CACHE:
2078 break;
2079
2080 default:
2081 return -ENOENT;
2082 }
2083
2084 err = __x86_pmu_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002085 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02002086 /*
2087 * we temporarily connect event to its pmu
2088 * such that validate_group() can classify
2089 * it as an x86 event using is_x86_event()
2090 */
2091 tmp = event->pmu;
2092 event->pmu = &pmu;
2093
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002094 if (event->group_leader != event)
2095 err = validate_group(event);
Peter Zijlstraca037702010-03-02 19:52:12 +01002096 else
2097 err = validate_event(event);
Stephane Eranian81130702010-01-21 17:39:01 +02002098
2099 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02002100 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02002101 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002102 if (event->destroy)
2103 event->destroy(event);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02002104 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01002105
Kan Liang1af22eb2018-02-12 14:20:35 -08002106 if (READ_ONCE(x86_pmu.attr_rdpmc) &&
Kan Liang174afc32018-03-12 10:45:37 -04002107 !(event->hw.flags & PERF_X86_EVENT_LARGE_PEBS))
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002108 event->hw.flags |= PERF_X86_EVENT_RDPMC_ALLOWED;
2109
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002110 return err;
Ingo Molnar621a01e2008-12-11 12:46:46 +01002111}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002112
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002113static void refresh_pce(void *ignored)
2114{
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -07002115 load_mm_cr4(this_cpu_read(cpu_tlbstate.loaded_mm));
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002116}
2117
Peter Zijlstrabfe334922017-08-02 19:39:30 +02002118static void x86_pmu_event_mapped(struct perf_event *event, struct mm_struct *mm)
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002119{
2120 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2121 return;
2122
Andy Lutomirski4b073722017-03-16 12:59:40 -07002123 /*
2124 * This function relies on not being called concurrently in two
2125 * tasks in the same mm. Otherwise one task could observe
2126 * perf_rdpmc_allowed > 1 and return all the way back to
2127 * userspace with CR4.PCE clear while another task is still
2128 * doing on_each_cpu_mask() to propagate CR4.PCE.
2129 *
2130 * For now, this can't happen because all callers hold mmap_sem
2131 * for write. If this changes, we'll need a different solution.
2132 */
Peter Zijlstrabfe334922017-08-02 19:39:30 +02002133 lockdep_assert_held_exclusive(&mm->mmap_sem);
Andy Lutomirski4b073722017-03-16 12:59:40 -07002134
Peter Zijlstrabfe334922017-08-02 19:39:30 +02002135 if (atomic_inc_return(&mm->context.perf_rdpmc_allowed) == 1)
2136 on_each_cpu_mask(mm_cpumask(mm), refresh_pce, NULL, 1);
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002137}
2138
Peter Zijlstrabfe334922017-08-02 19:39:30 +02002139static void x86_pmu_event_unmapped(struct perf_event *event, struct mm_struct *mm)
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002140{
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002141
2142 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
2143 return;
2144
Peter Zijlstrabfe334922017-08-02 19:39:30 +02002145 if (atomic_dec_and_test(&mm->context.perf_rdpmc_allowed))
2146 on_each_cpu_mask(mm_cpumask(mm), refresh_pce, NULL, 1);
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002147}
2148
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002149static int x86_pmu_event_idx(struct perf_event *event)
2150{
2151 int idx = event->hw.idx;
2152
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002153 if (!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED))
Peter Zijlstrac7206202012-03-22 17:26:36 +01002154 return 0;
2155
Robert Richter15c7ad52012-06-20 20:46:33 +02002156 if (x86_pmu.num_counters_fixed && idx >= INTEL_PMC_IDX_FIXED) {
2157 idx -= INTEL_PMC_IDX_FIXED;
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002158 idx |= 1 << 30;
2159 }
2160
2161 return idx + 1;
2162}
2163
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002164static ssize_t get_attr_rdpmc(struct device *cdev,
2165 struct device_attribute *attr,
2166 char *buf)
2167{
2168 return snprintf(buf, 40, "%d\n", x86_pmu.attr_rdpmc);
2169}
2170
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002171static ssize_t set_attr_rdpmc(struct device *cdev,
2172 struct device_attribute *attr,
2173 const char *buf, size_t count)
2174{
Shuah Khane2b297f2012-06-10 21:13:41 -06002175 unsigned long val;
2176 ssize_t ret;
2177
2178 ret = kstrtoul(buf, 0, &val);
2179 if (ret)
2180 return ret;
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002181
Andy Lutomirskia6673422014-10-24 15:58:13 -07002182 if (val > 2)
2183 return -EINVAL;
2184
Peter Zijlstrae97df762014-02-05 20:48:51 +01002185 if (x86_pmu.attr_rdpmc_broken)
2186 return -ENOTSUPP;
2187
Andy Lutomirskia6673422014-10-24 15:58:13 -07002188 if ((val == 2) != (x86_pmu.attr_rdpmc == 2)) {
2189 /*
2190 * Changing into or out of always available, aka
2191 * perf-event-bypassing mode. This path is extremely slow,
2192 * but only root can trigger it, so it's okay.
2193 */
2194 if (val == 2)
Davidlohr Bueso631fe152018-03-26 14:09:27 -07002195 static_branch_inc(&rdpmc_always_available_key);
Andy Lutomirskia6673422014-10-24 15:58:13 -07002196 else
Davidlohr Bueso631fe152018-03-26 14:09:27 -07002197 static_branch_dec(&rdpmc_always_available_key);
Andy Lutomirskia6673422014-10-24 15:58:13 -07002198 on_each_cpu(refresh_pce, NULL, 1);
2199 }
2200
2201 x86_pmu.attr_rdpmc = val;
2202
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002203 return count;
2204}
2205
2206static DEVICE_ATTR(rdpmc, S_IRUSR | S_IWUSR, get_attr_rdpmc, set_attr_rdpmc);
2207
2208static struct attribute *x86_pmu_attrs[] = {
2209 &dev_attr_rdpmc.attr,
2210 NULL,
2211};
2212
2213static struct attribute_group x86_pmu_attr_group = {
2214 .attrs = x86_pmu_attrs,
2215};
2216
Peter Zijlstra5da382e2017-08-28 12:46:50 +02002217static ssize_t max_precise_show(struct device *cdev,
2218 struct device_attribute *attr,
2219 char *buf)
2220{
2221 return snprintf(buf, PAGE_SIZE, "%d\n", x86_pmu_max_precise());
2222}
2223
2224static DEVICE_ATTR_RO(max_precise);
2225
2226static struct attribute *x86_pmu_caps_attrs[] = {
2227 &dev_attr_max_precise.attr,
2228 NULL
2229};
2230
2231static struct attribute_group x86_pmu_caps_group = {
2232 .name = "caps",
2233 .attrs = x86_pmu_caps_attrs,
2234};
2235
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002236static const struct attribute_group *x86_pmu_attr_groups[] = {
2237 &x86_pmu_attr_group,
Jiri Olsa641cc932012-03-15 20:09:14 +01002238 &x86_pmu_format_group,
Jiri Olsaa4747392012-10-10 14:53:11 +02002239 &x86_pmu_events_group,
Andi Kleenb00233b2017-08-22 11:52:01 -07002240 &x86_pmu_caps_group,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002241 NULL,
2242};
2243
Yan, Zhengba532502014-11-04 21:55:58 -05002244static void x86_pmu_sched_task(struct perf_event_context *ctx, bool sched_in)
Stephane Eraniand010b332012-02-09 23:21:00 +01002245{
Yan, Zhengba532502014-11-04 21:55:58 -05002246 if (x86_pmu.sched_task)
2247 x86_pmu.sched_task(ctx, sched_in);
Stephane Eraniand010b332012-02-09 23:21:00 +01002248}
2249
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002250void perf_check_microcode(void)
2251{
2252 if (x86_pmu.check_microcode)
2253 x86_pmu.check_microcode();
2254}
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002255
Jiri Olsa74cbb752019-02-04 13:35:32 +01002256static int x86_pmu_check_period(struct perf_event *event, u64 value)
2257{
2258 if (x86_pmu.check_period && x86_pmu.check_period(event, value))
2259 return -EINVAL;
2260
2261 if (value && x86_pmu.limit_period) {
2262 if (x86_pmu.limit_period(event, value) > value)
2263 return -EINVAL;
2264 }
2265
2266 return 0;
2267}
2268
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002269static struct pmu pmu = {
Stephane Eraniand010b332012-02-09 23:21:00 +01002270 .pmu_enable = x86_pmu_enable,
2271 .pmu_disable = x86_pmu_disable,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002272
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002273 .attr_groups = x86_pmu_attr_groups,
Peter Zijlstra0c9d42e2011-11-20 23:30:47 +01002274
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002275 .event_init = x86_pmu_event_init,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002276
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002277 .event_mapped = x86_pmu_event_mapped,
2278 .event_unmapped = x86_pmu_event_unmapped,
2279
Stephane Eraniand010b332012-02-09 23:21:00 +01002280 .add = x86_pmu_add,
2281 .del = x86_pmu_del,
2282 .start = x86_pmu_start,
2283 .stop = x86_pmu_stop,
2284 .read = x86_pmu_read,
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +02002285
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002286 .start_txn = x86_pmu_start_txn,
2287 .cancel_txn = x86_pmu_cancel_txn,
2288 .commit_txn = x86_pmu_commit_txn,
Peter Zijlstrafe4a3302011-11-20 20:44:06 +01002289
Peter Zijlstrac93dc842012-06-08 14:50:50 +02002290 .event_idx = x86_pmu_event_idx,
Yan, Zhengba532502014-11-04 21:55:58 -05002291 .sched_task = x86_pmu_sched_task,
Yan, Zhenge18bf522014-11-04 21:56:03 -05002292 .task_ctx_size = sizeof(struct x86_perf_task_context),
Jiri Olsa74cbb752019-02-04 13:35:32 +01002293 .check_period = x86_pmu_check_period,
Peter Zijlstrab0a873e2010-06-11 13:35:08 +02002294};
2295
Andy Lutomirskic1317ec2014-10-24 15:58:11 -07002296void arch_perf_update_userpage(struct perf_event *event,
2297 struct perf_event_mmap_page *userpg, u64 now)
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002298{
Peter Zijlstra59eaef72017-05-02 13:22:07 +02002299 struct cyc2ns_data data;
Peter Zijlstra698eff62017-03-17 12:48:18 +01002300 u64 offset;
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002301
Peter Zijlstrafa731582013-09-19 10:16:42 +02002302 userpg->cap_user_time = 0;
2303 userpg->cap_user_time_zero = 0;
Andy Lutomirski7911d3f2014-10-24 15:58:12 -07002304 userpg->cap_user_rdpmc =
2305 !!(event->hw.flags & PERF_X86_EVENT_RDPMC_ALLOWED);
Peter Zijlstrac7206202012-03-22 17:26:36 +01002306 userpg->pmc_width = x86_pmu.cntval_bits;
2307
Peter Zijlstra698eff62017-03-17 12:48:18 +01002308 if (!using_native_sched_clock() || !sched_clock_stable())
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002309 return;
2310
Peter Zijlstra59eaef72017-05-02 13:22:07 +02002311 cyc2ns_read_begin(&data);
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002312
Peter Zijlstra59eaef72017-05-02 13:22:07 +02002313 offset = data.cyc2ns_offset + __sched_clock_offset;
Peter Zijlstra698eff62017-03-17 12:48:18 +01002314
Peter Zijlstra34f43922015-02-20 14:05:38 +01002315 /*
2316 * Internal timekeeping for enabled/running/stopped times
2317 * is always in the local_clock domain.
2318 */
Peter Zijlstrafa731582013-09-19 10:16:42 +02002319 userpg->cap_user_time = 1;
Peter Zijlstra59eaef72017-05-02 13:22:07 +02002320 userpg->time_mult = data.cyc2ns_mul;
2321 userpg->time_shift = data.cyc2ns_shift;
Peter Zijlstra698eff62017-03-17 12:48:18 +01002322 userpg->time_offset = offset - now;
Adrian Hunterc73deb62013-06-28 16:22:18 +03002323
Peter Zijlstra34f43922015-02-20 14:05:38 +01002324 /*
2325 * cap_user_time_zero doesn't make sense when we're using a different
2326 * time base for the records.
2327 */
Alexander Shishkinf454bfd2016-04-14 14:59:49 +03002328 if (!event->attr.use_clockid) {
Peter Zijlstra34f43922015-02-20 14:05:38 +01002329 userpg->cap_user_time_zero = 1;
Peter Zijlstra698eff62017-03-17 12:48:18 +01002330 userpg->time_zero = offset;
Peter Zijlstra34f43922015-02-20 14:05:38 +01002331 }
Peter Zijlstra20d1c862013-11-29 15:40:29 +01002332
Peter Zijlstra59eaef72017-05-02 13:22:07 +02002333 cyc2ns_read_end();
Peter Zijlstrae3f35412011-11-21 11:43:53 +01002334}
2335
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02002336void
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002337perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002338{
Josh Poimboeuf35f4d9b2016-09-16 14:18:13 -05002339 struct unwind_state state;
2340 unsigned long addr;
2341
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002342 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2343 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002344 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002345 }
2346
Josh Poimboeuf019e5792016-08-24 11:50:14 -05002347 if (perf_callchain_store(entry, regs->ip))
2348 return;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002349
Josh Poimboeuf35f4d9b2016-09-16 14:18:13 -05002350 for (unwind_start(&state, current, regs, NULL); !unwind_done(&state);
2351 unwind_next_frame(&state)) {
2352 addr = unwind_get_return_address(&state);
2353 if (!addr || perf_callchain_store(entry, addr))
2354 return;
2355 }
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002356}
2357
Arun Sharmabc6ca7b2012-04-20 15:41:35 -07002358static inline int
2359valid_user_frame(const void __user *fp, unsigned long size)
2360{
2361 return (__range_not_ok(fp, size, TASK_SIZE) == 0);
2362}
2363
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002364static unsigned long get_segment_base(unsigned int segment)
2365{
2366 struct desc_struct *desc;
Thomas Gleixner990e9dc2016-12-10 00:13:51 +01002367 unsigned int idx = segment >> 3;
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002368
2369 if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) {
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -07002370#ifdef CONFIG_MODIFY_LDT_SYSCALL
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002371 struct ldt_struct *ldt;
2372
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002373 /* IRQs are off, so this synchronizes with smp_store_release */
Will Deacon506458e2017-10-24 11:22:48 +01002374 ldt = READ_ONCE(current->active_mm->context.ldt);
Dan Carpentereaa2f872017-08-18 13:30:30 +03002375 if (!ldt || idx >= ldt->nr_entries)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002376 return 0;
2377
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002378 desc = &ldt->entries[idx];
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -07002379#else
2380 return 0;
2381#endif
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002382 } else {
Dan Carpentereaa2f872017-08-18 13:30:30 +03002383 if (idx >= GDT_ENTRIES)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002384 return 0;
2385
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002386 desc = raw_cpu_ptr(gdt_page.gdt) + idx;
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002387 }
2388
Andy Lutomirski37868fe2015-07-30 14:31:32 -07002389 return get_desc_base(desc);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002390}
2391
Brian Gerst10ed3492015-06-22 07:55:17 -04002392#ifdef CONFIG_IA32_EMULATION
H. Peter Anvind1a797f2012-02-19 10:06:34 -08002393
Deepa Dinamani0d553032018-03-13 21:03:25 -07002394#include <linux/compat.h>
H. Peter Anvind1a797f2012-02-19 10:06:34 -08002395
Torok Edwin257ef9d2010-03-17 12:07:16 +02002396static inline int
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002397perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002398{
Torok Edwin257ef9d2010-03-17 12:07:16 +02002399 /* 32-bit process in 64-bit kernel. */
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002400 unsigned long ss_base, cs_base;
Torok Edwin257ef9d2010-03-17 12:07:16 +02002401 struct stack_frame_ia32 frame;
2402 const void __user *fp;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002403
Torok Edwin257ef9d2010-03-17 12:07:16 +02002404 if (!test_thread_flag(TIF_IA32))
2405 return 0;
Peter Zijlstra74193ef2009-06-15 13:07:24 +02002406
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002407 cs_base = get_segment_base(regs->cs);
2408 ss_base = get_segment_base(regs->ss);
2409
2410 fp = compat_ptr(ss_base + regs->bp);
Andi Kleen75925e12015-10-22 15:07:21 -07002411 pagefault_disable();
Arnaldo Carvalho de Melo3b1fff02016-05-10 18:08:32 -03002412 while (entry->nr < entry->max_stack) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02002413 unsigned long bytes;
2414 frame.next_frame = 0;
2415 frame.return_address = 0;
2416
Johannes Weinerae31fe52016-11-22 10:57:42 +01002417 if (!valid_user_frame(fp, sizeof(frame)))
Andi Kleen75925e12015-10-22 15:07:21 -07002418 break;
2419
2420 bytes = __copy_from_user_nmi(&frame.next_frame, fp, 4);
2421 if (bytes != 0)
2422 break;
2423 bytes = __copy_from_user_nmi(&frame.return_address, fp+4, 4);
Peter Zijlstra0a196842013-10-30 21:16:22 +01002424 if (bytes != 0)
Torok Edwin257ef9d2010-03-17 12:07:16 +02002425 break;
2426
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002427 perf_callchain_store(entry, cs_base + frame.return_address);
2428 fp = compat_ptr(ss_base + frame.next_frame);
Torok Edwin257ef9d2010-03-17 12:07:16 +02002429 }
Andi Kleen75925e12015-10-22 15:07:21 -07002430 pagefault_enable();
Torok Edwin257ef9d2010-03-17 12:07:16 +02002431 return 1;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002432}
Torok Edwin257ef9d2010-03-17 12:07:16 +02002433#else
2434static inline int
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002435perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry_ctx *entry)
Torok Edwin257ef9d2010-03-17 12:07:16 +02002436{
2437 return 0;
2438}
2439#endif
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002440
Frederic Weisbecker56962b4442010-06-30 23:03:51 +02002441void
Arnaldo Carvalho de Melocfbcf462016-04-28 12:30:53 -03002442perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002443{
2444 struct stack_frame frame;
Josh Poimboeuffc188222016-07-01 23:02:05 -05002445 const unsigned long __user *fp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002446
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002447 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
2448 /* TODO: We don't support guest os callchain now */
Peter Zijlstraed805262010-08-20 14:30:41 +02002449 return;
Frederic Weisbecker927c7a92010-07-01 16:20:36 +02002450 }
Ingo Molnar5a6cec32009-05-29 11:25:09 +02002451
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002452 /*
2453 * We don't know what to do with VM86 stacks.. ignore them for now.
2454 */
2455 if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM))
2456 return;
2457
Josh Poimboeuffc188222016-07-01 23:02:05 -05002458 fp = (unsigned long __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002459
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002460 perf_callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002461
Andy Lutomirski4012e772018-08-29 08:47:18 -07002462 if (!nmi_uaccess_okay())
Andrey Vagin20afc602011-08-30 12:32:36 +04002463 return;
2464
Torok Edwin257ef9d2010-03-17 12:07:16 +02002465 if (perf_callchain_user32(regs, entry))
2466 return;
2467
Andi Kleen75925e12015-10-22 15:07:21 -07002468 pagefault_disable();
Arnaldo Carvalho de Melo3b1fff02016-05-10 18:08:32 -03002469 while (entry->nr < entry->max_stack) {
Torok Edwin257ef9d2010-03-17 12:07:16 +02002470 unsigned long bytes;
Josh Poimboeuffc188222016-07-01 23:02:05 -05002471
Ingo Molnar038e8362009-06-15 09:57:59 +02002472 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002473 frame.return_address = 0;
2474
Johannes Weinerae31fe52016-11-22 10:57:42 +01002475 if (!valid_user_frame(fp, sizeof(frame)))
Andi Kleen75925e12015-10-22 15:07:21 -07002476 break;
2477
Josh Poimboeuffc188222016-07-01 23:02:05 -05002478 bytes = __copy_from_user_nmi(&frame.next_frame, fp, sizeof(*fp));
Andi Kleen75925e12015-10-22 15:07:21 -07002479 if (bytes != 0)
2480 break;
Josh Poimboeuffc188222016-07-01 23:02:05 -05002481 bytes = __copy_from_user_nmi(&frame.return_address, fp + 1, sizeof(*fp));
Peter Zijlstra0a196842013-10-30 21:16:22 +01002482 if (bytes != 0)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002483 break;
2484
Frederic Weisbecker70791ce2010-06-29 19:34:05 +02002485 perf_callchain_store(entry, frame.return_address);
Andi Kleen75925e12015-10-22 15:07:21 -07002486 fp = (void __user *)frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002487 }
Andi Kleen75925e12015-10-22 15:07:21 -07002488 pagefault_enable();
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02002489}
2490
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002491/*
2492 * Deal with code segment offsets for the various execution modes:
2493 *
2494 * VM86 - the good olde 16 bit days, where the linear address is
2495 * 20 bits and we use regs->ip + 0x10 * regs->cs.
2496 *
2497 * IA32 - Where we need to look at GDT/LDT segment descriptor tables
2498 * to figure out what the 32bit base address is.
2499 *
2500 * X32 - has TIF_X32 set, but is running in x86_64
2501 *
2502 * X86_64 - CS,DS,SS,ES are all zero based.
2503 */
2504static unsigned long code_segment_base(struct pt_regs *regs)
2505{
2506 /*
Andy Lutomirski383f3af2015-03-18 18:33:30 -07002507 * For IA32 we look at the GDT/LDT segment base to convert the
2508 * effective IP to a linear address.
2509 */
2510
2511#ifdef CONFIG_X86_32
2512 /*
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002513 * If we are in VM86 mode, add the segment offset to convert to a
2514 * linear address.
2515 */
2516 if (regs->flags & X86_VM_MASK)
2517 return 0x10 * regs->cs;
2518
Ingo Molnar55474c42015-03-29 11:02:34 +02002519 if (user_mode(regs) && regs->cs != __USER_CS)
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002520 return get_segment_base(regs->cs);
2521#else
Andy Lutomirskic56716a2015-03-18 18:33:28 -07002522 if (user_mode(regs) && !user_64bit_mode(regs) &&
2523 regs->cs != __USER32_CS)
2524 return get_segment_base(regs->cs);
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002525#endif
2526 return 0;
2527}
2528
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002529unsigned long perf_instruction_pointer(struct pt_regs *regs)
2530{
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002531 if (perf_guest_cbs && perf_guest_cbs->is_in_guest())
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002532 return perf_guest_cbs->get_guest_ip();
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002533
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002534 return regs->ip + code_segment_base(regs);
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002535}
2536
2537unsigned long perf_misc_flags(struct pt_regs *regs)
2538{
2539 int misc = 0;
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002540
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002541 if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) {
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002542 if (perf_guest_cbs->is_user_mode())
2543 misc |= PERF_RECORD_MISC_GUEST_USER;
2544 else
2545 misc |= PERF_RECORD_MISC_GUEST_KERNEL;
2546 } else {
Peter Zijlstrad07bdfd2012-07-10 09:42:15 +02002547 if (user_mode(regs))
Zhang, Yanmindcf46b92010-04-20 10:13:58 +08002548 misc |= PERF_RECORD_MISC_USER;
2549 else
2550 misc |= PERF_RECORD_MISC_KERNEL;
2551 }
2552
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002553 if (regs->flags & PERF_EFLAGS_EXACT)
Peter Zijlstraab608342010-04-08 23:03:20 +02002554 misc |= PERF_RECORD_MISC_EXACT_IP;
Zhang, Yanmin39447b32010-04-19 13:32:41 +08002555
2556 return misc;
2557}
Gleb Natapovb3d94682011-11-10 14:57:27 +02002558
2559void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
2560{
2561 cap->version = x86_pmu.version;
2562 cap->num_counters_gp = x86_pmu.num_counters;
2563 cap->num_counters_fixed = x86_pmu.num_counters_fixed;
2564 cap->bit_width_gp = x86_pmu.cntval_bits;
2565 cap->bit_width_fixed = x86_pmu.cntval_bits;
2566 cap->events_mask = (unsigned int)x86_pmu.events_maskl;
2567 cap->events_mask_len = x86_pmu.events_mask_len;
2568}
2569EXPORT_SYMBOL_GPL(perf_get_x86_pmu_capability);