blob: 421a4bb88fede2cffeacdd2ede4214c12e946711 [file] [log] [blame]
Jamie Iles1b8873a2010-02-02 20:25:44 +01001#undef DEBUG
2
3/*
4 * ARM performance counter support.
5 *
6 * Copyright (C) 2009 picoChip Designs, Ltd., Jamie Iles
Will Deacon43eab872010-11-13 19:04:32 +00007 * Copyright (C) 2010 ARM Ltd., Will Deacon <will.deacon@arm.com>
Jean PIHET796d1292010-01-26 18:51:05 +01008 *
Jamie Iles1b8873a2010-02-02 20:25:44 +01009 * 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
11 * code.
12 */
13#define pr_fmt(fmt) "hw perfevents: " fmt
14
15#include <linux/interrupt.h>
16#include <linux/kernel.h>
Will Deacon181193f2010-04-30 11:32:44 +010017#include <linux/module.h>
Jamie Iles1b8873a2010-02-02 20:25:44 +010018#include <linux/perf_event.h>
Will Deacon49c006b2010-04-29 17:13:24 +010019#include <linux/platform_device.h>
Jamie Iles1b8873a2010-02-02 20:25:44 +010020#include <linux/spinlock.h>
21#include <linux/uaccess.h>
22
23#include <asm/cputype.h>
24#include <asm/irq.h>
25#include <asm/irq_regs.h>
26#include <asm/pmu.h>
27#include <asm/stacktrace.h>
28
Will Deacon49c006b2010-04-29 17:13:24 +010029static struct platform_device *pmu_device;
Jamie Iles1b8873a2010-02-02 20:25:44 +010030
31/*
32 * Hardware lock to serialize accesses to PMU registers. Needed for the
33 * read/modify/write sequences.
34 */
35DEFINE_SPINLOCK(pmu_lock);
36
37/*
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.
Jean PIHET796d1292010-01-26 18:51:05 +010041 *
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.
Jamie Iles1b8873a2010-02-02 20:25:44 +010045 */
Jean PIHET796d1292010-01-26 18:51:05 +010046#define ARMPMU_MAX_HWEVENTS 33
Jamie Iles1b8873a2010-02-02 20:25:44 +010047
48/* The events for a given CPU. */
49struct cpu_hw_events {
50 /*
51 * The events that are active on the CPU for the given index. Index 0
52 * is reserved.
53 */
54 struct perf_event *events[ARMPMU_MAX_HWEVENTS];
55
56 /*
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.
59 */
60 unsigned long used_mask[BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS)];
61
62 /*
63 * A 1 bit for an index indicates that the counter is actively being
64 * used.
65 */
66 unsigned long active_mask[BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS)];
67};
68DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
69
70struct arm_pmu {
Will Deacon181193f2010-04-30 11:32:44 +010071 enum arm_perf_pmu_ids id;
Will Deacon62994832010-11-13 18:45:27 +000072 const char *name;
Jamie Iles1b8873a2010-02-02 20:25:44 +010073 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);
Jamie Iles1b8873a2010-02-02 20:25:44 +010076 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);
80 void (*start)(void);
81 void (*stop)(void);
Will Deacon84fee972010-11-13 17:13:56 +000082 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];
86 u32 raw_event_mask;
Jamie Iles1b8873a2010-02-02 20:25:44 +010087 int num_events;
88 u64 max_period;
89};
90
91/* Set at runtime when we know what CPU type we are. */
92static const struct arm_pmu *armpmu;
93
Will Deacon181193f2010-04-30 11:32:44 +010094enum arm_perf_pmu_ids
95armpmu_get_pmu_id(void)
96{
97 int id = -ENODEV;
98
99 if (armpmu != NULL)
100 id = armpmu->id;
101
102 return id;
103}
104EXPORT_SYMBOL_GPL(armpmu_get_pmu_id);
105
Will Deacon929f5192010-04-30 11:34:26 +0100106int
107armpmu_get_max_events(void)
108{
109 int max_events = 0;
110
111 if (armpmu != NULL)
112 max_events = armpmu->num_events;
113
114 return max_events;
115}
116EXPORT_SYMBOL_GPL(armpmu_get_max_events);
117
Matt Fleming3bf101b2010-09-27 20:22:24 +0100118int perf_num_counters(void)
119{
120 return armpmu_get_max_events();
121}
122EXPORT_SYMBOL_GPL(perf_num_counters);
123
Jamie Iles1b8873a2010-02-02 20:25:44 +0100124#define HW_OP_UNSUPPORTED 0xFFFF
125
126#define C(_x) \
127 PERF_COUNT_HW_CACHE_##_x
128
129#define CACHE_OP_UNSUPPORTED 0xFFFF
130
Jamie Iles1b8873a2010-02-02 20:25:44 +0100131static int
132armpmu_map_cache_event(u64 config)
133{
134 unsigned int cache_type, cache_op, cache_result, ret;
135
136 cache_type = (config >> 0) & 0xff;
137 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
138 return -EINVAL;
139
140 cache_op = (config >> 8) & 0xff;
141 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
142 return -EINVAL;
143
144 cache_result = (config >> 16) & 0xff;
145 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
146 return -EINVAL;
147
Will Deacon84fee972010-11-13 17:13:56 +0000148 ret = (int)(*armpmu->cache_map)[cache_type][cache_op][cache_result];
Jamie Iles1b8873a2010-02-02 20:25:44 +0100149
150 if (ret == CACHE_OP_UNSUPPORTED)
151 return -ENOENT;
152
153 return ret;
154}
155
156static int
Will Deacon84fee972010-11-13 17:13:56 +0000157armpmu_map_event(u64 config)
158{
159 int mapping = (*armpmu->event_map)[config];
160 return mapping == HW_OP_UNSUPPORTED ? -EOPNOTSUPP : mapping;
161}
162
163static int
164armpmu_map_raw_event(u64 config)
165{
166 return (int)(config & armpmu->raw_event_mask);
167}
168
169static int
Jamie Iles1b8873a2010-02-02 20:25:44 +0100170armpmu_event_set_period(struct perf_event *event,
171 struct hw_perf_event *hwc,
172 int idx)
173{
Peter Zijlstrae7850592010-05-21 14:43:08 +0200174 s64 left = local64_read(&hwc->period_left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100175 s64 period = hwc->sample_period;
176 int ret = 0;
177
178 if (unlikely(left <= -period)) {
179 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200180 local64_set(&hwc->period_left, left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100181 hwc->last_period = period;
182 ret = 1;
183 }
184
185 if (unlikely(left <= 0)) {
186 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200187 local64_set(&hwc->period_left, left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100188 hwc->last_period = period;
189 ret = 1;
190 }
191
192 if (left > (s64)armpmu->max_period)
193 left = armpmu->max_period;
194
Peter Zijlstrae7850592010-05-21 14:43:08 +0200195 local64_set(&hwc->prev_count, (u64)-left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100196
197 armpmu->write_counter(idx, (u64)(-left) & 0xffffffff);
198
199 perf_event_update_userpage(event);
200
201 return ret;
202}
203
204static u64
205armpmu_event_update(struct perf_event *event,
206 struct hw_perf_event *hwc,
207 int idx)
208{
209 int shift = 64 - 32;
210 s64 prev_raw_count, new_raw_count;
Will Deacon446a5a82010-07-02 16:41:52 +0100211 u64 delta;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100212
213again:
Peter Zijlstrae7850592010-05-21 14:43:08 +0200214 prev_raw_count = local64_read(&hwc->prev_count);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100215 new_raw_count = armpmu->read_counter(idx);
216
Peter Zijlstrae7850592010-05-21 14:43:08 +0200217 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Jamie Iles1b8873a2010-02-02 20:25:44 +0100218 new_raw_count) != prev_raw_count)
219 goto again;
220
221 delta = (new_raw_count << shift) - (prev_raw_count << shift);
222 delta >>= shift;
223
Peter Zijlstrae7850592010-05-21 14:43:08 +0200224 local64_add(delta, &event->count);
225 local64_sub(delta, &hwc->period_left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100226
227 return new_raw_count;
228}
229
230static void
Jamie Iles1b8873a2010-02-02 20:25:44 +0100231armpmu_read(struct perf_event *event)
232{
233 struct hw_perf_event *hwc = &event->hw;
234
235 /* Don't read disabled counters! */
236 if (hwc->idx < 0)
237 return;
238
239 armpmu_event_update(event, hwc, hwc->idx);
240}
241
242static void
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200243armpmu_stop(struct perf_event *event, int flags)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100244{
245 struct hw_perf_event *hwc = &event->hw;
246
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200247 if (!armpmu)
248 return;
249
250 /*
251 * ARM pmu always has to update the counter, so ignore
252 * PERF_EF_UPDATE, see comments in armpmu_start().
253 */
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;
259 }
260}
261
262static void
263armpmu_start(struct perf_event *event, int flags)
264{
265 struct hw_perf_event *hwc = &event->hw;
266
267 if (!armpmu)
268 return;
269
270 /*
271 * ARM pmu always has to reprogram the period, so ignore
272 * PERF_EF_RELOAD, see the comment below.
273 */
274 if (flags & PERF_EF_RELOAD)
275 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
276
277 hwc->state = 0;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100278 /*
279 * Set the period again. Some counters can't be stopped, so when we
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200280 * were stopped we simply disabled the IRQ source and the counter
Jamie Iles1b8873a2010-02-02 20:25:44 +0100281 * 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.
284 */
285 armpmu_event_set_period(event, hwc, hwc->idx);
286 armpmu->enable(hwc, hwc->idx);
287}
288
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200289static void
290armpmu_del(struct perf_event *event, int flags)
291{
292 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
293 struct hw_perf_event *hwc = &event->hw;
294 int idx = hwc->idx;
295
296 WARN_ON(idx < 0);
297
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);
302
303 perf_event_update_userpage(event);
304}
305
Jamie Iles1b8873a2010-02-02 20:25:44 +0100306static int
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200307armpmu_add(struct perf_event *event, int flags)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100308{
309 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
310 struct hw_perf_event *hwc = &event->hw;
311 int idx;
312 int err = 0;
313
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200314 perf_pmu_disable(event->pmu);
Peter Zijlstra24cd7f52010-06-11 17:32:03 +0200315
Jamie Iles1b8873a2010-02-02 20:25:44 +0100316 /* If we don't have a space for the counter then finish early. */
317 idx = armpmu->get_event_idx(cpuc, hwc);
318 if (idx < 0) {
319 err = idx;
320 goto out;
321 }
322
323 /*
324 * If there is an event in the counter we are going to use then make
325 * sure it is disabled.
326 */
327 event->hw.idx = idx;
328 armpmu->disable(hwc, idx);
329 cpuc->events[idx] = event;
330 set_bit(idx, cpuc->active_mask);
331
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200332 hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
333 if (flags & PERF_EF_START)
334 armpmu_start(event, PERF_EF_RELOAD);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100335
336 /* Propagate our changes to the userspace mapping. */
337 perf_event_update_userpage(event);
338
339out:
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200340 perf_pmu_enable(event->pmu);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100341 return err;
342}
343
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200344static struct pmu pmu;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100345
346static int
347validate_event(struct cpu_hw_events *cpuc,
348 struct perf_event *event)
349{
350 struct hw_perf_event fake_event = event->hw;
351
Will Deacon65b47112010-09-02 09:32:08 +0100352 if (event->pmu != &pmu || event->state <= PERF_EVENT_STATE_OFF)
353 return 1;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100354
355 return armpmu->get_event_idx(cpuc, &fake_event) >= 0;
356}
357
358static int
359validate_group(struct perf_event *event)
360{
361 struct perf_event *sibling, *leader = event->group_leader;
362 struct cpu_hw_events fake_pmu;
363
364 memset(&fake_pmu, 0, sizeof(fake_pmu));
365
366 if (!validate_event(&fake_pmu, leader))
367 return -ENOSPC;
368
369 list_for_each_entry(sibling, &leader->sibling_list, group_entry) {
370 if (!validate_event(&fake_pmu, sibling))
371 return -ENOSPC;
372 }
373
374 if (!validate_event(&fake_pmu, event))
375 return -ENOSPC;
376
377 return 0;
378}
379
380static int
381armpmu_reserve_hardware(void)
382{
Will Deacon49c006b2010-04-29 17:13:24 +0100383 int i, err = -ENODEV, irq;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100384
Will Deacon49c006b2010-04-29 17:13:24 +0100385 pmu_device = reserve_pmu(ARM_PMU_DEVICE_CPU);
386 if (IS_ERR(pmu_device)) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100387 pr_warning("unable to reserve pmu\n");
Will Deacon49c006b2010-04-29 17:13:24 +0100388 return PTR_ERR(pmu_device);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100389 }
390
Will Deacon49c006b2010-04-29 17:13:24 +0100391 init_pmu(ARM_PMU_DEVICE_CPU);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100392
Will Deacon49c006b2010-04-29 17:13:24 +0100393 if (pmu_device->num_resources < 1) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100394 pr_err("no irqs for PMUs defined\n");
395 return -ENODEV;
396 }
397
Will Deacon49c006b2010-04-29 17:13:24 +0100398 for (i = 0; i < pmu_device->num_resources; ++i) {
399 irq = platform_get_irq(pmu_device, i);
400 if (irq < 0)
401 continue;
402
403 err = request_irq(irq, armpmu->handle_irq,
Will Deaconddee87f2010-02-25 15:04:14 +0100404 IRQF_DISABLED | IRQF_NOBALANCING,
405 "armpmu", NULL);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100406 if (err) {
Will Deacon49c006b2010-04-29 17:13:24 +0100407 pr_warning("unable to request IRQ%d for ARM perf "
408 "counters\n", irq);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100409 break;
410 }
411 }
412
413 if (err) {
Will Deacon49c006b2010-04-29 17:13:24 +0100414 for (i = i - 1; i >= 0; --i) {
415 irq = platform_get_irq(pmu_device, i);
416 if (irq >= 0)
417 free_irq(irq, NULL);
418 }
419 release_pmu(pmu_device);
420 pmu_device = NULL;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100421 }
422
423 return err;
424}
425
426static void
427armpmu_release_hardware(void)
428{
Will Deacon49c006b2010-04-29 17:13:24 +0100429 int i, irq;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100430
Will Deacon49c006b2010-04-29 17:13:24 +0100431 for (i = pmu_device->num_resources - 1; i >= 0; --i) {
432 irq = platform_get_irq(pmu_device, i);
433 if (irq >= 0)
434 free_irq(irq, NULL);
435 }
Jamie Iles1b8873a2010-02-02 20:25:44 +0100436 armpmu->stop();
437
Will Deacon49c006b2010-04-29 17:13:24 +0100438 release_pmu(pmu_device);
439 pmu_device = NULL;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100440}
441
442static atomic_t active_events = ATOMIC_INIT(0);
443static DEFINE_MUTEX(pmu_reserve_mutex);
444
445static void
446hw_perf_event_destroy(struct perf_event *event)
447{
448 if (atomic_dec_and_mutex_lock(&active_events, &pmu_reserve_mutex)) {
449 armpmu_release_hardware();
450 mutex_unlock(&pmu_reserve_mutex);
451 }
452}
453
454static int
455__hw_perf_event_init(struct perf_event *event)
456{
457 struct hw_perf_event *hwc = &event->hw;
458 int mapping, err;
459
460 /* Decode the generic type into an ARM event identifier. */
461 if (PERF_TYPE_HARDWARE == event->attr.type) {
Will Deacon84fee972010-11-13 17:13:56 +0000462 mapping = armpmu_map_event(event->attr.config);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100463 } else if (PERF_TYPE_HW_CACHE == event->attr.type) {
464 mapping = armpmu_map_cache_event(event->attr.config);
465 } else if (PERF_TYPE_RAW == event->attr.type) {
Will Deacon84fee972010-11-13 17:13:56 +0000466 mapping = armpmu_map_raw_event(event->attr.config);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100467 } else {
468 pr_debug("event type %x not supported\n", event->attr.type);
469 return -EOPNOTSUPP;
470 }
471
472 if (mapping < 0) {
473 pr_debug("event %x:%llx not supported\n", event->attr.type,
474 event->attr.config);
475 return mapping;
476 }
477
478 /*
479 * Check whether we need to exclude the counter from certain modes.
480 * The ARM performance counters are on all of the time so if someone
481 * has asked us for some excludes then we have to fail.
482 */
483 if (event->attr.exclude_kernel || event->attr.exclude_user ||
484 event->attr.exclude_hv || event->attr.exclude_idle) {
485 pr_debug("ARM performance counters do not support "
486 "mode exclusion\n");
487 return -EPERM;
488 }
489
490 /*
491 * We don't assign an index until we actually place the event onto
492 * hardware. Use -1 to signify that we haven't decided where to put it
493 * yet. For SMP systems, each core has it's own PMU so we can't do any
494 * clever allocation or constraints checking at this point.
495 */
496 hwc->idx = -1;
497
498 /*
499 * Store the event encoding into the config_base field. config and
500 * event_base are unused as the only 2 things we need to know are
501 * the event mapping and the counter to use. The counter to use is
502 * also the indx and the config_base is the event type.
503 */
504 hwc->config_base = (unsigned long)mapping;
505 hwc->config = 0;
506 hwc->event_base = 0;
507
508 if (!hwc->sample_period) {
509 hwc->sample_period = armpmu->max_period;
510 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200511 local64_set(&hwc->period_left, hwc->sample_period);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100512 }
513
514 err = 0;
515 if (event->group_leader != event) {
516 err = validate_group(event);
517 if (err)
518 return -EINVAL;
519 }
520
521 return err;
522}
523
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200524static int armpmu_event_init(struct perf_event *event)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100525{
526 int err = 0;
527
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200528 switch (event->attr.type) {
529 case PERF_TYPE_RAW:
530 case PERF_TYPE_HARDWARE:
531 case PERF_TYPE_HW_CACHE:
532 break;
533
534 default:
535 return -ENOENT;
536 }
537
Jamie Iles1b8873a2010-02-02 20:25:44 +0100538 if (!armpmu)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200539 return -ENODEV;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100540
541 event->destroy = hw_perf_event_destroy;
542
543 if (!atomic_inc_not_zero(&active_events)) {
Ingo Molnar1efeb082010-10-14 08:09:42 +0200544 if (atomic_read(&active_events) > armpmu->num_events) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100545 atomic_dec(&active_events);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200546 return -ENOSPC;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100547 }
548
549 mutex_lock(&pmu_reserve_mutex);
550 if (atomic_read(&active_events) == 0) {
551 err = armpmu_reserve_hardware();
552 }
553
554 if (!err)
555 atomic_inc(&active_events);
556 mutex_unlock(&pmu_reserve_mutex);
557 }
558
559 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200560 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100561
562 err = __hw_perf_event_init(event);
563 if (err)
564 hw_perf_event_destroy(event);
565
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200566 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100567}
568
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200569static void armpmu_enable(struct pmu *pmu)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100570{
571 /* Enable all of the perf events on hardware. */
572 int idx;
573 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
574
575 if (!armpmu)
576 return;
577
578 for (idx = 0; idx <= armpmu->num_events; ++idx) {
579 struct perf_event *event = cpuc->events[idx];
580
581 if (!event)
582 continue;
583
584 armpmu->enable(&event->hw, idx);
585 }
586
587 armpmu->start();
588}
589
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200590static void armpmu_disable(struct pmu *pmu)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100591{
592 if (armpmu)
593 armpmu->stop();
594}
595
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200596static struct pmu pmu = {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200597 .pmu_enable = armpmu_enable,
598 .pmu_disable = armpmu_disable,
599 .event_init = armpmu_event_init,
600 .add = armpmu_add,
601 .del = armpmu_del,
602 .start = armpmu_start,
603 .stop = armpmu_stop,
604 .read = armpmu_read,
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200605};
606
Will Deacon43eab872010-11-13 19:04:32 +0000607/* Include the PMU-specific implementations. */
608#include "perf_event_xscale.c"
609#include "perf_event_v6.c"
610#include "perf_event_v7.c"
Will Deacon3cb314b2010-11-13 17:37:46 +0000611
Jamie Iles1b8873a2010-02-02 20:25:44 +0100612static int __init
613init_hw_perf_events(void)
614{
615 unsigned long cpuid = read_cpuid_id();
616 unsigned long implementor = (cpuid & 0xFF000000) >> 24;
617 unsigned long part_number = (cpuid & 0xFFF0);
618
Will Deacon49e6a322010-04-30 11:33:33 +0100619 /* ARM Ltd CPUs. */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100620 if (0x41 == implementor) {
621 switch (part_number) {
622 case 0xB360: /* ARM1136 */
623 case 0xB560: /* ARM1156 */
624 case 0xB760: /* ARM1176 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000625 armpmu = armv6pmu_init();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100626 break;
627 case 0xB020: /* ARM11mpcore */
Will Deacon3cb314b2010-11-13 17:37:46 +0000628 armpmu = armv6mpcore_pmu_init();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100629 break;
Jean PIHET796d1292010-01-26 18:51:05 +0100630 case 0xC080: /* Cortex-A8 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000631 armpmu = armv7_a8_pmu_init();
Jean PIHET796d1292010-01-26 18:51:05 +0100632 break;
633 case 0xC090: /* Cortex-A9 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000634 armpmu = armv7_a9_pmu_init();
Jean PIHET796d1292010-01-26 18:51:05 +0100635 break;
Will Deacon49e6a322010-04-30 11:33:33 +0100636 }
637 /* Intel CPUs [xscale]. */
638 } else if (0x69 == implementor) {
639 part_number = (cpuid >> 13) & 0x7;
640 switch (part_number) {
641 case 1:
Will Deacon3cb314b2010-11-13 17:37:46 +0000642 armpmu = xscale1pmu_init();
Will Deacon49e6a322010-04-30 11:33:33 +0100643 break;
644 case 2:
Will Deacon3cb314b2010-11-13 17:37:46 +0000645 armpmu = xscale2pmu_init();
Will Deacon49e6a322010-04-30 11:33:33 +0100646 break;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100647 }
648 }
649
Will Deacon49e6a322010-04-30 11:33:33 +0100650 if (armpmu) {
Jean PIHET796d1292010-01-26 18:51:05 +0100651 pr_info("enabled with %s PMU driver, %d counters available\n",
Will Deacon62994832010-11-13 18:45:27 +0000652 armpmu->name, armpmu->num_events);
Will Deacon49e6a322010-04-30 11:33:33 +0100653 } else {
654 pr_info("no hardware support available\n");
Will Deacon49e6a322010-04-30 11:33:33 +0100655 }
Jamie Iles1b8873a2010-02-02 20:25:44 +0100656
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200657 perf_pmu_register(&pmu);
658
Jamie Iles1b8873a2010-02-02 20:25:44 +0100659 return 0;
660}
661arch_initcall(init_hw_perf_events);
662
663/*
664 * Callchain handling code.
665 */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100666
667/*
668 * The registers we're interested in are at the end of the variable
669 * length saved register structure. The fp points at the end of this
670 * structure so the address of this struct is:
671 * (struct frame_tail *)(xxx->fp)-1
672 *
673 * This code has been adapted from the ARM OProfile support.
674 */
675struct frame_tail {
676 struct frame_tail *fp;
677 unsigned long sp;
678 unsigned long lr;
679} __attribute__((packed));
680
681/*
682 * Get the return address for a single stackframe and return a pointer to the
683 * next frame tail.
684 */
685static struct frame_tail *
686user_backtrace(struct frame_tail *tail,
687 struct perf_callchain_entry *entry)
688{
689 struct frame_tail buftail;
690
691 /* Also check accessibility of one struct frame_tail beyond */
692 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
693 return NULL;
694 if (__copy_from_user_inatomic(&buftail, tail, sizeof(buftail)))
695 return NULL;
696
Frederic Weisbecker70791ce2010-06-29 19:34:05 +0200697 perf_callchain_store(entry, buftail.lr);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100698
699 /*
700 * Frame pointers should strictly progress back up the stack
701 * (towards higher addresses).
702 */
703 if (tail >= buftail.fp)
704 return NULL;
705
706 return buftail.fp - 1;
707}
708
Frederic Weisbecker56962b4442010-06-30 23:03:51 +0200709void
710perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100711{
712 struct frame_tail *tail;
713
Jamie Iles1b8873a2010-02-02 20:25:44 +0100714
715 tail = (struct frame_tail *)regs->ARM_fp - 1;
716
717 while (tail && !((unsigned long)tail & 0x3))
718 tail = user_backtrace(tail, entry);
719}
720
721/*
722 * Gets called by walk_stackframe() for every stackframe. This will be called
723 * whist unwinding the stackframe and is like a subroutine return so we use
724 * the PC.
725 */
726static int
727callchain_trace(struct stackframe *fr,
728 void *data)
729{
730 struct perf_callchain_entry *entry = data;
Frederic Weisbecker70791ce2010-06-29 19:34:05 +0200731 perf_callchain_store(entry, fr->pc);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100732 return 0;
733}
734
Frederic Weisbecker56962b4442010-06-30 23:03:51 +0200735void
736perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100737{
738 struct stackframe fr;
739
Jamie Iles1b8873a2010-02-02 20:25:44 +0100740 fr.fp = regs->ARM_fp;
741 fr.sp = regs->ARM_sp;
742 fr.lr = regs->ARM_lr;
743 fr.pc = regs->ARM_pc;
744 walk_stackframe(&fr, callchain_trace, entry);
745}