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/err.h>
14 #include <linux/errno.h>
15 #include <linux/init.h>
16 #include <linux/mutex.h>
17 #include <linux/oprofile.h>
18 #include <linux/perf_event.h>
19 #include <linux/platform_device.h>
20 #include <linux/slab.h>
21 #include <asm/stacktrace.h>
22 #include <linux/uaccess.h>
24 #include <asm/perf_event.h>
25 #include <asm/ptrace.h>
27 #ifdef CONFIG_HW_PERF_EVENTS
29 * Per performance monitor configuration as set via oprofilefs.
31 struct op_counter_config
{
33 unsigned long enabled
;
35 unsigned long unit_mask
;
38 struct perf_event_attr attr
;
41 static int op_arm_enabled
;
42 static DEFINE_MUTEX(op_arm_mutex
);
44 static struct op_counter_config
*counter_config
;
45 static struct perf_event
**perf_events
[nr_cpumask_bits
];
46 static int perf_num_counters
;
49 * Overflow callback for oprofile.
51 static void op_overflow_handler(struct perf_event
*event
, int unused
,
52 struct perf_sample_data
*data
, struct pt_regs
*regs
)
55 u32 cpu
= smp_processor_id();
57 for (id
= 0; id
< perf_num_counters
; ++id
)
58 if (perf_events
[cpu
][id
] == event
)
61 if (id
!= perf_num_counters
)
62 oprofile_add_sample(regs
, id
);
64 pr_warning("oprofile: ignoring spurious overflow "
69 * Called by op_arm_setup to create perf attributes to mirror the oprofile
70 * settings in counter_config. Attributes are created as `pinned' events and
71 * so are permanently scheduled on the PMU.
73 static void op_perf_setup(void)
76 u32 size
= sizeof(struct perf_event_attr
);
77 struct perf_event_attr
*attr
;
79 for (i
= 0; i
< perf_num_counters
; ++i
) {
80 attr
= &counter_config
[i
].attr
;
81 memset(attr
, 0, size
);
82 attr
->type
= PERF_TYPE_RAW
;
84 attr
->config
= counter_config
[i
].event
;
85 attr
->sample_period
= counter_config
[i
].count
;
90 static int op_create_counter(int cpu
, int event
)
93 struct perf_event
*pevent
;
95 if (!counter_config
[event
].enabled
|| (perf_events
[cpu
][event
] != NULL
))
98 pevent
= perf_event_create_kernel_counter(&counter_config
[event
].attr
,
100 op_overflow_handler
);
102 if (IS_ERR(pevent
)) {
103 ret
= PTR_ERR(pevent
);
104 } else if (pevent
->state
!= PERF_EVENT_STATE_ACTIVE
) {
105 pr_warning("oprofile: failed to enable event %d "
106 "on CPU %d\n", event
, cpu
);
109 perf_events
[cpu
][event
] = pevent
;
115 static void op_destroy_counter(int cpu
, int event
)
117 struct perf_event
*pevent
= perf_events
[cpu
][event
];
120 perf_event_release_kernel(pevent
);
121 perf_events
[cpu
][event
] = NULL
;
126 * Called by op_arm_start to create active perf events based on the
127 * perviously configured attributes.
129 static int op_perf_start(void)
131 int cpu
, event
, ret
= 0;
133 for_each_online_cpu(cpu
) {
134 for (event
= 0; event
< perf_num_counters
; ++event
) {
135 ret
= op_create_counter(cpu
, event
);
146 * Called by op_arm_stop at the end of a profiling run.
148 static void op_perf_stop(void)
152 for_each_online_cpu(cpu
)
153 for (event
= 0; event
< perf_num_counters
; ++event
)
154 op_destroy_counter(cpu
, event
);
158 static char *op_name_from_perf_id(enum arm_perf_pmu_ids id
)
161 case ARM_PERF_PMU_ID_XSCALE1
:
162 return "arm/xscale1";
163 case ARM_PERF_PMU_ID_XSCALE2
:
164 return "arm/xscale2";
165 case ARM_PERF_PMU_ID_V6
:
167 case ARM_PERF_PMU_ID_V6MP
:
169 case ARM_PERF_PMU_ID_CA8
:
171 case ARM_PERF_PMU_ID_CA9
:
172 return "arm/armv7-ca9";
178 static int op_arm_create_files(struct super_block
*sb
, struct dentry
*root
)
182 for (i
= 0; i
< perf_num_counters
; i
++) {
186 snprintf(buf
, sizeof buf
, "%d", i
);
187 dir
= oprofilefs_mkdir(sb
, root
, buf
);
188 oprofilefs_create_ulong(sb
, dir
, "enabled", &counter_config
[i
].enabled
);
189 oprofilefs_create_ulong(sb
, dir
, "event", &counter_config
[i
].event
);
190 oprofilefs_create_ulong(sb
, dir
, "count", &counter_config
[i
].count
);
191 oprofilefs_create_ulong(sb
, dir
, "unit_mask", &counter_config
[i
].unit_mask
);
192 oprofilefs_create_ulong(sb
, dir
, "kernel", &counter_config
[i
].kernel
);
193 oprofilefs_create_ulong(sb
, dir
, "user", &counter_config
[i
].user
);
199 static int op_arm_setup(void)
201 spin_lock(&oprofilefs_lock
);
203 spin_unlock(&oprofilefs_lock
);
207 static int op_arm_start(void)
211 mutex_lock(&op_arm_mutex
);
212 if (!op_arm_enabled
) {
217 mutex_unlock(&op_arm_mutex
);
221 static void op_arm_stop(void)
223 mutex_lock(&op_arm_mutex
);
227 mutex_unlock(&op_arm_mutex
);
231 static int op_arm_suspend(struct platform_device
*dev
, pm_message_t state
)
233 mutex_lock(&op_arm_mutex
);
236 mutex_unlock(&op_arm_mutex
);
240 static int op_arm_resume(struct platform_device
*dev
)
242 mutex_lock(&op_arm_mutex
);
243 if (op_arm_enabled
&& op_perf_start())
245 mutex_unlock(&op_arm_mutex
);
249 static struct platform_driver oprofile_driver
= {
251 .name
= "arm-oprofile",
253 .resume
= op_arm_resume
,
254 .suspend
= op_arm_suspend
,
257 static struct platform_device
*oprofile_pdev
;
259 static int __init
init_driverfs(void)
263 ret
= platform_driver_register(&oprofile_driver
);
267 oprofile_pdev
= platform_device_register_simple(
268 oprofile_driver
.driver
.name
, 0, NULL
, 0);
269 if (IS_ERR(oprofile_pdev
)) {
270 ret
= PTR_ERR(oprofile_pdev
);
271 platform_driver_unregister(&oprofile_driver
);
278 static void exit_driverfs(void)
280 platform_device_unregister(oprofile_pdev
);
281 platform_driver_unregister(&oprofile_driver
);
284 static int __init
init_driverfs(void) { return 0; }
285 #define exit_driverfs() do { } while (0)
286 #endif /* CONFIG_PM */
288 static int report_trace(struct stackframe
*frame
, void *d
)
290 unsigned int *depth
= d
;
293 oprofile_add_trace(frame
->pc
);
301 * The registers we're interested in are at the end of the variable
302 * length saved register structure. The fp points at the end of this
303 * structure so the address of this struct is:
304 * (struct frame_tail *)(xxx->fp)-1
307 struct frame_tail
*fp
;
310 } __attribute__((packed
));
312 static struct frame_tail
* user_backtrace(struct frame_tail
*tail
)
314 struct frame_tail buftail
[2];
316 /* Also check accessibility of one struct frame_tail beyond */
317 if (!access_ok(VERIFY_READ
, tail
, sizeof(buftail
)))
319 if (__copy_from_user_inatomic(buftail
, tail
, sizeof(buftail
)))
322 oprofile_add_trace(buftail
[0].lr
);
324 /* frame pointers should strictly progress back up the stack
325 * (towards higher addresses) */
326 if (tail
>= buftail
[0].fp
)
329 return buftail
[0].fp
-1;
332 static void arm_backtrace(struct pt_regs
* const regs
, unsigned int depth
)
334 struct frame_tail
*tail
= ((struct frame_tail
*) regs
->ARM_fp
) - 1;
336 if (!user_mode(regs
)) {
337 struct stackframe frame
;
338 frame
.fp
= regs
->ARM_fp
;
339 frame
.sp
= regs
->ARM_sp
;
340 frame
.lr
= regs
->ARM_lr
;
341 frame
.pc
= regs
->ARM_pc
;
342 walk_stackframe(&frame
, report_trace
, &depth
);
346 while (depth
-- && tail
&& !((unsigned long) tail
& 3))
347 tail
= user_backtrace(tail
);
350 int __init
oprofile_arch_init(struct oprofile_operations
*ops
)
354 perf_num_counters
= armpmu_get_max_events();
356 counter_config
= kcalloc(perf_num_counters
,
357 sizeof(struct op_counter_config
), GFP_KERNEL
);
359 if (!counter_config
) {
360 pr_info("oprofile: failed to allocate %d "
361 "counters\n", perf_num_counters
);
365 ret
= init_driverfs();
367 kfree(counter_config
);
371 for_each_possible_cpu(cpu
) {
372 perf_events
[cpu
] = kcalloc(perf_num_counters
,
373 sizeof(struct perf_event
*), GFP_KERNEL
);
374 if (!perf_events
[cpu
]) {
375 pr_info("oprofile: failed to allocate %d perf events "
376 "for cpu %d\n", perf_num_counters
, cpu
);
378 kfree(perf_events
[cpu
]);
383 ops
->backtrace
= arm_backtrace
;
384 ops
->create_files
= op_arm_create_files
;
385 ops
->setup
= op_arm_setup
;
386 ops
->start
= op_arm_start
;
387 ops
->stop
= op_arm_stop
;
388 ops
->shutdown
= op_arm_stop
;
389 ops
->cpu_type
= op_name_from_perf_id(armpmu_get_pmu_id());
394 pr_info("oprofile: using %s\n", ops
->cpu_type
);
399 void oprofile_arch_exit(void)
402 struct perf_event
*event
;
406 for_each_possible_cpu(cpu
) {
407 for (id
= 0; id
< perf_num_counters
; ++id
) {
408 event
= perf_events
[cpu
][id
];
410 perf_event_release_kernel(event
);
412 kfree(perf_events
[cpu
]);
417 kfree(counter_config
);
420 int __init
oprofile_arch_init(struct oprofile_operations
*ops
)
422 pr_info("oprofile: hardware counters not available\n");
425 void oprofile_arch_exit(void) {}
426 #endif /* CONFIG_HW_PERF_EVENTS */