ARM: PMU: remove pmu_init declaration
[deliverable/linux.git] / arch / arm / kernel / perf_event.c
CommitLineData
1b8873a0
JI
1#undef DEBUG
2
3/*
4 * ARM performance counter support.
5 *
6 * Copyright (C) 2009 picoChip Designs, Ltd., Jamie Iles
43eab878 7 * Copyright (C) 2010 ARM Ltd., Will Deacon <will.deacon@arm.com>
796d1295 8 *
1b8873a0
JI
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
11 * code.
12 */
13#define pr_fmt(fmt) "hw perfevents: " fmt
14
7325eaec 15#include <linux/bitmap.h>
1b8873a0
JI
16#include <linux/interrupt.h>
17#include <linux/kernel.h>
ecea4ab6 18#include <linux/export.h>
1b8873a0 19#include <linux/perf_event.h>
49c006b9 20#include <linux/platform_device.h>
1b8873a0
JI
21#include <linux/spinlock.h>
22#include <linux/uaccess.h>
23
24#include <asm/cputype.h>
25#include <asm/irq.h>
26#include <asm/irq_regs.h>
27#include <asm/pmu.h>
28#include <asm/stacktrace.h>
29
1b8873a0 30/*
ecf5a893 31 * ARMv6 supports a maximum of 3 events, starting from index 0. If we add
1b8873a0
JI
32 * another platform that supports more, we need to increase this to be the
33 * largest of all platforms.
796d1295
JP
34 *
35 * ARMv7 supports up to 32 events:
36 * cycle counter CCNT + 31 events counters CNT0..30.
37 * Cortex-A8 has 1+4 counters, Cortex-A9 has 1+6 counters.
1b8873a0 38 */
ecf5a893 39#define ARMPMU_MAX_HWEVENTS 32
1b8873a0 40
3fc2c830
MR
41static DEFINE_PER_CPU(struct perf_event * [ARMPMU_MAX_HWEVENTS], hw_events);
42static DEFINE_PER_CPU(unsigned long [BITS_TO_LONGS(ARMPMU_MAX_HWEVENTS)], used_mask);
8be3f9a2 43static DEFINE_PER_CPU(struct pmu_hw_events, cpu_hw_events);
181193f3 44
8a16b34e
MR
45#define to_arm_pmu(p) (container_of(p, struct arm_pmu, pmu))
46
1b8873a0 47/* Set at runtime when we know what CPU type we are. */
8be3f9a2 48static struct arm_pmu *cpu_pmu;
1b8873a0 49
181193f3
WD
50enum arm_perf_pmu_ids
51armpmu_get_pmu_id(void)
52{
53 int id = -ENODEV;
54
8be3f9a2
MR
55 if (cpu_pmu != NULL)
56 id = cpu_pmu->id;
181193f3
WD
57
58 return id;
59}
60EXPORT_SYMBOL_GPL(armpmu_get_pmu_id);
61
929f5199
WD
62int
63armpmu_get_max_events(void)
64{
65 int max_events = 0;
66
8be3f9a2
MR
67 if (cpu_pmu != NULL)
68 max_events = cpu_pmu->num_events;
929f5199
WD
69
70 return max_events;
71}
72EXPORT_SYMBOL_GPL(armpmu_get_max_events);
73
3bf101ba
MF
74int perf_num_counters(void)
75{
76 return armpmu_get_max_events();
77}
78EXPORT_SYMBOL_GPL(perf_num_counters);
79
1b8873a0
JI
80#define HW_OP_UNSUPPORTED 0xFFFF
81
82#define C(_x) \
83 PERF_COUNT_HW_CACHE_##_x
84
85#define CACHE_OP_UNSUPPORTED 0xFFFF
86
1b8873a0 87static int
e1f431b5
MR
88armpmu_map_cache_event(const unsigned (*cache_map)
89 [PERF_COUNT_HW_CACHE_MAX]
90 [PERF_COUNT_HW_CACHE_OP_MAX]
91 [PERF_COUNT_HW_CACHE_RESULT_MAX],
92 u64 config)
1b8873a0
JI
93{
94 unsigned int cache_type, cache_op, cache_result, ret;
95
96 cache_type = (config >> 0) & 0xff;
97 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
98 return -EINVAL;
99
100 cache_op = (config >> 8) & 0xff;
101 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
102 return -EINVAL;
103
104 cache_result = (config >> 16) & 0xff;
105 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
106 return -EINVAL;
107
e1f431b5 108 ret = (int)(*cache_map)[cache_type][cache_op][cache_result];
1b8873a0
JI
109
110 if (ret == CACHE_OP_UNSUPPORTED)
111 return -ENOENT;
112
113 return ret;
114}
115
84fee97a 116static int
e1f431b5 117armpmu_map_event(const unsigned (*event_map)[PERF_COUNT_HW_MAX], u64 config)
84fee97a 118{
e1f431b5
MR
119 int mapping = (*event_map)[config];
120 return mapping == HW_OP_UNSUPPORTED ? -ENOENT : mapping;
84fee97a
WD
121}
122
123static int
e1f431b5 124armpmu_map_raw_event(u32 raw_event_mask, u64 config)
84fee97a 125{
e1f431b5
MR
126 return (int)(config & raw_event_mask);
127}
128
129static int map_cpu_event(struct perf_event *event,
130 const unsigned (*event_map)[PERF_COUNT_HW_MAX],
131 const unsigned (*cache_map)
132 [PERF_COUNT_HW_CACHE_MAX]
133 [PERF_COUNT_HW_CACHE_OP_MAX]
134 [PERF_COUNT_HW_CACHE_RESULT_MAX],
135 u32 raw_event_mask)
136{
137 u64 config = event->attr.config;
138
139 switch (event->attr.type) {
140 case PERF_TYPE_HARDWARE:
141 return armpmu_map_event(event_map, config);
142 case PERF_TYPE_HW_CACHE:
143 return armpmu_map_cache_event(cache_map, config);
144 case PERF_TYPE_RAW:
145 return armpmu_map_raw_event(raw_event_mask, config);
146 }
147
148 return -ENOENT;
84fee97a
WD
149}
150
0ce47080 151int
1b8873a0
JI
152armpmu_event_set_period(struct perf_event *event,
153 struct hw_perf_event *hwc,
154 int idx)
155{
8a16b34e 156 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
e7850595 157 s64 left = local64_read(&hwc->period_left);
1b8873a0
JI
158 s64 period = hwc->sample_period;
159 int ret = 0;
160
161 if (unlikely(left <= -period)) {
162 left = period;
e7850595 163 local64_set(&hwc->period_left, left);
1b8873a0
JI
164 hwc->last_period = period;
165 ret = 1;
166 }
167
168 if (unlikely(left <= 0)) {
169 left += period;
e7850595 170 local64_set(&hwc->period_left, left);
1b8873a0
JI
171 hwc->last_period = period;
172 ret = 1;
173 }
174
175 if (left > (s64)armpmu->max_period)
176 left = armpmu->max_period;
177
e7850595 178 local64_set(&hwc->prev_count, (u64)-left);
1b8873a0
JI
179
180 armpmu->write_counter(idx, (u64)(-left) & 0xffffffff);
181
182 perf_event_update_userpage(event);
183
184 return ret;
185}
186
0ce47080 187u64
1b8873a0
JI
188armpmu_event_update(struct perf_event *event,
189 struct hw_perf_event *hwc,
a737823d 190 int idx, int overflow)
1b8873a0 191{
8a16b34e 192 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
a737823d 193 u64 delta, prev_raw_count, new_raw_count;
1b8873a0
JI
194
195again:
e7850595 196 prev_raw_count = local64_read(&hwc->prev_count);
1b8873a0
JI
197 new_raw_count = armpmu->read_counter(idx);
198
e7850595 199 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
1b8873a0
JI
200 new_raw_count) != prev_raw_count)
201 goto again;
202
a737823d
WD
203 new_raw_count &= armpmu->max_period;
204 prev_raw_count &= armpmu->max_period;
205
206 if (overflow)
6759788b 207 delta = armpmu->max_period - prev_raw_count + new_raw_count + 1;
a737823d
WD
208 else
209 delta = new_raw_count - prev_raw_count;
1b8873a0 210
e7850595
PZ
211 local64_add(delta, &event->count);
212 local64_sub(delta, &hwc->period_left);
1b8873a0
JI
213
214 return new_raw_count;
215}
216
217static void
a4eaf7f1 218armpmu_read(struct perf_event *event)
1b8873a0 219{
1b8873a0 220 struct hw_perf_event *hwc = &event->hw;
1b8873a0 221
a4eaf7f1
PZ
222 /* Don't read disabled counters! */
223 if (hwc->idx < 0)
224 return;
1b8873a0 225
a737823d 226 armpmu_event_update(event, hwc, hwc->idx, 0);
1b8873a0
JI
227}
228
229static void
a4eaf7f1 230armpmu_stop(struct perf_event *event, int flags)
1b8873a0 231{
8a16b34e 232 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
1b8873a0
JI
233 struct hw_perf_event *hwc = &event->hw;
234
a4eaf7f1
PZ
235 /*
236 * ARM pmu always has to update the counter, so ignore
237 * PERF_EF_UPDATE, see comments in armpmu_start().
238 */
239 if (!(hwc->state & PERF_HES_STOPPED)) {
240 armpmu->disable(hwc, hwc->idx);
241 barrier(); /* why? */
a737823d 242 armpmu_event_update(event, hwc, hwc->idx, 0);
a4eaf7f1
PZ
243 hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
244 }
1b8873a0
JI
245}
246
247static void
a4eaf7f1 248armpmu_start(struct perf_event *event, int flags)
1b8873a0 249{
8a16b34e 250 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
1b8873a0
JI
251 struct hw_perf_event *hwc = &event->hw;
252
a4eaf7f1
PZ
253 /*
254 * ARM pmu always has to reprogram the period, so ignore
255 * PERF_EF_RELOAD, see the comment below.
256 */
257 if (flags & PERF_EF_RELOAD)
258 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
259
260 hwc->state = 0;
1b8873a0
JI
261 /*
262 * Set the period again. Some counters can't be stopped, so when we
a4eaf7f1 263 * were stopped we simply disabled the IRQ source and the counter
1b8873a0
JI
264 * may have been left counting. If we don't do this step then we may
265 * get an interrupt too soon or *way* too late if the overflow has
266 * happened since disabling.
267 */
268 armpmu_event_set_period(event, hwc, hwc->idx);
269 armpmu->enable(hwc, hwc->idx);
270}
271
a4eaf7f1
PZ
272static void
273armpmu_del(struct perf_event *event, int flags)
274{
8a16b34e 275 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
8be3f9a2 276 struct pmu_hw_events *hw_events = armpmu->get_hw_events();
a4eaf7f1
PZ
277 struct hw_perf_event *hwc = &event->hw;
278 int idx = hwc->idx;
279
280 WARN_ON(idx < 0);
281
a4eaf7f1 282 armpmu_stop(event, PERF_EF_UPDATE);
8be3f9a2
MR
283 hw_events->events[idx] = NULL;
284 clear_bit(idx, hw_events->used_mask);
a4eaf7f1
PZ
285
286 perf_event_update_userpage(event);
287}
288
1b8873a0 289static int
a4eaf7f1 290armpmu_add(struct perf_event *event, int flags)
1b8873a0 291{
8a16b34e 292 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
8be3f9a2 293 struct pmu_hw_events *hw_events = armpmu->get_hw_events();
1b8873a0
JI
294 struct hw_perf_event *hwc = &event->hw;
295 int idx;
296 int err = 0;
297
33696fc0 298 perf_pmu_disable(event->pmu);
24cd7f54 299
1b8873a0 300 /* If we don't have a space for the counter then finish early. */
8be3f9a2 301 idx = armpmu->get_event_idx(hw_events, hwc);
1b8873a0
JI
302 if (idx < 0) {
303 err = idx;
304 goto out;
305 }
306
307 /*
308 * If there is an event in the counter we are going to use then make
309 * sure it is disabled.
310 */
311 event->hw.idx = idx;
312 armpmu->disable(hwc, idx);
8be3f9a2 313 hw_events->events[idx] = event;
1b8873a0 314
a4eaf7f1
PZ
315 hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
316 if (flags & PERF_EF_START)
317 armpmu_start(event, PERF_EF_RELOAD);
1b8873a0
JI
318
319 /* Propagate our changes to the userspace mapping. */
320 perf_event_update_userpage(event);
321
322out:
33696fc0 323 perf_pmu_enable(event->pmu);
1b8873a0
JI
324 return err;
325}
326
1b8873a0 327static int
8be3f9a2 328validate_event(struct pmu_hw_events *hw_events,
1b8873a0
JI
329 struct perf_event *event)
330{
8a16b34e 331 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
1b8873a0 332 struct hw_perf_event fake_event = event->hw;
7b9f72c6 333 struct pmu *leader_pmu = event->group_leader->pmu;
1b8873a0 334
7b9f72c6 335 if (event->pmu != leader_pmu || event->state <= PERF_EVENT_STATE_OFF)
65b4711f 336 return 1;
1b8873a0 337
8be3f9a2 338 return armpmu->get_event_idx(hw_events, &fake_event) >= 0;
1b8873a0
JI
339}
340
341static int
342validate_group(struct perf_event *event)
343{
344 struct perf_event *sibling, *leader = event->group_leader;
8be3f9a2 345 struct pmu_hw_events fake_pmu;
1b8873a0
JI
346
347 memset(&fake_pmu, 0, sizeof(fake_pmu));
348
349 if (!validate_event(&fake_pmu, leader))
350 return -ENOSPC;
351
352 list_for_each_entry(sibling, &leader->sibling_list, group_entry) {
353 if (!validate_event(&fake_pmu, sibling))
354 return -ENOSPC;
355 }
356
357 if (!validate_event(&fake_pmu, event))
358 return -ENOSPC;
359
360 return 0;
361}
362
0e25a5c9
RV
363static irqreturn_t armpmu_platform_irq(int irq, void *dev)
364{
8a16b34e 365 struct arm_pmu *armpmu = (struct arm_pmu *) dev;
a9356a04
MR
366 struct platform_device *plat_device = armpmu->plat_device;
367 struct arm_pmu_platdata *plat = dev_get_platdata(&plat_device->dev);
0e25a5c9
RV
368
369 return plat->handle_irq(irq, dev, armpmu->handle_irq);
370}
371
0b390e21 372static void
8a16b34e 373armpmu_release_hardware(struct arm_pmu *armpmu)
0b390e21
WD
374{
375 int i, irq, irqs;
a9356a04 376 struct platform_device *pmu_device = armpmu->plat_device;
0b390e21
WD
377
378 irqs = min(pmu_device->num_resources, num_possible_cpus());
379
380 for (i = 0; i < irqs; ++i) {
381 if (!cpumask_test_and_clear_cpu(i, &armpmu->active_irqs))
382 continue;
383 irq = platform_get_irq(pmu_device, i);
384 if (irq >= 0)
8a16b34e 385 free_irq(irq, armpmu);
0b390e21
WD
386 }
387
7ae18a57 388 release_pmu(armpmu->type);
0b390e21
WD
389}
390
1b8873a0 391static int
8a16b34e 392armpmu_reserve_hardware(struct arm_pmu *armpmu)
1b8873a0 393{
0e25a5c9
RV
394 struct arm_pmu_platdata *plat;
395 irq_handler_t handle_irq;
b0e89590 396 int i, err, irq, irqs;
a9356a04 397 struct platform_device *pmu_device = armpmu->plat_device;
1b8873a0 398
7ae18a57 399 err = reserve_pmu(armpmu->type);
b0e89590 400 if (err) {
1b8873a0 401 pr_warning("unable to reserve pmu\n");
b0e89590 402 return err;
1b8873a0
JI
403 }
404
0e25a5c9
RV
405 plat = dev_get_platdata(&pmu_device->dev);
406 if (plat && plat->handle_irq)
407 handle_irq = armpmu_platform_irq;
408 else
409 handle_irq = armpmu->handle_irq;
410
0b390e21 411 irqs = min(pmu_device->num_resources, num_possible_cpus());
b0e89590 412 if (irqs < 1) {
1b8873a0
JI
413 pr_err("no irqs for PMUs defined\n");
414 return -ENODEV;
415 }
416
b0e89590 417 for (i = 0; i < irqs; ++i) {
0b390e21 418 err = 0;
49c006b9
WD
419 irq = platform_get_irq(pmu_device, i);
420 if (irq < 0)
421 continue;
422
b0e89590
WD
423 /*
424 * If we have a single PMU interrupt that we can't shift,
425 * assume that we're running on a uniprocessor machine and
0b390e21 426 * continue. Otherwise, continue without this interrupt.
b0e89590 427 */
0b390e21
WD
428 if (irq_set_affinity(irq, cpumask_of(i)) && irqs > 1) {
429 pr_warning("unable to set irq affinity (irq=%d, cpu=%u)\n",
430 irq, i);
431 continue;
b0e89590
WD
432 }
433
0e25a5c9 434 err = request_irq(irq, handle_irq,
ddee87f2 435 IRQF_DISABLED | IRQF_NOBALANCING,
8a16b34e 436 "arm-pmu", armpmu);
1b8873a0 437 if (err) {
b0e89590
WD
438 pr_err("unable to request IRQ%d for ARM PMU counters\n",
439 irq);
8a16b34e 440 armpmu_release_hardware(armpmu);
0b390e21 441 return err;
1b8873a0 442 }
1b8873a0 443
0b390e21 444 cpumask_set_cpu(i, &armpmu->active_irqs);
49c006b9 445 }
1b8873a0 446
0b390e21 447 return 0;
1b8873a0
JI
448}
449
1b8873a0
JI
450static void
451hw_perf_event_destroy(struct perf_event *event)
452{
8a16b34e 453 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
03b7898d
MR
454 atomic_t *active_events = &armpmu->active_events;
455 struct mutex *pmu_reserve_mutex = &armpmu->reserve_mutex;
456
457 if (atomic_dec_and_mutex_lock(active_events, pmu_reserve_mutex)) {
8a16b34e 458 armpmu_release_hardware(armpmu);
03b7898d 459 mutex_unlock(pmu_reserve_mutex);
1b8873a0
JI
460 }
461}
462
05d22fde
WD
463static int
464event_requires_mode_exclusion(struct perf_event_attr *attr)
465{
466 return attr->exclude_idle || attr->exclude_user ||
467 attr->exclude_kernel || attr->exclude_hv;
468}
469
1b8873a0
JI
470static int
471__hw_perf_event_init(struct perf_event *event)
472{
8a16b34e 473 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
1b8873a0
JI
474 struct hw_perf_event *hwc = &event->hw;
475 int mapping, err;
476
e1f431b5 477 mapping = armpmu->map_event(event);
1b8873a0
JI
478
479 if (mapping < 0) {
480 pr_debug("event %x:%llx not supported\n", event->attr.type,
481 event->attr.config);
482 return mapping;
483 }
484
05d22fde
WD
485 /*
486 * We don't assign an index until we actually place the event onto
487 * hardware. Use -1 to signify that we haven't decided where to put it
488 * yet. For SMP systems, each core has it's own PMU so we can't do any
489 * clever allocation or constraints checking at this point.
490 */
491 hwc->idx = -1;
492 hwc->config_base = 0;
493 hwc->config = 0;
494 hwc->event_base = 0;
495
1b8873a0
JI
496 /*
497 * Check whether we need to exclude the counter from certain modes.
1b8873a0 498 */
05d22fde
WD
499 if ((!armpmu->set_event_filter ||
500 armpmu->set_event_filter(hwc, &event->attr)) &&
501 event_requires_mode_exclusion(&event->attr)) {
1b8873a0
JI
502 pr_debug("ARM performance counters do not support "
503 "mode exclusion\n");
504 return -EPERM;
505 }
506
507 /*
05d22fde 508 * Store the event encoding into the config_base field.
1b8873a0 509 */
05d22fde 510 hwc->config_base |= (unsigned long)mapping;
1b8873a0
JI
511
512 if (!hwc->sample_period) {
513 hwc->sample_period = armpmu->max_period;
514 hwc->last_period = hwc->sample_period;
e7850595 515 local64_set(&hwc->period_left, hwc->sample_period);
1b8873a0
JI
516 }
517
518 err = 0;
519 if (event->group_leader != event) {
520 err = validate_group(event);
521 if (err)
522 return -EINVAL;
523 }
524
525 return err;
526}
527
b0a873eb 528static int armpmu_event_init(struct perf_event *event)
1b8873a0 529{
8a16b34e 530 struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
1b8873a0 531 int err = 0;
03b7898d 532 atomic_t *active_events = &armpmu->active_events;
1b8873a0 533
e1f431b5 534 if (armpmu->map_event(event) == -ENOENT)
b0a873eb 535 return -ENOENT;
b0a873eb 536
1b8873a0
JI
537 event->destroy = hw_perf_event_destroy;
538
03b7898d
MR
539 if (!atomic_inc_not_zero(active_events)) {
540 mutex_lock(&armpmu->reserve_mutex);
541 if (atomic_read(active_events) == 0)
8a16b34e 542 err = armpmu_reserve_hardware(armpmu);
1b8873a0
JI
543
544 if (!err)
03b7898d
MR
545 atomic_inc(active_events);
546 mutex_unlock(&armpmu->reserve_mutex);
1b8873a0
JI
547 }
548
549 if (err)
b0a873eb 550 return err;
1b8873a0
JI
551
552 err = __hw_perf_event_init(event);
553 if (err)
554 hw_perf_event_destroy(event);
555
b0a873eb 556 return err;
1b8873a0
JI
557}
558
a4eaf7f1 559static void armpmu_enable(struct pmu *pmu)
1b8873a0 560{
8be3f9a2 561 struct arm_pmu *armpmu = to_arm_pmu(pmu);
8be3f9a2 562 struct pmu_hw_events *hw_events = armpmu->get_hw_events();
7325eaec 563 int enabled = bitmap_weight(hw_events->used_mask, armpmu->num_events);
1b8873a0 564
f4f38430
WD
565 if (enabled)
566 armpmu->start();
1b8873a0
JI
567}
568
a4eaf7f1 569static void armpmu_disable(struct pmu *pmu)
1b8873a0 570{
8a16b34e 571 struct arm_pmu *armpmu = to_arm_pmu(pmu);
48957155 572 armpmu->stop();
1b8873a0
JI
573}
574
03b7898d
MR
575static void __init armpmu_init(struct arm_pmu *armpmu)
576{
577 atomic_set(&armpmu->active_events, 0);
578 mutex_init(&armpmu->reserve_mutex);
8a16b34e
MR
579
580 armpmu->pmu = (struct pmu) {
581 .pmu_enable = armpmu_enable,
582 .pmu_disable = armpmu_disable,
583 .event_init = armpmu_event_init,
584 .add = armpmu_add,
585 .del = armpmu_del,
586 .start = armpmu_start,
587 .stop = armpmu_stop,
588 .read = armpmu_read,
589 };
590}
591
0ce47080 592int __init armpmu_register(struct arm_pmu *armpmu, char *name, int type)
8a16b34e
MR
593{
594 armpmu_init(armpmu);
595 return perf_pmu_register(&armpmu->pmu, name, type);
03b7898d
MR
596}
597
43eab878
WD
598/* Include the PMU-specific implementations. */
599#include "perf_event_xscale.c"
600#include "perf_event_v6.c"
601#include "perf_event_v7.c"
49e6a32f 602
574b69cb
WD
603/*
604 * Ensure the PMU has sane values out of reset.
605 * This requires SMP to be available, so exists as a separate initcall.
606 */
607static int __init
8be3f9a2 608cpu_pmu_reset(void)
574b69cb 609{
8be3f9a2
MR
610 if (cpu_pmu && cpu_pmu->reset)
611 return on_each_cpu(cpu_pmu->reset, NULL, 1);
574b69cb
WD
612 return 0;
613}
8be3f9a2 614arch_initcall(cpu_pmu_reset);
574b69cb 615
b0e89590
WD
616/*
617 * PMU platform driver and devicetree bindings.
618 */
619static struct of_device_id armpmu_of_device_ids[] = {
620 {.compatible = "arm,cortex-a9-pmu"},
621 {.compatible = "arm,cortex-a8-pmu"},
622 {.compatible = "arm,arm1136-pmu"},
623 {.compatible = "arm,arm1176-pmu"},
624 {},
625};
626
627static struct platform_device_id armpmu_plat_device_ids[] = {
628 {.name = "arm-pmu"},
629 {},
630};
631
632static int __devinit armpmu_device_probe(struct platform_device *pdev)
633{
8be3f9a2 634 cpu_pmu->plat_device = pdev;
b0e89590
WD
635 return 0;
636}
637
638static struct platform_driver armpmu_driver = {
639 .driver = {
640 .name = "arm-pmu",
641 .of_match_table = armpmu_of_device_ids,
642 },
643 .probe = armpmu_device_probe,
644 .id_table = armpmu_plat_device_ids,
645};
646
647static int __init register_pmu_driver(void)
648{
649 return platform_driver_register(&armpmu_driver);
650}
651device_initcall(register_pmu_driver);
652
8be3f9a2 653static struct pmu_hw_events *armpmu_get_cpu_events(void)
92f701e1
MR
654{
655 return &__get_cpu_var(cpu_hw_events);
656}
657
658static void __init cpu_pmu_init(struct arm_pmu *armpmu)
659{
0f78d2d5
MR
660 int cpu;
661 for_each_possible_cpu(cpu) {
8be3f9a2 662 struct pmu_hw_events *events = &per_cpu(cpu_hw_events, cpu);
3fc2c830
MR
663 events->events = per_cpu(hw_events, cpu);
664 events->used_mask = per_cpu(used_mask, cpu);
0f78d2d5
MR
665 raw_spin_lock_init(&events->pmu_lock);
666 }
92f701e1 667 armpmu->get_hw_events = armpmu_get_cpu_events;
7ae18a57 668 armpmu->type = ARM_PMU_DEVICE_CPU;
92f701e1
MR
669}
670
b0e89590
WD
671/*
672 * CPU PMU identification and registration.
673 */
1b8873a0
JI
674static int __init
675init_hw_perf_events(void)
676{
677 unsigned long cpuid = read_cpuid_id();
678 unsigned long implementor = (cpuid & 0xFF000000) >> 24;
679 unsigned long part_number = (cpuid & 0xFFF0);
680
49e6a32f 681 /* ARM Ltd CPUs. */
1b8873a0
JI
682 if (0x41 == implementor) {
683 switch (part_number) {
684 case 0xB360: /* ARM1136 */
685 case 0xB560: /* ARM1156 */
686 case 0xB760: /* ARM1176 */
8be3f9a2 687 cpu_pmu = armv6pmu_init();
1b8873a0
JI
688 break;
689 case 0xB020: /* ARM11mpcore */
8be3f9a2 690 cpu_pmu = armv6mpcore_pmu_init();
1b8873a0 691 break;
796d1295 692 case 0xC080: /* Cortex-A8 */
8be3f9a2 693 cpu_pmu = armv7_a8_pmu_init();
796d1295
JP
694 break;
695 case 0xC090: /* Cortex-A9 */
8be3f9a2 696 cpu_pmu = armv7_a9_pmu_init();
796d1295 697 break;
0c205cbe 698 case 0xC050: /* Cortex-A5 */
8be3f9a2 699 cpu_pmu = armv7_a5_pmu_init();
0c205cbe 700 break;
14abd038 701 case 0xC0F0: /* Cortex-A15 */
8be3f9a2 702 cpu_pmu = armv7_a15_pmu_init();
14abd038 703 break;
49e6a32f
WD
704 }
705 /* Intel CPUs [xscale]. */
706 } else if (0x69 == implementor) {
707 part_number = (cpuid >> 13) & 0x7;
708 switch (part_number) {
709 case 1:
8be3f9a2 710 cpu_pmu = xscale1pmu_init();
49e6a32f
WD
711 break;
712 case 2:
8be3f9a2 713 cpu_pmu = xscale2pmu_init();
49e6a32f 714 break;
1b8873a0
JI
715 }
716 }
717
8be3f9a2 718 if (cpu_pmu) {
796d1295 719 pr_info("enabled with %s PMU driver, %d counters available\n",
8be3f9a2
MR
720 cpu_pmu->name, cpu_pmu->num_events);
721 cpu_pmu_init(cpu_pmu);
722 armpmu_register(cpu_pmu, "cpu", PERF_TYPE_RAW);
49e6a32f
WD
723 } else {
724 pr_info("no hardware support available\n");
49e6a32f 725 }
1b8873a0
JI
726
727 return 0;
728}
004417a6 729early_initcall(init_hw_perf_events);
1b8873a0
JI
730
731/*
732 * Callchain handling code.
733 */
1b8873a0
JI
734
735/*
736 * The registers we're interested in are at the end of the variable
737 * length saved register structure. The fp points at the end of this
738 * structure so the address of this struct is:
739 * (struct frame_tail *)(xxx->fp)-1
740 *
741 * This code has been adapted from the ARM OProfile support.
742 */
743struct frame_tail {
4d6b7a77
WD
744 struct frame_tail __user *fp;
745 unsigned long sp;
746 unsigned long lr;
1b8873a0
JI
747} __attribute__((packed));
748
749/*
750 * Get the return address for a single stackframe and return a pointer to the
751 * next frame tail.
752 */
4d6b7a77
WD
753static struct frame_tail __user *
754user_backtrace(struct frame_tail __user *tail,
1b8873a0
JI
755 struct perf_callchain_entry *entry)
756{
757 struct frame_tail buftail;
758
759 /* Also check accessibility of one struct frame_tail beyond */
760 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
761 return NULL;
762 if (__copy_from_user_inatomic(&buftail, tail, sizeof(buftail)))
763 return NULL;
764
70791ce9 765 perf_callchain_store(entry, buftail.lr);
1b8873a0
JI
766
767 /*
768 * Frame pointers should strictly progress back up the stack
769 * (towards higher addresses).
770 */
cb06199b 771 if (tail + 1 >= buftail.fp)
1b8873a0
JI
772 return NULL;
773
774 return buftail.fp - 1;
775}
776
56962b44
FW
777void
778perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
1b8873a0 779{
4d6b7a77 780 struct frame_tail __user *tail;
1b8873a0 781
1b8873a0 782
4d6b7a77 783 tail = (struct frame_tail __user *)regs->ARM_fp - 1;
1b8873a0 784
860ad782
SR
785 while ((entry->nr < PERF_MAX_STACK_DEPTH) &&
786 tail && !((unsigned long)tail & 0x3))
1b8873a0
JI
787 tail = user_backtrace(tail, entry);
788}
789
790/*
791 * Gets called by walk_stackframe() for every stackframe. This will be called
792 * whist unwinding the stackframe and is like a subroutine return so we use
793 * the PC.
794 */
795static int
796callchain_trace(struct stackframe *fr,
797 void *data)
798{
799 struct perf_callchain_entry *entry = data;
70791ce9 800 perf_callchain_store(entry, fr->pc);
1b8873a0
JI
801 return 0;
802}
803
56962b44
FW
804void
805perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
1b8873a0
JI
806{
807 struct stackframe fr;
808
1b8873a0
JI
809 fr.fp = regs->ARM_fp;
810 fr.sp = regs->ARM_sp;
811 fr.lr = regs->ARM_lr;
812 fr.pc = regs->ARM_pc;
813 walk_stackframe(&fr, callchain_trace, entry);
814}
This page took 0.831241 seconds and 5 git commands to generate.