xref: /openbmc/linux/include/uapi/linux/vhost.h (revision 25abc060)
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 /* Use message type V2 */
93429711aeSJason Wang #define VHOST_BACKEND_F_IOTLB_MSG_V2 0x1
9425abc060SJason Wang /* IOTLB can accept batching hints */
9525abc060SJason Wang #define VHOST_BACKEND_F_IOTLB_BATCH  0x2
96429711aeSJason Wang 
97429711aeSJason Wang #define VHOST_SET_BACKEND_FEATURES _IOW(VHOST_VIRTIO, 0x25, __u64)
98c48300c9SGleb Fotengauer-Malinovskiy #define VHOST_GET_BACKEND_FEATURES _IOR(VHOST_VIRTIO, 0x26, __u64)
99429711aeSJason Wang 
100607ca46eSDavid Howells /* VHOST_NET specific defines */
101607ca46eSDavid Howells 
102607ca46eSDavid Howells /* Attach virtio net ring to a raw socket, or tap device.
103607ca46eSDavid Howells  * The socket must be already bound to an ethernet device, this device will be
104607ca46eSDavid Howells  * used for transmit.  Pass fd -1 to unbind from the socket and the transmit
105607ca46eSDavid Howells  * device.  This can be used to stop the ring (e.g. for migration). */
106607ca46eSDavid Howells #define VHOST_NET_SET_BACKEND _IOW(VHOST_VIRTIO, 0x30, struct vhost_vring_file)
107607ca46eSDavid Howells 
1084b867132SPaolo Bonzini /* VHOST_SCSI specific defines */
1095012a3a3SMichael S. Tsirkin 
1105012a3a3SMichael S. Tsirkin #define VHOST_SCSI_SET_ENDPOINT _IOW(VHOST_VIRTIO, 0x40, struct vhost_scsi_target)
1115012a3a3SMichael S. Tsirkin #define VHOST_SCSI_CLEAR_ENDPOINT _IOW(VHOST_VIRTIO, 0x41, struct vhost_scsi_target)
1125012a3a3SMichael S. Tsirkin /* Changing this breaks userspace. */
1135012a3a3SMichael S. Tsirkin #define VHOST_SCSI_GET_ABI_VERSION _IOW(VHOST_VIRTIO, 0x42, int)
1145012a3a3SMichael S. Tsirkin /* Set and get the events missed flag */
1155012a3a3SMichael S. Tsirkin #define VHOST_SCSI_SET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x43, __u32)
1165012a3a3SMichael S. Tsirkin #define VHOST_SCSI_GET_EVENTS_MISSED _IOW(VHOST_VIRTIO, 0x44, __u32)
1175012a3a3SMichael S. Tsirkin 
118433fc58eSAsias He /* VHOST_VSOCK specific defines */
119433fc58eSAsias He 
120433fc58eSAsias He #define VHOST_VSOCK_SET_GUEST_CID	_IOW(VHOST_VIRTIO, 0x60, __u64)
121433fc58eSAsias He #define VHOST_VSOCK_SET_RUNNING		_IOW(VHOST_VIRTIO, 0x61, int)
122433fc58eSAsias He 
1234c8cf318STiwei Bie /* VHOST_VDPA specific defines */
1244c8cf318STiwei Bie 
1254c8cf318STiwei Bie /* Get the device id. The device ids follow the same definition of
1264c8cf318STiwei Bie  * the device id defined in virtio-spec.
1274c8cf318STiwei Bie  */
1284c8cf318STiwei Bie #define VHOST_VDPA_GET_DEVICE_ID	_IOR(VHOST_VIRTIO, 0x70, __u32)
1294c8cf318STiwei Bie /* Get and set the status. The status bits follow the same definition
1304c8cf318STiwei Bie  * of the device status defined in virtio-spec.
1314c8cf318STiwei Bie  */
1324c8cf318STiwei Bie #define VHOST_VDPA_GET_STATUS		_IOR(VHOST_VIRTIO, 0x71, __u8)
1334c8cf318STiwei Bie #define VHOST_VDPA_SET_STATUS		_IOW(VHOST_VIRTIO, 0x72, __u8)
1344c8cf318STiwei Bie /* Get and set the device config. The device config follows the same
1354c8cf318STiwei Bie  * definition of the device config defined in virtio-spec.
1364c8cf318STiwei Bie  */
1374c8cf318STiwei Bie #define VHOST_VDPA_GET_CONFIG		_IOR(VHOST_VIRTIO, 0x73, \
1384c8cf318STiwei Bie 					     struct vhost_vdpa_config)
1394c8cf318STiwei Bie #define VHOST_VDPA_SET_CONFIG		_IOW(VHOST_VIRTIO, 0x74, \
1404c8cf318STiwei Bie 					     struct vhost_vdpa_config)
1414c8cf318STiwei Bie /* Enable/disable the ring. */
1424c8cf318STiwei Bie #define VHOST_VDPA_SET_VRING_ENABLE	_IOW(VHOST_VIRTIO, 0x75, \
1434c8cf318STiwei Bie 					     struct vhost_vring_state)
1444c8cf318STiwei Bie /* Get the max ring size. */
1454c8cf318STiwei Bie #define VHOST_VDPA_GET_VRING_NUM	_IOR(VHOST_VIRTIO, 0x76, __u16)
1464c8cf318STiwei Bie 
147776f3950SZhu Lingshan /* Set event fd for config interrupt*/
148776f3950SZhu Lingshan #define VHOST_VDPA_SET_CONFIG_CALL	_IOW(VHOST_VIRTIO, 0x77, int)
149607ca46eSDavid Howells #endif
150