blob: c668c91d0c0a57649942463e2778742e6379ad44 [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/*
Will Deaconecf5a892011-07-19 22:43:28 +010038 * ARMv6 supports a maximum of 3 events, starting from index 0. If we add
Jamie Iles1b8873a2010-02-02 20:25:44 +010039 * 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 */
Will Deaconecf5a892011-07-19 22:43:28 +010046#define ARMPMU_MAX_HWEVENTS 32
Jamie Iles1b8873a2010-02-02 20:25:44 +010047
48/* The events for a given CPU. */
49struct cpu_hw_events {
50 /*
Will Deaconecf5a892011-07-19 22:43:28 +010051 * The events that are active on the CPU for the given index.
Jamie Iles1b8873a2010-02-02 20:25:44 +010052 */
53 struct perf_event *events[ARMPMU_MAX_HWEVENTS];
54
55 /*
56 * A 1 bit for an index indicates that the counter is being used for
57 * an event. A 0 means that the counter can be used.
58 */
59 unsigned long used_mask[BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS)];
60
61 /*
62 * A 1 bit for an index indicates that the counter is actively being
63 * used.
64 */
65 unsigned long active_mask[BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS)];
66};
Will Deacon4d6b7a72010-11-30 18:15:53 +010067static DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events);
Will Deacon181193f2010-04-30 11:32:44 +010068
Jamie Iles1b8873a2010-02-02 20:25:44 +010069struct arm_pmu {
Will Deacon181193f2010-04-30 11:32:44 +010070 enum arm_perf_pmu_ids id;
Will Deacon0b390e22011-07-27 15:18:59 +010071 cpumask_t active_irqs;
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
Will Deacon0b390e22011-07-27 15:18:59 +0100391static void
392armpmu_release_hardware(void)
393{
394 int i, irq, irqs;
395
396 irqs = min(pmu_device->num_resources, num_possible_cpus());
397
398 for (i = 0; i < irqs; ++i) {
399 if (!cpumask_test_and_clear_cpu(i, &armpmu->active_irqs))
400 continue;
401 irq = platform_get_irq(pmu_device, i);
402 if (irq >= 0)
403 free_irq(irq, NULL);
404 }
405
406 armpmu->stop();
407 release_pmu(ARM_PMU_DEVICE_CPU);
408}
409
Jamie Iles1b8873a2010-02-02 20:25:44 +0100410static int
411armpmu_reserve_hardware(void)
412{
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530413 struct arm_pmu_platdata *plat;
414 irq_handler_t handle_irq;
Will Deaconb0e89592011-07-26 22:10:28 +0100415 int i, err, irq, irqs;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100416
Will Deaconb0e89592011-07-26 22:10:28 +0100417 err = reserve_pmu(ARM_PMU_DEVICE_CPU);
418 if (err) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100419 pr_warning("unable to reserve pmu\n");
Will Deaconb0e89592011-07-26 22:10:28 +0100420 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100421 }
422
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530423 plat = dev_get_platdata(&pmu_device->dev);
424 if (plat && plat->handle_irq)
425 handle_irq = armpmu_platform_irq;
426 else
427 handle_irq = armpmu->handle_irq;
428
Will Deacon0b390e22011-07-27 15:18:59 +0100429 irqs = min(pmu_device->num_resources, num_possible_cpus());
Will Deaconb0e89592011-07-26 22:10:28 +0100430 if (irqs < 1) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100431 pr_err("no irqs for PMUs defined\n");
432 return -ENODEV;
433 }
434
Will Deaconb0e89592011-07-26 22:10:28 +0100435 for (i = 0; i < irqs; ++i) {
Will Deacon0b390e22011-07-27 15:18:59 +0100436 err = 0;
Will Deacon49c006b2010-04-29 17:13:24 +0100437 irq = platform_get_irq(pmu_device, i);
438 if (irq < 0)
439 continue;
440
Will Deaconb0e89592011-07-26 22:10:28 +0100441 /*
442 * If we have a single PMU interrupt that we can't shift,
443 * assume that we're running on a uniprocessor machine and
Will Deacon0b390e22011-07-27 15:18:59 +0100444 * continue. Otherwise, continue without this interrupt.
Will Deaconb0e89592011-07-26 22:10:28 +0100445 */
Will Deacon0b390e22011-07-27 15:18:59 +0100446 if (irq_set_affinity(irq, cpumask_of(i)) && irqs > 1) {
447 pr_warning("unable to set irq affinity (irq=%d, cpu=%u)\n",
448 irq, i);
449 continue;
Will Deaconb0e89592011-07-26 22:10:28 +0100450 }
451
Rabin Vincent0e25a5c2011-02-08 09:24:36 +0530452 err = request_irq(irq, handle_irq,
Will Deaconddee87f2010-02-25 15:04:14 +0100453 IRQF_DISABLED | IRQF_NOBALANCING,
Will Deaconb0e89592011-07-26 22:10:28 +0100454 "arm-pmu", NULL);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100455 if (err) {
Will Deaconb0e89592011-07-26 22:10:28 +0100456 pr_err("unable to request IRQ%d for ARM PMU counters\n",
457 irq);
Will Deacon0b390e22011-07-27 15:18:59 +0100458 armpmu_release_hardware();
459 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100460 }
Will Deacon0b390e22011-07-27 15:18:59 +0100461
462 cpumask_set_cpu(i, &armpmu->active_irqs);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100463 }
464
Will Deacon0b390e22011-07-27 15:18:59 +0100465 return 0;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100466}
467
468static atomic_t active_events = ATOMIC_INIT(0);
469static DEFINE_MUTEX(pmu_reserve_mutex);
470
471static void
472hw_perf_event_destroy(struct perf_event *event)
473{
474 if (atomic_dec_and_mutex_lock(&active_events, &pmu_reserve_mutex)) {
475 armpmu_release_hardware();
476 mutex_unlock(&pmu_reserve_mutex);
477 }
478}
479
480static int
481__hw_perf_event_init(struct perf_event *event)
482{
483 struct hw_perf_event *hwc = &event->hw;
484 int mapping, err;
485
486 /* Decode the generic type into an ARM event identifier. */
487 if (PERF_TYPE_HARDWARE == event->attr.type) {
Will Deacon84fee972010-11-13 17:13:56 +0000488 mapping = armpmu_map_event(event->attr.config);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100489 } else if (PERF_TYPE_HW_CACHE == event->attr.type) {
490 mapping = armpmu_map_cache_event(event->attr.config);
491 } else if (PERF_TYPE_RAW == event->attr.type) {
Will Deacon84fee972010-11-13 17:13:56 +0000492 mapping = armpmu_map_raw_event(event->attr.config);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100493 } else {
494 pr_debug("event type %x not supported\n", event->attr.type);
495 return -EOPNOTSUPP;
496 }
497
498 if (mapping < 0) {
499 pr_debug("event %x:%llx not supported\n", event->attr.type,
500 event->attr.config);
501 return mapping;
502 }
503
504 /*
505 * Check whether we need to exclude the counter from certain modes.
506 * The ARM performance counters are on all of the time so if someone
507 * has asked us for some excludes then we have to fail.
508 */
509 if (event->attr.exclude_kernel || event->attr.exclude_user ||
510 event->attr.exclude_hv || event->attr.exclude_idle) {
511 pr_debug("ARM performance counters do not support "
512 "mode exclusion\n");
513 return -EPERM;
514 }
515
516 /*
517 * We don't assign an index until we actually place the event onto
518 * hardware. Use -1 to signify that we haven't decided where to put it
519 * yet. For SMP systems, each core has it's own PMU so we can't do any
520 * clever allocation or constraints checking at this point.
521 */
522 hwc->idx = -1;
523
524 /*
525 * Store the event encoding into the config_base field. config and
526 * event_base are unused as the only 2 things we need to know are
527 * the event mapping and the counter to use. The counter to use is
528 * also the indx and the config_base is the event type.
529 */
530 hwc->config_base = (unsigned long)mapping;
531 hwc->config = 0;
532 hwc->event_base = 0;
533
534 if (!hwc->sample_period) {
535 hwc->sample_period = armpmu->max_period;
536 hwc->last_period = hwc->sample_period;
Peter Zijlstrae7850592010-05-21 14:43:08 +0200537 local64_set(&hwc->period_left, hwc->sample_period);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100538 }
539
540 err = 0;
541 if (event->group_leader != event) {
542 err = validate_group(event);
543 if (err)
544 return -EINVAL;
545 }
546
547 return err;
548}
549
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200550static int armpmu_event_init(struct perf_event *event)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100551{
552 int err = 0;
553
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200554 switch (event->attr.type) {
555 case PERF_TYPE_RAW:
556 case PERF_TYPE_HARDWARE:
557 case PERF_TYPE_HW_CACHE:
558 break;
559
560 default:
561 return -ENOENT;
562 }
563
Jamie Iles1b8873a2010-02-02 20:25:44 +0100564 if (!armpmu)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200565 return -ENODEV;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100566
567 event->destroy = hw_perf_event_destroy;
568
569 if (!atomic_inc_not_zero(&active_events)) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100570 mutex_lock(&pmu_reserve_mutex);
571 if (atomic_read(&active_events) == 0) {
572 err = armpmu_reserve_hardware();
573 }
574
575 if (!err)
576 atomic_inc(&active_events);
577 mutex_unlock(&pmu_reserve_mutex);
578 }
579
580 if (err)
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200581 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100582
583 err = __hw_perf_event_init(event);
584 if (err)
585 hw_perf_event_destroy(event);
586
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200587 return err;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100588}
589
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200590static void armpmu_enable(struct pmu *pmu)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100591{
592 /* Enable all of the perf events on hardware. */
Will Deaconf4f38432011-07-01 14:38:12 +0100593 int idx, enabled = 0;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100594 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
595
596 if (!armpmu)
597 return;
598
Will Deaconecf5a892011-07-19 22:43:28 +0100599 for (idx = 0; idx < armpmu->num_events; ++idx) {
Jamie Iles1b8873a2010-02-02 20:25:44 +0100600 struct perf_event *event = cpuc->events[idx];
601
602 if (!event)
603 continue;
604
605 armpmu->enable(&event->hw, idx);
Will Deaconf4f38432011-07-01 14:38:12 +0100606 enabled = 1;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100607 }
608
Will Deaconf4f38432011-07-01 14:38:12 +0100609 if (enabled)
610 armpmu->start();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100611}
612
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200613static void armpmu_disable(struct pmu *pmu)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100614{
615 if (armpmu)
616 armpmu->stop();
617}
618
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200619static struct pmu pmu = {
Peter Zijlstraa4eaf7f2010-06-16 14:37:10 +0200620 .pmu_enable = armpmu_enable,
621 .pmu_disable = armpmu_disable,
622 .event_init = armpmu_event_init,
623 .add = armpmu_add,
624 .del = armpmu_del,
625 .start = armpmu_start,
626 .stop = armpmu_stop,
627 .read = armpmu_read,
Peter Zijlstra33696fc2010-06-14 08:49:00 +0200628};
629
Will Deacon43eab872010-11-13 19:04:32 +0000630/* Include the PMU-specific implementations. */
631#include "perf_event_xscale.c"
632#include "perf_event_v6.c"
633#include "perf_event_v7.c"
Will Deacon49e6a322010-04-30 11:33:33 +0100634
Will Deacon574b69c2011-03-25 13:13:34 +0100635/*
636 * Ensure the PMU has sane values out of reset.
637 * This requires SMP to be available, so exists as a separate initcall.
638 */
639static int __init
640armpmu_reset(void)
641{
642 if (armpmu && armpmu->reset)
643 return on_each_cpu(armpmu->reset, NULL, 1);
644 return 0;
645}
646arch_initcall(armpmu_reset);
647
Will Deaconb0e89592011-07-26 22:10:28 +0100648/*
649 * PMU platform driver and devicetree bindings.
650 */
651static struct of_device_id armpmu_of_device_ids[] = {
652 {.compatible = "arm,cortex-a9-pmu"},
653 {.compatible = "arm,cortex-a8-pmu"},
654 {.compatible = "arm,arm1136-pmu"},
655 {.compatible = "arm,arm1176-pmu"},
656 {},
657};
658
659static struct platform_device_id armpmu_plat_device_ids[] = {
660 {.name = "arm-pmu"},
661 {},
662};
663
664static int __devinit armpmu_device_probe(struct platform_device *pdev)
665{
666 pmu_device = pdev;
667 return 0;
668}
669
670static struct platform_driver armpmu_driver = {
671 .driver = {
672 .name = "arm-pmu",
673 .of_match_table = armpmu_of_device_ids,
674 },
675 .probe = armpmu_device_probe,
676 .id_table = armpmu_plat_device_ids,
677};
678
679static int __init register_pmu_driver(void)
680{
681 return platform_driver_register(&armpmu_driver);
682}
683device_initcall(register_pmu_driver);
684
685/*
686 * CPU PMU identification and registration.
687 */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100688static int __init
689init_hw_perf_events(void)
690{
691 unsigned long cpuid = read_cpuid_id();
692 unsigned long implementor = (cpuid & 0xFF000000) >> 24;
693 unsigned long part_number = (cpuid & 0xFFF0);
694
Will Deacon49e6a322010-04-30 11:33:33 +0100695 /* ARM Ltd CPUs. */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100696 if (0x41 == implementor) {
697 switch (part_number) {
698 case 0xB360: /* ARM1136 */
699 case 0xB560: /* ARM1156 */
700 case 0xB760: /* ARM1176 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000701 armpmu = armv6pmu_init();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100702 break;
703 case 0xB020: /* ARM11mpcore */
Will Deacon3cb314b2010-11-13 17:37:46 +0000704 armpmu = armv6mpcore_pmu_init();
Jamie Iles1b8873a2010-02-02 20:25:44 +0100705 break;
Jean PIHET796d1292010-01-26 18:51:05 +0100706 case 0xC080: /* Cortex-A8 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000707 armpmu = armv7_a8_pmu_init();
Jean PIHET796d1292010-01-26 18:51:05 +0100708 break;
709 case 0xC090: /* Cortex-A9 */
Will Deacon3cb314b2010-11-13 17:37:46 +0000710 armpmu = armv7_a9_pmu_init();
Jean PIHET796d1292010-01-26 18:51:05 +0100711 break;
Will Deacon0c205cb2011-06-03 17:40:15 +0100712 case 0xC050: /* Cortex-A5 */
713 armpmu = armv7_a5_pmu_init();
714 break;
Will Deacon14abd032011-01-19 14:24:38 +0000715 case 0xC0F0: /* Cortex-A15 */
716 armpmu = armv7_a15_pmu_init();
717 break;
Will Deacon49e6a322010-04-30 11:33:33 +0100718 }
719 /* Intel CPUs [xscale]. */
720 } else if (0x69 == implementor) {
721 part_number = (cpuid >> 13) & 0x7;
722 switch (part_number) {
723 case 1:
Will Deacon3cb314b2010-11-13 17:37:46 +0000724 armpmu = xscale1pmu_init();
Will Deacon49e6a322010-04-30 11:33:33 +0100725 break;
726 case 2:
Will Deacon3cb314b2010-11-13 17:37:46 +0000727 armpmu = xscale2pmu_init();
Will Deacon49e6a322010-04-30 11:33:33 +0100728 break;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100729 }
730 }
731
Will Deacon49e6a322010-04-30 11:33:33 +0100732 if (armpmu) {
Jean PIHET796d1292010-01-26 18:51:05 +0100733 pr_info("enabled with %s PMU driver, %d counters available\n",
Will Deacon62994832010-11-13 18:45:27 +0000734 armpmu->name, armpmu->num_events);
Will Deacon49e6a322010-04-30 11:33:33 +0100735 } else {
736 pr_info("no hardware support available\n");
Will Deacon49e6a322010-04-30 11:33:33 +0100737 }
Jamie Iles1b8873a2010-02-02 20:25:44 +0100738
Peter Zijlstra2e80a822010-11-17 23:17:36 +0100739 perf_pmu_register(&pmu, "cpu", PERF_TYPE_RAW);
Peter Zijlstrab0a873e2010-06-11 13:35:08 +0200740
Jamie Iles1b8873a2010-02-02 20:25:44 +0100741 return 0;
742}
Peter Zijlstra004417a2010-11-25 18:38:29 +0100743early_initcall(init_hw_perf_events);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100744
745/*
746 * Callchain handling code.
747 */
Jamie Iles1b8873a2010-02-02 20:25:44 +0100748
749/*
750 * The registers we're interested in are at the end of the variable
751 * length saved register structure. The fp points at the end of this
752 * structure so the address of this struct is:
753 * (struct frame_tail *)(xxx->fp)-1
754 *
755 * This code has been adapted from the ARM OProfile support.
756 */
757struct frame_tail {
Will Deacon4d6b7a72010-11-30 18:15:53 +0100758 struct frame_tail __user *fp;
759 unsigned long sp;
760 unsigned long lr;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100761} __attribute__((packed));
762
763/*
764 * Get the return address for a single stackframe and return a pointer to the
765 * next frame tail.
766 */
Will Deacon4d6b7a72010-11-30 18:15:53 +0100767static struct frame_tail __user *
768user_backtrace(struct frame_tail __user *tail,
Jamie Iles1b8873a2010-02-02 20:25:44 +0100769 struct perf_callchain_entry *entry)
770{
771 struct frame_tail buftail;
772
773 /* Also check accessibility of one struct frame_tail beyond */
774 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
775 return NULL;
776 if (__copy_from_user_inatomic(&buftail, tail, sizeof(buftail)))
777 return NULL;
778
Frederic Weisbecker70791ce2010-06-29 19:34:05 +0200779 perf_callchain_store(entry, buftail.lr);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100780
781 /*
782 * Frame pointers should strictly progress back up the stack
783 * (towards higher addresses).
784 */
Rabin Vincentcb061992011-02-09 11:35:12 +0100785 if (tail + 1 >= buftail.fp)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100786 return NULL;
787
788 return buftail.fp - 1;
789}
790
Frederic Weisbecker56962b42010-06-30 23:03:51 +0200791void
792perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100793{
Will Deacon4d6b7a72010-11-30 18:15:53 +0100794 struct frame_tail __user *tail;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100795
Jamie Iles1b8873a2010-02-02 20:25:44 +0100796
Will Deacon4d6b7a72010-11-30 18:15:53 +0100797 tail = (struct frame_tail __user *)regs->ARM_fp - 1;
Jamie Iles1b8873a2010-02-02 20:25:44 +0100798
Sonny Rao860ad782011-04-18 22:12:59 +0100799 while ((entry->nr < PERF_MAX_STACK_DEPTH) &&
800 tail && !((unsigned long)tail & 0x3))
Jamie Iles1b8873a2010-02-02 20:25:44 +0100801 tail = user_backtrace(tail, entry);
802}
803
804/*
805 * Gets called by walk_stackframe() for every stackframe. This will be called
806 * whist unwinding the stackframe and is like a subroutine return so we use
807 * the PC.
808 */
809static int
810callchain_trace(struct stackframe *fr,
811 void *data)
812{
813 struct perf_callchain_entry *entry = data;
Frederic Weisbecker70791ce2010-06-29 19:34:05 +0200814 perf_callchain_store(entry, fr->pc);
Jamie Iles1b8873a2010-02-02 20:25:44 +0100815 return 0;
816}
817
Frederic Weisbecker56962b42010-06-30 23:03:51 +0200818void
819perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
Jamie Iles1b8873a2010-02-02 20:25:44 +0100820{
821 struct stackframe fr;
822
Jamie Iles1b8873a2010-02-02 20:25:44 +0100823 fr.fp = regs->ARM_fp;
824 fr.sp = regs->ARM_sp;
825 fr.lr = regs->ARM_lr;
826 fr.pc = regs->ARM_pc;
827 walk_stackframe(&fr, callchain_trace, entry);
828}