net/virtio: support platform memory ordering
[dpdk.git] / drivers / net / virtio / virtqueue.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #ifndef _VIRTQUEUE_H_
6 #define _VIRTQUEUE_H_
7
8 #include <stdint.h>
9
10 #include <rte_atomic.h>
11 #include <rte_memory.h>
12 #include <rte_mempool.h>
13
14 #include "virtio_pci.h"
15 #include "virtio_ring.h"
16 #include "virtio_logs.h"
17 #include "virtio_rxtx.h"
18
19 struct rte_mbuf;
20
21 /*
22  * Per virtio_ring.h in Linux.
23  *     For virtio_pci on SMP, we don't need to order with respect to MMIO
24  *     accesses through relaxed memory I/O windows, so smp_mb() et al are
25  *     sufficient.
26  *
27  *     For using virtio to talk to real devices (eg. vDPA) we do need real
28  *     barriers.
29  */
30 static inline void
31 virtio_mb(uint8_t weak_barriers)
32 {
33         if (weak_barriers)
34                 rte_smp_mb();
35         else
36                 rte_mb();
37 }
38
39 static inline void
40 virtio_rmb(uint8_t weak_barriers)
41 {
42         if (weak_barriers)
43                 rte_smp_rmb();
44         else
45                 rte_cio_rmb();
46 }
47
48 static inline void
49 virtio_wmb(uint8_t weak_barriers)
50 {
51         if (weak_barriers)
52                 rte_smp_wmb();
53         else
54                 rte_cio_wmb();
55 }
56
57 #ifdef RTE_PMD_PACKET_PREFETCH
58 #define rte_packet_prefetch(p)  rte_prefetch1(p)
59 #else
60 #define rte_packet_prefetch(p)  do {} while(0)
61 #endif
62
63 #define VIRTQUEUE_MAX_NAME_SZ 32
64
65 #ifdef RTE_VIRTIO_USER
66 /**
67  * Return the physical address (or virtual address in case of
68  * virtio-user) of mbuf data buffer.
69  *
70  * The address is firstly casted to the word size (sizeof(uintptr_t))
71  * before casting it to uint64_t. This is to make it work with different
72  * combination of word size (64 bit and 32 bit) and virtio device
73  * (virtio-pci and virtio-user).
74  */
75 #define VIRTIO_MBUF_ADDR(mb, vq) \
76         ((uint64_t)(*(uintptr_t *)((uintptr_t)(mb) + (vq)->offset)))
77 #else
78 #define VIRTIO_MBUF_ADDR(mb, vq) ((mb)->buf_iova)
79 #endif
80
81 /**
82  * Return the physical address (or virtual address in case of
83  * virtio-user) of mbuf data buffer, taking care of mbuf data offset
84  */
85 #define VIRTIO_MBUF_DATA_DMA_ADDR(mb, vq) \
86         (VIRTIO_MBUF_ADDR(mb, vq) + (mb)->data_off)
87
88 #define VTNET_SQ_RQ_QUEUE_IDX 0
89 #define VTNET_SQ_TQ_QUEUE_IDX 1
90 #define VTNET_SQ_CQ_QUEUE_IDX 2
91
92 enum { VTNET_RQ = 0, VTNET_TQ = 1, VTNET_CQ = 2 };
93 /**
94  * The maximum virtqueue size is 2^15. Use that value as the end of
95  * descriptor chain terminator since it will never be a valid index
96  * in the descriptor table. This is used to verify we are correctly
97  * handling vq_free_cnt.
98  */
99 #define VQ_RING_DESC_CHAIN_END 32768
100
101 /**
102  * Control the RX mode, ie. promiscuous, allmulti, etc...
103  * All commands require an "out" sg entry containing a 1 byte
104  * state value, zero = disable, non-zero = enable.  Commands
105  * 0 and 1 are supported with the VIRTIO_NET_F_CTRL_RX feature.
106  * Commands 2-5 are added with VIRTIO_NET_F_CTRL_RX_EXTRA.
107  */
108 #define VIRTIO_NET_CTRL_RX              0
109 #define VIRTIO_NET_CTRL_RX_PROMISC      0
110 #define VIRTIO_NET_CTRL_RX_ALLMULTI     1
111 #define VIRTIO_NET_CTRL_RX_ALLUNI       2
112 #define VIRTIO_NET_CTRL_RX_NOMULTI      3
113 #define VIRTIO_NET_CTRL_RX_NOUNI        4
114 #define VIRTIO_NET_CTRL_RX_NOBCAST      5
115
116 /**
117  * Control the MAC
118  *
119  * The MAC filter table is managed by the hypervisor, the guest should
120  * assume the size is infinite.  Filtering should be considered
121  * non-perfect, ie. based on hypervisor resources, the guest may
122  * received packets from sources not specified in the filter list.
123  *
124  * In addition to the class/cmd header, the TABLE_SET command requires
125  * two out scatterlists.  Each contains a 4 byte count of entries followed
126  * by a concatenated byte stream of the ETH_ALEN MAC addresses.  The
127  * first sg list contains unicast addresses, the second is for multicast.
128  * This functionality is present if the VIRTIO_NET_F_CTRL_RX feature
129  * is available.
130  *
131  * The ADDR_SET command requests one out scatterlist, it contains a
132  * 6 bytes MAC address. This functionality is present if the
133  * VIRTIO_NET_F_CTRL_MAC_ADDR feature is available.
134  */
135 struct virtio_net_ctrl_mac {
136         uint32_t entries;
137         uint8_t macs[][ETHER_ADDR_LEN];
138 } __attribute__((__packed__));
139
140 #define VIRTIO_NET_CTRL_MAC    1
141 #define VIRTIO_NET_CTRL_MAC_TABLE_SET        0
142 #define VIRTIO_NET_CTRL_MAC_ADDR_SET         1
143
144 /**
145  * Control VLAN filtering
146  *
147  * The VLAN filter table is controlled via a simple ADD/DEL interface.
148  * VLAN IDs not added may be filtered by the hypervisor.  Del is the
149  * opposite of add.  Both commands expect an out entry containing a 2
150  * byte VLAN ID.  VLAN filtering is available with the
151  * VIRTIO_NET_F_CTRL_VLAN feature bit.
152  */
153 #define VIRTIO_NET_CTRL_VLAN     2
154 #define VIRTIO_NET_CTRL_VLAN_ADD 0
155 #define VIRTIO_NET_CTRL_VLAN_DEL 1
156
157 /*
158  * Control link announce acknowledgement
159  *
160  * The command VIRTIO_NET_CTRL_ANNOUNCE_ACK is used to indicate that
161  * driver has recevied the notification; device would clear the
162  * VIRTIO_NET_S_ANNOUNCE bit in the status field after it receives
163  * this command.
164  */
165 #define VIRTIO_NET_CTRL_ANNOUNCE     3
166 #define VIRTIO_NET_CTRL_ANNOUNCE_ACK 0
167
168 struct virtio_net_ctrl_hdr {
169         uint8_t class;
170         uint8_t cmd;
171 } __attribute__((packed));
172
173 typedef uint8_t virtio_net_ctrl_ack;
174
175 #define VIRTIO_NET_OK     0
176 #define VIRTIO_NET_ERR    1
177
178 #define VIRTIO_MAX_CTRL_DATA 2048
179
180 struct virtio_pmd_ctrl {
181         struct virtio_net_ctrl_hdr hdr;
182         virtio_net_ctrl_ack status;
183         uint8_t data[VIRTIO_MAX_CTRL_DATA];
184 };
185
186 struct vq_desc_extra {
187         void *cookie;
188         uint16_t ndescs;
189         uint16_t next;
190 };
191
192 struct virtqueue {
193         struct virtio_hw  *hw; /**< virtio_hw structure pointer. */
194         struct vring vq_ring;  /**< vring keeping desc, used and avail */
195         struct vring_packed ring_packed;  /**< vring keeping descs */
196         bool avail_wrap_counter;
197         bool used_wrap_counter;
198         uint16_t event_flags_shadow;
199         uint16_t avail_used_flags;
200         /**
201          * Last consumed descriptor in the used table,
202          * trails vq_ring.used->idx.
203          */
204         uint16_t vq_used_cons_idx;
205         uint16_t vq_nentries;  /**< vring desc numbers */
206         uint16_t vq_free_cnt;  /**< num of desc available */
207         uint16_t vq_avail_idx; /**< sync until needed */
208         uint16_t vq_free_thresh; /**< free threshold */
209
210         void *vq_ring_virt_mem;  /**< linear address of vring*/
211         unsigned int vq_ring_size;
212
213         union {
214                 struct virtnet_rx rxq;
215                 struct virtnet_tx txq;
216                 struct virtnet_ctl cq;
217         };
218
219         rte_iova_t vq_ring_mem; /**< physical address of vring,
220                                  * or virtual address for virtio_user. */
221
222         /**
223          * Head of the free chain in the descriptor table. If
224          * there are no free descriptors, this will be set to
225          * VQ_RING_DESC_CHAIN_END.
226          */
227         uint16_t  vq_desc_head_idx;
228         uint16_t  vq_desc_tail_idx;
229         uint16_t  vq_queue_index;   /**< PCI queue index */
230         uint16_t offset; /**< relative offset to obtain addr in mbuf */
231         uint16_t  *notify_addr;
232         struct rte_mbuf **sw_ring;  /**< RX software ring. */
233         struct vq_desc_extra vq_descx[0];
234 };
235
236 /* If multiqueue is provided by host, then we suppport it. */
237 #define VIRTIO_NET_CTRL_MQ   4
238 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET        0
239 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN        1
240 #define VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX        0x8000
241
242 /**
243  * This is the first element of the scatter-gather list.  If you don't
244  * specify GSO or CSUM features, you can simply ignore the header.
245  */
246 struct virtio_net_hdr {
247 #define VIRTIO_NET_HDR_F_NEEDS_CSUM 1    /**< Use csum_start,csum_offset*/
248 #define VIRTIO_NET_HDR_F_DATA_VALID 2    /**< Checksum is valid */
249         uint8_t flags;
250 #define VIRTIO_NET_HDR_GSO_NONE     0    /**< Not a GSO frame */
251 #define VIRTIO_NET_HDR_GSO_TCPV4    1    /**< GSO frame, IPv4 TCP (TSO) */
252 #define VIRTIO_NET_HDR_GSO_UDP      3    /**< GSO frame, IPv4 UDP (UFO) */
253 #define VIRTIO_NET_HDR_GSO_TCPV6    4    /**< GSO frame, IPv6 TCP */
254 #define VIRTIO_NET_HDR_GSO_ECN      0x80 /**< TCP has ECN set */
255         uint8_t gso_type;
256         uint16_t hdr_len;     /**< Ethernet + IP + tcp/udp hdrs */
257         uint16_t gso_size;    /**< Bytes to append to hdr_len per frame */
258         uint16_t csum_start;  /**< Position to start checksumming from */
259         uint16_t csum_offset; /**< Offset after that to place checksum */
260 };
261
262 /**
263  * This is the version of the header to use when the MRG_RXBUF
264  * feature has been negotiated.
265  */
266 struct virtio_net_hdr_mrg_rxbuf {
267         struct   virtio_net_hdr hdr;
268         uint16_t num_buffers; /**< Number of merged rx buffers */
269 };
270
271 /* Region reserved to allow for transmit header and indirect ring */
272 #define VIRTIO_MAX_TX_INDIRECT 8
273 struct virtio_tx_region {
274         struct virtio_net_hdr_mrg_rxbuf tx_hdr;
275         union {
276                 struct vring_desc tx_indir[VIRTIO_MAX_TX_INDIRECT]
277                         __attribute__((__aligned__(16)));
278                 struct vring_packed_desc tx_indir_pq[VIRTIO_MAX_TX_INDIRECT]
279                         __attribute__((__aligned__(16)));
280         };
281 };
282
283 static inline int
284 desc_is_used(struct vring_packed_desc *desc, struct virtqueue *vq)
285 {
286         uint16_t used, avail, flags;
287
288         flags = desc->flags;
289         used = !!(flags & VRING_DESC_F_USED(1));
290         avail = !!(flags & VRING_DESC_F_AVAIL(1));
291
292         return avail == used && used == vq->used_wrap_counter;
293 }
294
295
296 static inline void
297 vring_desc_init_packed(struct virtqueue *vq, int n)
298 {
299         int i;
300         for (i = 0; i < n - 1; i++) {
301                 vq->ring_packed.desc_packed[i].id = i;
302                 vq->vq_descx[i].next = i + 1;
303         }
304         vq->ring_packed.desc_packed[i].id = i;
305         vq->vq_descx[i].next = VQ_RING_DESC_CHAIN_END;
306 }
307
308 /* Chain all the descriptors in the ring with an END */
309 static inline void
310 vring_desc_init_split(struct vring_desc *dp, uint16_t n)
311 {
312         uint16_t i;
313
314         for (i = 0; i < n - 1; i++)
315                 dp[i].next = (uint16_t)(i + 1);
316         dp[i].next = VQ_RING_DESC_CHAIN_END;
317 }
318
319 /**
320  * Tell the backend not to interrupt us.
321  */
322 static inline void
323 virtqueue_disable_intr_packed(struct virtqueue *vq)
324 {
325         uint16_t *event_flags = &vq->ring_packed.driver_event->desc_event_flags;
326
327         *event_flags = RING_EVENT_FLAGS_DISABLE;
328 }
329
330
331 /**
332  * Tell the backend not to interrupt us.
333  */
334 static inline void
335 virtqueue_disable_intr(struct virtqueue *vq)
336 {
337         if (vtpci_packed_queue(vq->hw))
338                 virtqueue_disable_intr_packed(vq);
339         else
340                 vq->vq_ring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
341 }
342
343 /**
344  * Tell the backend to interrupt. Implementation for packed virtqueues.
345  */
346 static inline void
347 virtqueue_enable_intr_packed(struct virtqueue *vq)
348 {
349         uint16_t *event_flags = &vq->ring_packed.driver_event->desc_event_flags;
350
351
352         if (vq->event_flags_shadow == RING_EVENT_FLAGS_DISABLE) {
353                 virtio_wmb(vq->hw->weak_barriers);
354                 vq->event_flags_shadow = RING_EVENT_FLAGS_ENABLE;
355                 *event_flags = vq->event_flags_shadow;
356         }
357 }
358
359 /**
360  * Tell the backend to interrupt. Implementation for split virtqueues.
361  */
362 static inline void
363 virtqueue_enable_intr_split(struct virtqueue *vq)
364 {
365         vq->vq_ring.avail->flags &= (~VRING_AVAIL_F_NO_INTERRUPT);
366 }
367
368 /**
369  * Tell the backend to interrupt us.
370  */
371 static inline void
372 virtqueue_enable_intr(struct virtqueue *vq)
373 {
374         if (vtpci_packed_queue(vq->hw))
375                 virtqueue_enable_intr_packed(vq);
376         else
377                 virtqueue_enable_intr_split(vq);
378 }
379
380 /**
381  *  Dump virtqueue internal structures, for debug purpose only.
382  */
383 void virtqueue_dump(struct virtqueue *vq);
384 /**
385  *  Get all mbufs to be freed.
386  */
387 struct rte_mbuf *virtqueue_detach_unused(struct virtqueue *vq);
388
389 /* Flush the elements in the used ring. */
390 void virtqueue_rxvq_flush(struct virtqueue *vq);
391
392 static inline int
393 virtqueue_full(const struct virtqueue *vq)
394 {
395         return vq->vq_free_cnt == 0;
396 }
397
398 static inline int
399 virtio_get_queue_type(struct virtio_hw *hw, uint16_t vtpci_queue_idx)
400 {
401         if (vtpci_queue_idx == hw->max_queue_pairs * 2)
402                 return VTNET_CQ;
403         else if (vtpci_queue_idx % 2 == 0)
404                 return VTNET_RQ;
405         else
406                 return VTNET_TQ;
407 }
408
409 #define VIRTQUEUE_NUSED(vq) ((uint16_t)((vq)->vq_ring.used->idx - (vq)->vq_used_cons_idx))
410
411 void vq_ring_free_chain(struct virtqueue *vq, uint16_t desc_idx);
412 void vq_ring_free_chain_packed(struct virtqueue *vq, uint16_t used_idx);
413 void vq_ring_free_inorder(struct virtqueue *vq, uint16_t desc_idx,
414                           uint16_t num);
415
416 static inline void
417 vq_update_avail_idx(struct virtqueue *vq)
418 {
419         virtio_wmb(vq->hw->weak_barriers);
420         vq->vq_ring.avail->idx = vq->vq_avail_idx;
421 }
422
423 static inline void
424 vq_update_avail_ring(struct virtqueue *vq, uint16_t desc_idx)
425 {
426         uint16_t avail_idx;
427         /*
428          * Place the head of the descriptor chain into the next slot and make
429          * it usable to the host. The chain is made available now rather than
430          * deferring to virtqueue_notify() in the hopes that if the host is
431          * currently running on another CPU, we can keep it processing the new
432          * descriptor.
433          */
434         avail_idx = (uint16_t)(vq->vq_avail_idx & (vq->vq_nentries - 1));
435         if (unlikely(vq->vq_ring.avail->ring[avail_idx] != desc_idx))
436                 vq->vq_ring.avail->ring[avail_idx] = desc_idx;
437         vq->vq_avail_idx++;
438 }
439
440 static inline int
441 virtqueue_kick_prepare(struct virtqueue *vq)
442 {
443         /*
444          * Ensure updated avail->idx is visible to vhost before reading
445          * the used->flags.
446          */
447         virtio_mb(vq->hw->weak_barriers);
448         return !(vq->vq_ring.used->flags & VRING_USED_F_NO_NOTIFY);
449 }
450
451 static inline int
452 virtqueue_kick_prepare_packed(struct virtqueue *vq)
453 {
454         uint16_t flags;
455
456         /*
457          * Ensure updated data is visible to vhost before reading the flags.
458          */
459         virtio_mb(vq->hw->weak_barriers);
460         flags = vq->ring_packed.device_event->desc_event_flags;
461
462         return flags != RING_EVENT_FLAGS_DISABLE;
463 }
464
465 /*
466  * virtqueue_kick_prepare*() or the virtio_wmb() should be called
467  * before this function to be sure that all the data is visible to vhost.
468  */
469 static inline void
470 virtqueue_notify(struct virtqueue *vq)
471 {
472         VTPCI_OPS(vq->hw)->notify_queue(vq->hw, vq);
473 }
474
475 #ifdef RTE_LIBRTE_VIRTIO_DEBUG_DUMP
476 #define VIRTQUEUE_DUMP(vq) do { \
477         uint16_t used_idx, nused; \
478         used_idx = (vq)->vq_ring.used->idx; \
479         nused = (uint16_t)(used_idx - (vq)->vq_used_cons_idx); \
480         if (vtpci_packed_queue((vq)->hw)) { \
481                 PMD_INIT_LOG(DEBUG, \
482                 "VQ: - size=%d; free=%d; used_cons_idx=%d; avail_idx=%d;" \
483                 "VQ: - avail_wrap_counter=%d; used_wrap_counter=%d", \
484                 (vq)->vq_nentries, (vq)->vq_free_cnt, (vq)->vq_used_cons_idx, \
485                 (vq)->vq_avail_idx, (vq)->avail_wrap_counter, \
486                 (vq)->used_wrap_counter); \
487                 break; \
488         } \
489         PMD_INIT_LOG(DEBUG, \
490           "VQ: - size=%d; free=%d; used=%d; desc_head_idx=%d;" \
491           " avail.idx=%d; used_cons_idx=%d; used.idx=%d;" \
492           " avail.flags=0x%x; used.flags=0x%x", \
493           (vq)->vq_nentries, (vq)->vq_free_cnt, nused, \
494           (vq)->vq_desc_head_idx, (vq)->vq_ring.avail->idx, \
495           (vq)->vq_used_cons_idx, (vq)->vq_ring.used->idx, \
496           (vq)->vq_ring.avail->flags, (vq)->vq_ring.used->flags); \
497 } while (0)
498 #else
499 #define VIRTQUEUE_DUMP(vq) do { } while (0)
500 #endif
501
502 #endif /* _VIRTQUEUE_H_ */