4 * @remark Copyright 2004 Oprofile Authors
5 * @remark Copyright 2010 ARM Ltd.
6 * @remark Read the file COPYING
8 * @author Zwane Mwaikambo
9 * @author Will Deacon [move to perf]
12 #include <linux/cpumask.h>
13 #include <linux/init.h>
14 #include <linux/mutex.h>
15 #include <linux/oprofile.h>
16 #include <linux/perf_event.h>
17 #include <linux/platform_device.h>
18 #include <linux/slab.h>
19 #include <asm/stacktrace.h>
20 #include <linux/uaccess.h>
22 #include <asm/perf_event.h>
23 #include <asm/ptrace.h>
25 #ifdef CONFIG_HW_PERF_EVENTS
26 char *op_name_from_perf_id(void)
28 enum arm_perf_pmu_ids id
= armpmu_get_pmu_id();
31 case ARM_PERF_PMU_ID_XSCALE1
:
33 case ARM_PERF_PMU_ID_XSCALE2
:
35 case ARM_PERF_PMU_ID_V6
:
37 case ARM_PERF_PMU_ID_V6MP
:
39 case ARM_PERF_PMU_ID_CA8
:
41 case ARM_PERF_PMU_ID_CA9
:
42 return "arm/armv7-ca9";
49 static int report_trace(struct stackframe
*frame
, void *d
)
51 unsigned int *depth
= d
;
54 oprofile_add_trace(frame
->pc
);
62 * The registers we're interested in are at the end of the variable
63 * length saved register structure. The fp points at the end of this
64 * structure so the address of this struct is:
65 * (struct frame_tail *)(xxx->fp)-1
68 struct frame_tail
*fp
;
71 } __attribute__((packed
));
73 static struct frame_tail
* user_backtrace(struct frame_tail
*tail
)
75 struct frame_tail buftail
[2];
77 /* Also check accessibility of one struct frame_tail beyond */
78 if (!access_ok(VERIFY_READ
, tail
, sizeof(buftail
)))
80 if (__copy_from_user_inatomic(buftail
, tail
, sizeof(buftail
)))
83 oprofile_add_trace(buftail
[0].lr
);
85 /* frame pointers should strictly progress back up the stack
86 * (towards higher addresses) */
87 if (tail
+ 1 >= buftail
[0].fp
)
90 return buftail
[0].fp
-1;
93 static void arm_backtrace(struct pt_regs
* const regs
, unsigned int depth
)
95 struct frame_tail
*tail
= ((struct frame_tail
*) regs
->ARM_fp
) - 1;
97 if (!user_mode(regs
)) {
98 struct stackframe frame
;
99 frame
.fp
= regs
->ARM_fp
;
100 frame
.sp
= regs
->ARM_sp
;
101 frame
.lr
= regs
->ARM_lr
;
102 frame
.pc
= regs
->ARM_pc
;
103 walk_stackframe(&frame
, report_trace
, &depth
);
107 while (depth
-- && tail
&& !((unsigned long) tail
& 3))
108 tail
= user_backtrace(tail
);
111 int __init
oprofile_arch_init(struct oprofile_operations
*ops
)
113 /* provide backtrace support also in timer mode: */
114 ops
->backtrace
= arm_backtrace
;
116 return oprofile_perf_init(ops
);
119 void __exit
oprofile_arch_exit(void)
121 oprofile_perf_exit();