aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/perf_regs.c
diff options
context:
space:
mode:
authorWill Deacon <will.deacon@arm.com>2013-09-26 12:36:35 +0100
committerWill Deacon <will.deacon@arm.com>2013-09-30 16:41:50 +0100
commit49863894db3ed7bd41541b1c17733273966cea71 (patch)
tree11ae0ce6aadc67d797ae15ce4951c610ef1edcd0 /arch/arm/kernel/perf_regs.c
parentLinux 3.12-rc3 (diff)
downloadlinux-dev-49863894db3ed7bd41541b1c17733273966cea71.tar.xz
linux-dev-49863894db3ed7bd41541b1c17733273966cea71.zip
ARM: perf: add support for perf registers API
This patch implements the functions required for the perf registers API, allowing the perf tool to interface kernel register dumps with libunwind in order to provide userspace backtracing. Cc: Jean Pihet <jean.pihet@linaro.org> Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/kernel/perf_regs.c')
-rw-r--r--arch/arm/kernel/perf_regs.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/kernel/perf_regs.c b/arch/arm/kernel/perf_regs.c
new file mode 100644
index 000000000000..6e4379c67cbc
--- /dev/null
+++ b/arch/arm/kernel/perf_regs.c
@@ -0,0 +1,30 @@
+
+#include <linux/errno.h>
+#include <linux/kernel.h>
+#include <linux/perf_event.h>
+#include <linux/bug.h>
+#include <asm/perf_regs.h>
+#include <asm/ptrace.h>
+
+u64 perf_reg_value(struct pt_regs *regs, int idx)
+{
+ if (WARN_ON_ONCE((u32)idx >= PERF_REG_ARM_MAX))
+ return 0;
+
+ return regs->uregs[idx];
+}
+
+#define REG_RESERVED (~((1ULL << PERF_REG_ARM_MAX) - 1))
+
+int perf_reg_validate(u64 mask)
+{
+ if (!mask || mask & REG_RESERVED)
+ return -EINVAL;
+
+ return 0;
+}
+
+u64 perf_reg_abi(struct task_struct *task)
+{
+ return PERF_SAMPLE_REGS_ABI_32;
+}