sparc: Add Niagara2 HW cache event support.
[linux-2.6-block.git] / arch / sparc / kernel / perf_event.c
CommitLineData
cdd6c482 1/* Performance event support for sparc64.
59abbd1e
DM
2 *
3 * Copyright (C) 2009 David S. Miller <davem@davemloft.net>
4 *
cdd6c482 5 * This code is based almost entirely upon the x86 perf event
59abbd1e
DM
6 * code, which is:
7 *
8 * Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
9 * Copyright (C) 2008-2009 Red Hat, Inc., Ingo Molnar
10 * Copyright (C) 2009 Jaswinder Singh Rajput
11 * Copyright (C) 2009 Advanced Micro Devices, Inc., Robert Richter
12 * Copyright (C) 2008-2009 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
13 */
14
cdd6c482 15#include <linux/perf_event.h>
59abbd1e
DM
16#include <linux/kprobes.h>
17#include <linux/kernel.h>
18#include <linux/kdebug.h>
19#include <linux/mutex.h>
20
21#include <asm/cpudata.h>
22#include <asm/atomic.h>
23#include <asm/nmi.h>
24#include <asm/pcr.h>
25
26/* Sparc64 chips have two performance counters, 32-bits each, with
27 * overflow interrupts generated on transition from 0xffffffff to 0.
28 * The counters are accessed in one go using a 64-bit register.
29 *
30 * Both counters are controlled using a single control register. The
31 * only way to stop all sampling is to clear all of the context (user,
32 * supervisor, hypervisor) sampling enable bits. But these bits apply
33 * to both counters, thus the two counters can't be enabled/disabled
34 * individually.
35 *
36 * The control register has two event fields, one for each of the two
37 * counters. It's thus nearly impossible to have one counter going
38 * while keeping the other one stopped. Therefore it is possible to
39 * get overflow interrupts for counters not currently "in use" and
40 * that condition must be checked in the overflow interrupt handler.
41 *
42 * So we use a hack, in that we program inactive counters with the
43 * "sw_count0" and "sw_count1" events. These count how many times
44 * the instruction "sethi %hi(0xfc000), %g0" is executed. It's an
45 * unusual way to encode a NOP and therefore will not trigger in
46 * normal code.
47 */
48
cdd6c482 49#define MAX_HWEVENTS 2
59abbd1e
DM
50#define MAX_PERIOD ((1UL << 32) - 1)
51
52#define PIC_UPPER_INDEX 0
53#define PIC_LOWER_INDEX 1
54
cdd6c482
IM
55struct cpu_hw_events {
56 struct perf_event *events[MAX_HWEVENTS];
57 unsigned long used_mask[BITS_TO_LONGS(MAX_HWEVENTS)];
58 unsigned long active_mask[BITS_TO_LONGS(MAX_HWEVENTS)];
59abbd1e
DM
59 int enabled;
60};
cdd6c482 61DEFINE_PER_CPU(struct cpu_hw_events, cpu_hw_events) = { .enabled = 1, };
59abbd1e
DM
62
63struct perf_event_map {
64 u16 encoding;
65 u8 pic_mask;
66#define PIC_NONE 0x00
67#define PIC_UPPER 0x01
68#define PIC_LOWER 0x02
69};
70
2ce4da2e
DM
71#define C(x) PERF_COUNT_HW_CACHE_##x
72
73#define CACHE_OP_UNSUPPORTED 0xfffe
74#define CACHE_OP_NONSENSE 0xffff
75
76typedef struct perf_event_map cache_map_t
77 [PERF_COUNT_HW_CACHE_MAX]
78 [PERF_COUNT_HW_CACHE_OP_MAX]
79 [PERF_COUNT_HW_CACHE_RESULT_MAX];
80
59abbd1e
DM
81struct sparc_pmu {
82 const struct perf_event_map *(*event_map)(int);
2ce4da2e 83 const cache_map_t *cache_map;
59abbd1e
DM
84 int max_events;
85 int upper_shift;
86 int lower_shift;
87 int event_mask;
91b9286d 88 int hv_bit;
496c07e3 89 int irq_bit;
660d1376
DM
90 int upper_nop;
91 int lower_nop;
59abbd1e
DM
92};
93
28e8f9be 94static const struct perf_event_map ultra3_perfmon_event_map[] = {
59abbd1e
DM
95 [PERF_COUNT_HW_CPU_CYCLES] = { 0x0000, PIC_UPPER | PIC_LOWER },
96 [PERF_COUNT_HW_INSTRUCTIONS] = { 0x0001, PIC_UPPER | PIC_LOWER },
97 [PERF_COUNT_HW_CACHE_REFERENCES] = { 0x0009, PIC_LOWER },
98 [PERF_COUNT_HW_CACHE_MISSES] = { 0x0009, PIC_UPPER },
99};
100
28e8f9be 101static const struct perf_event_map *ultra3_event_map(int event_id)
59abbd1e 102{
28e8f9be 103 return &ultra3_perfmon_event_map[event_id];
59abbd1e
DM
104}
105
28e8f9be 106static const cache_map_t ultra3_cache_map = {
2ce4da2e
DM
107[C(L1D)] = {
108 [C(OP_READ)] = {
109 [C(RESULT_ACCESS)] = { 0x09, PIC_LOWER, },
110 [C(RESULT_MISS)] = { 0x09, PIC_UPPER, },
111 },
112 [C(OP_WRITE)] = {
113 [C(RESULT_ACCESS)] = { 0x0a, PIC_LOWER },
114 [C(RESULT_MISS)] = { 0x0a, PIC_UPPER },
115 },
116 [C(OP_PREFETCH)] = {
117 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
118 [C(RESULT_MISS)] = { CACHE_OP_UNSUPPORTED },
119 },
120},
121[C(L1I)] = {
122 [C(OP_READ)] = {
123 [C(RESULT_ACCESS)] = { 0x09, PIC_LOWER, },
124 [C(RESULT_MISS)] = { 0x09, PIC_UPPER, },
125 },
126 [ C(OP_WRITE) ] = {
127 [ C(RESULT_ACCESS) ] = { CACHE_OP_NONSENSE },
128 [ C(RESULT_MISS) ] = { CACHE_OP_NONSENSE },
129 },
130 [ C(OP_PREFETCH) ] = {
131 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
132 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
133 },
134},
135[C(LL)] = {
136 [C(OP_READ)] = {
137 [C(RESULT_ACCESS)] = { 0x0c, PIC_LOWER, },
138 [C(RESULT_MISS)] = { 0x0c, PIC_UPPER, },
139 },
140 [C(OP_WRITE)] = {
141 [C(RESULT_ACCESS)] = { 0x0c, PIC_LOWER },
142 [C(RESULT_MISS)] = { 0x0c, PIC_UPPER },
143 },
144 [C(OP_PREFETCH)] = {
145 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
146 [C(RESULT_MISS)] = { CACHE_OP_UNSUPPORTED },
147 },
148},
149[C(DTLB)] = {
150 [C(OP_READ)] = {
151 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
152 [C(RESULT_MISS)] = { 0x12, PIC_UPPER, },
153 },
154 [ C(OP_WRITE) ] = {
155 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
156 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
157 },
158 [ C(OP_PREFETCH) ] = {
159 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
160 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
161 },
162},
163[C(ITLB)] = {
164 [C(OP_READ)] = {
165 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
166 [C(RESULT_MISS)] = { 0x11, PIC_UPPER, },
167 },
168 [ C(OP_WRITE) ] = {
169 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
170 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
171 },
172 [ C(OP_PREFETCH) ] = {
173 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
174 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
175 },
176},
177[C(BPU)] = {
178 [C(OP_READ)] = {
179 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
180 [C(RESULT_MISS)] = { CACHE_OP_UNSUPPORTED },
181 },
182 [ C(OP_WRITE) ] = {
183 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
184 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
185 },
186 [ C(OP_PREFETCH) ] = {
187 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
188 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
189 },
190},
191};
192
28e8f9be
DM
193static const struct sparc_pmu ultra3_pmu = {
194 .event_map = ultra3_event_map,
195 .cache_map = &ultra3_cache_map,
196 .max_events = ARRAY_SIZE(ultra3_perfmon_event_map),
59abbd1e
DM
197 .upper_shift = 11,
198 .lower_shift = 4,
199 .event_mask = 0x3f,
660d1376
DM
200 .upper_nop = 0x1c,
201 .lower_nop = 0x14,
59abbd1e
DM
202};
203
b73d8847
DM
204static const struct perf_event_map niagara2_perfmon_event_map[] = {
205 [PERF_COUNT_HW_CPU_CYCLES] = { 0x02ff, PIC_UPPER | PIC_LOWER },
206 [PERF_COUNT_HW_INSTRUCTIONS] = { 0x02ff, PIC_UPPER | PIC_LOWER },
207 [PERF_COUNT_HW_CACHE_REFERENCES] = { 0x0208, PIC_UPPER | PIC_LOWER },
208 [PERF_COUNT_HW_CACHE_MISSES] = { 0x0302, PIC_UPPER | PIC_LOWER },
209 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = { 0x0201, PIC_UPPER | PIC_LOWER },
210 [PERF_COUNT_HW_BRANCH_MISSES] = { 0x0202, PIC_UPPER | PIC_LOWER },
211};
212
cdd6c482 213static const struct perf_event_map *niagara2_event_map(int event_id)
b73d8847 214{
cdd6c482 215 return &niagara2_perfmon_event_map[event_id];
b73d8847
DM
216}
217
d0b86480
DM
218static const cache_map_t niagara2_cache_map = {
219[C(L1D)] = {
220 [C(OP_READ)] = {
221 [C(RESULT_ACCESS)] = { 0x0208, PIC_UPPER | PIC_LOWER, },
222 [C(RESULT_MISS)] = { 0x0302, PIC_UPPER | PIC_LOWER, },
223 },
224 [C(OP_WRITE)] = {
225 [C(RESULT_ACCESS)] = { 0x0210, PIC_UPPER | PIC_LOWER, },
226 [C(RESULT_MISS)] = { 0x0302, PIC_UPPER | PIC_LOWER, },
227 },
228 [C(OP_PREFETCH)] = {
229 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
230 [C(RESULT_MISS)] = { CACHE_OP_UNSUPPORTED },
231 },
232},
233[C(L1I)] = {
234 [C(OP_READ)] = {
235 [C(RESULT_ACCESS)] = { 0x02ff, PIC_UPPER | PIC_LOWER, },
236 [C(RESULT_MISS)] = { 0x0301, PIC_UPPER | PIC_LOWER, },
237 },
238 [ C(OP_WRITE) ] = {
239 [ C(RESULT_ACCESS) ] = { CACHE_OP_NONSENSE },
240 [ C(RESULT_MISS) ] = { CACHE_OP_NONSENSE },
241 },
242 [ C(OP_PREFETCH) ] = {
243 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
244 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
245 },
246},
247[C(LL)] = {
248 [C(OP_READ)] = {
249 [C(RESULT_ACCESS)] = { 0x0208, PIC_UPPER | PIC_LOWER, },
250 [C(RESULT_MISS)] = { 0x0330, PIC_UPPER | PIC_LOWER, },
251 },
252 [C(OP_WRITE)] = {
253 [C(RESULT_ACCESS)] = { 0x0210, PIC_UPPER | PIC_LOWER, },
254 [C(RESULT_MISS)] = { 0x0320, PIC_UPPER | PIC_LOWER, },
255 },
256 [C(OP_PREFETCH)] = {
257 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
258 [C(RESULT_MISS)] = { CACHE_OP_UNSUPPORTED },
259 },
260},
261[C(DTLB)] = {
262 [C(OP_READ)] = {
263 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
264 [C(RESULT_MISS)] = { 0x0b08, PIC_UPPER | PIC_LOWER, },
265 },
266 [ C(OP_WRITE) ] = {
267 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
268 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
269 },
270 [ C(OP_PREFETCH) ] = {
271 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
272 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
273 },
274},
275[C(ITLB)] = {
276 [C(OP_READ)] = {
277 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
278 [C(RESULT_MISS)] = { 0xb04, PIC_UPPER | PIC_LOWER, },
279 },
280 [ C(OP_WRITE) ] = {
281 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
282 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
283 },
284 [ C(OP_PREFETCH) ] = {
285 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
286 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
287 },
288},
289[C(BPU)] = {
290 [C(OP_READ)] = {
291 [C(RESULT_ACCESS)] = { CACHE_OP_UNSUPPORTED },
292 [C(RESULT_MISS)] = { CACHE_OP_UNSUPPORTED },
293 },
294 [ C(OP_WRITE) ] = {
295 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
296 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
297 },
298 [ C(OP_PREFETCH) ] = {
299 [ C(RESULT_ACCESS) ] = { CACHE_OP_UNSUPPORTED },
300 [ C(RESULT_MISS) ] = { CACHE_OP_UNSUPPORTED },
301 },
302},
303};
304
b73d8847
DM
305static const struct sparc_pmu niagara2_pmu = {
306 .event_map = niagara2_event_map,
d0b86480 307 .cache_map = &niagara2_cache_map,
b73d8847
DM
308 .max_events = ARRAY_SIZE(niagara2_perfmon_event_map),
309 .upper_shift = 19,
310 .lower_shift = 6,
311 .event_mask = 0xfff,
312 .hv_bit = 0x8,
313 .irq_bit = 0x03,
314 .upper_nop = 0x220,
315 .lower_nop = 0x220,
316};
317
59abbd1e
DM
318static const struct sparc_pmu *sparc_pmu __read_mostly;
319
cdd6c482 320static u64 event_encoding(u64 event_id, int idx)
59abbd1e
DM
321{
322 if (idx == PIC_UPPER_INDEX)
cdd6c482 323 event_id <<= sparc_pmu->upper_shift;
59abbd1e 324 else
cdd6c482
IM
325 event_id <<= sparc_pmu->lower_shift;
326 return event_id;
59abbd1e
DM
327}
328
329static u64 mask_for_index(int idx)
330{
331 return event_encoding(sparc_pmu->event_mask, idx);
332}
333
334static u64 nop_for_index(int idx)
335{
336 return event_encoding(idx == PIC_UPPER_INDEX ?
660d1376
DM
337 sparc_pmu->upper_nop :
338 sparc_pmu->lower_nop, idx);
59abbd1e
DM
339}
340
cdd6c482 341static inline void sparc_pmu_enable_event(struct hw_perf_event *hwc,
59abbd1e
DM
342 int idx)
343{
344 u64 val, mask = mask_for_index(idx);
345
346 val = pcr_ops->read();
347 pcr_ops->write((val & ~mask) | hwc->config);
348}
349
cdd6c482 350static inline void sparc_pmu_disable_event(struct hw_perf_event *hwc,
59abbd1e
DM
351 int idx)
352{
353 u64 mask = mask_for_index(idx);
354 u64 nop = nop_for_index(idx);
355 u64 val = pcr_ops->read();
356
357 pcr_ops->write((val & ~mask) | nop);
358}
359
360void hw_perf_enable(void)
361{
cdd6c482 362 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
59abbd1e
DM
363 u64 val;
364 int i;
365
366 if (cpuc->enabled)
367 return;
368
369 cpuc->enabled = 1;
370 barrier();
371
372 val = pcr_ops->read();
373
cdd6c482
IM
374 for (i = 0; i < MAX_HWEVENTS; i++) {
375 struct perf_event *cp = cpuc->events[i];
376 struct hw_perf_event *hwc;
59abbd1e
DM
377
378 if (!cp)
379 continue;
380 hwc = &cp->hw;
381 val |= hwc->config_base;
382 }
383
384 pcr_ops->write(val);
385}
386
387void hw_perf_disable(void)
388{
cdd6c482 389 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
59abbd1e
DM
390 u64 val;
391
392 if (!cpuc->enabled)
393 return;
394
395 cpuc->enabled = 0;
396
397 val = pcr_ops->read();
496c07e3
DM
398 val &= ~(PCR_UTRACE | PCR_STRACE |
399 sparc_pmu->hv_bit | sparc_pmu->irq_bit);
59abbd1e
DM
400 pcr_ops->write(val);
401}
402
403static u32 read_pmc(int idx)
404{
405 u64 val;
406
407 read_pic(val);
408 if (idx == PIC_UPPER_INDEX)
409 val >>= 32;
410
411 return val & 0xffffffff;
412}
413
414static void write_pmc(int idx, u64 val)
415{
416 u64 shift, mask, pic;
417
418 shift = 0;
419 if (idx == PIC_UPPER_INDEX)
420 shift = 32;
421
422 mask = ((u64) 0xffffffff) << shift;
423 val <<= shift;
424
425 read_pic(pic);
426 pic &= ~mask;
427 pic |= val;
428 write_pic(pic);
429}
430
cdd6c482
IM
431static int sparc_perf_event_set_period(struct perf_event *event,
432 struct hw_perf_event *hwc, int idx)
59abbd1e
DM
433{
434 s64 left = atomic64_read(&hwc->period_left);
435 s64 period = hwc->sample_period;
436 int ret = 0;
437
438 if (unlikely(left <= -period)) {
439 left = period;
440 atomic64_set(&hwc->period_left, left);
441 hwc->last_period = period;
442 ret = 1;
443 }
444
445 if (unlikely(left <= 0)) {
446 left += period;
447 atomic64_set(&hwc->period_left, left);
448 hwc->last_period = period;
449 ret = 1;
450 }
451 if (left > MAX_PERIOD)
452 left = MAX_PERIOD;
453
454 atomic64_set(&hwc->prev_count, (u64)-left);
455
456 write_pmc(idx, (u64)(-left) & 0xffffffff);
457
cdd6c482 458 perf_event_update_userpage(event);
59abbd1e
DM
459
460 return ret;
461}
462
cdd6c482 463static int sparc_pmu_enable(struct perf_event *event)
59abbd1e 464{
cdd6c482
IM
465 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
466 struct hw_perf_event *hwc = &event->hw;
59abbd1e
DM
467 int idx = hwc->idx;
468
469 if (test_and_set_bit(idx, cpuc->used_mask))
470 return -EAGAIN;
471
cdd6c482 472 sparc_pmu_disable_event(hwc, idx);
59abbd1e 473
cdd6c482 474 cpuc->events[idx] = event;
59abbd1e
DM
475 set_bit(idx, cpuc->active_mask);
476
cdd6c482
IM
477 sparc_perf_event_set_period(event, hwc, idx);
478 sparc_pmu_enable_event(hwc, idx);
479 perf_event_update_userpage(event);
59abbd1e
DM
480 return 0;
481}
482
cdd6c482
IM
483static u64 sparc_perf_event_update(struct perf_event *event,
484 struct hw_perf_event *hwc, int idx)
59abbd1e
DM
485{
486 int shift = 64 - 32;
487 u64 prev_raw_count, new_raw_count;
488 s64 delta;
489
490again:
491 prev_raw_count = atomic64_read(&hwc->prev_count);
492 new_raw_count = read_pmc(idx);
493
494 if (atomic64_cmpxchg(&hwc->prev_count, prev_raw_count,
495 new_raw_count) != prev_raw_count)
496 goto again;
497
498 delta = (new_raw_count << shift) - (prev_raw_count << shift);
499 delta >>= shift;
500
cdd6c482 501 atomic64_add(delta, &event->count);
59abbd1e
DM
502 atomic64_sub(delta, &hwc->period_left);
503
504 return new_raw_count;
505}
506
cdd6c482 507static void sparc_pmu_disable(struct perf_event *event)
59abbd1e 508{
cdd6c482
IM
509 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
510 struct hw_perf_event *hwc = &event->hw;
59abbd1e
DM
511 int idx = hwc->idx;
512
513 clear_bit(idx, cpuc->active_mask);
cdd6c482 514 sparc_pmu_disable_event(hwc, idx);
59abbd1e
DM
515
516 barrier();
517
cdd6c482
IM
518 sparc_perf_event_update(event, hwc, idx);
519 cpuc->events[idx] = NULL;
59abbd1e
DM
520 clear_bit(idx, cpuc->used_mask);
521
cdd6c482 522 perf_event_update_userpage(event);
59abbd1e
DM
523}
524
cdd6c482 525static void sparc_pmu_read(struct perf_event *event)
59abbd1e 526{
cdd6c482
IM
527 struct hw_perf_event *hwc = &event->hw;
528 sparc_perf_event_update(event, hwc, hwc->idx);
59abbd1e
DM
529}
530
cdd6c482 531static void sparc_pmu_unthrottle(struct perf_event *event)
59abbd1e 532{
cdd6c482
IM
533 struct hw_perf_event *hwc = &event->hw;
534 sparc_pmu_enable_event(hwc, hwc->idx);
59abbd1e
DM
535}
536
cdd6c482 537static atomic_t active_events = ATOMIC_INIT(0);
59abbd1e
DM
538static DEFINE_MUTEX(pmc_grab_mutex);
539
cdd6c482 540void perf_event_grab_pmc(void)
59abbd1e 541{
cdd6c482 542 if (atomic_inc_not_zero(&active_events))
59abbd1e
DM
543 return;
544
545 mutex_lock(&pmc_grab_mutex);
cdd6c482 546 if (atomic_read(&active_events) == 0) {
59abbd1e
DM
547 if (atomic_read(&nmi_active) > 0) {
548 on_each_cpu(stop_nmi_watchdog, NULL, 1);
549 BUG_ON(atomic_read(&nmi_active) != 0);
550 }
cdd6c482 551 atomic_inc(&active_events);
59abbd1e
DM
552 }
553 mutex_unlock(&pmc_grab_mutex);
554}
555
cdd6c482 556void perf_event_release_pmc(void)
59abbd1e 557{
cdd6c482 558 if (atomic_dec_and_mutex_lock(&active_events, &pmc_grab_mutex)) {
59abbd1e
DM
559 if (atomic_read(&nmi_active) == 0)
560 on_each_cpu(start_nmi_watchdog, NULL, 1);
561 mutex_unlock(&pmc_grab_mutex);
562 }
563}
564
2ce4da2e
DM
565static const struct perf_event_map *sparc_map_cache_event(u64 config)
566{
567 unsigned int cache_type, cache_op, cache_result;
568 const struct perf_event_map *pmap;
569
570 if (!sparc_pmu->cache_map)
571 return ERR_PTR(-ENOENT);
572
573 cache_type = (config >> 0) & 0xff;
574 if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
575 return ERR_PTR(-EINVAL);
576
577 cache_op = (config >> 8) & 0xff;
578 if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
579 return ERR_PTR(-EINVAL);
580
581 cache_result = (config >> 16) & 0xff;
582 if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
583 return ERR_PTR(-EINVAL);
584
585 pmap = &((*sparc_pmu->cache_map)[cache_type][cache_op][cache_result]);
586
587 if (pmap->encoding == CACHE_OP_UNSUPPORTED)
588 return ERR_PTR(-ENOENT);
589
590 if (pmap->encoding == CACHE_OP_NONSENSE)
591 return ERR_PTR(-EINVAL);
592
593 return pmap;
594}
595
cdd6c482 596static void hw_perf_event_destroy(struct perf_event *event)
59abbd1e 597{
cdd6c482 598 perf_event_release_pmc();
59abbd1e
DM
599}
600
cdd6c482 601static int __hw_perf_event_init(struct perf_event *event)
59abbd1e 602{
cdd6c482
IM
603 struct perf_event_attr *attr = &event->attr;
604 struct hw_perf_event *hwc = &event->hw;
59abbd1e
DM
605 const struct perf_event_map *pmap;
606 u64 enc;
607
608 if (atomic_read(&nmi_active) < 0)
609 return -ENODEV;
610
2ce4da2e
DM
611 if (attr->type == PERF_TYPE_HARDWARE) {
612 if (attr->config >= sparc_pmu->max_events)
613 return -EINVAL;
614 pmap = sparc_pmu->event_map(attr->config);
615 } else if (attr->type == PERF_TYPE_HW_CACHE) {
616 pmap = sparc_map_cache_event(attr->config);
617 if (IS_ERR(pmap))
618 return PTR_ERR(pmap);
619 } else
59abbd1e
DM
620 return -EOPNOTSUPP;
621
cdd6c482
IM
622 perf_event_grab_pmc();
623 event->destroy = hw_perf_event_destroy;
59abbd1e
DM
624
625 /* We save the enable bits in the config_base. So to
626 * turn off sampling just write 'config', and to enable
627 * things write 'config | config_base'.
628 */
496c07e3 629 hwc->config_base = sparc_pmu->irq_bit;
59abbd1e
DM
630 if (!attr->exclude_user)
631 hwc->config_base |= PCR_UTRACE;
632 if (!attr->exclude_kernel)
633 hwc->config_base |= PCR_STRACE;
91b9286d
DM
634 if (!attr->exclude_hv)
635 hwc->config_base |= sparc_pmu->hv_bit;
59abbd1e
DM
636
637 if (!hwc->sample_period) {
638 hwc->sample_period = MAX_PERIOD;
639 hwc->last_period = hwc->sample_period;
640 atomic64_set(&hwc->period_left, hwc->sample_period);
641 }
642
59abbd1e
DM
643 enc = pmap->encoding;
644 if (pmap->pic_mask & PIC_UPPER) {
645 hwc->idx = PIC_UPPER_INDEX;
646 enc <<= sparc_pmu->upper_shift;
647 } else {
648 hwc->idx = PIC_LOWER_INDEX;
649 enc <<= sparc_pmu->lower_shift;
650 }
651
652 hwc->config |= enc;
653 return 0;
654}
655
656static const struct pmu pmu = {
657 .enable = sparc_pmu_enable,
658 .disable = sparc_pmu_disable,
659 .read = sparc_pmu_read,
660 .unthrottle = sparc_pmu_unthrottle,
661};
662
cdd6c482 663const struct pmu *hw_perf_event_init(struct perf_event *event)
59abbd1e 664{
cdd6c482 665 int err = __hw_perf_event_init(event);
59abbd1e
DM
666
667 if (err)
668 return ERR_PTR(err);
669 return &pmu;
670}
671
cdd6c482 672void perf_event_print_debug(void)
59abbd1e
DM
673{
674 unsigned long flags;
675 u64 pcr, pic;
676 int cpu;
677
678 if (!sparc_pmu)
679 return;
680
681 local_irq_save(flags);
682
683 cpu = smp_processor_id();
684
685 pcr = pcr_ops->read();
686 read_pic(pic);
687
688 pr_info("\n");
689 pr_info("CPU#%d: PCR[%016llx] PIC[%016llx]\n",
690 cpu, pcr, pic);
691
692 local_irq_restore(flags);
693}
694
cdd6c482 695static int __kprobes perf_event_nmi_handler(struct notifier_block *self,
59abbd1e
DM
696 unsigned long cmd, void *__args)
697{
698 struct die_args *args = __args;
699 struct perf_sample_data data;
cdd6c482 700 struct cpu_hw_events *cpuc;
59abbd1e
DM
701 struct pt_regs *regs;
702 int idx;
703
cdd6c482 704 if (!atomic_read(&active_events))
59abbd1e
DM
705 return NOTIFY_DONE;
706
707 switch (cmd) {
708 case DIE_NMI:
709 break;
710
711 default:
712 return NOTIFY_DONE;
713 }
714
715 regs = args->regs;
716
59abbd1e
DM
717 data.addr = 0;
718
cdd6c482
IM
719 cpuc = &__get_cpu_var(cpu_hw_events);
720 for (idx = 0; idx < MAX_HWEVENTS; idx++) {
721 struct perf_event *event = cpuc->events[idx];
722 struct hw_perf_event *hwc;
59abbd1e
DM
723 u64 val;
724
725 if (!test_bit(idx, cpuc->active_mask))
726 continue;
cdd6c482
IM
727 hwc = &event->hw;
728 val = sparc_perf_event_update(event, hwc, idx);
59abbd1e
DM
729 if (val & (1ULL << 31))
730 continue;
731
cdd6c482
IM
732 data.period = event->hw.last_period;
733 if (!sparc_perf_event_set_period(event, hwc, idx))
59abbd1e
DM
734 continue;
735
cdd6c482
IM
736 if (perf_event_overflow(event, 1, &data, regs))
737 sparc_pmu_disable_event(hwc, idx);
59abbd1e
DM
738 }
739
740 return NOTIFY_STOP;
741}
742
cdd6c482
IM
743static __read_mostly struct notifier_block perf_event_nmi_notifier = {
744 .notifier_call = perf_event_nmi_handler,
59abbd1e
DM
745};
746
747static bool __init supported_pmu(void)
748{
28e8f9be
DM
749 if (!strcmp(sparc_pmu_type, "ultra3") ||
750 !strcmp(sparc_pmu_type, "ultra3+") ||
751 !strcmp(sparc_pmu_type, "ultra3i") ||
752 !strcmp(sparc_pmu_type, "ultra4+")) {
753 sparc_pmu = &ultra3_pmu;
59abbd1e
DM
754 return true;
755 }
b73d8847
DM
756 if (!strcmp(sparc_pmu_type, "niagara2")) {
757 sparc_pmu = &niagara2_pmu;
758 return true;
759 }
59abbd1e
DM
760 return false;
761}
762
cdd6c482 763void __init init_hw_perf_events(void)
59abbd1e 764{
cdd6c482 765 pr_info("Performance events: ");
59abbd1e
DM
766
767 if (!supported_pmu()) {
768 pr_cont("No support for PMU type '%s'\n", sparc_pmu_type);
769 return;
770 }
771
772 pr_cont("Supported PMU type is '%s'\n", sparc_pmu_type);
773
cdd6c482
IM
774 /* All sparc64 PMUs currently have 2 events. But this simple
775 * driver only supports one active event at a time.
59abbd1e 776 */
cdd6c482 777 perf_max_events = 1;
59abbd1e 778
cdd6c482 779 register_die_notifier(&perf_event_nmi_notifier);
59abbd1e 780}