2 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
3 * Author: Alex Williamson <alex.williamson@redhat.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Derived from original vfio:
10 * Copyright 2010 Cisco Systems, Inc. All rights reserved.
11 * Author: Tom Lyon, pugs@cisco.com
14 #include <linux/mutex.h>
15 #include <linux/pci.h>
16 #include <linux/irqbypass.h>
17 #include <linux/types.h>
19 #ifndef VFIO_PCI_PRIVATE_H
20 #define VFIO_PCI_PRIVATE_H
22 #define VFIO_PCI_OFFSET_SHIFT 40
24 #define VFIO_PCI_OFFSET_TO_INDEX(off) (off >> VFIO_PCI_OFFSET_SHIFT)
25 #define VFIO_PCI_INDEX_TO_OFFSET(index) ((u64)(index) << VFIO_PCI_OFFSET_SHIFT)
26 #define VFIO_PCI_OFFSET_MASK (((u64)(1) << VFIO_PCI_OFFSET_SHIFT) - 1)
28 /* Special capability IDs predefined access */
29 #define PCI_CAP_ID_INVALID 0xFF /* default raw access */
30 #define PCI_CAP_ID_INVALID_VIRT 0xFE /* default virt access */
32 /* Cap maximum number of ioeventfds per device (arbitrary) */
33 #define VFIO_PCI_IOEVENTFD_MAX 1000
35 struct vfio_pci_ioeventfd
{
36 struct list_head next
;
37 struct virqfd
*virqfd
;
45 struct vfio_pci_irq_ctx
{
46 struct eventfd_ctx
*trigger
;
47 struct virqfd
*unmask
;
51 struct irq_bypass_producer producer
;
54 struct vfio_pci_device
;
55 struct vfio_pci_region
;
57 struct vfio_pci_regops
{
58 size_t (*rw
)(struct vfio_pci_device
*vdev
, char __user
*buf
,
59 size_t count
, loff_t
*ppos
, bool iswrite
);
60 void (*release
)(struct vfio_pci_device
*vdev
,
61 struct vfio_pci_region
*region
);
64 struct vfio_pci_region
{
67 const struct vfio_pci_regops
*ops
;
73 struct vfio_pci_dummy_resource
{
74 struct resource resource
;
76 struct list_head res_next
;
79 struct vfio_pci_device
{
81 void __iomem
*barmap
[PCI_STD_RESOURCE_END
+ 1];
82 bool bar_mmap_supported
[PCI_STD_RESOURCE_END
+ 1];
85 struct perm_bits
*msi_perm
;
88 struct vfio_pci_irq_ctx
*ctx
;
92 struct vfio_pci_region
*region
;
106 struct pci_saved_state
*pci_saved_state
;
109 struct eventfd_ctx
*err_trigger
;
110 struct eventfd_ctx
*req_trigger
;
111 struct list_head dummy_resources_list
;
112 struct mutex ioeventfds_lock
;
113 struct list_head ioeventfds_list
;
116 #define is_intx(vdev) (vdev->irq_type == VFIO_PCI_INTX_IRQ_INDEX)
117 #define is_msi(vdev) (vdev->irq_type == VFIO_PCI_MSI_IRQ_INDEX)
118 #define is_msix(vdev) (vdev->irq_type == VFIO_PCI_MSIX_IRQ_INDEX)
119 #define is_irq_none(vdev) (!(is_intx(vdev) || is_msi(vdev) || is_msix(vdev)))
120 #define irq_is(vdev, type) (vdev->irq_type == type)
122 extern void vfio_pci_intx_mask(struct vfio_pci_device
*vdev
);
123 extern void vfio_pci_intx_unmask(struct vfio_pci_device
*vdev
);
125 extern int vfio_pci_set_irqs_ioctl(struct vfio_pci_device
*vdev
,
126 uint32_t flags
, unsigned index
,
127 unsigned start
, unsigned count
, void *data
);
129 extern ssize_t
vfio_pci_config_rw(struct vfio_pci_device
*vdev
,
130 char __user
*buf
, size_t count
,
131 loff_t
*ppos
, bool iswrite
);
133 extern ssize_t
vfio_pci_bar_rw(struct vfio_pci_device
*vdev
, char __user
*buf
,
134 size_t count
, loff_t
*ppos
, bool iswrite
);
136 extern ssize_t
vfio_pci_vga_rw(struct vfio_pci_device
*vdev
, char __user
*buf
,
137 size_t count
, loff_t
*ppos
, bool iswrite
);
139 extern long vfio_pci_ioeventfd(struct vfio_pci_device
*vdev
, loff_t offset
,
140 uint64_t data
, int count
, int fd
);
142 extern int vfio_pci_init_perm_bits(void);
143 extern void vfio_pci_uninit_perm_bits(void);
145 extern int vfio_config_init(struct vfio_pci_device
*vdev
);
146 extern void vfio_config_free(struct vfio_pci_device
*vdev
);
148 extern int vfio_pci_register_dev_region(struct vfio_pci_device
*vdev
,
149 unsigned int type
, unsigned int subtype
,
150 const struct vfio_pci_regops
*ops
,
151 size_t size
, u32 flags
, void *data
);
152 #ifdef CONFIG_VFIO_PCI_IGD
153 extern int vfio_pci_igd_init(struct vfio_pci_device
*vdev
);
155 static inline int vfio_pci_igd_init(struct vfio_pci_device
*vdev
)
160 #endif /* VFIO_PCI_PRIVATE_H */