Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
[pandora-kernel.git] / arch / sh / oprofile / common.c
1 /*
2  * arch/sh/oprofile/init.c
3  *
4  * Copyright (C) 2003 - 2008  Paul Mundt
5  *
6  * Based on arch/mips/oprofile/common.c:
7  *
8  *      Copyright (C) 2004, 2005 Ralf Baechle
9  *      Copyright (C) 2005 MIPS Technologies, Inc.
10  *
11  * This file is subject to the terms and conditions of the GNU General Public
12  * License.  See the file "COPYING" in the main directory of this archive
13  * for more details.
14  */
15 #include <linux/kernel.h>
16 #include <linux/oprofile.h>
17 #include <linux/init.h>
18 #include <linux/errno.h>
19 #include <linux/smp.h>
20 #include <linux/perf_event.h>
21 #include <asm/processor.h>
22
23 #ifdef CONFIG_HW_PERF_EVENTS
24 extern void sh_backtrace(struct pt_regs * const regs, unsigned int depth);
25
26 char *op_name_from_perf_id(void)
27 {
28         const char *pmu;
29         char buf[20];
30         int size;
31
32         pmu = perf_pmu_name();
33         if (!pmu)
34                 return NULL;
35
36         size = snprintf(buf, sizeof(buf), "sh/%s", pmu);
37         if (size > -1 && size < sizeof(buf))
38                 return buf;
39
40         return NULL;
41 }
42
43 int __init oprofile_arch_init(struct oprofile_operations *ops)
44 {
45         ops->backtrace = sh_backtrace;
46
47         return oprofile_perf_init(ops);
48 }
49
50 void __exit oprofile_arch_exit(void)
51 {
52         oprofile_perf_exit();
53 }
54 #else
55 int __init oprofile_arch_init(struct oprofile_operations *ops)
56 {
57         pr_info("oprofile: hardware counters not available\n");
58         return -ENODEV;
59 }
60 void __exit oprofile_arch_exit(void) {}
61 #endif /* CONFIG_HW_PERF_EVENTS */