4 * ARM performance counter support.
6 * Copyright (C) 2009 picoChip Designs, Ltd., Jamie Iles
7 * Copyright (C) 2010 ARM Ltd., Will Deacon <will.deacon@arm.com>
9 * This code is based on the sparc64 perf event code, which is in turn based
10 * on the x86 code. Callchain code is based on the ARM OProfile backtrace
13 #define pr_fmt(fmt) "hw perfevents: " fmt
15 #include <linux/interrupt.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/perf_event.h>
19 #include <linux/platform_device.h>
20 #include <linux/spinlock.h>
21 #include <linux/uaccess.h>
23 #include <asm/cputype.h>
25 #include <asm/irq_regs.h>
27 #include <asm/stacktrace.h>
29 static struct platform_device
*pmu_device
;
32 * Hardware lock to serialize accesses to PMU registers. Needed for the
33 * read/modify/write sequences.
35 static DEFINE_RAW_SPINLOCK(pmu_lock
);
38 * ARMv6 supports a maximum of 3 events, starting from index 1. If we add
39 * another platform that supports more, we need to increase this to be the
40 * largest of all platforms.
42 * ARMv7 supports up to 32 events:
43 * cycle counter CCNT + 31 events counters CNT0..30.
44 * Cortex-A8 has 1+4 counters, Cortex-A9 has 1+6 counters.
46 #define ARMPMU_MAX_HWEVENTS 33
48 /* The events for a given CPU. */
49 struct cpu_hw_events
{
51 * The events that are active on the CPU for the given index. Index 0
54 struct perf_event
*events
[ARMPMU_MAX_HWEVENTS
];
57 * A 1 bit for an index indicates that the counter is being used for
58 * an event. A 0 means that the counter can be used.
60 unsigned long used_mask
[BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS
)];
63 * A 1 bit for an index indicates that the counter is actively being
66 unsigned long active_mask
[BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS
)];
68 static DEFINE_PER_CPU(struct cpu_hw_events
, cpu_hw_events
);
71 enum arm_perf_pmu_ids id
;
73 irqreturn_t (*handle_irq
)(int irq_num
, void *dev
);
74 void (*enable
)(struct hw_perf_event
*evt
, int idx
);
75 void (*disable
)(struct hw_perf_event
*evt
, int idx
);
76 int (*get_event_idx
)(struct cpu_hw_events
*cpuc
,
77 struct hw_perf_event
*hwc
);
78 u32 (*read_counter
)(int idx
);
79 void (*write_counter
)(int idx
, u32 val
);
82 const unsigned (*cache_map
)[PERF_COUNT_HW_CACHE_MAX
]
83 [PERF_COUNT_HW_CACHE_OP_MAX
]
84 [PERF_COUNT_HW_CACHE_RESULT_MAX
];
85 const unsigned (*event_map
)[PERF_COUNT_HW_MAX
];
91 /* Set at runtime when we know what CPU type we are. */
92 static const struct arm_pmu
*armpmu
;
95 armpmu_get_pmu_id(void)
104 EXPORT_SYMBOL_GPL(armpmu_get_pmu_id
);
107 armpmu_get_max_events(void)
112 max_events
= armpmu
->num_events
;
116 EXPORT_SYMBOL_GPL(armpmu_get_max_events
);
118 int perf_num_counters(void)
120 return armpmu_get_max_events();
122 EXPORT_SYMBOL_GPL(perf_num_counters
);
124 #define HW_OP_UNSUPPORTED 0xFFFF
127 PERF_COUNT_HW_CACHE_##_x
129 #define CACHE_OP_UNSUPPORTED 0xFFFF
132 armpmu_map_cache_event(u64 config
)
134 unsigned int cache_type
, cache_op
, cache_result
, ret
;
136 cache_type
= (config
>> 0) & 0xff;
137 if (cache_type
>= PERF_COUNT_HW_CACHE_MAX
)
140 cache_op
= (config
>> 8) & 0xff;
141 if (cache_op
>= PERF_COUNT_HW_CACHE_OP_MAX
)
144 cache_result
= (config
>> 16) & 0xff;
145 if (cache_result
>= PERF_COUNT_HW_CACHE_RESULT_MAX
)
148 ret
= (int)(*armpmu
->cache_map
)[cache_type
][cache_op
][cache_result
];
150 if (ret
== CACHE_OP_UNSUPPORTED
)
157 armpmu_map_event(u64 config
)
159 int mapping
= (*armpmu
->event_map
)[config
];
160 return mapping
== HW_OP_UNSUPPORTED
? -EOPNOTSUPP
: mapping
;
164 armpmu_map_raw_event(u64 config
)
166 return (int)(config
& armpmu
->raw_event_mask
);
170 armpmu_event_set_period(struct perf_event
*event
,
171 struct hw_perf_event
*hwc
,
174 s64 left
= local64_read(&hwc
->period_left
);
175 s64 period
= hwc
->sample_period
;
178 if (unlikely(left
<= -period
)) {
180 local64_set(&hwc
->period_left
, left
);
181 hwc
->last_period
= period
;
185 if (unlikely(left
<= 0)) {
187 local64_set(&hwc
->period_left
, left
);
188 hwc
->last_period
= period
;
192 if (left
> (s64
)armpmu
->max_period
)
193 left
= armpmu
->max_period
;
195 local64_set(&hwc
->prev_count
, (u64
)-left
);
197 armpmu
->write_counter(idx
, (u64
)(-left
) & 0xffffffff);
199 perf_event_update_userpage(event
);
205 armpmu_event_update(struct perf_event
*event
,
206 struct hw_perf_event
*hwc
,
210 s64 prev_raw_count
, new_raw_count
;
214 prev_raw_count
= local64_read(&hwc
->prev_count
);
215 new_raw_count
= armpmu
->read_counter(idx
);
217 if (local64_cmpxchg(&hwc
->prev_count
, prev_raw_count
,
218 new_raw_count
) != prev_raw_count
)
221 delta
= (new_raw_count
<< shift
) - (prev_raw_count
<< shift
);
224 local64_add(delta
, &event
->count
);
225 local64_sub(delta
, &hwc
->period_left
);
227 return new_raw_count
;
231 armpmu_read(struct perf_event
*event
)
233 struct hw_perf_event
*hwc
= &event
->hw
;
235 /* Don't read disabled counters! */
239 armpmu_event_update(event
, hwc
, hwc
->idx
);
243 armpmu_stop(struct perf_event
*event
, int flags
)
245 struct hw_perf_event
*hwc
= &event
->hw
;
251 * ARM pmu always has to update the counter, so ignore
252 * PERF_EF_UPDATE, see comments in armpmu_start().
254 if (!(hwc
->state
& PERF_HES_STOPPED
)) {
255 armpmu
->disable(hwc
, hwc
->idx
);
256 barrier(); /* why? */
257 armpmu_event_update(event
, hwc
, hwc
->idx
);
258 hwc
->state
|= PERF_HES_STOPPED
| PERF_HES_UPTODATE
;
263 armpmu_start(struct perf_event
*event
, int flags
)
265 struct hw_perf_event
*hwc
= &event
->hw
;
271 * ARM pmu always has to reprogram the period, so ignore
272 * PERF_EF_RELOAD, see the comment below.
274 if (flags
& PERF_EF_RELOAD
)
275 WARN_ON_ONCE(!(hwc
->state
& PERF_HES_UPTODATE
));
279 * Set the period again. Some counters can't be stopped, so when we
280 * were stopped we simply disabled the IRQ source and the counter
281 * may have been left counting. If we don't do this step then we may
282 * get an interrupt too soon or *way* too late if the overflow has
283 * happened since disabling.
285 armpmu_event_set_period(event
, hwc
, hwc
->idx
);
286 armpmu
->enable(hwc
, hwc
->idx
);
290 armpmu_del(struct perf_event
*event
, int flags
)
292 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
293 struct hw_perf_event
*hwc
= &event
->hw
;
298 clear_bit(idx
, cpuc
->active_mask
);
299 armpmu_stop(event
, PERF_EF_UPDATE
);
300 cpuc
->events
[idx
] = NULL
;
301 clear_bit(idx
, cpuc
->used_mask
);
303 perf_event_update_userpage(event
);
307 armpmu_add(struct perf_event
*event
, int flags
)
309 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
310 struct hw_perf_event
*hwc
= &event
->hw
;
314 perf_pmu_disable(event
->pmu
);
316 /* If we don't have a space for the counter then finish early. */
317 idx
= armpmu
->get_event_idx(cpuc
, hwc
);
324 * If there is an event in the counter we are going to use then make
325 * sure it is disabled.
328 armpmu
->disable(hwc
, idx
);
329 cpuc
->events
[idx
] = event
;
330 set_bit(idx
, cpuc
->active_mask
);
332 hwc
->state
= PERF_HES_STOPPED
| PERF_HES_UPTODATE
;
333 if (flags
& PERF_EF_START
)
334 armpmu_start(event
, PERF_EF_RELOAD
);
336 /* Propagate our changes to the userspace mapping. */
337 perf_event_update_userpage(event
);
340 perf_pmu_enable(event
->pmu
);
344 static struct pmu pmu
;
347 validate_event(struct cpu_hw_events
*cpuc
,
348 struct perf_event
*event
)
350 struct hw_perf_event fake_event
= event
->hw
;
352 if (event
->pmu
!= &pmu
|| event
->state
<= PERF_EVENT_STATE_OFF
)
355 return armpmu
->get_event_idx(cpuc
, &fake_event
) >= 0;
359 validate_group(struct perf_event
*event
)
361 struct perf_event
*sibling
, *leader
= event
->group_leader
;
362 struct cpu_hw_events fake_pmu
;
364 memset(&fake_pmu
, 0, sizeof(fake_pmu
));
366 if (!validate_event(&fake_pmu
, leader
))
369 list_for_each_entry(sibling
, &leader
->sibling_list
, group_entry
) {
370 if (!validate_event(&fake_pmu
, sibling
))
374 if (!validate_event(&fake_pmu
, event
))
380 static irqreturn_t
armpmu_platform_irq(int irq
, void *dev
)
382 struct arm_pmu_platdata
*plat
= dev_get_platdata(&pmu_device
->dev
);
384 return plat
->handle_irq(irq
, dev
, armpmu
->handle_irq
);
388 armpmu_reserve_hardware(void)
390 struct arm_pmu_platdata
*plat
;
391 irq_handler_t handle_irq
;
392 int i
, err
= -ENODEV
, irq
;
394 pmu_device
= reserve_pmu(ARM_PMU_DEVICE_CPU
);
395 if (IS_ERR(pmu_device
)) {
396 pr_warning("unable to reserve pmu\n");
397 return PTR_ERR(pmu_device
);
400 init_pmu(ARM_PMU_DEVICE_CPU
);
402 plat
= dev_get_platdata(&pmu_device
->dev
);
403 if (plat
&& plat
->handle_irq
)
404 handle_irq
= armpmu_platform_irq
;
406 handle_irq
= armpmu
->handle_irq
;
408 if (pmu_device
->num_resources
< 1) {
409 pr_err("no irqs for PMUs defined\n");
413 for (i
= 0; i
< pmu_device
->num_resources
; ++i
) {
414 irq
= platform_get_irq(pmu_device
, i
);
418 err
= request_irq(irq
, handle_irq
,
419 IRQF_DISABLED
| IRQF_NOBALANCING
,
422 pr_warning("unable to request IRQ%d for ARM perf "
429 for (i
= i
- 1; i
>= 0; --i
) {
430 irq
= platform_get_irq(pmu_device
, i
);
434 release_pmu(pmu_device
);
442 armpmu_release_hardware(void)
446 for (i
= pmu_device
->num_resources
- 1; i
>= 0; --i
) {
447 irq
= platform_get_irq(pmu_device
, i
);
453 release_pmu(pmu_device
);
457 static atomic_t active_events
= ATOMIC_INIT(0);
458 static DEFINE_MUTEX(pmu_reserve_mutex
);
461 hw_perf_event_destroy(struct perf_event
*event
)
463 if (atomic_dec_and_mutex_lock(&active_events
, &pmu_reserve_mutex
)) {
464 armpmu_release_hardware();
465 mutex_unlock(&pmu_reserve_mutex
);
470 __hw_perf_event_init(struct perf_event
*event
)
472 struct hw_perf_event
*hwc
= &event
->hw
;
475 /* Decode the generic type into an ARM event identifier. */
476 if (PERF_TYPE_HARDWARE
== event
->attr
.type
) {
477 mapping
= armpmu_map_event(event
->attr
.config
);
478 } else if (PERF_TYPE_HW_CACHE
== event
->attr
.type
) {
479 mapping
= armpmu_map_cache_event(event
->attr
.config
);
480 } else if (PERF_TYPE_RAW
== event
->attr
.type
) {
481 mapping
= armpmu_map_raw_event(event
->attr
.config
);
483 pr_debug("event type %x not supported\n", event
->attr
.type
);
488 pr_debug("event %x:%llx not supported\n", event
->attr
.type
,
494 * Check whether we need to exclude the counter from certain modes.
495 * The ARM performance counters are on all of the time so if someone
496 * has asked us for some excludes then we have to fail.
498 if (event
->attr
.exclude_kernel
|| event
->attr
.exclude_user
||
499 event
->attr
.exclude_hv
|| event
->attr
.exclude_idle
) {
500 pr_debug("ARM performance counters do not support "
506 * We don't assign an index until we actually place the event onto
507 * hardware. Use -1 to signify that we haven't decided where to put it
508 * yet. For SMP systems, each core has it's own PMU so we can't do any
509 * clever allocation or constraints checking at this point.
514 * Store the event encoding into the config_base field. config and
515 * event_base are unused as the only 2 things we need to know are
516 * the event mapping and the counter to use. The counter to use is
517 * also the indx and the config_base is the event type.
519 hwc
->config_base
= (unsigned long)mapping
;
523 if (!hwc
->sample_period
) {
524 hwc
->sample_period
= armpmu
->max_period
;
525 hwc
->last_period
= hwc
->sample_period
;
526 local64_set(&hwc
->period_left
, hwc
->sample_period
);
530 if (event
->group_leader
!= event
) {
531 err
= validate_group(event
);
539 static int armpmu_event_init(struct perf_event
*event
)
543 switch (event
->attr
.type
) {
545 case PERF_TYPE_HARDWARE
:
546 case PERF_TYPE_HW_CACHE
:
556 event
->destroy
= hw_perf_event_destroy
;
558 if (!atomic_inc_not_zero(&active_events
)) {
559 if (atomic_read(&active_events
) > armpmu
->num_events
) {
560 atomic_dec(&active_events
);
564 mutex_lock(&pmu_reserve_mutex
);
565 if (atomic_read(&active_events
) == 0) {
566 err
= armpmu_reserve_hardware();
570 atomic_inc(&active_events
);
571 mutex_unlock(&pmu_reserve_mutex
);
577 err
= __hw_perf_event_init(event
);
579 hw_perf_event_destroy(event
);
584 static void armpmu_enable(struct pmu
*pmu
)
586 /* Enable all of the perf events on hardware. */
588 struct cpu_hw_events
*cpuc
= &__get_cpu_var(cpu_hw_events
);
593 for (idx
= 0; idx
<= armpmu
->num_events
; ++idx
) {
594 struct perf_event
*event
= cpuc
->events
[idx
];
599 armpmu
->enable(&event
->hw
, idx
);
605 static void armpmu_disable(struct pmu
*pmu
)
611 static struct pmu pmu
= {
612 .pmu_enable
= armpmu_enable
,
613 .pmu_disable
= armpmu_disable
,
614 .event_init
= armpmu_event_init
,
617 .start
= armpmu_start
,
622 /* Include the PMU-specific implementations. */
623 #include "perf_event_xscale.c"
624 #include "perf_event_v6.c"
625 #include "perf_event_v7.c"
628 init_hw_perf_events(void)
630 unsigned long cpuid
= read_cpuid_id();
631 unsigned long implementor
= (cpuid
& 0xFF000000) >> 24;
632 unsigned long part_number
= (cpuid
& 0xFFF0);
635 if (0x41 == implementor
) {
636 switch (part_number
) {
637 case 0xB360: /* ARM1136 */
638 case 0xB560: /* ARM1156 */
639 case 0xB760: /* ARM1176 */
640 armpmu
= armv6pmu_init();
642 case 0xB020: /* ARM11mpcore */
643 armpmu
= armv6mpcore_pmu_init();
645 case 0xC080: /* Cortex-A8 */
646 armpmu
= armv7_a8_pmu_init();
648 case 0xC090: /* Cortex-A9 */
649 armpmu
= armv7_a9_pmu_init();
652 /* Intel CPUs [xscale]. */
653 } else if (0x69 == implementor
) {
654 part_number
= (cpuid
>> 13) & 0x7;
655 switch (part_number
) {
657 armpmu
= xscale1pmu_init();
660 armpmu
= xscale2pmu_init();
666 pr_info("enabled with %s PMU driver, %d counters available\n",
667 armpmu
->name
, armpmu
->num_events
);
669 pr_info("no hardware support available\n");
672 perf_pmu_register(&pmu
, "cpu", PERF_TYPE_RAW
);
676 early_initcall(init_hw_perf_events
);
679 * Callchain handling code.
683 * The registers we're interested in are at the end of the variable
684 * length saved register structure. The fp points at the end of this
685 * structure so the address of this struct is:
686 * (struct frame_tail *)(xxx->fp)-1
688 * This code has been adapted from the ARM OProfile support.
691 struct frame_tail __user
*fp
;
694 } __attribute__((packed
));
697 * Get the return address for a single stackframe and return a pointer to the
700 static struct frame_tail __user
*
701 user_backtrace(struct frame_tail __user
*tail
,
702 struct perf_callchain_entry
*entry
)
704 struct frame_tail buftail
;
706 /* Also check accessibility of one struct frame_tail beyond */
707 if (!access_ok(VERIFY_READ
, tail
, sizeof(buftail
)))
709 if (__copy_from_user_inatomic(&buftail
, tail
, sizeof(buftail
)))
712 perf_callchain_store(entry
, buftail
.lr
);
715 * Frame pointers should strictly progress back up the stack
716 * (towards higher addresses).
718 if (tail
>= buftail
.fp
)
721 return buftail
.fp
- 1;
725 perf_callchain_user(struct perf_callchain_entry
*entry
, struct pt_regs
*regs
)
727 struct frame_tail __user
*tail
;
730 tail
= (struct frame_tail __user
*)regs
->ARM_fp
- 1;
732 while (tail
&& !((unsigned long)tail
& 0x3))
733 tail
= user_backtrace(tail
, entry
);
737 * Gets called by walk_stackframe() for every stackframe. This will be called
738 * whist unwinding the stackframe and is like a subroutine return so we use
742 callchain_trace(struct stackframe
*fr
,
745 struct perf_callchain_entry
*entry
= data
;
746 perf_callchain_store(entry
, fr
->pc
);
751 perf_callchain_kernel(struct perf_callchain_entry
*entry
, struct pt_regs
*regs
)
753 struct stackframe fr
;
755 fr
.fp
= regs
->ARM_fp
;
756 fr
.sp
= regs
->ARM_sp
;
757 fr
.lr
= regs
->ARM_lr
;
758 fr
.pc
= regs
->ARM_pc
;
759 walk_stackframe(&fr
, callchain_trace
, entry
);