1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
4 * Author: Alex Williamson <alex.williamson@redhat.com>
6 * Derived from original vfio:
7 * Copyright 2010 Cisco Systems, Inc. All rights reserved.
8 * Author: Tom Lyon, pugs@cisco.com
11 #include <linux/mutex.h>
12 #include <linux/pci.h>
13 #include <linux/irqbypass.h>
14 #include <linux/types.h>
15 #include <linux/uuid.h>
16 #include <linux/notifier.h>
18 #ifndef VFIO_PCI_PRIVATE_H
19 #define VFIO_PCI_PRIVATE_H
21 #define VFIO_PCI_OFFSET_SHIFT 40
23 #define VFIO_PCI_OFFSET_TO_INDEX(off) (off >> VFIO_PCI_OFFSET_SHIFT)
24 #define VFIO_PCI_INDEX_TO_OFFSET(index) ((u64)(index) << VFIO_PCI_OFFSET_SHIFT)
25 #define VFIO_PCI_OFFSET_MASK (((u64)(1) << VFIO_PCI_OFFSET_SHIFT) - 1)
27 /* Special capability IDs predefined access */
28 #define PCI_CAP_ID_INVALID 0xFF /* default raw access */
29 #define PCI_CAP_ID_INVALID_VIRT 0xFE /* default virt access */
31 /* Cap maximum number of ioeventfds per device (arbitrary) */
32 #define VFIO_PCI_IOEVENTFD_MAX 1000
34 struct vfio_pci_ioeventfd
{
35 struct list_head next
;
36 struct vfio_pci_device
*vdev
;
37 struct virqfd
*virqfd
;
46 struct vfio_pci_irq_ctx
{
47 struct eventfd_ctx
*trigger
;
48 struct virqfd
*unmask
;
52 struct irq_bypass_producer producer
;
55 struct vfio_pci_device
;
56 struct vfio_pci_region
;
58 struct vfio_pci_regops
{
59 size_t (*rw
)(struct vfio_pci_device
*vdev
, char __user
*buf
,
60 size_t count
, loff_t
*ppos
, bool iswrite
);
61 void (*release
)(struct vfio_pci_device
*vdev
,
62 struct vfio_pci_region
*region
);
63 int (*mmap
)(struct vfio_pci_device
*vdev
,
64 struct vfio_pci_region
*region
,
65 struct vm_area_struct
*vma
);
66 int (*add_capability
)(struct vfio_pci_device
*vdev
,
67 struct vfio_pci_region
*region
,
68 struct vfio_info_cap
*caps
);
71 struct vfio_pci_region
{
74 const struct vfio_pci_regops
*ops
;
80 struct vfio_pci_dummy_resource
{
81 struct resource resource
;
83 struct list_head res_next
;
86 struct vfio_pci_reflck
{
91 struct vfio_pci_vf_token
{
97 struct vfio_pci_mmap_vma
{
98 struct vm_area_struct
*vma
;
99 struct list_head vma_next
;
102 struct vfio_pci_device
{
103 struct pci_dev
*pdev
;
104 void __iomem
*barmap
[PCI_STD_NUM_BARS
];
105 bool bar_mmap_supported
[PCI_STD_NUM_BARS
];
108 struct perm_bits
*msi_perm
;
111 struct vfio_pci_irq_ctx
*ctx
;
115 struct vfio_pci_region
*region
;
129 bool needs_pm_restore
;
130 struct pci_saved_state
*pci_saved_state
;
131 struct pci_saved_state
*pm_save
;
132 struct vfio_pci_reflck
*reflck
;
135 struct eventfd_ctx
*err_trigger
;
136 struct eventfd_ctx
*req_trigger
;
137 struct list_head dummy_resources_list
;
138 struct mutex ioeventfds_lock
;
139 struct list_head ioeventfds_list
;
140 struct vfio_pci_vf_token
*vf_token
;
141 struct notifier_block nb
;
142 struct mutex vma_lock
;
143 struct list_head vma_list
;
144 struct rw_semaphore memory_lock
;
147 #define is_intx(vdev) (vdev->irq_type == VFIO_PCI_INTX_IRQ_INDEX)
148 #define is_msi(vdev) (vdev->irq_type == VFIO_PCI_MSI_IRQ_INDEX)
149 #define is_msix(vdev) (vdev->irq_type == VFIO_PCI_MSIX_IRQ_INDEX)
150 #define is_irq_none(vdev) (!(is_intx(vdev) || is_msi(vdev) || is_msix(vdev)))
151 #define irq_is(vdev, type) (vdev->irq_type == type)
153 extern void vfio_pci_intx_mask(struct vfio_pci_device
*vdev
);
154 extern void vfio_pci_intx_unmask(struct vfio_pci_device
*vdev
);
156 extern int vfio_pci_set_irqs_ioctl(struct vfio_pci_device
*vdev
,
157 uint32_t flags
, unsigned index
,
158 unsigned start
, unsigned count
, void *data
);
160 extern ssize_t
vfio_pci_config_rw(struct vfio_pci_device
*vdev
,
161 char __user
*buf
, size_t count
,
162 loff_t
*ppos
, bool iswrite
);
164 extern ssize_t
vfio_pci_bar_rw(struct vfio_pci_device
*vdev
, char __user
*buf
,
165 size_t count
, loff_t
*ppos
, bool iswrite
);
167 extern ssize_t
vfio_pci_vga_rw(struct vfio_pci_device
*vdev
, char __user
*buf
,
168 size_t count
, loff_t
*ppos
, bool iswrite
);
170 extern long vfio_pci_ioeventfd(struct vfio_pci_device
*vdev
, loff_t offset
,
171 uint64_t data
, int count
, int fd
);
173 extern int vfio_pci_init_perm_bits(void);
174 extern void vfio_pci_uninit_perm_bits(void);
176 extern int vfio_config_init(struct vfio_pci_device
*vdev
);
177 extern void vfio_config_free(struct vfio_pci_device
*vdev
);
179 extern int vfio_pci_register_dev_region(struct vfio_pci_device
*vdev
,
180 unsigned int type
, unsigned int subtype
,
181 const struct vfio_pci_regops
*ops
,
182 size_t size
, u32 flags
, void *data
);
184 extern int vfio_pci_set_power_state(struct vfio_pci_device
*vdev
,
187 extern bool __vfio_pci_memory_enabled(struct vfio_pci_device
*vdev
);
188 extern void vfio_pci_zap_and_down_write_memory_lock(struct vfio_pci_device
190 extern u16
vfio_pci_memory_lock_and_enable(struct vfio_pci_device
*vdev
);
191 extern void vfio_pci_memory_unlock_and_restore(struct vfio_pci_device
*vdev
,
194 #ifdef CONFIG_VFIO_PCI_IGD
195 extern int vfio_pci_igd_init(struct vfio_pci_device
*vdev
);
197 static inline int vfio_pci_igd_init(struct vfio_pci_device
*vdev
)
202 #ifdef CONFIG_VFIO_PCI_NVLINK2
203 extern int vfio_pci_nvdia_v100_nvlink2_init(struct vfio_pci_device
*vdev
);
204 extern int vfio_pci_ibm_npu2_init(struct vfio_pci_device
*vdev
);
206 static inline int vfio_pci_nvdia_v100_nvlink2_init(struct vfio_pci_device
*vdev
)
211 static inline int vfio_pci_ibm_npu2_init(struct vfio_pci_device
*vdev
)
217 #ifdef CONFIG_VFIO_PCI_ZDEV
218 extern int vfio_pci_info_zdev_add_caps(struct vfio_pci_device
*vdev
,
219 struct vfio_info_cap
*caps
);
221 static inline int vfio_pci_info_zdev_add_caps(struct vfio_pci_device
*vdev
,
222 struct vfio_info_cap
*caps
)
228 #endif /* VFIO_PCI_PRIVATE_H */