Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/*
2 * Virtio PCI driver
3 *
4 * This module allows virtio devices to be used over a virtual PCI device.
5 * This can be used with QEMU based VMMs like KVM or Xen.
6 *
7 * Copyright IBM Corp. 2007
8 *
9 * Authors:
10 * Anthony Liguori <aliguori@us.ibm.com>
11 *
12 * This header is BSD licensed so anyone can use the definitions to implement
13 * compatible drivers/servers.
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 * 3. Neither the name of IBM nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 */
38
39#ifndef _LINUX_VIRTIO_PCI_H
40#define _LINUX_VIRTIO_PCI_H
41
42#include <linux/types.h>
43#include <linux/kernel.h>
44
45#ifndef VIRTIO_PCI_NO_LEGACY
46
47/* A 32-bit r/o bitmask of the features supported by the host */
48#define VIRTIO_PCI_HOST_FEATURES 0
49
50/* A 32-bit r/w bitmask of features activated by the guest */
51#define VIRTIO_PCI_GUEST_FEATURES 4
52
53/* A 32-bit r/w PFN for the currently selected queue */
54#define VIRTIO_PCI_QUEUE_PFN 8
55
56/* A 16-bit r/o queue size for the currently selected queue */
57#define VIRTIO_PCI_QUEUE_NUM 12
58
59/* A 16-bit r/w queue selector */
60#define VIRTIO_PCI_QUEUE_SEL 14
61
62/* A 16-bit r/w queue notifier */
63#define VIRTIO_PCI_QUEUE_NOTIFY 16
64
65/* An 8-bit device status register. */
66#define VIRTIO_PCI_STATUS 18
67
68/* An 8-bit r/o interrupt status register. Reading the value will return the
69 * current contents of the ISR and will also clear it. This is effectively
70 * a read-and-acknowledge. */
71#define VIRTIO_PCI_ISR 19
72
73/* MSI-X registers: only enabled if MSI-X is enabled. */
74/* A 16-bit vector for configuration changes. */
75#define VIRTIO_MSI_CONFIG_VECTOR 20
76/* A 16-bit vector for selected queue notifications. */
77#define VIRTIO_MSI_QUEUE_VECTOR 22
78
79/* The remaining space is defined by each driver as the per-driver
80 * configuration space */
81#define VIRTIO_PCI_CONFIG_OFF(msix_enabled) ((msix_enabled) ? 24 : 20)
82/* Deprecated: please use VIRTIO_PCI_CONFIG_OFF instead */
83#define VIRTIO_PCI_CONFIG(dev) VIRTIO_PCI_CONFIG_OFF((dev)->msix_enabled)
84
85/* Virtio ABI version, this must match exactly */
86#define VIRTIO_PCI_ABI_VERSION 0
87
88/* How many bits to shift physical queue address written to QUEUE_PFN.
89 * 12 is historical, and due to x86 page size. */
90#define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12
91
92/* The alignment to use between consumer and producer parts of vring.
93 * x86 pagesize again. */
94#define VIRTIO_PCI_VRING_ALIGN 4096
95
96#endif /* VIRTIO_PCI_NO_LEGACY */
97
98/* The bit of the ISR which indicates a device configuration change. */
99#define VIRTIO_PCI_ISR_CONFIG 0x2
100/* Vector value used to disable MSI for queue */
101#define VIRTIO_MSI_NO_VECTOR 0xffff
102
103#ifndef VIRTIO_PCI_NO_MODERN
104
105/* IDs for different capabilities. Must all exist. */
106
107/* Common configuration */
108#define VIRTIO_PCI_CAP_COMMON_CFG 1
109/* Notifications */
110#define VIRTIO_PCI_CAP_NOTIFY_CFG 2
111/* ISR access */
112#define VIRTIO_PCI_CAP_ISR_CFG 3
113/* Device specific configuration */
114#define VIRTIO_PCI_CAP_DEVICE_CFG 4
115/* PCI configuration access */
116#define VIRTIO_PCI_CAP_PCI_CFG 5
117/* Additional shared memory capability */
118#define VIRTIO_PCI_CAP_SHARED_MEMORY_CFG 8
119/* PCI vendor data configuration */
120#define VIRTIO_PCI_CAP_VENDOR_CFG 9
121
122/* This is the PCI capability header: */
123struct virtio_pci_cap {
124 __u8 cap_vndr; /* Generic PCI field: PCI_CAP_ID_VNDR */
125 __u8 cap_next; /* Generic PCI field: next ptr. */
126 __u8 cap_len; /* Generic PCI field: capability length */
127 __u8 cfg_type; /* Identifies the structure. */
128 __u8 bar; /* Where to find it. */
129 __u8 id; /* Multiple capabilities of the same type */
130 __u8 padding[2]; /* Pad to full dword. */
131 __le32 offset; /* Offset within bar. */
132 __le32 length; /* Length of the structure, in bytes. */
133};
134
135/* This is the PCI vendor data capability header: */
136struct virtio_pci_vndr_data {
137 __u8 cap_vndr; /* Generic PCI field: PCI_CAP_ID_VNDR */
138 __u8 cap_next; /* Generic PCI field: next ptr. */
139 __u8 cap_len; /* Generic PCI field: capability length */
140 __u8 cfg_type; /* Identifies the structure. */
141 __u16 vendor_id; /* Identifies the vendor-specific format. */
142 /* For Vendor Definition */
143 /* Pads structure to a multiple of 4 bytes */
144 /* Reads must not have side effects */
145};
146
147struct virtio_pci_cap64 {
148 struct virtio_pci_cap cap;
149 __le32 offset_hi; /* Most sig 32 bits of offset */
150 __le32 length_hi; /* Most sig 32 bits of length */
151};
152
153struct virtio_pci_notify_cap {
154 struct virtio_pci_cap cap;
155 __le32 notify_off_multiplier; /* Multiplier for queue_notify_off. */
156};
157
158/* Fields in VIRTIO_PCI_CAP_COMMON_CFG: */
159struct virtio_pci_common_cfg {
160 /* About the whole device. */
161 __le32 device_feature_select; /* read-write */
162 __le32 device_feature; /* read-only */
163 __le32 guest_feature_select; /* read-write */
164 __le32 guest_feature; /* read-write */
165 __le16 msix_config; /* read-write */
166 __le16 num_queues; /* read-only */
167 __u8 device_status; /* read-write */
168 __u8 config_generation; /* read-only */
169
170 /* About a specific virtqueue. */
171 __le16 queue_select; /* read-write */
172 __le16 queue_size; /* read-write, power of 2. */
173 __le16 queue_msix_vector; /* read-write */
174 __le16 queue_enable; /* read-write */
175 __le16 queue_notify_off; /* read-only */
176 __le32 queue_desc_lo; /* read-write */
177 __le32 queue_desc_hi; /* read-write */
178 __le32 queue_avail_lo; /* read-write */
179 __le32 queue_avail_hi; /* read-write */
180 __le32 queue_used_lo; /* read-write */
181 __le32 queue_used_hi; /* read-write */
182};
183
184/*
185 * Warning: do not use sizeof on this: use offsetofend for
186 * specific fields you need.
187 */
188struct virtio_pci_modern_common_cfg {
189 struct virtio_pci_common_cfg cfg;
190
191 __le16 queue_notify_data; /* read-write */
192 __le16 queue_reset; /* read-write */
193
194 __le16 admin_queue_index; /* read-only */
195 __le16 admin_queue_num; /* read-only */
196};
197
198/* Fields in VIRTIO_PCI_CAP_PCI_CFG: */
199struct virtio_pci_cfg_cap {
200 struct virtio_pci_cap cap;
201 __u8 pci_cfg_data[4]; /* Data for BAR access. */
202};
203
204/* Macro versions of offsets for the Old Timers! */
205#define VIRTIO_PCI_CAP_VNDR 0
206#define VIRTIO_PCI_CAP_NEXT 1
207#define VIRTIO_PCI_CAP_LEN 2
208#define VIRTIO_PCI_CAP_CFG_TYPE 3
209#define VIRTIO_PCI_CAP_BAR 4
210#define VIRTIO_PCI_CAP_OFFSET 8
211#define VIRTIO_PCI_CAP_LENGTH 12
212
213#define VIRTIO_PCI_NOTIFY_CAP_MULT 16
214
215#define VIRTIO_PCI_COMMON_DFSELECT 0
216#define VIRTIO_PCI_COMMON_DF 4
217#define VIRTIO_PCI_COMMON_GFSELECT 8
218#define VIRTIO_PCI_COMMON_GF 12
219#define VIRTIO_PCI_COMMON_MSIX 16
220#define VIRTIO_PCI_COMMON_NUMQ 18
221#define VIRTIO_PCI_COMMON_STATUS 20
222#define VIRTIO_PCI_COMMON_CFGGENERATION 21
223#define VIRTIO_PCI_COMMON_Q_SELECT 22
224#define VIRTIO_PCI_COMMON_Q_SIZE 24
225#define VIRTIO_PCI_COMMON_Q_MSIX 26
226#define VIRTIO_PCI_COMMON_Q_ENABLE 28
227#define VIRTIO_PCI_COMMON_Q_NOFF 30
228#define VIRTIO_PCI_COMMON_Q_DESCLO 32
229#define VIRTIO_PCI_COMMON_Q_DESCHI 36
230#define VIRTIO_PCI_COMMON_Q_AVAILLO 40
231#define VIRTIO_PCI_COMMON_Q_AVAILHI 44
232#define VIRTIO_PCI_COMMON_Q_USEDLO 48
233#define VIRTIO_PCI_COMMON_Q_USEDHI 52
234#define VIRTIO_PCI_COMMON_Q_NDATA 56
235#define VIRTIO_PCI_COMMON_Q_RESET 58
236#define VIRTIO_PCI_COMMON_ADM_Q_IDX 60
237#define VIRTIO_PCI_COMMON_ADM_Q_NUM 62
238
239#endif /* VIRTIO_PCI_NO_MODERN */
240
241/* Admin command status. */
242#define VIRTIO_ADMIN_STATUS_OK 0
243
244/* Admin command opcode. */
245#define VIRTIO_ADMIN_CMD_LIST_QUERY 0x0
246#define VIRTIO_ADMIN_CMD_LIST_USE 0x1
247
248/* Admin command group type. */
249#define VIRTIO_ADMIN_GROUP_TYPE_SRIOV 0x1
250
251/* Transitional device admin command. */
252#define VIRTIO_ADMIN_CMD_LEGACY_COMMON_CFG_WRITE 0x2
253#define VIRTIO_ADMIN_CMD_LEGACY_COMMON_CFG_READ 0x3
254#define VIRTIO_ADMIN_CMD_LEGACY_DEV_CFG_WRITE 0x4
255#define VIRTIO_ADMIN_CMD_LEGACY_DEV_CFG_READ 0x5
256#define VIRTIO_ADMIN_CMD_LEGACY_NOTIFY_INFO 0x6
257
258/* Device parts access commands. */
259#define VIRTIO_ADMIN_CMD_CAP_ID_LIST_QUERY 0x7
260#define VIRTIO_ADMIN_CMD_DEVICE_CAP_GET 0x8
261#define VIRTIO_ADMIN_CMD_DRIVER_CAP_SET 0x9
262#define VIRTIO_ADMIN_CMD_RESOURCE_OBJ_CREATE 0xa
263#define VIRTIO_ADMIN_CMD_RESOURCE_OBJ_DESTROY 0xd
264#define VIRTIO_ADMIN_CMD_DEV_PARTS_METADATA_GET 0xe
265#define VIRTIO_ADMIN_CMD_DEV_PARTS_GET 0xf
266#define VIRTIO_ADMIN_CMD_DEV_PARTS_SET 0x10
267#define VIRTIO_ADMIN_CMD_DEV_MODE_SET 0x11
268
269struct virtio_admin_cmd_hdr {
270 __le16 opcode;
271 /*
272 * 1 - SR-IOV
273 * 2-65535 - reserved
274 */
275 __le16 group_type;
276 /* Unused, reserved for future extensions. */
277 __u8 reserved1[12];
278 __le64 group_member_id;
279};
280
281struct virtio_admin_cmd_status {
282 __le16 status;
283 __le16 status_qualifier;
284 /* Unused, reserved for future extensions. */
285 __u8 reserved2[4];
286};
287
288struct virtio_admin_cmd_legacy_wr_data {
289 __u8 offset; /* Starting offset of the register(s) to write. */
290 __u8 reserved[7];
291 __u8 registers[];
292};
293
294struct virtio_admin_cmd_legacy_rd_data {
295 __u8 offset; /* Starting offset of the register(s) to read. */
296};
297
298#define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_END 0
299#define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_OWNER_DEV 0x1
300#define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_OWNER_MEM 0x2
301
302#define VIRTIO_ADMIN_CMD_MAX_NOTIFY_INFO 4
303
304struct virtio_admin_cmd_notify_info_data {
305 __u8 flags; /* 0 = end of list, 1 = owner device, 2 = member device */
306 __u8 bar; /* BAR of the member or the owner device */
307 __u8 padding[6];
308 __le64 offset; /* Offset within bar. */
309};
310
311struct virtio_admin_cmd_notify_info_result {
312 struct virtio_admin_cmd_notify_info_data entries[VIRTIO_ADMIN_CMD_MAX_NOTIFY_INFO];
313};
314
315#define VIRTIO_DEV_PARTS_CAP 0x0000
316
317struct virtio_dev_parts_cap {
318 __u8 get_parts_resource_objects_limit;
319 __u8 set_parts_resource_objects_limit;
320};
321
322#define MAX_CAP_ID __KERNEL_DIV_ROUND_UP(VIRTIO_DEV_PARTS_CAP + 1, 64)
323
324struct virtio_admin_cmd_query_cap_id_result {
325 __le64 supported_caps[MAX_CAP_ID];
326};
327
328struct virtio_admin_cmd_cap_get_data {
329 __le16 id;
330 __u8 reserved[6];
331};
332
333struct virtio_admin_cmd_cap_set_data {
334 __le16 id;
335 __u8 reserved[6];
336 __u8 cap_specific_data[];
337};
338
339struct virtio_admin_cmd_resource_obj_cmd_hdr {
340 __le16 type;
341 __u8 reserved[2];
342 __le32 id; /* Indicates unique resource object id per resource object type */
343};
344
345struct virtio_admin_cmd_resource_obj_create_data {
346 struct virtio_admin_cmd_resource_obj_cmd_hdr hdr;
347 __le64 flags;
348 __u8 resource_obj_specific_data[];
349};
350
351#define VIRTIO_RESOURCE_OBJ_DEV_PARTS 0
352
353#define VIRTIO_RESOURCE_OBJ_DEV_PARTS_TYPE_GET 0
354#define VIRTIO_RESOURCE_OBJ_DEV_PARTS_TYPE_SET 1
355
356struct virtio_resource_obj_dev_parts {
357 __u8 type;
358 __u8 reserved[7];
359};
360
361#define VIRTIO_ADMIN_CMD_DEV_PARTS_METADATA_TYPE_SIZE 0
362#define VIRTIO_ADMIN_CMD_DEV_PARTS_METADATA_TYPE_COUNT 1
363#define VIRTIO_ADMIN_CMD_DEV_PARTS_METADATA_TYPE_LIST 2
364
365struct virtio_admin_cmd_dev_parts_metadata_data {
366 struct virtio_admin_cmd_resource_obj_cmd_hdr hdr;
367 __u8 type;
368 __u8 reserved[7];
369};
370
371#define VIRTIO_DEV_PART_F_OPTIONAL 0
372
373struct virtio_dev_part_hdr {
374 __le16 part_type;
375 __u8 flags;
376 __u8 reserved;
377 union {
378 struct {
379 __le32 offset;
380 __le32 reserved;
381 } pci_common_cfg;
382 struct {
383 __le16 index;
384 __u8 reserved[6];
385 } vq_index;
386 } selector;
387 __le32 length;
388};
389
390struct virtio_dev_part {
391 struct virtio_dev_part_hdr hdr;
392 __u8 value[];
393};
394
395struct virtio_admin_cmd_dev_parts_metadata_result {
396 union {
397 struct {
398 __le32 size;
399 __le32 reserved;
400 } parts_size;
401 struct {
402 __le32 count;
403 __le32 reserved;
404 } hdr_list_count;
405 struct {
406 __le32 count;
407 __le32 reserved;
408 struct virtio_dev_part_hdr hdrs[];
409 } hdr_list;
410 };
411};
412
413#define VIRTIO_ADMIN_CMD_DEV_PARTS_GET_TYPE_SELECTED 0
414#define VIRTIO_ADMIN_CMD_DEV_PARTS_GET_TYPE_ALL 1
415
416struct virtio_admin_cmd_dev_parts_get_data {
417 struct virtio_admin_cmd_resource_obj_cmd_hdr hdr;
418 __u8 type;
419 __u8 reserved[7];
420 struct virtio_dev_part_hdr hdr_list[];
421};
422
423struct virtio_admin_cmd_dev_parts_set_data {
424 struct virtio_admin_cmd_resource_obj_cmd_hdr hdr;
425 struct virtio_dev_part parts[];
426};
427
428#define VIRTIO_ADMIN_CMD_DEV_MODE_F_STOPPED 0
429
430struct virtio_admin_cmd_dev_mode_set_data {
431 __u8 flags;
432};
433
434#endif