blob: 8514855ffc2e203f7b2f66db8869d60f11b3c70d [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 */
Will Deacon961ec6da2010-12-02 18:01:49 +010035static DEFINE_RAW_SPINLOCK(pmu_lock);
Jamie Iles1b8873a2010-02-02 20:25:44 +010036
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};
Will Deacon4d6b7a72010-11-30 18:15:53 +010068static DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
Will Deacon181193f2010-04-30 11:32:44 +010069
Jamie Iles1b8873a2010-02-02 20:25:44 +010070struct 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 Deacon574b69c2011-03-25 13:13:34 +010082 void (*reset)(void *);
Will Deacon84fee972010-11-13 17:13:56 +000083 const unsigned (*cache_map)[PERF_COUNT_HW_CACHE_MAX]
84 [PERF_COUNT_HW_CACHE_OP_MAX]
85 [PERF_COUNT_HW_CACHE_RESULT_MAX];
86 const unsigned (*event_map)[PERF_COUNT_HW_MAX];
87 u32 raw_event_mask;
Jamie Iles1b8873a2010-02-02 20:25:44 +010088 int num_events;
89 u64 max_period;
90};
91
92/* Set at runtime when we know what CPU type we are. */
Mark Rutlanda6c93af2011-04-15 11:14:38 +010093static struct arm_pmu *armpmu;
Jamie Iles1b8873a2010-02-02 20:25:44 +010094
Will Deacon181193f2010-04-30 11:32:44 +010095enum arm_perf_pmu_ids
96armpmu_get_pmu_id(void)
97{
98 int id = -ENODEV;
99
100 if (armpmu != NULL)
101 id = armpmu->id;
102
103 return id;
104}
105EXPORT_SYMBOL_GPL(armpmu_get_pmu_id);
106
Will Deacon929f5192010-04-30 11:34:26 +0100107int
108armpmu_get_max_events(void)
109{
110 int max_events = 0;
111
112 if (armpmu != NULL)
113 max_events = armpmu->num_events;
114
115 return max_events;
116}
117EXPORT_SYMBOL_GPL(armpmu_get_max_events);
118
Matt Fleming3bf101b2010-09-27 20:22:24 +0100119int perf_num_counters(void)
120{
121 return armpmu_get_max_events();
122}
123EXPORT_SYMBOL_GPL(perf_num_counters);
124
Jamie Iles1b8873a2010-02-02 20:25:44 +0100125#define HW_OP_UNSUPPORTED 0xFFFF
126
127#define C(_x) \
128 PERF_COUNT_HW_CACHE_##_x
129
130#define CACHE_OP_UNSUPPORTED 0xFFFF
131
Jamie Iles1b8873a2010-02-02 20:25:44 +0100132static int
133armpmu_map_cache_event(u64 config)
134{
135 unsigned int cache_type, cache_op, cache_result, ret;
136
137 cache_type = (config >> 0) & 0xff;
138 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
139 return -EINVAL;
140
141 cache_op = (config >> 8) & 0xff;
142 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
143 return -EINVAL;
144
145 cache_result = (config >> 16) & 0xff;
146 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
147 return -EINVAL;
148
Will Deacon84fee972010-11-13 17:13:56 +0000149 ret = (int)(*armpmu->cache_map)[cache_type][cache_op][cache_result];
Jamie Iles1b8873a2010-02-02 20:25:44 +0100150
151 if (ret == CACHE_OP_UNSUPPORTED)
152 return -ENOENT;
153
154 return ret;
155}
156
157static int
Will Deacon84fee972010-11-13 17:13:56 +0000158armpmu_map_event(u64 config)
159{
160 int mapping = (*armpmu->event_map)[config];
161 return mapping == HW_OP_UNSUPPORTED ? -EOPNOTSUPP : mapping;
162}
163
164static int
165armpmu_map_raw_event(u64 config)
166{
167 return (int)(config & armpmu->raw_event_mask);
168}
169
170static int
Jamie Iles1b8873a2010-02-02 20:25:44 +0100171armpmu_event_set_period(struct perf_event *event,
172 struct hw_perf_event *hwc,
173 int idx)
174{
Peter Zijlstrae7850592010-05-21 14:43:08 +0200175 s64 left = local64_read(&hwc->period_left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100176 s64 period = hwc->sample_period;
177 int ret = 0;
178
179 if (unlikely(left <= -period)) {
180 left = period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200181 local64_set(&hwc->period_left, left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100182 hwc->last_period = period;
183 ret = 1;
184 }
185
186 if (unlikely(left <= 0)) {
187 left += period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200188 local64_set(&hwc->period_left, left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100189 hwc->last_period = period;
190 ret = 1;
191 }
192
193 if (left > (s64)armpmu->max_period)
194 left = armpmu->max_period;
195
Peter Zijlstrae7850592010-05-21 14:43:08 +0200196 local64_set(&hwc->prev_count, (u64)-left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100197
198 armpmu->write_counter(idx, (u64)(-left) & 0xffffffff);
199
200 perf_event_update_userpage(event);
201
202 return ret;
203}
204
205static u64
206armpmu_event_update(struct perf_event *event,
207 struct hw_perf_event *hwc,
Will Deacona7378232011-03-25 17:12:37 +0100208 int idx, int overflow)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100209{
Will Deacona7378232011-03-25 17:12:37 +0100210 u64 delta, prev_raw_count, new_raw_count;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100211
212again:
Peter Zijlstrae7850592010-05-21 14:43:08 +0200213 prev_raw_count = local64_read(&hwc->prev_count);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100214 new_raw_count = armpmu->read_counter(idx);
215
Peter Zijlstrae7850592010-05-21 14:43:08 +0200216 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
Jamie Iles1b8873a2010-02-02 20:25:44 +0100217 new_raw_count) != prev_raw_count)
218 goto again;
219
Will Deacona7378232011-03-25 17:12:37 +0100220 new_raw_count &= armpmu->max_period;
221 prev_raw_count &= armpmu->max_period;
222
223 if (overflow)
Will Deacon67597882011-04-05 14:01:24 +0100224 delta = armpmu->max_period - prev_raw_count + new_raw_count + 1;
Will Deacona7378232011-03-25 17:12:37 +0100225 else
226 delta = new_raw_count - prev_raw_count;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100227
Peter Zijlstrae7850592010-05-21 14:43:08 +0200228 local64_add(delta, &event->count);
229 local64_sub(delta, &hwc->period_left);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100230
231 return new_raw_count;
232}
233
234static void
Jamie Iles1b8873a2010-02-02 20:25:44 +0100235armpmu_read(struct perf_event *event)
236{
237 struct hw_perf_event *hwc = &event->hw;
238
239 /* Don't read disabled counters! */
240 if (hwc->idx < 0)
241 return;
242
Will Deacona7378232011-03-25 17:12:37 +0100243 armpmu_event_update(event, hwc, hwc->idx, 0);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100244}
245
246static void
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200247armpmu_stop(struct perf_event *event, int flags)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100248{
249 struct hw_perf_event *hwc = &event->hw;
250
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200251 if (!armpmu)
252 return;
253
254 /*
255 * ARM pmu always has to update the counter, so ignore
256 * PERF_EF_UPDATE, see comments in armpmu_start().
257 */
258 if (!(hwc->state & PERF_HES_STOPPED)) {
259 armpmu->disable(hwc, hwc->idx);
260 barrier(); /* why? */
Will Deacona7378232011-03-25 17:12:37 +0100261 armpmu_event_update(event, hwc, hwc->idx, 0);
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200262 hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
263 }
264}
265
266static void
267armpmu_start(struct perf_event *event, int flags)
268{
269 struct hw_perf_event *hwc = &event->hw;
270
271 if (!armpmu)
272 return;
273
274 /*
275 * ARM pmu always has to reprogram the period, so ignore
276 * PERF_EF_RELOAD, see the comment below.
277 */
278 if (flags & PERF_EF_RELOAD)
279 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
280
281 hwc->state = 0;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100282 /*
283 * Set the period again. Some counters can't be stopped, so when we
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200284 * were stopped we simply disabled the IRQ source and the counter
Jamie Iles1b8873a2010-02-02 20:25:44 +0100285 * may have been left counting. If we don't do this step then we may
286 * get an interrupt too soon or *way* too late if the overflow has
287 * happened since disabling.
288 */
289 armpmu_event_set_period(event, hwc, hwc->idx);
290 armpmu->enable(hwc, hwc->idx);
291}
292
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200293static void
294armpmu_del(struct perf_event *event, int flags)
295{
296 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
297 struct hw_perf_event *hwc = &event->hw;
298 int idx = hwc->idx;
299
300 WARN_ON(idx < 0);
301
302 clear_bit(idx, cpuc->active_mask);
303 armpmu_stop(event, PERF_EF_UPDATE);
304 cpuc->events[idx] = NULL;
305 clear_bit(idx, cpuc->used_mask);
306
307 perf_event_update_userpage(event);
308}
309
Jamie Iles1b8873a2010-02-02 20:25:44 +0100310static int
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200311armpmu_add(struct perf_event *event, int flags)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100312{
313 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
314 struct hw_perf_event *hwc = &event->hw;
315 int idx;
316 int err = 0;
317
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200318 perf_pmu_disable(event->pmu);
Peter Zijlstra24cd7f52010-06-11 17:32:03 +0200319
Jamie Iles1b8873a2010-02-02 20:25:44 +0100320 /* If we don't have a space for the counter then finish early. */
321 idx = armpmu->get_event_idx(cpuc, hwc);
322 if (idx < 0) {
323 err = idx;
324 goto out;
325 }
326
327 /*
328 * If there is an event in the counter we are going to use then make
329 * sure it is disabled.
330 */
331 event->hw.idx = idx;
332 armpmu->disable(hwc, idx);
333 cpuc->events[idx] = event;
334 set_bit(idx, cpuc->active_mask);
335
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200336 hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
337 if (flags & PERF_EF_START)
338 armpmu_start(event, PERF_EF_RELOAD);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100339
340 /* Propagate our changes to the userspace mapping. */
341 perf_event_update_userpage(event);
342
343out:
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200344 perf_pmu_enable(event->pmu);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100345 return err;
346}
347
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200348static struct pmu pmu;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100349
350static int
351validate_event(struct cpu_hw_events *cpuc,
352 struct perf_event *event)
353{
354 struct hw_perf_event fake_event = event->hw;
355
Will Deacon65b47112010-09-02 09:32:08 +0100356 if (event->pmu != &pmu || event->state <= PERF_EVENT_STATE_OFF)
357 return 1;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100358
359 return armpmu->get_event_idx(cpuc, &fake_event) >= 0;
360}
361
362static int
363validate_group(struct perf_event *event)
364{
365 struct perf_event *sibling, *leader = event->group_leader;
366 struct cpu_hw_events fake_pmu;
367
368 memset(&fake_pmu, 0, sizeof(fake_pmu));
369
370 if (!validate_event(&fake_pmu, leader))
371 return -ENOSPC;
372
373 list_for_each_entry(sibling, &leader->sibling_list, group_entry) {
374 if (!validate_event(&fake_pmu, sibling))
375 return -ENOSPC;
376 }
377
378 if (!validate_event(&fake_pmu, event))
379 return -ENOSPC;
380
381 return 0;
382}
383
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530384static irqreturn_t armpmu_platform_irq(int irq, void *dev)
385{
386 struct arm_pmu_platdata *plat = dev_get_platdata(&pmu_device->dev);
387
388 return plat->handle_irq(irq, dev, armpmu->handle_irq);
389}
390
Jamie Iles1b8873a2010-02-02 20:25:44 +0100391static int
392armpmu_reserve_hardware(void)
393{
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530394 struct arm_pmu_platdata *plat;
395 irq_handler_t handle_irq;
Will Deaconb0e89592011-07-26 22:10:28 +0100396 int i, err, irq, irqs;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100397
Will Deaconb0e89592011-07-26 22:10:28 +0100398 err = reserve_pmu(ARM_PMU_DEVICE_CPU);
399 if (err) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100400 pr_warning("unable to reserve pmu\n");
Will Deaconb0e89592011-07-26 22:10:28 +0100401 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100402 }
403
Will Deaconb0e89592011-07-26 22:10:28 +0100404 irqs = pmu_device->num_resources;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100405
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530406 plat = dev_get_platdata(&pmu_device->dev);
407 if (plat && plat->handle_irq)
408 handle_irq = armpmu_platform_irq;
409 else
410 handle_irq = armpmu->handle_irq;
411
Will Deaconb0e89592011-07-26 22:10:28 +0100412 if (irqs < 1) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100413 pr_err("no irqs for PMUs defined\n");
414 return -ENODEV;
415 }
416
Will Deaconb0e89592011-07-26 22:10:28 +0100417 for (i = 0; i < irqs; ++i) {
Will Deacon49c006b2010-04-29 17:13:24 +0100418 irq = platform_get_irq(pmu_device, i);
419 if (irq < 0)
420 continue;
421
Will Deaconb0e89592011-07-26 22:10:28 +0100422 /*
423 * If we have a single PMU interrupt that we can't shift,
424 * assume that we're running on a uniprocessor machine and
425 * continue.
426 */
427 err = irq_set_affinity(irq, cpumask_of(i));
428 if (err && irqs > 1) {
429 pr_err("unable to set irq affinity (irq=%d, cpu=%u)\n",
430 irq, i);
431 break;
432 }
433
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530434 err = request_irq(irq, handle_irq,
Will Deaconddee87f2010-02-25 15:04:14 +0100435 IRQF_DISABLED | IRQF_NOBALANCING,
Will Deaconb0e89592011-07-26 22:10:28 +0100436 "arm-pmu", NULL);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100437 if (err) {
Will Deaconb0e89592011-07-26 22:10:28 +0100438 pr_err("unable to request IRQ%d for ARM PMU counters\n",
439 irq);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100440 break;
441 }
442 }
443
444 if (err) {
Will Deacon49c006b2010-04-29 17:13:24 +0100445 for (i = i - 1; i >= 0; --i) {
446 irq = platform_get_irq(pmu_device, i);
447 if (irq >= 0)
448 free_irq(irq, NULL);
449 }
Mark Rutlandf12482c2011-06-22 15:30:51 +0100450 release_pmu(ARM_PMU_DEVICE_CPU);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100451 }
452
453 return err;
454}
455
456static void
457armpmu_release_hardware(void)
458{
Will Deacon49c006b2010-04-29 17:13:24 +0100459 int i, irq;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100460
Will Deacon49c006b2010-04-29 17:13:24 +0100461 for (i = pmu_device->num_resources - 1; i >= 0; --i) {
462 irq = platform_get_irq(pmu_device, i);
463 if (irq >= 0)
464 free_irq(irq, NULL);
465 }
Jamie Iles1b8873a2010-02-02 20:25:44 +0100466 armpmu->stop();
467
Mark Rutlandf12482c2011-06-22 15:30:51 +0100468 release_pmu(ARM_PMU_DEVICE_CPU);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100469}
470
471static atomic_t active_events = ATOMIC_INIT(0);
472static DEFINE_MUTEX(pmu_reserve_mutex);
473
474static void
475hw_perf_event_destroy(struct perf_event *event)
476{
477 if (atomic_dec_and_mutex_lock(&active_events, &pmu_reserve_mutex)) {
478 armpmu_release_hardware();
479 mutex_unlock(&pmu_reserve_mutex);
480 }
481}
482
483static int
484__hw_perf_event_init(struct perf_event *event)
485{
486 struct hw_perf_event *hwc = &event->hw;
487 int mapping, err;
488
489 /* Decode the generic type into an ARM event identifier. */
490 if (PERF_TYPE_HARDWARE == event->attr.type) {
Will Deacon84fee972010-11-13 17:13:56 +0000491 mapping = armpmu_map_event(event->attr.config);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100492 } else if (PERF_TYPE_HW_CACHE == event->attr.type) {
493 mapping = armpmu_map_cache_event(event->attr.config);
494 } else if (PERF_TYPE_RAW == event->attr.type) {
Will Deacon84fee972010-11-13 17:13:56 +0000495 mapping = armpmu_map_raw_event(event->attr.config);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100496 } else {
497 pr_debug("event type %x not supported\n", event->attr.type);
498 return -EOPNOTSUPP;
499 }
500
501 if (mapping < 0) {
502 pr_debug("event %x:%llx not supported\n", event->attr.type,
503 event->attr.config);
504 return mapping;
505 }
506
507 /*
508 * Check whether we need to exclude the counter from certain modes.
509 * The ARM performance counters are on all of the time so if someone
510 * has asked us for some excludes then we have to fail.
511 */
512 if (event->attr.exclude_kernel || event->attr.exclude_user ||
513 event->attr.exclude_hv || event->attr.exclude_idle) {
514 pr_debug("ARM performance counters do not support "
515 "mode exclusion\n");
516 return -EPERM;
517 }
518
519 /*
520 * We don't assign an index until we actually place the event onto
521 * hardware. Use -1 to signify that we haven't decided where to put it
522 * yet. For SMP systems, each core has it's own PMU so we can't do any
523 * clever allocation or constraints checking at this point.
524 */
525 hwc->idx = -1;
526
527 /*
528 * Store the event encoding into the config_base field. config and
529 * event_base are unused as the only 2 things we need to know are
530 * the event mapping and the counter to use. The counter to use is
531 * also the indx and the config_base is the event type.
532 */
533 hwc->config_base = (unsigned long)mapping;
534 hwc->config = 0;
535 hwc->event_base = 0;
536
537 if (!hwc->sample_period) {
538 hwc->sample_period = armpmu->max_period;
539 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200540 local64_set(&hwc->period_left, hwc->sample_period);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100541 }
542
543 err = 0;
544 if (event->group_leader != event) {
545 err = validate_group(event);
546 if (err)
547 return -EINVAL;
548 }
549
550 return err;
551}
552
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200553static int armpmu_event_init(struct perf_event *event)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100554{
555 int err = 0;
556
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200557 switch (event->attr.type) {
558 case PERF_TYPE_RAW:
559 case PERF_TYPE_HARDWARE:
560 case PERF_TYPE_HW_CACHE:
561 break;
562
563 default:
564 return -ENOENT;
565 }
566
Jamie Iles1b8873a2010-02-02 20:25:44 +0100567 if (!armpmu)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200568 return -ENODEV;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100569
570 event->destroy = hw_perf_event_destroy;
571
572 if (!atomic_inc_not_zero(&active_events)) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100573 mutex_lock(&pmu_reserve_mutex);
574 if (atomic_read(&active_events) == 0) {
575 err = armpmu_reserve_hardware();
576 }
577
578 if (!err)
579 atomic_inc(&active_events);
580 mutex_unlock(&pmu_reserve_mutex);
581 }
582
583 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200584 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100585
586 err = __hw_perf_event_init(event);
587 if (err)
588 hw_perf_event_destroy(event);
589
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200590 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100591}
592
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200593static void armpmu_enable(struct pmu *pmu)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100594{
595 /* Enable all of the perf events on hardware. */
Will Deaconf4f38432011-07-01 14:38:12 +0100596 int idx, enabled = 0;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100597 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
598
599 if (!armpmu)
600 return;
601
602 for (idx = 0; idx <= armpmu->num_events; ++idx) {
603 struct perf_event *event = cpuc->events[idx];
604
605 if (!event)
606 continue;
607
608 armpmu->enable(&event->hw, idx);
Will Deaconf4f38432011-07-01 14:38:12 +0100609 enabled = 1;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100610 }
611
Will Deaconf4f38432011-07-01 14:38:12 +0100612 if (enabled)
613 armpmu->start();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100614}
615
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200616static void armpmu_disable(struct pmu *pmu)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100617{
618 if (armpmu)
619 armpmu->stop();
620}
621
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200622static struct pmu pmu = {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200623 .pmu_enable = armpmu_enable,
624 .pmu_disable = armpmu_disable,
625 .event_init = armpmu_event_init,
626 .add = armpmu_add,
627 .del = armpmu_del,
628 .start = armpmu_start,
629 .stop = armpmu_stop,
630 .read = armpmu_read,
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200631};
632
Will Deacon43eab872010-11-13 19:04:32 +0000633/* Include the PMU-specific implementations. */
634#include "perf_event_xscale.c"
635#include "perf_event_v6.c"
636#include "perf_event_v7.c"
Will Deacon49e6a322010-04-30 11:33:33 +0100637
Will Deacon574b69c2011-03-25 13:13:34 +0100638/*
639 * Ensure the PMU has sane values out of reset.
640 * This requires SMP to be available, so exists as a separate initcall.
641 */
642static int __init
643armpmu_reset(void)
644{
645 if (armpmu && armpmu->reset)
646 return on_each_cpu(armpmu->reset, NULL, 1);
647 return 0;
648}
649arch_initcall(armpmu_reset);
650
Will Deaconb0e89592011-07-26 22:10:28 +0100651/*
652 * PMU platform driver and devicetree bindings.
653 */
654static struct of_device_id armpmu_of_device_ids[] = {
655 {.compatible = "arm,cortex-a9-pmu"},
656 {.compatible = "arm,cortex-a8-pmu"},
657 {.compatible = "arm,arm1136-pmu"},
658 {.compatible = "arm,arm1176-pmu"},
659 {},
660};
661
662static struct platform_device_id armpmu_plat_device_ids[] = {
663 {.name = "arm-pmu"},
664 {},
665};
666
667static int __devinit armpmu_device_probe(struct platform_device *pdev)
668{
669 pmu_device = pdev;
670 return 0;
671}
672
673static struct platform_driver armpmu_driver = {
674 .driver = {
675 .name = "arm-pmu",
676 .of_match_table = armpmu_of_device_ids,
677 },
678 .probe = armpmu_device_probe,
679 .id_table = armpmu_plat_device_ids,
680};
681
682static int __init register_pmu_driver(void)
683{
684 return platform_driver_register(&armpmu_driver);
685}
686device_initcall(register_pmu_driver);
687
688/*
689 * CPU PMU identification and registration.
690 */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100691static int __init
692init_hw_perf_events(void)
693{
694 unsigned long cpuid = read_cpuid_id();
695 unsigned long implementor = (cpuid & 0xFF000000) >> 24;
696 unsigned long part_number = (cpuid & 0xFFF0);
697
Will Deacon49e6a322010-04-30 11:33:33 +0100698 /* ARM Ltd CPUs. */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100699 if (0x41 == implementor) {
700 switch (part_number) {
701 case 0xB360: /* ARM1136 */
702 case 0xB560: /* ARM1156 */
703 case 0xB760: /* ARM1176 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000704 armpmu = armv6pmu_init();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100705 break;
706 case 0xB020: /* ARM11mpcore */
Will Deacon3cb314b2010-11-13 17:37:46 +0000707 armpmu = armv6mpcore_pmu_init();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100708 break;
Jean PIHET796d1292010-01-26 18:51:05 +0100709 case 0xC080: /* Cortex-A8 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000710 armpmu = armv7_a8_pmu_init();
Jean PIHET796d1292010-01-26 18:51:05 +0100711 break;
712 case 0xC090: /* Cortex-A9 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000713 armpmu = armv7_a9_pmu_init();
Jean PIHET796d1292010-01-26 18:51:05 +0100714 break;
Will Deacon0c205cb2011-06-03 17:40:15 +0100715 case 0xC050: /* Cortex-A5 */
716 armpmu = armv7_a5_pmu_init();
717 break;
Will Deacon14abd032011-01-19 14:24:38 +0000718 case 0xC0F0: /* Cortex-A15 */
719 armpmu = armv7_a15_pmu_init();
720 break;
Will Deacon49e6a322010-04-30 11:33:33 +0100721 }
722 /* Intel CPUs [xscale]. */
723 } else if (0x69 == implementor) {
724 part_number = (cpuid >> 13) & 0x7;
725 switch (part_number) {
726 case 1:
Will Deacon3cb314b2010-11-13 17:37:46 +0000727 armpmu = xscale1pmu_init();
Will Deacon49e6a322010-04-30 11:33:33 +0100728 break;
729 case 2:
Will Deacon3cb314b2010-11-13 17:37:46 +0000730 armpmu = xscale2pmu_init();
Will Deacon49e6a322010-04-30 11:33:33 +0100731 break;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100732 }
733 }
734
Will Deacon49e6a322010-04-30 11:33:33 +0100735 if (armpmu) {
Jean PIHET796d1292010-01-26 18:51:05 +0100736 pr_info("enabled with %s PMU driver, %d counters available\n",
Will Deacon62994832010-11-13 18:45:27 +0000737 armpmu->name, armpmu->num_events);
Will Deacon49e6a322010-04-30 11:33:33 +0100738 } else {
739 pr_info("no hardware support available\n");
Will Deacon49e6a322010-04-30 11:33:33 +0100740 }
Jamie Iles1b8873a2010-02-02 20:25:44 +0100741
Peter Zijlstra2e80a822010-11-17 23:17:36 +0100742 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200743
Jamie Iles1b8873a2010-02-02 20:25:44 +0100744 return 0;
745}
Peter Zijlstra004417a2010-11-25 18:38:29 +0100746early_initcall(init_hw_perf_events);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100747
748/*
749 * Callchain handling code.
750 */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100751
752/*
753 * The registers we're interested in are at the end of the variable
754 * length saved register structure. The fp points at the end of this
755 * structure so the address of this struct is:
756 * (struct frame_tail *)(xxx->fp)-1
757 *
758 * This code has been adapted from the ARM OProfile support.
759 */
760struct frame_tail {
Will Deacon4d6b7a72010-11-30 18:15:53 +0100761 struct frame_tail __user *fp;
762 unsigned long sp;
763 unsigned long lr;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100764} __attribute__((packed));
765
766/*
767 * Get the return address for a single stackframe and return a pointer to the
768 * next frame tail.
769 */
Will Deacon4d6b7a72010-11-30 18:15:53 +0100770static struct frame_tail __user *
771user_backtrace(struct frame_tail __user *tail,
Jamie Iles1b8873a2010-02-02 20:25:44 +0100772 struct perf_callchain_entry *entry)
773{
774 struct frame_tail buftail;
775
776 /* Also check accessibility of one struct frame_tail beyond */
777 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
778 return NULL;
779 if (__copy_from_user_inatomic(&buftail, tail, sizeof(buftail)))
780 return NULL;
781
Frederic Weisbecker70791ce2010-06-29 19:34:05 +0200782 perf_callchain_store(entry, buftail.lr);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100783
784 /*
785 * Frame pointers should strictly progress back up the stack
786 * (towards higher addresses).
787 */
Rabin Vincentcb061992011-02-09 11:35:12 +0100788 if (tail + 1 >= buftail.fp)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100789 return NULL;
790
791 return buftail.fp - 1;
792}
793
Frederic Weisbecker56962b42010-06-30 23:03:51 +0200794void
795perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100796{
Will Deacon4d6b7a72010-11-30 18:15:53 +0100797 struct frame_tail __user *tail;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100798
Jamie Iles1b8873a2010-02-02 20:25:44 +0100799
Will Deacon4d6b7a72010-11-30 18:15:53 +0100800 tail = (struct frame_tail __user *)regs->ARM_fp - 1;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100801
Sonny Rao860ad782011-04-18 22:12:59 +0100802 while ((entry->nr < PERF_MAX_STACK_DEPTH) &&
803 tail && !((unsigned long)tail & 0x3))
Jamie Iles1b8873a2010-02-02 20:25:44 +0100804 tail = user_backtrace(tail, entry);
805}
806
807/*
808 * Gets called by walk_stackframe() for every stackframe. This will be called
809 * whist unwinding the stackframe and is like a subroutine return so we use
810 * the PC.
811 */
812static int
813callchain_trace(struct stackframe *fr,
814 void *data)
815{
816 struct perf_callchain_entry *entry = data;
Frederic Weisbecker70791ce2010-06-29 19:34:05 +0200817 perf_callchain_store(entry, fr->pc);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100818 return 0;
819}
820
Frederic Weisbecker56962b42010-06-30 23:03:51 +0200821void
822perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100823{
824 struct stackframe fr;
825
Jamie Iles1b8873a2010-02-02 20:25:44 +0100826 fr.fp = regs->ARM_fp;
827 fr.sp = regs->ARM_sp;
828 fr.lr = regs->ARM_lr;
829 fr.pc = regs->ARM_pc;
830 walk_stackframe(&fr, callchain_trace, entry);
831}