blob: cc649a1e46da27ae45488d743597edcc251430ff [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 Deacon8c1fc962010-04-30 11:36:54 +010013#include <linux/init.h>
14#include <linux/mutex.h>
15#include <linux/oprofile.h>
16#include <linux/perf_event.h>
Will Deacond1e86d62010-04-30 11:38:39 +010017#include <linux/platform_device.h>
Russell Kingae92dc92006-03-16 11:32:51 +000018#include <linux/slab.h>
Will Deacon8c1fc962010-04-30 11:36:54 +010019#include <asm/stacktrace.h>
20#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Will Deacon8c1fc962010-04-30 11:36:54 +010022#include <asm/perf_event.h>
23#include <asm/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Will Deacon8c1fc962010-04-30 11:36:54 +010025#ifdef CONFIG_HW_PERF_EVENTS
Will Deacon4295b892012-07-06 15:45:00 +010026
27/*
28 * OProfile has a curious naming scheme for the ARM PMUs, but they are
29 * part of the user ABI so we need to map from the perf PMU name for
30 * supported PMUs.
31 */
32static struct op_perf_name {
33 char *perf_name;
34 char *op_name;
35} op_perf_name_map[] = {
Mark Rutland3d1ff752012-12-19 16:33:24 +000036 { "armv5_xscale1", "arm/xscale1" },
37 { "armv5_xscale2", "arm/xscale2" },
38 { "armv6_1136", "arm/armv6" },
39 { "armv6_1156", "arm/armv6" },
40 { "armv6_1176", "arm/armv6" },
41 { "armv6_11mpcore", "arm/mpcore" },
42 { "armv7_cortex_a8", "arm/armv7" },
43 { "armv7_cortex_a9", "arm/armv7-ca9" },
Will Deacon4295b892012-07-06 15:45:00 +010044};
45
Matt Fleming56946332010-10-08 21:42:17 +010046char *op_name_from_perf_id(void)
Will Deacon8c1fc962010-04-30 11:36:54 +010047{
Will Deacon4295b892012-07-06 15:45:00 +010048 int i;
49 struct op_perf_name names;
50 const char *perf_name = perf_pmu_name();
Matt Fleming56946332010-10-08 21:42:17 +010051
Will Deacon4295b892012-07-06 15:45:00 +010052 for (i = 0; i < ARRAY_SIZE(op_perf_name_map); ++i) {
53 names = op_perf_name_map[i];
54 if (!strcmp(names.perf_name, perf_name))
55 return names.op_name;
Will Deacon8c1fc962010-04-30 11:36:54 +010056 }
Will Deacon4295b892012-07-06 15:45:00 +010057
58 return NULL;
Will Deacon8c1fc962010-04-30 11:36:54 +010059}
Ari Kauppid14dd7e2011-01-20 13:57:19 -050060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Will Deacon8c1fc962010-04-30 11:36:54 +010062static int report_trace(struct stackframe *frame, void *d)
63{
64 unsigned int *depth = d;
65
66 if (*depth) {
67 oprofile_add_trace(frame->pc);
68 (*depth)--;
69 }
70
71 return *depth == 0;
72}
73
74/*
75 * The registers we're interested in are at the end of the variable
76 * length saved register structure. The fp points at the end of this
77 * structure so the address of this struct is:
78 * (struct frame_tail *)(xxx->fp)-1
79 */
80struct frame_tail {
81 struct frame_tail *fp;
82 unsigned long sp;
83 unsigned long lr;
84} __attribute__((packed));
85
86static struct frame_tail* user_backtrace(struct frame_tail *tail)
87{
88 struct frame_tail buftail[2];
89
90 /* Also check accessibility of one struct frame_tail beyond */
91 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
92 return NULL;
93 if (__copy_from_user_inatomic(buftail, tail, sizeof(buftail)))
94 return NULL;
95
96 oprofile_add_trace(buftail[0].lr);
97
98 /* frame pointers should strictly progress back up the stack
99 * (towards higher addresses) */
Rabin Vincentcb061992011-02-09 11:35:12 +0100100 if (tail + 1 >= buftail[0].fp)
Will Deacon8c1fc962010-04-30 11:36:54 +0100101 return NULL;
102
103 return buftail[0].fp-1;
104}
105
106static void arm_backtrace(struct pt_regs * const regs, unsigned int depth)
107{
108 struct frame_tail *tail = ((struct frame_tail *) regs->ARM_fp) - 1;
109
110 if (!user_mode(regs)) {
111 struct stackframe frame;
Nikolay Borisove8a5dbc2014-06-03 19:51:32 +0100112 arm_get_current_stackframe(regs, &frame);
Will Deacon8c1fc962010-04-30 11:36:54 +0100113 walk_stackframe(&frame, report_trace, &depth);
114 return;
115 }
116
117 while (depth-- && tail && !((unsigned long) tail & 3))
118 tail = user_backtrace(tail);
119}
120
Matt Fleming58850e22010-09-27 20:35:29 +0100121int __init oprofile_arch_init(struct oprofile_operations *ops)
122{
Ari Kauppid14dd7e2011-01-20 13:57:19 -0500123 /* provide backtrace support also in timer mode: */
Matt Fleming58850e22010-09-27 20:35:29 +0100124 ops->backtrace = arm_backtrace;
125
126 return oprofile_perf_init(ops);
127}
128
Vladimir Zapolskiy55205c92011-12-22 16:15:40 +0100129void oprofile_arch_exit(void)
Matt Fleming58850e22010-09-27 20:35:29 +0100130{
131 oprofile_perf_exit();
132}