perf_counter: update 'perf top' documentation
[linux-2.6-block.git] / arch / x86 / kernel / cpu / perf_counter.c
CommitLineData
241771ef
IM
1/*
2 * Performance counter x86 architecture code
3 *
4 * Copyright(C) 2008 Thomas Gleixner <tglx@linutronix.de>
5 * Copyright(C) 2008 Red Hat, Inc., Ingo Molnar
b56a3802 6 * Copyright(C) 2009 Jaswinder Singh Rajput
39d81eab 7 * Copyright(C) 2009 Advanced Micro Devices, Inc., Robert Richter
241771ef
IM
8 *
9 * For licencing details see kernel-base/COPYING
10 */
11
12#include <linux/perf_counter.h>
13#include <linux/capability.h>
14#include <linux/notifier.h>
15#include <linux/hardirq.h>
16#include <linux/kprobes.h>
4ac13294 17#include <linux/module.h>
241771ef
IM
18#include <linux/kdebug.h>
19#include <linux/sched.h>
d7d59fb3 20#include <linux/uaccess.h>
241771ef 21
241771ef 22#include <asm/apic.h>
d7d59fb3 23#include <asm/stacktrace.h>
4e935e47 24#include <asm/nmi.h>
241771ef 25
862a1a5f 26static u64 perf_counter_mask __read_mostly;
703e937c 27
241771ef 28struct cpu_hw_counters {
862a1a5f
IM
29 struct perf_counter *counters[X86_PMC_IDX_MAX];
30 unsigned long used[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
93904966 31 unsigned long active[BITS_TO_LONGS(X86_PMC_IDX_MAX)];
4b39fd96 32 unsigned long interrupts;
b0f3f28e 33 u64 throttle_ctrl;
b0f3f28e 34 int enabled;
241771ef
IM
35};
36
37/*
5f4ec28f 38 * struct x86_pmu - generic x86 pmu
241771ef 39 */
5f4ec28f 40struct x86_pmu {
faa28ae0
RR
41 const char *name;
42 int version;
39d81eab 43 int (*handle_irq)(struct pt_regs *, int);
169e41eb 44 u64 (*save_disable_all)(void);
b0f3f28e 45 void (*restore_all)(u64);
7c90cc45 46 void (*enable)(struct hw_perf_counter *, int);
d4369891 47 void (*disable)(struct hw_perf_counter *, int);
169e41eb
JSR
48 unsigned eventsel;
49 unsigned perfctr;
b0f3f28e
PZ
50 u64 (*event_map)(int);
51 u64 (*raw_event)(u64);
169e41eb 52 int max_events;
0933e5c6
RR
53 int num_counters;
54 int num_counters_fixed;
55 int counter_bits;
56 u64 counter_mask;
c619b8ff 57 u64 max_period;
b56a3802
JSR
58};
59
4a06bd85 60static struct x86_pmu x86_pmu __read_mostly;
b56a3802 61
b0f3f28e
PZ
62static DEFINE_PER_CPU(struct cpu_hw_counters, cpu_hw_counters) = {
63 .enabled = 1,
64};
241771ef 65
b56a3802
JSR
66/*
67 * Intel PerfMon v3. Used on Core2 and later.
68 */
b0f3f28e 69static const u64 intel_perfmon_event_map[] =
241771ef 70{
f650a672 71 [PERF_COUNT_CPU_CYCLES] = 0x003c,
241771ef
IM
72 [PERF_COUNT_INSTRUCTIONS] = 0x00c0,
73 [PERF_COUNT_CACHE_REFERENCES] = 0x4f2e,
74 [PERF_COUNT_CACHE_MISSES] = 0x412e,
75 [PERF_COUNT_BRANCH_INSTRUCTIONS] = 0x00c4,
76 [PERF_COUNT_BRANCH_MISSES] = 0x00c5,
f650a672 77 [PERF_COUNT_BUS_CYCLES] = 0x013c,
241771ef
IM
78};
79
5f4ec28f 80static u64 intel_pmu_event_map(int event)
b56a3802
JSR
81{
82 return intel_perfmon_event_map[event];
83}
241771ef 84
5f4ec28f 85static u64 intel_pmu_raw_event(u64 event)
b0f3f28e 86{
82bae4f8
PZ
87#define CORE_EVNTSEL_EVENT_MASK 0x000000FFULL
88#define CORE_EVNTSEL_UNIT_MASK 0x0000FF00ULL
89#define CORE_EVNTSEL_COUNTER_MASK 0xFF000000ULL
b0f3f28e
PZ
90
91#define CORE_EVNTSEL_MASK \
92 (CORE_EVNTSEL_EVENT_MASK | \
93 CORE_EVNTSEL_UNIT_MASK | \
94 CORE_EVNTSEL_COUNTER_MASK)
95
96 return event & CORE_EVNTSEL_MASK;
97}
98
f87ad35d
JSR
99/*
100 * AMD Performance Monitor K7 and later.
101 */
b0f3f28e 102static const u64 amd_perfmon_event_map[] =
f87ad35d
JSR
103{
104 [PERF_COUNT_CPU_CYCLES] = 0x0076,
105 [PERF_COUNT_INSTRUCTIONS] = 0x00c0,
106 [PERF_COUNT_CACHE_REFERENCES] = 0x0080,
107 [PERF_COUNT_CACHE_MISSES] = 0x0081,
108 [PERF_COUNT_BRANCH_INSTRUCTIONS] = 0x00c4,
109 [PERF_COUNT_BRANCH_MISSES] = 0x00c5,
110};
111
5f4ec28f 112static u64 amd_pmu_event_map(int event)
f87ad35d
JSR
113{
114 return amd_perfmon_event_map[event];
115}
116
5f4ec28f 117static u64 amd_pmu_raw_event(u64 event)
b0f3f28e 118{
82bae4f8
PZ
119#define K7_EVNTSEL_EVENT_MASK 0x7000000FFULL
120#define K7_EVNTSEL_UNIT_MASK 0x00000FF00ULL
121#define K7_EVNTSEL_COUNTER_MASK 0x0FF000000ULL
b0f3f28e
PZ
122
123#define K7_EVNTSEL_MASK \
124 (K7_EVNTSEL_EVENT_MASK | \
125 K7_EVNTSEL_UNIT_MASK | \
126 K7_EVNTSEL_COUNTER_MASK)
127
128 return event & K7_EVNTSEL_MASK;
129}
130
ee06094f
IM
131/*
132 * Propagate counter elapsed time into the generic counter.
133 * Can only be executed on the CPU where the counter is active.
134 * Returns the delta events processed.
135 */
4b7bfd0d 136static u64
ee06094f
IM
137x86_perf_counter_update(struct perf_counter *counter,
138 struct hw_perf_counter *hwc, int idx)
139{
140 u64 prev_raw_count, new_raw_count, delta;
141
ee06094f
IM
142 /*
143 * Careful: an NMI might modify the previous counter value.
144 *
145 * Our tactic to handle this is to first atomically read and
146 * exchange a new raw count - then add that new-prev delta
147 * count to the generic counter atomically:
148 */
149again:
150 prev_raw_count = atomic64_read(&hwc->prev_count);
151 rdmsrl(hwc->counter_base + idx, new_raw_count);
152
153 if (atomic64_cmpxchg(&hwc->prev_count, prev_raw_count,
154 new_raw_count) != prev_raw_count)
155 goto again;
156
157 /*
158 * Now we have the new raw value and have updated the prev
159 * timestamp already. We can now calculate the elapsed delta
160 * (counter-)time and add that to the generic counter.
161 *
162 * Careful, not all hw sign-extends above the physical width
163 * of the count, so we do that by clipping the delta to 32 bits:
164 */
165 delta = (u64)(u32)((s32)new_raw_count - (s32)prev_raw_count);
ee06094f
IM
166
167 atomic64_add(delta, &counter->count);
168 atomic64_sub(delta, &hwc->period_left);
4b7bfd0d
RR
169
170 return new_raw_count;
ee06094f
IM
171}
172
4e935e47
PZ
173static atomic_t num_counters;
174static DEFINE_MUTEX(pmc_reserve_mutex);
175
176static bool reserve_pmc_hardware(void)
177{
178 int i;
179
180 if (nmi_watchdog == NMI_LOCAL_APIC)
181 disable_lapic_nmi_watchdog();
182
0933e5c6 183 for (i = 0; i < x86_pmu.num_counters; i++) {
4a06bd85 184 if (!reserve_perfctr_nmi(x86_pmu.perfctr + i))
4e935e47
PZ
185 goto perfctr_fail;
186 }
187
0933e5c6 188 for (i = 0; i < x86_pmu.num_counters; i++) {
4a06bd85 189 if (!reserve_evntsel_nmi(x86_pmu.eventsel + i))
4e935e47
PZ
190 goto eventsel_fail;
191 }
192
193 return true;
194
195eventsel_fail:
196 for (i--; i >= 0; i--)
4a06bd85 197 release_evntsel_nmi(x86_pmu.eventsel + i);
4e935e47 198
0933e5c6 199 i = x86_pmu.num_counters;
4e935e47
PZ
200
201perfctr_fail:
202 for (i--; i >= 0; i--)
4a06bd85 203 release_perfctr_nmi(x86_pmu.perfctr + i);
4e935e47
PZ
204
205 if (nmi_watchdog == NMI_LOCAL_APIC)
206 enable_lapic_nmi_watchdog();
207
208 return false;
209}
210
211static void release_pmc_hardware(void)
212{
213 int i;
214
0933e5c6 215 for (i = 0; i < x86_pmu.num_counters; i++) {
4a06bd85
RR
216 release_perfctr_nmi(x86_pmu.perfctr + i);
217 release_evntsel_nmi(x86_pmu.eventsel + i);
4e935e47
PZ
218 }
219
220 if (nmi_watchdog == NMI_LOCAL_APIC)
221 enable_lapic_nmi_watchdog();
222}
223
224static void hw_perf_counter_destroy(struct perf_counter *counter)
225{
226 if (atomic_dec_and_mutex_lock(&num_counters, &pmc_reserve_mutex)) {
227 release_pmc_hardware();
228 mutex_unlock(&pmc_reserve_mutex);
229 }
230}
231
85cf9dba
RR
232static inline int x86_pmu_initialized(void)
233{
234 return x86_pmu.handle_irq != NULL;
235}
236
241771ef
IM
237/*
238 * Setup the hardware configuration for a given hw_event_type
239 */
621a01ea 240static int __hw_perf_counter_init(struct perf_counter *counter)
241771ef 241{
9f66a381 242 struct perf_counter_hw_event *hw_event = &counter->hw_event;
241771ef 243 struct hw_perf_counter *hwc = &counter->hw;
4e935e47 244 int err;
241771ef 245
85cf9dba
RR
246 if (!x86_pmu_initialized())
247 return -ENODEV;
241771ef 248
4e935e47
PZ
249 err = 0;
250 if (atomic_inc_not_zero(&num_counters)) {
251 mutex_lock(&pmc_reserve_mutex);
252 if (atomic_read(&num_counters) == 0 && !reserve_pmc_hardware())
253 err = -EBUSY;
254 else
255 atomic_inc(&num_counters);
256 mutex_unlock(&pmc_reserve_mutex);
257 }
258 if (err)
259 return err;
260
241771ef 261 /*
0475f9ea 262 * Generate PMC IRQs:
241771ef
IM
263 * (keep 'enabled' bit clear for now)
264 */
0475f9ea 265 hwc->config = ARCH_PERFMON_EVENTSEL_INT;
241771ef
IM
266
267 /*
0475f9ea 268 * Count user and OS events unless requested not to.
241771ef 269 */
0475f9ea
PM
270 if (!hw_event->exclude_user)
271 hwc->config |= ARCH_PERFMON_EVENTSEL_USR;
272 if (!hw_event->exclude_kernel)
241771ef 273 hwc->config |= ARCH_PERFMON_EVENTSEL_OS;
0475f9ea
PM
274
275 /*
276 * If privileged enough, allow NMI events:
277 */
278 hwc->nmi = 0;
279 if (capable(CAP_SYS_ADMIN) && hw_event->nmi)
280 hwc->nmi = 1;
241771ef 281
9f66a381 282 hwc->irq_period = hw_event->irq_period;
c619b8ff
RR
283 if ((s64)hwc->irq_period <= 0 || hwc->irq_period > x86_pmu.max_period)
284 hwc->irq_period = x86_pmu.max_period;
241771ef 285
ee06094f 286 atomic64_set(&hwc->period_left, hwc->irq_period);
241771ef
IM
287
288 /*
dfa7c899 289 * Raw event type provide the config in the event structure
241771ef 290 */
f4a2deb4 291 if (perf_event_raw(hw_event)) {
4a06bd85 292 hwc->config |= x86_pmu.raw_event(perf_event_config(hw_event));
241771ef 293 } else {
4a06bd85 294 if (perf_event_id(hw_event) >= x86_pmu.max_events)
241771ef
IM
295 return -EINVAL;
296 /*
297 * The generic map:
298 */
4a06bd85 299 hwc->config |= x86_pmu.event_map(perf_event_id(hw_event));
241771ef 300 }
241771ef 301
4e935e47
PZ
302 counter->destroy = hw_perf_counter_destroy;
303
241771ef
IM
304 return 0;
305}
306
5f4ec28f 307static u64 intel_pmu_save_disable_all(void)
4ac13294
TG
308{
309 u64 ctrl;
310
311 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
862a1a5f 312 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, 0);
2b9ff0db 313
4ac13294 314 return ctrl;
241771ef 315}
b56a3802 316
5f4ec28f 317static u64 amd_pmu_save_disable_all(void)
f87ad35d 318{
b0f3f28e
PZ
319 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
320 int enabled, idx;
321
322 enabled = cpuc->enabled;
323 cpuc->enabled = 0;
60b3df9c
PZ
324 /*
325 * ensure we write the disable before we start disabling the
5f4ec28f
RR
326 * counters proper, so that amd_pmu_enable_counter() does the
327 * right thing.
60b3df9c 328 */
b0f3f28e 329 barrier();
f87ad35d 330
0933e5c6 331 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
b0f3f28e
PZ
332 u64 val;
333
93904966 334 if (!test_bit(idx, cpuc->active))
4295ee62 335 continue;
f87ad35d 336 rdmsrl(MSR_K7_EVNTSEL0 + idx, val);
4295ee62
RR
337 if (!(val & ARCH_PERFMON_EVENTSEL0_ENABLE))
338 continue;
339 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
340 wrmsrl(MSR_K7_EVNTSEL0 + idx, val);
f87ad35d
JSR
341 }
342
b0f3f28e 343 return enabled;
f87ad35d
JSR
344}
345
b56a3802
JSR
346u64 hw_perf_save_disable(void)
347{
85cf9dba 348 if (!x86_pmu_initialized())
b56a3802 349 return 0;
4a06bd85 350 return x86_pmu.save_disable_all();
b56a3802 351}
b0f3f28e
PZ
352/*
353 * Exported because of ACPI idle
354 */
01b2838c 355EXPORT_SYMBOL_GPL(hw_perf_save_disable);
241771ef 356
5f4ec28f 357static void intel_pmu_restore_all(u64 ctrl)
b56a3802
JSR
358{
359 wrmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
360}
361
5f4ec28f 362static void amd_pmu_restore_all(u64 ctrl)
f87ad35d 363{
b0f3f28e 364 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
f87ad35d
JSR
365 int idx;
366
b0f3f28e
PZ
367 cpuc->enabled = ctrl;
368 barrier();
369 if (!ctrl)
370 return;
371
0933e5c6 372 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
4295ee62 373 u64 val;
b0f3f28e 374
93904966 375 if (!test_bit(idx, cpuc->active))
4295ee62
RR
376 continue;
377 rdmsrl(MSR_K7_EVNTSEL0 + idx, val);
378 if (val & ARCH_PERFMON_EVENTSEL0_ENABLE)
379 continue;
380 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
381 wrmsrl(MSR_K7_EVNTSEL0 + idx, val);
f87ad35d
JSR
382 }
383}
384
ee06094f
IM
385void hw_perf_restore(u64 ctrl)
386{
85cf9dba 387 if (!x86_pmu_initialized())
2b9ff0db 388 return;
4a06bd85 389 x86_pmu.restore_all(ctrl);
ee06094f 390}
b0f3f28e
PZ
391/*
392 * Exported because of ACPI idle
393 */
ee06094f
IM
394EXPORT_SYMBOL_GPL(hw_perf_restore);
395
19d84dab 396static inline u64 intel_pmu_get_status(void)
b0f3f28e
PZ
397{
398 u64 status;
399
b7f8859a 400 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
b0f3f28e 401
b7f8859a 402 return status;
b0f3f28e
PZ
403}
404
dee5d906 405static inline void intel_pmu_ack_status(u64 ack)
b0f3f28e
PZ
406{
407 wrmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, ack);
408}
409
7c90cc45 410static inline void x86_pmu_enable_counter(struct hw_perf_counter *hwc, int idx)
b0f3f28e 411{
7c90cc45 412 int err;
7c90cc45
RR
413 err = checking_wrmsrl(hwc->config_base + idx,
414 hwc->config | ARCH_PERFMON_EVENTSEL0_ENABLE);
b0f3f28e
PZ
415}
416
d4369891 417static inline void x86_pmu_disable_counter(struct hw_perf_counter *hwc, int idx)
b0f3f28e 418{
d4369891 419 int err;
d4369891
RR
420 err = checking_wrmsrl(hwc->config_base + idx,
421 hwc->config);
b0f3f28e
PZ
422}
423
2f18d1e8 424static inline void
d4369891 425intel_pmu_disable_fixed(struct hw_perf_counter *hwc, int __idx)
2f18d1e8
IM
426{
427 int idx = __idx - X86_PMC_IDX_FIXED;
428 u64 ctrl_val, mask;
429 int err;
430
431 mask = 0xfULL << (idx * 4);
432
433 rdmsrl(hwc->config_base, ctrl_val);
434 ctrl_val &= ~mask;
435 err = checking_wrmsrl(hwc->config_base, ctrl_val);
436}
437
7e2ae347 438static inline void
d4369891 439intel_pmu_disable_counter(struct hw_perf_counter *hwc, int idx)
7e2ae347 440{
d4369891
RR
441 if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL)) {
442 intel_pmu_disable_fixed(hwc, idx);
443 return;
444 }
445
446 x86_pmu_disable_counter(hwc, idx);
447}
448
449static inline void
450amd_pmu_disable_counter(struct hw_perf_counter *hwc, int idx)
451{
452 x86_pmu_disable_counter(hwc, idx);
7e2ae347
IM
453}
454
2f18d1e8 455static DEFINE_PER_CPU(u64, prev_left[X86_PMC_IDX_MAX]);
241771ef 456
ee06094f
IM
457/*
458 * Set the next IRQ period, based on the hwc->period_left value.
459 * To be called with the counter disabled in hw:
460 */
461static void
26816c28 462x86_perf_counter_set_period(struct perf_counter *counter,
ee06094f 463 struct hw_perf_counter *hwc, int idx)
241771ef 464{
2f18d1e8 465 s64 left = atomic64_read(&hwc->period_left);
595258aa 466 s64 period = hwc->irq_period;
2f18d1e8 467 int err;
ee06094f 468
ee06094f
IM
469 /*
470 * If we are way outside a reasoable range then just skip forward:
471 */
472 if (unlikely(left <= -period)) {
473 left = period;
474 atomic64_set(&hwc->period_left, left);
475 }
476
477 if (unlikely(left <= 0)) {
478 left += period;
479 atomic64_set(&hwc->period_left, left);
480 }
241771ef 481
ee06094f
IM
482 per_cpu(prev_left[idx], smp_processor_id()) = left;
483
484 /*
485 * The hw counter starts counting from this counter offset,
486 * mark it to be able to extra future deltas:
487 */
2f18d1e8 488 atomic64_set(&hwc->prev_count, (u64)-left);
ee06094f 489
2f18d1e8 490 err = checking_wrmsrl(hwc->counter_base + idx,
0933e5c6 491 (u64)(-left) & x86_pmu.counter_mask);
2f18d1e8
IM
492}
493
494static inline void
7c90cc45 495intel_pmu_enable_fixed(struct hw_perf_counter *hwc, int __idx)
2f18d1e8
IM
496{
497 int idx = __idx - X86_PMC_IDX_FIXED;
498 u64 ctrl_val, bits, mask;
499 int err;
500
501 /*
0475f9ea
PM
502 * Enable IRQ generation (0x8),
503 * and enable ring-3 counting (0x2) and ring-0 counting (0x1)
504 * if requested:
2f18d1e8 505 */
0475f9ea
PM
506 bits = 0x8ULL;
507 if (hwc->config & ARCH_PERFMON_EVENTSEL_USR)
508 bits |= 0x2;
2f18d1e8
IM
509 if (hwc->config & ARCH_PERFMON_EVENTSEL_OS)
510 bits |= 0x1;
511 bits <<= (idx * 4);
512 mask = 0xfULL << (idx * 4);
513
514 rdmsrl(hwc->config_base, ctrl_val);
515 ctrl_val &= ~mask;
516 ctrl_val |= bits;
517 err = checking_wrmsrl(hwc->config_base, ctrl_val);
7e2ae347
IM
518}
519
7c90cc45 520static void intel_pmu_enable_counter(struct hw_perf_counter *hwc, int idx)
7e2ae347 521{
7c90cc45
RR
522 if (unlikely(hwc->config_base == MSR_ARCH_PERFMON_FIXED_CTR_CTRL)) {
523 intel_pmu_enable_fixed(hwc, idx);
524 return;
525 }
526
527 x86_pmu_enable_counter(hwc, idx);
528}
529
530static void amd_pmu_enable_counter(struct hw_perf_counter *hwc, int idx)
531{
532 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
533
534 if (cpuc->enabled)
535 x86_pmu_enable_counter(hwc, idx);
2b583d8b 536 else
d4369891 537 x86_pmu_disable_counter(hwc, idx);
241771ef
IM
538}
539
2f18d1e8
IM
540static int
541fixed_mode_idx(struct perf_counter *counter, struct hw_perf_counter *hwc)
862a1a5f 542{
2f18d1e8
IM
543 unsigned int event;
544
ef7b3e09 545 if (!x86_pmu.num_counters_fixed)
f87ad35d
JSR
546 return -1;
547
2f18d1e8
IM
548 if (unlikely(hwc->nmi))
549 return -1;
550
551 event = hwc->config & ARCH_PERFMON_EVENT_MASK;
552
4a06bd85 553 if (unlikely(event == x86_pmu.event_map(PERF_COUNT_INSTRUCTIONS)))
2f18d1e8 554 return X86_PMC_IDX_FIXED_INSTRUCTIONS;
4a06bd85 555 if (unlikely(event == x86_pmu.event_map(PERF_COUNT_CPU_CYCLES)))
2f18d1e8 556 return X86_PMC_IDX_FIXED_CPU_CYCLES;
4a06bd85 557 if (unlikely(event == x86_pmu.event_map(PERF_COUNT_BUS_CYCLES)))
2f18d1e8
IM
558 return X86_PMC_IDX_FIXED_BUS_CYCLES;
559
862a1a5f
IM
560 return -1;
561}
562
ee06094f
IM
563/*
564 * Find a PMC slot for the freshly enabled / scheduled in counter:
565 */
4aeb0b42 566static int x86_pmu_enable(struct perf_counter *counter)
241771ef
IM
567{
568 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
569 struct hw_perf_counter *hwc = &counter->hw;
2f18d1e8 570 int idx;
241771ef 571
2f18d1e8
IM
572 idx = fixed_mode_idx(counter, hwc);
573 if (idx >= 0) {
574 /*
575 * Try to get the fixed counter, if that is already taken
576 * then try to get a generic counter:
577 */
578 if (test_and_set_bit(idx, cpuc->used))
579 goto try_generic;
0dff86aa 580
2f18d1e8
IM
581 hwc->config_base = MSR_ARCH_PERFMON_FIXED_CTR_CTRL;
582 /*
583 * We set it so that counter_base + idx in wrmsr/rdmsr maps to
584 * MSR_ARCH_PERFMON_FIXED_CTR0 ... CTR2:
585 */
586 hwc->counter_base =
587 MSR_ARCH_PERFMON_FIXED_CTR0 - X86_PMC_IDX_FIXED;
241771ef 588 hwc->idx = idx;
2f18d1e8
IM
589 } else {
590 idx = hwc->idx;
591 /* Try to get the previous generic counter again */
592 if (test_and_set_bit(idx, cpuc->used)) {
593try_generic:
0933e5c6
RR
594 idx = find_first_zero_bit(cpuc->used,
595 x86_pmu.num_counters);
596 if (idx == x86_pmu.num_counters)
2f18d1e8
IM
597 return -EAGAIN;
598
599 set_bit(idx, cpuc->used);
600 hwc->idx = idx;
601 }
4a06bd85
RR
602 hwc->config_base = x86_pmu.eventsel;
603 hwc->counter_base = x86_pmu.perfctr;
241771ef
IM
604 }
605
606 perf_counters_lapic_init(hwc->nmi);
607
d4369891 608 x86_pmu.disable(hwc, idx);
241771ef 609
862a1a5f 610 cpuc->counters[idx] = counter;
09534238 611 set_bit(idx, cpuc->active);
7e2ae347 612
26816c28 613 x86_perf_counter_set_period(counter, hwc, idx);
7c90cc45 614 x86_pmu.enable(hwc, idx);
95cdd2e7
IM
615
616 return 0;
241771ef
IM
617}
618
619void perf_counter_print_debug(void)
620{
2f18d1e8 621 u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
0dff86aa 622 struct cpu_hw_counters *cpuc;
1e125676
IM
623 int cpu, idx;
624
0933e5c6 625 if (!x86_pmu.num_counters)
1e125676 626 return;
241771ef
IM
627
628 local_irq_disable();
629
630 cpu = smp_processor_id();
0dff86aa 631 cpuc = &per_cpu(cpu_hw_counters, cpu);
241771ef 632
faa28ae0 633 if (x86_pmu.version >= 2) {
a1ef58f4
JSR
634 rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
635 rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
636 rdmsrl(MSR_CORE_PERF_GLOBAL_OVF_CTRL, overflow);
637 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR_CTRL, fixed);
638
639 pr_info("\n");
640 pr_info("CPU#%d: ctrl: %016llx\n", cpu, ctrl);
641 pr_info("CPU#%d: status: %016llx\n", cpu, status);
642 pr_info("CPU#%d: overflow: %016llx\n", cpu, overflow);
643 pr_info("CPU#%d: fixed: %016llx\n", cpu, fixed);
f87ad35d 644 }
a1ef58f4 645 pr_info("CPU#%d: used: %016llx\n", cpu, *(u64 *)cpuc->used);
241771ef 646
0933e5c6 647 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
4a06bd85
RR
648 rdmsrl(x86_pmu.eventsel + idx, pmc_ctrl);
649 rdmsrl(x86_pmu.perfctr + idx, pmc_count);
241771ef 650
ee06094f 651 prev_left = per_cpu(prev_left[idx], cpu);
241771ef 652
a1ef58f4 653 pr_info("CPU#%d: gen-PMC%d ctrl: %016llx\n",
241771ef 654 cpu, idx, pmc_ctrl);
a1ef58f4 655 pr_info("CPU#%d: gen-PMC%d count: %016llx\n",
241771ef 656 cpu, idx, pmc_count);
a1ef58f4 657 pr_info("CPU#%d: gen-PMC%d left: %016llx\n",
ee06094f 658 cpu, idx, prev_left);
241771ef 659 }
0933e5c6 660 for (idx = 0; idx < x86_pmu.num_counters_fixed; idx++) {
2f18d1e8
IM
661 rdmsrl(MSR_ARCH_PERFMON_FIXED_CTR0 + idx, pmc_count);
662
a1ef58f4 663 pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
2f18d1e8
IM
664 cpu, idx, pmc_count);
665 }
241771ef
IM
666 local_irq_enable();
667}
668
4aeb0b42 669static void x86_pmu_disable(struct perf_counter *counter)
241771ef
IM
670{
671 struct cpu_hw_counters *cpuc = &__get_cpu_var(cpu_hw_counters);
672 struct hw_perf_counter *hwc = &counter->hw;
6f00cada 673 int idx = hwc->idx;
241771ef 674
09534238
RR
675 /*
676 * Must be done before we disable, otherwise the nmi handler
677 * could reenable again:
678 */
679 clear_bit(idx, cpuc->active);
d4369891 680 x86_pmu.disable(hwc, idx);
241771ef 681
2f18d1e8
IM
682 /*
683 * Make sure the cleared pointer becomes visible before we
684 * (potentially) free the counter:
685 */
527e26af 686 barrier();
241771ef 687
ee06094f
IM
688 /*
689 * Drain the remaining delta count out of a counter
690 * that we are disabling:
691 */
692 x86_perf_counter_update(counter, hwc, idx);
09534238
RR
693 cpuc->counters[idx] = NULL;
694 clear_bit(idx, cpuc->used);
241771ef
IM
695}
696
7e2ae347 697/*
ee06094f
IM
698 * Save and restart an expired counter. Called by NMI contexts,
699 * so it has to be careful about preempting normal counter ops:
7e2ae347 700 */
55de0f2e 701static void intel_pmu_save_and_restart(struct perf_counter *counter)
241771ef
IM
702{
703 struct hw_perf_counter *hwc = &counter->hw;
704 int idx = hwc->idx;
241771ef 705
ee06094f 706 x86_perf_counter_update(counter, hwc, idx);
26816c28 707 x86_perf_counter_set_period(counter, hwc, idx);
7e2ae347 708
2f18d1e8 709 if (counter->state == PERF_COUNTER_STATE_ACTIVE)
7c90cc45 710 intel_pmu_enable_counter(hwc, idx);
241771ef
IM
711}
712
4b39fd96
MG
713/*
714 * Maximum interrupt frequency of 100KHz per CPU
715 */
169e41eb 716#define PERFMON_MAX_INTERRUPTS (100000/HZ)
4b39fd96 717
241771ef
IM
718/*
719 * This handler is triggered by the local APIC, so the APIC IRQ handling
720 * rules apply:
721 */
39d81eab 722static int intel_pmu_handle_irq(struct pt_regs *regs, int nmi)
241771ef
IM
723{
724 int bit, cpu = smp_processor_id();
4b39fd96 725 u64 ack, status;
1b023a96 726 struct cpu_hw_counters *cpuc = &per_cpu(cpu_hw_counters, cpu);
b0f3f28e 727 int ret = 0;
43874d23 728
55de0f2e 729 cpuc->throttle_ctrl = intel_pmu_save_disable_all();
241771ef 730
19d84dab 731 status = intel_pmu_get_status();
87b9cf46
IM
732 if (!status)
733 goto out;
734
b0f3f28e 735 ret = 1;
241771ef 736again:
d278c484 737 inc_irq_stat(apic_perf_irqs);
241771ef 738 ack = status;
2f18d1e8 739 for_each_bit(bit, (unsigned long *)&status, X86_PMC_IDX_MAX) {
862a1a5f 740 struct perf_counter *counter = cpuc->counters[bit];
241771ef
IM
741
742 clear_bit(bit, (unsigned long *) &status);
09534238 743 if (!test_bit(bit, cpuc->active))
241771ef
IM
744 continue;
745
55de0f2e 746 intel_pmu_save_and_restart(counter);
78f13e95 747 if (perf_counter_overflow(counter, nmi, regs, 0))
d4369891 748 intel_pmu_disable_counter(&counter->hw, bit);
241771ef
IM
749 }
750
dee5d906 751 intel_pmu_ack_status(ack);
241771ef
IM
752
753 /*
754 * Repeat if there is more work to be done:
755 */
19d84dab 756 status = intel_pmu_get_status();
241771ef
IM
757 if (status)
758 goto again;
87b9cf46 759out:
241771ef 760 /*
1b023a96 761 * Restore - do not reenable when global enable is off or throttled:
241771ef 762 */
4b39fd96 763 if (++cpuc->interrupts < PERFMON_MAX_INTERRUPTS)
55de0f2e 764 intel_pmu_restore_all(cpuc->throttle_ctrl);
b0f3f28e
PZ
765
766 return ret;
1b023a96
MG
767}
768
a29aa8a7
RR
769static int amd_pmu_handle_irq(struct pt_regs *regs, int nmi)
770{
771 int cpu = smp_processor_id();
772 struct cpu_hw_counters *cpuc = &per_cpu(cpu_hw_counters, cpu);
773 u64 val;
774 int handled = 0;
775 struct perf_counter *counter;
776 struct hw_perf_counter *hwc;
777 int idx;
778
779 ++cpuc->interrupts;
780 for (idx = 0; idx < x86_pmu.num_counters; idx++) {
781 if (!test_bit(idx, cpuc->active))
782 continue;
783 counter = cpuc->counters[idx];
784 hwc = &counter->hw;
4b7bfd0d 785 val = x86_perf_counter_update(counter, hwc, idx);
a29aa8a7
RR
786 if (val & (1ULL << (x86_pmu.counter_bits - 1)))
787 continue;
788 /* counter overflow */
789 x86_perf_counter_set_period(counter, hwc, idx);
790 handled = 1;
791 inc_irq_stat(apic_perf_irqs);
792 if (perf_counter_overflow(counter, nmi, regs, 0))
793 amd_pmu_disable_counter(hwc, idx);
794 else if (cpuc->interrupts >= PERFMON_MAX_INTERRUPTS)
795 /*
796 * do not reenable when throttled, but reload
797 * the register
798 */
799 amd_pmu_disable_counter(hwc, idx);
800 else if (counter->state == PERF_COUNTER_STATE_ACTIVE)
801 amd_pmu_enable_counter(hwc, idx);
802 }
803 return handled;
804}
39d81eab 805
1b023a96
MG
806void perf_counter_unthrottle(void)
807{
808 struct cpu_hw_counters *cpuc;
809
85cf9dba 810 if (!x86_pmu_initialized())
1b023a96
MG
811 return;
812
b0f3f28e 813 cpuc = &__get_cpu_var(cpu_hw_counters);
4b39fd96 814 if (cpuc->interrupts >= PERFMON_MAX_INTERRUPTS) {
1b023a96 815 if (printk_ratelimit())
4b39fd96 816 printk(KERN_WARNING "PERFMON: max interrupts exceeded!\n");
b0f3f28e 817 hw_perf_restore(cpuc->throttle_ctrl);
1b023a96 818 }
4b39fd96 819 cpuc->interrupts = 0;
241771ef
IM
820}
821
822void smp_perf_counter_interrupt(struct pt_regs *regs)
823{
824 irq_enter();
241771ef 825 apic_write(APIC_LVTPC, LOCAL_PERF_VECTOR);
b0f3f28e 826 ack_APIC_irq();
4a06bd85 827 x86_pmu.handle_irq(regs, 0);
241771ef
IM
828 irq_exit();
829}
830
b6276f35
PZ
831void smp_perf_pending_interrupt(struct pt_regs *regs)
832{
833 irq_enter();
834 ack_APIC_irq();
835 inc_irq_stat(apic_pending_irqs);
836 perf_counter_do_pending();
837 irq_exit();
838}
839
840void set_perf_counter_pending(void)
841{
842 apic->send_IPI_self(LOCAL_PENDING_VECTOR);
843}
844
3415dd91 845void perf_counters_lapic_init(int nmi)
241771ef
IM
846{
847 u32 apic_val;
848
85cf9dba 849 if (!x86_pmu_initialized())
241771ef 850 return;
85cf9dba 851
241771ef
IM
852 /*
853 * Enable the performance counter vector in the APIC LVT:
854 */
855 apic_val = apic_read(APIC_LVTERR);
856
857 apic_write(APIC_LVTERR, apic_val | APIC_LVT_MASKED);
858 if (nmi)
859 apic_write(APIC_LVTPC, APIC_DM_NMI);
860 else
861 apic_write(APIC_LVTPC, LOCAL_PERF_VECTOR);
862 apic_write(APIC_LVTERR, apic_val);
863}
864
865static int __kprobes
866perf_counter_nmi_handler(struct notifier_block *self,
867 unsigned long cmd, void *__args)
868{
869 struct die_args *args = __args;
870 struct pt_regs *regs;
b0f3f28e
PZ
871 int ret;
872
873 switch (cmd) {
874 case DIE_NMI:
875 case DIE_NMI_IPI:
876 break;
241771ef 877
b0f3f28e 878 default:
241771ef 879 return NOTIFY_DONE;
b0f3f28e 880 }
241771ef
IM
881
882 regs = args->regs;
883
884 apic_write(APIC_LVTPC, APIC_DM_NMI);
4a06bd85 885 ret = x86_pmu.handle_irq(regs, 1);
241771ef 886
b0f3f28e 887 return ret ? NOTIFY_STOP : NOTIFY_OK;
241771ef
IM
888}
889
890static __read_mostly struct notifier_block perf_counter_nmi_notifier = {
5b75af0a
MG
891 .notifier_call = perf_counter_nmi_handler,
892 .next = NULL,
893 .priority = 1
241771ef
IM
894};
895
5f4ec28f 896static struct x86_pmu intel_pmu = {
faa28ae0 897 .name = "Intel",
39d81eab 898 .handle_irq = intel_pmu_handle_irq,
5f4ec28f
RR
899 .save_disable_all = intel_pmu_save_disable_all,
900 .restore_all = intel_pmu_restore_all,
5f4ec28f
RR
901 .enable = intel_pmu_enable_counter,
902 .disable = intel_pmu_disable_counter,
b56a3802
JSR
903 .eventsel = MSR_ARCH_PERFMON_EVENTSEL0,
904 .perfctr = MSR_ARCH_PERFMON_PERFCTR0,
5f4ec28f
RR
905 .event_map = intel_pmu_event_map,
906 .raw_event = intel_pmu_raw_event,
b56a3802 907 .max_events = ARRAY_SIZE(intel_perfmon_event_map),
c619b8ff
RR
908 /*
909 * Intel PMCs cannot be accessed sanely above 32 bit width,
910 * so we install an artificial 1<<31 period regardless of
911 * the generic counter period:
912 */
913 .max_period = (1ULL << 31) - 1,
b56a3802
JSR
914};
915
5f4ec28f 916static struct x86_pmu amd_pmu = {
faa28ae0 917 .name = "AMD",
39d81eab 918 .handle_irq = amd_pmu_handle_irq,
5f4ec28f
RR
919 .save_disable_all = amd_pmu_save_disable_all,
920 .restore_all = amd_pmu_restore_all,
5f4ec28f
RR
921 .enable = amd_pmu_enable_counter,
922 .disable = amd_pmu_disable_counter,
f87ad35d
JSR
923 .eventsel = MSR_K7_EVNTSEL0,
924 .perfctr = MSR_K7_PERFCTR0,
5f4ec28f
RR
925 .event_map = amd_pmu_event_map,
926 .raw_event = amd_pmu_raw_event,
f87ad35d 927 .max_events = ARRAY_SIZE(amd_perfmon_event_map),
0933e5c6
RR
928 .num_counters = 4,
929 .counter_bits = 48,
930 .counter_mask = (1ULL << 48) - 1,
c619b8ff
RR
931 /* use highest bit to detect overflow */
932 .max_period = (1ULL << 47) - 1,
f87ad35d
JSR
933};
934
72eae04d 935static int intel_pmu_init(void)
241771ef 936{
7bb497bd 937 union cpuid10_edx edx;
241771ef 938 union cpuid10_eax eax;
703e937c 939 unsigned int unused;
7bb497bd 940 unsigned int ebx;
faa28ae0 941 int version;
241771ef 942
da1a776b 943 if (!cpu_has(&boot_cpu_data, X86_FEATURE_ARCH_PERFMON))
72eae04d 944 return -ENODEV;
da1a776b 945
241771ef
IM
946 /*
947 * Check whether the Architectural PerfMon supports
948 * Branch Misses Retired Event or not.
949 */
703e937c 950 cpuid(10, &eax.full, &ebx, &unused, &edx.full);
241771ef 951 if (eax.split.mask_length <= ARCH_PERFMON_BRANCH_MISSES_RETIRED)
72eae04d 952 return -ENODEV;
241771ef 953
faa28ae0
RR
954 version = eax.split.version_id;
955 if (version < 2)
72eae04d 956 return -ENODEV;
7bb497bd 957
4a06bd85 958 x86_pmu = intel_pmu;
faa28ae0 959 x86_pmu.version = version;
0933e5c6
RR
960 x86_pmu.num_counters = eax.split.num_counters;
961 x86_pmu.num_counters_fixed = edx.split.num_counters_fixed;
962 x86_pmu.counter_bits = eax.split.bit_width;
963 x86_pmu.counter_mask = (1ULL << eax.split.bit_width) - 1;
b56a3802 964
72eae04d 965 return 0;
b56a3802
JSR
966}
967
72eae04d 968static int amd_pmu_init(void)
f87ad35d 969{
4a06bd85 970 x86_pmu = amd_pmu;
72eae04d 971 return 0;
f87ad35d
JSR
972}
973
b56a3802
JSR
974void __init init_hw_perf_counters(void)
975{
72eae04d
RR
976 int err;
977
b56a3802
JSR
978 switch (boot_cpu_data.x86_vendor) {
979 case X86_VENDOR_INTEL:
72eae04d 980 err = intel_pmu_init();
b56a3802 981 break;
f87ad35d 982 case X86_VENDOR_AMD:
72eae04d 983 err = amd_pmu_init();
f87ad35d 984 break;
4138960a
RR
985 default:
986 return;
b56a3802 987 }
72eae04d 988 if (err != 0)
b56a3802
JSR
989 return;
990
faa28ae0
RR
991 pr_info("%s Performance Monitoring support detected.\n", x86_pmu.name);
992 pr_info("... version: %d\n", x86_pmu.version);
993 pr_info("... bit width: %d\n", x86_pmu.counter_bits);
994
0933e5c6
RR
995 pr_info("... num counters: %d\n", x86_pmu.num_counters);
996 if (x86_pmu.num_counters > X86_PMC_MAX_GENERIC) {
997 x86_pmu.num_counters = X86_PMC_MAX_GENERIC;
241771ef 998 WARN(1, KERN_ERR "hw perf counters %d > max(%d), clipping!",
0933e5c6 999 x86_pmu.num_counters, X86_PMC_MAX_GENERIC);
241771ef 1000 }
0933e5c6
RR
1001 perf_counter_mask = (1 << x86_pmu.num_counters) - 1;
1002 perf_max_counters = x86_pmu.num_counters;
241771ef 1003
0933e5c6 1004 pr_info("... value mask: %016Lx\n", x86_pmu.counter_mask);
c619b8ff 1005 pr_info("... max period: %016Lx\n", x86_pmu.max_period);
2f18d1e8 1006
0933e5c6
RR
1007 if (x86_pmu.num_counters_fixed > X86_PMC_MAX_FIXED) {
1008 x86_pmu.num_counters_fixed = X86_PMC_MAX_FIXED;
703e937c 1009 WARN(1, KERN_ERR "hw perf counters fixed %d > max(%d), clipping!",
0933e5c6 1010 x86_pmu.num_counters_fixed, X86_PMC_MAX_FIXED);
703e937c 1011 }
0933e5c6 1012 pr_info("... fixed counters: %d\n", x86_pmu.num_counters_fixed);
862a1a5f 1013
0933e5c6
RR
1014 perf_counter_mask |=
1015 ((1LL << x86_pmu.num_counters_fixed)-1) << X86_PMC_IDX_FIXED;
241771ef 1016
a1ef58f4 1017 pr_info("... counter mask: %016Lx\n", perf_counter_mask);
75f224cf 1018
241771ef
IM
1019 perf_counters_lapic_init(0);
1020 register_die_notifier(&perf_counter_nmi_notifier);
241771ef 1021}
621a01ea 1022
bb775fc2 1023static inline void x86_pmu_read(struct perf_counter *counter)
ee06094f
IM
1024{
1025 x86_perf_counter_update(counter, &counter->hw, counter->hw.idx);
1026}
1027
4aeb0b42
RR
1028static const struct pmu pmu = {
1029 .enable = x86_pmu_enable,
1030 .disable = x86_pmu_disable,
1031 .read = x86_pmu_read,
621a01ea
IM
1032};
1033
4aeb0b42 1034const struct pmu *hw_perf_counter_init(struct perf_counter *counter)
621a01ea
IM
1035{
1036 int err;
1037
1038 err = __hw_perf_counter_init(counter);
1039 if (err)
9ea98e19 1040 return ERR_PTR(err);
621a01ea 1041
4aeb0b42 1042 return &pmu;
621a01ea 1043}
d7d59fb3
PZ
1044
1045/*
1046 * callchain support
1047 */
1048
1049static inline
1050void callchain_store(struct perf_callchain_entry *entry, unsigned long ip)
1051{
1052 if (entry->nr < MAX_STACK_DEPTH)
1053 entry->ip[entry->nr++] = ip;
1054}
1055
1056static DEFINE_PER_CPU(struct perf_callchain_entry, irq_entry);
1057static DEFINE_PER_CPU(struct perf_callchain_entry, nmi_entry);
1058
1059
1060static void
1061backtrace_warning_symbol(void *data, char *msg, unsigned long symbol)
1062{
1063 /* Ignore warnings */
1064}
1065
1066static void backtrace_warning(void *data, char *msg)
1067{
1068 /* Ignore warnings */
1069}
1070
1071static int backtrace_stack(void *data, char *name)
1072{
1073 /* Don't bother with IRQ stacks for now */
1074 return -1;
1075}
1076
1077static void backtrace_address(void *data, unsigned long addr, int reliable)
1078{
1079 struct perf_callchain_entry *entry = data;
1080
1081 if (reliable)
1082 callchain_store(entry, addr);
1083}
1084
1085static const struct stacktrace_ops backtrace_ops = {
1086 .warning = backtrace_warning,
1087 .warning_symbol = backtrace_warning_symbol,
1088 .stack = backtrace_stack,
1089 .address = backtrace_address,
1090};
1091
1092static void
1093perf_callchain_kernel(struct pt_regs *regs, struct perf_callchain_entry *entry)
1094{
1095 unsigned long bp;
1096 char *stack;
5872bdb8 1097 int nr = entry->nr;
d7d59fb3
PZ
1098
1099 callchain_store(entry, instruction_pointer(regs));
1100
1101 stack = ((char *)regs + sizeof(struct pt_regs));
1102#ifdef CONFIG_FRAME_POINTER
1103 bp = frame_pointer(regs);
1104#else
1105 bp = 0;
1106#endif
1107
1108 dump_trace(NULL, regs, (void *)stack, bp, &backtrace_ops, entry);
5872bdb8
PZ
1109
1110 entry->kernel = entry->nr - nr;
d7d59fb3
PZ
1111}
1112
1113
1114struct stack_frame {
1115 const void __user *next_fp;
1116 unsigned long return_address;
1117};
1118
1119static int copy_stack_frame(const void __user *fp, struct stack_frame *frame)
1120{
1121 int ret;
1122
1123 if (!access_ok(VERIFY_READ, fp, sizeof(*frame)))
1124 return 0;
1125
1126 ret = 1;
1127 pagefault_disable();
1128 if (__copy_from_user_inatomic(frame, fp, sizeof(*frame)))
1129 ret = 0;
1130 pagefault_enable();
1131
1132 return ret;
1133}
1134
1135static void
1136perf_callchain_user(struct pt_regs *regs, struct perf_callchain_entry *entry)
1137{
1138 struct stack_frame frame;
1139 const void __user *fp;
5872bdb8 1140 int nr = entry->nr;
d7d59fb3
PZ
1141
1142 regs = (struct pt_regs *)current->thread.sp0 - 1;
1143 fp = (void __user *)regs->bp;
1144
1145 callchain_store(entry, regs->ip);
1146
1147 while (entry->nr < MAX_STACK_DEPTH) {
1148 frame.next_fp = NULL;
1149 frame.return_address = 0;
1150
1151 if (!copy_stack_frame(fp, &frame))
1152 break;
1153
1154 if ((unsigned long)fp < user_stack_pointer(regs))
1155 break;
1156
1157 callchain_store(entry, frame.return_address);
1158 fp = frame.next_fp;
1159 }
5872bdb8
PZ
1160
1161 entry->user = entry->nr - nr;
d7d59fb3
PZ
1162}
1163
1164static void
1165perf_do_callchain(struct pt_regs *regs, struct perf_callchain_entry *entry)
1166{
1167 int is_user;
1168
1169 if (!regs)
1170 return;
1171
1172 is_user = user_mode(regs);
1173
1174 if (!current || current->pid == 0)
1175 return;
1176
1177 if (is_user && current->state != TASK_RUNNING)
1178 return;
1179
1180 if (!is_user)
1181 perf_callchain_kernel(regs, entry);
1182
1183 if (current->mm)
1184 perf_callchain_user(regs, entry);
1185}
1186
1187struct perf_callchain_entry *perf_callchain(struct pt_regs *regs)
1188{
1189 struct perf_callchain_entry *entry;
1190
1191 if (in_nmi())
1192 entry = &__get_cpu_var(nmi_entry);
1193 else
1194 entry = &__get_cpu_var(irq_entry);
1195
1196 entry->nr = 0;
5872bdb8
PZ
1197 entry->hv = 0;
1198 entry->kernel = 0;
1199 entry->user = 0;
d7d59fb3
PZ
1200
1201 perf_do_callchain(regs, entry);
1202
1203 return entry;
1204}