xref: /openbmc/linux/include/uapi/linux/vhost.h (revision 3b688d7a)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells #ifndef _LINUX_VHOST_H
3607ca46eSDavid Howells #define _LINUX_VHOST_H
4607ca46eSDavid Howells /* Userspace interface for in-kernel virtio accelerators. */
5607ca46eSDavid Howells 
6607ca46eSDavid Howells /* vhost is used to reduce the number of system calls involved in virtio.
7607ca46eSDavid Howells  *
8607ca46eSDavid Howells  * Existing virtio net code is used in the guest without modification.
9607ca46eSDavid Howells  *
10607ca46eSDavid Howells  * This header includes interface used by userspace hypervisor for
11607ca46eSDavid Howells  * device configuration.
12607ca46eSDavid Howells  */
13607ca46eSDavid Howells 
144b867132SPaolo Bonzini #include <linux/vhost_types.h>
15607ca46eSDavid Howells #include <linux/types.h>
16607ca46eSDavid Howells #include <linux/ioctl.h>
17607ca46eSDavid Howells 
18776f3950SZhu Lingshan #define VHOST_FILE_UNBIND -1
19776f3950SZhu Lingshan 
20607ca46eSDavid Howells /* ioctls */
21607ca46eSDavid Howells 
22607ca46eSDavid Howells #define VHOST_VIRTIO 0xAF
23607ca46eSDavid Howells 
24607ca46eSDavid Howells /* Features bitmask for forward compatibility.  Transport bits are used for
25607ca46eSDavid Howells  * vhost specific features. */
26607ca46eSDavid Howells #define VHOST_GET_FEATURES	_IOR(VHOST_VIRTIO, 0x00, __u64)
27607ca46eSDavid Howells #define VHOST_SET_FEATURES	_IOW(VHOST_VIRTIO, 0x00, __u64)
28607ca46eSDavid Howells 
29607ca46eSDavid Howells /* Set current process as the (exclusive) owner of this file descriptor.  This
30607ca46eSDavid Howells  * must be called before any other vhost command.  Further calls to
31607ca46eSDavid Howells  * VHOST_OWNER_SET fail until VHOST_OWNER_RESET is called. */
32607ca46eSDavid Howells #define VHOST_SET_OWNER _IO(VHOST_VIRTIO, 0x01)
33607ca46eSDavid Howells /* Give up ownership, and reset the device to default values.
34607ca46eSDavid Howells  * Allows subsequent call to VHOST_OWNER_SET to succeed. */
35607ca46eSDavid Howells #define VHOST_RESET_OWNER _IO(VHOST_VIRTIO, 0x02)
36607ca46eSDavid Howells 
37607ca46eSDavid Howells /* Set up/modify memory layout */
38607ca46eSDavid Howells #define VHOST_SET_MEM_TABLE	_IOW(VHOST_VIRTIO, 0x03, struct vhost_memory)
39607ca46eSDavid Howells 
40607ca46eSDavid Howells /* Write logging setup. */
41607ca46eSDavid Howells /* Memory writes can optionally be logged by setting bit at an offset
42607ca46eSDavid Howells  * (calculated from the physical address) from specified log base.
43607ca46eSDavid Howells  * The bit is set using an atomic 32 bit operation. */
44607ca46eSDavid Howells /* Set base address for logging. */
45607ca46eSDavid Howells #define VHOST_SET_LOG_BASE _IOW(VHOST_VIRTIO, 0x04, __u64)
46607ca46eSDavid Howells /* Specify an eventfd file descriptor to signal on log write. */
47607ca46eSDavid Howells #define VHOST_SET_LOG_FD _IOW(VHOST_VIRTIO, 0x07, int)
48607ca46eSDavid Howells 
49607ca46eSDavid Howells /* Ring setup. */
50607ca46eSDavid Howells /* Set number of descriptors in ring. This parameter can not
51607ca46eSDavid Howells  * be modified while ring is running (bound to a device). */
52607ca46eSDavid Howells #define VHOST_SET_VRING_NUM _IOW(VHOST_VIRTIO, 0x10, struct vhost_vring_state)
53607ca46eSDavid Howells /* Set addresses for the ring. */
54607ca46eSDavid Howells #define VHOST_SET_VRING_ADDR _IOW(VHOST_VIRTIO, 0x11, struct vhost_vring_addr)
55607ca46eSDavid Howells /* Base value where queue looks for available descriptors */
56607ca46eSDavid Howells #define VHOST_SET_VRING_BASE _IOW(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
57607ca46eSDavid Howells /* Get accessor: reads index, writes value in num */
58607ca46eSDavid Howells #define VHOST_GET_VRING_BASE _IOWR(VHOST_VIRTIO, 0x12, struct vhost_vring_state)
59607ca46eSDavid Howells 
602751c988SGreg Kurz /* Set the vring byte order in num. Valid values are VHOST_VRING_LITTLE_ENDIAN
612751c988SGreg Kurz  * or VHOST_VRING_BIG_ENDIAN (other values return -EINVAL).
622751c988SGreg Kurz  * The byte order cannot be changed while the device is active: trying to do so
632751c988SGreg Kurz  * returns -EBUSY.
642751c988SGreg Kurz  * This is a legacy only API that is simply ignored when VIRTIO_F_VERSION_1 is
652751c988SGreg Kurz  * set.
662751c988SGreg Kurz  * Not all kernel configurations support this ioctl, but all configurations that
672751c988SGreg Kurz  * support SET also support GET.
682751c988SGreg Kurz  */
692751c988SGreg Kurz #define VHOST_VRING_LITTLE_ENDIAN 0
702751c988SGreg Kurz #define VHOST_VRING_BIG_ENDIAN 1
712751c988SGreg Kurz #define VHOST_SET_VRING_ENDIAN _IOW(VHOST_VIRTIO, 0x13, struct vhost_vring_state)
722751c988SGreg Kurz #define VHOST_GET_VRING_ENDIAN _IOW(VHOST_VIRTIO, 0x14, struct vhost_vring_state)
732751c988SGreg Kurz 
74607ca46eSDavid Howells /* The following ioctls use eventfd file descriptors to signal and poll
75607ca46eSDavid Howells  * for events. */
76607ca46eSDavid Howells 
77607ca46eSDavid Howells /* Set eventfd to poll for added buffers */
78607ca46eSDavid Howells #define VHOST_SET_VRING_KICK _IOW(VHOST_VIRTIO, 0x20, struct vhost_vring_file)
79607ca46eSDavid Howells /* Set eventfd to signal when buffers have beed used */
80607ca46eSDavid Howells #define VHOST_SET_VRING_CALL _IOW(VHOST_VIRTIO, 0x21, struct vhost_vring_file)
81607ca46eSDavid Howells /* Set eventfd to signal an error */
82607ca46eSDavid Howells #define VHOST_SET_VRING_ERR _IOW(VHOST_VIRTIO, 0x22, struct vhost_vring_file)
8303088137SJason Wang /* Set busy loop timeout (in us) */
8403088137SJason Wang #define VHOST_SET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x23,	\
8503088137SJason Wang 					 struct vhost_vring_state)
8603088137SJason Wang /* Get busy loop timeout (in us) */
8703088137SJason Wang #define VHOST_GET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x24,	\
8803088137SJason Wang 					 struct vhost_vring_state)
89607ca46eSDavid Howells 
90429711aeSJason Wang /* Set or get vhost backend capability */
91429711aeSJason Wang 
92429711aeSJason Wang #define VHOST_SET_BACKEND_FEATURES _IOW(VHOST_VIRTIO, 0x25, __u64)
93c48300c9SGleb Fotengauer-Malinovskiy #define VHOST_GET_BACKEND_FEATURES _IOR(VHOST_VIRTIO, 0x26, __u64)
94429711aeSJason Wang 
95607ca46eSDavid Howells /* VHOST_NET specific defines */
96607ca46eSDavid Howells 
97607ca46eSDavid Howells /* Attach virtio net ring to a raw socket, or tap device.
98607ca46eSDavid Howells  * The socket must be already bound to an ethernet device, this device will be
99607ca46eSDavid Howells  * used for transmit.  Pass fd -1 to unbind from the socket and the transmit
100607ca46eSDavid Howells  * device.  This can be used to stop the ring (e.g. for migration). */
101607ca46eSDavid Howells #define VHOST_NET_SET_BACKEND _IOW(VHOST_VIRTIO, 0x30, struct vhost_vring_file)
102607ca46eSDavid Howells 
1034b867132SPaolo Bonzini /* VHOST_SCSI specific defines */
1045012a3a3SMichael S. Tsirkin 
1055012a3a3SMichael S. Tsirkin #define VHOST_SCSI_SET_ENDPOINT _IOW(VHOST_VIRTIO, 0x40, struct vhost_scsi_target)
1065012a3a3SMichael S. Tsirkin #define VHOST_SCSI_CLEAR_ENDPOINT _IOW(VHOST_VIRTIO, 0x41, struct vhost_scsi_target)
1075012a3a3SMichael S. Tsirkin /* Changing this breaks userspace. */
1085012a3a3SMichael S. Tsirkin #define VHOST_SCSI_GET_ABI_VERSION _IOW(VHOST_VIRTIO, 0x42, int)
1095012a3a3SMichael S. Tsirkin /* Set and get the events missed flag */
1105012a3a3SMichael S. Tsirkin #define VHOST_SCSI_SET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x43, __u32)
1115012a3a3SMichael S. Tsirkin #define VHOST_SCSI_GET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x44, __u32)
1125012a3a3SMichael S. Tsirkin 
113433fc58eSAsias He /* VHOST_VSOCK specific defines */
114433fc58eSAsias He 
115433fc58eSAsias He #define VHOST_VSOCK_SET_GUEST_CID	_IOW(VHOST_VIRTIO, 0x60, __u64)
116433fc58eSAsias He #define VHOST_VSOCK_SET_RUNNING		_IOW(VHOST_VIRTIO, 0x61, int)
117433fc58eSAsias He 
1184c8cf318STiwei Bie /* VHOST_VDPA specific defines */
1194c8cf318STiwei Bie 
1204c8cf318STiwei Bie /* Get the device id. The device ids follow the same definition of
1214c8cf318STiwei Bie  * the device id defined in virtio-spec.
1224c8cf318STiwei Bie  */
1234c8cf318STiwei Bie #define VHOST_VDPA_GET_DEVICE_ID	_IOR(VHOST_VIRTIO, 0x70, __u32)
1244c8cf318STiwei Bie /* Get and set the status. The status bits follow the same definition
1254c8cf318STiwei Bie  * of the device status defined in virtio-spec.
1264c8cf318STiwei Bie  */
1274c8cf318STiwei Bie #define VHOST_VDPA_GET_STATUS		_IOR(VHOST_VIRTIO, 0x71, __u8)
1284c8cf318STiwei Bie #define VHOST_VDPA_SET_STATUS		_IOW(VHOST_VIRTIO, 0x72, __u8)
1294c8cf318STiwei Bie /* Get and set the device config. The device config follows the same
1304c8cf318STiwei Bie  * definition of the device config defined in virtio-spec.
1314c8cf318STiwei Bie  */
1324c8cf318STiwei Bie #define VHOST_VDPA_GET_CONFIG		_IOR(VHOST_VIRTIO, 0x73, \
1334c8cf318STiwei Bie 					     struct vhost_vdpa_config)
1344c8cf318STiwei Bie #define VHOST_VDPA_SET_CONFIG		_IOW(VHOST_VIRTIO, 0x74, \
1354c8cf318STiwei Bie 					     struct vhost_vdpa_config)
1364c8cf318STiwei Bie /* Enable/disable the ring. */
1374c8cf318STiwei Bie #define VHOST_VDPA_SET_VRING_ENABLE	_IOW(VHOST_VIRTIO, 0x75, \
1384c8cf318STiwei Bie 					     struct vhost_vring_state)
1394c8cf318STiwei Bie /* Get the max ring size. */
1404c8cf318STiwei Bie #define VHOST_VDPA_GET_VRING_NUM	_IOR(VHOST_VIRTIO, 0x76, __u16)
1414c8cf318STiwei Bie 
142776f3950SZhu Lingshan /* Set event fd for config interrupt*/
143776f3950SZhu Lingshan #define VHOST_VDPA_SET_CONFIG_CALL	_IOW(VHOST_VIRTIO, 0x77, int)
1441b48dc03SJason Wang 
1451b48dc03SJason Wang /* Get the valid iova range */
1461b48dc03SJason Wang #define VHOST_VDPA_GET_IOVA_RANGE	_IOR(VHOST_VIRTIO, 0x78, \
1471b48dc03SJason Wang 					     struct vhost_vdpa_iova_range)
148a61280ddSLongpeng /* Get the config size */
149a61280ddSLongpeng #define VHOST_VDPA_GET_CONFIG_SIZE	_IOR(VHOST_VIRTIO, 0x79, __u32)
150a61280ddSLongpeng 
151b04d910aSLongpeng /* Get the count of all virtqueues */
152b04d910aSLongpeng #define VHOST_VDPA_GET_VQS_COUNT	_IOR(VHOST_VIRTIO, 0x80, __u32)
153b04d910aSLongpeng 
1543ace88bdSGautam Dawar /* Get the number of virtqueue groups. */
1553ace88bdSGautam Dawar #define VHOST_VDPA_GET_GROUP_NUM	_IOR(VHOST_VIRTIO, 0x81, __u32)
1563ace88bdSGautam Dawar 
157a0c95f20SGautam Dawar /* Get the number of address spaces. */
158a0c95f20SGautam Dawar #define VHOST_VDPA_GET_AS_NUM		_IOR(VHOST_VIRTIO, 0x7A, unsigned int)
1592d1fcb77SGautam Dawar 
1602d1fcb77SGautam Dawar /* Get the group for a virtqueue: read index, write group in num,
1612d1fcb77SGautam Dawar  * The virtqueue index is stored in the index field of
1622d1fcb77SGautam Dawar  * vhost_vring_state. The group for this specific virtqueue is
1632d1fcb77SGautam Dawar  * returned via num field of vhost_vring_state.
1642d1fcb77SGautam Dawar  */
1652d1fcb77SGautam Dawar #define VHOST_VDPA_GET_VRING_GROUP	_IOWR(VHOST_VIRTIO, 0x7B,	\
1662d1fcb77SGautam Dawar 					      struct vhost_vring_state)
16784d7c8fdSGautam Dawar /* Set the ASID for a virtqueue group. The group index is stored in
16884d7c8fdSGautam Dawar  * the index field of vhost_vring_state, the ASID associated with this
16984d7c8fdSGautam Dawar  * group is stored at num field of vhost_vring_state.
17084d7c8fdSGautam Dawar  */
17184d7c8fdSGautam Dawar #define VHOST_VDPA_SET_GROUP_ASID	_IOW(VHOST_VIRTIO, 0x7C, \
17284d7c8fdSGautam Dawar 					     struct vhost_vring_state)
17384d7c8fdSGautam Dawar 
174f345a014SEugenio Pérez /* Suspend a device so it does not process virtqueue requests anymore
175f345a014SEugenio Pérez  *
176f345a014SEugenio Pérez  * After the return of ioctl the device must preserve all the necessary state
177f345a014SEugenio Pérez  * (the virtqueue vring base plus the possible device specific states) that is
178f345a014SEugenio Pérez  * required for restoring in the future. The device must not change its
179f345a014SEugenio Pérez  * configuration after that point.
180f345a014SEugenio Pérez  */
181f345a014SEugenio Pérez #define VHOST_VDPA_SUSPEND		_IO(VHOST_VIRTIO, 0x7D)
182f345a014SEugenio Pérez 
183*3b688d7aSSebastien Boeuf /* Resume a device so it can resume processing virtqueue requests
184*3b688d7aSSebastien Boeuf  *
185*3b688d7aSSebastien Boeuf  * After the return of this ioctl the device will have restored all the
186*3b688d7aSSebastien Boeuf  * necessary states and it is fully operational to continue processing the
187*3b688d7aSSebastien Boeuf  * virtqueue descriptors.
188*3b688d7aSSebastien Boeuf  */
189*3b688d7aSSebastien Boeuf #define VHOST_VDPA_RESUME		_IO(VHOST_VIRTIO, 0x7E)
190*3b688d7aSSebastien Boeuf 
191607ca46eSDavid Howells #endif
192