1 /* 1 /* 2 * Virtio PCI driver 2 * Virtio PCI driver 3 * 3 * 4 * This module allows virtio devices to be use 4 * This module allows virtio devices to be used over a virtual PCI device. 5 * This can be used with QEMU based VMMs like 5 * This can be used with QEMU based VMMs like KVM or Xen. 6 * 6 * 7 * Copyright IBM Corp. 2007 7 * Copyright IBM Corp. 2007 8 * 8 * 9 * Authors: 9 * Authors: 10 * Anthony Liguori <aliguori@us.ibm.com> 10 * Anthony Liguori <aliguori@us.ibm.com> 11 * 11 * 12 * This header is BSD licensed so anyone can u 12 * This header is BSD licensed so anyone can use the definitions to implement 13 * compatible drivers/servers. 13 * compatible drivers/servers. 14 * 14 * 15 * Redistribution and use in source and binary 15 * Redistribution and use in source and binary forms, with or without 16 * modification, are permitted provided that t 16 * modification, are permitted provided that the following conditions 17 * are met: 17 * are met: 18 * 1. Redistributions of source code must reta 18 * 1. Redistributions of source code must retain the above copyright 19 * notice, this list of conditions and the 19 * notice, this list of conditions and the following disclaimer. 20 * 2. Redistributions in binary form must repr 20 * 2. Redistributions in binary form must reproduce the above copyright 21 * notice, this list of conditions and the 21 * notice, this list of conditions and the following disclaimer in the 22 * documentation and/or other materials pro 22 * documentation and/or other materials provided with the distribution. 23 * 3. Neither the name of IBM nor the names of 23 * 3. Neither the name of IBM nor the names of its contributors 24 * may be used to endorse or promote produc 24 * may be used to endorse or promote products derived from this software 25 * without specific prior written permissio 25 * without specific prior written permission. 26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT 26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND 27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDIN 27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND F 28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29 * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR C 29 * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE 30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECI 30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PRO 31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILI 33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF AD 35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36 * SUCH DAMAGE. 36 * SUCH DAMAGE. 37 */ 37 */ 38 38 39 #ifndef _LINUX_VIRTIO_PCI_H 39 #ifndef _LINUX_VIRTIO_PCI_H 40 #define _LINUX_VIRTIO_PCI_H 40 #define _LINUX_VIRTIO_PCI_H 41 41 42 #include <linux/types.h> 42 #include <linux/types.h> 43 43 44 #ifndef VIRTIO_PCI_NO_LEGACY 44 #ifndef VIRTIO_PCI_NO_LEGACY 45 45 46 /* A 32-bit r/o bitmask of the features suppor 46 /* A 32-bit r/o bitmask of the features supported by the host */ 47 #define VIRTIO_PCI_HOST_FEATURES 0 47 #define VIRTIO_PCI_HOST_FEATURES 0 48 48 49 /* A 32-bit r/w bitmask of features activated 49 /* A 32-bit r/w bitmask of features activated by the guest */ 50 #define VIRTIO_PCI_GUEST_FEATURES 4 50 #define VIRTIO_PCI_GUEST_FEATURES 4 51 51 52 /* A 32-bit r/w PFN for the currently selected 52 /* A 32-bit r/w PFN for the currently selected queue */ 53 #define VIRTIO_PCI_QUEUE_PFN 8 53 #define VIRTIO_PCI_QUEUE_PFN 8 54 54 55 /* A 16-bit r/o queue size for the currently s 55 /* A 16-bit r/o queue size for the currently selected queue */ 56 #define VIRTIO_PCI_QUEUE_NUM 12 56 #define VIRTIO_PCI_QUEUE_NUM 12 57 57 58 /* A 16-bit r/w queue selector */ 58 /* A 16-bit r/w queue selector */ 59 #define VIRTIO_PCI_QUEUE_SEL 14 59 #define VIRTIO_PCI_QUEUE_SEL 14 60 60 61 /* A 16-bit r/w queue notifier */ 61 /* A 16-bit r/w queue notifier */ 62 #define VIRTIO_PCI_QUEUE_NOTIFY 16 62 #define VIRTIO_PCI_QUEUE_NOTIFY 16 63 63 64 /* An 8-bit device status register. */ 64 /* An 8-bit device status register. */ 65 #define VIRTIO_PCI_STATUS 18 65 #define VIRTIO_PCI_STATUS 18 66 66 67 /* An 8-bit r/o interrupt status register. Re 67 /* An 8-bit r/o interrupt status register. Reading the value will return the 68 * current contents of the ISR and will also c 68 * current contents of the ISR and will also clear it. This is effectively 69 * a read-and-acknowledge. */ 69 * a read-and-acknowledge. */ 70 #define VIRTIO_PCI_ISR 19 70 #define VIRTIO_PCI_ISR 19 71 71 72 /* MSI-X registers: only enabled if MSI-X is e 72 /* MSI-X registers: only enabled if MSI-X is enabled. */ 73 /* A 16-bit vector for configuration changes. 73 /* A 16-bit vector for configuration changes. */ 74 #define VIRTIO_MSI_CONFIG_VECTOR 20 74 #define VIRTIO_MSI_CONFIG_VECTOR 20 75 /* A 16-bit vector for selected queue notifica 75 /* A 16-bit vector for selected queue notifications. */ 76 #define VIRTIO_MSI_QUEUE_VECTOR 22 76 #define VIRTIO_MSI_QUEUE_VECTOR 22 77 77 78 /* The remaining space is defined by each driv 78 /* The remaining space is defined by each driver as the per-driver 79 * configuration space */ 79 * configuration space */ 80 #define VIRTIO_PCI_CONFIG_OFF(msix_enabled) 80 #define VIRTIO_PCI_CONFIG_OFF(msix_enabled) ((msix_enabled) ? 24 : 20) 81 /* Deprecated: please use VIRTIO_PCI_CONFIG_OF 81 /* Deprecated: please use VIRTIO_PCI_CONFIG_OFF instead */ 82 #define VIRTIO_PCI_CONFIG(dev) VIRTIO_PCI_CON 82 #define VIRTIO_PCI_CONFIG(dev) VIRTIO_PCI_CONFIG_OFF((dev)->msix_enabled) 83 83 84 /* Virtio ABI version, this must match exactly 84 /* Virtio ABI version, this must match exactly */ 85 #define VIRTIO_PCI_ABI_VERSION 0 85 #define VIRTIO_PCI_ABI_VERSION 0 86 86 87 /* How many bits to shift physical queue addre 87 /* How many bits to shift physical queue address written to QUEUE_PFN. 88 * 12 is historical, and due to x86 page size. 88 * 12 is historical, and due to x86 page size. */ 89 #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12 89 #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12 90 90 91 /* The alignment to use between consumer and p 91 /* The alignment to use between consumer and producer parts of vring. 92 * x86 pagesize again. */ 92 * x86 pagesize again. */ 93 #define VIRTIO_PCI_VRING_ALIGN 4096 93 #define VIRTIO_PCI_VRING_ALIGN 4096 94 94 95 #endif /* VIRTIO_PCI_NO_LEGACY */ 95 #endif /* VIRTIO_PCI_NO_LEGACY */ 96 96 97 /* The bit of the ISR which indicates a device 97 /* The bit of the ISR which indicates a device configuration change. */ 98 #define VIRTIO_PCI_ISR_CONFIG 0x2 98 #define VIRTIO_PCI_ISR_CONFIG 0x2 99 /* Vector value used to disable MSI for queue 99 /* Vector value used to disable MSI for queue */ 100 #define VIRTIO_MSI_NO_VECTOR 0xffff 100 #define VIRTIO_MSI_NO_VECTOR 0xffff 101 101 102 #ifndef VIRTIO_PCI_NO_MODERN 102 #ifndef VIRTIO_PCI_NO_MODERN 103 103 104 /* IDs for different capabilities. Must all e 104 /* IDs for different capabilities. Must all exist. */ 105 105 106 /* Common configuration */ 106 /* Common configuration */ 107 #define VIRTIO_PCI_CAP_COMMON_CFG 1 107 #define VIRTIO_PCI_CAP_COMMON_CFG 1 108 /* Notifications */ 108 /* Notifications */ 109 #define VIRTIO_PCI_CAP_NOTIFY_CFG 2 109 #define VIRTIO_PCI_CAP_NOTIFY_CFG 2 110 /* ISR access */ 110 /* ISR access */ 111 #define VIRTIO_PCI_CAP_ISR_CFG 3 111 #define VIRTIO_PCI_CAP_ISR_CFG 3 112 /* Device specific configuration */ 112 /* Device specific configuration */ 113 #define VIRTIO_PCI_CAP_DEVICE_CFG 4 113 #define VIRTIO_PCI_CAP_DEVICE_CFG 4 114 /* PCI configuration access */ 114 /* PCI configuration access */ 115 #define VIRTIO_PCI_CAP_PCI_CFG 5 115 #define VIRTIO_PCI_CAP_PCI_CFG 5 116 /* Additional shared memory capability */ 116 /* Additional shared memory capability */ 117 #define VIRTIO_PCI_CAP_SHARED_MEMORY_CFG 8 117 #define VIRTIO_PCI_CAP_SHARED_MEMORY_CFG 8 118 118 119 /* This is the PCI capability header: */ 119 /* This is the PCI capability header: */ 120 struct virtio_pci_cap { 120 struct virtio_pci_cap { 121 __u8 cap_vndr; /* Generic PCI 121 __u8 cap_vndr; /* Generic PCI field: PCI_CAP_ID_VNDR */ 122 __u8 cap_next; /* Generic PCI 122 __u8 cap_next; /* Generic PCI field: next ptr. */ 123 __u8 cap_len; /* Generic PCI 123 __u8 cap_len; /* Generic PCI field: capability length */ 124 __u8 cfg_type; /* Identifies 124 __u8 cfg_type; /* Identifies the structure. */ 125 __u8 bar; /* Where to fi 125 __u8 bar; /* Where to find it. */ 126 __u8 id; /* Multiple ca 126 __u8 id; /* Multiple capabilities of the same type */ 127 __u8 padding[2]; /* Pad to full 127 __u8 padding[2]; /* Pad to full dword. */ 128 __le32 offset; /* Offset with 128 __le32 offset; /* Offset within bar. */ 129 __le32 length; /* Length of t 129 __le32 length; /* Length of the structure, in bytes. */ 130 }; 130 }; 131 131 132 struct virtio_pci_cap64 { 132 struct virtio_pci_cap64 { 133 struct virtio_pci_cap cap; 133 struct virtio_pci_cap cap; 134 __le32 offset_hi; /* Most 134 __le32 offset_hi; /* Most sig 32 bits of offset */ 135 __le32 length_hi; /* Most 135 __le32 length_hi; /* Most sig 32 bits of length */ 136 }; 136 }; 137 137 138 struct virtio_pci_notify_cap { 138 struct virtio_pci_notify_cap { 139 struct virtio_pci_cap cap; 139 struct virtio_pci_cap cap; 140 __le32 notify_off_multiplier; /* Mul 140 __le32 notify_off_multiplier; /* Multiplier for queue_notify_off. */ 141 }; 141 }; 142 142 143 /* Fields in VIRTIO_PCI_CAP_COMMON_CFG: */ 143 /* Fields in VIRTIO_PCI_CAP_COMMON_CFG: */ 144 struct virtio_pci_common_cfg { 144 struct virtio_pci_common_cfg { 145 /* About the whole device. */ 145 /* About the whole device. */ 146 __le32 device_feature_select; /* rea 146 __le32 device_feature_select; /* read-write */ 147 __le32 device_feature; /* rea 147 __le32 device_feature; /* read-only */ 148 __le32 guest_feature_select; /* rea 148 __le32 guest_feature_select; /* read-write */ 149 __le32 guest_feature; /* rea 149 __le32 guest_feature; /* read-write */ 150 __le16 msix_config; /* rea 150 __le16 msix_config; /* read-write */ 151 __le16 num_queues; /* rea 151 __le16 num_queues; /* read-only */ 152 __u8 device_status; /* rea 152 __u8 device_status; /* read-write */ 153 __u8 config_generation; /* rea 153 __u8 config_generation; /* read-only */ 154 154 155 /* About a specific virtqueue. */ 155 /* About a specific virtqueue. */ 156 __le16 queue_select; /* rea 156 __le16 queue_select; /* read-write */ 157 __le16 queue_size; /* rea 157 __le16 queue_size; /* read-write, power of 2. */ 158 __le16 queue_msix_vector; /* rea 158 __le16 queue_msix_vector; /* read-write */ 159 __le16 queue_enable; /* rea 159 __le16 queue_enable; /* read-write */ 160 __le16 queue_notify_off; /* rea 160 __le16 queue_notify_off; /* read-only */ 161 __le32 queue_desc_lo; /* rea 161 __le32 queue_desc_lo; /* read-write */ 162 __le32 queue_desc_hi; /* rea 162 __le32 queue_desc_hi; /* read-write */ 163 __le32 queue_avail_lo; /* rea 163 __le32 queue_avail_lo; /* read-write */ 164 __le32 queue_avail_hi; /* rea 164 __le32 queue_avail_hi; /* read-write */ 165 __le32 queue_used_lo; /* rea 165 __le32 queue_used_lo; /* read-write */ 166 __le32 queue_used_hi; /* rea 166 __le32 queue_used_hi; /* read-write */ 167 }; 167 }; 168 168 169 /* 169 /* 170 * Warning: do not use sizeof on this: use off 170 * Warning: do not use sizeof on this: use offsetofend for 171 * specific fields you need. 171 * specific fields you need. 172 */ 172 */ 173 struct virtio_pci_modern_common_cfg { 173 struct virtio_pci_modern_common_cfg { 174 struct virtio_pci_common_cfg cfg; 174 struct virtio_pci_common_cfg cfg; 175 175 176 __le16 queue_notify_data; /* rea 176 __le16 queue_notify_data; /* read-write */ 177 __le16 queue_reset; /* rea 177 __le16 queue_reset; /* read-write */ 178 178 179 __le16 admin_queue_index; /* rea 179 __le16 admin_queue_index; /* read-only */ 180 __le16 admin_queue_num; /* rea 180 __le16 admin_queue_num; /* read-only */ 181 }; 181 }; 182 182 183 /* Fields in VIRTIO_PCI_CAP_PCI_CFG: */ 183 /* Fields in VIRTIO_PCI_CAP_PCI_CFG: */ 184 struct virtio_pci_cfg_cap { 184 struct virtio_pci_cfg_cap { 185 struct virtio_pci_cap cap; 185 struct virtio_pci_cap cap; 186 __u8 pci_cfg_data[4]; /* Data for BAR 186 __u8 pci_cfg_data[4]; /* Data for BAR access. */ 187 }; 187 }; 188 188 189 /* Macro versions of offsets for the Old Timer 189 /* Macro versions of offsets for the Old Timers! */ 190 #define VIRTIO_PCI_CAP_VNDR 0 190 #define VIRTIO_PCI_CAP_VNDR 0 191 #define VIRTIO_PCI_CAP_NEXT 1 191 #define VIRTIO_PCI_CAP_NEXT 1 192 #define VIRTIO_PCI_CAP_LEN 2 192 #define VIRTIO_PCI_CAP_LEN 2 193 #define VIRTIO_PCI_CAP_CFG_TYPE 3 193 #define VIRTIO_PCI_CAP_CFG_TYPE 3 194 #define VIRTIO_PCI_CAP_BAR 4 194 #define VIRTIO_PCI_CAP_BAR 4 195 #define VIRTIO_PCI_CAP_OFFSET 8 195 #define VIRTIO_PCI_CAP_OFFSET 8 196 #define VIRTIO_PCI_CAP_LENGTH 12 196 #define VIRTIO_PCI_CAP_LENGTH 12 197 197 198 #define VIRTIO_PCI_NOTIFY_CAP_MULT 16 198 #define VIRTIO_PCI_NOTIFY_CAP_MULT 16 199 199 200 #define VIRTIO_PCI_COMMON_DFSELECT 0 200 #define VIRTIO_PCI_COMMON_DFSELECT 0 201 #define VIRTIO_PCI_COMMON_DF 4 201 #define VIRTIO_PCI_COMMON_DF 4 202 #define VIRTIO_PCI_COMMON_GFSELECT 8 202 #define VIRTIO_PCI_COMMON_GFSELECT 8 203 #define VIRTIO_PCI_COMMON_GF 12 203 #define VIRTIO_PCI_COMMON_GF 12 204 #define VIRTIO_PCI_COMMON_MSIX 16 204 #define VIRTIO_PCI_COMMON_MSIX 16 205 #define VIRTIO_PCI_COMMON_NUMQ 18 205 #define VIRTIO_PCI_COMMON_NUMQ 18 206 #define VIRTIO_PCI_COMMON_STATUS 20 206 #define VIRTIO_PCI_COMMON_STATUS 20 207 #define VIRTIO_PCI_COMMON_CFGGENERATION 21 207 #define VIRTIO_PCI_COMMON_CFGGENERATION 21 208 #define VIRTIO_PCI_COMMON_Q_SELECT 22 208 #define VIRTIO_PCI_COMMON_Q_SELECT 22 209 #define VIRTIO_PCI_COMMON_Q_SIZE 24 209 #define VIRTIO_PCI_COMMON_Q_SIZE 24 210 #define VIRTIO_PCI_COMMON_Q_MSIX 26 210 #define VIRTIO_PCI_COMMON_Q_MSIX 26 211 #define VIRTIO_PCI_COMMON_Q_ENABLE 28 211 #define VIRTIO_PCI_COMMON_Q_ENABLE 28 212 #define VIRTIO_PCI_COMMON_Q_NOFF 30 212 #define VIRTIO_PCI_COMMON_Q_NOFF 30 213 #define VIRTIO_PCI_COMMON_Q_DESCLO 32 213 #define VIRTIO_PCI_COMMON_Q_DESCLO 32 214 #define VIRTIO_PCI_COMMON_Q_DESCHI 36 214 #define VIRTIO_PCI_COMMON_Q_DESCHI 36 215 #define VIRTIO_PCI_COMMON_Q_AVAILLO 40 215 #define VIRTIO_PCI_COMMON_Q_AVAILLO 40 216 #define VIRTIO_PCI_COMMON_Q_AVAILHI 44 216 #define VIRTIO_PCI_COMMON_Q_AVAILHI 44 217 #define VIRTIO_PCI_COMMON_Q_USEDLO 48 217 #define VIRTIO_PCI_COMMON_Q_USEDLO 48 218 #define VIRTIO_PCI_COMMON_Q_USEDHI 52 218 #define VIRTIO_PCI_COMMON_Q_USEDHI 52 219 #define VIRTIO_PCI_COMMON_Q_NDATA 56 219 #define VIRTIO_PCI_COMMON_Q_NDATA 56 220 #define VIRTIO_PCI_COMMON_Q_RESET 58 220 #define VIRTIO_PCI_COMMON_Q_RESET 58 221 #define VIRTIO_PCI_COMMON_ADM_Q_IDX 60 221 #define VIRTIO_PCI_COMMON_ADM_Q_IDX 60 222 #define VIRTIO_PCI_COMMON_ADM_Q_NUM 62 222 #define VIRTIO_PCI_COMMON_ADM_Q_NUM 62 223 223 224 #endif /* VIRTIO_PCI_NO_MODERN */ 224 #endif /* VIRTIO_PCI_NO_MODERN */ 225 225 226 /* Admin command status. */ 226 /* Admin command status. */ 227 #define VIRTIO_ADMIN_STATUS_OK 0 227 #define VIRTIO_ADMIN_STATUS_OK 0 228 228 229 /* Admin command opcode. */ 229 /* Admin command opcode. */ 230 #define VIRTIO_ADMIN_CMD_LIST_QUERY 0x0 230 #define VIRTIO_ADMIN_CMD_LIST_QUERY 0x0 231 #define VIRTIO_ADMIN_CMD_LIST_USE 0x1 231 #define VIRTIO_ADMIN_CMD_LIST_USE 0x1 232 232 233 /* Admin command group type. */ 233 /* Admin command group type. */ 234 #define VIRTIO_ADMIN_GROUP_TYPE_SRIOV 0x1 234 #define VIRTIO_ADMIN_GROUP_TYPE_SRIOV 0x1 235 235 236 /* Transitional device admin command. */ 236 /* Transitional device admin command. */ 237 #define VIRTIO_ADMIN_CMD_LEGACY_COMMON_CFG_WRI 237 #define VIRTIO_ADMIN_CMD_LEGACY_COMMON_CFG_WRITE 0x2 238 #define VIRTIO_ADMIN_CMD_LEGACY_COMMON_CFG_REA 238 #define VIRTIO_ADMIN_CMD_LEGACY_COMMON_CFG_READ 0x3 239 #define VIRTIO_ADMIN_CMD_LEGACY_DEV_CFG_WRITE 239 #define VIRTIO_ADMIN_CMD_LEGACY_DEV_CFG_WRITE 0x4 240 #define VIRTIO_ADMIN_CMD_LEGACY_DEV_CFG_READ 240 #define VIRTIO_ADMIN_CMD_LEGACY_DEV_CFG_READ 0x5 241 #define VIRTIO_ADMIN_CMD_LEGACY_NOTIFY_INFO 241 #define VIRTIO_ADMIN_CMD_LEGACY_NOTIFY_INFO 0x6 242 242 243 struct virtio_admin_cmd_hdr { 243 struct virtio_admin_cmd_hdr { 244 __le16 opcode; 244 __le16 opcode; 245 /* 245 /* 246 * 1 - SR-IOV 246 * 1 - SR-IOV 247 * 2-65535 - reserved 247 * 2-65535 - reserved 248 */ 248 */ 249 __le16 group_type; 249 __le16 group_type; 250 /* Unused, reserved for future extensi 250 /* Unused, reserved for future extensions. */ 251 __u8 reserved1[12]; 251 __u8 reserved1[12]; 252 __le64 group_member_id; 252 __le64 group_member_id; 253 }; 253 }; 254 254 255 struct virtio_admin_cmd_status { 255 struct virtio_admin_cmd_status { 256 __le16 status; 256 __le16 status; 257 __le16 status_qualifier; 257 __le16 status_qualifier; 258 /* Unused, reserved for future extensi 258 /* Unused, reserved for future extensions. */ 259 __u8 reserved2[4]; 259 __u8 reserved2[4]; 260 }; 260 }; 261 261 262 struct virtio_admin_cmd_legacy_wr_data { 262 struct virtio_admin_cmd_legacy_wr_data { 263 __u8 offset; /* Starting offset of the 263 __u8 offset; /* Starting offset of the register(s) to write. */ 264 __u8 reserved[7]; 264 __u8 reserved[7]; 265 __u8 registers[]; 265 __u8 registers[]; 266 }; 266 }; 267 267 268 struct virtio_admin_cmd_legacy_rd_data { 268 struct virtio_admin_cmd_legacy_rd_data { 269 __u8 offset; /* Starting offset of the 269 __u8 offset; /* Starting offset of the register(s) to read. */ 270 }; 270 }; 271 271 272 #define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_END 272 #define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_END 0 273 #define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_OWN 273 #define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_OWNER_DEV 0x1 274 #define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_OWN 274 #define VIRTIO_ADMIN_CMD_NOTIFY_INFO_FLAGS_OWNER_MEM 0x2 275 275 276 #define VIRTIO_ADMIN_CMD_MAX_NOTIFY_INFO 4 276 #define VIRTIO_ADMIN_CMD_MAX_NOTIFY_INFO 4 277 277 278 struct virtio_admin_cmd_notify_info_data { 278 struct virtio_admin_cmd_notify_info_data { 279 __u8 flags; /* 0 = end of list, 1 = ow 279 __u8 flags; /* 0 = end of list, 1 = owner device, 2 = member device */ 280 __u8 bar; /* BAR of the member or the 280 __u8 bar; /* BAR of the member or the owner device */ 281 __u8 padding[6]; 281 __u8 padding[6]; 282 __le64 offset; /* Offset within bar. * 282 __le64 offset; /* Offset within bar. */ 283 }; 283 }; 284 284 285 struct virtio_admin_cmd_notify_info_result { 285 struct virtio_admin_cmd_notify_info_result { 286 struct virtio_admin_cmd_notify_info_da 286 struct virtio_admin_cmd_notify_info_data entries[VIRTIO_ADMIN_CMD_MAX_NOTIFY_INFO]; 287 }; 287 }; 288 288 289 #endif 289 #endif 290 290
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.