1 // SPDX-License-Identifier: GPL-2.0
4 * This driver adds support for perf events to use the Performance
5 * Monitor Counter Groups (PMCG) associated with an SMMUv3 node
6 * to monitor that node.
8 * SMMUv3 PMCG devices are named as smmuv3_pmcg_<phys_addr_page> where
9 * <phys_addr_page> is the physical page address of the SMMU PMCG wrapped
10 * to 4K boundary. For example, the PMCG at 0xff88840000 is named
13 * Filtering by stream id is done by specifying filtering parameters
14 * with the event. options are:
15 * filter_enable - 0 = no filtering, 1 = filtering enabled
16 * filter_span - 0 = exact match, 1 = pattern match
17 * filter_stream_id - pattern to filter against
19 * To match a partial StreamID where the X most-significant bits must match
20 * but the Y least-significant bits might differ, STREAMID is programmed
21 * with a value that contains:
22 * STREAMID[Y - 1] == 0.
23 * STREAMID[Y - 2:0] == 1 (where Y > 1).
24 * The remainder of implemented bits of STREAMID (X bits, from bit Y upwards)
25 * contain a value to match from the corresponding bits of event StreamID.
27 * Example: perf stat -e smmuv3_pmcg_ff88840/transaction,filter_enable=1,
28 * filter_span=1,filter_stream_id=0x42/ -a netperf
29 * Applies filter pattern 0x42 to transaction events, which means events
30 * matching stream ids 0x42 and 0x43 are counted. Further filtering
31 * information is available in the SMMU documentation.
33 * SMMU events are not attributable to a CPU, so task mode and sampling
37 #include <linux/acpi.h>
38 #include <linux/acpi_iort.h>
39 #include <linux/bitfield.h>
40 #include <linux/bitops.h>
41 #include <linux/cpuhotplug.h>
42 #include <linux/cpumask.h>
43 #include <linux/device.h>
44 #include <linux/errno.h>
45 #include <linux/interrupt.h>
46 #include <linux/irq.h>
47 #include <linux/kernel.h>
48 #include <linux/list.h>
49 #include <linux/msi.h>
50 #include <linux/perf_event.h>
51 #include <linux/platform_device.h>
52 #include <linux/smp.h>
53 #include <linux/sysfs.h>
54 #include <linux/types.h>
56 #define SMMU_PMCG_EVCNTR0 0x0
57 #define SMMU_PMCG_EVCNTR(n, stride) (SMMU_PMCG_EVCNTR0 + (n) * (stride))
58 #define SMMU_PMCG_EVTYPER0 0x400
59 #define SMMU_PMCG_EVTYPER(n) (SMMU_PMCG_EVTYPER0 + (n) * 4)
60 #define SMMU_PMCG_SID_SPAN_SHIFT 29
61 #define SMMU_PMCG_SMR0 0xA00
62 #define SMMU_PMCG_SMR(n) (SMMU_PMCG_SMR0 + (n) * 4)
63 #define SMMU_PMCG_CNTENSET0 0xC00
64 #define SMMU_PMCG_CNTENCLR0 0xC20
65 #define SMMU_PMCG_INTENSET0 0xC40
66 #define SMMU_PMCG_INTENCLR0 0xC60
67 #define SMMU_PMCG_OVSCLR0 0xC80
68 #define SMMU_PMCG_OVSSET0 0xCC0
69 #define SMMU_PMCG_CFGR 0xE00
70 #define SMMU_PMCG_CFGR_SID_FILTER_TYPE BIT(23)
71 #define SMMU_PMCG_CFGR_MSI BIT(21)
72 #define SMMU_PMCG_CFGR_RELOC_CTRS BIT(20)
73 #define SMMU_PMCG_CFGR_SIZE GENMASK(13, 8)
74 #define SMMU_PMCG_CFGR_NCTR GENMASK(5, 0)
75 #define SMMU_PMCG_CR 0xE04
76 #define SMMU_PMCG_CR_ENABLE BIT(0)
77 #define SMMU_PMCG_CEID0 0xE20
78 #define SMMU_PMCG_CEID1 0xE28
79 #define SMMU_PMCG_IRQ_CTRL 0xE50
80 #define SMMU_PMCG_IRQ_CTRL_IRQEN BIT(0)
81 #define SMMU_PMCG_IRQ_CFG0 0xE58
82 #define SMMU_PMCG_IRQ_CFG1 0xE60
83 #define SMMU_PMCG_IRQ_CFG2 0xE64
85 /* MSI config fields */
86 #define MSI_CFG0_ADDR_MASK GENMASK_ULL(51, 2)
87 #define MSI_CFG2_MEMATTR_DEVICE_nGnRE 0x1
89 #define SMMU_PMCG_DEFAULT_FILTER_SPAN 1
90 #define SMMU_PMCG_DEFAULT_FILTER_SID GENMASK(31, 0)
92 #define SMMU_PMCG_MAX_COUNTERS 64
93 #define SMMU_PMCG_ARCH_MAX_EVENTS 128
95 #define SMMU_PMCG_PA_SHIFT 12
97 #define SMMU_PMCG_EVCNTR_RDONLY BIT(0)
99 static int cpuhp_state_num
;
102 struct hlist_node node
;
103 struct perf_event
*events
[SMMU_PMCG_MAX_COUNTERS
];
104 DECLARE_BITMAP(used_counters
, SMMU_PMCG_MAX_COUNTERS
);
105 DECLARE_BITMAP(supported_events
, SMMU_PMCG_ARCH_MAX_EVENTS
);
109 unsigned int num_counters
;
111 void __iomem
*reg_base
;
112 void __iomem
*reloc_base
;
118 #define to_smmu_pmu(p) (container_of(p, struct smmu_pmu, pmu))
120 #define SMMU_PMU_EVENT_ATTR_EXTRACTOR(_name, _config, _start, _end) \
121 static inline u32 get_##_name(struct perf_event *event) \
123 return FIELD_GET(GENMASK_ULL(_end, _start), \
124 event->attr._config); \
127 SMMU_PMU_EVENT_ATTR_EXTRACTOR(event, config, 0, 15);
128 SMMU_PMU_EVENT_ATTR_EXTRACTOR(filter_stream_id
, config1
, 0, 31);
129 SMMU_PMU_EVENT_ATTR_EXTRACTOR(filter_span
, config1
, 32, 32);
130 SMMU_PMU_EVENT_ATTR_EXTRACTOR(filter_enable
, config1
, 33, 33);
132 static inline void smmu_pmu_enable(struct pmu
*pmu
)
134 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(pmu
);
136 writel(SMMU_PMCG_IRQ_CTRL_IRQEN
,
137 smmu_pmu
->reg_base
+ SMMU_PMCG_IRQ_CTRL
);
138 writel(SMMU_PMCG_CR_ENABLE
, smmu_pmu
->reg_base
+ SMMU_PMCG_CR
);
141 static inline void smmu_pmu_disable(struct pmu
*pmu
)
143 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(pmu
);
145 writel(0, smmu_pmu
->reg_base
+ SMMU_PMCG_CR
);
146 writel(0, smmu_pmu
->reg_base
+ SMMU_PMCG_IRQ_CTRL
);
149 static inline void smmu_pmu_counter_set_value(struct smmu_pmu
*smmu_pmu
,
152 if (smmu_pmu
->counter_mask
& BIT(32))
153 writeq(value
, smmu_pmu
->reloc_base
+ SMMU_PMCG_EVCNTR(idx
, 8));
155 writel(value
, smmu_pmu
->reloc_base
+ SMMU_PMCG_EVCNTR(idx
, 4));
158 static inline u64
smmu_pmu_counter_get_value(struct smmu_pmu
*smmu_pmu
, u32 idx
)
162 if (smmu_pmu
->counter_mask
& BIT(32))
163 value
= readq(smmu_pmu
->reloc_base
+ SMMU_PMCG_EVCNTR(idx
, 8));
165 value
= readl(smmu_pmu
->reloc_base
+ SMMU_PMCG_EVCNTR(idx
, 4));
170 static inline void smmu_pmu_counter_enable(struct smmu_pmu
*smmu_pmu
, u32 idx
)
172 writeq(BIT(idx
), smmu_pmu
->reg_base
+ SMMU_PMCG_CNTENSET0
);
175 static inline void smmu_pmu_counter_disable(struct smmu_pmu
*smmu_pmu
, u32 idx
)
177 writeq(BIT(idx
), smmu_pmu
->reg_base
+ SMMU_PMCG_CNTENCLR0
);
180 static inline void smmu_pmu_interrupt_enable(struct smmu_pmu
*smmu_pmu
, u32 idx
)
182 writeq(BIT(idx
), smmu_pmu
->reg_base
+ SMMU_PMCG_INTENSET0
);
185 static inline void smmu_pmu_interrupt_disable(struct smmu_pmu
*smmu_pmu
,
188 writeq(BIT(idx
), smmu_pmu
->reg_base
+ SMMU_PMCG_INTENCLR0
);
191 static inline void smmu_pmu_set_evtyper(struct smmu_pmu
*smmu_pmu
, u32 idx
,
194 writel(val
, smmu_pmu
->reg_base
+ SMMU_PMCG_EVTYPER(idx
));
197 static inline void smmu_pmu_set_smr(struct smmu_pmu
*smmu_pmu
, u32 idx
, u32 val
)
199 writel(val
, smmu_pmu
->reg_base
+ SMMU_PMCG_SMR(idx
));
202 static void smmu_pmu_event_update(struct perf_event
*event
)
204 struct hw_perf_event
*hwc
= &event
->hw
;
205 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
206 u64 delta
, prev
, now
;
210 prev
= local64_read(&hwc
->prev_count
);
211 now
= smmu_pmu_counter_get_value(smmu_pmu
, idx
);
212 } while (local64_cmpxchg(&hwc
->prev_count
, prev
, now
) != prev
);
214 /* handle overflow. */
216 delta
&= smmu_pmu
->counter_mask
;
218 local64_add(delta
, &event
->count
);
221 static void smmu_pmu_set_period(struct smmu_pmu
*smmu_pmu
,
222 struct hw_perf_event
*hwc
)
227 if (smmu_pmu
->options
& SMMU_PMCG_EVCNTR_RDONLY
) {
229 * On platforms that require this quirk, if the counter starts
230 * at < half_counter value and wraps, the current logic of
231 * handling the overflow may not work. It is expected that,
232 * those platforms will have full 64 counter bits implemented
233 * so that such a possibility is remote(eg: HiSilicon HIP08).
235 new = smmu_pmu_counter_get_value(smmu_pmu
, idx
);
238 * We limit the max period to half the max counter value
239 * of the counter size, so that even in the case of extreme
240 * interrupt latency the counter will (hopefully) not wrap
241 * past its initial value.
243 new = smmu_pmu
->counter_mask
>> 1;
244 smmu_pmu_counter_set_value(smmu_pmu
, idx
, new);
247 local64_set(&hwc
->prev_count
, new);
250 static void smmu_pmu_set_event_filter(struct perf_event
*event
,
251 int idx
, u32 span
, u32 sid
)
253 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
256 evtyper
= get_event(event
) | span
<< SMMU_PMCG_SID_SPAN_SHIFT
;
257 smmu_pmu_set_evtyper(smmu_pmu
, idx
, evtyper
);
258 smmu_pmu_set_smr(smmu_pmu
, idx
, sid
);
261 static bool smmu_pmu_check_global_filter(struct perf_event
*curr
,
262 struct perf_event
*new)
264 if (get_filter_enable(new) != get_filter_enable(curr
))
267 if (!get_filter_enable(new))
270 return get_filter_span(new) == get_filter_span(curr
) &&
271 get_filter_stream_id(new) == get_filter_stream_id(curr
);
274 static int smmu_pmu_apply_event_filter(struct smmu_pmu
*smmu_pmu
,
275 struct perf_event
*event
, int idx
)
278 unsigned int num_ctrs
= smmu_pmu
->num_counters
;
279 bool filter_en
= !!get_filter_enable(event
);
281 span
= filter_en
? get_filter_span(event
) :
282 SMMU_PMCG_DEFAULT_FILTER_SPAN
;
283 sid
= filter_en
? get_filter_stream_id(event
) :
284 SMMU_PMCG_DEFAULT_FILTER_SID
;
286 /* Support individual filter settings */
287 if (!smmu_pmu
->global_filter
) {
288 smmu_pmu_set_event_filter(event
, idx
, span
, sid
);
292 /* Requested settings same as current global settings*/
293 idx
= find_first_bit(smmu_pmu
->used_counters
, num_ctrs
);
294 if (idx
== num_ctrs
||
295 smmu_pmu_check_global_filter(smmu_pmu
->events
[idx
], event
)) {
296 smmu_pmu_set_event_filter(event
, 0, span
, sid
);
303 static int smmu_pmu_get_event_idx(struct smmu_pmu
*smmu_pmu
,
304 struct perf_event
*event
)
307 unsigned int num_ctrs
= smmu_pmu
->num_counters
;
309 idx
= find_first_zero_bit(smmu_pmu
->used_counters
, num_ctrs
);
311 /* The counters are all in use. */
314 err
= smmu_pmu_apply_event_filter(smmu_pmu
, event
, idx
);
318 set_bit(idx
, smmu_pmu
->used_counters
);
323 static bool smmu_pmu_events_compatible(struct perf_event
*curr
,
324 struct perf_event
*new)
326 if (new->pmu
!= curr
->pmu
)
329 if (to_smmu_pmu(new->pmu
)->global_filter
&&
330 !smmu_pmu_check_global_filter(curr
, new))
337 * Implementation of abstract pmu functionality required by
338 * the core perf events code.
341 static int smmu_pmu_event_init(struct perf_event
*event
)
343 struct hw_perf_event
*hwc
= &event
->hw
;
344 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
345 struct device
*dev
= smmu_pmu
->dev
;
346 struct perf_event
*sibling
;
347 int group_num_events
= 1;
350 if (event
->attr
.type
!= event
->pmu
->type
)
353 if (hwc
->sample_period
) {
354 dev_dbg(dev
, "Sampling not supported\n");
358 if (event
->cpu
< 0) {
359 dev_dbg(dev
, "Per-task mode not supported\n");
363 /* Verify specified event is supported on this PMU */
364 event_id
= get_event(event
);
365 if (event_id
< SMMU_PMCG_ARCH_MAX_EVENTS
&&
366 (!test_bit(event_id
, smmu_pmu
->supported_events
))) {
367 dev_dbg(dev
, "Invalid event %d for this PMU\n", event_id
);
371 /* Don't allow groups with mixed PMUs, except for s/w events */
372 if (!is_software_event(event
->group_leader
)) {
373 if (!smmu_pmu_events_compatible(event
->group_leader
, event
))
376 if (++group_num_events
> smmu_pmu
->num_counters
)
380 for_each_sibling_event(sibling
, event
->group_leader
) {
381 if (is_software_event(sibling
))
384 if (!smmu_pmu_events_compatible(sibling
, event
))
387 if (++group_num_events
> smmu_pmu
->num_counters
)
394 * Ensure all events are on the same cpu so all events are in the
395 * same cpu context, to avoid races on pmu_enable etc.
397 event
->cpu
= smmu_pmu
->on_cpu
;
402 static void smmu_pmu_event_start(struct perf_event
*event
, int flags
)
404 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
405 struct hw_perf_event
*hwc
= &event
->hw
;
410 smmu_pmu_set_period(smmu_pmu
, hwc
);
412 smmu_pmu_counter_enable(smmu_pmu
, idx
);
415 static void smmu_pmu_event_stop(struct perf_event
*event
, int flags
)
417 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
418 struct hw_perf_event
*hwc
= &event
->hw
;
421 if (hwc
->state
& PERF_HES_STOPPED
)
424 smmu_pmu_counter_disable(smmu_pmu
, idx
);
425 /* As the counter gets updated on _start, ignore PERF_EF_UPDATE */
426 smmu_pmu_event_update(event
);
427 hwc
->state
|= PERF_HES_STOPPED
| PERF_HES_UPTODATE
;
430 static int smmu_pmu_event_add(struct perf_event
*event
, int flags
)
432 struct hw_perf_event
*hwc
= &event
->hw
;
434 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
436 idx
= smmu_pmu_get_event_idx(smmu_pmu
, event
);
441 hwc
->state
= PERF_HES_STOPPED
| PERF_HES_UPTODATE
;
442 smmu_pmu
->events
[idx
] = event
;
443 local64_set(&hwc
->prev_count
, 0);
445 smmu_pmu_interrupt_enable(smmu_pmu
, idx
);
447 if (flags
& PERF_EF_START
)
448 smmu_pmu_event_start(event
, flags
);
450 /* Propagate changes to the userspace mapping. */
451 perf_event_update_userpage(event
);
456 static void smmu_pmu_event_del(struct perf_event
*event
, int flags
)
458 struct hw_perf_event
*hwc
= &event
->hw
;
459 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(event
->pmu
);
462 smmu_pmu_event_stop(event
, flags
| PERF_EF_UPDATE
);
463 smmu_pmu_interrupt_disable(smmu_pmu
, idx
);
464 smmu_pmu
->events
[idx
] = NULL
;
465 clear_bit(idx
, smmu_pmu
->used_counters
);
467 perf_event_update_userpage(event
);
470 static void smmu_pmu_event_read(struct perf_event
*event
)
472 smmu_pmu_event_update(event
);
477 static ssize_t
smmu_pmu_cpumask_show(struct device
*dev
,
478 struct device_attribute
*attr
,
481 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(dev_get_drvdata(dev
));
483 return cpumap_print_to_pagebuf(true, buf
, cpumask_of(smmu_pmu
->on_cpu
));
486 static struct device_attribute smmu_pmu_cpumask_attr
=
487 __ATTR(cpumask
, 0444, smmu_pmu_cpumask_show
, NULL
);
489 static struct attribute
*smmu_pmu_cpumask_attrs
[] = {
490 &smmu_pmu_cpumask_attr
.attr
,
494 static struct attribute_group smmu_pmu_cpumask_group
= {
495 .attrs
= smmu_pmu_cpumask_attrs
,
500 static ssize_t
smmu_pmu_event_show(struct device
*dev
,
501 struct device_attribute
*attr
, char *page
)
503 struct perf_pmu_events_attr
*pmu_attr
;
505 pmu_attr
= container_of(attr
, struct perf_pmu_events_attr
, attr
);
507 return sprintf(page
, "event=0x%02llx\n", pmu_attr
->id
);
510 #define SMMU_EVENT_ATTR(name, config) \
511 PMU_EVENT_ATTR(name, smmu_event_attr_##name, \
512 config, smmu_pmu_event_show)
513 SMMU_EVENT_ATTR(cycles
, 0);
514 SMMU_EVENT_ATTR(transaction
, 1);
515 SMMU_EVENT_ATTR(tlb_miss
, 2);
516 SMMU_EVENT_ATTR(config_cache_miss
, 3);
517 SMMU_EVENT_ATTR(trans_table_walk_access
, 4);
518 SMMU_EVENT_ATTR(config_struct_access
, 5);
519 SMMU_EVENT_ATTR(pcie_ats_trans_rq
, 6);
520 SMMU_EVENT_ATTR(pcie_ats_trans_passed
, 7);
522 static struct attribute
*smmu_pmu_events
[] = {
523 &smmu_event_attr_cycles
.attr
.attr
,
524 &smmu_event_attr_transaction
.attr
.attr
,
525 &smmu_event_attr_tlb_miss
.attr
.attr
,
526 &smmu_event_attr_config_cache_miss
.attr
.attr
,
527 &smmu_event_attr_trans_table_walk_access
.attr
.attr
,
528 &smmu_event_attr_config_struct_access
.attr
.attr
,
529 &smmu_event_attr_pcie_ats_trans_rq
.attr
.attr
,
530 &smmu_event_attr_pcie_ats_trans_passed
.attr
.attr
,
534 static umode_t
smmu_pmu_event_is_visible(struct kobject
*kobj
,
535 struct attribute
*attr
, int unused
)
537 struct device
*dev
= kobj_to_dev(kobj
);
538 struct smmu_pmu
*smmu_pmu
= to_smmu_pmu(dev_get_drvdata(dev
));
539 struct perf_pmu_events_attr
*pmu_attr
;
541 pmu_attr
= container_of(attr
, struct perf_pmu_events_attr
, attr
.attr
);
543 if (test_bit(pmu_attr
->id
, smmu_pmu
->supported_events
))
549 static struct attribute_group smmu_pmu_events_group
= {
551 .attrs
= smmu_pmu_events
,
552 .is_visible
= smmu_pmu_event_is_visible
,
556 PMU_FORMAT_ATTR(event
, "config:0-15");
557 PMU_FORMAT_ATTR(filter_stream_id
, "config1:0-31");
558 PMU_FORMAT_ATTR(filter_span
, "config1:32");
559 PMU_FORMAT_ATTR(filter_enable
, "config1:33");
561 static struct attribute
*smmu_pmu_formats
[] = {
562 &format_attr_event
.attr
,
563 &format_attr_filter_stream_id
.attr
,
564 &format_attr_filter_span
.attr
,
565 &format_attr_filter_enable
.attr
,
569 static struct attribute_group smmu_pmu_format_group
= {
571 .attrs
= smmu_pmu_formats
,
574 static const struct attribute_group
*smmu_pmu_attr_grps
[] = {
575 &smmu_pmu_cpumask_group
,
576 &smmu_pmu_events_group
,
577 &smmu_pmu_format_group
,
582 * Generic device handlers
585 static int smmu_pmu_offline_cpu(unsigned int cpu
, struct hlist_node
*node
)
587 struct smmu_pmu
*smmu_pmu
;
590 smmu_pmu
= hlist_entry_safe(node
, struct smmu_pmu
, node
);
591 if (cpu
!= smmu_pmu
->on_cpu
)
594 target
= cpumask_any_but(cpu_online_mask
, cpu
);
595 if (target
>= nr_cpu_ids
)
598 perf_pmu_migrate_context(&smmu_pmu
->pmu
, cpu
, target
);
599 smmu_pmu
->on_cpu
= target
;
600 WARN_ON(irq_set_affinity_hint(smmu_pmu
->irq
, cpumask_of(target
)));
605 static irqreturn_t
smmu_pmu_handle_irq(int irq_num
, void *data
)
607 struct smmu_pmu
*smmu_pmu
= data
;
611 ovsr
= readq(smmu_pmu
->reloc_base
+ SMMU_PMCG_OVSSET0
);
615 writeq(ovsr
, smmu_pmu
->reloc_base
+ SMMU_PMCG_OVSCLR0
);
617 for_each_set_bit(idx
, (unsigned long *)&ovsr
, smmu_pmu
->num_counters
) {
618 struct perf_event
*event
= smmu_pmu
->events
[idx
];
619 struct hw_perf_event
*hwc
;
621 if (WARN_ON_ONCE(!event
))
624 smmu_pmu_event_update(event
);
627 smmu_pmu_set_period(smmu_pmu
, hwc
);
633 static void smmu_pmu_free_msis(void *data
)
635 struct device
*dev
= data
;
637 platform_msi_domain_free_irqs(dev
);
640 static void smmu_pmu_write_msi_msg(struct msi_desc
*desc
, struct msi_msg
*msg
)
642 phys_addr_t doorbell
;
643 struct device
*dev
= msi_desc_to_dev(desc
);
644 struct smmu_pmu
*pmu
= dev_get_drvdata(dev
);
646 doorbell
= (((u64
)msg
->address_hi
) << 32) | msg
->address_lo
;
647 doorbell
&= MSI_CFG0_ADDR_MASK
;
649 writeq_relaxed(doorbell
, pmu
->reg_base
+ SMMU_PMCG_IRQ_CFG0
);
650 writel_relaxed(msg
->data
, pmu
->reg_base
+ SMMU_PMCG_IRQ_CFG1
);
651 writel_relaxed(MSI_CFG2_MEMATTR_DEVICE_nGnRE
,
652 pmu
->reg_base
+ SMMU_PMCG_IRQ_CFG2
);
655 static void smmu_pmu_setup_msi(struct smmu_pmu
*pmu
)
657 struct msi_desc
*desc
;
658 struct device
*dev
= pmu
->dev
;
661 /* Clear MSI address reg */
662 writeq_relaxed(0, pmu
->reg_base
+ SMMU_PMCG_IRQ_CFG0
);
664 /* MSI supported or not */
665 if (!(readl(pmu
->reg_base
+ SMMU_PMCG_CFGR
) & SMMU_PMCG_CFGR_MSI
))
668 ret
= platform_msi_domain_alloc_irqs(dev
, 1, smmu_pmu_write_msi_msg
);
670 dev_warn(dev
, "failed to allocate MSIs\n");
674 desc
= first_msi_entry(dev
);
676 pmu
->irq
= desc
->irq
;
678 /* Add callback to free MSIs on teardown */
679 devm_add_action(dev
, smmu_pmu_free_msis
, dev
);
682 static int smmu_pmu_setup_irq(struct smmu_pmu
*pmu
)
684 unsigned long flags
= IRQF_NOBALANCING
| IRQF_SHARED
| IRQF_NO_THREAD
;
685 int irq
, ret
= -ENXIO
;
687 smmu_pmu_setup_msi(pmu
);
691 ret
= devm_request_irq(pmu
->dev
, irq
, smmu_pmu_handle_irq
,
692 flags
, "smmuv3-pmu", pmu
);
696 static void smmu_pmu_reset(struct smmu_pmu
*smmu_pmu
)
698 u64 counter_present_mask
= GENMASK_ULL(smmu_pmu
->num_counters
- 1, 0);
700 smmu_pmu_disable(&smmu_pmu
->pmu
);
702 /* Disable counter and interrupt */
703 writeq_relaxed(counter_present_mask
,
704 smmu_pmu
->reg_base
+ SMMU_PMCG_CNTENCLR0
);
705 writeq_relaxed(counter_present_mask
,
706 smmu_pmu
->reg_base
+ SMMU_PMCG_INTENCLR0
);
707 writeq_relaxed(counter_present_mask
,
708 smmu_pmu
->reloc_base
+ SMMU_PMCG_OVSCLR0
);
711 static void smmu_pmu_get_acpi_options(struct smmu_pmu
*smmu_pmu
)
715 model
= *(u32
*)dev_get_platdata(smmu_pmu
->dev
);
718 case IORT_SMMU_V3_PMCG_HISI_HIP08
:
719 /* HiSilicon Erratum 162001800 */
720 smmu_pmu
->options
|= SMMU_PMCG_EVCNTR_RDONLY
;
724 dev_notice(smmu_pmu
->dev
, "option mask 0x%x\n", smmu_pmu
->options
);
727 static int smmu_pmu_probe(struct platform_device
*pdev
)
729 struct smmu_pmu
*smmu_pmu
;
730 struct resource
*res_0
, *res_1
;
735 struct device
*dev
= &pdev
->dev
;
737 smmu_pmu
= devm_kzalloc(dev
, sizeof(*smmu_pmu
), GFP_KERNEL
);
742 platform_set_drvdata(pdev
, smmu_pmu
);
744 smmu_pmu
->pmu
= (struct pmu
) {
745 .module
= THIS_MODULE
,
746 .task_ctx_nr
= perf_invalid_context
,
747 .pmu_enable
= smmu_pmu_enable
,
748 .pmu_disable
= smmu_pmu_disable
,
749 .event_init
= smmu_pmu_event_init
,
750 .add
= smmu_pmu_event_add
,
751 .del
= smmu_pmu_event_del
,
752 .start
= smmu_pmu_event_start
,
753 .stop
= smmu_pmu_event_stop
,
754 .read
= smmu_pmu_event_read
,
755 .attr_groups
= smmu_pmu_attr_grps
,
756 .capabilities
= PERF_PMU_CAP_NO_EXCLUDE
,
759 res_0
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
760 smmu_pmu
->reg_base
= devm_ioremap_resource(dev
, res_0
);
761 if (IS_ERR(smmu_pmu
->reg_base
))
762 return PTR_ERR(smmu_pmu
->reg_base
);
764 cfgr
= readl_relaxed(smmu_pmu
->reg_base
+ SMMU_PMCG_CFGR
);
766 /* Determine if page 1 is present */
767 if (cfgr
& SMMU_PMCG_CFGR_RELOC_CTRS
) {
768 res_1
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
769 smmu_pmu
->reloc_base
= devm_ioremap_resource(dev
, res_1
);
770 if (IS_ERR(smmu_pmu
->reloc_base
))
771 return PTR_ERR(smmu_pmu
->reloc_base
);
773 smmu_pmu
->reloc_base
= smmu_pmu
->reg_base
;
776 irq
= platform_get_irq_optional(pdev
, 0);
780 ceid_64
[0] = readq_relaxed(smmu_pmu
->reg_base
+ SMMU_PMCG_CEID0
);
781 ceid_64
[1] = readq_relaxed(smmu_pmu
->reg_base
+ SMMU_PMCG_CEID1
);
782 bitmap_from_arr32(smmu_pmu
->supported_events
, (u32
*)ceid_64
,
783 SMMU_PMCG_ARCH_MAX_EVENTS
);
785 smmu_pmu
->num_counters
= FIELD_GET(SMMU_PMCG_CFGR_NCTR
, cfgr
) + 1;
787 smmu_pmu
->global_filter
= !!(cfgr
& SMMU_PMCG_CFGR_SID_FILTER_TYPE
);
789 reg_size
= FIELD_GET(SMMU_PMCG_CFGR_SIZE
, cfgr
);
790 smmu_pmu
->counter_mask
= GENMASK_ULL(reg_size
, 0);
792 smmu_pmu_reset(smmu_pmu
);
794 err
= smmu_pmu_setup_irq(smmu_pmu
);
796 dev_err(dev
, "Setup irq failed, PMU @%pa\n", &res_0
->start
);
800 name
= devm_kasprintf(&pdev
->dev
, GFP_KERNEL
, "smmuv3_pmcg_%llx",
801 (res_0
->start
) >> SMMU_PMCG_PA_SHIFT
);
803 dev_err(dev
, "Create name failed, PMU @%pa\n", &res_0
->start
);
807 smmu_pmu_get_acpi_options(smmu_pmu
);
809 /* Pick one CPU to be the preferred one to use */
810 smmu_pmu
->on_cpu
= raw_smp_processor_id();
811 WARN_ON(irq_set_affinity_hint(smmu_pmu
->irq
,
812 cpumask_of(smmu_pmu
->on_cpu
)));
814 err
= cpuhp_state_add_instance_nocalls(cpuhp_state_num
,
817 dev_err(dev
, "Error %d registering hotplug, PMU @%pa\n",
819 goto out_clear_affinity
;
822 err
= perf_pmu_register(&smmu_pmu
->pmu
, name
, -1);
824 dev_err(dev
, "Error %d registering PMU @%pa\n",
829 dev_info(dev
, "Registered PMU @ %pa using %d counters with %s filter settings\n",
830 &res_0
->start
, smmu_pmu
->num_counters
,
831 smmu_pmu
->global_filter
? "Global(Counter0)" :
837 cpuhp_state_remove_instance_nocalls(cpuhp_state_num
, &smmu_pmu
->node
);
839 irq_set_affinity_hint(smmu_pmu
->irq
, NULL
);
843 static int smmu_pmu_remove(struct platform_device
*pdev
)
845 struct smmu_pmu
*smmu_pmu
= platform_get_drvdata(pdev
);
847 perf_pmu_unregister(&smmu_pmu
->pmu
);
848 cpuhp_state_remove_instance_nocalls(cpuhp_state_num
, &smmu_pmu
->node
);
849 irq_set_affinity_hint(smmu_pmu
->irq
, NULL
);
854 static void smmu_pmu_shutdown(struct platform_device
*pdev
)
856 struct smmu_pmu
*smmu_pmu
= platform_get_drvdata(pdev
);
858 smmu_pmu_disable(&smmu_pmu
->pmu
);
861 static struct platform_driver smmu_pmu_driver
= {
863 .name
= "arm-smmu-v3-pmcg",
864 .suppress_bind_attrs
= true,
866 .probe
= smmu_pmu_probe
,
867 .remove
= smmu_pmu_remove
,
868 .shutdown
= smmu_pmu_shutdown
,
871 static int __init
arm_smmu_pmu_init(void)
873 cpuhp_state_num
= cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN
,
874 "perf/arm/pmcg:online",
876 smmu_pmu_offline_cpu
);
877 if (cpuhp_state_num
< 0)
878 return cpuhp_state_num
;
880 return platform_driver_register(&smmu_pmu_driver
);
882 module_init(arm_smmu_pmu_init
);
884 static void __exit
arm_smmu_pmu_exit(void)
886 platform_driver_unregister(&smmu_pmu_driver
);
887 cpuhp_remove_multi_state(cpuhp_state_num
);
890 module_exit(arm_smmu_pmu_exit
);
892 MODULE_DESCRIPTION("PMU driver for ARM SMMUv3 Performance Monitors Extension");
893 MODULE_AUTHOR("Neil Leeder <nleeder@codeaurora.org>");
894 MODULE_AUTHOR("Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>");
895 MODULE_LICENSE("GPL v2");