]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/vfio.h
Merge tag 'for-linus-urgent' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[mirror_ubuntu-jammy-kernel.git] / include / linux / vfio.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
cba3345c
AW
2/*
3 * VFIO API definition
4 *
5 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
6 * Author: Alex Williamson <alex.williamson@redhat.com>
cba3345c
AW
7 */
8#ifndef VFIO_H
9#define VFIO_H
10
cba3345c
AW
11
12#include <linux/iommu.h>
13#include <linux/mm.h>
7e992d69
AM
14#include <linux/workqueue.h>
15#include <linux/poll.h>
607ca46e 16#include <uapi/linux/vfio.h>
cba3345c 17
0bfc6a4e
JG
18struct vfio_device {
19 struct device *dev;
20 const struct vfio_device_ops *ops;
21 struct vfio_group *group;
22
23 /* Members below here are private, not for driver use */
24 refcount_t refcount;
25 struct completion comp;
26 struct list_head group_next;
0bfc6a4e
JG
27};
28
cba3345c
AW
29/**
30 * struct vfio_device_ops - VFIO bus driver device callbacks
31 *
32 * @open: Called when userspace creates new file descriptor for device
33 * @release: Called when userspace releases file descriptor for device
34 * @read: Perform read(2) on device file descriptor
35 * @write: Perform write(2) on device file descriptor
36 * @ioctl: Perform ioctl(2) on device file descriptor, supporting VFIO_DEVICE_*
37 * operations documented below
38 * @mmap: Perform mmap(2) on a region of the device file descriptor
13060b64 39 * @request: Request for the bus driver to release the device
5f3874c2
AW
40 * @match: Optional device name match callback (return: 0 for no-match, >0 for
41 * match, -errno for abort (ex. match with insufficient or incorrect
42 * additional args)
cba3345c
AW
43 */
44struct vfio_device_ops {
45 char *name;
6df62c5b
JG
46 int (*open)(struct vfio_device *vdev);
47 void (*release)(struct vfio_device *vdev);
48 ssize_t (*read)(struct vfio_device *vdev, char __user *buf,
cba3345c 49 size_t count, loff_t *ppos);
6df62c5b 50 ssize_t (*write)(struct vfio_device *vdev, const char __user *buf,
cba3345c 51 size_t count, loff_t *size);
6df62c5b 52 long (*ioctl)(struct vfio_device *vdev, unsigned int cmd,
cba3345c 53 unsigned long arg);
6df62c5b
JG
54 int (*mmap)(struct vfio_device *vdev, struct vm_area_struct *vma);
55 void (*request)(struct vfio_device *vdev, unsigned int count);
56 int (*match)(struct vfio_device *vdev, char *buf);
cba3345c
AW
57};
58
03a76b60
AW
59extern struct iommu_group *vfio_iommu_group_get(struct device *dev);
60extern void vfio_iommu_group_put(struct iommu_group *group, struct device *dev);
61
0bfc6a4e 62void vfio_init_group_dev(struct vfio_device *device, struct device *dev,
1e04ec14 63 const struct vfio_device_ops *ops);
0bfc6a4e 64int vfio_register_group_dev(struct vfio_device *device);
0bfc6a4e 65void vfio_unregister_group_dev(struct vfio_device *device);
44f50716
VMP
66extern struct vfio_device *vfio_device_get_from_dev(struct device *dev);
67extern void vfio_device_put(struct vfio_device *device);
cba3345c 68
ec5e3294
SS
69/* events for the backend driver notify callback */
70enum vfio_iommu_notify_type {
71 VFIO_IOMMU_CONTAINER_CLOSE = 0,
72};
73
cba3345c
AW
74/**
75 * struct vfio_iommu_driver_ops - VFIO IOMMU driver callbacks
76 */
77struct vfio_iommu_driver_ops {
78 char *name;
79 struct module *owner;
80 void *(*open)(unsigned long arg);
81 void (*release)(void *iommu_data);
82 ssize_t (*read)(void *iommu_data, char __user *buf,
83 size_t count, loff_t *ppos);
84 ssize_t (*write)(void *iommu_data, const char __user *buf,
85 size_t count, loff_t *size);
86 long (*ioctl)(void *iommu_data, unsigned int cmd,
87 unsigned long arg);
88 int (*mmap)(void *iommu_data, struct vm_area_struct *vma);
89 int (*attach_group)(void *iommu_data,
90 struct iommu_group *group);
91 void (*detach_group)(void *iommu_data,
92 struct iommu_group *group);
95fc87b4
KW
93 int (*pin_pages)(void *iommu_data,
94 struct iommu_group *group,
95 unsigned long *user_pfn,
2169037d
KW
96 int npage, int prot,
97 unsigned long *phys_pfn);
98 int (*unpin_pages)(void *iommu_data,
99 unsigned long *user_pfn, int npage);
c086de81 100 int (*register_notifier)(void *iommu_data,
22195cbd 101 unsigned long *events,
c086de81
KW
102 struct notifier_block *nb);
103 int (*unregister_notifier)(void *iommu_data,
104 struct notifier_block *nb);
8d46c0cc
YZ
105 int (*dma_rw)(void *iommu_data, dma_addr_t user_iova,
106 void *data, size_t count, bool write);
bdfae1c9
LB
107 struct iommu_domain *(*group_iommu_domain)(void *iommu_data,
108 struct iommu_group *group);
ec5e3294
SS
109 void (*notify)(void *iommu_data,
110 enum vfio_iommu_notify_type event);
cba3345c
AW
111};
112
113extern int vfio_register_iommu_driver(const struct vfio_iommu_driver_ops *ops);
114
115extern void vfio_unregister_iommu_driver(
116 const struct vfio_iommu_driver_ops *ops);
117
6cdd9782
AK
118/*
119 * External user API
120 */
121extern struct vfio_group *vfio_group_get_external_user(struct file *filep);
122extern void vfio_group_put_external_user(struct vfio_group *group);
c0560f51
YZ
123extern struct vfio_group *vfio_group_get_external_user_from_dev(struct device
124 *dev);
5d6dee80
AW
125extern bool vfio_external_group_match_file(struct vfio_group *group,
126 struct file *filep);
6cdd9782 127extern int vfio_external_user_iommu_id(struct vfio_group *group);
88d7ab89
AW
128extern long vfio_external_check_extension(struct vfio_group *group,
129 unsigned long arg);
6cdd9782 130
2169037d
KW
131#define VFIO_PIN_PAGES_MAX_ENTRIES (PAGE_SIZE/sizeof(unsigned long))
132
133extern int vfio_pin_pages(struct device *dev, unsigned long *user_pfn,
134 int npage, int prot, unsigned long *phys_pfn);
135extern int vfio_unpin_pages(struct device *dev, unsigned long *user_pfn,
136 int npage);
137
40280cf7
YZ
138extern int vfio_group_pin_pages(struct vfio_group *group,
139 unsigned long *user_iova_pfn, int npage,
140 int prot, unsigned long *phys_pfn);
141extern int vfio_group_unpin_pages(struct vfio_group *group,
142 unsigned long *user_iova_pfn, int npage);
143
8d46c0cc
YZ
144extern int vfio_dma_rw(struct vfio_group *group, dma_addr_t user_iova,
145 void *data, size_t len, bool write);
146
bdfae1c9
LB
147extern struct iommu_domain *vfio_group_iommu_domain(struct vfio_group *group);
148
22195cbd
JS
149/* each type has independent events */
150enum vfio_notify_type {
151 VFIO_IOMMU_NOTIFY = 0,
ccd46dba 152 VFIO_GROUP_NOTIFY = 1,
22195cbd
JS
153};
154
155/* events for VFIO_IOMMU_NOTIFY */
156#define VFIO_IOMMU_NOTIFY_DMA_UNMAP BIT(0)
c086de81 157
ccd46dba
JS
158/* events for VFIO_GROUP_NOTIFY */
159#define VFIO_GROUP_NOTIFY_SET_KVM BIT(0)
160
c086de81 161extern int vfio_register_notifier(struct device *dev,
22195cbd
JS
162 enum vfio_notify_type type,
163 unsigned long *required_events,
c086de81 164 struct notifier_block *nb);
c086de81 165extern int vfio_unregister_notifier(struct device *dev,
22195cbd 166 enum vfio_notify_type type,
c086de81
KW
167 struct notifier_block *nb);
168
ccd46dba
JS
169struct kvm;
170extern void vfio_group_set_kvm(struct vfio_group *group, struct kvm *kvm);
171
d7a8d5ed
AW
172/*
173 * Sub-module helpers
174 */
175struct vfio_info_cap {
176 struct vfio_info_cap_header *buf;
177 size_t size;
178};
179extern struct vfio_info_cap_header *vfio_info_cap_add(
180 struct vfio_info_cap *caps, size_t size, u16 id, u16 version);
181extern void vfio_info_cap_shift(struct vfio_info_cap *caps, size_t offset);
182
b3c0a866 183extern int vfio_info_add_capability(struct vfio_info_cap *caps,
dda01f78
AW
184 struct vfio_info_cap_header *cap,
185 size_t size);
b3c0a866 186
c747f08a
KW
187extern int vfio_set_irqs_validate_and_prepare(struct vfio_irq_set *hdr,
188 int num_irqs, int max_irq_type,
189 size_t *data_size);
190
92d18a68 191struct pci_dev;
bb67b496 192#if IS_ENABLED(CONFIG_VFIO_SPAPR_EEH)
9b936c96 193extern void vfio_spapr_pci_eeh_open(struct pci_dev *pdev);
1b69be5e
GS
194extern void vfio_spapr_pci_eeh_release(struct pci_dev *pdev);
195extern long vfio_spapr_iommu_eeh_ioctl(struct iommu_group *group,
196 unsigned int cmd,
197 unsigned long arg);
198#else
9b936c96 199static inline void vfio_spapr_pci_eeh_open(struct pci_dev *pdev)
1b69be5e 200{
1b69be5e
GS
201}
202
203static inline void vfio_spapr_pci_eeh_release(struct pci_dev *pdev)
204{
205}
206
207static inline long vfio_spapr_iommu_eeh_ioctl(struct iommu_group *group,
208 unsigned int cmd,
209 unsigned long arg)
210{
211 return -ENOTTY;
212}
bb67b496 213#endif /* CONFIG_VFIO_SPAPR_EEH */
7e992d69
AM
214
215/*
216 * IRQfd - generic
217 */
218struct virqfd {
219 void *opaque;
220 struct eventfd_ctx *eventfd;
221 int (*handler)(void *, void *);
222 void (*thread)(void *, void *);
223 void *data;
224 struct work_struct inject;
ac6424b9 225 wait_queue_entry_t wait;
7e992d69
AM
226 poll_table pt;
227 struct work_struct shutdown;
228 struct virqfd **pvirqfd;
229};
230
7e992d69
AM
231extern int vfio_virqfd_enable(void *opaque,
232 int (*handler)(void *, void *),
233 void (*thread)(void *, void *),
234 void *data, struct virqfd **pvirqfd, int fd);
235extern void vfio_virqfd_disable(struct virqfd **pvirqfd);
236
cba3345c 237#endif /* VFIO_H */