include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86 / kernel / cpu / perf_event.c
CommitLineData
241771ef 1/*
cdd6c482 2 * Performance events x86 architecture code
241771ef 3 *
98144511
IM
4 * 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>
30dd568c 9 * Copyright (C) 2009 Intel Corporation, <markus.t.metzger@intel.com>
1da53e02 10 * Copyright (C) 2009 Google, Inc., Stephane Eranian
241771ef
IM
11 *
12 * For licencing details see kernel-base/COPYING
13 */
14
cdd6c482 15#include <linux/perf_event.h>
241771ef
IM
16#include <linux/capability.h>
17#include <linux/notifier.h>
18#include <linux/hardirq.h>
19#include <linux/kprobes.h>
4ac13294 20#include <linux/module.h>
241771ef
IM
21#include <linux/kdebug.h>
22#include <linux/sched.h>
d7d59fb3 23#include <linux/uaccess.h>
5a0e3ad6 24#include <linux/slab.h>
74193ef0 25#include <linux/highmem.h>
30dd568c 26#include <linux/cpu.h>
272d30be 27#include <linux/bitops.h>
241771ef 28
241771ef 29#include <asm/apic.h>
d7d59fb3 30#include <asm/stacktrace.h>
4e935e47 31#include <asm/nmi.h>
241771ef 32
cdd6c482 33static u64 perf_event_mask __read_mostly;
703e937c 34
cdd6c482
IM
35/* The maximal number of PEBS events: */
36#define MAX_PEBS_EVENTS 4
30dd568c
MM
37
38/* The size of a BTS record in bytes: */
39#define BTS_RECORD_SIZE 24
40
41/* The size of a per-cpu BTS buffer in bytes: */
5622f295 42#define BTS_BUFFER_SIZE (BTS_RECORD_SIZE * 2048)
30dd568c
MM
43
44/* The BTS overflow threshold in bytes from the end of the buffer: */
5622f295 45#define BTS_OVFL_TH (BTS_RECORD_SIZE * 128)
30dd568c
MM
46
47
48/*
49 * Bits in the debugctlmsr controlling branch tracing.
50 */
51#define X86_DEBUGCTL_TR (1 << 6)
52#define X86_DEBUGCTL_BTS (1 << 7)
53#define X86_DEBUGCTL_BTINT (1 << 8)
54#define X86_DEBUGCTL_BTS_OFF_OS (1 << 9)
55#define X86_DEBUGCTL_BTS_OFF_USR (1 << 10)
56
57/*
58 * A debug store configuration.
59 *
60 * We only support architectures that use 64bit fields.
61 */
62struct debug_store {
63 u64 bts_buffer_base;
64 u64 bts_index;
65 u64 bts_absolute_maximum;
66 u64 bts_interrupt_threshold;
67 u64 pebs_buffer_base;
68 u64 pebs_index;
69 u64 pebs_absolute_maximum;
70 u64 pebs_interrupt_threshold;
cdd6c482 71 u64 pebs_event_reset[MAX_PEBS_EVENTS];
30dd568c
MM
72};
73
1da53e02 74struct event_constraint {
c91e0f5d
PZ
75 union {
76 unsigned long idxmsk[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
b622d644 77 u64 idxmsk64;
c91e0f5d 78 };
b622d644
PZ
79 u64 code;
80 u64 cmask;
272d30be 81 int weight;
1da53e02
SE
82};
83
38331f62
SE
84struct amd_nb {
85 int nb_id; /* NorthBridge id */
86 int refcnt; /* reference count */
87 struct perf_event *owners[X86_PMC_IDX_MAX];
88 struct event_constraint event_constraints[X86_PMC_IDX_MAX];
89};
90
cdd6c482 91struct cpu_hw_events {
1da53e02 92 struct perf_event *events[X86_PMC_IDX_MAX]; /* in counter order */
43f6201a 93 unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
4b39fd96 94 unsigned long interrupts;
b0f3f28e 95 int enabled;
30dd568c 96 struct debug_store *ds;
241771ef 97
1da53e02
SE
98 int n_events;
99 int n_added;
100 int assign[X86_PMC_IDX_MAX]; /* event to counter assignment */
447a194b 101 u64 tags[X86_PMC_IDX_MAX];
1da53e02 102 struct perf_event *event_list[X86_PMC_IDX_MAX]; /* in enabled order */
38331f62 103 struct amd_nb *amd_nb;
b690081d
SE
104};
105
fce877e3 106#define __EVENT_CONSTRAINT(c, n, m, w) {\
b622d644 107 { .idxmsk64 = (n) }, \
c91e0f5d
PZ
108 .code = (c), \
109 .cmask = (m), \
fce877e3 110 .weight = (w), \
c91e0f5d 111}
b690081d 112
fce877e3
PZ
113#define EVENT_CONSTRAINT(c, n, m) \
114 __EVENT_CONSTRAINT(c, n, m, HWEIGHT(n))
115
ed8777fc
PZ
116#define INTEL_EVENT_CONSTRAINT(c, n) \
117 EVENT_CONSTRAINT(c, n, INTEL_ARCH_EVTSEL_MASK)
8433be11 118
ed8777fc 119#define FIXED_EVENT_CONSTRAINT(c, n) \
b622d644 120 EVENT_CONSTRAINT(c, (1ULL << (32+n)), INTEL_ARCH_FIXED_MASK)
8433be11 121
ed8777fc
PZ
122#define EVENT_CONSTRAINT_END \
123 EVENT_CONSTRAINT(0, 0, 0)
124
125#define for_each_event_constraint(e, c) \
126 for ((e) = (c); (e)->cmask; (e)++)
b690081d 127
241771ef 128/*
5f4ec28f 129 * struct x86_pmu - generic x86 pmu
241771ef 130 */
5f4ec28f 131struct x86_pmu {
faa28ae0
RR
132 const char *name;
133 int version;
a3288106 134 int (*handle_irq)(struct pt_regs *);
9e35ad38
PZ
135 void (*disable_all)(void);
136 void (*enable_all)(void);
aff3d91a
PZ
137 void (*enable)(struct perf_event *);
138 void (*disable)(struct perf_event *);
169e41eb
JSR
139 unsigned eventsel;
140 unsigned perfctr;
b0f3f28e
PZ
141 u64 (*event_map)(int);
142 u64 (*raw_event)(u64);
169e41eb 143 int max_events;
cdd6c482
IM
144 int num_events;
145 int num_events_fixed;
146 int event_bits;
147 u64 event_mask;
04da8a43 148 int apic;
c619b8ff 149 u64 max_period;
9e35ad38 150 u64 intel_ctrl;
30dd568c
MM
151 void (*enable_bts)(u64 config);
152 void (*disable_bts)(void);
63b14649
PZ
153
154 struct event_constraint *
155 (*get_event_constraints)(struct cpu_hw_events *cpuc,
156 struct perf_event *event);
157
c91e0f5d
PZ
158 void (*put_event_constraints)(struct cpu_hw_events *cpuc,
159 struct perf_event *event);
63b14649 160 struct event_constraint *event_constraints;
3f6da390
PZ
161
162 void (*cpu_prepare)(int cpu);
163 void (*cpu_starting)(int cpu);
164 void (*cpu_dying)(int cpu);
165 void (*cpu_dead)(int cpu);
b56a3802
JSR
166};
167
4a06bd85 168static struct x86_pmu x86_pmu __read_mostly;
b56a3802 169
cdd6c482 170static DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = {
b0f3f28e
PZ
171 .enabled = 1,
172};
241771ef 173
07088edb 174static int x86_perf_event_set_period(struct perf_event *event);
b690081d 175
8326f44d 176/*
dfc65094 177 * Generalized hw caching related hw_event table, filled
8326f44d 178 * in on a per model basis. A value of 0 means
dfc65094
IM
179 * 'not supported', -1 means 'hw_event makes no sense on
180 * this CPU', any other value means the raw hw_event
8326f44d
IM
181 * ID.
182 */
183
184#define C(x) PERF_COUNT_HW_CACHE_##x
185
186static u64 __read_mostly hw_cache_event_ids
187 [PERF_COUNT_HW_CACHE_MAX]
188 [PERF_COUNT_HW_CACHE_OP_MAX]
189 [PERF_COUNT_HW_CACHE_RESULT_MAX];
190
ee06094f 191/*
cdd6c482
IM
192 * Propagate event elapsed time into the generic event.
193 * Can only be executed on the CPU where the event is active.
ee06094f
IM
194 * Returns the delta events processed.
195 */
4b7bfd0d 196static u64
cc2ad4ba 197x86_perf_event_update(struct perf_event *event)
ee06094f 198{
cc2ad4ba 199 struct hw_perf_event *hwc = &event->hw;
cdd6c482 200 int shift = 64 - x86_pmu.event_bits;
ec3232bd 201 u64 prev_raw_count, new_raw_count;
cc2ad4ba 202 int idx = hwc->idx;
ec3232bd 203 s64 delta;
ee06094f 204
30dd568c
MM
205 if (idx == X86_PMC_IDX_FIXED_BTS)
206 return 0;
207
ee06094f 208 /*
cdd6c482 209 * Careful: an NMI might modify the previous event value.
ee06094f
IM
210 *
211 * Our tactic to handle this is to first atomically read and
212 * exchange a new raw count - then add that new-prev delta
cdd6c482 213 * count to the generic event atomically:
ee06094f
IM
214 */
215again:
216 prev_raw_count = atomic64_read(&hwc->prev_count);
cdd6c482 217 rdmsrl(hwc->event_base + idx, new_raw_count);
ee06094f
IM
218
219 if (atomic64_cmpxchg(&hwc->prev_count, prev_raw_count,
220 new_raw_count) != prev_raw_count)
221 goto again;
222
223 /*
224 * Now we have the new raw value and have updated the prev
225 * timestamp already. We can now calculate the elapsed delta
cdd6c482 226 * (event-)time and add that to the generic event.
ee06094f
IM
227 *
228 * Careful, not all hw sign-extends above the physical width
ec3232bd 229 * of the count.
ee06094f 230 */
ec3232bd
PZ
231 delta = (new_raw_count << shift) - (prev_raw_count << shift);
232 delta >>= shift;
ee06094f 233
cdd6c482 234 atomic64_add(delta, &event->count);
ee06094f 235 atomic64_sub(delta, &hwc->period_left);
4b7bfd0d
RR
236
237 return new_raw_count;
ee06094f
IM
238}
239
cdd6c482 240static atomic_t active_events;
4e935e47
PZ
241static DEFINE_MUTEX(pmc_reserve_mutex);
242
243static bool reserve_pmc_hardware(void)
244{
04da8a43 245#ifdef CONFIG_X86_LOCAL_APIC
4e935e47
PZ
246 int i;
247
248 if (nmi_watchdog == NMI_LOCAL_APIC)
249 disable_lapic_nmi_watchdog();
250
cdd6c482 251 for (i = 0; i < x86_pmu.num_events; i++) {
4a06bd85 252 if (!reserve_perfctr_nmi(x86_pmu.perfctr + i))
4e935e47
PZ
253 goto perfctr_fail;
254 }
255
cdd6c482 256 for (i = 0; i < x86_pmu.num_events; i++) {
4a06bd85 257 if (!reserve_evntsel_nmi(x86_pmu.eventsel + i))
4e935e47
PZ
258 goto eventsel_fail;
259 }
04da8a43 260#endif
4e935e47
PZ
261
262 return true;
263
04da8a43 264#ifdef CONFIG_X86_LOCAL_APIC
4e935e47
PZ
265eventsel_fail:
266 for (i--; i >= 0; i--)
4a06bd85 267 release_evntsel_nmi(x86_pmu.eventsel + i);
4e935e47 268
cdd6c482 269 i = x86_pmu.num_events;
4e935e47
PZ
270
271perfctr_fail:
272 for (i--; i >= 0; i--)
4a06bd85 273 release_perfctr_nmi(x86_pmu.perfctr + i);
4e935e47
PZ
274
275 if (nmi_watchdog == NMI_LOCAL_APIC)
276 enable_lapic_nmi_watchdog();
277
278 return false;
04da8a43 279#endif
4e935e47
PZ
280}
281
282static void release_pmc_hardware(void)
283{
04da8a43 284#ifdef CONFIG_X86_LOCAL_APIC
4e935e47
PZ
285 int i;
286
cdd6c482 287 for (i = 0; i < x86_pmu.num_events; i++) {
4a06bd85
RR
288 release_perfctr_nmi(x86_pmu.perfctr + i);
289 release_evntsel_nmi(x86_pmu.eventsel + i);
4e935e47
PZ
290 }
291
292 if (nmi_watchdog == NMI_LOCAL_APIC)
293 enable_lapic_nmi_watchdog();
04da8a43 294#endif
4e935e47
PZ
295}
296
30dd568c
MM
297static inline bool bts_available(void)
298{
299 return x86_pmu.enable_bts != NULL;
300}
301
3f6da390 302static void init_debug_store_on_cpu(int cpu)
30dd568c 303{
cdd6c482 304 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
30dd568c
MM
305
306 if (!ds)
307 return;
308
309 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA,
596da17f 310 (u32)((u64)(unsigned long)ds),
311 (u32)((u64)(unsigned long)ds >> 32));
30dd568c
MM
312}
313
3f6da390 314static void fini_debug_store_on_cpu(int cpu)
30dd568c 315{
cdd6c482 316 if (!per_cpu(cpu_hw_events, cpu).ds)
30dd568c
MM
317 return;
318
319 wrmsr_on_cpu(cpu, MSR_IA32_DS_AREA, 0, 0);
320}
321
322static void release_bts_hardware(void)
323{
324 int cpu;
325
326 if (!bts_available())
327 return;
328
329 get_online_cpus();
330
331 for_each_online_cpu(cpu)
332 fini_debug_store_on_cpu(cpu);
333
334 for_each_possible_cpu(cpu) {
cdd6c482 335 struct debug_store *ds = per_cpu(cpu_hw_events, cpu).ds;
30dd568c
MM
336
337 if (!ds)
338 continue;
339
cdd6c482 340 per_cpu(cpu_hw_events, cpu).ds = NULL;
30dd568c 341
596da17f 342 kfree((void *)(unsigned long)ds->bts_buffer_base);
30dd568c
MM
343 kfree(ds);
344 }
345
346 put_online_cpus();
347}
348
349static int reserve_bts_hardware(void)
350{
351 int cpu, err = 0;
352
353 if (!bts_available())
747b50aa 354 return 0;
30dd568c
MM
355
356 get_online_cpus();
357
358 for_each_possible_cpu(cpu) {
359 struct debug_store *ds;
360 void *buffer;
361
362 err = -ENOMEM;
363 buffer = kzalloc(BTS_BUFFER_SIZE, GFP_KERNEL);
364 if (unlikely(!buffer))
365 break;
366
367 ds = kzalloc(sizeof(*ds), GFP_KERNEL);
368 if (unlikely(!ds)) {
369 kfree(buffer);
370 break;
371 }
372
596da17f 373 ds->bts_buffer_base = (u64)(unsigned long)buffer;
30dd568c
MM
374 ds->bts_index = ds->bts_buffer_base;
375 ds->bts_absolute_maximum =
376 ds->bts_buffer_base + BTS_BUFFER_SIZE;
377 ds->bts_interrupt_threshold =
378 ds->bts_absolute_maximum - BTS_OVFL_TH;
379
cdd6c482 380 per_cpu(cpu_hw_events, cpu).ds = ds;
30dd568c
MM
381 err = 0;
382 }
383
384 if (err)
385 release_bts_hardware();
386 else {
387 for_each_online_cpu(cpu)
388 init_debug_store_on_cpu(cpu);
389 }
390
391 put_online_cpus();
392
393 return err;
394}
395
cdd6c482 396static void hw_perf_event_destroy(struct perf_event *event)
4e935e47 397{
cdd6c482 398 if (atomic_dec_and_mutex_lock(&active_events, &pmc_reserve_mutex)) {
4e935e47 399 release_pmc_hardware();
30dd568c 400 release_bts_hardware();
4e935e47
PZ
401 mutex_unlock(&pmc_reserve_mutex);
402 }
403}
404
85cf9dba
RR
405static inline int x86_pmu_initialized(void)
406{
407 return x86_pmu.handle_irq != NULL;
408}
409
8326f44d 410static inline int
cdd6c482 411set_ext_hw_attr(struct hw_perf_event *hwc, struct perf_event_attr *attr)
8326f44d
IM
412{
413 unsigned int cache_type, cache_op, cache_result;
414 u64 config, val;
415
416 config = attr->config;
417
418 cache_type = (config >> 0) & 0xff;
419 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
420 return -EINVAL;
421
422 cache_op = (config >> 8) & 0xff;
423 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
424 return -EINVAL;
425
426 cache_result = (config >> 16) & 0xff;
427 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
428 return -EINVAL;
429
430 val = hw_cache_event_ids[cache_type][cache_op][cache_result];
431
432 if (val == 0)
433 return -ENOENT;
434
435 if (val == -1)
436 return -EINVAL;
437
438 hwc->config |= val;
439
440 return 0;
441}
442
241771ef 443/*
0d48696f 444 * Setup the hardware configuration for a given attr_type
241771ef 445 */
cdd6c482 446static int __hw_perf_event_init(struct perf_event *event)
241771ef 447{
cdd6c482
IM
448 struct perf_event_attr *attr = &event->attr;
449 struct hw_perf_event *hwc = &event->hw;
9c74fb50 450 u64 config;
4e935e47 451 int err;
241771ef 452
85cf9dba
RR
453 if (!x86_pmu_initialized())
454 return -ENODEV;
241771ef 455
4e935e47 456 err = 0;
cdd6c482 457 if (!atomic_inc_not_zero(&active_events)) {
4e935e47 458 mutex_lock(&pmc_reserve_mutex);
cdd6c482 459 if (atomic_read(&active_events) == 0) {
30dd568c
MM
460 if (!reserve_pmc_hardware())
461 err = -EBUSY;
462 else
747b50aa 463 err = reserve_bts_hardware();
30dd568c
MM
464 }
465 if (!err)
cdd6c482 466 atomic_inc(&active_events);
4e935e47
PZ
467 mutex_unlock(&pmc_reserve_mutex);
468 }
469 if (err)
470 return err;
471
cdd6c482 472 event->destroy = hw_perf_event_destroy;
a1792cda 473
241771ef 474 /*
0475f9ea 475 * Generate PMC IRQs:
241771ef
IM
476 * (keep 'enabled' bit clear for now)
477 */
0475f9ea 478 hwc->config = ARCH_PERFMON_EVENTSEL_INT;
241771ef 479
b690081d 480 hwc->idx = -1;
447a194b
SE
481 hwc->last_cpu = -1;
482 hwc->last_tag = ~0ULL;
b690081d 483
241771ef 484 /*
0475f9ea 485 * Count user and OS events unless requested not to.
241771ef 486 */
0d48696f 487 if (!attr->exclude_user)
0475f9ea 488 hwc->config |= ARCH_PERFMON_EVENTSEL_USR;
0d48696f 489 if (!attr->exclude_kernel)
241771ef 490 hwc->config |= ARCH_PERFMON_EVENTSEL_OS;
0475f9ea 491
bd2b5b12 492 if (!hwc->sample_period) {
b23f3325 493 hwc->sample_period = x86_pmu.max_period;
9e350de3 494 hwc->last_period = hwc->sample_period;
bd2b5b12 495 atomic64_set(&hwc->period_left, hwc->sample_period);
04da8a43
IM
496 } else {
497 /*
498 * If we have a PMU initialized but no APIC
499 * interrupts, we cannot sample hardware
cdd6c482
IM
500 * events (user-space has to fall back and
501 * sample via a hrtimer based software event):
04da8a43
IM
502 */
503 if (!x86_pmu.apic)
504 return -EOPNOTSUPP;
bd2b5b12 505 }
d2517a49 506
241771ef 507 /*
dfc65094 508 * Raw hw_event type provide the config in the hw_event structure
241771ef 509 */
a21ca2ca
IM
510 if (attr->type == PERF_TYPE_RAW) {
511 hwc->config |= x86_pmu.raw_event(attr->config);
320ebf09
PZ
512 if ((hwc->config & ARCH_PERFMON_EVENTSEL_ANY) &&
513 perf_paranoid_cpu() && !capable(CAP_SYS_ADMIN))
514 return -EACCES;
8326f44d 515 return 0;
241771ef 516 }
241771ef 517
8326f44d
IM
518 if (attr->type == PERF_TYPE_HW_CACHE)
519 return set_ext_hw_attr(hwc, attr);
520
521 if (attr->config >= x86_pmu.max_events)
522 return -EINVAL;
9c74fb50 523
8326f44d
IM
524 /*
525 * The generic map:
526 */
9c74fb50
PZ
527 config = x86_pmu.event_map(attr->config);
528
529 if (config == 0)
530 return -ENOENT;
531
532 if (config == -1LL)
533 return -EINVAL;
534
747b50aa 535 /*
536 * Branch tracing:
537 */
538 if ((attr->config == PERF_COUNT_HW_BRANCH_INSTRUCTIONS) &&
1653192f 539 (hwc->sample_period == 1)) {
540 /* BTS is not supported by this architecture. */
541 if (!bts_available())
542 return -EOPNOTSUPP;
543
544 /* BTS is currently only allowed for user-mode. */
545 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS)
546 return -EOPNOTSUPP;
547 }
747b50aa 548
9c74fb50 549 hwc->config |= config;
4e935e47 550
241771ef
IM
551 return 0;
552}
553
8c48e444 554static void x86_pmu_disable_all(void)
f87ad35d 555{
cdd6c482 556 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
9e35ad38
PZ
557 int idx;
558
cdd6c482 559 for (idx = 0; idx < x86_pmu.num_events; idx++) {
b0f3f28e
PZ
560 u64 val;
561
43f6201a 562 if (!test_bit(idx, cpuc->active_mask))
4295ee62 563 continue;
8c48e444 564 rdmsrl(x86_pmu.eventsel + idx, val);
bb1165d6 565 if (!(val & ARCH_PERFMON_EVENTSEL_ENABLE))
4295ee62 566 continue;
bb1165d6 567 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
8c48e444 568 wrmsrl(x86_pmu.eventsel + idx, val);
f87ad35d 569 }
f87ad35d
JSR
570}
571
9e35ad38 572void hw_perf_disable(void)
b56a3802 573{
1da53e02
SE
574 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
575
85cf9dba 576 if (!x86_pmu_initialized())
9e35ad38 577 return;
1da53e02 578
1a6e21f7
PZ
579 if (!cpuc->enabled)
580 return;
581
582 cpuc->n_added = 0;
583 cpuc->enabled = 0;
584 barrier();
1da53e02
SE
585
586 x86_pmu.disable_all();
b56a3802 587}
241771ef 588
8c48e444 589static void x86_pmu_enable_all(void)
f87ad35d 590{
cdd6c482 591 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
f87ad35d
JSR
592 int idx;
593
cdd6c482
IM
594 for (idx = 0; idx < x86_pmu.num_events; idx++) {
595 struct perf_event *event = cpuc->events[idx];
4295ee62 596 u64 val;
b0f3f28e 597
43f6201a 598 if (!test_bit(idx, cpuc->active_mask))
4295ee62 599 continue;
984b838c 600
cdd6c482 601 val = event->hw.config;
bb1165d6 602 val |= ARCH_PERFMON_EVENTSEL_ENABLE;
8c48e444 603 wrmsrl(x86_pmu.eventsel + idx, val);
f87ad35d
JSR
604 }
605}
606
1da53e02
SE
607static const struct pmu pmu;
608
609static inline int is_x86_event(struct perf_event *event)
610{
611 return event->pmu == &pmu;
612}
613
614static int x86_schedule_events(struct cpu_hw_events *cpuc, int n, int *assign)
615{
63b14649 616 struct event_constraint *c, *constraints[X86_PMC_IDX_MAX];
1da53e02 617 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
c933c1a6 618 int i, j, w, wmax, num = 0;
1da53e02
SE
619 struct hw_perf_event *hwc;
620
621 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
622
623 for (i = 0; i < n; i++) {
b622d644
PZ
624 c = x86_pmu.get_event_constraints(cpuc, cpuc->event_list[i]);
625 constraints[i] = c;
1da53e02
SE
626 }
627
8113070d
SE
628 /*
629 * fastpath, try to reuse previous register
630 */
c933c1a6 631 for (i = 0; i < n; i++) {
8113070d 632 hwc = &cpuc->event_list[i]->hw;
81269a08 633 c = constraints[i];
8113070d
SE
634
635 /* never assigned */
636 if (hwc->idx == -1)
637 break;
638
639 /* constraint still honored */
63b14649 640 if (!test_bit(hwc->idx, c->idxmsk))
8113070d
SE
641 break;
642
643 /* not already used */
644 if (test_bit(hwc->idx, used_mask))
645 break;
646
34538ee7 647 __set_bit(hwc->idx, used_mask);
8113070d
SE
648 if (assign)
649 assign[i] = hwc->idx;
650 }
c933c1a6 651 if (i == n)
8113070d
SE
652 goto done;
653
654 /*
655 * begin slow path
656 */
657
658 bitmap_zero(used_mask, X86_PMC_IDX_MAX);
659
1da53e02
SE
660 /*
661 * weight = number of possible counters
662 *
663 * 1 = most constrained, only works on one counter
664 * wmax = least constrained, works on any counter
665 *
666 * assign events to counters starting with most
667 * constrained events.
668 */
669 wmax = x86_pmu.num_events;
670
671 /*
672 * when fixed event counters are present,
673 * wmax is incremented by 1 to account
674 * for one more choice
675 */
676 if (x86_pmu.num_events_fixed)
677 wmax++;
678
8113070d 679 for (w = 1, num = n; num && w <= wmax; w++) {
1da53e02 680 /* for each event */
8113070d 681 for (i = 0; num && i < n; i++) {
81269a08 682 c = constraints[i];
1da53e02
SE
683 hwc = &cpuc->event_list[i]->hw;
684
272d30be 685 if (c->weight != w)
1da53e02
SE
686 continue;
687
984b3f57 688 for_each_set_bit(j, c->idxmsk, X86_PMC_IDX_MAX) {
1da53e02
SE
689 if (!test_bit(j, used_mask))
690 break;
691 }
692
693 if (j == X86_PMC_IDX_MAX)
694 break;
1da53e02 695
34538ee7 696 __set_bit(j, used_mask);
8113070d 697
1da53e02
SE
698 if (assign)
699 assign[i] = j;
700 num--;
701 }
702 }
8113070d 703done:
1da53e02
SE
704 /*
705 * scheduling failed or is just a simulation,
706 * free resources if necessary
707 */
708 if (!assign || num) {
709 for (i = 0; i < n; i++) {
710 if (x86_pmu.put_event_constraints)
711 x86_pmu.put_event_constraints(cpuc, cpuc->event_list[i]);
712 }
713 }
714 return num ? -ENOSPC : 0;
715}
716
717/*
718 * dogrp: true if must collect siblings events (group)
719 * returns total number of events and error code
720 */
721static int collect_events(struct cpu_hw_events *cpuc, struct perf_event *leader, bool dogrp)
722{
723 struct perf_event *event;
724 int n, max_count;
725
726 max_count = x86_pmu.num_events + x86_pmu.num_events_fixed;
727
728 /* current number of events already accepted */
729 n = cpuc->n_events;
730
731 if (is_x86_event(leader)) {
732 if (n >= max_count)
733 return -ENOSPC;
734 cpuc->event_list[n] = leader;
735 n++;
736 }
737 if (!dogrp)
738 return n;
739
740 list_for_each_entry(event, &leader->sibling_list, group_entry) {
741 if (!is_x86_event(event) ||
8113070d 742 event->state <= PERF_EVENT_STATE_OFF)
1da53e02
SE
743 continue;
744
745 if (n >= max_count)
746 return -ENOSPC;
747
748 cpuc->event_list[n] = event;
749 n++;
750 }
751 return n;
752}
753
1da53e02 754static inline void x86_assign_hw_event(struct perf_event *event,
447a194b 755 struct cpu_hw_events *cpuc, int i)
1da53e02 756{
447a194b
SE
757 struct hw_perf_event *hwc = &event->hw;
758
759 hwc->idx = cpuc->assign[i];
760 hwc->last_cpu = smp_processor_id();
761 hwc->last_tag = ++cpuc->tags[i];
1da53e02
SE
762
763 if (hwc->idx == X86_PMC_IDX_FIXED_BTS) {
764 hwc->config_base = 0;
765 hwc->event_base = 0;
766 } else if (hwc->idx >= X86_PMC_IDX_FIXED) {
767 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
768 /*
769 * We set it so that event_base + idx in wrmsr/rdmsr maps to
770 * MSR_ARCH_PERFMON_FIXED_CTR0 ... CTR2:
771 */
772 hwc->event_base =
773 MSR_ARCH_PERFMON_FIXED_CTR0 - X86_PMC_IDX_FIXED;
774 } else {
775 hwc->config_base = x86_pmu.eventsel;
776 hwc->event_base = x86_pmu.perfctr;
777 }
778}
779
447a194b
SE
780static inline int match_prev_assignment(struct hw_perf_event *hwc,
781 struct cpu_hw_events *cpuc,
782 int i)
783{
784 return hwc->idx == cpuc->assign[i] &&
785 hwc->last_cpu == smp_processor_id() &&
786 hwc->last_tag == cpuc->tags[i];
787}
788
c08053e6 789static int x86_pmu_start(struct perf_event *event);
d76a0812 790static void x86_pmu_stop(struct perf_event *event);
2e841873 791
9e35ad38 792void hw_perf_enable(void)
ee06094f 793{
1da53e02
SE
794 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
795 struct perf_event *event;
796 struct hw_perf_event *hwc;
797 int i;
798
85cf9dba 799 if (!x86_pmu_initialized())
2b9ff0db 800 return;
1a6e21f7
PZ
801
802 if (cpuc->enabled)
803 return;
804
1da53e02 805 if (cpuc->n_added) {
19925ce7 806 int n_running = cpuc->n_events - cpuc->n_added;
1da53e02
SE
807 /*
808 * apply assignment obtained either from
809 * hw_perf_group_sched_in() or x86_pmu_enable()
810 *
811 * step1: save events moving to new counters
812 * step2: reprogram moved events into new counters
813 */
19925ce7 814 for (i = 0; i < n_running; i++) {
1da53e02
SE
815 event = cpuc->event_list[i];
816 hwc = &event->hw;
817
447a194b
SE
818 /*
819 * we can avoid reprogramming counter if:
820 * - assigned same counter as last time
821 * - running on same CPU as last time
822 * - no other event has used the counter since
823 */
824 if (hwc->idx == -1 ||
825 match_prev_assignment(hwc, cpuc, i))
1da53e02
SE
826 continue;
827
d76a0812 828 x86_pmu_stop(event);
1da53e02
SE
829 }
830
831 for (i = 0; i < cpuc->n_events; i++) {
1da53e02
SE
832 event = cpuc->event_list[i];
833 hwc = &event->hw;
834
45e16a68 835 if (!match_prev_assignment(hwc, cpuc, i))
447a194b 836 x86_assign_hw_event(event, cpuc, i);
45e16a68
PZ
837 else if (i < n_running)
838 continue;
1da53e02 839
c08053e6 840 x86_pmu_start(event);
1da53e02
SE
841 }
842 cpuc->n_added = 0;
843 perf_events_lapic_init();
844 }
1a6e21f7
PZ
845
846 cpuc->enabled = 1;
847 barrier();
848
9e35ad38 849 x86_pmu.enable_all();
ee06094f 850}
ee06094f 851
aff3d91a 852static inline void __x86_pmu_enable_event(struct hw_perf_event *hwc)
b0f3f28e 853{
aff3d91a 854 (void)checking_wrmsrl(hwc->config_base + hwc->idx,
bb1165d6 855 hwc->config | ARCH_PERFMON_EVENTSEL_ENABLE);
b0f3f28e
PZ
856}
857
aff3d91a 858static inline void x86_pmu_disable_event(struct perf_event *event)
b0f3f28e 859{
aff3d91a
PZ
860 struct hw_perf_event *hwc = &event->hw;
861 (void)checking_wrmsrl(hwc->config_base + hwc->idx, hwc->config);
b0f3f28e
PZ
862}
863
245b2e70 864static DEFINE_PER_CPU(u64 [X86_PMC_IDX_MAX], pmc_prev_left);
241771ef 865
ee06094f
IM
866/*
867 * Set the next IRQ period, based on the hwc->period_left value.
cdd6c482 868 * To be called with the event disabled in hw:
ee06094f 869 */
e4abb5d4 870static int
07088edb 871x86_perf_event_set_period(struct perf_event *event)
241771ef 872{
07088edb 873 struct hw_perf_event *hwc = &event->hw;
2f18d1e8 874 s64 left = atomic64_read(&hwc->period_left);
e4abb5d4 875 s64 period = hwc->sample_period;
07088edb 876 int err, ret = 0, idx = hwc->idx;
ee06094f 877
30dd568c
MM
878 if (idx == X86_PMC_IDX_FIXED_BTS)
879 return 0;
880
ee06094f 881 /*
af901ca1 882 * If we are way outside a reasonable range then just skip forward:
ee06094f
IM
883 */
884 if (unlikely(left <= -period)) {
885 left = period;
886 atomic64_set(&hwc->period_left, left);
9e350de3 887 hwc->last_period = period;
e4abb5d4 888 ret = 1;
ee06094f
IM
889 }
890
891 if (unlikely(left <= 0)) {
892 left += period;
893 atomic64_set(&hwc->period_left, left);
9e350de3 894 hwc->last_period = period;
e4abb5d4 895 ret = 1;
ee06094f 896 }
1c80f4b5 897 /*
dfc65094 898 * Quirk: certain CPUs dont like it if just 1 hw_event is left:
1c80f4b5
IM
899 */
900 if (unlikely(left < 2))
901 left = 2;
241771ef 902
e4abb5d4
PZ
903 if (left > x86_pmu.max_period)
904 left = x86_pmu.max_period;
905
245b2e70 906 per_cpu(pmc_prev_left[idx], smp_processor_id()) = left;
ee06094f
IM
907
908 /*
cdd6c482 909 * The hw event starts counting from this event offset,
ee06094f
IM
910 * mark it to be able to extra future deltas:
911 */
2f18d1e8 912 atomic64_set(&hwc->prev_count, (u64)-left);
ee06094f 913
cdd6c482
IM
914 err = checking_wrmsrl(hwc->event_base + idx,
915 (u64)(-left) & x86_pmu.event_mask);
e4abb5d4 916
cdd6c482 917 perf_event_update_userpage(event);
194002b2 918
e4abb5d4 919 return ret;
2f18d1e8
IM
920}
921
aff3d91a 922static void x86_pmu_enable_event(struct perf_event *event)
7c90cc45 923{
cdd6c482 924 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
7c90cc45 925 if (cpuc->enabled)
aff3d91a 926 __x86_pmu_enable_event(&event->hw);
241771ef
IM
927}
928
b690081d 929/*
1da53e02
SE
930 * activate a single event
931 *
932 * The event is added to the group of enabled events
933 * but only if it can be scehduled with existing events.
934 *
935 * Called with PMU disabled. If successful and return value 1,
936 * then guaranteed to call perf_enable() and hw_perf_enable()
fe9081cc
PZ
937 */
938static int x86_pmu_enable(struct perf_event *event)
939{
940 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1da53e02
SE
941 struct hw_perf_event *hwc;
942 int assign[X86_PMC_IDX_MAX];
943 int n, n0, ret;
fe9081cc 944
1da53e02 945 hwc = &event->hw;
fe9081cc 946
1da53e02
SE
947 n0 = cpuc->n_events;
948 n = collect_events(cpuc, event, false);
949 if (n < 0)
950 return n;
53b441a5 951
1da53e02
SE
952 ret = x86_schedule_events(cpuc, n, assign);
953 if (ret)
954 return ret;
955 /*
956 * copy new assignment, now we know it is possible
957 * will be used by hw_perf_enable()
958 */
959 memcpy(cpuc->assign, assign, n*sizeof(int));
7e2ae347 960
1da53e02 961 cpuc->n_events = n;
356e1f2e 962 cpuc->n_added += n - n0;
95cdd2e7
IM
963
964 return 0;
241771ef
IM
965}
966
d76a0812
SE
967static int x86_pmu_start(struct perf_event *event)
968{
c08053e6
PZ
969 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
970 int idx = event->hw.idx;
971
972 if (idx == -1)
d76a0812
SE
973 return -EAGAIN;
974
07088edb 975 x86_perf_event_set_period(event);
c08053e6
PZ
976 cpuc->events[idx] = event;
977 __set_bit(idx, cpuc->active_mask);
aff3d91a 978 x86_pmu.enable(event);
c08053e6 979 perf_event_update_userpage(event);
d76a0812
SE
980
981 return 0;
982}
983
cdd6c482 984static void x86_pmu_unthrottle(struct perf_event *event)
a78ac325 985{
71e2d282
PZ
986 int ret = x86_pmu_start(event);
987 WARN_ON_ONCE(ret);
a78ac325
PZ
988}
989
cdd6c482 990void perf_event_print_debug(void)
241771ef 991{
2f18d1e8 992 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
cdd6c482 993 struct cpu_hw_events *cpuc;
5bb9efe3 994 unsigned long flags;
1e125676
IM
995 int cpu, idx;
996
cdd6c482 997 if (!x86_pmu.num_events)
1e125676 998 return;
241771ef 999
5bb9efe3 1000 local_irq_save(flags);
241771ef
IM
1001
1002 cpu = smp_processor_id();
cdd6c482 1003 cpuc = &per_cpu(cpu_hw_events, cpu);
241771ef 1004
faa28ae0 1005 if (x86_pmu.version >= 2) {
a1ef58f4
JSR
1006 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
1007 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
1008 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
1009 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
1010
1011 pr_info("\n");
1012 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
1013 pr_info("CPU#%d: status: %016llx\n", cpu, status);
1014 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
1015 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
f87ad35d 1016 }
1da53e02 1017 pr_info("CPU#%d: active: %016llx\n", cpu, *(u64 *)cpuc->active_mask);
241771ef 1018
cdd6c482 1019 for (idx = 0; idx < x86_pmu.num_events; idx++) {
4a06bd85
RR
1020 rdmsrl(x86_pmu.eventsel + idx, pmc_ctrl);
1021 rdmsrl(x86_pmu.perfctr + idx, pmc_count);
241771ef 1022
245b2e70 1023 prev_left = per_cpu(pmc_prev_left[idx], cpu);
241771ef 1024
a1ef58f4 1025 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
241771ef 1026 cpu, idx, pmc_ctrl);
a1ef58f4 1027 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
241771ef 1028 cpu, idx, pmc_count);
a1ef58f4 1029 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
ee06094f 1030 cpu, idx, prev_left);
241771ef 1031 }
cdd6c482 1032 for (idx = 0; idx < x86_pmu.num_events_fixed; idx++) {
2f18d1e8
IM
1033 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
1034
a1ef58f4 1035 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
2f18d1e8
IM
1036 cpu, idx, pmc_count);
1037 }
5bb9efe3 1038 local_irq_restore(flags);
241771ef
IM
1039}
1040
d76a0812 1041static void x86_pmu_stop(struct perf_event *event)
241771ef 1042{
d76a0812 1043 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
cdd6c482 1044 struct hw_perf_event *hwc = &event->hw;
2e841873 1045 int idx = hwc->idx;
241771ef 1046
71e2d282
PZ
1047 if (!__test_and_clear_bit(idx, cpuc->active_mask))
1048 return;
1049
aff3d91a 1050 x86_pmu.disable(event);
241771ef 1051
ee06094f 1052 /*
cdd6c482 1053 * Drain the remaining delta count out of a event
ee06094f
IM
1054 * that we are disabling:
1055 */
cc2ad4ba 1056 x86_perf_event_update(event);
30dd568c 1057
cdd6c482 1058 cpuc->events[idx] = NULL;
2e841873
PZ
1059}
1060
1061static void x86_pmu_disable(struct perf_event *event)
1062{
1063 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1064 int i;
1065
d76a0812 1066 x86_pmu_stop(event);
194002b2 1067
1da53e02
SE
1068 for (i = 0; i < cpuc->n_events; i++) {
1069 if (event == cpuc->event_list[i]) {
1070
1071 if (x86_pmu.put_event_constraints)
1072 x86_pmu.put_event_constraints(cpuc, event);
1073
1074 while (++i < cpuc->n_events)
1075 cpuc->event_list[i-1] = cpuc->event_list[i];
1076
1077 --cpuc->n_events;
6c9687ab 1078 break;
1da53e02
SE
1079 }
1080 }
cdd6c482 1081 perf_event_update_userpage(event);
241771ef
IM
1082}
1083
8c48e444 1084static int x86_pmu_handle_irq(struct pt_regs *regs)
a29aa8a7 1085{
df1a132b 1086 struct perf_sample_data data;
cdd6c482
IM
1087 struct cpu_hw_events *cpuc;
1088 struct perf_event *event;
1089 struct hw_perf_event *hwc;
11d1578f 1090 int idx, handled = 0;
9029a5e3
IM
1091 u64 val;
1092
dc1d628a 1093 perf_sample_data_init(&data, 0);
df1a132b 1094
cdd6c482 1095 cpuc = &__get_cpu_var(cpu_hw_events);
962bf7a6 1096
cdd6c482 1097 for (idx = 0; idx < x86_pmu.num_events; idx++) {
43f6201a 1098 if (!test_bit(idx, cpuc->active_mask))
a29aa8a7 1099 continue;
962bf7a6 1100
cdd6c482
IM
1101 event = cpuc->events[idx];
1102 hwc = &event->hw;
a4016a79 1103
cc2ad4ba 1104 val = x86_perf_event_update(event);
cdd6c482 1105 if (val & (1ULL << (x86_pmu.event_bits - 1)))
48e22d56 1106 continue;
962bf7a6 1107
9e350de3 1108 /*
cdd6c482 1109 * event overflow
9e350de3
PZ
1110 */
1111 handled = 1;
cdd6c482 1112 data.period = event->hw.last_period;
9e350de3 1113
07088edb 1114 if (!x86_perf_event_set_period(event))
e4abb5d4
PZ
1115 continue;
1116
cdd6c482 1117 if (perf_event_overflow(event, 1, &data, regs))
71e2d282 1118 x86_pmu_stop(event);
a29aa8a7 1119 }
962bf7a6 1120
9e350de3
PZ
1121 if (handled)
1122 inc_irq_stat(apic_perf_irqs);
1123
a29aa8a7
RR
1124 return handled;
1125}
39d81eab 1126
b6276f35
PZ
1127void smp_perf_pending_interrupt(struct pt_regs *regs)
1128{
1129 irq_enter();
1130 ack_APIC_irq();
1131 inc_irq_stat(apic_pending_irqs);
cdd6c482 1132 perf_event_do_pending();
b6276f35
PZ
1133 irq_exit();
1134}
1135
cdd6c482 1136void set_perf_event_pending(void)
b6276f35 1137{
04da8a43 1138#ifdef CONFIG_X86_LOCAL_APIC
7d428966
PZ
1139 if (!x86_pmu.apic || !x86_pmu_initialized())
1140 return;
1141
b6276f35 1142 apic->send_IPI_self(LOCAL_PENDING_VECTOR);
04da8a43 1143#endif
b6276f35
PZ
1144}
1145
cdd6c482 1146void perf_events_lapic_init(void)
241771ef 1147{
04da8a43
IM
1148#ifdef CONFIG_X86_LOCAL_APIC
1149 if (!x86_pmu.apic || !x86_pmu_initialized())
241771ef 1150 return;
85cf9dba 1151
241771ef 1152 /*
c323d95f 1153 * Always use NMI for PMU
241771ef 1154 */
c323d95f 1155 apic_write(APIC_LVTPC, APIC_DM_NMI);
04da8a43 1156#endif
241771ef
IM
1157}
1158
1159static int __kprobes
cdd6c482 1160perf_event_nmi_handler(struct notifier_block *self,
241771ef
IM
1161 unsigned long cmd, void *__args)
1162{
1163 struct die_args *args = __args;
1164 struct pt_regs *regs;
b0f3f28e 1165
cdd6c482 1166 if (!atomic_read(&active_events))
63a809a2
PZ
1167 return NOTIFY_DONE;
1168
b0f3f28e
PZ
1169 switch (cmd) {
1170 case DIE_NMI:
1171 case DIE_NMI_IPI:
1172 break;
241771ef 1173
b0f3f28e 1174 default:
241771ef 1175 return NOTIFY_DONE;
b0f3f28e 1176 }
241771ef
IM
1177
1178 regs = args->regs;
1179
04da8a43 1180#ifdef CONFIG_X86_LOCAL_APIC
241771ef 1181 apic_write(APIC_LVTPC, APIC_DM_NMI);
04da8a43 1182#endif
a4016a79
PZ
1183 /*
1184 * Can't rely on the handled return value to say it was our NMI, two
cdd6c482 1185 * events could trigger 'simultaneously' raising two back-to-back NMIs.
a4016a79
PZ
1186 *
1187 * If the first NMI handles both, the latter will be empty and daze
1188 * the CPU.
1189 */
a3288106 1190 x86_pmu.handle_irq(regs);
241771ef 1191
a4016a79 1192 return NOTIFY_STOP;
241771ef
IM
1193}
1194
f22f54f4
PZ
1195static __read_mostly struct notifier_block perf_event_nmi_notifier = {
1196 .notifier_call = perf_event_nmi_handler,
1197 .next = NULL,
1198 .priority = 1
1199};
1200
63b14649 1201static struct event_constraint unconstrained;
38331f62 1202static struct event_constraint emptyconstraint;
63b14649 1203
63b14649 1204static struct event_constraint *
f22f54f4 1205x86_get_event_constraints(struct cpu_hw_events *cpuc, struct perf_event *event)
1da53e02 1206{
63b14649 1207 struct event_constraint *c;
1da53e02 1208
1da53e02
SE
1209 if (x86_pmu.event_constraints) {
1210 for_each_event_constraint(c, x86_pmu.event_constraints) {
63b14649
PZ
1211 if ((event->hw.config & c->cmask) == c->code)
1212 return c;
1da53e02
SE
1213 }
1214 }
63b14649
PZ
1215
1216 return &unconstrained;
1da53e02
SE
1217}
1218
1da53e02 1219static int x86_event_sched_in(struct perf_event *event,
6e37738a 1220 struct perf_cpu_context *cpuctx)
1da53e02
SE
1221{
1222 int ret = 0;
1223
1224 event->state = PERF_EVENT_STATE_ACTIVE;
6e37738a 1225 event->oncpu = smp_processor_id();
1da53e02
SE
1226 event->tstamp_running += event->ctx->time - event->tstamp_stopped;
1227
1228 if (!is_x86_event(event))
1229 ret = event->pmu->enable(event);
1230
1231 if (!ret && !is_software_event(event))
1232 cpuctx->active_oncpu++;
1233
1234 if (!ret && event->attr.exclusive)
1235 cpuctx->exclusive = 1;
1236
1237 return ret;
1238}
1239
1240static void x86_event_sched_out(struct perf_event *event,
6e37738a 1241 struct perf_cpu_context *cpuctx)
1da53e02
SE
1242{
1243 event->state = PERF_EVENT_STATE_INACTIVE;
1244 event->oncpu = -1;
1245
1246 if (!is_x86_event(event))
1247 event->pmu->disable(event);
1248
1249 event->tstamp_running -= event->ctx->time - event->tstamp_stopped;
1250
1251 if (!is_software_event(event))
1252 cpuctx->active_oncpu--;
1253
1254 if (event->attr.exclusive || !cpuctx->active_oncpu)
1255 cpuctx->exclusive = 0;
1256}
1257
1258/*
1259 * Called to enable a whole group of events.
1260 * Returns 1 if the group was enabled, or -EAGAIN if it could not be.
1261 * Assumes the caller has disabled interrupts and has
1262 * frozen the PMU with hw_perf_save_disable.
1263 *
1264 * called with PMU disabled. If successful and return value 1,
1265 * then guaranteed to call perf_enable() and hw_perf_enable()
1266 */
1267int hw_perf_group_sched_in(struct perf_event *leader,
1268 struct perf_cpu_context *cpuctx,
6e37738a 1269 struct perf_event_context *ctx)
1da53e02 1270{
6e37738a 1271 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
1da53e02
SE
1272 struct perf_event *sub;
1273 int assign[X86_PMC_IDX_MAX];
1274 int n0, n1, ret;
1275
1276 /* n0 = total number of events */
1277 n0 = collect_events(cpuc, leader, true);
1278 if (n0 < 0)
1279 return n0;
1280
1281 ret = x86_schedule_events(cpuc, n0, assign);
1282 if (ret)
1283 return ret;
1284
6e37738a 1285 ret = x86_event_sched_in(leader, cpuctx);
1da53e02
SE
1286 if (ret)
1287 return ret;
1288
1289 n1 = 1;
1290 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
8113070d 1291 if (sub->state > PERF_EVENT_STATE_OFF) {
6e37738a 1292 ret = x86_event_sched_in(sub, cpuctx);
1da53e02
SE
1293 if (ret)
1294 goto undo;
1295 ++n1;
1296 }
1297 }
1298 /*
1299 * copy new assignment, now we know it is possible
1300 * will be used by hw_perf_enable()
1301 */
1302 memcpy(cpuc->assign, assign, n0*sizeof(int));
1303
1304 cpuc->n_events = n0;
356e1f2e 1305 cpuc->n_added += n1;
1da53e02
SE
1306 ctx->nr_active += n1;
1307
1308 /*
1309 * 1 means successful and events are active
1310 * This is not quite true because we defer
1311 * actual activation until hw_perf_enable() but
1312 * this way we* ensure caller won't try to enable
1313 * individual events
1314 */
1315 return 1;
1316undo:
6e37738a 1317 x86_event_sched_out(leader, cpuctx);
1da53e02
SE
1318 n0 = 1;
1319 list_for_each_entry(sub, &leader->sibling_list, group_entry) {
1320 if (sub->state == PERF_EVENT_STATE_ACTIVE) {
6e37738a 1321 x86_event_sched_out(sub, cpuctx);
1da53e02
SE
1322 if (++n0 == n1)
1323 break;
1324 }
1325 }
1326 return ret;
1327}
1328
f22f54f4
PZ
1329#include "perf_event_amd.c"
1330#include "perf_event_p6.c"
1331#include "perf_event_intel.c"
f87ad35d 1332
3f6da390
PZ
1333static int __cpuinit
1334x86_pmu_notifier(struct notifier_block *self, unsigned long action, void *hcpu)
1335{
1336 unsigned int cpu = (long)hcpu;
1337
1338 switch (action & ~CPU_TASKS_FROZEN) {
1339 case CPU_UP_PREPARE:
1340 if (x86_pmu.cpu_prepare)
1341 x86_pmu.cpu_prepare(cpu);
1342 break;
1343
1344 case CPU_STARTING:
1345 if (x86_pmu.cpu_starting)
1346 x86_pmu.cpu_starting(cpu);
1347 break;
1348
1349 case CPU_DYING:
1350 if (x86_pmu.cpu_dying)
1351 x86_pmu.cpu_dying(cpu);
1352 break;
1353
1354 case CPU_DEAD:
1355 if (x86_pmu.cpu_dead)
1356 x86_pmu.cpu_dead(cpu);
1357 break;
1358
1359 default:
1360 break;
1361 }
1362
1363 return NOTIFY_OK;
1364}
1365
12558038
CG
1366static void __init pmu_check_apic(void)
1367{
1368 if (cpu_has_apic)
1369 return;
1370
1371 x86_pmu.apic = 0;
1372 pr_info("no APIC, boot with the \"lapic\" boot parameter to force-enable it.\n");
1373 pr_info("no hardware sampling interrupt available.\n");
1374}
1375
cdd6c482 1376void __init init_hw_perf_events(void)
b56a3802 1377{
b622d644 1378 struct event_constraint *c;
72eae04d
RR
1379 int err;
1380
cdd6c482 1381 pr_info("Performance Events: ");
1123e3ad 1382
b56a3802
JSR
1383 switch (boot_cpu_data.x86_vendor) {
1384 case X86_VENDOR_INTEL:
72eae04d 1385 err = intel_pmu_init();
b56a3802 1386 break;
f87ad35d 1387 case X86_VENDOR_AMD:
72eae04d 1388 err = amd_pmu_init();
f87ad35d 1389 break;
4138960a
RR
1390 default:
1391 return;
b56a3802 1392 }
1123e3ad 1393 if (err != 0) {
cdd6c482 1394 pr_cont("no PMU driver, software events only.\n");
b56a3802 1395 return;
1123e3ad 1396 }
b56a3802 1397
12558038
CG
1398 pmu_check_apic();
1399
1123e3ad 1400 pr_cont("%s PMU driver.\n", x86_pmu.name);
faa28ae0 1401
cdd6c482
IM
1402 if (x86_pmu.num_events > X86_PMC_MAX_GENERIC) {
1403 WARN(1, KERN_ERR "hw perf events %d > max(%d), clipping!",
1404 x86_pmu.num_events, X86_PMC_MAX_GENERIC);
1405 x86_pmu.num_events = X86_PMC_MAX_GENERIC;
241771ef 1406 }
cdd6c482
IM
1407 perf_event_mask = (1 << x86_pmu.num_events) - 1;
1408 perf_max_events = x86_pmu.num_events;
241771ef 1409
cdd6c482
IM
1410 if (x86_pmu.num_events_fixed > X86_PMC_MAX_FIXED) {
1411 WARN(1, KERN_ERR "hw perf events fixed %d > max(%d), clipping!",
1412 x86_pmu.num_events_fixed, X86_PMC_MAX_FIXED);
1413 x86_pmu.num_events_fixed = X86_PMC_MAX_FIXED;
703e937c 1414 }
862a1a5f 1415
cdd6c482
IM
1416 perf_event_mask |=
1417 ((1LL << x86_pmu.num_events_fixed)-1) << X86_PMC_IDX_FIXED;
1418 x86_pmu.intel_ctrl = perf_event_mask;
241771ef 1419
cdd6c482
IM
1420 perf_events_lapic_init();
1421 register_die_notifier(&perf_event_nmi_notifier);
1123e3ad 1422
63b14649 1423 unconstrained = (struct event_constraint)
fce877e3
PZ
1424 __EVENT_CONSTRAINT(0, (1ULL << x86_pmu.num_events) - 1,
1425 0, x86_pmu.num_events);
63b14649 1426
b622d644
PZ
1427 if (x86_pmu.event_constraints) {
1428 for_each_event_constraint(c, x86_pmu.event_constraints) {
1429 if (c->cmask != INTEL_ARCH_FIXED_MASK)
1430 continue;
1431
1432 c->idxmsk64 |= (1ULL << x86_pmu.num_events) - 1;
1433 c->weight += x86_pmu.num_events;
1434 }
1435 }
1436
57c0c15b
IM
1437 pr_info("... version: %d\n", x86_pmu.version);
1438 pr_info("... bit width: %d\n", x86_pmu.event_bits);
1439 pr_info("... generic registers: %d\n", x86_pmu.num_events);
1440 pr_info("... value mask: %016Lx\n", x86_pmu.event_mask);
1441 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
1442 pr_info("... fixed-purpose events: %d\n", x86_pmu.num_events_fixed);
1443 pr_info("... event mask: %016Lx\n", perf_event_mask);
3f6da390
PZ
1444
1445 perf_cpu_notifier(x86_pmu_notifier);
241771ef 1446}
621a01ea 1447
cdd6c482 1448static inline void x86_pmu_read(struct perf_event *event)
ee06094f 1449{
cc2ad4ba 1450 x86_perf_event_update(event);
ee06094f
IM
1451}
1452
4aeb0b42
RR
1453static const struct pmu pmu = {
1454 .enable = x86_pmu_enable,
1455 .disable = x86_pmu_disable,
d76a0812
SE
1456 .start = x86_pmu_start,
1457 .stop = x86_pmu_stop,
4aeb0b42 1458 .read = x86_pmu_read,
a78ac325 1459 .unthrottle = x86_pmu_unthrottle,
621a01ea
IM
1460};
1461
1da53e02
SE
1462/*
1463 * validate a single event group
1464 *
1465 * validation include:
184f412c
IM
1466 * - check events are compatible which each other
1467 * - events do not compete for the same counter
1468 * - number of events <= number of counters
1da53e02
SE
1469 *
1470 * validation ensures the group can be loaded onto the
1471 * PMU if it was the only group available.
1472 */
fe9081cc
PZ
1473static int validate_group(struct perf_event *event)
1474{
1da53e02 1475 struct perf_event *leader = event->group_leader;
502568d5
PZ
1476 struct cpu_hw_events *fake_cpuc;
1477 int ret, n;
fe9081cc 1478
502568d5
PZ
1479 ret = -ENOMEM;
1480 fake_cpuc = kmalloc(sizeof(*fake_cpuc), GFP_KERNEL | __GFP_ZERO);
1481 if (!fake_cpuc)
1482 goto out;
fe9081cc 1483
1da53e02
SE
1484 /*
1485 * the event is not yet connected with its
1486 * siblings therefore we must first collect
1487 * existing siblings, then add the new event
1488 * before we can simulate the scheduling
1489 */
502568d5
PZ
1490 ret = -ENOSPC;
1491 n = collect_events(fake_cpuc, leader, true);
1da53e02 1492 if (n < 0)
502568d5 1493 goto out_free;
fe9081cc 1494
502568d5
PZ
1495 fake_cpuc->n_events = n;
1496 n = collect_events(fake_cpuc, event, false);
1da53e02 1497 if (n < 0)
502568d5 1498 goto out_free;
fe9081cc 1499
502568d5 1500 fake_cpuc->n_events = n;
1da53e02 1501
502568d5
PZ
1502 ret = x86_schedule_events(fake_cpuc, n, NULL);
1503
1504out_free:
1505 kfree(fake_cpuc);
1506out:
1507 return ret;
fe9081cc
PZ
1508}
1509
cdd6c482 1510const struct pmu *hw_perf_event_init(struct perf_event *event)
621a01ea 1511{
8113070d 1512 const struct pmu *tmp;
621a01ea
IM
1513 int err;
1514
cdd6c482 1515 err = __hw_perf_event_init(event);
fe9081cc 1516 if (!err) {
8113070d
SE
1517 /*
1518 * we temporarily connect event to its pmu
1519 * such that validate_group() can classify
1520 * it as an x86 event using is_x86_event()
1521 */
1522 tmp = event->pmu;
1523 event->pmu = &pmu;
1524
fe9081cc
PZ
1525 if (event->group_leader != event)
1526 err = validate_group(event);
8113070d
SE
1527
1528 event->pmu = tmp;
fe9081cc 1529 }
a1792cda 1530 if (err) {
cdd6c482
IM
1531 if (event->destroy)
1532 event->destroy(event);
9ea98e19 1533 return ERR_PTR(err);
a1792cda 1534 }
621a01ea 1535
4aeb0b42 1536 return &pmu;
621a01ea 1537}
d7d59fb3
PZ
1538
1539/*
1540 * callchain support
1541 */
1542
1543static inline
f9188e02 1544void callchain_store(struct perf_callchain_entry *entry, u64 ip)
d7d59fb3 1545{
f9188e02 1546 if (entry->nr < PERF_MAX_STACK_DEPTH)
d7d59fb3
PZ
1547 entry->ip[entry->nr++] = ip;
1548}
1549
245b2e70
TH
1550static DEFINE_PER_CPU(struct perf_callchain_entry, pmc_irq_entry);
1551static DEFINE_PER_CPU(struct perf_callchain_entry, pmc_nmi_entry);
d7d59fb3
PZ
1552
1553
1554static void
1555backtrace_warning_symbol(void *data, char *msg, unsigned long symbol)
1556{
1557 /* Ignore warnings */
1558}
1559
1560static void backtrace_warning(void *data, char *msg)
1561{
1562 /* Ignore warnings */
1563}
1564
1565static int backtrace_stack(void *data, char *name)
1566{
038e836e 1567 return 0;
d7d59fb3
PZ
1568}
1569
1570static void backtrace_address(void *data, unsigned long addr, int reliable)
1571{
1572 struct perf_callchain_entry *entry = data;
1573
1574 if (reliable)
1575 callchain_store(entry, addr);
1576}
1577
1578static const struct stacktrace_ops backtrace_ops = {
1579 .warning = backtrace_warning,
1580 .warning_symbol = backtrace_warning_symbol,
1581 .stack = backtrace_stack,
1582 .address = backtrace_address,
06d65bda 1583 .walk_stack = print_context_stack_bp,
d7d59fb3
PZ
1584};
1585
038e836e
IM
1586#include "../dumpstack.h"
1587
d7d59fb3
PZ
1588static void
1589perf_callchain_kernel(struct pt_regs *regs, struct perf_callchain_entry *entry)
1590{
f9188e02 1591 callchain_store(entry, PERF_CONTEXT_KERNEL);
038e836e 1592 callchain_store(entry, regs->ip);
d7d59fb3 1593
48b5ba9c 1594 dump_trace(NULL, regs, NULL, regs->bp, &backtrace_ops, entry);
d7d59fb3
PZ
1595}
1596
74193ef0
PZ
1597/*
1598 * best effort, GUP based copy_from_user() that assumes IRQ or NMI context
1599 */
1600static unsigned long
1601copy_from_user_nmi(void *to, const void __user *from, unsigned long n)
d7d59fb3 1602{
74193ef0
PZ
1603 unsigned long offset, addr = (unsigned long)from;
1604 int type = in_nmi() ? KM_NMI : KM_IRQ0;
1605 unsigned long size, len = 0;
1606 struct page *page;
1607 void *map;
d7d59fb3
PZ
1608 int ret;
1609
74193ef0
PZ
1610 do {
1611 ret = __get_user_pages_fast(addr, 1, 0, &page);
1612 if (!ret)
1613 break;
d7d59fb3 1614
74193ef0
PZ
1615 offset = addr & (PAGE_SIZE - 1);
1616 size = min(PAGE_SIZE - offset, n - len);
d7d59fb3 1617
74193ef0
PZ
1618 map = kmap_atomic(page, type);
1619 memcpy(to, map+offset, size);
1620 kunmap_atomic(map, type);
1621 put_page(page);
1622
1623 len += size;
1624 to += size;
1625 addr += size;
1626
1627 } while (len < n);
1628
1629 return len;
1630}
1631
1632static int copy_stack_frame(const void __user *fp, struct stack_frame *frame)
1633{
1634 unsigned long bytes;
1635
1636 bytes = copy_from_user_nmi(frame, fp, sizeof(*frame));
1637
1638 return bytes == sizeof(*frame);
d7d59fb3
PZ
1639}
1640
1641static void
1642perf_callchain_user(struct pt_regs *regs, struct perf_callchain_entry *entry)
1643{
1644 struct stack_frame frame;
1645 const void __user *fp;
1646
5a6cec3a
IM
1647 if (!user_mode(regs))
1648 regs = task_pt_regs(current);
1649
74193ef0 1650 fp = (void __user *)regs->bp;
d7d59fb3 1651
f9188e02 1652 callchain_store(entry, PERF_CONTEXT_USER);
d7d59fb3
PZ
1653 callchain_store(entry, regs->ip);
1654
f9188e02 1655 while (entry->nr < PERF_MAX_STACK_DEPTH) {
038e836e 1656 frame.next_frame = NULL;
d7d59fb3
PZ
1657 frame.return_address = 0;
1658
1659 if (!copy_stack_frame(fp, &frame))
1660 break;
1661
5a6cec3a 1662 if ((unsigned long)fp < regs->sp)
d7d59fb3
PZ
1663 break;
1664
1665 callchain_store(entry, frame.return_address);
038e836e 1666 fp = frame.next_frame;
d7d59fb3
PZ
1667 }
1668}
1669
1670static void
1671perf_do_callchain(struct pt_regs *regs, struct perf_callchain_entry *entry)
1672{
1673 int is_user;
1674
1675 if (!regs)
1676 return;
1677
1678 is_user = user_mode(regs);
1679
d7d59fb3
PZ
1680 if (is_user && current->state != TASK_RUNNING)
1681 return;
1682
1683 if (!is_user)
1684 perf_callchain_kernel(regs, entry);
1685
1686 if (current->mm)
1687 perf_callchain_user(regs, entry);
1688}
1689
1690struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
1691{
1692 struct perf_callchain_entry *entry;
1693
1694 if (in_nmi())
245b2e70 1695 entry = &__get_cpu_var(pmc_nmi_entry);
d7d59fb3 1696 else
245b2e70 1697 entry = &__get_cpu_var(pmc_irq_entry);
d7d59fb3
PZ
1698
1699 entry->nr = 0;
1700
1701 perf_do_callchain(regs, entry);
1702
1703 return entry;
1704}
5331d7b8 1705
dcd5c166 1706#ifdef CONFIG_EVENT_TRACING
5331d7b8
FW
1707void perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip, int skip)
1708{
1709 regs->ip = ip;
1710 /*
1711 * perf_arch_fetch_caller_regs adds another call, we need to increment
1712 * the skip level
1713 */
1714 regs->bp = rewind_frame_pointer(skip + 1);
1715 regs->cs = __KERNEL_CS;
1716 local_save_flags(regs->flags);
1717}
dcd5c166 1718#endif