xref: /openbmc/linux/drivers/perf/qcom_l2_pmu.c (revision e3b9f1e8)
1 /* Copyright (c) 2015-2017 The Linux Foundation. All rights reserved.
2  *
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License version 2 and
5  * only version 2 as published by the Free Software Foundation.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  */
12 #include <linux/acpi.h>
13 #include <linux/bitops.h>
14 #include <linux/bug.h>
15 #include <linux/cpuhotplug.h>
16 #include <linux/cpumask.h>
17 #include <linux/device.h>
18 #include <linux/errno.h>
19 #include <linux/interrupt.h>
20 #include <linux/irq.h>
21 #include <linux/kernel.h>
22 #include <linux/list.h>
23 #include <linux/percpu.h>
24 #include <linux/perf_event.h>
25 #include <linux/platform_device.h>
26 #include <linux/smp.h>
27 #include <linux/spinlock.h>
28 #include <linux/sysfs.h>
29 #include <linux/types.h>
30 
31 #include <asm/barrier.h>
32 #include <asm/local64.h>
33 #include <asm/sysreg.h>
34 
35 #define MAX_L2_CTRS             9
36 
37 #define L2PMCR_NUM_EV_SHIFT     11
38 #define L2PMCR_NUM_EV_MASK      0x1F
39 
40 #define L2PMCR                  0x400
41 #define L2PMCNTENCLR            0x403
42 #define L2PMCNTENSET            0x404
43 #define L2PMINTENCLR            0x405
44 #define L2PMINTENSET            0x406
45 #define L2PMOVSCLR              0x407
46 #define L2PMOVSSET              0x408
47 #define L2PMCCNTCR              0x409
48 #define L2PMCCNTR               0x40A
49 #define L2PMCCNTSR              0x40C
50 #define L2PMRESR                0x410
51 #define IA_L2PMXEVCNTCR_BASE    0x420
52 #define IA_L2PMXEVCNTR_BASE     0x421
53 #define IA_L2PMXEVFILTER_BASE   0x423
54 #define IA_L2PMXEVTYPER_BASE    0x424
55 
56 #define IA_L2_REG_OFFSET        0x10
57 
58 #define L2PMXEVFILTER_SUFILTER_ALL      0x000E0000
59 #define L2PMXEVFILTER_ORGFILTER_IDINDEP 0x00000004
60 #define L2PMXEVFILTER_ORGFILTER_ALL     0x00000003
61 
62 #define L2EVTYPER_REG_SHIFT     3
63 
64 #define L2PMRESR_GROUP_BITS     8
65 #define L2PMRESR_GROUP_MASK     GENMASK(7, 0)
66 
67 #define L2CYCLE_CTR_BIT         31
68 #define L2CYCLE_CTR_RAW_CODE    0xFE
69 
70 #define L2PMCR_RESET_ALL        0x6
71 #define L2PMCR_COUNTERS_ENABLE  0x1
72 #define L2PMCR_COUNTERS_DISABLE 0x0
73 
74 #define L2PMRESR_EN             BIT_ULL(63)
75 
76 #define L2_EVT_MASK             0x00000FFF
77 #define L2_EVT_CODE_MASK        0x00000FF0
78 #define L2_EVT_GRP_MASK         0x0000000F
79 #define L2_EVT_CODE_SHIFT       4
80 #define L2_EVT_GRP_SHIFT        0
81 
82 #define L2_EVT_CODE(event)   (((event) & L2_EVT_CODE_MASK) >> L2_EVT_CODE_SHIFT)
83 #define L2_EVT_GROUP(event)  (((event) & L2_EVT_GRP_MASK) >> L2_EVT_GRP_SHIFT)
84 
85 #define L2_EVT_GROUP_MAX        7
86 
87 #define L2_COUNTER_RELOAD       BIT_ULL(31)
88 #define L2_CYCLE_COUNTER_RELOAD BIT_ULL(63)
89 
90 #define L2CPUSRSELR_EL1         sys_reg(3, 3, 15, 0, 6)
91 #define L2CPUSRDR_EL1           sys_reg(3, 3, 15, 0, 7)
92 
93 #define reg_idx(reg, i)         (((i) * IA_L2_REG_OFFSET) + reg##_BASE)
94 
95 /*
96  * Events
97  */
98 #define L2_EVENT_CYCLES                    0xfe
99 #define L2_EVENT_DCACHE_OPS                0x400
100 #define L2_EVENT_ICACHE_OPS                0x401
101 #define L2_EVENT_TLBI                      0x402
102 #define L2_EVENT_BARRIERS                  0x403
103 #define L2_EVENT_TOTAL_READS               0x405
104 #define L2_EVENT_TOTAL_WRITES              0x406
105 #define L2_EVENT_TOTAL_REQUESTS            0x407
106 #define L2_EVENT_LDREX                     0x420
107 #define L2_EVENT_STREX                     0x421
108 #define L2_EVENT_CLREX                     0x422
109 
110 static DEFINE_RAW_SPINLOCK(l2_access_lock);
111 
112 /**
113  * set_l2_indirect_reg: write value to an L2 register
114  * @reg: Address of L2 register.
115  * @value: Value to be written to register.
116  *
117  * Use architecturally required barriers for ordering between system register
118  * accesses
119  */
120 static void set_l2_indirect_reg(u64 reg, u64 val)
121 {
122 	unsigned long flags;
123 
124 	raw_spin_lock_irqsave(&l2_access_lock, flags);
125 	write_sysreg_s(reg, L2CPUSRSELR_EL1);
126 	isb();
127 	write_sysreg_s(val, L2CPUSRDR_EL1);
128 	isb();
129 	raw_spin_unlock_irqrestore(&l2_access_lock, flags);
130 }
131 
132 /**
133  * get_l2_indirect_reg: read an L2 register value
134  * @reg: Address of L2 register.
135  *
136  * Use architecturally required barriers for ordering between system register
137  * accesses
138  */
139 static u64 get_l2_indirect_reg(u64 reg)
140 {
141 	u64 val;
142 	unsigned long flags;
143 
144 	raw_spin_lock_irqsave(&l2_access_lock, flags);
145 	write_sysreg_s(reg, L2CPUSRSELR_EL1);
146 	isb();
147 	val = read_sysreg_s(L2CPUSRDR_EL1);
148 	raw_spin_unlock_irqrestore(&l2_access_lock, flags);
149 
150 	return val;
151 }
152 
153 struct cluster_pmu;
154 
155 /*
156  * Aggregate PMU. Implements the core pmu functions and manages
157  * the hardware PMUs.
158  */
159 struct l2cache_pmu {
160 	struct hlist_node node;
161 	u32 num_pmus;
162 	struct pmu pmu;
163 	int num_counters;
164 	cpumask_t cpumask;
165 	struct platform_device *pdev;
166 	struct cluster_pmu * __percpu *pmu_cluster;
167 	struct list_head clusters;
168 };
169 
170 /*
171  * The cache is made up of one or more clusters, each cluster has its own PMU.
172  * Each cluster is associated with one or more CPUs.
173  * This structure represents one of the hardware PMUs.
174  *
175  * Events can be envisioned as a 2-dimensional array. Each column represents
176  * a group of events. There are 8 groups. Only one entry from each
177  * group can be in use at a time.
178  *
179  * Events are specified as 0xCCG, where CC is 2 hex digits specifying
180  * the code (array row) and G specifies the group (column).
181  *
182  * In addition there is a cycle counter event specified by L2CYCLE_CTR_RAW_CODE
183  * which is outside the above scheme.
184  */
185 struct cluster_pmu {
186 	struct list_head next;
187 	struct perf_event *events[MAX_L2_CTRS];
188 	struct l2cache_pmu *l2cache_pmu;
189 	DECLARE_BITMAP(used_counters, MAX_L2_CTRS);
190 	DECLARE_BITMAP(used_groups, L2_EVT_GROUP_MAX + 1);
191 	int irq;
192 	int cluster_id;
193 	/* The CPU that is used for collecting events on this cluster */
194 	int on_cpu;
195 	/* All the CPUs associated with this cluster */
196 	cpumask_t cluster_cpus;
197 	spinlock_t pmu_lock;
198 };
199 
200 #define to_l2cache_pmu(p) (container_of(p, struct l2cache_pmu, pmu))
201 
202 static u32 l2_cycle_ctr_idx;
203 static u32 l2_counter_present_mask;
204 
205 static inline u32 idx_to_reg_bit(u32 idx)
206 {
207 	if (idx == l2_cycle_ctr_idx)
208 		return BIT(L2CYCLE_CTR_BIT);
209 
210 	return BIT(idx);
211 }
212 
213 static inline struct cluster_pmu *get_cluster_pmu(
214 	struct l2cache_pmu *l2cache_pmu, int cpu)
215 {
216 	return *per_cpu_ptr(l2cache_pmu->pmu_cluster, cpu);
217 }
218 
219 static void cluster_pmu_reset(void)
220 {
221 	/* Reset all counters */
222 	set_l2_indirect_reg(L2PMCR, L2PMCR_RESET_ALL);
223 	set_l2_indirect_reg(L2PMCNTENCLR, l2_counter_present_mask);
224 	set_l2_indirect_reg(L2PMINTENCLR, l2_counter_present_mask);
225 	set_l2_indirect_reg(L2PMOVSCLR, l2_counter_present_mask);
226 }
227 
228 static inline void cluster_pmu_enable(void)
229 {
230 	set_l2_indirect_reg(L2PMCR, L2PMCR_COUNTERS_ENABLE);
231 }
232 
233 static inline void cluster_pmu_disable(void)
234 {
235 	set_l2_indirect_reg(L2PMCR, L2PMCR_COUNTERS_DISABLE);
236 }
237 
238 static inline void cluster_pmu_counter_set_value(u32 idx, u64 value)
239 {
240 	if (idx == l2_cycle_ctr_idx)
241 		set_l2_indirect_reg(L2PMCCNTR, value);
242 	else
243 		set_l2_indirect_reg(reg_idx(IA_L2PMXEVCNTR, idx), value);
244 }
245 
246 static inline u64 cluster_pmu_counter_get_value(u32 idx)
247 {
248 	u64 value;
249 
250 	if (idx == l2_cycle_ctr_idx)
251 		value = get_l2_indirect_reg(L2PMCCNTR);
252 	else
253 		value = get_l2_indirect_reg(reg_idx(IA_L2PMXEVCNTR, idx));
254 
255 	return value;
256 }
257 
258 static inline void cluster_pmu_counter_enable(u32 idx)
259 {
260 	set_l2_indirect_reg(L2PMCNTENSET, idx_to_reg_bit(idx));
261 }
262 
263 static inline void cluster_pmu_counter_disable(u32 idx)
264 {
265 	set_l2_indirect_reg(L2PMCNTENCLR, idx_to_reg_bit(idx));
266 }
267 
268 static inline void cluster_pmu_counter_enable_interrupt(u32 idx)
269 {
270 	set_l2_indirect_reg(L2PMINTENSET, idx_to_reg_bit(idx));
271 }
272 
273 static inline void cluster_pmu_counter_disable_interrupt(u32 idx)
274 {
275 	set_l2_indirect_reg(L2PMINTENCLR, idx_to_reg_bit(idx));
276 }
277 
278 static inline void cluster_pmu_set_evccntcr(u32 val)
279 {
280 	set_l2_indirect_reg(L2PMCCNTCR, val);
281 }
282 
283 static inline void cluster_pmu_set_evcntcr(u32 ctr, u32 val)
284 {
285 	set_l2_indirect_reg(reg_idx(IA_L2PMXEVCNTCR, ctr), val);
286 }
287 
288 static inline void cluster_pmu_set_evtyper(u32 ctr, u32 val)
289 {
290 	set_l2_indirect_reg(reg_idx(IA_L2PMXEVTYPER, ctr), val);
291 }
292 
293 static void cluster_pmu_set_resr(struct cluster_pmu *cluster,
294 			       u32 event_group, u32 event_cc)
295 {
296 	u64 field;
297 	u64 resr_val;
298 	u32 shift;
299 	unsigned long flags;
300 
301 	shift = L2PMRESR_GROUP_BITS * event_group;
302 	field = ((u64)(event_cc & L2PMRESR_GROUP_MASK) << shift);
303 
304 	spin_lock_irqsave(&cluster->pmu_lock, flags);
305 
306 	resr_val = get_l2_indirect_reg(L2PMRESR);
307 	resr_val &= ~(L2PMRESR_GROUP_MASK << shift);
308 	resr_val |= field;
309 	resr_val |= L2PMRESR_EN;
310 	set_l2_indirect_reg(L2PMRESR, resr_val);
311 
312 	spin_unlock_irqrestore(&cluster->pmu_lock, flags);
313 }
314 
315 /*
316  * Hardware allows filtering of events based on the originating
317  * CPU. Turn this off by setting filter bits to allow events from
318  * all CPUS, subunits and ID independent events in this cluster.
319  */
320 static inline void cluster_pmu_set_evfilter_sys_mode(u32 ctr)
321 {
322 	u32 val =  L2PMXEVFILTER_SUFILTER_ALL |
323 		   L2PMXEVFILTER_ORGFILTER_IDINDEP |
324 		   L2PMXEVFILTER_ORGFILTER_ALL;
325 
326 	set_l2_indirect_reg(reg_idx(IA_L2PMXEVFILTER, ctr), val);
327 }
328 
329 static inline u32 cluster_pmu_getreset_ovsr(void)
330 {
331 	u32 result = get_l2_indirect_reg(L2PMOVSSET);
332 
333 	set_l2_indirect_reg(L2PMOVSCLR, result);
334 	return result;
335 }
336 
337 static inline bool cluster_pmu_has_overflowed(u32 ovsr)
338 {
339 	return !!(ovsr & l2_counter_present_mask);
340 }
341 
342 static inline bool cluster_pmu_counter_has_overflowed(u32 ovsr, u32 idx)
343 {
344 	return !!(ovsr & idx_to_reg_bit(idx));
345 }
346 
347 static void l2_cache_event_update(struct perf_event *event)
348 {
349 	struct hw_perf_event *hwc = &event->hw;
350 	u64 delta, prev, now;
351 	u32 idx = hwc->idx;
352 
353 	do {
354 		prev = local64_read(&hwc->prev_count);
355 		now = cluster_pmu_counter_get_value(idx);
356 	} while (local64_cmpxchg(&hwc->prev_count, prev, now) != prev);
357 
358 	/*
359 	 * The cycle counter is 64-bit, but all other counters are
360 	 * 32-bit, and we must handle 32-bit overflow explicitly.
361 	 */
362 	delta = now - prev;
363 	if (idx != l2_cycle_ctr_idx)
364 		delta &= 0xffffffff;
365 
366 	local64_add(delta, &event->count);
367 }
368 
369 static void l2_cache_cluster_set_period(struct cluster_pmu *cluster,
370 				       struct hw_perf_event *hwc)
371 {
372 	u32 idx = hwc->idx;
373 	u64 new;
374 
375 	/*
376 	 * We limit the max period to half the max counter value so
377 	 * that even in the case of extreme interrupt latency the
378 	 * counter will (hopefully) not wrap past its initial value.
379 	 */
380 	if (idx == l2_cycle_ctr_idx)
381 		new = L2_CYCLE_COUNTER_RELOAD;
382 	else
383 		new = L2_COUNTER_RELOAD;
384 
385 	local64_set(&hwc->prev_count, new);
386 	cluster_pmu_counter_set_value(idx, new);
387 }
388 
389 static int l2_cache_get_event_idx(struct cluster_pmu *cluster,
390 				   struct perf_event *event)
391 {
392 	struct hw_perf_event *hwc = &event->hw;
393 	int idx;
394 	int num_ctrs = cluster->l2cache_pmu->num_counters - 1;
395 	unsigned int group;
396 
397 	if (hwc->config_base == L2CYCLE_CTR_RAW_CODE) {
398 		if (test_and_set_bit(l2_cycle_ctr_idx, cluster->used_counters))
399 			return -EAGAIN;
400 
401 		return l2_cycle_ctr_idx;
402 	}
403 
404 	idx = find_first_zero_bit(cluster->used_counters, num_ctrs);
405 	if (idx == num_ctrs)
406 		/* The counters are all in use. */
407 		return -EAGAIN;
408 
409 	/*
410 	 * Check for column exclusion: event column already in use by another
411 	 * event. This is for events which are not in the same group.
412 	 * Conflicting events in the same group are detected in event_init.
413 	 */
414 	group = L2_EVT_GROUP(hwc->config_base);
415 	if (test_bit(group, cluster->used_groups))
416 		return -EAGAIN;
417 
418 	set_bit(idx, cluster->used_counters);
419 	set_bit(group, cluster->used_groups);
420 
421 	return idx;
422 }
423 
424 static void l2_cache_clear_event_idx(struct cluster_pmu *cluster,
425 				      struct perf_event *event)
426 {
427 	struct hw_perf_event *hwc = &event->hw;
428 	int idx = hwc->idx;
429 
430 	clear_bit(idx, cluster->used_counters);
431 	if (hwc->config_base != L2CYCLE_CTR_RAW_CODE)
432 		clear_bit(L2_EVT_GROUP(hwc->config_base), cluster->used_groups);
433 }
434 
435 static irqreturn_t l2_cache_handle_irq(int irq_num, void *data)
436 {
437 	struct cluster_pmu *cluster = data;
438 	int num_counters = cluster->l2cache_pmu->num_counters;
439 	u32 ovsr;
440 	int idx;
441 
442 	ovsr = cluster_pmu_getreset_ovsr();
443 	if (!cluster_pmu_has_overflowed(ovsr))
444 		return IRQ_NONE;
445 
446 	for_each_set_bit(idx, cluster->used_counters, num_counters) {
447 		struct perf_event *event = cluster->events[idx];
448 		struct hw_perf_event *hwc;
449 
450 		if (WARN_ON_ONCE(!event))
451 			continue;
452 
453 		if (!cluster_pmu_counter_has_overflowed(ovsr, idx))
454 			continue;
455 
456 		l2_cache_event_update(event);
457 		hwc = &event->hw;
458 
459 		l2_cache_cluster_set_period(cluster, hwc);
460 	}
461 
462 	return IRQ_HANDLED;
463 }
464 
465 /*
466  * Implementation of abstract pmu functionality required by
467  * the core perf events code.
468  */
469 
470 static void l2_cache_pmu_enable(struct pmu *pmu)
471 {
472 	/*
473 	 * Although there is only one PMU (per socket) controlling multiple
474 	 * physical PMUs (per cluster), because we do not support per-task mode
475 	 * each event is associated with a CPU. Each event has pmu_enable
476 	 * called on its CPU, so here it is only necessary to enable the
477 	 * counters for the current CPU.
478 	 */
479 
480 	cluster_pmu_enable();
481 }
482 
483 static void l2_cache_pmu_disable(struct pmu *pmu)
484 {
485 	cluster_pmu_disable();
486 }
487 
488 static int l2_cache_event_init(struct perf_event *event)
489 {
490 	struct hw_perf_event *hwc = &event->hw;
491 	struct cluster_pmu *cluster;
492 	struct perf_event *sibling;
493 	struct l2cache_pmu *l2cache_pmu;
494 
495 	if (event->attr.type != event->pmu->type)
496 		return -ENOENT;
497 
498 	l2cache_pmu = to_l2cache_pmu(event->pmu);
499 
500 	if (hwc->sample_period) {
501 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
502 				    "Sampling not supported\n");
503 		return -EOPNOTSUPP;
504 	}
505 
506 	if (event->cpu < 0) {
507 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
508 				    "Per-task mode not supported\n");
509 		return -EOPNOTSUPP;
510 	}
511 
512 	/* We cannot filter accurately so we just don't allow it. */
513 	if (event->attr.exclude_user || event->attr.exclude_kernel ||
514 	    event->attr.exclude_hv || event->attr.exclude_idle) {
515 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
516 				    "Can't exclude execution levels\n");
517 		return -EOPNOTSUPP;
518 	}
519 
520 	if (((L2_EVT_GROUP(event->attr.config) > L2_EVT_GROUP_MAX) ||
521 	     ((event->attr.config & ~L2_EVT_MASK) != 0)) &&
522 	    (event->attr.config != L2CYCLE_CTR_RAW_CODE)) {
523 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
524 				    "Invalid config %llx\n",
525 				    event->attr.config);
526 		return -EINVAL;
527 	}
528 
529 	/* Don't allow groups with mixed PMUs, except for s/w events */
530 	if (event->group_leader->pmu != event->pmu &&
531 	    !is_software_event(event->group_leader)) {
532 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
533 			 "Can't create mixed PMU group\n");
534 		return -EINVAL;
535 	}
536 
537 	for_each_sibling_event(sibling, event->group_leader) {
538 		if (sibling->pmu != event->pmu &&
539 		    !is_software_event(sibling)) {
540 			dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
541 				 "Can't create mixed PMU group\n");
542 			return -EINVAL;
543 		}
544 
545 	cluster = get_cluster_pmu(l2cache_pmu, event->cpu);
546 	if (!cluster) {
547 		/* CPU has not been initialised */
548 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
549 			"CPU%d not associated with L2 cluster\n", event->cpu);
550 		return -EINVAL;
551 	}
552 
553 	/* Ensure all events in a group are on the same cpu */
554 	if ((event->group_leader != event) &&
555 	    (cluster->on_cpu != event->group_leader->cpu)) {
556 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
557 			 "Can't create group on CPUs %d and %d",
558 			 event->cpu, event->group_leader->cpu);
559 		return -EINVAL;
560 	}
561 
562 	if ((event != event->group_leader) &&
563 	    !is_software_event(event->group_leader) &&
564 	    (L2_EVT_GROUP(event->group_leader->attr.config) ==
565 	     L2_EVT_GROUP(event->attr.config))) {
566 		dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
567 			 "Column exclusion: conflicting events %llx %llx\n",
568 		       event->group_leader->attr.config,
569 		       event->attr.config);
570 		return -EINVAL;
571 	}
572 
573 	for_each_sibling_event(sibling, event->group_leader) {
574 		if ((sibling != event) &&
575 		    !is_software_event(sibling) &&
576 		    (L2_EVT_GROUP(sibling->attr.config) ==
577 		     L2_EVT_GROUP(event->attr.config))) {
578 			dev_dbg_ratelimited(&l2cache_pmu->pdev->dev,
579 			     "Column exclusion: conflicting events %llx %llx\n",
580 					    sibling->attr.config,
581 					    event->attr.config);
582 			return -EINVAL;
583 		}
584 	}
585 
586 	hwc->idx = -1;
587 	hwc->config_base = event->attr.config;
588 
589 	/*
590 	 * Ensure all events are on the same cpu so all events are in the
591 	 * same cpu context, to avoid races on pmu_enable etc.
592 	 */
593 	event->cpu = cluster->on_cpu;
594 
595 	return 0;
596 }
597 
598 static void l2_cache_event_start(struct perf_event *event, int flags)
599 {
600 	struct cluster_pmu *cluster;
601 	struct hw_perf_event *hwc = &event->hw;
602 	int idx = hwc->idx;
603 	u32 config;
604 	u32 event_cc, event_group;
605 
606 	hwc->state = 0;
607 
608 	cluster = get_cluster_pmu(to_l2cache_pmu(event->pmu), event->cpu);
609 
610 	l2_cache_cluster_set_period(cluster, hwc);
611 
612 	if (hwc->config_base == L2CYCLE_CTR_RAW_CODE) {
613 		cluster_pmu_set_evccntcr(0);
614 	} else {
615 		config = hwc->config_base;
616 		event_cc    = L2_EVT_CODE(config);
617 		event_group = L2_EVT_GROUP(config);
618 
619 		cluster_pmu_set_evcntcr(idx, 0);
620 		cluster_pmu_set_evtyper(idx, event_group);
621 		cluster_pmu_set_resr(cluster, event_group, event_cc);
622 		cluster_pmu_set_evfilter_sys_mode(idx);
623 	}
624 
625 	cluster_pmu_counter_enable_interrupt(idx);
626 	cluster_pmu_counter_enable(idx);
627 }
628 
629 static void l2_cache_event_stop(struct perf_event *event, int flags)
630 {
631 	struct hw_perf_event *hwc = &event->hw;
632 	int idx = hwc->idx;
633 
634 	if (hwc->state & PERF_HES_STOPPED)
635 		return;
636 
637 	cluster_pmu_counter_disable_interrupt(idx);
638 	cluster_pmu_counter_disable(idx);
639 
640 	if (flags & PERF_EF_UPDATE)
641 		l2_cache_event_update(event);
642 	hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
643 }
644 
645 static int l2_cache_event_add(struct perf_event *event, int flags)
646 {
647 	struct hw_perf_event *hwc = &event->hw;
648 	int idx;
649 	int err = 0;
650 	struct cluster_pmu *cluster;
651 
652 	cluster = get_cluster_pmu(to_l2cache_pmu(event->pmu), event->cpu);
653 
654 	idx = l2_cache_get_event_idx(cluster, event);
655 	if (idx < 0)
656 		return idx;
657 
658 	hwc->idx = idx;
659 	hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
660 	cluster->events[idx] = event;
661 	local64_set(&hwc->prev_count, 0);
662 
663 	if (flags & PERF_EF_START)
664 		l2_cache_event_start(event, flags);
665 
666 	/* Propagate changes to the userspace mapping. */
667 	perf_event_update_userpage(event);
668 
669 	return err;
670 }
671 
672 static void l2_cache_event_del(struct perf_event *event, int flags)
673 {
674 	struct hw_perf_event *hwc = &event->hw;
675 	struct cluster_pmu *cluster;
676 	int idx = hwc->idx;
677 
678 	cluster = get_cluster_pmu(to_l2cache_pmu(event->pmu), event->cpu);
679 
680 	l2_cache_event_stop(event, flags | PERF_EF_UPDATE);
681 	cluster->events[idx] = NULL;
682 	l2_cache_clear_event_idx(cluster, event);
683 
684 	perf_event_update_userpage(event);
685 }
686 
687 static void l2_cache_event_read(struct perf_event *event)
688 {
689 	l2_cache_event_update(event);
690 }
691 
692 static ssize_t l2_cache_pmu_cpumask_show(struct device *dev,
693 					 struct device_attribute *attr,
694 					 char *buf)
695 {
696 	struct l2cache_pmu *l2cache_pmu = to_l2cache_pmu(dev_get_drvdata(dev));
697 
698 	return cpumap_print_to_pagebuf(true, buf, &l2cache_pmu->cpumask);
699 }
700 
701 static struct device_attribute l2_cache_pmu_cpumask_attr =
702 		__ATTR(cpumask, S_IRUGO, l2_cache_pmu_cpumask_show, NULL);
703 
704 static struct attribute *l2_cache_pmu_cpumask_attrs[] = {
705 	&l2_cache_pmu_cpumask_attr.attr,
706 	NULL,
707 };
708 
709 static struct attribute_group l2_cache_pmu_cpumask_group = {
710 	.attrs = l2_cache_pmu_cpumask_attrs,
711 };
712 
713 /* CCG format for perf RAW codes. */
714 PMU_FORMAT_ATTR(l2_code,   "config:4-11");
715 PMU_FORMAT_ATTR(l2_group,  "config:0-3");
716 PMU_FORMAT_ATTR(event,     "config:0-11");
717 
718 static struct attribute *l2_cache_pmu_formats[] = {
719 	&format_attr_l2_code.attr,
720 	&format_attr_l2_group.attr,
721 	&format_attr_event.attr,
722 	NULL,
723 };
724 
725 static struct attribute_group l2_cache_pmu_format_group = {
726 	.name = "format",
727 	.attrs = l2_cache_pmu_formats,
728 };
729 
730 static ssize_t l2cache_pmu_event_show(struct device *dev,
731 				      struct device_attribute *attr, char *page)
732 {
733 	struct perf_pmu_events_attr *pmu_attr;
734 
735 	pmu_attr = container_of(attr, struct perf_pmu_events_attr, attr);
736 	return sprintf(page, "event=0x%02llx\n", pmu_attr->id);
737 }
738 
739 #define L2CACHE_EVENT_ATTR(_name, _id)					     \
740 	(&((struct perf_pmu_events_attr[]) {				     \
741 		{ .attr = __ATTR(_name, 0444, l2cache_pmu_event_show, NULL), \
742 		  .id = _id, }						     \
743 	})[0].attr.attr)
744 
745 static struct attribute *l2_cache_pmu_events[] = {
746 	L2CACHE_EVENT_ATTR(cycles, L2_EVENT_CYCLES),
747 	L2CACHE_EVENT_ATTR(dcache-ops, L2_EVENT_DCACHE_OPS),
748 	L2CACHE_EVENT_ATTR(icache-ops, L2_EVENT_ICACHE_OPS),
749 	L2CACHE_EVENT_ATTR(tlbi, L2_EVENT_TLBI),
750 	L2CACHE_EVENT_ATTR(barriers, L2_EVENT_BARRIERS),
751 	L2CACHE_EVENT_ATTR(total-reads, L2_EVENT_TOTAL_READS),
752 	L2CACHE_EVENT_ATTR(total-writes, L2_EVENT_TOTAL_WRITES),
753 	L2CACHE_EVENT_ATTR(total-requests, L2_EVENT_TOTAL_REQUESTS),
754 	L2CACHE_EVENT_ATTR(ldrex, L2_EVENT_LDREX),
755 	L2CACHE_EVENT_ATTR(strex, L2_EVENT_STREX),
756 	L2CACHE_EVENT_ATTR(clrex, L2_EVENT_CLREX),
757 	NULL
758 };
759 
760 static struct attribute_group l2_cache_pmu_events_group = {
761 	.name = "events",
762 	.attrs = l2_cache_pmu_events,
763 };
764 
765 static const struct attribute_group *l2_cache_pmu_attr_grps[] = {
766 	&l2_cache_pmu_format_group,
767 	&l2_cache_pmu_cpumask_group,
768 	&l2_cache_pmu_events_group,
769 	NULL,
770 };
771 
772 /*
773  * Generic device handlers
774  */
775 
776 static const struct acpi_device_id l2_cache_pmu_acpi_match[] = {
777 	{ "QCOM8130", },
778 	{ }
779 };
780 
781 static int get_num_counters(void)
782 {
783 	int val;
784 
785 	val = get_l2_indirect_reg(L2PMCR);
786 
787 	/*
788 	 * Read number of counters from L2PMCR and add 1
789 	 * for the cycle counter.
790 	 */
791 	return ((val >> L2PMCR_NUM_EV_SHIFT) & L2PMCR_NUM_EV_MASK) + 1;
792 }
793 
794 static struct cluster_pmu *l2_cache_associate_cpu_with_cluster(
795 	struct l2cache_pmu *l2cache_pmu, int cpu)
796 {
797 	u64 mpidr;
798 	int cpu_cluster_id;
799 	struct cluster_pmu *cluster = NULL;
800 
801 	/*
802 	 * This assumes that the cluster_id is in MPIDR[aff1] for
803 	 * single-threaded cores, and MPIDR[aff2] for multi-threaded
804 	 * cores. This logic will have to be updated if this changes.
805 	 */
806 	mpidr = read_cpuid_mpidr();
807 	if (mpidr & MPIDR_MT_BITMASK)
808 		cpu_cluster_id = MPIDR_AFFINITY_LEVEL(mpidr, 2);
809 	else
810 		cpu_cluster_id = MPIDR_AFFINITY_LEVEL(mpidr, 1);
811 
812 	list_for_each_entry(cluster, &l2cache_pmu->clusters, next) {
813 		if (cluster->cluster_id != cpu_cluster_id)
814 			continue;
815 
816 		dev_info(&l2cache_pmu->pdev->dev,
817 			 "CPU%d associated with cluster %d\n", cpu,
818 			 cluster->cluster_id);
819 		cpumask_set_cpu(cpu, &cluster->cluster_cpus);
820 		*per_cpu_ptr(l2cache_pmu->pmu_cluster, cpu) = cluster;
821 		break;
822 	}
823 
824 	return cluster;
825 }
826 
827 static int l2cache_pmu_online_cpu(unsigned int cpu, struct hlist_node *node)
828 {
829 	struct cluster_pmu *cluster;
830 	struct l2cache_pmu *l2cache_pmu;
831 
832 	l2cache_pmu = hlist_entry_safe(node, struct l2cache_pmu, node);
833 	cluster = get_cluster_pmu(l2cache_pmu, cpu);
834 	if (!cluster) {
835 		/* First time this CPU has come online */
836 		cluster = l2_cache_associate_cpu_with_cluster(l2cache_pmu, cpu);
837 		if (!cluster) {
838 			/* Only if broken firmware doesn't list every cluster */
839 			WARN_ONCE(1, "No L2 cache cluster for CPU%d\n", cpu);
840 			return 0;
841 		}
842 	}
843 
844 	/* If another CPU is managing this cluster, we're done */
845 	if (cluster->on_cpu != -1)
846 		return 0;
847 
848 	/*
849 	 * All CPUs on this cluster were down, use this one.
850 	 * Reset to put it into sane state.
851 	 */
852 	cluster->on_cpu = cpu;
853 	cpumask_set_cpu(cpu, &l2cache_pmu->cpumask);
854 	cluster_pmu_reset();
855 
856 	WARN_ON(irq_set_affinity(cluster->irq, cpumask_of(cpu)));
857 	enable_irq(cluster->irq);
858 
859 	return 0;
860 }
861 
862 static int l2cache_pmu_offline_cpu(unsigned int cpu, struct hlist_node *node)
863 {
864 	struct cluster_pmu *cluster;
865 	struct l2cache_pmu *l2cache_pmu;
866 	cpumask_t cluster_online_cpus;
867 	unsigned int target;
868 
869 	l2cache_pmu = hlist_entry_safe(node, struct l2cache_pmu, node);
870 	cluster = get_cluster_pmu(l2cache_pmu, cpu);
871 	if (!cluster)
872 		return 0;
873 
874 	/* If this CPU is not managing the cluster, we're done */
875 	if (cluster->on_cpu != cpu)
876 		return 0;
877 
878 	/* Give up ownership of cluster */
879 	cpumask_clear_cpu(cpu, &l2cache_pmu->cpumask);
880 	cluster->on_cpu = -1;
881 
882 	/* Any other CPU for this cluster which is still online */
883 	cpumask_and(&cluster_online_cpus, &cluster->cluster_cpus,
884 		    cpu_online_mask);
885 	target = cpumask_any_but(&cluster_online_cpus, cpu);
886 	if (target >= nr_cpu_ids) {
887 		disable_irq(cluster->irq);
888 		return 0;
889 	}
890 
891 	perf_pmu_migrate_context(&l2cache_pmu->pmu, cpu, target);
892 	cluster->on_cpu = target;
893 	cpumask_set_cpu(target, &l2cache_pmu->cpumask);
894 	WARN_ON(irq_set_affinity(cluster->irq, cpumask_of(target)));
895 
896 	return 0;
897 }
898 
899 static int l2_cache_pmu_probe_cluster(struct device *dev, void *data)
900 {
901 	struct platform_device *pdev = to_platform_device(dev->parent);
902 	struct platform_device *sdev = to_platform_device(dev);
903 	struct l2cache_pmu *l2cache_pmu = data;
904 	struct cluster_pmu *cluster;
905 	struct acpi_device *device;
906 	unsigned long fw_cluster_id;
907 	int err;
908 	int irq;
909 
910 	if (acpi_bus_get_device(ACPI_HANDLE(dev), &device))
911 		return -ENODEV;
912 
913 	if (kstrtoul(device->pnp.unique_id, 10, &fw_cluster_id) < 0) {
914 		dev_err(&pdev->dev, "unable to read ACPI uid\n");
915 		return -ENODEV;
916 	}
917 
918 	cluster = devm_kzalloc(&pdev->dev, sizeof(*cluster), GFP_KERNEL);
919 	if (!cluster)
920 		return -ENOMEM;
921 
922 	INIT_LIST_HEAD(&cluster->next);
923 	list_add(&cluster->next, &l2cache_pmu->clusters);
924 	cluster->cluster_id = fw_cluster_id;
925 
926 	irq = platform_get_irq(sdev, 0);
927 	if (irq < 0) {
928 		dev_err(&pdev->dev,
929 			"Failed to get valid irq for cluster %ld\n",
930 			fw_cluster_id);
931 		return irq;
932 	}
933 	irq_set_status_flags(irq, IRQ_NOAUTOEN);
934 	cluster->irq = irq;
935 
936 	cluster->l2cache_pmu = l2cache_pmu;
937 	cluster->on_cpu = -1;
938 
939 	err = devm_request_irq(&pdev->dev, irq, l2_cache_handle_irq,
940 			       IRQF_NOBALANCING | IRQF_NO_THREAD,
941 			       "l2-cache-pmu", cluster);
942 	if (err) {
943 		dev_err(&pdev->dev,
944 			"Unable to request IRQ%d for L2 PMU counters\n", irq);
945 		return err;
946 	}
947 
948 	dev_info(&pdev->dev,
949 		"Registered L2 cache PMU cluster %ld\n", fw_cluster_id);
950 
951 	spin_lock_init(&cluster->pmu_lock);
952 
953 	l2cache_pmu->num_pmus++;
954 
955 	return 0;
956 }
957 
958 static int l2_cache_pmu_probe(struct platform_device *pdev)
959 {
960 	int err;
961 	struct l2cache_pmu *l2cache_pmu;
962 
963 	l2cache_pmu =
964 		devm_kzalloc(&pdev->dev, sizeof(*l2cache_pmu), GFP_KERNEL);
965 	if (!l2cache_pmu)
966 		return -ENOMEM;
967 
968 	INIT_LIST_HEAD(&l2cache_pmu->clusters);
969 
970 	platform_set_drvdata(pdev, l2cache_pmu);
971 	l2cache_pmu->pmu = (struct pmu) {
972 		/* suffix is instance id for future use with multiple sockets */
973 		.name		= "l2cache_0",
974 		.task_ctx_nr    = perf_invalid_context,
975 		.pmu_enable	= l2_cache_pmu_enable,
976 		.pmu_disable	= l2_cache_pmu_disable,
977 		.event_init	= l2_cache_event_init,
978 		.add		= l2_cache_event_add,
979 		.del		= l2_cache_event_del,
980 		.start		= l2_cache_event_start,
981 		.stop		= l2_cache_event_stop,
982 		.read		= l2_cache_event_read,
983 		.attr_groups	= l2_cache_pmu_attr_grps,
984 	};
985 
986 	l2cache_pmu->num_counters = get_num_counters();
987 	l2cache_pmu->pdev = pdev;
988 	l2cache_pmu->pmu_cluster = devm_alloc_percpu(&pdev->dev,
989 						     struct cluster_pmu *);
990 	if (!l2cache_pmu->pmu_cluster)
991 		return -ENOMEM;
992 
993 	l2_cycle_ctr_idx = l2cache_pmu->num_counters - 1;
994 	l2_counter_present_mask = GENMASK(l2cache_pmu->num_counters - 2, 0) |
995 		BIT(L2CYCLE_CTR_BIT);
996 
997 	cpumask_clear(&l2cache_pmu->cpumask);
998 
999 	/* Read cluster info and initialize each cluster */
1000 	err = device_for_each_child(&pdev->dev, l2cache_pmu,
1001 				    l2_cache_pmu_probe_cluster);
1002 	if (err)
1003 		return err;
1004 
1005 	if (l2cache_pmu->num_pmus == 0) {
1006 		dev_err(&pdev->dev, "No hardware L2 cache PMUs found\n");
1007 		return -ENODEV;
1008 	}
1009 
1010 	err = cpuhp_state_add_instance(CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE,
1011 				       &l2cache_pmu->node);
1012 	if (err) {
1013 		dev_err(&pdev->dev, "Error %d registering hotplug", err);
1014 		return err;
1015 	}
1016 
1017 	err = perf_pmu_register(&l2cache_pmu->pmu, l2cache_pmu->pmu.name, -1);
1018 	if (err) {
1019 		dev_err(&pdev->dev, "Error %d registering L2 cache PMU\n", err);
1020 		goto out_unregister;
1021 	}
1022 
1023 	dev_info(&pdev->dev, "Registered L2 cache PMU using %d HW PMUs\n",
1024 		 l2cache_pmu->num_pmus);
1025 
1026 	return err;
1027 
1028 out_unregister:
1029 	cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE,
1030 				    &l2cache_pmu->node);
1031 	return err;
1032 }
1033 
1034 static int l2_cache_pmu_remove(struct platform_device *pdev)
1035 {
1036 	struct l2cache_pmu *l2cache_pmu =
1037 		to_l2cache_pmu(platform_get_drvdata(pdev));
1038 
1039 	perf_pmu_unregister(&l2cache_pmu->pmu);
1040 	cpuhp_state_remove_instance(CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE,
1041 				    &l2cache_pmu->node);
1042 	return 0;
1043 }
1044 
1045 static struct platform_driver l2_cache_pmu_driver = {
1046 	.driver = {
1047 		.name = "qcom-l2cache-pmu",
1048 		.acpi_match_table = ACPI_PTR(l2_cache_pmu_acpi_match),
1049 	},
1050 	.probe = l2_cache_pmu_probe,
1051 	.remove = l2_cache_pmu_remove,
1052 };
1053 
1054 static int __init register_l2_cache_pmu_driver(void)
1055 {
1056 	int err;
1057 
1058 	err = cpuhp_setup_state_multi(CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE,
1059 				      "AP_PERF_ARM_QCOM_L2_ONLINE",
1060 				      l2cache_pmu_online_cpu,
1061 				      l2cache_pmu_offline_cpu);
1062 	if (err)
1063 		return err;
1064 
1065 	return platform_driver_register(&l2_cache_pmu_driver);
1066 }
1067 device_initcall(register_l2_cache_pmu_driver);
1068