2 * Copyright (C) 2013 Advanced Micro Devices, Inc.
4 * Author: Steven Kinney <Steven.Kinney@amd.com>
5 * Author: Suravee Suthikulpanit <Suraveee.Suthikulpanit@amd.com>
7 * Perf: amd_iommu - AMD IOMMU Performance Counter PMU implementation
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #define pr_fmt(fmt) "perf/amd_iommu: " fmt
16 #include <linux/perf_event.h>
17 #include <linux/init.h>
18 #include <linux/cpumask.h>
19 #include <linux/slab.h>
21 #include "../perf_event.h"
24 #define COUNTER_SHIFT 16
26 /* iommu pmu conf masks */
27 #define GET_CSOURCE(x) ((x)->conf & 0xFFULL)
28 #define GET_DEVID(x) (((x)->conf >> 8) & 0xFFFFULL)
29 #define GET_DOMID(x) (((x)->conf >> 24) & 0xFFFFULL)
30 #define GET_PASID(x) (((x)->conf >> 40) & 0xFFFFFULL)
32 /* iommu pmu conf1 masks */
33 #define GET_DEVID_MASK(x) ((x)->conf1 & 0xFFFFULL)
34 #define GET_DOMID_MASK(x) (((x)->conf1 >> 16) & 0xFFFFULL)
35 #define GET_PASID_MASK(x) (((x)->conf1 >> 32) & 0xFFFFFULL)
37 #define IOMMU_NAME_SIZE 16
39 struct perf_amd_iommu
{
40 struct list_head list
;
42 struct amd_iommu
*iommu
;
43 char name
[IOMMU_NAME_SIZE
];
50 static LIST_HEAD(perf_amd_iommu_list
);
52 /*---------------------------------------------
53 * sysfs format attributes
54 *---------------------------------------------*/
55 PMU_FORMAT_ATTR(csource
, "config:0-7");
56 PMU_FORMAT_ATTR(devid
, "config:8-23");
57 PMU_FORMAT_ATTR(domid
, "config:24-39");
58 PMU_FORMAT_ATTR(pasid
, "config:40-59");
59 PMU_FORMAT_ATTR(devid_mask
, "config1:0-15");
60 PMU_FORMAT_ATTR(domid_mask
, "config1:16-31");
61 PMU_FORMAT_ATTR(pasid_mask
, "config1:32-51");
63 static struct attribute
*iommu_format_attrs
[] = {
64 &format_attr_csource
.attr
,
65 &format_attr_devid
.attr
,
66 &format_attr_pasid
.attr
,
67 &format_attr_domid
.attr
,
68 &format_attr_devid_mask
.attr
,
69 &format_attr_pasid_mask
.attr
,
70 &format_attr_domid_mask
.attr
,
74 static struct attribute_group amd_iommu_format_group
= {
76 .attrs
= iommu_format_attrs
,
79 /*---------------------------------------------
80 * sysfs events attributes
81 *---------------------------------------------*/
82 static struct attribute_group amd_iommu_events_group
= {
86 struct amd_iommu_event_desc
{
87 struct kobj_attribute attr
;
91 static ssize_t
_iommu_event_show(struct kobject
*kobj
,
92 struct kobj_attribute
*attr
, char *buf
)
94 struct amd_iommu_event_desc
*event
=
95 container_of(attr
, struct amd_iommu_event_desc
, attr
);
96 return sprintf(buf
, "%s\n", event
->event
);
99 #define AMD_IOMMU_EVENT_DESC(_name, _event) \
101 .attr = __ATTR(_name, 0444, _iommu_event_show, NULL), \
105 static struct amd_iommu_event_desc amd_iommu_v2_event_descs
[] = {
106 AMD_IOMMU_EVENT_DESC(mem_pass_untrans
, "csource=0x01"),
107 AMD_IOMMU_EVENT_DESC(mem_pass_pretrans
, "csource=0x02"),
108 AMD_IOMMU_EVENT_DESC(mem_pass_excl
, "csource=0x03"),
109 AMD_IOMMU_EVENT_DESC(mem_target_abort
, "csource=0x04"),
110 AMD_IOMMU_EVENT_DESC(mem_trans_total
, "csource=0x05"),
111 AMD_IOMMU_EVENT_DESC(mem_iommu_tlb_pte_hit
, "csource=0x06"),
112 AMD_IOMMU_EVENT_DESC(mem_iommu_tlb_pte_mis
, "csource=0x07"),
113 AMD_IOMMU_EVENT_DESC(mem_iommu_tlb_pde_hit
, "csource=0x08"),
114 AMD_IOMMU_EVENT_DESC(mem_iommu_tlb_pde_mis
, "csource=0x09"),
115 AMD_IOMMU_EVENT_DESC(mem_dte_hit
, "csource=0x0a"),
116 AMD_IOMMU_EVENT_DESC(mem_dte_mis
, "csource=0x0b"),
117 AMD_IOMMU_EVENT_DESC(page_tbl_read_tot
, "csource=0x0c"),
118 AMD_IOMMU_EVENT_DESC(page_tbl_read_nst
, "csource=0x0d"),
119 AMD_IOMMU_EVENT_DESC(page_tbl_read_gst
, "csource=0x0e"),
120 AMD_IOMMU_EVENT_DESC(int_dte_hit
, "csource=0x0f"),
121 AMD_IOMMU_EVENT_DESC(int_dte_mis
, "csource=0x10"),
122 AMD_IOMMU_EVENT_DESC(cmd_processed
, "csource=0x11"),
123 AMD_IOMMU_EVENT_DESC(cmd_processed_inv
, "csource=0x12"),
124 AMD_IOMMU_EVENT_DESC(tlb_inv
, "csource=0x13"),
125 AMD_IOMMU_EVENT_DESC(ign_rd_wr_mmio_1ff8h
, "csource=0x14"),
126 AMD_IOMMU_EVENT_DESC(vapic_int_non_guest
, "csource=0x15"),
127 AMD_IOMMU_EVENT_DESC(vapic_int_guest
, "csource=0x16"),
128 AMD_IOMMU_EVENT_DESC(smi_recv
, "csource=0x17"),
129 AMD_IOMMU_EVENT_DESC(smi_blk
, "csource=0x18"),
130 { /* end: all zeroes */ },
133 /*---------------------------------------------
134 * sysfs cpumask attributes
135 *---------------------------------------------*/
136 static cpumask_t iommu_cpumask
;
138 static ssize_t
_iommu_cpumask_show(struct device
*dev
,
139 struct device_attribute
*attr
,
142 return cpumap_print_to_pagebuf(true, buf
, &iommu_cpumask
);
144 static DEVICE_ATTR(cpumask
, S_IRUGO
, _iommu_cpumask_show
, NULL
);
146 static struct attribute
*iommu_cpumask_attrs
[] = {
147 &dev_attr_cpumask
.attr
,
151 static struct attribute_group amd_iommu_cpumask_group
= {
152 .attrs
= iommu_cpumask_attrs
,
155 /*---------------------------------------------*/
157 static int get_next_avail_iommu_bnk_cntr(struct perf_event
*event
)
159 struct perf_amd_iommu
*piommu
= container_of(event
->pmu
, struct perf_amd_iommu
, pmu
);
160 int max_cntrs
= piommu
->max_counters
;
161 int max_banks
= piommu
->max_banks
;
162 u32 shift
, bank
, cntr
;
166 raw_spin_lock_irqsave(&piommu
->lock
, flags
);
168 for (bank
= 0, shift
= 0; bank
< max_banks
; bank
++) {
169 for (cntr
= 0; cntr
< max_cntrs
; cntr
++) {
170 shift
= bank
+ (bank
*3) + cntr
;
171 if (piommu
->cntr_assign_mask
& BIT_ULL(shift
)) {
174 piommu
->cntr_assign_mask
|= BIT_ULL(shift
);
175 event
->hw
.iommu_bank
= bank
;
176 event
->hw
.iommu_cntr
= cntr
;
184 raw_spin_unlock_irqrestore(&piommu
->lock
, flags
);
188 static int clear_avail_iommu_bnk_cntr(struct perf_amd_iommu
*perf_iommu
,
192 int max_banks
, max_cntrs
;
195 max_banks
= perf_iommu
->max_banks
;
196 max_cntrs
= perf_iommu
->max_counters
;
198 if ((bank
> max_banks
) || (cntr
> max_cntrs
))
201 shift
= bank
+ cntr
+ (bank
*3);
203 raw_spin_lock_irqsave(&perf_iommu
->lock
, flags
);
204 perf_iommu
->cntr_assign_mask
&= ~(1ULL<<shift
);
205 raw_spin_unlock_irqrestore(&perf_iommu
->lock
, flags
);
210 static int perf_iommu_event_init(struct perf_event
*event
)
212 struct hw_perf_event
*hwc
= &event
->hw
;
214 /* test the event attr type check for PMU enumeration */
215 if (event
->attr
.type
!= event
->pmu
->type
)
219 * IOMMU counters are shared across all cores.
220 * Therefore, it does not support per-process mode.
221 * Also, it does not support event sampling mode.
223 if (is_sampling_event(event
) || event
->attach_state
& PERF_ATTACH_TASK
)
226 /* IOMMU counters do not have usr/os/guest/host bits */
227 if (event
->attr
.exclude_user
|| event
->attr
.exclude_kernel
||
228 event
->attr
.exclude_host
|| event
->attr
.exclude_guest
)
234 /* update the hw_perf_event struct with the iommu config data */
235 hwc
->conf
= event
->attr
.config
;
236 hwc
->conf1
= event
->attr
.config1
;
241 static inline struct amd_iommu
*perf_event_2_iommu(struct perf_event
*ev
)
243 return (container_of(ev
->pmu
, struct perf_amd_iommu
, pmu
))->iommu
;
246 static void perf_iommu_enable_event(struct perf_event
*ev
)
248 struct amd_iommu
*iommu
= perf_event_2_iommu(ev
);
249 struct hw_perf_event
*hwc
= &ev
->hw
;
250 u8 bank
= hwc
->iommu_bank
;
251 u8 cntr
= hwc
->iommu_cntr
;
254 reg
= GET_CSOURCE(hwc
);
255 amd_iommu_pc_set_reg(iommu
, bank
, cntr
, IOMMU_PC_COUNTER_SRC_REG
, ®
);
257 reg
= GET_DEVID_MASK(hwc
);
258 reg
= GET_DEVID(hwc
) | (reg
<< 32);
261 amd_iommu_pc_set_reg(iommu
, bank
, cntr
, IOMMU_PC_DEVID_MATCH_REG
, ®
);
263 reg
= GET_PASID_MASK(hwc
);
264 reg
= GET_PASID(hwc
) | (reg
<< 32);
267 amd_iommu_pc_set_reg(iommu
, bank
, cntr
, IOMMU_PC_PASID_MATCH_REG
, ®
);
269 reg
= GET_DOMID_MASK(hwc
);
270 reg
= GET_DOMID(hwc
) | (reg
<< 32);
273 amd_iommu_pc_set_reg(iommu
, bank
, cntr
, IOMMU_PC_DOMID_MATCH_REG
, ®
);
276 static void perf_iommu_disable_event(struct perf_event
*event
)
278 struct amd_iommu
*iommu
= perf_event_2_iommu(event
);
279 struct hw_perf_event
*hwc
= &event
->hw
;
282 amd_iommu_pc_set_reg(iommu
, hwc
->iommu_bank
, hwc
->iommu_cntr
,
283 IOMMU_PC_COUNTER_SRC_REG
, ®
);
286 static void perf_iommu_start(struct perf_event
*event
, int flags
)
288 struct hw_perf_event
*hwc
= &event
->hw
;
290 if (WARN_ON_ONCE(!(hwc
->state
& PERF_HES_STOPPED
)))
293 WARN_ON_ONCE(!(hwc
->state
& PERF_HES_UPTODATE
));
296 if (flags
& PERF_EF_RELOAD
) {
297 u64 prev_raw_count
= local64_read(&hwc
->prev_count
);
298 struct amd_iommu
*iommu
= perf_event_2_iommu(event
);
300 amd_iommu_pc_set_reg(iommu
, hwc
->iommu_bank
, hwc
->iommu_cntr
,
301 IOMMU_PC_COUNTER_REG
, &prev_raw_count
);
304 perf_iommu_enable_event(event
);
305 perf_event_update_userpage(event
);
309 static void perf_iommu_read(struct perf_event
*event
)
311 u64 count
, prev
, delta
;
312 struct hw_perf_event
*hwc
= &event
->hw
;
313 struct amd_iommu
*iommu
= perf_event_2_iommu(event
);
315 if (amd_iommu_pc_get_reg(iommu
, hwc
->iommu_bank
, hwc
->iommu_cntr
,
316 IOMMU_PC_COUNTER_REG
, &count
))
319 /* IOMMU pc counter register is only 48 bits */
320 count
&= GENMASK_ULL(47, 0);
322 prev
= local64_read(&hwc
->prev_count
);
323 if (local64_cmpxchg(&hwc
->prev_count
, prev
, count
) != prev
)
326 /* Handle 48-bit counter overflow */
327 delta
= (count
<< COUNTER_SHIFT
) - (prev
<< COUNTER_SHIFT
);
328 delta
>>= COUNTER_SHIFT
;
329 local64_add(delta
, &event
->count
);
332 static void perf_iommu_stop(struct perf_event
*event
, int flags
)
334 struct hw_perf_event
*hwc
= &event
->hw
;
336 if (hwc
->state
& PERF_HES_UPTODATE
)
339 perf_iommu_disable_event(event
);
340 WARN_ON_ONCE(hwc
->state
& PERF_HES_STOPPED
);
341 hwc
->state
|= PERF_HES_STOPPED
;
343 if (hwc
->state
& PERF_HES_UPTODATE
)
346 perf_iommu_read(event
);
347 hwc
->state
|= PERF_HES_UPTODATE
;
350 static int perf_iommu_add(struct perf_event
*event
, int flags
)
354 event
->hw
.state
= PERF_HES_UPTODATE
| PERF_HES_STOPPED
;
356 /* request an iommu bank/counter */
357 retval
= get_next_avail_iommu_bnk_cntr(event
);
361 if (flags
& PERF_EF_START
)
362 perf_iommu_start(event
, PERF_EF_RELOAD
);
367 static void perf_iommu_del(struct perf_event
*event
, int flags
)
369 struct hw_perf_event
*hwc
= &event
->hw
;
370 struct perf_amd_iommu
*perf_iommu
=
371 container_of(event
->pmu
, struct perf_amd_iommu
, pmu
);
373 perf_iommu_stop(event
, PERF_EF_UPDATE
);
375 /* clear the assigned iommu bank/counter */
376 clear_avail_iommu_bnk_cntr(perf_iommu
,
377 hwc
->iommu_bank
, hwc
->iommu_cntr
);
379 perf_event_update_userpage(event
);
382 static __init
int _init_events_attrs(void)
385 struct attribute
**attrs
;
387 while (amd_iommu_v2_event_descs
[i
].attr
.attr
.name
)
390 attrs
= kcalloc(i
+ 1, sizeof(struct attribute
**), GFP_KERNEL
);
394 for (j
= 0; j
< i
; j
++)
395 attrs
[j
] = &amd_iommu_v2_event_descs
[j
].attr
.attr
;
397 amd_iommu_events_group
.attrs
= attrs
;
401 const struct attribute_group
*amd_iommu_attr_groups
[] = {
402 &amd_iommu_format_group
,
403 &amd_iommu_cpumask_group
,
404 &amd_iommu_events_group
,
408 static const struct pmu iommu_pmu __initconst
= {
409 .event_init
= perf_iommu_event_init
,
410 .add
= perf_iommu_add
,
411 .del
= perf_iommu_del
,
412 .start
= perf_iommu_start
,
413 .stop
= perf_iommu_stop
,
414 .read
= perf_iommu_read
,
415 .task_ctx_nr
= perf_invalid_context
,
416 .attr_groups
= amd_iommu_attr_groups
,
419 static __init
int init_one_iommu(unsigned int idx
)
421 struct perf_amd_iommu
*perf_iommu
;
424 perf_iommu
= kzalloc(sizeof(struct perf_amd_iommu
), GFP_KERNEL
);
428 raw_spin_lock_init(&perf_iommu
->lock
);
430 perf_iommu
->pmu
= iommu_pmu
;
431 perf_iommu
->iommu
= get_amd_iommu(idx
);
432 perf_iommu
->max_banks
= amd_iommu_pc_get_max_banks(idx
);
433 perf_iommu
->max_counters
= amd_iommu_pc_get_max_counters(idx
);
435 if (!perf_iommu
->iommu
||
436 !perf_iommu
->max_banks
||
437 !perf_iommu
->max_counters
) {
442 snprintf(perf_iommu
->name
, IOMMU_NAME_SIZE
, "amd_iommu_%u", idx
);
444 ret
= perf_pmu_register(&perf_iommu
->pmu
, perf_iommu
->name
, -1);
446 pr_info("Detected AMD IOMMU #%d (%d banks, %d counters/bank).\n",
447 idx
, perf_iommu
->max_banks
, perf_iommu
->max_counters
);
448 list_add_tail(&perf_iommu
->list
, &perf_amd_iommu_list
);
450 pr_warn("Error initializing IOMMU %d.\n", idx
);
456 static __init
int amd_iommu_pc_init(void)
458 unsigned int i
, cnt
= 0;
461 /* Make sure the IOMMU PC resource is available */
462 if (!amd_iommu_pc_supported())
465 ret
= _init_events_attrs();
470 * An IOMMU PMU is specific to an IOMMU, and can function independently.
471 * So we go through all IOMMUs and ignore the one that fails init
472 * unless all IOMMU are failing.
474 for (i
= 0; i
< amd_iommu_get_num_iommus(); i
++) {
475 ret
= init_one_iommu(i
);
481 kfree(amd_iommu_events_group
.attrs
);
485 /* Init cpumask attributes to only core 0 */
486 cpumask_set_cpu(0, &iommu_cpumask
);
490 device_initcall(amd_iommu_pc_init
);