blob: 8aa974491dfcd555a6962461c0d2aa5f3287b653 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * @file common.c
3 *
4 * @remark Copyright 2004 Oprofile Authors
Will Deacon8c1fc962010-04-30 11:36:54 +01005 * @remark Copyright 2010 ARM Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * @remark Read the file COPYING
7 *
8 * @author Zwane Mwaikambo
Will Deacon8c1fc962010-04-30 11:36:54 +01009 * @author Will Deacon [move to perf]
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Will Deacon8c1fc962010-04-30 11:36:54 +010012#include <linux/cpumask.h>
Will Deacond1e86d62010-04-30 11:38:39 +010013#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/errno.h>
Will Deacon8c1fc962010-04-30 11:36:54 +010015#include <linux/init.h>
16#include <linux/mutex.h>
17#include <linux/oprofile.h>
18#include <linux/perf_event.h>
Will Deacond1e86d62010-04-30 11:38:39 +010019#include <linux/platform_device.h>
Russell Kingae92dc92006-03-16 11:32:51 +000020#include <linux/slab.h>
Will Deacon8c1fc962010-04-30 11:36:54 +010021#include <asm/stacktrace.h>
22#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Will Deacon8c1fc962010-04-30 11:36:54 +010024#include <asm/perf_event.h>
25#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Will Deacon8c1fc962010-04-30 11:36:54 +010027#ifdef CONFIG_HW_PERF_EVENTS
Matt Fleming56946332010-10-08 21:42:17 +010028char *op_name_from_perf_id(void)
Will Deacon8c1fc962010-04-30 11:36:54 +010029{
Matt Fleming56946332010-10-08 21:42:17 +010030 enum arm_perf_pmu_ids id = armpmu_get_pmu_id();
31
Will Deacon8c1fc962010-04-30 11:36:54 +010032 switch (id) {
33 case ARM_PERF_PMU_ID_XSCALE1:
34 return "arm/xscale1";
35 case ARM_PERF_PMU_ID_XSCALE2:
36 return "arm/xscale2";
37 case ARM_PERF_PMU_ID_V6:
38 return "arm/armv6";
39 case ARM_PERF_PMU_ID_V6MP:
40 return "arm/mpcore";
41 case ARM_PERF_PMU_ID_CA8:
42 return "arm/armv7";
43 case ARM_PERF_PMU_ID_CA9:
44 return "arm/armv7-ca9";
45 default:
46 return NULL;
47 }
48}
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Will Deacon8c1fc962010-04-30 11:36:54 +010050static int report_trace(struct stackframe *frame, void *d)
51{
52 unsigned int *depth = d;
53
54 if (*depth) {
55 oprofile_add_trace(frame->pc);
56 (*depth)--;
57 }
58
59 return *depth == 0;
60}
61
62/*
63 * The registers we're interested in are at the end of the variable
64 * length saved register structure. The fp points at the end of this
65 * structure so the address of this struct is:
66 * (struct frame_tail *)(xxx->fp)-1
67 */
68struct frame_tail {
69 struct frame_tail *fp;
70 unsigned long sp;
71 unsigned long lr;
72} __attribute__((packed));
73
74static struct frame_tail* user_backtrace(struct frame_tail *tail)
75{
76 struct frame_tail buftail[2];
77
78 /* Also check accessibility of one struct frame_tail beyond */
79 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
80 return NULL;
81 if (__copy_from_user_inatomic(buftail, tail, sizeof(buftail)))
82 return NULL;
83
84 oprofile_add_trace(buftail[0].lr);
85
86 /* frame pointers should strictly progress back up the stack
87 * (towards higher addresses) */
88 if (tail >= buftail[0].fp)
89 return NULL;
90
91 return buftail[0].fp-1;
92}
93
94static void arm_backtrace(struct pt_regs * const regs, unsigned int depth)
95{
96 struct frame_tail *tail = ((struct frame_tail *) regs->ARM_fp) - 1;
97
98 if (!user_mode(regs)) {
99 struct stackframe frame;
100 frame.fp = regs->ARM_fp;
101 frame.sp = regs->ARM_sp;
102 frame.lr = regs->ARM_lr;
103 frame.pc = regs->ARM_pc;
104 walk_stackframe(&frame, report_trace, &depth);
105 return;
106 }
107
108 while (depth-- && tail && !((unsigned long) tail & 3))
109 tail = user_backtrace(tail);
110}
111
Matt Fleming58850e22010-09-27 20:35:29 +0100112int __init oprofile_arch_init(struct oprofile_operations *ops)
113{
114 ops->backtrace = arm_backtrace;
115
116 return oprofile_perf_init(ops);
117}
118
Matt Fleming58850e22010-09-27 20:35:29 +0100119void __exit oprofile_arch_exit(void)
120{
121 oprofile_perf_exit();
122}
Will Deacon8c1fc962010-04-30 11:36:54 +0100123#else
124int __init oprofile_arch_init(struct oprofile_operations *ops)
125{
126 pr_info("oprofile: hardware counters not available\n");
127 return -ENODEV;
128}
Will Deaconc7fd2392010-08-29 14:52:00 -0400129void __exit oprofile_arch_exit(void) {}
Will Deacon8c1fc962010-04-30 11:36:54 +0100130#endif /* CONFIG_HW_PERF_EVENTS */