perf_counter/x86: Remove the IRQ (non-NMI) handling bits
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / cpu / perf_counter.c
blob12cc05ed9f4886953e9f2b37661a1b6ec3c121fa
1 /*
2 * Performance counter x86 architecture code
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>
10 * For licencing details see kernel-base/COPYING
13 #include <linux/perf_counter.h>
14 #include <linux/capability.h>
15 #include <linux/notifier.h>
16 #include <linux/hardirq.h>
17 #include <linux/kprobes.h>
18 #include <linux/module.h>
19 #include <linux/kdebug.h>
20 #include <linux/sched.h>
21 #include <linux/uaccess.h>
23 #include <asm/apic.h>
24 #include <asm/stacktrace.h>
25 #include <asm/nmi.h>
27 static u64 perf_counter_mask __read_mostly;
29 struct cpu_hw_counters {
30 struct perf_counter *counters[X86_PMC_IDX_MAX];
31 unsigned long used_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
32 unsigned long active_mask[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
33 unsigned long interrupts;
34 int enabled;
38 * struct x86_pmu - generic x86 pmu
40 struct x86_pmu {
41 const char *name;
42 int version;
43 int (*handle_irq)(struct pt_regs *);
44 void (*disable_all)(void);
45 void (*enable_all)(void);
46 void (*enable)(struct hw_perf_counter *, int);
47 void (*disable)(struct hw_perf_counter *, int);
48 unsigned eventsel;
49 unsigned perfctr;
50 u64 (*event_map)(int);
51 u64 (*raw_event)(u64);
52 int max_events;
53 int num_counters;
54 int num_counters_fixed;
55 int counter_bits;
56 u64 counter_mask;
57 u64 max_period;
58 u64 intel_ctrl;
61 static struct x86_pmu x86_pmu __read_mostly;
63 static DEFINE_PER_CPU(struct cpu_hw_counters, cpu_hw_counters) = {
64 .enabled = 1,
68 * Intel PerfMon v3. Used on Core2 and later.
70 static const u64 intel_perfmon_event_map[] =
72 [PERF_COUNT_CPU_CYCLES] = 0x003c,
73 [PERF_COUNT_INSTRUCTIONS] = 0x00c0,
74 [PERF_COUNT_CACHE_REFERENCES] = 0x4f2e,
75 [PERF_COUNT_CACHE_MISSES] = 0x412e,
76 [PERF_COUNT_BRANCH_INSTRUCTIONS] = 0x00c4,
77 [PERF_COUNT_BRANCH_MISSES] = 0x00c5,
78 [PERF_COUNT_BUS_CYCLES] = 0x013c,
81 static u64 intel_pmu_event_map(int event)
83 return intel_perfmon_event_map[event];
86 static u64 intel_pmu_raw_event(u64 event)
88 #define CORE_EVNTSEL_EVENT_MASK 0x000000FFULL
89 #define CORE_EVNTSEL_UNIT_MASK 0x0000FF00ULL
90 #define CORE_EVNTSEL_EDGE_MASK 0x00040000ULL
91 #define CORE_EVNTSEL_INV_MASK 0x00800000ULL
92 #define CORE_EVNTSEL_COUNTER_MASK 0xFF000000ULL
94 #define CORE_EVNTSEL_MASK \
95 (CORE_EVNTSEL_EVENT_MASK | \
96 CORE_EVNTSEL_UNIT_MASK | \
97 CORE_EVNTSEL_EDGE_MASK | \
98 CORE_EVNTSEL_INV_MASK | \
99 CORE_EVNTSEL_COUNTER_MASK)
101 return event & CORE_EVNTSEL_MASK;
105 * AMD Performance Monitor K7 and later.
107 static const u64 amd_perfmon_event_map[] =
109 [PERF_COUNT_CPU_CYCLES] = 0x0076,
110 [PERF_COUNT_INSTRUCTIONS] = 0x00c0,
111 [PERF_COUNT_CACHE_REFERENCES] = 0x0080,
112 [PERF_COUNT_CACHE_MISSES] = 0x0081,
113 [PERF_COUNT_BRANCH_INSTRUCTIONS] = 0x00c4,
114 [PERF_COUNT_BRANCH_MISSES] = 0x00c5,
117 static u64 amd_pmu_event_map(int event)
119 return amd_perfmon_event_map[event];
122 static u64 amd_pmu_raw_event(u64 event)
124 #define K7_EVNTSEL_EVENT_MASK 0x7000000FFULL
125 #define K7_EVNTSEL_UNIT_MASK 0x00000FF00ULL
126 #define K7_EVNTSEL_EDGE_MASK 0x000040000ULL
127 #define K7_EVNTSEL_INV_MASK 0x000800000ULL
128 #define K7_EVNTSEL_COUNTER_MASK 0x0FF000000ULL
130 #define K7_EVNTSEL_MASK \
131 (K7_EVNTSEL_EVENT_MASK | \
132 K7_EVNTSEL_UNIT_MASK | \
133 K7_EVNTSEL_EDGE_MASK | \
134 K7_EVNTSEL_INV_MASK | \
135 K7_EVNTSEL_COUNTER_MASK)
137 return event & K7_EVNTSEL_MASK;
141 * Propagate counter elapsed time into the generic counter.
142 * Can only be executed on the CPU where the counter is active.
143 * Returns the delta events processed.
145 static u64
146 x86_perf_counter_update(struct perf_counter *counter,
147 struct hw_perf_counter *hwc, int idx)
149 int shift = 64 - x86_pmu.counter_bits;
150 u64 prev_raw_count, new_raw_count;
151 s64 delta;
154 * Careful: an NMI might modify the previous counter value.
156 * Our tactic to handle this is to first atomically read and
157 * exchange a new raw count - then add that new-prev delta
158 * count to the generic counter atomically:
160 again:
161 prev_raw_count = atomic64_read(&hwc->prev_count);
162 rdmsrl(hwc->counter_base + idx, new_raw_count);
164 if (atomic64_cmpxchg(&hwc->prev_count, prev_raw_count,
165 new_raw_count) != prev_raw_count)
166 goto again;
169 * Now we have the new raw value and have updated the prev
170 * timestamp already. We can now calculate the elapsed delta
171 * (counter-)time and add that to the generic counter.
173 * Careful, not all hw sign-extends above the physical width
174 * of the count.
176 delta = (new_raw_count << shift) - (prev_raw_count << shift);
177 delta >>= shift;
179 atomic64_add(delta, &counter->count);
180 atomic64_sub(delta, &hwc->period_left);
182 return new_raw_count;
185 static atomic_t active_counters;
186 static DEFINE_MUTEX(pmc_reserve_mutex);
188 static bool reserve_pmc_hardware(void)
190 int i;
192 if (nmi_watchdog == NMI_LOCAL_APIC)
193 disable_lapic_nmi_watchdog();
195 for (i = 0; i < x86_pmu.num_counters; i++) {
196 if (!reserve_perfctr_nmi(x86_pmu.perfctr + i))
197 goto perfctr_fail;
200 for (i = 0; i < x86_pmu.num_counters; i++) {
201 if (!reserve_evntsel_nmi(x86_pmu.eventsel + i))
202 goto eventsel_fail;
205 return true;
207 eventsel_fail:
208 for (i--; i >= 0; i--)
209 release_evntsel_nmi(x86_pmu.eventsel + i);
211 i = x86_pmu.num_counters;
213 perfctr_fail:
214 for (i--; i >= 0; i--)
215 release_perfctr_nmi(x86_pmu.perfctr + i);
217 if (nmi_watchdog == NMI_LOCAL_APIC)
218 enable_lapic_nmi_watchdog();
220 return false;
223 static void release_pmc_hardware(void)
225 int i;
227 for (i = 0; i < x86_pmu.num_counters; i++) {
228 release_perfctr_nmi(x86_pmu.perfctr + i);
229 release_evntsel_nmi(x86_pmu.eventsel + i);
232 if (nmi_watchdog == NMI_LOCAL_APIC)
233 enable_lapic_nmi_watchdog();
236 static void hw_perf_counter_destroy(struct perf_counter *counter)
238 if (atomic_dec_and_mutex_lock(&active_counters, &pmc_reserve_mutex)) {
239 release_pmc_hardware();
240 mutex_unlock(&pmc_reserve_mutex);
244 static inline int x86_pmu_initialized(void)
246 return x86_pmu.handle_irq != NULL;
250 * Setup the hardware configuration for a given attr_type
252 static int __hw_perf_counter_init(struct perf_counter *counter)
254 struct perf_counter_attr *attr = &counter->attr;
255 struct hw_perf_counter *hwc = &counter->hw;
256 int err;
258 if (!x86_pmu_initialized())
259 return -ENODEV;
261 err = 0;
262 if (!atomic_inc_not_zero(&active_counters)) {
263 mutex_lock(&pmc_reserve_mutex);
264 if (atomic_read(&active_counters) == 0 && !reserve_pmc_hardware())
265 err = -EBUSY;
266 else
267 atomic_inc(&active_counters);
268 mutex_unlock(&pmc_reserve_mutex);
270 if (err)
271 return err;
274 * Generate PMC IRQs:
275 * (keep 'enabled' bit clear for now)
277 hwc->config = ARCH_PERFMON_EVENTSEL_INT;
280 * Count user and OS events unless requested not to.
282 if (!attr->exclude_user)
283 hwc->config |= ARCH_PERFMON_EVENTSEL_USR;
284 if (!attr->exclude_kernel)
285 hwc->config |= ARCH_PERFMON_EVENTSEL_OS;
287 if (!hwc->sample_period)
288 hwc->sample_period = x86_pmu.max_period;
290 atomic64_set(&hwc->period_left, hwc->sample_period);
293 * Raw event type provide the config in the event structure
295 if (perf_event_raw(attr)) {
296 hwc->config |= x86_pmu.raw_event(perf_event_config(attr));
297 } else {
298 if (perf_event_id(attr) >= x86_pmu.max_events)
299 return -EINVAL;
301 * The generic map:
303 hwc->config |= x86_pmu.event_map(perf_event_id(attr));
306 counter->destroy = hw_perf_counter_destroy;
308 return 0;
311 static void intel_pmu_disable_all(void)
313 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, 0);
316 static void amd_pmu_disable_all(void)
318 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
319 int idx;
321 if (!cpuc->enabled)
322 return;
324 cpuc->enabled = 0;
326 * ensure we write the disable before we start disabling the
327 * counters proper, so that amd_pmu_enable_counter() does the
328 * right thing.
330 barrier();
332 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
333 u64 val;
335 if (!test_bit(idx, cpuc->active_mask))
336 continue;
337 rdmsrl(MSR_K7_EVNTSEL0 + idx, val);
338 if (!(val & ARCH_PERFMON_EVENTSEL0_ENABLE))
339 continue;
340 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
341 wrmsrl(MSR_K7_EVNTSEL0 + idx, val);
345 void hw_perf_disable(void)
347 if (!x86_pmu_initialized())
348 return;
349 return x86_pmu.disable_all();
352 static void intel_pmu_enable_all(void)
354 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, x86_pmu.intel_ctrl);
357 static void amd_pmu_enable_all(void)
359 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
360 int idx;
362 if (cpuc->enabled)
363 return;
365 cpuc->enabled = 1;
366 barrier();
368 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
369 u64 val;
371 if (!test_bit(idx, cpuc->active_mask))
372 continue;
373 rdmsrl(MSR_K7_EVNTSEL0 + idx, val);
374 if (val & ARCH_PERFMON_EVENTSEL0_ENABLE)
375 continue;
376 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
377 wrmsrl(MSR_K7_EVNTSEL0 + idx, val);
381 void hw_perf_enable(void)
383 if (!x86_pmu_initialized())
384 return;
385 x86_pmu.enable_all();
388 static inline u64 intel_pmu_get_status(void)
390 u64 status;
392 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
394 return status;
397 static inline void intel_pmu_ack_status(u64 ack)
399 wrmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, ack);
402 static inline void x86_pmu_enable_counter(struct hw_perf_counter *hwc, int idx)
404 int err;
405 err = checking_wrmsrl(hwc->config_base + idx,
406 hwc->config | ARCH_PERFMON_EVENTSEL0_ENABLE);
409 static inline void x86_pmu_disable_counter(struct hw_perf_counter *hwc, int idx)
411 int err;
412 err = checking_wrmsrl(hwc->config_base + idx,
413 hwc->config);
416 static inline void
417 intel_pmu_disable_fixed(struct hw_perf_counter *hwc, int __idx)
419 int idx = __idx - X86_PMC_IDX_FIXED;
420 u64 ctrl_val, mask;
421 int err;
423 mask = 0xfULL << (idx * 4);
425 rdmsrl(hwc->config_base, ctrl_val);
426 ctrl_val &= ~mask;
427 err = checking_wrmsrl(hwc->config_base, ctrl_val);
430 static inline void
431 intel_pmu_disable_counter(struct hw_perf_counter *hwc, int idx)
433 if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL)) {
434 intel_pmu_disable_fixed(hwc, idx);
435 return;
438 x86_pmu_disable_counter(hwc, idx);
441 static inline void
442 amd_pmu_disable_counter(struct hw_perf_counter *hwc, int idx)
444 x86_pmu_disable_counter(hwc, idx);
447 static DEFINE_PER_CPU(u64, prev_left[X86_PMC_IDX_MAX]);
450 * Set the next IRQ period, based on the hwc->period_left value.
451 * To be called with the counter disabled in hw:
453 static int
454 x86_perf_counter_set_period(struct perf_counter *counter,
455 struct hw_perf_counter *hwc, int idx)
457 s64 left = atomic64_read(&hwc->period_left);
458 s64 period = hwc->sample_period;
459 int err, ret = 0;
462 * If we are way outside a reasoable range then just skip forward:
464 if (unlikely(left <= -period)) {
465 left = period;
466 atomic64_set(&hwc->period_left, left);
467 ret = 1;
470 if (unlikely(left <= 0)) {
471 left += period;
472 atomic64_set(&hwc->period_left, left);
473 ret = 1;
476 * Quirk: certain CPUs dont like it if just 1 event is left:
478 if (unlikely(left < 2))
479 left = 2;
481 if (left > x86_pmu.max_period)
482 left = x86_pmu.max_period;
484 per_cpu(prev_left[idx], smp_processor_id()) = left;
487 * The hw counter starts counting from this counter offset,
488 * mark it to be able to extra future deltas:
490 atomic64_set(&hwc->prev_count, (u64)-left);
492 err = checking_wrmsrl(hwc->counter_base + idx,
493 (u64)(-left) & x86_pmu.counter_mask);
495 return ret;
498 static inline void
499 intel_pmu_enable_fixed(struct hw_perf_counter *hwc, int __idx)
501 int idx = __idx - X86_PMC_IDX_FIXED;
502 u64 ctrl_val, bits, mask;
503 int err;
506 * Enable IRQ generation (0x8),
507 * and enable ring-3 counting (0x2) and ring-0 counting (0x1)
508 * if requested:
510 bits = 0x8ULL;
511 if (hwc->config & ARCH_PERFMON_EVENTSEL_USR)
512 bits |= 0x2;
513 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS)
514 bits |= 0x1;
515 bits <<= (idx * 4);
516 mask = 0xfULL << (idx * 4);
518 rdmsrl(hwc->config_base, ctrl_val);
519 ctrl_val &= ~mask;
520 ctrl_val |= bits;
521 err = checking_wrmsrl(hwc->config_base, ctrl_val);
524 static void intel_pmu_enable_counter(struct hw_perf_counter *hwc, int idx)
526 if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL)) {
527 intel_pmu_enable_fixed(hwc, idx);
528 return;
531 x86_pmu_enable_counter(hwc, idx);
534 static void amd_pmu_enable_counter(struct hw_perf_counter *hwc, int idx)
536 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
538 if (cpuc->enabled)
539 x86_pmu_enable_counter(hwc, idx);
540 else
541 x86_pmu_disable_counter(hwc, idx);
544 static int
545 fixed_mode_idx(struct perf_counter *counter, struct hw_perf_counter *hwc)
547 unsigned int event;
549 if (!x86_pmu.num_counters_fixed)
550 return -1;
552 event = hwc->config & ARCH_PERFMON_EVENT_MASK;
554 if (unlikely(event == x86_pmu.event_map(PERF_COUNT_INSTRUCTIONS)))
555 return X86_PMC_IDX_FIXED_INSTRUCTIONS;
556 if (unlikely(event == x86_pmu.event_map(PERF_COUNT_CPU_CYCLES)))
557 return X86_PMC_IDX_FIXED_CPU_CYCLES;
558 if (unlikely(event == x86_pmu.event_map(PERF_COUNT_BUS_CYCLES)))
559 return X86_PMC_IDX_FIXED_BUS_CYCLES;
561 return -1;
565 * Find a PMC slot for the freshly enabled / scheduled in counter:
567 static int x86_pmu_enable(struct perf_counter *counter)
569 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
570 struct hw_perf_counter *hwc = &counter->hw;
571 int idx;
573 idx = fixed_mode_idx(counter, hwc);
574 if (idx >= 0) {
576 * Try to get the fixed counter, if that is already taken
577 * then try to get a generic counter:
579 if (test_and_set_bit(idx, cpuc->used_mask))
580 goto try_generic;
582 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
584 * We set it so that counter_base + idx in wrmsr/rdmsr maps to
585 * MSR_ARCH_PERFMON_FIXED_CTR0 ... CTR2:
587 hwc->counter_base =
588 MSR_ARCH_PERFMON_FIXED_CTR0 - X86_PMC_IDX_FIXED;
589 hwc->idx = idx;
590 } else {
591 idx = hwc->idx;
592 /* Try to get the previous generic counter again */
593 if (test_and_set_bit(idx, cpuc->used_mask)) {
594 try_generic:
595 idx = find_first_zero_bit(cpuc->used_mask,
596 x86_pmu.num_counters);
597 if (idx == x86_pmu.num_counters)
598 return -EAGAIN;
600 set_bit(idx, cpuc->used_mask);
601 hwc->idx = idx;
603 hwc->config_base = x86_pmu.eventsel;
604 hwc->counter_base = x86_pmu.perfctr;
607 perf_counters_lapic_init();
609 x86_pmu.disable(hwc, idx);
611 cpuc->counters[idx] = counter;
612 set_bit(idx, cpuc->active_mask);
614 x86_perf_counter_set_period(counter, hwc, idx);
615 x86_pmu.enable(hwc, idx);
617 return 0;
620 static void x86_pmu_unthrottle(struct perf_counter *counter)
622 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
623 struct hw_perf_counter *hwc = &counter->hw;
625 if (WARN_ON_ONCE(hwc->idx >= X86_PMC_IDX_MAX ||
626 cpuc->counters[hwc->idx] != counter))
627 return;
629 x86_pmu.enable(hwc, hwc->idx);
632 void perf_counter_print_debug(void)
634 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
635 struct cpu_hw_counters *cpuc;
636 unsigned long flags;
637 int cpu, idx;
639 if (!x86_pmu.num_counters)
640 return;
642 local_irq_save(flags);
644 cpu = smp_processor_id();
645 cpuc = &per_cpu(cpu_hw_counters, cpu);
647 if (x86_pmu.version >= 2) {
648 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
649 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
650 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
651 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
653 pr_info("\n");
654 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
655 pr_info("CPU#%d: status: %016llx\n", cpu, status);
656 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
657 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
659 pr_info("CPU#%d: used: %016llx\n", cpu, *(u64 *)cpuc->used_mask);
661 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
662 rdmsrl(x86_pmu.eventsel + idx, pmc_ctrl);
663 rdmsrl(x86_pmu.perfctr + idx, pmc_count);
665 prev_left = per_cpu(prev_left[idx], cpu);
667 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
668 cpu, idx, pmc_ctrl);
669 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
670 cpu, idx, pmc_count);
671 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
672 cpu, idx, prev_left);
674 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
675 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
677 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
678 cpu, idx, pmc_count);
680 local_irq_restore(flags);
683 static void x86_pmu_disable(struct perf_counter *counter)
685 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
686 struct hw_perf_counter *hwc = &counter->hw;
687 int idx = hwc->idx;
690 * Must be done before we disable, otherwise the nmi handler
691 * could reenable again:
693 clear_bit(idx, cpuc->active_mask);
694 x86_pmu.disable(hwc, idx);
697 * Make sure the cleared pointer becomes visible before we
698 * (potentially) free the counter:
700 barrier();
703 * Drain the remaining delta count out of a counter
704 * that we are disabling:
706 x86_perf_counter_update(counter, hwc, idx);
707 cpuc->counters[idx] = NULL;
708 clear_bit(idx, cpuc->used_mask);
712 * Save and restart an expired counter. Called by NMI contexts,
713 * so it has to be careful about preempting normal counter ops:
715 static int intel_pmu_save_and_restart(struct perf_counter *counter)
717 struct hw_perf_counter *hwc = &counter->hw;
718 int idx = hwc->idx;
719 int ret;
721 x86_perf_counter_update(counter, hwc, idx);
722 ret = x86_perf_counter_set_period(counter, hwc, idx);
724 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
725 intel_pmu_enable_counter(hwc, idx);
727 return ret;
730 static void intel_pmu_reset(void)
732 unsigned long flags;
733 int idx;
735 if (!x86_pmu.num_counters)
736 return;
738 local_irq_save(flags);
740 printk("clearing PMU state on CPU#%d\n", smp_processor_id());
742 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
743 checking_wrmsrl(x86_pmu.eventsel + idx, 0ull);
744 checking_wrmsrl(x86_pmu.perfctr + idx, 0ull);
746 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
747 checking_wrmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, 0ull);
750 local_irq_restore(flags);
755 * This handler is triggered by the local APIC, so the APIC IRQ handling
756 * rules apply:
758 static int intel_pmu_handle_irq(struct pt_regs *regs)
760 struct cpu_hw_counters *cpuc;
761 struct cpu_hw_counters;
762 int bit, cpu, loops;
763 u64 ack, status;
765 cpu = smp_processor_id();
766 cpuc = &per_cpu(cpu_hw_counters, cpu);
768 perf_disable();
769 status = intel_pmu_get_status();
770 if (!status) {
771 perf_enable();
772 return 0;
775 loops = 0;
776 again:
777 if (++loops > 100) {
778 WARN_ONCE(1, "perfcounters: irq loop stuck!\n");
779 perf_counter_print_debug();
780 intel_pmu_reset();
781 perf_enable();
782 return 1;
785 inc_irq_stat(apic_perf_irqs);
786 ack = status;
787 for_each_bit(bit, (unsigned long *)&status, X86_PMC_IDX_MAX) {
788 struct perf_counter *counter = cpuc->counters[bit];
790 clear_bit(bit, (unsigned long *) &status);
791 if (!test_bit(bit, cpuc->active_mask))
792 continue;
794 if (!intel_pmu_save_and_restart(counter))
795 continue;
797 if (perf_counter_overflow(counter, 1, regs, 0))
798 intel_pmu_disable_counter(&counter->hw, bit);
801 intel_pmu_ack_status(ack);
804 * Repeat if there is more work to be done:
806 status = intel_pmu_get_status();
807 if (status)
808 goto again;
810 perf_enable();
812 return 1;
815 static int amd_pmu_handle_irq(struct pt_regs *regs)
817 int cpu, idx, handled = 0;
818 struct cpu_hw_counters *cpuc;
819 struct perf_counter *counter;
820 struct hw_perf_counter *hwc;
821 u64 val;
823 cpu = smp_processor_id();
824 cpuc = &per_cpu(cpu_hw_counters, cpu);
826 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
827 if (!test_bit(idx, cpuc->active_mask))
828 continue;
830 counter = cpuc->counters[idx];
831 hwc = &counter->hw;
833 val = x86_perf_counter_update(counter, hwc, idx);
834 if (val & (1ULL << (x86_pmu.counter_bits - 1)))
835 continue;
837 /* counter overflow */
838 handled = 1;
839 inc_irq_stat(apic_perf_irqs);
840 if (!x86_perf_counter_set_period(counter, hwc, idx))
841 continue;
843 if (perf_counter_overflow(counter, 1, regs, 0))
844 amd_pmu_disable_counter(hwc, idx);
847 return handled;
850 void smp_perf_pending_interrupt(struct pt_regs *regs)
852 irq_enter();
853 ack_APIC_irq();
854 inc_irq_stat(apic_pending_irqs);
855 perf_counter_do_pending();
856 irq_exit();
859 void set_perf_counter_pending(void)
861 apic->send_IPI_self(LOCAL_PENDING_VECTOR);
864 void perf_counters_lapic_init(void)
866 if (!x86_pmu_initialized())
867 return;
870 * Always use NMI for PMU
872 apic_write(APIC_LVTPC, APIC_DM_NMI);
875 static int __kprobes
876 perf_counter_nmi_handler(struct notifier_block *self,
877 unsigned long cmd, void *__args)
879 struct die_args *args = __args;
880 struct pt_regs *regs;
882 if (!atomic_read(&active_counters))
883 return NOTIFY_DONE;
885 switch (cmd) {
886 case DIE_NMI:
887 case DIE_NMI_IPI:
888 break;
890 default:
891 return NOTIFY_DONE;
894 regs = args->regs;
896 apic_write(APIC_LVTPC, APIC_DM_NMI);
898 * Can't rely on the handled return value to say it was our NMI, two
899 * counters could trigger 'simultaneously' raising two back-to-back NMIs.
901 * If the first NMI handles both, the latter will be empty and daze
902 * the CPU.
904 x86_pmu.handle_irq(regs);
906 return NOTIFY_STOP;
909 static __read_mostly struct notifier_block perf_counter_nmi_notifier = {
910 .notifier_call = perf_counter_nmi_handler,
911 .next = NULL,
912 .priority = 1
915 static struct x86_pmu intel_pmu = {
916 .name = "Intel",
917 .handle_irq = intel_pmu_handle_irq,
918 .disable_all = intel_pmu_disable_all,
919 .enable_all = intel_pmu_enable_all,
920 .enable = intel_pmu_enable_counter,
921 .disable = intel_pmu_disable_counter,
922 .eventsel = MSR_ARCH_PERFMON_EVENTSEL0,
923 .perfctr = MSR_ARCH_PERFMON_PERFCTR0,
924 .event_map = intel_pmu_event_map,
925 .raw_event = intel_pmu_raw_event,
926 .max_events = ARRAY_SIZE(intel_perfmon_event_map),
928 * Intel PMCs cannot be accessed sanely above 32 bit width,
929 * so we install an artificial 1<<31 period regardless of
930 * the generic counter period:
932 .max_period = (1ULL << 31) - 1,
935 static struct x86_pmu amd_pmu = {
936 .name = "AMD",
937 .handle_irq = amd_pmu_handle_irq,
938 .disable_all = amd_pmu_disable_all,
939 .enable_all = amd_pmu_enable_all,
940 .enable = amd_pmu_enable_counter,
941 .disable = amd_pmu_disable_counter,
942 .eventsel = MSR_K7_EVNTSEL0,
943 .perfctr = MSR_K7_PERFCTR0,
944 .event_map = amd_pmu_event_map,
945 .raw_event = amd_pmu_raw_event,
946 .max_events = ARRAY_SIZE(amd_perfmon_event_map),
947 .num_counters = 4,
948 .counter_bits = 48,
949 .counter_mask = (1ULL << 48) - 1,
950 /* use highest bit to detect overflow */
951 .max_period = (1ULL << 47) - 1,
954 static int intel_pmu_init(void)
956 union cpuid10_edx edx;
957 union cpuid10_eax eax;
958 unsigned int unused;
959 unsigned int ebx;
960 int version;
962 if (!cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
963 return -ENODEV;
966 * Check whether the Architectural PerfMon supports
967 * Branch Misses Retired Event or not.
969 cpuid(10, &eax.full, &ebx, &unused, &edx.full);
970 if (eax.split.mask_length <= ARCH_PERFMON_BRANCH_MISSES_RETIRED)
971 return -ENODEV;
973 version = eax.split.version_id;
974 if (version < 2)
975 return -ENODEV;
977 x86_pmu = intel_pmu;
978 x86_pmu.version = version;
979 x86_pmu.num_counters = eax.split.num_counters;
982 * Quirk: v2 perfmon does not report fixed-purpose counters, so
983 * assume at least 3 counters:
985 x86_pmu.num_counters_fixed = max((int)edx.split.num_counters_fixed, 3);
987 x86_pmu.counter_bits = eax.split.bit_width;
988 x86_pmu.counter_mask = (1ULL << eax.split.bit_width) - 1;
990 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, x86_pmu.intel_ctrl);
992 return 0;
995 static int amd_pmu_init(void)
997 x86_pmu = amd_pmu;
998 return 0;
1001 void __init init_hw_perf_counters(void)
1003 int err;
1005 switch (boot_cpu_data.x86_vendor) {
1006 case X86_VENDOR_INTEL:
1007 err = intel_pmu_init();
1008 break;
1009 case X86_VENDOR_AMD:
1010 err = amd_pmu_init();
1011 break;
1012 default:
1013 return;
1015 if (err != 0)
1016 return;
1018 pr_info("%s Performance Monitoring support detected.\n", x86_pmu.name);
1019 pr_info("... version: %d\n", x86_pmu.version);
1020 pr_info("... bit width: %d\n", x86_pmu.counter_bits);
1022 pr_info("... num counters: %d\n", x86_pmu.num_counters);
1023 if (x86_pmu.num_counters > X86_PMC_MAX_GENERIC) {
1024 x86_pmu.num_counters = X86_PMC_MAX_GENERIC;
1025 WARN(1, KERN_ERR "hw perf counters %d > max(%d), clipping!",
1026 x86_pmu.num_counters, X86_PMC_MAX_GENERIC);
1028 perf_counter_mask = (1 << x86_pmu.num_counters) - 1;
1029 perf_max_counters = x86_pmu.num_counters;
1031 pr_info("... value mask: %016Lx\n", x86_pmu.counter_mask);
1032 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
1034 if (x86_pmu.num_counters_fixed > X86_PMC_MAX_FIXED) {
1035 x86_pmu.num_counters_fixed = X86_PMC_MAX_FIXED;
1036 WARN(1, KERN_ERR "hw perf counters fixed %d > max(%d), clipping!",
1037 x86_pmu.num_counters_fixed, X86_PMC_MAX_FIXED);
1039 pr_info("... fixed counters: %d\n", x86_pmu.num_counters_fixed);
1041 perf_counter_mask |=
1042 ((1LL << x86_pmu.num_counters_fixed)-1) << X86_PMC_IDX_FIXED;
1044 pr_info("... counter mask: %016Lx\n", perf_counter_mask);
1046 perf_counters_lapic_init();
1047 register_die_notifier(&perf_counter_nmi_notifier);
1050 static inline void x86_pmu_read(struct perf_counter *counter)
1052 x86_perf_counter_update(counter, &counter->hw, counter->hw.idx);
1055 static const struct pmu pmu = {
1056 .enable = x86_pmu_enable,
1057 .disable = x86_pmu_disable,
1058 .read = x86_pmu_read,
1059 .unthrottle = x86_pmu_unthrottle,
1062 const struct pmu *hw_perf_counter_init(struct perf_counter *counter)
1064 int err;
1066 err = __hw_perf_counter_init(counter);
1067 if (err)
1068 return ERR_PTR(err);
1070 return &pmu;
1074 * callchain support
1077 static inline
1078 void callchain_store(struct perf_callchain_entry *entry, unsigned long ip)
1080 if (entry->nr < MAX_STACK_DEPTH)
1081 entry->ip[entry->nr++] = ip;
1084 static DEFINE_PER_CPU(struct perf_callchain_entry, irq_entry);
1085 static DEFINE_PER_CPU(struct perf_callchain_entry, nmi_entry);
1088 static void
1089 backtrace_warning_symbol(void *data, char *msg, unsigned long symbol)
1091 /* Ignore warnings */
1094 static void backtrace_warning(void *data, char *msg)
1096 /* Ignore warnings */
1099 static int backtrace_stack(void *data, char *name)
1101 /* Don't bother with IRQ stacks for now */
1102 return -1;
1105 static void backtrace_address(void *data, unsigned long addr, int reliable)
1107 struct perf_callchain_entry *entry = data;
1109 if (reliable)
1110 callchain_store(entry, addr);
1113 static const struct stacktrace_ops backtrace_ops = {
1114 .warning = backtrace_warning,
1115 .warning_symbol = backtrace_warning_symbol,
1116 .stack = backtrace_stack,
1117 .address = backtrace_address,
1120 static void
1121 perf_callchain_kernel(struct pt_regs *regs, struct perf_callchain_entry *entry)
1123 unsigned long bp;
1124 char *stack;
1125 int nr = entry->nr;
1127 callchain_store(entry, instruction_pointer(regs));
1129 stack = ((char *)regs + sizeof(struct pt_regs));
1130 #ifdef CONFIG_FRAME_POINTER
1131 bp = frame_pointer(regs);
1132 #else
1133 bp = 0;
1134 #endif
1136 dump_trace(NULL, regs, (void *)stack, bp, &backtrace_ops, entry);
1138 entry->kernel = entry->nr - nr;
1142 struct stack_frame {
1143 const void __user *next_fp;
1144 unsigned long return_address;
1147 static int copy_stack_frame(const void __user *fp, struct stack_frame *frame)
1149 int ret;
1151 if (!access_ok(VERIFY_READ, fp, sizeof(*frame)))
1152 return 0;
1154 ret = 1;
1155 pagefault_disable();
1156 if (__copy_from_user_inatomic(frame, fp, sizeof(*frame)))
1157 ret = 0;
1158 pagefault_enable();
1160 return ret;
1163 static void
1164 perf_callchain_user(struct pt_regs *regs, struct perf_callchain_entry *entry)
1166 struct stack_frame frame;
1167 const void __user *fp;
1168 int nr = entry->nr;
1170 regs = (struct pt_regs *)current->thread.sp0 - 1;
1171 fp = (void __user *)regs->bp;
1173 callchain_store(entry, regs->ip);
1175 while (entry->nr < MAX_STACK_DEPTH) {
1176 frame.next_fp = NULL;
1177 frame.return_address = 0;
1179 if (!copy_stack_frame(fp, &frame))
1180 break;
1182 if ((unsigned long)fp < user_stack_pointer(regs))
1183 break;
1185 callchain_store(entry, frame.return_address);
1186 fp = frame.next_fp;
1189 entry->user = entry->nr - nr;
1192 static void
1193 perf_do_callchain(struct pt_regs *regs, struct perf_callchain_entry *entry)
1195 int is_user;
1197 if (!regs)
1198 return;
1200 is_user = user_mode(regs);
1202 if (!current || current->pid == 0)
1203 return;
1205 if (is_user && current->state != TASK_RUNNING)
1206 return;
1208 if (!is_user)
1209 perf_callchain_kernel(regs, entry);
1211 if (current->mm)
1212 perf_callchain_user(regs, entry);
1215 struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
1217 struct perf_callchain_entry *entry;
1219 if (in_nmi())
1220 entry = &__get_cpu_var(nmi_entry);
1221 else
1222 entry = &__get_cpu_var(irq_entry);
1224 entry->nr = 0;
1225 entry->hv = 0;
1226 entry->kernel = 0;
1227 entry->user = 0;
1229 perf_do_callchain(regs, entry);
1231 return entry;