blob: aab2e1ce9dee0526d392a428d156b72542b88278 [file] [log] [blame]
Ingo Molnar241771e2008-12-03 10:39:53 +01001/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002 * Performance events x86 architecture code
Ingo Molnar241771e2008-12-03 10:39:53 +01003 *
Ingo Molnar98144512009-04-29 14:52:50 +02004 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2009 Jaswinder Singh Rajput
7 * Copyright (C) 2009 Advanced Micro Devices, Inc., Robert Richter
8 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Markus Metzger30dd5682009-07-21 15:56:48 +02009 * Copyright (C) 2009 Intel Corporation, <markus.t.metzger@intel.com>
Stephane Eranian1da53e02010-01-18 10:58:01 +020010 * Copyright (C) 2009 Google, Inc., Stephane Eranian
Ingo Molnar241771e2008-12-03 10:39:53 +010011 *
12 * For licencing details see kernel-base/COPYING
13 */
14
Ingo Molnarcdd6c482009-09-21 12:02:48 +020015#include <linux/perf_event.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010016#include <linux/capability.h>
17#include <linux/notifier.h>
18#include <linux/hardirq.h>
19#include <linux/kprobes.h>
Thomas Gleixner4ac13292008-12-09 21:43:39 +010020#include <linux/module.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010021#include <linux/kdebug.h>
22#include <linux/sched.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020023#include <linux/uaccess.h>
Peter Zijlstra74193ef2009-06-15 13:07:24 +020024#include <linux/highmem.h>
Markus Metzger30dd5682009-07-21 15:56:48 +020025#include <linux/cpu.h>
Peter Zijlstra272d30b2010-01-22 16:32:17 +010026#include <linux/bitops.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010027
Ingo Molnar241771e2008-12-03 10:39:53 +010028#include <asm/apic.h>
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +020029#include <asm/stacktrace.h>
Peter Zijlstra4e935e42009-03-30 19:07:16 +020030#include <asm/nmi.h>
Ingo Molnar241771e2008-12-03 10:39:53 +010031
Ingo Molnarcdd6c482009-09-21 12:02:48 +020032static u64 perf_event_mask __read_mostly;
Ingo Molnar703e9372008-12-17 10:51:15 +010033
Ingo Molnarcdd6c482009-09-21 12:02:48 +020034/* The maximal number of PEBS events: */
35#define MAX_PEBS_EVENTS 4
Markus Metzger30dd5682009-07-21 15:56:48 +020036
37/* The size of a BTS record in bytes: */
38#define BTS_RECORD_SIZE 24
39
40/* The size of a per-cpu BTS buffer in bytes: */
Markus Metzger5622f292009-09-15 13:00:23 +020041#define BTS_BUFFER_SIZE (BTS_RECORD_SIZE * 2048)
Markus Metzger30dd5682009-07-21 15:56:48 +020042
43/* The BTS overflow threshold in bytes from the end of the buffer: */
Markus Metzger5622f292009-09-15 13:00:23 +020044#define BTS_OVFL_TH (BTS_RECORD_SIZE * 128)
Markus Metzger30dd5682009-07-21 15:56:48 +020045
46
47/*
48 * Bits in the debugctlmsr controlling branch tracing.
49 */
50#define X86_DEBUGCTL_TR (1 << 6)
51#define X86_DEBUGCTL_BTS (1 << 7)
52#define X86_DEBUGCTL_BTINT (1 << 8)
53#define X86_DEBUGCTL_BTS_OFF_OS (1 << 9)
54#define X86_DEBUGCTL_BTS_OFF_USR (1 << 10)
55
56/*
57 * A debug store configuration.
58 *
59 * We only support architectures that use 64bit fields.
60 */
61struct debug_store {
62 u64 bts_buffer_base;
63 u64 bts_index;
64 u64 bts_absolute_maximum;
65 u64 bts_interrupt_threshold;
66 u64 pebs_buffer_base;
67 u64 pebs_index;
68 u64 pebs_absolute_maximum;
69 u64 pebs_interrupt_threshold;
Ingo Molnarcdd6c482009-09-21 12:02:48 +020070 u64 pebs_event_reset[MAX_PEBS_EVENTS];
Markus Metzger30dd5682009-07-21 15:56:48 +020071};
72
Stephane Eranian1da53e02010-01-18 10:58:01 +020073struct event_constraint {
Peter Zijlstrac91e0f52010-01-22 15:25:59 +010074 union {
75 unsigned long idxmsk[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
76 u64 idxmsk64[1];
77 };
Stephane Eranian1da53e02010-01-18 10:58:01 +020078 int code;
79 int cmask;
Peter Zijlstra272d30b2010-01-22 16:32:17 +010080 int weight;
Stephane Eranian1da53e02010-01-18 10:58:01 +020081};
82
Stephane Eranian38331f62010-02-08 17:17:01 +020083struct amd_nb {
84 int nb_id; /* NorthBridge id */
85 int refcnt; /* reference count */
86 struct perf_event *owners[X86_PMC_IDX_MAX];
87 struct event_constraint event_constraints[X86_PMC_IDX_MAX];
88};
89
Ingo Molnarcdd6c482009-09-21 12:02:48 +020090struct cpu_hw_events {
Stephane Eranian1da53e02010-01-18 10:58:01 +020091 struct perf_event *events[X86_PMC_IDX_MAX]; /* in counter order */
Robert Richter43f62012009-04-29 16:55:56 +020092 unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Mike Galbraith4b39fd92009-01-23 14:36:16 +010093 unsigned long interrupts;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +010094 int enabled;
Markus Metzger30dd5682009-07-21 15:56:48 +020095 struct debug_store *ds;
Stephane Eranian1da53e02010-01-18 10:58:01 +020096
97 int n_events;
98 int n_added;
99 int assign[X86_PMC_IDX_MAX]; /* event to counter assignment */
Stephane Eranian447a1942010-02-01 14:50:01 +0200100 u64 tags[X86_PMC_IDX_MAX];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200101 struct perf_event *event_list[X86_PMC_IDX_MAX]; /* in enabled order */
Stephane Eranian38331f62010-02-08 17:17:01 +0200102 struct amd_nb *amd_nb;
Ingo Molnar241771e2008-12-03 10:39:53 +0100103};
104
Peter Zijlstrafce877e2010-01-29 13:25:12 +0100105#define __EVENT_CONSTRAINT(c, n, m, w) {\
Peter Zijlstrac91e0f52010-01-22 15:25:59 +0100106 { .idxmsk64[0] = (n) }, \
107 .code = (c), \
108 .cmask = (m), \
Peter Zijlstrafce877e2010-01-29 13:25:12 +0100109 .weight = (w), \
Peter Zijlstrac91e0f52010-01-22 15:25:59 +0100110}
Stephane Eranianb6900812009-10-06 16:42:09 +0200111
Peter Zijlstrafce877e2010-01-29 13:25:12 +0100112#define EVENT_CONSTRAINT(c, n, m) \
113 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n))
114
Peter Zijlstraed8777f2010-01-27 23:07:46 +0100115#define INTEL_EVENT_CONSTRAINT(c, n) \
116 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVTSEL_MASK)
Peter Zijlstra8433be12010-01-22 15:38:26 +0100117
Peter Zijlstraed8777f2010-01-27 23:07:46 +0100118#define FIXED_EVENT_CONSTRAINT(c, n) \
119 EVENT_CONSTRAINT(c, n, INTEL_ARCH_FIXED_MASK)
Peter Zijlstra8433be12010-01-22 15:38:26 +0100120
Peter Zijlstraed8777f2010-01-27 23:07:46 +0100121#define EVENT_CONSTRAINT_END \
122 EVENT_CONSTRAINT(0, 0, 0)
123
124#define for_each_event_constraint(e, c) \
125 for ((e) = (c); (e)->cmask; (e)++)
Stephane Eranianb6900812009-10-06 16:42:09 +0200126
Ingo Molnar241771e2008-12-03 10:39:53 +0100127/*
Robert Richter5f4ec282009-04-29 12:47:04 +0200128 * struct x86_pmu - generic x86 pmu
Ingo Molnar241771e2008-12-03 10:39:53 +0100129 */
Robert Richter5f4ec282009-04-29 12:47:04 +0200130struct x86_pmu {
Robert Richterfaa28ae2009-04-29 12:47:13 +0200131 const char *name;
132 int version;
Yong Wanga3288102009-06-03 13:12:55 +0800133 int (*handle_irq)(struct pt_regs *);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200134 void (*disable_all)(void);
135 void (*enable_all)(void);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200136 void (*enable)(struct hw_perf_event *, int);
137 void (*disable)(struct hw_perf_event *, int);
Jaswinder Singh Rajput169e41e2009-02-28 18:37:49 +0530138 unsigned eventsel;
139 unsigned perfctr;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100140 u64 (*event_map)(int);
141 u64 (*raw_event)(u64);
Jaswinder Singh Rajput169e41e2009-02-28 18:37:49 +0530142 int max_events;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200143 int num_events;
144 int num_events_fixed;
145 int event_bits;
146 u64 event_mask;
Ingo Molnar04da8a42009-08-11 10:40:08 +0200147 int apic;
Robert Richterc619b8f2009-04-29 12:47:23 +0200148 u64 max_period;
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200149 u64 intel_ctrl;
Markus Metzger30dd5682009-07-21 15:56:48 +0200150 void (*enable_bts)(u64 config);
151 void (*disable_bts)(void);
Peter Zijlstra63b14642010-01-22 16:32:17 +0100152
153 struct event_constraint *
154 (*get_event_constraints)(struct cpu_hw_events *cpuc,
155 struct perf_event *event);
156
Peter Zijlstrac91e0f52010-01-22 15:25:59 +0100157 void (*put_event_constraints)(struct cpu_hw_events *cpuc,
158 struct perf_event *event);
Peter Zijlstra63b14642010-01-22 16:32:17 +0100159 struct event_constraint *event_constraints;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530160};
161
Robert Richter4a06bd82009-04-29 12:47:11 +0200162static struct x86_pmu x86_pmu __read_mostly;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530163
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200164static DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100165 .enabled = 1,
166};
Ingo Molnar241771e2008-12-03 10:39:53 +0100167
Stephane Eranian1da53e02010-01-18 10:58:01 +0200168static int x86_perf_event_set_period(struct perf_event *event,
169 struct hw_perf_event *hwc, int idx);
Stephane Eranianb6900812009-10-06 16:42:09 +0200170
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530171/*
Ingo Molnardfc65092009-09-21 11:31:35 +0200172 * Generalized hw caching related hw_event table, filled
Ingo Molnar8326f442009-06-05 20:22:46 +0200173 * in on a per model basis. A value of 0 means
Ingo Molnardfc65092009-09-21 11:31:35 +0200174 * 'not supported', -1 means 'hw_event makes no sense on
175 * this CPU', any other value means the raw hw_event
Ingo Molnar8326f442009-06-05 20:22:46 +0200176 * ID.
177 */
178
179#define C(x) PERF_COUNT_HW_CACHE_##x
180
181static u64 __read_mostly hw_cache_event_ids
182 [PERF_COUNT_HW_CACHE_MAX]
183 [PERF_COUNT_HW_CACHE_OP_MAX]
184 [PERF_COUNT_HW_CACHE_RESULT_MAX];
185
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530186/*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200187 * Propagate event elapsed time into the generic event.
188 * Can only be executed on the CPU where the event is active.
Ingo Molnaree060942008-12-13 09:00:03 +0100189 * Returns the delta events processed.
190 */
Robert Richter4b7bfd02009-04-29 12:47:22 +0200191static u64
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200192x86_perf_event_update(struct perf_event *event,
193 struct hw_perf_event *hwc, int idx)
Ingo Molnaree060942008-12-13 09:00:03 +0100194{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200195 int shift = 64 - x86_pmu.event_bits;
Peter Zijlstraec3232b2009-05-13 09:45:19 +0200196 u64 prev_raw_count, new_raw_count;
197 s64 delta;
Ingo Molnaree060942008-12-13 09:00:03 +0100198
Markus Metzger30dd5682009-07-21 15:56:48 +0200199 if (idx == X86_PMC_IDX_FIXED_BTS)
200 return 0;
201
Ingo Molnaree060942008-12-13 09:00:03 +0100202 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200203 * Careful: an NMI might modify the previous event value.
Ingo Molnaree060942008-12-13 09:00:03 +0100204 *
205 * Our tactic to handle this is to first atomically read and
206 * exchange a new raw count - then add that new-prev delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200207 * count to the generic event atomically:
Ingo Molnaree060942008-12-13 09:00:03 +0100208 */
209again:
210 prev_raw_count = atomic64_read(&hwc->prev_count);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200211 rdmsrl(hwc->event_base + idx, new_raw_count);
Ingo Molnaree060942008-12-13 09:00:03 +0100212
213 if (atomic64_cmpxchg(&hwc->prev_count, prev_raw_count,
214 new_raw_count) != prev_raw_count)
215 goto again;
216
217 /*
218 * Now we have the new raw value and have updated the prev
219 * timestamp already. We can now calculate the elapsed delta
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200220 * (event-)time and add that to the generic event.
Ingo Molnaree060942008-12-13 09:00:03 +0100221 *
222 * Careful, not all hw sign-extends above the physical width
Peter Zijlstraec3232b2009-05-13 09:45:19 +0200223 * of the count.
Ingo Molnaree060942008-12-13 09:00:03 +0100224 */
Peter Zijlstraec3232b2009-05-13 09:45:19 +0200225 delta = (new_raw_count << shift) - (prev_raw_count << shift);
226 delta >>= shift;
Ingo Molnaree060942008-12-13 09:00:03 +0100227
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200228 atomic64_add(delta, &event->count);
Ingo Molnaree060942008-12-13 09:00:03 +0100229 atomic64_sub(delta, &hwc->period_left);
Robert Richter4b7bfd02009-04-29 12:47:22 +0200230
231 return new_raw_count;
Ingo Molnaree060942008-12-13 09:00:03 +0100232}
233
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200234static atomic_t active_events;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200235static DEFINE_MUTEX(pmc_reserve_mutex);
236
237static bool reserve_pmc_hardware(void)
238{
Ingo Molnar04da8a42009-08-11 10:40:08 +0200239#ifdef CONFIG_X86_LOCAL_APIC
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200240 int i;
241
242 if (nmi_watchdog == NMI_LOCAL_APIC)
243 disable_lapic_nmi_watchdog();
244
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200245 for (i = 0; i < x86_pmu.num_events; i++) {
Robert Richter4a06bd82009-04-29 12:47:11 +0200246 if (!reserve_perfctr_nmi(x86_pmu.perfctr + i))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200247 goto perfctr_fail;
248 }
249
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200250 for (i = 0; i < x86_pmu.num_events; i++) {
Robert Richter4a06bd82009-04-29 12:47:11 +0200251 if (!reserve_evntsel_nmi(x86_pmu.eventsel + i))
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200252 goto eventsel_fail;
253 }
Ingo Molnar04da8a42009-08-11 10:40:08 +0200254#endif
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200255
256 return true;
257
Ingo Molnar04da8a42009-08-11 10:40:08 +0200258#ifdef CONFIG_X86_LOCAL_APIC
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200259eventsel_fail:
260 for (i--; i >= 0; i--)
Robert Richter4a06bd82009-04-29 12:47:11 +0200261 release_evntsel_nmi(x86_pmu.eventsel + i);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200262
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200263 i = x86_pmu.num_events;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200264
265perfctr_fail:
266 for (i--; i >= 0; i--)
Robert Richter4a06bd82009-04-29 12:47:11 +0200267 release_perfctr_nmi(x86_pmu.perfctr + i);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200268
269 if (nmi_watchdog == NMI_LOCAL_APIC)
270 enable_lapic_nmi_watchdog();
271
272 return false;
Ingo Molnar04da8a42009-08-11 10:40:08 +0200273#endif
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200274}
275
276static void release_pmc_hardware(void)
277{
Ingo Molnar04da8a42009-08-11 10:40:08 +0200278#ifdef CONFIG_X86_LOCAL_APIC
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200279 int i;
280
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200281 for (i = 0; i < x86_pmu.num_events; i++) {
Robert Richter4a06bd82009-04-29 12:47:11 +0200282 release_perfctr_nmi(x86_pmu.perfctr + i);
283 release_evntsel_nmi(x86_pmu.eventsel + i);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200284 }
285
286 if (nmi_watchdog == NMI_LOCAL_APIC)
287 enable_lapic_nmi_watchdog();
Ingo Molnar04da8a42009-08-11 10:40:08 +0200288#endif
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200289}
290
Markus Metzger30dd5682009-07-21 15:56:48 +0200291static inline bool bts_available(void)
292{
293 return x86_pmu.enable_bts != NULL;
294}
295
296static inline void init_debug_store_on_cpu(int cpu)
297{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200298 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
Markus Metzger30dd5682009-07-21 15:56:48 +0200299
300 if (!ds)
301 return;
302
303 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA,
markus.t.metzger@intel.com596da172009-09-02 16:04:47 +0200304 (u32)((u64)(unsigned long)ds),
305 (u32)((u64)(unsigned long)ds >> 32));
Markus Metzger30dd5682009-07-21 15:56:48 +0200306}
307
308static inline void fini_debug_store_on_cpu(int cpu)
309{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200310 if (!per_cpu(cpu_hw_events, cpu).ds)
Markus Metzger30dd5682009-07-21 15:56:48 +0200311 return;
312
313 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0);
314}
315
316static void release_bts_hardware(void)
317{
318 int cpu;
319
320 if (!bts_available())
321 return;
322
323 get_online_cpus();
324
325 for_each_online_cpu(cpu)
326 fini_debug_store_on_cpu(cpu);
327
328 for_each_possible_cpu(cpu) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200329 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
Markus Metzger30dd5682009-07-21 15:56:48 +0200330
331 if (!ds)
332 continue;
333
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200334 per_cpu(cpu_hw_events, cpu).ds = NULL;
Markus Metzger30dd5682009-07-21 15:56:48 +0200335
markus.t.metzger@intel.com596da172009-09-02 16:04:47 +0200336 kfree((void *)(unsigned long)ds->bts_buffer_base);
Markus Metzger30dd5682009-07-21 15:56:48 +0200337 kfree(ds);
338 }
339
340 put_online_cpus();
341}
342
343static int reserve_bts_hardware(void)
344{
345 int cpu, err = 0;
346
347 if (!bts_available())
markus.t.metzger@intel.com747b50a2009-09-02 16:04:46 +0200348 return 0;
Markus Metzger30dd5682009-07-21 15:56:48 +0200349
350 get_online_cpus();
351
352 for_each_possible_cpu(cpu) {
353 struct debug_store *ds;
354 void *buffer;
355
356 err = -ENOMEM;
357 buffer = kzalloc(BTS_BUFFER_SIZE, GFP_KERNEL);
358 if (unlikely(!buffer))
359 break;
360
361 ds = kzalloc(sizeof(*ds), GFP_KERNEL);
362 if (unlikely(!ds)) {
363 kfree(buffer);
364 break;
365 }
366
markus.t.metzger@intel.com596da172009-09-02 16:04:47 +0200367 ds->bts_buffer_base = (u64)(unsigned long)buffer;
Markus Metzger30dd5682009-07-21 15:56:48 +0200368 ds->bts_index = ds->bts_buffer_base;
369 ds->bts_absolute_maximum =
370 ds->bts_buffer_base + BTS_BUFFER_SIZE;
371 ds->bts_interrupt_threshold =
372 ds->bts_absolute_maximum - BTS_OVFL_TH;
373
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200374 per_cpu(cpu_hw_events, cpu).ds = ds;
Markus Metzger30dd5682009-07-21 15:56:48 +0200375 err = 0;
376 }
377
378 if (err)
379 release_bts_hardware();
380 else {
381 for_each_online_cpu(cpu)
382 init_debug_store_on_cpu(cpu);
383 }
384
385 put_online_cpus();
386
387 return err;
388}
389
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200390static void hw_perf_event_destroy(struct perf_event *event)
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200391{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200392 if (atomic_dec_and_mutex_lock(&active_events, &pmc_reserve_mutex)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200393 release_pmc_hardware();
Markus Metzger30dd5682009-07-21 15:56:48 +0200394 release_bts_hardware();
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200395 mutex_unlock(&pmc_reserve_mutex);
396 }
397}
398
Robert Richter85cf9db2009-04-29 12:47:20 +0200399static inline int x86_pmu_initialized(void)
400{
401 return x86_pmu.handle_irq != NULL;
402}
403
Ingo Molnar8326f442009-06-05 20:22:46 +0200404static inline int
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200405set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event_attr *attr)
Ingo Molnar8326f442009-06-05 20:22:46 +0200406{
407 unsigned int cache_type, cache_op, cache_result;
408 u64 config, val;
409
410 config = attr->config;
411
412 cache_type = (config >> 0) & 0xff;
413 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
414 return -EINVAL;
415
416 cache_op = (config >> 8) & 0xff;
417 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
418 return -EINVAL;
419
420 cache_result = (config >> 16) & 0xff;
421 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
422 return -EINVAL;
423
424 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
425
426 if (val == 0)
427 return -ENOENT;
428
429 if (val == -1)
430 return -EINVAL;
431
432 hwc->config |= val;
433
434 return 0;
435}
436
Ingo Molnaree060942008-12-13 09:00:03 +0100437/*
Peter Zijlstra0d486962009-06-02 19:22:16 +0200438 * Setup the hardware configuration for a given attr_type
Ingo Molnar241771e2008-12-03 10:39:53 +0100439 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200440static int __hw_perf_event_init(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +0100441{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200442 struct perf_event_attr *attr = &event->attr;
443 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstra9c74fb52009-07-08 10:21:41 +0200444 u64 config;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200445 int err;
Ingo Molnar241771e2008-12-03 10:39:53 +0100446
Robert Richter85cf9db2009-04-29 12:47:20 +0200447 if (!x86_pmu_initialized())
448 return -ENODEV;
Ingo Molnar241771e2008-12-03 10:39:53 +0100449
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200450 err = 0;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200451 if (!atomic_inc_not_zero(&active_events)) {
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200452 mutex_lock(&pmc_reserve_mutex);
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200453 if (atomic_read(&active_events) == 0) {
Markus Metzger30dd5682009-07-21 15:56:48 +0200454 if (!reserve_pmc_hardware())
455 err = -EBUSY;
456 else
markus.t.metzger@intel.com747b50a2009-09-02 16:04:46 +0200457 err = reserve_bts_hardware();
Markus Metzger30dd5682009-07-21 15:56:48 +0200458 }
459 if (!err)
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200460 atomic_inc(&active_events);
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200461 mutex_unlock(&pmc_reserve_mutex);
462 }
463 if (err)
464 return err;
465
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200466 event->destroy = hw_perf_event_destroy;
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +0200467
Ingo Molnar241771e2008-12-03 10:39:53 +0100468 /*
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100469 * Generate PMC IRQs:
Ingo Molnar241771e2008-12-03 10:39:53 +0100470 * (keep 'enabled' bit clear for now)
471 */
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100472 hwc->config = ARCH_PERFMON_EVENTSEL_INT;
Ingo Molnar241771e2008-12-03 10:39:53 +0100473
Stephane Eranianb6900812009-10-06 16:42:09 +0200474 hwc->idx = -1;
Stephane Eranian447a1942010-02-01 14:50:01 +0200475 hwc->last_cpu = -1;
476 hwc->last_tag = ~0ULL;
Stephane Eranianb6900812009-10-06 16:42:09 +0200477
Ingo Molnar241771e2008-12-03 10:39:53 +0100478 /*
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100479 * Count user and OS events unless requested not to.
480 */
Peter Zijlstra0d486962009-06-02 19:22:16 +0200481 if (!attr->exclude_user)
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100482 hwc->config |= ARCH_PERFMON_EVENTSEL_USR;
Peter Zijlstra0d486962009-06-02 19:22:16 +0200483 if (!attr->exclude_kernel)
Paul Mackerras0475f9e2009-02-11 14:35:35 +1100484 hwc->config |= ARCH_PERFMON_EVENTSEL_OS;
485
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +0200486 if (!hwc->sample_period) {
Peter Zijlstrab23f3322009-06-02 15:13:03 +0200487 hwc->sample_period = x86_pmu.max_period;
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200488 hwc->last_period = hwc->sample_period;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +0200489 atomic64_set(&hwc->period_left, hwc->sample_period);
Ingo Molnar04da8a42009-08-11 10:40:08 +0200490 } else {
491 /*
492 * If we have a PMU initialized but no APIC
493 * interrupts, we cannot sample hardware
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200494 * events (user-space has to fall back and
495 * sample via a hrtimer based software event):
Ingo Molnar04da8a42009-08-11 10:40:08 +0200496 */
497 if (!x86_pmu.apic)
498 return -EOPNOTSUPP;
Peter Zijlstrabd2b5b12009-06-10 13:40:57 +0200499 }
Ingo Molnard2517a42009-05-17 10:04:45 +0200500
Ingo Molnar241771e2008-12-03 10:39:53 +0100501 /*
Ingo Molnardfc65092009-09-21 11:31:35 +0200502 * Raw hw_event type provide the config in the hw_event structure
Ingo Molnar241771e2008-12-03 10:39:53 +0100503 */
Ingo Molnara21ca2c2009-06-06 09:58:57 +0200504 if (attr->type == PERF_TYPE_RAW) {
505 hwc->config |= x86_pmu.raw_event(attr->config);
Peter Zijlstra320ebf02010-03-02 12:35:37 +0100506 if ((hwc->config & ARCH_PERFMON_EVENTSEL_ANY) &&
507 perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
508 return -EACCES;
Ingo Molnar8326f442009-06-05 20:22:46 +0200509 return 0;
Ingo Molnar241771e2008-12-03 10:39:53 +0100510 }
Ingo Molnar241771e2008-12-03 10:39:53 +0100511
Ingo Molnar8326f442009-06-05 20:22:46 +0200512 if (attr->type == PERF_TYPE_HW_CACHE)
513 return set_ext_hw_attr(hwc, attr);
514
515 if (attr->config >= x86_pmu.max_events)
516 return -EINVAL;
Peter Zijlstra9c74fb52009-07-08 10:21:41 +0200517
Ingo Molnar8326f442009-06-05 20:22:46 +0200518 /*
519 * The generic map:
520 */
Peter Zijlstra9c74fb52009-07-08 10:21:41 +0200521 config = x86_pmu.event_map(attr->config);
522
523 if (config == 0)
524 return -ENOENT;
525
526 if (config == -1LL)
527 return -EINVAL;
528
markus.t.metzger@intel.com747b50a2009-09-02 16:04:46 +0200529 /*
530 * Branch tracing:
531 */
532 if ((attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
markus.t.metzger@intel.com16531922009-09-02 16:04:48 +0200533 (hwc->sample_period == 1)) {
534 /* BTS is not supported by this architecture. */
535 if (!bts_available())
536 return -EOPNOTSUPP;
537
538 /* BTS is currently only allowed for user-mode. */
539 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS)
540 return -EOPNOTSUPP;
541 }
markus.t.metzger@intel.com747b50a2009-09-02 16:04:46 +0200542
Peter Zijlstra9c74fb52009-07-08 10:21:41 +0200543 hwc->config |= config;
Peter Zijlstra4e935e42009-03-30 19:07:16 +0200544
Ingo Molnar241771e2008-12-03 10:39:53 +0100545 return 0;
546}
547
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100548static void x86_pmu_disable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530549{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200550 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200551 int idx;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100552
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200553 for (idx = 0; idx < x86_pmu.num_events; idx++) {
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100554 u64 val;
555
Robert Richter43f62012009-04-29 16:55:56 +0200556 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200557 continue;
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100558 rdmsrl(x86_pmu.eventsel + idx, val);
Robert Richterbb1165d2010-03-01 14:21:23 +0100559 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
Robert Richter4295ee62009-04-29 12:47:01 +0200560 continue;
Robert Richterbb1165d2010-03-01 14:21:23 +0100561 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100562 wrmsrl(x86_pmu.eventsel + idx, val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530563 }
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530564}
565
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200566void hw_perf_disable(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530567{
Stephane Eranian1da53e02010-01-18 10:58:01 +0200568 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
569
Robert Richter85cf9db2009-04-29 12:47:20 +0200570 if (!x86_pmu_initialized())
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200571 return;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200572
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100573 if (!cpuc->enabled)
574 return;
575
576 cpuc->n_added = 0;
577 cpuc->enabled = 0;
578 barrier();
Stephane Eranian1da53e02010-01-18 10:58:01 +0200579
580 x86_pmu.disable_all();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +0530581}
Ingo Molnar241771e2008-12-03 10:39:53 +0100582
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100583static void x86_pmu_enable_all(void)
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530584{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200585 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530586 int idx;
587
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200588 for (idx = 0; idx < x86_pmu.num_events; idx++) {
589 struct perf_event *event = cpuc->events[idx];
Robert Richter4295ee62009-04-29 12:47:01 +0200590 u64 val;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100591
Robert Richter43f62012009-04-29 16:55:56 +0200592 if (!test_bit(idx, cpuc->active_mask))
Robert Richter4295ee62009-04-29 12:47:01 +0200593 continue;
Peter Zijlstra984b8382009-07-10 09:59:56 +0200594
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200595 val = event->hw.config;
Robert Richterbb1165d2010-03-01 14:21:23 +0100596 val |= ARCH_PERFMON_EVENTSEL_ENABLE;
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100597 wrmsrl(x86_pmu.eventsel + idx, val);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +0530598 }
599}
600
Stephane Eranian1da53e02010-01-18 10:58:01 +0200601static const struct pmu pmu;
602
603static inline int is_x86_event(struct perf_event *event)
604{
605 return event->pmu == &pmu;
606}
607
608static int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
609{
Peter Zijlstra63b14642010-01-22 16:32:17 +0100610 struct event_constraint *c, *constraints[X86_PMC_IDX_MAX];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200611 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100612 int i, j, w, wmax, num = 0;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200613 struct hw_perf_event *hwc;
614
615 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
616
617 for (i = 0; i < n; i++) {
Peter Zijlstra63b14642010-01-22 16:32:17 +0100618 constraints[i] =
619 x86_pmu.get_event_constraints(cpuc, cpuc->event_list[i]);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200620 }
621
622 /*
Stephane Eranian81130702010-01-21 17:39:01 +0200623 * fastpath, try to reuse previous register
624 */
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100625 for (i = 0; i < n; i++) {
Stephane Eranian81130702010-01-21 17:39:01 +0200626 hwc = &cpuc->event_list[i]->hw;
Peter Zijlstra81269a02010-01-22 14:55:22 +0100627 c = constraints[i];
Stephane Eranian81130702010-01-21 17:39:01 +0200628
629 /* never assigned */
630 if (hwc->idx == -1)
631 break;
632
633 /* constraint still honored */
Peter Zijlstra63b14642010-01-22 16:32:17 +0100634 if (!test_bit(hwc->idx, c->idxmsk))
Stephane Eranian81130702010-01-21 17:39:01 +0200635 break;
636
637 /* not already used */
638 if (test_bit(hwc->idx, used_mask))
639 break;
640
Stephane Eranian81130702010-01-21 17:39:01 +0200641 set_bit(hwc->idx, used_mask);
642 if (assign)
643 assign[i] = hwc->idx;
644 }
Peter Zijlstrac933c1a2010-01-22 16:40:12 +0100645 if (i == n)
Stephane Eranian81130702010-01-21 17:39:01 +0200646 goto done;
647
648 /*
649 * begin slow path
650 */
651
652 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
653
654 /*
Stephane Eranian1da53e02010-01-18 10:58:01 +0200655 * weight = number of possible counters
656 *
657 * 1 = most constrained, only works on one counter
658 * wmax = least constrained, works on any counter
659 *
660 * assign events to counters starting with most
661 * constrained events.
662 */
663 wmax = x86_pmu.num_events;
664
665 /*
666 * when fixed event counters are present,
667 * wmax is incremented by 1 to account
668 * for one more choice
669 */
670 if (x86_pmu.num_events_fixed)
671 wmax++;
672
Stephane Eranian81130702010-01-21 17:39:01 +0200673 for (w = 1, num = n; num && w <= wmax; w++) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200674 /* for each event */
Stephane Eranian81130702010-01-21 17:39:01 +0200675 for (i = 0; num && i < n; i++) {
Peter Zijlstra81269a02010-01-22 14:55:22 +0100676 c = constraints[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200677 hwc = &cpuc->event_list[i]->hw;
678
Peter Zijlstra272d30b2010-01-22 16:32:17 +0100679 if (c->weight != w)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200680 continue;
681
Peter Zijlstra63b14642010-01-22 16:32:17 +0100682 for_each_bit(j, c->idxmsk, X86_PMC_IDX_MAX) {
Stephane Eranian1da53e02010-01-18 10:58:01 +0200683 if (!test_bit(j, used_mask))
684 break;
685 }
686
687 if (j == X86_PMC_IDX_MAX)
688 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +0200689
Stephane Eranian81130702010-01-21 17:39:01 +0200690 set_bit(j, used_mask);
691
Stephane Eranian1da53e02010-01-18 10:58:01 +0200692 if (assign)
693 assign[i] = j;
694 num--;
695 }
696 }
Stephane Eranian81130702010-01-21 17:39:01 +0200697done:
Stephane Eranian1da53e02010-01-18 10:58:01 +0200698 /*
699 * scheduling failed or is just a simulation,
700 * free resources if necessary
701 */
702 if (!assign || num) {
703 for (i = 0; i < n; i++) {
704 if (x86_pmu.put_event_constraints)
705 x86_pmu.put_event_constraints(cpuc, cpuc->event_list[i]);
706 }
707 }
708 return num ? -ENOSPC : 0;
709}
710
711/*
712 * dogrp: true if must collect siblings events (group)
713 * returns total number of events and error code
714 */
715static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
716{
717 struct perf_event *event;
718 int n, max_count;
719
720 max_count = x86_pmu.num_events + x86_pmu.num_events_fixed;
721
722 /* current number of events already accepted */
723 n = cpuc->n_events;
724
725 if (is_x86_event(leader)) {
726 if (n >= max_count)
727 return -ENOSPC;
728 cpuc->event_list[n] = leader;
729 n++;
730 }
731 if (!dogrp)
732 return n;
733
734 list_for_each_entry(event, &leader->sibling_list, group_entry) {
735 if (!is_x86_event(event) ||
Stephane Eranian81130702010-01-21 17:39:01 +0200736 event->state <= PERF_EVENT_STATE_OFF)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200737 continue;
738
739 if (n >= max_count)
740 return -ENOSPC;
741
742 cpuc->event_list[n] = event;
743 n++;
744 }
745 return n;
746}
747
Stephane Eranian1da53e02010-01-18 10:58:01 +0200748static inline void x86_assign_hw_event(struct perf_event *event,
Stephane Eranian447a1942010-02-01 14:50:01 +0200749 struct cpu_hw_events *cpuc, int i)
Stephane Eranian1da53e02010-01-18 10:58:01 +0200750{
Stephane Eranian447a1942010-02-01 14:50:01 +0200751 struct hw_perf_event *hwc = &event->hw;
752
753 hwc->idx = cpuc->assign[i];
754 hwc->last_cpu = smp_processor_id();
755 hwc->last_tag = ++cpuc->tags[i];
Stephane Eranian1da53e02010-01-18 10:58:01 +0200756
757 if (hwc->idx == X86_PMC_IDX_FIXED_BTS) {
758 hwc->config_base = 0;
759 hwc->event_base = 0;
760 } else if (hwc->idx >= X86_PMC_IDX_FIXED) {
761 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
762 /*
763 * We set it so that event_base + idx in wrmsr/rdmsr maps to
764 * MSR_ARCH_PERFMON_FIXED_CTR0 ... CTR2:
765 */
766 hwc->event_base =
767 MSR_ARCH_PERFMON_FIXED_CTR0 - X86_PMC_IDX_FIXED;
768 } else {
769 hwc->config_base = x86_pmu.eventsel;
770 hwc->event_base = x86_pmu.perfctr;
771 }
772}
773
Stephane Eranian447a1942010-02-01 14:50:01 +0200774static inline int match_prev_assignment(struct hw_perf_event *hwc,
775 struct cpu_hw_events *cpuc,
776 int i)
777{
778 return hwc->idx == cpuc->assign[i] &&
779 hwc->last_cpu == smp_processor_id() &&
780 hwc->last_tag == cpuc->tags[i];
781}
782
Stephane Eraniand76a0812010-02-08 17:06:01 +0200783static void x86_pmu_stop(struct perf_event *event);
Peter Zijlstra2e841872010-01-25 15:58:43 +0100784
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200785void hw_perf_enable(void)
Ingo Molnaree060942008-12-13 09:00:03 +0100786{
Stephane Eranian1da53e02010-01-18 10:58:01 +0200787 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
788 struct perf_event *event;
789 struct hw_perf_event *hwc;
790 int i;
791
Robert Richter85cf9db2009-04-29 12:47:20 +0200792 if (!x86_pmu_initialized())
Ingo Molnar2b9ff0d2008-12-14 18:36:30 +0100793 return;
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100794
795 if (cpuc->enabled)
796 return;
797
Stephane Eranian1da53e02010-01-18 10:58:01 +0200798 if (cpuc->n_added) {
799 /*
800 * apply assignment obtained either from
801 * hw_perf_group_sched_in() or x86_pmu_enable()
802 *
803 * step1: save events moving to new counters
804 * step2: reprogram moved events into new counters
805 */
806 for (i = 0; i < cpuc->n_events; i++) {
807
808 event = cpuc->event_list[i];
809 hwc = &event->hw;
810
Stephane Eranian447a1942010-02-01 14:50:01 +0200811 /*
812 * we can avoid reprogramming counter if:
813 * - assigned same counter as last time
814 * - running on same CPU as last time
815 * - no other event has used the counter since
816 */
817 if (hwc->idx == -1 ||
818 match_prev_assignment(hwc, cpuc, i))
Stephane Eranian1da53e02010-01-18 10:58:01 +0200819 continue;
820
Stephane Eraniand76a0812010-02-08 17:06:01 +0200821 x86_pmu_stop(event);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200822
823 hwc->idx = -1;
824 }
825
826 for (i = 0; i < cpuc->n_events; i++) {
827
828 event = cpuc->event_list[i];
829 hwc = &event->hw;
830
831 if (hwc->idx == -1) {
Stephane Eranian447a1942010-02-01 14:50:01 +0200832 x86_assign_hw_event(event, cpuc, i);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200833 x86_perf_event_set_period(event, hwc, hwc->idx);
834 }
835 /*
836 * need to mark as active because x86_pmu_disable()
Stephane Eranian447a1942010-02-01 14:50:01 +0200837 * clear active_mask and events[] yet it preserves
Stephane Eranian1da53e02010-01-18 10:58:01 +0200838 * idx
839 */
840 set_bit(hwc->idx, cpuc->active_mask);
841 cpuc->events[hwc->idx] = event;
842
843 x86_pmu.enable(hwc, hwc->idx);
844 perf_event_update_userpage(event);
845 }
846 cpuc->n_added = 0;
847 perf_events_lapic_init();
848 }
Peter Zijlstra1a6e21f2010-01-27 23:07:47 +0100849
850 cpuc->enabled = 1;
851 barrier();
852
Peter Zijlstra9e35ad32009-05-13 16:21:38 +0200853 x86_pmu.enable_all();
Ingo Molnaree060942008-12-13 09:00:03 +0100854}
Ingo Molnaree060942008-12-13 09:00:03 +0100855
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100856static inline void __x86_pmu_enable_event(struct hw_perf_event *hwc, int idx)
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100857{
Vince Weaver11d15782009-07-08 17:46:14 -0400858 (void)checking_wrmsrl(hwc->config_base + idx,
Robert Richterbb1165d2010-03-01 14:21:23 +0100859 hwc->config | ARCH_PERFMON_EVENTSEL_ENABLE);
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100860}
861
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200862static inline void x86_pmu_disable_event(struct hw_perf_event *hwc, int idx)
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100863{
Vince Weaver11d15782009-07-08 17:46:14 -0400864 (void)checking_wrmsrl(hwc->config_base + idx, hwc->config);
Peter Zijlstrab0f3f282009-03-05 18:08:27 +0100865}
866
Tejun Heo245b2e72009-06-24 15:13:48 +0900867static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +0100868
Ingo Molnaree060942008-12-13 09:00:03 +0100869/*
870 * Set the next IRQ period, based on the hwc->period_left value.
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200871 * To be called with the event disabled in hw:
Ingo Molnaree060942008-12-13 09:00:03 +0100872 */
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200873static int
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200874x86_perf_event_set_period(struct perf_event *event,
875 struct hw_perf_event *hwc, int idx)
Ingo Molnar241771e2008-12-03 10:39:53 +0100876{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +0100877 s64 left = atomic64_read(&hwc->period_left);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200878 s64 period = hwc->sample_period;
879 int err, ret = 0;
Ingo Molnar241771e2008-12-03 10:39:53 +0100880
Markus Metzger30dd5682009-07-21 15:56:48 +0200881 if (idx == X86_PMC_IDX_FIXED_BTS)
882 return 0;
883
Ingo Molnaree060942008-12-13 09:00:03 +0100884 /*
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200885 * If we are way outside a reasonable range then just skip forward:
Ingo Molnaree060942008-12-13 09:00:03 +0100886 */
887 if (unlikely(left <= -period)) {
888 left = period;
889 atomic64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200890 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200891 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100892 }
893
894 if (unlikely(left <= 0)) {
895 left += period;
896 atomic64_set(&hwc->period_left, left);
Peter Zijlstra9e350de2009-06-10 21:34:59 +0200897 hwc->last_period = period;
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200898 ret = 1;
Ingo Molnaree060942008-12-13 09:00:03 +0100899 }
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200900 /*
Ingo Molnardfc65092009-09-21 11:31:35 +0200901 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
Ingo Molnar1c80f4b2009-05-15 08:25:22 +0200902 */
903 if (unlikely(left < 2))
904 left = 2;
Ingo Molnaree060942008-12-13 09:00:03 +0100905
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200906 if (left > x86_pmu.max_period)
907 left = x86_pmu.max_period;
908
Tejun Heo245b2e72009-06-24 15:13:48 +0900909 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
Ingo Molnaree060942008-12-13 09:00:03 +0100910
911 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200912 * The hw event starts counting from this event offset,
Ingo Molnaree060942008-12-13 09:00:03 +0100913 * mark it to be able to extra future deltas:
914 */
Ingo Molnar2f18d1e2008-12-22 11:10:42 +0100915 atomic64_set(&hwc->prev_count, (u64)-left);
Ingo Molnaree060942008-12-13 09:00:03 +0100916
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200917 err = checking_wrmsrl(hwc->event_base + idx,
918 (u64)(-left) & x86_pmu.event_mask);
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200919
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200920 perf_event_update_userpage(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +0200921
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +0200922 return ret;
Ingo Molnar2f18d1e2008-12-22 11:10:42 +0100923}
924
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100925static void x86_pmu_enable_event(struct hw_perf_event *hwc, int idx)
Robert Richter7c90cc42009-04-29 12:47:18 +0200926{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200927 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Robert Richter7c90cc42009-04-29 12:47:18 +0200928 if (cpuc->enabled)
Peter Zijlstra8c48e442010-01-29 13:25:31 +0100929 __x86_pmu_enable_event(hwc, idx);
Ingo Molnar241771e2008-12-03 10:39:53 +0100930}
931
Ingo Molnaree060942008-12-13 09:00:03 +0100932/*
Stephane Eranian1da53e02010-01-18 10:58:01 +0200933 * activate a single event
934 *
935 * The event is added to the group of enabled events
936 * but only if it can be scehduled with existing events.
937 *
938 * Called with PMU disabled. If successful and return value 1,
939 * then guaranteed to call perf_enable() and hw_perf_enable()
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200940 */
941static int x86_pmu_enable(struct perf_event *event)
942{
943 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +0200944 struct hw_perf_event *hwc;
945 int assign[X86_PMC_IDX_MAX];
946 int n, n0, ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200947
Stephane Eranian1da53e02010-01-18 10:58:01 +0200948 hwc = &event->hw;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +0200949
Stephane Eranian1da53e02010-01-18 10:58:01 +0200950 n0 = cpuc->n_events;
951 n = collect_events(cpuc, event, false);
952 if (n < 0)
953 return n;
Ingo Molnar53b441a2009-05-25 21:41:28 +0200954
Stephane Eranian1da53e02010-01-18 10:58:01 +0200955 ret = x86_schedule_events(cpuc, n, assign);
956 if (ret)
957 return ret;
958 /*
959 * copy new assignment, now we know it is possible
960 * will be used by hw_perf_enable()
961 */
962 memcpy(cpuc->assign, assign, n*sizeof(int));
Ingo Molnar241771e2008-12-03 10:39:53 +0100963
Stephane Eranian1da53e02010-01-18 10:58:01 +0200964 cpuc->n_events = n;
965 cpuc->n_added = n - n0;
Ingo Molnar7e2ae342008-12-09 11:40:46 +0100966
Ingo Molnar95cdd2e2008-12-21 13:50:42 +0100967 return 0;
Ingo Molnar241771e2008-12-03 10:39:53 +0100968}
969
Stephane Eraniand76a0812010-02-08 17:06:01 +0200970static int x86_pmu_start(struct perf_event *event)
971{
972 struct hw_perf_event *hwc = &event->hw;
973
974 if (hwc->idx == -1)
975 return -EAGAIN;
976
977 x86_perf_event_set_period(event, hwc, hwc->idx);
978 x86_pmu.enable(hwc, hwc->idx);
979
980 return 0;
981}
982
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200983static void x86_pmu_unthrottle(struct perf_event *event)
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200984{
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200985 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
986 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200987
988 if (WARN_ON_ONCE(hwc->idx >= X86_PMC_IDX_MAX ||
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200989 cpuc->events[hwc->idx] != event))
Peter Zijlstraa78ac322009-05-25 17:39:05 +0200990 return;
991
992 x86_pmu.enable(hwc, hwc->idx);
993}
994
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200995void perf_event_print_debug(void)
Ingo Molnar241771e2008-12-03 10:39:53 +0100996{
Ingo Molnar2f18d1e2008-12-22 11:10:42 +0100997 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200998 struct cpu_hw_events *cpuc;
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +0200999 unsigned long flags;
Ingo Molnar1e125672008-12-09 12:18:18 +01001000 int cpu, idx;
1001
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001002 if (!x86_pmu.num_events)
Ingo Molnar1e125672008-12-09 12:18:18 +01001003 return;
Ingo Molnar241771e2008-12-03 10:39:53 +01001004
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001005 local_irq_save(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001006
1007 cpu = smp_processor_id();
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001008 cpuc = &per_cpu(cpu_hw_events, cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001009
Robert Richterfaa28ae2009-04-29 12:47:13 +02001010 if (x86_pmu.version >= 2) {
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301011 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1012 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1013 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1014 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
Ingo Molnar241771e2008-12-03 10:39:53 +01001015
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301016 pr_info("\n");
1017 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1018 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1019 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1020 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301021 }
Stephane Eranian1da53e02010-01-18 10:58:01 +02001022 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001023
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001024 for (idx = 0; idx < x86_pmu.num_events; idx++) {
Robert Richter4a06bd82009-04-29 12:47:11 +02001025 rdmsrl(x86_pmu.eventsel + idx, pmc_ctrl);
1026 rdmsrl(x86_pmu.perfctr + idx, pmc_count);
Ingo Molnar241771e2008-12-03 10:39:53 +01001027
Tejun Heo245b2e72009-06-24 15:13:48 +09001028 prev_left = per_cpu(pmc_prev_left[idx], cpu);
Ingo Molnar241771e2008-12-03 10:39:53 +01001029
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301030 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001031 cpu, idx, pmc_ctrl);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301032 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
Ingo Molnar241771e2008-12-03 10:39:53 +01001033 cpu, idx, pmc_count);
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301034 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
Ingo Molnaree060942008-12-13 09:00:03 +01001035 cpu, idx, prev_left);
Ingo Molnar241771e2008-12-03 10:39:53 +01001036 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001037 for (idx = 0; idx < x86_pmu.num_events_fixed; idx++) {
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001038 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1039
Jaswinder Singh Rajputa1ef58f2009-02-28 18:45:39 +05301040 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001041 cpu, idx, pmc_count);
1042 }
Peter Zijlstra5bb9efe2009-05-13 08:12:51 +02001043 local_irq_restore(flags);
Ingo Molnar241771e2008-12-03 10:39:53 +01001044}
1045
Stephane Eraniand76a0812010-02-08 17:06:01 +02001046static void x86_pmu_stop(struct perf_event *event)
Ingo Molnar241771e2008-12-03 10:39:53 +01001047{
Stephane Eraniand76a0812010-02-08 17:06:01 +02001048 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001049 struct hw_perf_event *hwc = &event->hw;
Peter Zijlstra2e841872010-01-25 15:58:43 +01001050 int idx = hwc->idx;
Ingo Molnar241771e2008-12-03 10:39:53 +01001051
Robert Richter09534232009-04-29 12:47:16 +02001052 /*
1053 * Must be done before we disable, otherwise the nmi handler
1054 * could reenable again:
1055 */
Robert Richter43f62012009-04-29 16:55:56 +02001056 clear_bit(idx, cpuc->active_mask);
Robert Richterd4369892009-04-29 12:47:19 +02001057 x86_pmu.disable(hwc, idx);
Ingo Molnar241771e2008-12-03 10:39:53 +01001058
Ingo Molnar2f18d1e2008-12-22 11:10:42 +01001059 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001060 * Drain the remaining delta count out of a event
Ingo Molnaree060942008-12-13 09:00:03 +01001061 * that we are disabling:
1062 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001063 x86_perf_event_update(event, hwc, idx);
Markus Metzger30dd5682009-07-21 15:56:48 +02001064
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001065 cpuc->events[idx] = NULL;
Peter Zijlstra2e841872010-01-25 15:58:43 +01001066}
1067
1068static void x86_pmu_disable(struct perf_event *event)
1069{
1070 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1071 int i;
1072
Stephane Eraniand76a0812010-02-08 17:06:01 +02001073 x86_pmu_stop(event);
Peter Zijlstra194002b2009-06-22 16:35:24 +02001074
Stephane Eranian1da53e02010-01-18 10:58:01 +02001075 for (i = 0; i < cpuc->n_events; i++) {
1076 if (event == cpuc->event_list[i]) {
1077
1078 if (x86_pmu.put_event_constraints)
1079 x86_pmu.put_event_constraints(cpuc, event);
1080
1081 while (++i < cpuc->n_events)
1082 cpuc->event_list[i-1] = cpuc->event_list[i];
1083
1084 --cpuc->n_events;
Peter Zijlstra6c9687a2010-01-25 11:57:25 +01001085 break;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001086 }
1087 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001088 perf_event_update_userpage(event);
Ingo Molnar241771e2008-12-03 10:39:53 +01001089}
1090
Peter Zijlstra8c48e442010-01-29 13:25:31 +01001091static int x86_pmu_handle_irq(struct pt_regs *regs)
Robert Richtera29aa8a2009-04-29 12:47:21 +02001092{
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001093 struct perf_sample_data data;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001094 struct cpu_hw_events *cpuc;
1095 struct perf_event *event;
1096 struct hw_perf_event *hwc;
Vince Weaver11d15782009-07-08 17:46:14 -04001097 int idx, handled = 0;
Ingo Molnar9029a5e2009-05-15 08:26:20 +02001098 u64 val;
1099
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001100 data.addr = 0;
Xiao Guangrong5e855db2009-12-10 17:08:54 +08001101 data.raw = NULL;
Peter Zijlstradf1a1322009-06-10 21:02:22 +02001102
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001103 cpuc = &__get_cpu_var(cpu_hw_events);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001104
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001105 for (idx = 0; idx < x86_pmu.num_events; idx++) {
Robert Richter43f62012009-04-29 16:55:56 +02001106 if (!test_bit(idx, cpuc->active_mask))
Robert Richtera29aa8a2009-04-29 12:47:21 +02001107 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001108
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001109 event = cpuc->events[idx];
1110 hwc = &event->hw;
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001111
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001112 val = x86_perf_event_update(event, hwc, idx);
1113 if (val & (1ULL << (x86_pmu.event_bits - 1)))
Peter Zijlstra48e22d52009-05-25 17:39:04 +02001114 continue;
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001115
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001116 /*
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001117 * event overflow
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001118 */
1119 handled = 1;
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001120 data.period = event->hw.last_period;
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001121
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001122 if (!x86_perf_event_set_period(event, hwc, idx))
Peter Zijlstrae4abb5d2009-06-02 16:08:20 +02001123 continue;
1124
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001125 if (perf_event_overflow(event, 1, &data, regs))
Peter Zijlstra8c48e442010-01-29 13:25:31 +01001126 x86_pmu.disable(hwc, idx);
Robert Richtera29aa8a2009-04-29 12:47:21 +02001127 }
Peter Zijlstra962bf7a2009-05-13 13:21:36 +02001128
Peter Zijlstra9e350de2009-06-10 21:34:59 +02001129 if (handled)
1130 inc_irq_stat(apic_perf_irqs);
1131
Robert Richtera29aa8a2009-04-29 12:47:21 +02001132 return handled;
1133}
Robert Richter39d81ea2009-04-29 12:47:05 +02001134
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001135void smp_perf_pending_interrupt(struct pt_regs *regs)
1136{
1137 irq_enter();
1138 ack_APIC_irq();
1139 inc_irq_stat(apic_pending_irqs);
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001140 perf_event_do_pending();
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001141 irq_exit();
1142}
1143
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001144void set_perf_event_pending(void)
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001145{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001146#ifdef CONFIG_X86_LOCAL_APIC
Peter Zijlstra7d428962009-09-23 11:03:37 +02001147 if (!x86_pmu.apic || !x86_pmu_initialized())
1148 return;
1149
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001150 apic->send_IPI_self(LOCAL_PENDING_VECTOR);
Ingo Molnar04da8a42009-08-11 10:40:08 +02001151#endif
Peter Zijlstrab6276f32009-04-06 11:45:03 +02001152}
1153
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001154void perf_events_lapic_init(void)
Ingo Molnar241771e2008-12-03 10:39:53 +01001155{
Ingo Molnar04da8a42009-08-11 10:40:08 +02001156#ifdef CONFIG_X86_LOCAL_APIC
1157 if (!x86_pmu.apic || !x86_pmu_initialized())
Ingo Molnar241771e2008-12-03 10:39:53 +01001158 return;
Robert Richter85cf9db2009-04-29 12:47:20 +02001159
Ingo Molnar241771e2008-12-03 10:39:53 +01001160 /*
Yong Wangc323d952009-05-29 13:28:35 +08001161 * Always use NMI for PMU
Ingo Molnar241771e2008-12-03 10:39:53 +01001162 */
Yong Wangc323d952009-05-29 13:28:35 +08001163 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar04da8a42009-08-11 10:40:08 +02001164#endif
Ingo Molnar241771e2008-12-03 10:39:53 +01001165}
1166
1167static int __kprobes
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001168perf_event_nmi_handler(struct notifier_block *self,
Ingo Molnar241771e2008-12-03 10:39:53 +01001169 unsigned long cmd, void *__args)
1170{
1171 struct die_args *args = __args;
1172 struct pt_regs *regs;
1173
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001174 if (!atomic_read(&active_events))
Peter Zijlstra63a809a2009-05-01 12:23:17 +02001175 return NOTIFY_DONE;
1176
Peter Zijlstrab0f3f282009-03-05 18:08:27 +01001177 switch (cmd) {
1178 case DIE_NMI:
1179 case DIE_NMI_IPI:
1180 break;
1181
1182 default:
Ingo Molnar241771e2008-12-03 10:39:53 +01001183 return NOTIFY_DONE;
Peter Zijlstrab0f3f282009-03-05 18:08:27 +01001184 }
Ingo Molnar241771e2008-12-03 10:39:53 +01001185
1186 regs = args->regs;
1187
Ingo Molnar04da8a42009-08-11 10:40:08 +02001188#ifdef CONFIG_X86_LOCAL_APIC
Ingo Molnar241771e2008-12-03 10:39:53 +01001189 apic_write(APIC_LVTPC, APIC_DM_NMI);
Ingo Molnar04da8a42009-08-11 10:40:08 +02001190#endif
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001191 /*
1192 * Can't rely on the handled return value to say it was our NMI, two
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001193 * events could trigger 'simultaneously' raising two back-to-back NMIs.
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001194 *
1195 * If the first NMI handles both, the latter will be empty and daze
1196 * the CPU.
1197 */
Yong Wanga3288102009-06-03 13:12:55 +08001198 x86_pmu.handle_irq(regs);
Ingo Molnar241771e2008-12-03 10:39:53 +01001199
Peter Zijlstraa4016a72009-05-14 14:52:17 +02001200 return NOTIFY_STOP;
Ingo Molnar241771e2008-12-03 10:39:53 +01001201}
1202
Peter Zijlstraf22f54f2010-02-26 12:05:05 +01001203static __read_mostly struct notifier_block perf_event_nmi_notifier = {
1204 .notifier_call = perf_event_nmi_handler,
1205 .next = NULL,
1206 .priority = 1
1207};
1208
Peter Zijlstra63b14642010-01-22 16:32:17 +01001209static struct event_constraint unconstrained;
Stephane Eranian38331f62010-02-08 17:17:01 +02001210static struct event_constraint emptyconstraint;
Peter Zijlstra63b14642010-01-22 16:32:17 +01001211
Peter Zijlstra63b14642010-01-22 16:32:17 +01001212static struct event_constraint *
Peter Zijlstraf22f54f2010-02-26 12:05:05 +01001213x86_get_event_constraints(struct cpu_hw_events *cpuc, struct perf_event *event)
Stephane Eranian1da53e02010-01-18 10:58:01 +02001214{
Peter Zijlstra63b14642010-01-22 16:32:17 +01001215 struct event_constraint *c;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001216
Stephane Eranian1da53e02010-01-18 10:58:01 +02001217 if (x86_pmu.event_constraints) {
1218 for_each_event_constraint(c, x86_pmu.event_constraints) {
Peter Zijlstra63b14642010-01-22 16:32:17 +01001219 if ((event->hw.config & c->cmask) == c->code)
1220 return c;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001221 }
1222 }
Peter Zijlstra63b14642010-01-22 16:32:17 +01001223
1224 return &unconstrained;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001225}
1226
Stephane Eranian1da53e02010-01-18 10:58:01 +02001227static int x86_event_sched_in(struct perf_event *event,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001228 struct perf_cpu_context *cpuctx)
Stephane Eranian1da53e02010-01-18 10:58:01 +02001229{
1230 int ret = 0;
1231
1232 event->state = PERF_EVENT_STATE_ACTIVE;
Peter Zijlstra6e377382010-02-11 13:21:58 +01001233 event->oncpu = smp_processor_id();
Stephane Eranian1da53e02010-01-18 10:58:01 +02001234 event->tstamp_running += event->ctx->time - event->tstamp_stopped;
1235
1236 if (!is_x86_event(event))
1237 ret = event->pmu->enable(event);
1238
1239 if (!ret && !is_software_event(event))
1240 cpuctx->active_oncpu++;
1241
1242 if (!ret && event->attr.exclusive)
1243 cpuctx->exclusive = 1;
1244
1245 return ret;
1246}
1247
1248static void x86_event_sched_out(struct perf_event *event,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001249 struct perf_cpu_context *cpuctx)
Stephane Eranian1da53e02010-01-18 10:58:01 +02001250{
1251 event->state = PERF_EVENT_STATE_INACTIVE;
1252 event->oncpu = -1;
1253
1254 if (!is_x86_event(event))
1255 event->pmu->disable(event);
1256
1257 event->tstamp_running -= event->ctx->time - event->tstamp_stopped;
1258
1259 if (!is_software_event(event))
1260 cpuctx->active_oncpu--;
1261
1262 if (event->attr.exclusive || !cpuctx->active_oncpu)
1263 cpuctx->exclusive = 0;
1264}
1265
1266/*
1267 * Called to enable a whole group of events.
1268 * Returns 1 if the group was enabled, or -EAGAIN if it could not be.
1269 * Assumes the caller has disabled interrupts and has
1270 * frozen the PMU with hw_perf_save_disable.
1271 *
1272 * called with PMU disabled. If successful and return value 1,
1273 * then guaranteed to call perf_enable() and hw_perf_enable()
1274 */
1275int hw_perf_group_sched_in(struct perf_event *leader,
1276 struct perf_cpu_context *cpuctx,
Peter Zijlstra6e377382010-02-11 13:21:58 +01001277 struct perf_event_context *ctx)
Stephane Eranian1da53e02010-01-18 10:58:01 +02001278{
Peter Zijlstra6e377382010-02-11 13:21:58 +01001279 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001280 struct perf_event *sub;
1281 int assign[X86_PMC_IDX_MAX];
1282 int n0, n1, ret;
1283
1284 /* n0 = total number of events */
1285 n0 = collect_events(cpuc, leader, true);
1286 if (n0 < 0)
1287 return n0;
1288
1289 ret = x86_schedule_events(cpuc, n0, assign);
1290 if (ret)
1291 return ret;
1292
Peter Zijlstra6e377382010-02-11 13:21:58 +01001293 ret = x86_event_sched_in(leader, cpuctx);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001294 if (ret)
1295 return ret;
1296
1297 n1 = 1;
1298 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
Stephane Eranian81130702010-01-21 17:39:01 +02001299 if (sub->state > PERF_EVENT_STATE_OFF) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01001300 ret = x86_event_sched_in(sub, cpuctx);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001301 if (ret)
1302 goto undo;
1303 ++n1;
1304 }
1305 }
1306 /*
1307 * copy new assignment, now we know it is possible
1308 * will be used by hw_perf_enable()
1309 */
1310 memcpy(cpuc->assign, assign, n0*sizeof(int));
1311
1312 cpuc->n_events = n0;
1313 cpuc->n_added = n1;
1314 ctx->nr_active += n1;
1315
1316 /*
1317 * 1 means successful and events are active
1318 * This is not quite true because we defer
1319 * actual activation until hw_perf_enable() but
1320 * this way we* ensure caller won't try to enable
1321 * individual events
1322 */
1323 return 1;
1324undo:
Peter Zijlstra6e377382010-02-11 13:21:58 +01001325 x86_event_sched_out(leader, cpuctx);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001326 n0 = 1;
1327 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
1328 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
Peter Zijlstra6e377382010-02-11 13:21:58 +01001329 x86_event_sched_out(sub, cpuctx);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001330 if (++n0 == n1)
1331 break;
1332 }
1333 }
1334 return ret;
1335}
1336
Peter Zijlstraf22f54f2010-02-26 12:05:05 +01001337#include "perf_event_amd.c"
1338#include "perf_event_p6.c"
1339#include "perf_event_intel.c"
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301340
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001341static void __init pmu_check_apic(void)
1342{
1343 if (cpu_has_apic)
1344 return;
1345
1346 x86_pmu.apic = 0;
1347 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1348 pr_info("no hardware sampling interrupt available.\n");
1349}
1350
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001351void __init init_hw_perf_events(void)
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301352{
Robert Richter72eae042009-04-29 12:47:10 +02001353 int err;
1354
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001355 pr_info("Performance Events: ");
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001356
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301357 switch (boot_cpu_data.x86_vendor) {
1358 case X86_VENDOR_INTEL:
Robert Richter72eae042009-04-29 12:47:10 +02001359 err = intel_pmu_init();
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301360 break;
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301361 case X86_VENDOR_AMD:
Robert Richter72eae042009-04-29 12:47:10 +02001362 err = amd_pmu_init();
Jaswinder Singh Rajputf87ad352009-02-27 20:15:14 +05301363 break;
Robert Richter41389602009-04-29 12:47:00 +02001364 default:
1365 return;
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301366 }
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001367 if (err != 0) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001368 pr_cont("no PMU driver, software events only.\n");
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301369 return;
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001370 }
Jaswinder Singh Rajputb56a3802009-02-27 18:09:09 +05301371
Cyrill Gorcunov12558032009-12-10 19:56:34 +03001372 pmu_check_apic();
1373
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001374 pr_cont("%s PMU driver.\n", x86_pmu.name);
Robert Richterfaa28ae2009-04-29 12:47:13 +02001375
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001376 if (x86_pmu.num_events > X86_PMC_MAX_GENERIC) {
1377 WARN(1, KERN_ERR "hw perf events %d > max(%d), clipping!",
1378 x86_pmu.num_events, X86_PMC_MAX_GENERIC);
1379 x86_pmu.num_events = X86_PMC_MAX_GENERIC;
Ingo Molnar241771e2008-12-03 10:39:53 +01001380 }
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001381 perf_event_mask = (1 << x86_pmu.num_events) - 1;
1382 perf_max_events = x86_pmu.num_events;
Ingo Molnar241771e2008-12-03 10:39:53 +01001383
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001384 if (x86_pmu.num_events_fixed > X86_PMC_MAX_FIXED) {
1385 WARN(1, KERN_ERR "hw perf events fixed %d > max(%d), clipping!",
1386 x86_pmu.num_events_fixed, X86_PMC_MAX_FIXED);
1387 x86_pmu.num_events_fixed = X86_PMC_MAX_FIXED;
Ingo Molnar703e9372008-12-17 10:51:15 +01001388 }
Ingo Molnar241771e2008-12-03 10:39:53 +01001389
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001390 perf_event_mask |=
1391 ((1LL << x86_pmu.num_events_fixed)-1) << X86_PMC_IDX_FIXED;
1392 x86_pmu.intel_ctrl = perf_event_mask;
Ingo Molnar862a1a52008-12-17 13:09:20 +01001393
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001394 perf_events_lapic_init();
1395 register_die_notifier(&perf_event_nmi_notifier);
Ingo Molnar1123e3a2009-05-29 11:25:09 +02001396
Peter Zijlstra63b14642010-01-22 16:32:17 +01001397 unconstrained = (struct event_constraint)
Peter Zijlstrafce877e2010-01-29 13:25:12 +01001398 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_events) - 1,
1399 0, x86_pmu.num_events);
Peter Zijlstra63b14642010-01-22 16:32:17 +01001400
Ingo Molnar57c0c152009-09-21 12:20:38 +02001401 pr_info("... version: %d\n", x86_pmu.version);
1402 pr_info("... bit width: %d\n", x86_pmu.event_bits);
1403 pr_info("... generic registers: %d\n", x86_pmu.num_events);
1404 pr_info("... value mask: %016Lx\n", x86_pmu.event_mask);
1405 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
1406 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_events_fixed);
1407 pr_info("... event mask: %016Lx\n", perf_event_mask);
Ingo Molnar241771e2008-12-03 10:39:53 +01001408}
Ingo Molnar621a01e2008-12-11 12:46:46 +01001409
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001410static inline void x86_pmu_read(struct perf_event *event)
Ingo Molnaree060942008-12-13 09:00:03 +01001411{
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001412 x86_perf_event_update(event, &event->hw, event->hw.idx);
Ingo Molnaree060942008-12-13 09:00:03 +01001413}
1414
Robert Richter4aeb0b42009-04-29 12:47:03 +02001415static const struct pmu pmu = {
1416 .enable = x86_pmu_enable,
1417 .disable = x86_pmu_disable,
Stephane Eraniand76a0812010-02-08 17:06:01 +02001418 .start = x86_pmu_start,
1419 .stop = x86_pmu_stop,
Robert Richter4aeb0b42009-04-29 12:47:03 +02001420 .read = x86_pmu_read,
Peter Zijlstraa78ac322009-05-25 17:39:05 +02001421 .unthrottle = x86_pmu_unthrottle,
Ingo Molnar621a01e2008-12-11 12:46:46 +01001422};
1423
Stephane Eranian1da53e02010-01-18 10:58:01 +02001424/*
1425 * validate a single event group
1426 *
1427 * validation include:
Ingo Molnar184f4122010-01-27 08:39:39 +01001428 * - check events are compatible which each other
1429 * - events do not compete for the same counter
1430 * - number of events <= number of counters
Stephane Eranian1da53e02010-01-18 10:58:01 +02001431 *
1432 * validation ensures the group can be loaded onto the
1433 * PMU if it was the only group available.
1434 */
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001435static int validate_group(struct perf_event *event)
1436{
Stephane Eranian1da53e02010-01-18 10:58:01 +02001437 struct perf_event *leader = event->group_leader;
Peter Zijlstra502568d2010-01-22 14:35:46 +01001438 struct cpu_hw_events *fake_cpuc;
1439 int ret, n;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001440
Peter Zijlstra502568d2010-01-22 14:35:46 +01001441 ret = -ENOMEM;
1442 fake_cpuc = kmalloc(sizeof(*fake_cpuc), GFP_KERNEL | __GFP_ZERO);
1443 if (!fake_cpuc)
1444 goto out;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001445
Stephane Eranian1da53e02010-01-18 10:58:01 +02001446 /*
1447 * the event is not yet connected with its
1448 * siblings therefore we must first collect
1449 * existing siblings, then add the new event
1450 * before we can simulate the scheduling
1451 */
Peter Zijlstra502568d2010-01-22 14:35:46 +01001452 ret = -ENOSPC;
1453 n = collect_events(fake_cpuc, leader, true);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001454 if (n < 0)
Peter Zijlstra502568d2010-01-22 14:35:46 +01001455 goto out_free;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001456
Peter Zijlstra502568d2010-01-22 14:35:46 +01001457 fake_cpuc->n_events = n;
1458 n = collect_events(fake_cpuc, event, false);
Stephane Eranian1da53e02010-01-18 10:58:01 +02001459 if (n < 0)
Peter Zijlstra502568d2010-01-22 14:35:46 +01001460 goto out_free;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001461
Peter Zijlstra502568d2010-01-22 14:35:46 +01001462 fake_cpuc->n_events = n;
Stephane Eranian1da53e02010-01-18 10:58:01 +02001463
Peter Zijlstra502568d2010-01-22 14:35:46 +01001464 ret = x86_schedule_events(fake_cpuc, n, NULL);
1465
1466out_free:
1467 kfree(fake_cpuc);
1468out:
1469 return ret;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001470}
1471
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001472const struct pmu *hw_perf_event_init(struct perf_event *event)
Ingo Molnar621a01e2008-12-11 12:46:46 +01001473{
Stephane Eranian81130702010-01-21 17:39:01 +02001474 const struct pmu *tmp;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001475 int err;
1476
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001477 err = __hw_perf_event_init(event);
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001478 if (!err) {
Stephane Eranian81130702010-01-21 17:39:01 +02001479 /*
1480 * we temporarily connect event to its pmu
1481 * such that validate_group() can classify
1482 * it as an x86 event using is_x86_event()
1483 */
1484 tmp = event->pmu;
1485 event->pmu = &pmu;
1486
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001487 if (event->group_leader != event)
1488 err = validate_group(event);
Stephane Eranian81130702010-01-21 17:39:01 +02001489
1490 event->pmu = tmp;
Peter Zijlstrafe9081c2009-10-08 11:56:07 +02001491 }
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001492 if (err) {
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001493 if (event->destroy)
1494 event->destroy(event);
Peter Zijlstra9ea98e12009-03-30 19:07:09 +02001495 return ERR_PTR(err);
Peter Zijlstraa1792cdac2009-09-09 10:04:47 +02001496 }
Ingo Molnar621a01e2008-12-11 12:46:46 +01001497
Robert Richter4aeb0b42009-04-29 12:47:03 +02001498 return &pmu;
Ingo Molnar621a01e2008-12-11 12:46:46 +01001499}
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001500
1501/*
1502 * callchain support
1503 */
1504
1505static inline
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001506void callchain_store(struct perf_callchain_entry *entry, u64 ip)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001507{
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001508 if (entry->nr < PERF_MAX_STACK_DEPTH)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001509 entry->ip[entry->nr++] = ip;
1510}
1511
Tejun Heo245b2e72009-06-24 15:13:48 +09001512static DEFINE_PER_CPU(struct perf_callchain_entry, pmc_irq_entry);
1513static DEFINE_PER_CPU(struct perf_callchain_entry, pmc_nmi_entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001514
1515
1516static void
1517backtrace_warning_symbol(void *data, char *msg, unsigned long symbol)
1518{
1519 /* Ignore warnings */
1520}
1521
1522static void backtrace_warning(void *data, char *msg)
1523{
1524 /* Ignore warnings */
1525}
1526
1527static int backtrace_stack(void *data, char *name)
1528{
Ingo Molnar038e8362009-06-15 09:57:59 +02001529 return 0;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001530}
1531
1532static void backtrace_address(void *data, unsigned long addr, int reliable)
1533{
1534 struct perf_callchain_entry *entry = data;
1535
1536 if (reliable)
1537 callchain_store(entry, addr);
1538}
1539
1540static const struct stacktrace_ops backtrace_ops = {
1541 .warning = backtrace_warning,
1542 .warning_symbol = backtrace_warning_symbol,
1543 .stack = backtrace_stack,
1544 .address = backtrace_address,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +01001545 .walk_stack = print_context_stack_bp,
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001546};
1547
Ingo Molnar038e8362009-06-15 09:57:59 +02001548#include "../dumpstack.h"
1549
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001550static void
1551perf_callchain_kernel(struct pt_regs *regs, struct perf_callchain_entry *entry)
1552{
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001553 callchain_store(entry, PERF_CONTEXT_KERNEL);
Ingo Molnar038e8362009-06-15 09:57:59 +02001554 callchain_store(entry, regs->ip);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001555
Frederic Weisbecker48b5ba92009-12-31 05:53:02 +01001556 dump_trace(NULL, regs, NULL, regs->bp, &backtrace_ops, entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001557}
1558
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001559/*
1560 * best effort, GUP based copy_from_user() that assumes IRQ or NMI context
1561 */
1562static unsigned long
1563copy_from_user_nmi(void *to, const void __user *from, unsigned long n)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001564{
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001565 unsigned long offset, addr = (unsigned long)from;
1566 int type = in_nmi() ? KM_NMI : KM_IRQ0;
1567 unsigned long size, len = 0;
1568 struct page *page;
1569 void *map;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001570 int ret;
1571
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001572 do {
1573 ret = __get_user_pages_fast(addr, 1, 0, &page);
1574 if (!ret)
1575 break;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001576
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001577 offset = addr & (PAGE_SIZE - 1);
1578 size = min(PAGE_SIZE - offset, n - len);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001579
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001580 map = kmap_atomic(page, type);
1581 memcpy(to, map+offset, size);
1582 kunmap_atomic(map, type);
1583 put_page(page);
1584
1585 len += size;
1586 to += size;
1587 addr += size;
1588
1589 } while (len < n);
1590
1591 return len;
1592}
1593
1594static int copy_stack_frame(const void __user *fp, struct stack_frame *frame)
1595{
1596 unsigned long bytes;
1597
1598 bytes = copy_from_user_nmi(frame, fp, sizeof(*frame));
1599
1600 return bytes == sizeof(*frame);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001601}
1602
1603static void
1604perf_callchain_user(struct pt_regs *regs, struct perf_callchain_entry *entry)
1605{
1606 struct stack_frame frame;
1607 const void __user *fp;
1608
Ingo Molnar5a6cec32009-05-29 11:25:09 +02001609 if (!user_mode(regs))
1610 regs = task_pt_regs(current);
1611
Peter Zijlstra74193ef2009-06-15 13:07:24 +02001612 fp = (void __user *)regs->bp;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001613
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001614 callchain_store(entry, PERF_CONTEXT_USER);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001615 callchain_store(entry, regs->ip);
1616
Peter Zijlstraf9188e02009-06-18 22:20:52 +02001617 while (entry->nr < PERF_MAX_STACK_DEPTH) {
Ingo Molnar038e8362009-06-15 09:57:59 +02001618 frame.next_frame = NULL;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001619 frame.return_address = 0;
1620
1621 if (!copy_stack_frame(fp, &frame))
1622 break;
1623
Ingo Molnar5a6cec32009-05-29 11:25:09 +02001624 if ((unsigned long)fp < regs->sp)
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001625 break;
1626
1627 callchain_store(entry, frame.return_address);
Ingo Molnar038e8362009-06-15 09:57:59 +02001628 fp = frame.next_frame;
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001629 }
1630}
1631
1632static void
1633perf_do_callchain(struct pt_regs *regs, struct perf_callchain_entry *entry)
1634{
1635 int is_user;
1636
1637 if (!regs)
1638 return;
1639
1640 is_user = user_mode(regs);
1641
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001642 if (is_user && current->state != TASK_RUNNING)
1643 return;
1644
1645 if (!is_user)
1646 perf_callchain_kernel(regs, entry);
1647
1648 if (current->mm)
1649 perf_callchain_user(regs, entry);
1650}
1651
1652struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
1653{
1654 struct perf_callchain_entry *entry;
1655
1656 if (in_nmi())
Tejun Heo245b2e72009-06-24 15:13:48 +09001657 entry = &__get_cpu_var(pmc_nmi_entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001658 else
Tejun Heo245b2e72009-06-24 15:13:48 +09001659 entry = &__get_cpu_var(pmc_irq_entry);
Peter Zijlstrad7d59fb2009-03-30 19:07:15 +02001660
1661 entry->nr = 0;
1662
1663 perf_do_callchain(regs, entry);
1664
1665 return entry;
1666}
Markus Metzger30dd5682009-07-21 15:56:48 +02001667
Ingo Molnarcdd6c482009-09-21 12:02:48 +02001668void hw_perf_event_setup_online(int cpu)
Markus Metzger30dd5682009-07-21 15:56:48 +02001669{
1670 init_debug_store_on_cpu(cpu);
Stephane Eranian38331f62010-02-08 17:17:01 +02001671
1672 switch (boot_cpu_data.x86_vendor) {
1673 case X86_VENDOR_AMD:
1674 amd_pmu_cpu_online(cpu);
1675 break;
1676 default:
1677 return;
1678 }
1679}
1680
1681void hw_perf_event_setup_offline(int cpu)
1682{
1683 init_debug_store_on_cpu(cpu);
1684
1685 switch (boot_cpu_data.x86_vendor) {
1686 case X86_VENDOR_AMD:
1687 amd_pmu_cpu_offline(cpu);
1688 break;
1689 default:
1690 return;
1691 }
Markus Metzger30dd5682009-07-21 15:56:48 +02001692}