Skip to content

Commit 0f72556

Browse files
Jacob Panjoergroedel
authored andcommitted
iommu/vt-d: Add definitions for PFSID
When SRIOV VF device IOTLB is invalidated, we need to provide the PF source ID such that IOMMU hardware can gauge the depth of invalidation queue which is shared among VFs. This is needed when device invalidation throttle (DIT) capability is supported. This patch adds bit definitions for checking and tracking PFSID. Signed-off-by: Jacob Pan <[email protected]> Cc: [email protected] Cc: "Ashok Raj" <[email protected]> Cc: "Lu Baolu" <[email protected]> Signed-off-by: Joerg Roedel <[email protected]>
1 parent 021c917 commit 0f72556

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

drivers/iommu/intel-iommu.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ struct device_domain_info {
422422
struct list_head global; /* link to global list */
423423
u8 bus; /* PCI bus number */
424424
u8 devfn; /* PCI devfn number */
425+
u16 pfsid; /* SRIOV physical function source ID */
425426
u8 pasid_supported:3;
426427
u8 pasid_enabled:1;
427428
u8 pri_supported:1;

include/linux/intel-iommu.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
* Extended Capability Register
115115
*/
116116

117+
#define ecap_dit(e) ((e >> 41) & 0x1)
117118
#define ecap_pasid(e) ((e >> 40) & 0x1)
118119
#define ecap_pss(e) ((e >> 35) & 0x1f)
119120
#define ecap_eafs(e) ((e >> 34) & 0x1)
@@ -283,6 +284,7 @@ enum {
283284
#define QI_DEV_IOTLB_SID(sid) ((u64)((sid) & 0xffff) << 32)
284285
#define QI_DEV_IOTLB_QDEP(qdep) (((qdep) & 0x1f) << 16)
285286
#define QI_DEV_IOTLB_ADDR(addr) ((u64)(addr) & VTD_PAGE_MASK)
287+
#define QI_DEV_IOTLB_PFSID(pfsid) (((u64)(pfsid & 0xf) << 12) | ((u64)(pfsid & 0xfff) << 52))
286288
#define QI_DEV_IOTLB_SIZE 1
287289
#define QI_DEV_IOTLB_MAX_INVS 32
288290

@@ -307,6 +309,7 @@ enum {
307309
#define QI_DEV_EIOTLB_PASID(p) (((u64)p) << 32)
308310
#define QI_DEV_EIOTLB_SID(sid) ((u64)((sid) & 0xffff) << 16)
309311
#define QI_DEV_EIOTLB_QDEP(qd) ((u64)((qd) & 0x1f) << 4)
312+
#define QI_DEV_EIOTLB_PFSID(pfsid) (((u64)(pfsid & 0xf) << 12) | ((u64)(pfsid & 0xfff) << 52))
310313
#define QI_DEV_EIOTLB_MAX_INVS 32
311314

312315
#define QI_PGRP_IDX(idx) (((u64)(idx)) << 55)

0 commit comments

Comments
 (0)