1 /*- 2 * BSD LICENSE 3 * 4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 11 * * Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * * Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * * Neither the name of Intel Corporation nor the names of its 18 * contributors may be used to endorse or promote products derived 19 * from this software without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 */ 33 34 #ifndef _VIRTQUEUE_H_ 35 #define _VIRTQUEUE_H_ 36 37 #include <stdint.h> 38 39 #include <rte_atomic.h> 40 #include <rte_memory.h> 41 #include <rte_memzone.h> 42 #include <rte_mempool.h> 43 44 #include "virtio_pci.h" 45 #include "virtio_ring.h" 46 #include "virtio_logs.h" 47 48 struct rte_mbuf; 49 50 /* 51 * Per virtio_config.h in Linux. 52 * For virtio_pci on SMP, we don't need to order with respect to MMIO 53 * accesses through relaxed memory I/O windows, so smp_mb() et al are 54 * sufficient. 55 * 56 */ 57 #define virtio_mb() rte_smp_mb() 58 #define virtio_rmb() rte_smp_rmb() 59 #define virtio_wmb() rte_smp_wmb() 60 61 #ifdef RTE_PMD_PACKET_PREFETCH 62 #define rte_packet_prefetch(p) rte_prefetch1(p) 63 #else 64 #define rte_packet_prefetch(p) do {} while(0) 65 #endif 66 67 #define VIRTQUEUE_MAX_NAME_SZ 32 68 69 #define VTNET_SQ_RQ_QUEUE_IDX 0 70 #define VTNET_SQ_TQ_QUEUE_IDX 1 71 #define VTNET_SQ_CQ_QUEUE_IDX 2 72 73 enum { VTNET_RQ = 0, VTNET_TQ = 1, VTNET_CQ = 2 }; 74 /** 75 * The maximum virtqueue size is 2^15. Use that value as the end of 76 * descriptor chain terminator since it will never be a valid index 77 * in the descriptor table. This is used to verify we are correctly 78 * handling vq_free_cnt. 79 */ 80 #define VQ_RING_DESC_CHAIN_END 32768 81 82 /** 83 * Control the RX mode, ie. promiscuous, allmulti, etc... 84 * All commands require an "out" sg entry containing a 1 byte 85 * state value, zero = disable, non-zero = enable. Commands 86 * 0 and 1 are supported with the VIRTIO_NET_F_CTRL_RX feature. 87 * Commands 2-5 are added with VIRTIO_NET_F_CTRL_RX_EXTRA. 88 */ 89 #define VIRTIO_NET_CTRL_RX 0 90 #define VIRTIO_NET_CTRL_RX_PROMISC 0 91 #define VIRTIO_NET_CTRL_RX_ALLMULTI 1 92 #define VIRTIO_NET_CTRL_RX_ALLUNI 2 93 #define VIRTIO_NET_CTRL_RX_NOMULTI 3 94 #define VIRTIO_NET_CTRL_RX_NOUNI 4 95 #define VIRTIO_NET_CTRL_RX_NOBCAST 5 96 97 /** 98 * Control the MAC 99 * 100 * The MAC filter table is managed by the hypervisor, the guest should 101 * assume the size is infinite. Filtering should be considered 102 * non-perfect, ie. based on hypervisor resources, the guest may 103 * received packets from sources not specified in the filter list. 104 * 105 * In addition to the class/cmd header, the TABLE_SET command requires 106 * two out scatterlists. Each contains a 4 byte count of entries followed 107 * by a concatenated byte stream of the ETH_ALEN MAC addresses. The 108 * first sg list contains unicast addresses, the second is for multicast. 109 * This functionality is present if the VIRTIO_NET_F_CTRL_RX feature 110 * is available. 111 * 112 * The ADDR_SET command requests one out scatterlist, it contains a 113 * 6 bytes MAC address. This functionality is present if the 114 * VIRTIO_NET_F_CTRL_MAC_ADDR feature is available. 115 */ 116 struct virtio_net_ctrl_mac { 117 uint32_t entries; 118 uint8_t macs[][ETHER_ADDR_LEN]; 119 } __attribute__((__packed__)); 120 121 #define VIRTIO_NET_CTRL_MAC 1 122 #define VIRTIO_NET_CTRL_MAC_TABLE_SET 0 123 #define VIRTIO_NET_CTRL_MAC_ADDR_SET 1 124 125 /** 126 * Control VLAN filtering 127 * 128 * The VLAN filter table is controlled via a simple ADD/DEL interface. 129 * VLAN IDs not added may be filtered by the hypervisor. Del is the 130 * opposite of add. Both commands expect an out entry containing a 2 131 * byte VLAN ID. VLAN filtering is available with the 132 * VIRTIO_NET_F_CTRL_VLAN feature bit. 133 */ 134 #define VIRTIO_NET_CTRL_VLAN 2 135 #define VIRTIO_NET_CTRL_VLAN_ADD 0 136 #define VIRTIO_NET_CTRL_VLAN_DEL 1 137 138 struct virtio_net_ctrl_hdr { 139 uint8_t class; 140 uint8_t cmd; 141 } __attribute__((packed)); 142 143 typedef uint8_t virtio_net_ctrl_ack; 144 145 #define VIRTIO_NET_OK 0 146 #define VIRTIO_NET_ERR 1 147 148 #define VIRTIO_MAX_CTRL_DATA 2048 149 150 struct virtio_pmd_ctrl { 151 struct virtio_net_ctrl_hdr hdr; 152 virtio_net_ctrl_ack status; 153 uint8_t data[VIRTIO_MAX_CTRL_DATA]; 154 }; 155 156 struct virtqueue { 157 struct virtio_hw *hw; /**< virtio_hw structure pointer. */ 158 const struct rte_memzone *mz; /**< mem zone to populate RX ring. */ 159 const struct rte_memzone *virtio_net_hdr_mz; /**< memzone to populate hdr. */ 160 struct rte_mempool *mpool; /**< mempool for mbuf allocation */ 161 uint16_t queue_id; /**< DPDK queue index. */ 162 uint8_t port_id; /**< Device port identifier. */ 163 uint16_t vq_queue_index; /**< PCI queue index */ 164 165 void *vq_ring_virt_mem; /**< linear address of vring*/ 166 unsigned int vq_ring_size; 167 phys_addr_t vq_ring_mem; /**< physical address of vring */ 168 169 struct vring vq_ring; /**< vring keeping desc, used and avail */ 170 uint16_t vq_free_cnt; /**< num of desc available */ 171 uint16_t vq_nentries; /**< vring desc numbers */ 172 uint16_t vq_free_thresh; /**< free threshold */ 173 /** 174 * Head of the free chain in the descriptor table. If 175 * there are no free descriptors, this will be set to 176 * VQ_RING_DESC_CHAIN_END. 177 */ 178 uint16_t vq_desc_head_idx; 179 uint16_t vq_desc_tail_idx; 180 /** 181 * Last consumed descriptor in the used table, 182 * trails vq_ring.used->idx. 183 */ 184 uint16_t vq_used_cons_idx; 185 uint16_t vq_avail_idx; 186 uint64_t mbuf_initializer; /**< value to init mbufs. */ 187 phys_addr_t virtio_net_hdr_mem; /**< hdr for each xmit packet */ 188 189 struct rte_mbuf **sw_ring; /**< RX software ring. */ 190 /* dummy mbuf, for wraparound when processing RX ring. */ 191 struct rte_mbuf fake_mbuf; 192 193 /* Statistics */ 194 uint64_t packets; 195 uint64_t bytes; 196 uint64_t errors; 197 uint64_t multicast; 198 uint64_t broadcast; 199 /* Size bins in array as RFC 2819, undersized [0], 64 [1], etc */ 200 uint64_t size_bins[8]; 201 202 uint16_t *notify_addr; 203 204 int configured; 205 206 struct vq_desc_extra { 207 void *cookie; 208 uint16_t ndescs; 209 } vq_descx[0]; 210 }; 211 212 /* If multiqueue is provided by host, then we suppport it. */ 213 #define VIRTIO_NET_CTRL_MQ 4 214 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET 0 215 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN 1 216 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX 0x8000 217 218 #define VIRTIO_NET_CTRL_MAC_ADDR_SET 1 219 220 /** 221 * This is the first element of the scatter-gather list. If you don't 222 * specify GSO or CSUM features, you can simply ignore the header. 223 */ 224 struct virtio_net_hdr { 225 #define VIRTIO_NET_HDR_F_NEEDS_CSUM 1 /**< Use csum_start,csum_offset*/ 226 uint8_t flags; 227 #define VIRTIO_NET_HDR_GSO_NONE 0 /**< Not a GSO frame */ 228 #define VIRTIO_NET_HDR_GSO_TCPV4 1 /**< GSO frame, IPv4 TCP (TSO) */ 229 #define VIRTIO_NET_HDR_GSO_UDP 3 /**< GSO frame, IPv4 UDP (UFO) */ 230 #define VIRTIO_NET_HDR_GSO_TCPV6 4 /**< GSO frame, IPv6 TCP */ 231 #define VIRTIO_NET_HDR_GSO_ECN 0x80 /**< TCP has ECN set */ 232 uint8_t gso_type; 233 uint16_t hdr_len; /**< Ethernet + IP + tcp/udp hdrs */ 234 uint16_t gso_size; /**< Bytes to append to hdr_len per frame */ 235 uint16_t csum_start; /**< Position to start checksumming from */ 236 uint16_t csum_offset; /**< Offset after that to place checksum */ 237 }; 238 239 /** 240 * This is the version of the header to use when the MRG_RXBUF 241 * feature has been negotiated. 242 */ 243 struct virtio_net_hdr_mrg_rxbuf { 244 struct virtio_net_hdr hdr; 245 uint16_t num_buffers; /**< Number of merged rx buffers */ 246 }; 247 248 /* Region reserved to allow for transmit header and indirect ring */ 249 #define VIRTIO_MAX_TX_INDIRECT 8 250 struct virtio_tx_region { 251 struct virtio_net_hdr_mrg_rxbuf tx_hdr; 252 struct vring_desc tx_indir[VIRTIO_MAX_TX_INDIRECT] 253 __attribute__((__aligned__(16))); 254 }; 255 256 /* Chain all the descriptors in the ring with an END */ 257 static inline void 258 vring_desc_init(struct vring_desc *dp, uint16_t n) 259 { 260 uint16_t i; 261 262 for (i = 0; i < n - 1; i++) 263 dp[i].next = (uint16_t)(i + 1); 264 dp[i].next = VQ_RING_DESC_CHAIN_END; 265 } 266 267 /** 268 * Tell the backend not to interrupt us. 269 */ 270 void virtqueue_disable_intr(struct virtqueue *vq); 271 /** 272 * Dump virtqueue internal structures, for debug purpose only. 273 */ 274 void virtqueue_dump(struct virtqueue *vq); 275 /** 276 * Get all mbufs to be freed. 277 */ 278 struct rte_mbuf *virtqueue_detatch_unused(struct virtqueue *vq); 279 280 static inline int 281 virtqueue_full(const struct virtqueue *vq) 282 { 283 return vq->vq_free_cnt == 0; 284 } 285 286 #define VIRTQUEUE_NUSED(vq) ((uint16_t)((vq)->vq_ring.used->idx - (vq)->vq_used_cons_idx)) 287 288 static inline void 289 vq_update_avail_idx(struct virtqueue *vq) 290 { 291 virtio_wmb(); 292 vq->vq_ring.avail->idx = vq->vq_avail_idx; 293 } 294 295 static inline void 296 vq_update_avail_ring(struct virtqueue *vq, uint16_t desc_idx) 297 { 298 uint16_t avail_idx; 299 /* 300 * Place the head of the descriptor chain into the next slot and make 301 * it usable to the host. The chain is made available now rather than 302 * deferring to virtqueue_notify() in the hopes that if the host is 303 * currently running on another CPU, we can keep it processing the new 304 * descriptor. 305 */ 306 avail_idx = (uint16_t)(vq->vq_avail_idx & (vq->vq_nentries - 1)); 307 if (unlikely(vq->vq_ring.avail->ring[avail_idx] != desc_idx)) 308 vq->vq_ring.avail->ring[avail_idx] = desc_idx; 309 vq->vq_avail_idx++; 310 } 311 312 static inline int 313 virtqueue_kick_prepare(struct virtqueue *vq) 314 { 315 return !(vq->vq_ring.used->flags & VRING_USED_F_NO_NOTIFY); 316 } 317 318 static inline void 319 virtqueue_notify(struct virtqueue *vq) 320 { 321 /* 322 * Ensure updated avail->idx is visible to host. 323 * For virtio on IA, the notificaiton is through io port operation 324 * which is a serialization instruction itself. 325 */ 326 vq->hw->vtpci_ops->notify_queue(vq->hw, vq); 327 } 328 329 #ifdef RTE_LIBRTE_VIRTIO_DEBUG_DUMP 330 #define VIRTQUEUE_DUMP(vq) do { \ 331 uint16_t used_idx, nused; \ 332 used_idx = (vq)->vq_ring.used->idx; \ 333 nused = (uint16_t)(used_idx - (vq)->vq_used_cons_idx); \ 334 PMD_INIT_LOG(DEBUG, \ 335 "VQ: - size=%d; free=%d; used=%d; desc_head_idx=%d;" \ 336 " avail.idx=%d; used_cons_idx=%d; used.idx=%d;" \ 337 " avail.flags=0x%x; used.flags=0x%x", \ 338 (vq)->vq_nentries, (vq)->vq_free_cnt, nused, \ 339 (vq)->vq_desc_head_idx, (vq)->vq_ring.avail->idx, \ 340 (vq)->vq_used_cons_idx, (vq)->vq_ring.used->idx, \ 341 (vq)->vq_ring.avail->flags, (vq)->vq_ring.used->flags); \ 342 } while (0) 343 #else 344 #define VIRTQUEUE_DUMP(vq) do { } while (0) 345 #endif 346 347 #endif /* _VIRTQUEUE_H_ */ 348