2 * Driver for the L3 cache PMUs in Qualcomm Technologies chips.
4 * The driver supports a distributed cache architecture where the overall
5 * cache for a socket is comprised of multiple slices each with its own PMU.
6 * Access to each individual PMU is provided even though all CPUs share all
7 * the slices. User space needs to aggregate to individual counts to provide
10 * See Documentation/perf/qcom_l3_pmu.txt for more details.
12 * Copyright (c) 2015-2017, The Linux Foundation. All rights reserved.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 and
16 * only version 2 as published by the Free Software Foundation.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
24 #include <linux/acpi.h>
25 #include <linux/bitops.h>
26 #include <linux/interrupt.h>
28 #include <linux/list.h>
29 #include <linux/module.h>
30 #include <linux/perf_event.h>
31 #include <linux/platform_device.h>
37 /* Number of counters on each PMU */
38 #define L3_NUM_COUNTERS 8
39 /* Mask for the event type field within perf_event_attr.config and EVTYPE reg */
40 #define L3_EVTYPE_MASK 0xFF
42 * Bit position of the 'long counter' flag within perf_event_attr.config.
43 * Reserve some space between the event type and this flag to allow expansion
44 * in the event type field.
46 #define L3_EVENT_LC_BIT 32
52 /* Perfmon registers */
53 #define L3_HML3_PM_CR 0x000
54 #define L3_HML3_PM_EVCNTR(__cntr) (0x420 + ((__cntr) & 0x7) * 8)
55 #define L3_HML3_PM_CNTCTL(__cntr) (0x120 + ((__cntr) & 0x7) * 8)
56 #define L3_HML3_PM_EVTYPE(__cntr) (0x220 + ((__cntr) & 0x7) * 8)
57 #define L3_HML3_PM_FILTRA 0x300
58 #define L3_HML3_PM_FILTRB 0x308
59 #define L3_HML3_PM_FILTRC 0x310
60 #define L3_HML3_PM_FILTRAM 0x304
61 #define L3_HML3_PM_FILTRBM 0x30C
62 #define L3_HML3_PM_FILTRCM 0x314
64 /* Basic counter registers */
65 #define L3_M_BC_CR 0x500
66 #define L3_M_BC_SATROLL_CR 0x504
67 #define L3_M_BC_CNTENSET 0x508
68 #define L3_M_BC_CNTENCLR 0x50C
69 #define L3_M_BC_INTENSET 0x510
70 #define L3_M_BC_INTENCLR 0x514
71 #define L3_M_BC_GANG 0x718
72 #define L3_M_BC_OVSR 0x740
73 #define L3_M_BC_IRQCTL 0x96C
76 * Bit field definitions
80 #define PM_CR_RESET (0)
82 /* L3_HML3_PM_XCNTCTL/L3_HML3_PM_CNTCTLx */
83 #define PMCNT_RESET (0)
85 /* L3_HML3_PM_EVTYPEx */
86 #define EVSEL(__val) ((__val) & L3_EVTYPE_MASK)
88 /* Reset value for all the filter registers */
89 #define PM_FLTR_RESET (0)
92 #define BC_RESET (1UL << 1)
93 #define BC_ENABLE (1UL << 0)
95 /* L3_M_BC_SATROLL_CR */
96 #define BC_SATROLL_CR_RESET (0)
98 /* L3_M_BC_CNTENSET */
99 #define PMCNTENSET(__cntr) (1UL << ((__cntr) & 0x7))
101 /* L3_M_BC_CNTENCLR */
102 #define PMCNTENCLR(__cntr) (1UL << ((__cntr) & 0x7))
103 #define BC_CNTENCLR_RESET (0xFF)
105 /* L3_M_BC_INTENSET */
106 #define PMINTENSET(__cntr) (1UL << ((__cntr) & 0x7))
108 /* L3_M_BC_INTENCLR */
109 #define PMINTENCLR(__cntr) (1UL << ((__cntr) & 0x7))
110 #define BC_INTENCLR_RESET (0xFF)
113 #define GANG_EN(__cntr) (1UL << ((__cntr) & 0x7))
114 #define BC_GANG_RESET (0)
117 #define PMOVSRCLR(__cntr) (1UL << ((__cntr) & 0x7))
118 #define PMOVSRCLR_RESET (0xFF)
121 #define PMIRQONMSBEN(__cntr) (1UL << ((__cntr) & 0x7))
122 #define BC_IRQCTL_RESET (0x0)
128 #define L3_EVENT_CYCLES 0x01
129 #define L3_EVENT_READ_HIT 0x20
130 #define L3_EVENT_READ_MISS 0x21
131 #define L3_EVENT_READ_HIT_D 0x22
132 #define L3_EVENT_READ_MISS_D 0x23
133 #define L3_EVENT_WRITE_HIT 0x24
134 #define L3_EVENT_WRITE_MISS 0x25
137 * Decoding of settings from perf_event_attr
139 * The config format for perf events is:
140 * - config: bits 0-7: event type
141 * bit 32: HW counter size requested, 0: 32 bits, 1: 64 bits
144 static inline u32
get_event_type(struct perf_event
*event
)
146 return (event
->attr
.config
) & L3_EVTYPE_MASK
;
149 static inline bool event_uses_long_counter(struct perf_event
*event
)
151 return !!(event
->attr
.config
& BIT_ULL(L3_EVENT_LC_BIT
));
154 static inline int event_num_counters(struct perf_event
*event
)
156 return event_uses_long_counter(event
) ? 2 : 1;
160 * Main PMU, inherits from the core perf PMU type
164 struct hlist_node node
;
166 struct perf_event
*events
[L3_NUM_COUNTERS
];
167 unsigned long used_mask
[BITS_TO_LONGS(L3_NUM_COUNTERS
)];
171 #define to_l3cache_pmu(p) (container_of(p, struct l3cache_pmu, pmu))
174 * Type used to group hardware counter operations
176 * Used to implement two types of hardware counters, standard (32bits) and
177 * long (64bits). The hardware supports counter chaining which we use to
178 * implement long counters. This support is exposed via the 'lc' flag field
179 * in perf_event_attr.config.
181 struct l3cache_event_ops
{
182 /* Called to start event monitoring */
183 void (*start
)(struct perf_event
*event
);
184 /* Called to stop event monitoring */
185 void (*stop
)(struct perf_event
*event
, int flags
);
186 /* Called to update the perf_event */
187 void (*update
)(struct perf_event
*event
);
191 * Implementation of long counter operations
193 * 64bit counters are implemented by chaining two of the 32bit physical
194 * counters. The PMU only supports chaining of adjacent even/odd pairs
195 * and for simplicity the driver always configures the odd counter to
196 * count the overflows of the lower-numbered even counter. Note that since
197 * the resulting hardware counter is 64bits no IRQs are required to maintain
198 * the software counter which is also 64bits.
201 static void qcom_l3_cache__64bit_counter_start(struct perf_event
*event
)
203 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
204 int idx
= event
->hw
.idx
;
205 u32 evsel
= get_event_type(event
);
208 /* Set the odd counter to count the overflows of the even counter */
209 gang
= readl_relaxed(l3pmu
->regs
+ L3_M_BC_GANG
);
210 gang
|= GANG_EN(idx
+ 1);
211 writel_relaxed(gang
, l3pmu
->regs
+ L3_M_BC_GANG
);
213 /* Initialize the hardware counters and reset prev_count*/
214 local64_set(&event
->hw
.prev_count
, 0);
215 writel_relaxed(0, l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
+ 1));
216 writel_relaxed(0, l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
));
219 * Set the event types, the upper half must use zero and the lower
220 * half the actual event type
222 writel_relaxed(EVSEL(0), l3pmu
->regs
+ L3_HML3_PM_EVTYPE(idx
+ 1));
223 writel_relaxed(EVSEL(evsel
), l3pmu
->regs
+ L3_HML3_PM_EVTYPE(idx
));
225 /* Finally, enable the counters */
226 writel_relaxed(PMCNT_RESET
, l3pmu
->regs
+ L3_HML3_PM_CNTCTL(idx
+ 1));
227 writel_relaxed(PMCNTENSET(idx
+ 1), l3pmu
->regs
+ L3_M_BC_CNTENSET
);
228 writel_relaxed(PMCNT_RESET
, l3pmu
->regs
+ L3_HML3_PM_CNTCTL(idx
));
229 writel_relaxed(PMCNTENSET(idx
), l3pmu
->regs
+ L3_M_BC_CNTENSET
);
232 static void qcom_l3_cache__64bit_counter_stop(struct perf_event
*event
,
235 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
236 int idx
= event
->hw
.idx
;
237 u32 gang
= readl_relaxed(l3pmu
->regs
+ L3_M_BC_GANG
);
239 /* Disable the counters */
240 writel_relaxed(PMCNTENCLR(idx
), l3pmu
->regs
+ L3_M_BC_CNTENCLR
);
241 writel_relaxed(PMCNTENCLR(idx
+ 1), l3pmu
->regs
+ L3_M_BC_CNTENCLR
);
243 /* Disable chaining */
244 writel_relaxed(gang
& ~GANG_EN(idx
+ 1), l3pmu
->regs
+ L3_M_BC_GANG
);
247 static void qcom_l3_cache__64bit_counter_update(struct perf_event
*event
)
249 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
250 int idx
= event
->hw
.idx
;
255 prev
= local64_read(&event
->hw
.prev_count
);
257 hi
= readl_relaxed(l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
+ 1));
258 lo
= readl_relaxed(l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
));
259 } while (hi
!= readl_relaxed(l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
+ 1)));
260 new = ((u64
)hi
<< 32) | lo
;
261 } while (local64_cmpxchg(&event
->hw
.prev_count
, prev
, new) != prev
);
263 local64_add(new - prev
, &event
->count
);
266 static const struct l3cache_event_ops event_ops_long
= {
267 .start
= qcom_l3_cache__64bit_counter_start
,
268 .stop
= qcom_l3_cache__64bit_counter_stop
,
269 .update
= qcom_l3_cache__64bit_counter_update
,
273 * Implementation of standard counter operations
275 * 32bit counters use a single physical counter and a hardware feature that
276 * asserts the overflow IRQ on the toggling of the most significant bit in
277 * the counter. This feature allows the counters to be left free-running
278 * without needing the usual reprogramming required to properly handle races
279 * during concurrent calls to update.
282 static void qcom_l3_cache__32bit_counter_start(struct perf_event
*event
)
284 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
285 int idx
= event
->hw
.idx
;
286 u32 evsel
= get_event_type(event
);
287 u32 irqctl
= readl_relaxed(l3pmu
->regs
+ L3_M_BC_IRQCTL
);
289 /* Set the counter to assert the overflow IRQ on MSB toggling */
290 writel_relaxed(irqctl
| PMIRQONMSBEN(idx
), l3pmu
->regs
+ L3_M_BC_IRQCTL
);
292 /* Initialize the hardware counter and reset prev_count*/
293 local64_set(&event
->hw
.prev_count
, 0);
294 writel_relaxed(0, l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
));
296 /* Set the event type */
297 writel_relaxed(EVSEL(evsel
), l3pmu
->regs
+ L3_HML3_PM_EVTYPE(idx
));
299 /* Enable interrupt generation by this counter */
300 writel_relaxed(PMINTENSET(idx
), l3pmu
->regs
+ L3_M_BC_INTENSET
);
302 /* Finally, enable the counter */
303 writel_relaxed(PMCNT_RESET
, l3pmu
->regs
+ L3_HML3_PM_CNTCTL(idx
));
304 writel_relaxed(PMCNTENSET(idx
), l3pmu
->regs
+ L3_M_BC_CNTENSET
);
307 static void qcom_l3_cache__32bit_counter_stop(struct perf_event
*event
,
310 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
311 int idx
= event
->hw
.idx
;
312 u32 irqctl
= readl_relaxed(l3pmu
->regs
+ L3_M_BC_IRQCTL
);
314 /* Disable the counter */
315 writel_relaxed(PMCNTENCLR(idx
), l3pmu
->regs
+ L3_M_BC_CNTENCLR
);
317 /* Disable interrupt generation by this counter */
318 writel_relaxed(PMINTENCLR(idx
), l3pmu
->regs
+ L3_M_BC_INTENCLR
);
320 /* Set the counter to not assert the overflow IRQ on MSB toggling */
321 writel_relaxed(irqctl
& ~PMIRQONMSBEN(idx
), l3pmu
->regs
+ L3_M_BC_IRQCTL
);
324 static void qcom_l3_cache__32bit_counter_update(struct perf_event
*event
)
326 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
327 int idx
= event
->hw
.idx
;
331 prev
= local64_read(&event
->hw
.prev_count
);
332 new = readl_relaxed(l3pmu
->regs
+ L3_HML3_PM_EVCNTR(idx
));
333 } while (local64_cmpxchg(&event
->hw
.prev_count
, prev
, new) != prev
);
335 local64_add(new - prev
, &event
->count
);
338 static const struct l3cache_event_ops event_ops_std
= {
339 .start
= qcom_l3_cache__32bit_counter_start
,
340 .stop
= qcom_l3_cache__32bit_counter_stop
,
341 .update
= qcom_l3_cache__32bit_counter_update
,
344 /* Retrieve the appropriate operations for the given event */
346 const struct l3cache_event_ops
*l3cache_event_get_ops(struct perf_event
*event
)
348 if (event_uses_long_counter(event
))
349 return &event_ops_long
;
351 return &event_ops_std
;
355 * Top level PMU functions.
358 static inline void qcom_l3_cache__init(struct l3cache_pmu
*l3pmu
)
362 writel_relaxed(BC_RESET
, l3pmu
->regs
+ L3_M_BC_CR
);
365 * Use writel for the first programming command to ensure the basic
366 * counter unit is stopped before proceeding
368 writel(BC_SATROLL_CR_RESET
, l3pmu
->regs
+ L3_M_BC_SATROLL_CR
);
370 writel_relaxed(BC_CNTENCLR_RESET
, l3pmu
->regs
+ L3_M_BC_CNTENCLR
);
371 writel_relaxed(BC_INTENCLR_RESET
, l3pmu
->regs
+ L3_M_BC_INTENCLR
);
372 writel_relaxed(PMOVSRCLR_RESET
, l3pmu
->regs
+ L3_M_BC_OVSR
);
373 writel_relaxed(BC_GANG_RESET
, l3pmu
->regs
+ L3_M_BC_GANG
);
374 writel_relaxed(BC_IRQCTL_RESET
, l3pmu
->regs
+ L3_M_BC_IRQCTL
);
375 writel_relaxed(PM_CR_RESET
, l3pmu
->regs
+ L3_HML3_PM_CR
);
377 for (i
= 0; i
< L3_NUM_COUNTERS
; ++i
) {
378 writel_relaxed(PMCNT_RESET
, l3pmu
->regs
+ L3_HML3_PM_CNTCTL(i
));
379 writel_relaxed(EVSEL(0), l3pmu
->regs
+ L3_HML3_PM_EVTYPE(i
));
382 writel_relaxed(PM_FLTR_RESET
, l3pmu
->regs
+ L3_HML3_PM_FILTRA
);
383 writel_relaxed(PM_FLTR_RESET
, l3pmu
->regs
+ L3_HML3_PM_FILTRAM
);
384 writel_relaxed(PM_FLTR_RESET
, l3pmu
->regs
+ L3_HML3_PM_FILTRB
);
385 writel_relaxed(PM_FLTR_RESET
, l3pmu
->regs
+ L3_HML3_PM_FILTRBM
);
386 writel_relaxed(PM_FLTR_RESET
, l3pmu
->regs
+ L3_HML3_PM_FILTRC
);
387 writel_relaxed(PM_FLTR_RESET
, l3pmu
->regs
+ L3_HML3_PM_FILTRCM
);
390 * Use writel here to ensure all programming commands are done
393 writel(BC_ENABLE
, l3pmu
->regs
+ L3_M_BC_CR
);
396 static irqreturn_t
qcom_l3_cache__handle_irq(int irq_num
, void *data
)
398 struct l3cache_pmu
*l3pmu
= data
;
399 /* Read the overflow status register */
400 long status
= readl_relaxed(l3pmu
->regs
+ L3_M_BC_OVSR
);
406 /* Clear the bits we read on the overflow status register */
407 writel_relaxed(status
, l3pmu
->regs
+ L3_M_BC_OVSR
);
409 for_each_set_bit(idx
, &status
, L3_NUM_COUNTERS
) {
410 struct perf_event
*event
;
411 const struct l3cache_event_ops
*ops
;
413 event
= l3pmu
->events
[idx
];
418 * Since the IRQ is not enabled for events using long counters
419 * we should never see one of those here, however, be consistent
420 * and use the ops indirections like in the other operations.
423 ops
= l3cache_event_get_ops(event
);
431 * Implementation of abstract pmu functionality required by
432 * the core perf events code.
435 static void qcom_l3_cache__pmu_enable(struct pmu
*pmu
)
437 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(pmu
);
439 /* Ensure the other programming commands are observed before enabling */
442 writel_relaxed(BC_ENABLE
, l3pmu
->regs
+ L3_M_BC_CR
);
445 static void qcom_l3_cache__pmu_disable(struct pmu
*pmu
)
447 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(pmu
);
449 writel_relaxed(0, l3pmu
->regs
+ L3_M_BC_CR
);
451 /* Ensure the basic counter unit is stopped before proceeding */
456 * We must NOT create groups containing events from multiple hardware PMUs,
457 * although mixing different software and hardware PMUs is allowed.
459 static bool qcom_l3_cache__validate_event_group(struct perf_event
*event
)
461 struct perf_event
*leader
= event
->group_leader
;
462 struct perf_event
*sibling
;
465 if (leader
->pmu
!= event
->pmu
&& !is_software_event(leader
))
468 counters
= event_num_counters(event
);
469 counters
+= event_num_counters(leader
);
471 for_each_sibling_event(sibling
, leader
) {
472 if (is_software_event(sibling
))
474 if (sibling
->pmu
!= event
->pmu
)
476 counters
+= event_num_counters(sibling
);
480 * If the group requires more counters than the HW has, it
481 * cannot ever be scheduled.
483 return counters
<= L3_NUM_COUNTERS
;
486 static int qcom_l3_cache__event_init(struct perf_event
*event
)
488 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
489 struct hw_perf_event
*hwc
= &event
->hw
;
492 * Is the event for this PMU?
494 if (event
->attr
.type
!= event
->pmu
->type
)
498 * Sampling not supported since these events are not core-attributable.
500 if (hwc
->sample_period
)
504 * Task mode not available, we run the counters as socket counters,
505 * not attributable to any CPU and therefore cannot attribute per-task.
510 /* Validate the group */
511 if (!qcom_l3_cache__validate_event_group(event
))
517 * Many perf core operations (eg. events rotation) operate on a
518 * single CPU context. This is obvious for CPU PMUs, where one
519 * expects the same sets of events being observed on all CPUs,
520 * but can lead to issues for off-core PMUs, like this one, where
521 * each event could be theoretically assigned to a different CPU.
522 * To mitigate this, we enforce CPU assignment to one designated
523 * processor (the one described in the "cpumask" attribute exported
524 * by the PMU device). perf user space tools honor this and avoid
525 * opening more than one copy of the events.
527 event
->cpu
= cpumask_first(&l3pmu
->cpumask
);
532 static void qcom_l3_cache__event_start(struct perf_event
*event
, int flags
)
534 struct hw_perf_event
*hwc
= &event
->hw
;
535 const struct l3cache_event_ops
*ops
= l3cache_event_get_ops(event
);
541 static void qcom_l3_cache__event_stop(struct perf_event
*event
, int flags
)
543 struct hw_perf_event
*hwc
= &event
->hw
;
544 const struct l3cache_event_ops
*ops
= l3cache_event_get_ops(event
);
546 if (hwc
->state
& PERF_HES_STOPPED
)
549 ops
->stop(event
, flags
);
550 if (flags
& PERF_EF_UPDATE
)
552 hwc
->state
|= PERF_HES_STOPPED
| PERF_HES_UPTODATE
;
555 static int qcom_l3_cache__event_add(struct perf_event
*event
, int flags
)
557 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
558 struct hw_perf_event
*hwc
= &event
->hw
;
559 int order
= event_uses_long_counter(event
) ? 1 : 0;
563 * Try to allocate a counter.
565 idx
= bitmap_find_free_region(l3pmu
->used_mask
, L3_NUM_COUNTERS
, order
);
567 /* The counters are all in use. */
571 hwc
->state
= PERF_HES_STOPPED
| PERF_HES_UPTODATE
;
572 l3pmu
->events
[idx
] = event
;
574 if (flags
& PERF_EF_START
)
575 qcom_l3_cache__event_start(event
, 0);
577 /* Propagate changes to the userspace mapping. */
578 perf_event_update_userpage(event
);
583 static void qcom_l3_cache__event_del(struct perf_event
*event
, int flags
)
585 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(event
->pmu
);
586 struct hw_perf_event
*hwc
= &event
->hw
;
587 int order
= event_uses_long_counter(event
) ? 1 : 0;
589 /* Stop and clean up */
590 qcom_l3_cache__event_stop(event
, flags
| PERF_EF_UPDATE
);
591 l3pmu
->events
[hwc
->idx
] = NULL
;
592 bitmap_release_region(l3pmu
->used_mask
, hwc
->idx
, order
);
594 /* Propagate changes to the userspace mapping. */
595 perf_event_update_userpage(event
);
598 static void qcom_l3_cache__event_read(struct perf_event
*event
)
600 const struct l3cache_event_ops
*ops
= l3cache_event_get_ops(event
);
606 * Add sysfs attributes
609 * - formats, used by perf user space and other tools to configure events
610 * - events, used by perf user space and other tools to create events
611 * symbolically, e.g.:
612 * perf stat -a -e l3cache_0_0/event=read-miss/ ls
613 * perf stat -a -e l3cache_0_0/event=0x21/ ls
614 * - cpumask, used by perf user space and other tools to know on which CPUs
620 static ssize_t
l3cache_pmu_format_show(struct device
*dev
,
621 struct device_attribute
*attr
, char *buf
)
623 struct dev_ext_attribute
*eattr
;
625 eattr
= container_of(attr
, struct dev_ext_attribute
, attr
);
626 return sprintf(buf
, "%s\n", (char *) eattr
->var
);
629 #define L3CACHE_PMU_FORMAT_ATTR(_name, _config) \
630 (&((struct dev_ext_attribute[]) { \
631 { .attr = __ATTR(_name, 0444, l3cache_pmu_format_show, NULL), \
632 .var = (void *) _config, } \
635 static struct attribute
*qcom_l3_cache_pmu_formats
[] = {
636 L3CACHE_PMU_FORMAT_ATTR(event
, "config:0-7"),
637 L3CACHE_PMU_FORMAT_ATTR(lc
, "config:" __stringify(L3_EVENT_LC_BIT
)),
641 static struct attribute_group qcom_l3_cache_pmu_format_group
= {
643 .attrs
= qcom_l3_cache_pmu_formats
,
648 static ssize_t
l3cache_pmu_event_show(struct device
*dev
,
649 struct device_attribute
*attr
, char *page
)
651 struct perf_pmu_events_attr
*pmu_attr
;
653 pmu_attr
= container_of(attr
, struct perf_pmu_events_attr
, attr
);
654 return sprintf(page
, "event=0x%02llx\n", pmu_attr
->id
);
657 #define L3CACHE_EVENT_ATTR(_name, _id) \
658 (&((struct perf_pmu_events_attr[]) { \
659 { .attr = __ATTR(_name, 0444, l3cache_pmu_event_show, NULL), \
663 static struct attribute
*qcom_l3_cache_pmu_events
[] = {
664 L3CACHE_EVENT_ATTR(cycles
, L3_EVENT_CYCLES
),
665 L3CACHE_EVENT_ATTR(read
-hit
, L3_EVENT_READ_HIT
),
666 L3CACHE_EVENT_ATTR(read
-miss
, L3_EVENT_READ_MISS
),
667 L3CACHE_EVENT_ATTR(read
-hit
-d
-side
, L3_EVENT_READ_HIT_D
),
668 L3CACHE_EVENT_ATTR(read
-miss
-d
-side
, L3_EVENT_READ_MISS_D
),
669 L3CACHE_EVENT_ATTR(write
-hit
, L3_EVENT_WRITE_HIT
),
670 L3CACHE_EVENT_ATTR(write
-miss
, L3_EVENT_WRITE_MISS
),
674 static struct attribute_group qcom_l3_cache_pmu_events_group
= {
676 .attrs
= qcom_l3_cache_pmu_events
,
681 static ssize_t
qcom_l3_cache_pmu_cpumask_show(struct device
*dev
,
682 struct device_attribute
*attr
, char *buf
)
684 struct l3cache_pmu
*l3pmu
= to_l3cache_pmu(dev_get_drvdata(dev
));
686 return cpumap_print_to_pagebuf(true, buf
, &l3pmu
->cpumask
);
689 static DEVICE_ATTR(cpumask
, 0444, qcom_l3_cache_pmu_cpumask_show
, NULL
);
691 static struct attribute
*qcom_l3_cache_pmu_cpumask_attrs
[] = {
692 &dev_attr_cpumask
.attr
,
696 static struct attribute_group qcom_l3_cache_pmu_cpumask_attr_group
= {
697 .attrs
= qcom_l3_cache_pmu_cpumask_attrs
,
701 * Per PMU device attribute groups
703 static const struct attribute_group
*qcom_l3_cache_pmu_attr_grps
[] = {
704 &qcom_l3_cache_pmu_format_group
,
705 &qcom_l3_cache_pmu_events_group
,
706 &qcom_l3_cache_pmu_cpumask_attr_group
,
711 * Probing functions and data.
714 static int qcom_l3_cache_pmu_online_cpu(unsigned int cpu
, struct hlist_node
*node
)
716 struct l3cache_pmu
*l3pmu
= hlist_entry_safe(node
, struct l3cache_pmu
, node
);
718 /* If there is not a CPU/PMU association pick this CPU */
719 if (cpumask_empty(&l3pmu
->cpumask
))
720 cpumask_set_cpu(cpu
, &l3pmu
->cpumask
);
725 static int qcom_l3_cache_pmu_offline_cpu(unsigned int cpu
, struct hlist_node
*node
)
727 struct l3cache_pmu
*l3pmu
= hlist_entry_safe(node
, struct l3cache_pmu
, node
);
730 if (!cpumask_test_and_clear_cpu(cpu
, &l3pmu
->cpumask
))
732 target
= cpumask_any_but(cpu_online_mask
, cpu
);
733 if (target
>= nr_cpu_ids
)
735 perf_pmu_migrate_context(&l3pmu
->pmu
, cpu
, target
);
736 cpumask_set_cpu(target
, &l3pmu
->cpumask
);
740 static int qcom_l3_cache_pmu_probe(struct platform_device
*pdev
)
742 struct l3cache_pmu
*l3pmu
;
743 struct acpi_device
*acpi_dev
;
744 struct resource
*memrc
;
748 /* Initialize the PMU data structures */
750 acpi_dev
= ACPI_COMPANION(&pdev
->dev
);
754 l3pmu
= devm_kzalloc(&pdev
->dev
, sizeof(*l3pmu
), GFP_KERNEL
);
755 name
= devm_kasprintf(&pdev
->dev
, GFP_KERNEL
, "l3cache_%s_%s",
756 acpi_dev
->parent
->pnp
.unique_id
, acpi_dev
->pnp
.unique_id
);
760 l3pmu
->pmu
= (struct pmu
) {
761 .task_ctx_nr
= perf_invalid_context
,
763 .pmu_enable
= qcom_l3_cache__pmu_enable
,
764 .pmu_disable
= qcom_l3_cache__pmu_disable
,
765 .event_init
= qcom_l3_cache__event_init
,
766 .add
= qcom_l3_cache__event_add
,
767 .del
= qcom_l3_cache__event_del
,
768 .start
= qcom_l3_cache__event_start
,
769 .stop
= qcom_l3_cache__event_stop
,
770 .read
= qcom_l3_cache__event_read
,
772 .attr_groups
= qcom_l3_cache_pmu_attr_grps
,
773 .capabilities
= PERF_PMU_CAP_NO_EXCLUDE
,
776 memrc
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
777 l3pmu
->regs
= devm_ioremap_resource(&pdev
->dev
, memrc
);
778 if (IS_ERR(l3pmu
->regs
)) {
779 dev_err(&pdev
->dev
, "Can't map PMU @%pa\n", &memrc
->start
);
780 return PTR_ERR(l3pmu
->regs
);
783 qcom_l3_cache__init(l3pmu
);
785 ret
= platform_get_irq(pdev
, 0);
789 ret
= devm_request_irq(&pdev
->dev
, ret
, qcom_l3_cache__handle_irq
, 0,
792 dev_err(&pdev
->dev
, "Request for IRQ failed for slice @%pa\n",
797 /* Add this instance to the list used by the offline callback */
798 ret
= cpuhp_state_add_instance(CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE
, &l3pmu
->node
);
800 dev_err(&pdev
->dev
, "Error %d registering hotplug", ret
);
804 ret
= perf_pmu_register(&l3pmu
->pmu
, name
, -1);
806 dev_err(&pdev
->dev
, "Failed to register L3 cache PMU (%d)\n", ret
);
810 dev_info(&pdev
->dev
, "Registered %s, type: %d\n", name
, l3pmu
->pmu
.type
);
815 static const struct acpi_device_id qcom_l3_cache_pmu_acpi_match
[] = {
819 MODULE_DEVICE_TABLE(acpi
, qcom_l3_cache_pmu_acpi_match
);
821 static struct platform_driver qcom_l3_cache_pmu_driver
= {
823 .name
= "qcom-l3cache-pmu",
824 .acpi_match_table
= ACPI_PTR(qcom_l3_cache_pmu_acpi_match
),
826 .probe
= qcom_l3_cache_pmu_probe
,
829 static int __init
register_qcom_l3_cache_pmu_driver(void)
833 /* Install a hook to update the reader CPU in case it goes offline */
834 ret
= cpuhp_setup_state_multi(CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE
,
835 "perf/qcom/l3cache:online",
836 qcom_l3_cache_pmu_online_cpu
,
837 qcom_l3_cache_pmu_offline_cpu
);
841 return platform_driver_register(&qcom_l3_cache_pmu_driver
);
843 device_initcall(register_qcom_l3_cache_pmu_driver
);