net/virtio: move PCI specific dev init to PCI ethdev init
[dpdk.git] / drivers / net / virtio / virtio_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #include <stdint.h>
6 #include <string.h>
7 #include <stdio.h>
8 #include <errno.h>
9 #include <unistd.h>
10
11 #include <ethdev_driver.h>
12 #include <ethdev_pci.h>
13 #include <rte_memcpy.h>
14 #include <rte_string_fns.h>
15 #include <rte_memzone.h>
16 #include <rte_malloc.h>
17 #include <rte_branch_prediction.h>
18 #include <rte_pci.h>
19 #include <rte_bus_pci.h>
20 #include <rte_ether.h>
21 #include <rte_ip.h>
22 #include <rte_arp.h>
23 #include <rte_common.h>
24 #include <rte_errno.h>
25 #include <rte_cpuflags.h>
26 #include <rte_vect.h>
27
28 #include <rte_memory.h>
29 #include <rte_eal.h>
30 #include <rte_dev.h>
31 #include <rte_cycles.h>
32 #include <rte_kvargs.h>
33
34 #include "virtio_ethdev.h"
35 #include "virtio_pci.h"
36 #include "virtio_logs.h"
37 #include "virtqueue.h"
38 #include "virtio_rxtx.h"
39 #include "virtio_user/virtio_user_dev.h"
40
41 static int  virtio_dev_configure(struct rte_eth_dev *dev);
42 static int  virtio_dev_start(struct rte_eth_dev *dev);
43 static int virtio_dev_promiscuous_enable(struct rte_eth_dev *dev);
44 static int virtio_dev_promiscuous_disable(struct rte_eth_dev *dev);
45 static int virtio_dev_allmulticast_enable(struct rte_eth_dev *dev);
46 static int virtio_dev_allmulticast_disable(struct rte_eth_dev *dev);
47 static uint32_t virtio_dev_speed_capa_get(uint32_t speed);
48 static int virtio_dev_devargs_parse(struct rte_devargs *devargs,
49         uint32_t *speed,
50         int *vectorized);
51 static int virtio_dev_info_get(struct rte_eth_dev *dev,
52                                 struct rte_eth_dev_info *dev_info);
53 static int virtio_dev_link_update(struct rte_eth_dev *dev,
54         int wait_to_complete);
55 static int virtio_dev_vlan_offload_set(struct rte_eth_dev *dev, int mask);
56
57 static void virtio_set_hwaddr(struct virtio_hw *hw);
58 static void virtio_get_hwaddr(struct virtio_hw *hw);
59
60 static int virtio_dev_stats_get(struct rte_eth_dev *dev,
61                                  struct rte_eth_stats *stats);
62 static int virtio_dev_xstats_get(struct rte_eth_dev *dev,
63                                  struct rte_eth_xstat *xstats, unsigned n);
64 static int virtio_dev_xstats_get_names(struct rte_eth_dev *dev,
65                                        struct rte_eth_xstat_name *xstats_names,
66                                        unsigned limit);
67 static int virtio_dev_stats_reset(struct rte_eth_dev *dev);
68 static void virtio_dev_free_mbufs(struct rte_eth_dev *dev);
69 static int virtio_vlan_filter_set(struct rte_eth_dev *dev,
70                                 uint16_t vlan_id, int on);
71 static int virtio_mac_addr_add(struct rte_eth_dev *dev,
72                                 struct rte_ether_addr *mac_addr,
73                                 uint32_t index, uint32_t vmdq);
74 static void virtio_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
75 static int virtio_mac_addr_set(struct rte_eth_dev *dev,
76                                 struct rte_ether_addr *mac_addr);
77
78 static int virtio_intr_disable(struct rte_eth_dev *dev);
79
80 static int virtio_dev_queue_stats_mapping_set(
81         struct rte_eth_dev *eth_dev,
82         uint16_t queue_id,
83         uint8_t stat_idx,
84         uint8_t is_rx);
85
86 static void virtio_notify_peers(struct rte_eth_dev *dev);
87 static void virtio_ack_link_announce(struct rte_eth_dev *dev);
88
89 struct rte_virtio_xstats_name_off {
90         char name[RTE_ETH_XSTATS_NAME_SIZE];
91         unsigned offset;
92 };
93
94 /* [rt]x_qX_ is prepended to the name string here */
95 static const struct rte_virtio_xstats_name_off rte_virtio_rxq_stat_strings[] = {
96         {"good_packets",           offsetof(struct virtnet_rx, stats.packets)},
97         {"good_bytes",             offsetof(struct virtnet_rx, stats.bytes)},
98         {"errors",                 offsetof(struct virtnet_rx, stats.errors)},
99         {"multicast_packets",      offsetof(struct virtnet_rx, stats.multicast)},
100         {"broadcast_packets",      offsetof(struct virtnet_rx, stats.broadcast)},
101         {"undersize_packets",      offsetof(struct virtnet_rx, stats.size_bins[0])},
102         {"size_64_packets",        offsetof(struct virtnet_rx, stats.size_bins[1])},
103         {"size_65_127_packets",    offsetof(struct virtnet_rx, stats.size_bins[2])},
104         {"size_128_255_packets",   offsetof(struct virtnet_rx, stats.size_bins[3])},
105         {"size_256_511_packets",   offsetof(struct virtnet_rx, stats.size_bins[4])},
106         {"size_512_1023_packets",  offsetof(struct virtnet_rx, stats.size_bins[5])},
107         {"size_1024_1518_packets", offsetof(struct virtnet_rx, stats.size_bins[6])},
108         {"size_1519_max_packets",  offsetof(struct virtnet_rx, stats.size_bins[7])},
109 };
110
111 /* [rt]x_qX_ is prepended to the name string here */
112 static const struct rte_virtio_xstats_name_off rte_virtio_txq_stat_strings[] = {
113         {"good_packets",           offsetof(struct virtnet_tx, stats.packets)},
114         {"good_bytes",             offsetof(struct virtnet_tx, stats.bytes)},
115         {"multicast_packets",      offsetof(struct virtnet_tx, stats.multicast)},
116         {"broadcast_packets",      offsetof(struct virtnet_tx, stats.broadcast)},
117         {"undersize_packets",      offsetof(struct virtnet_tx, stats.size_bins[0])},
118         {"size_64_packets",        offsetof(struct virtnet_tx, stats.size_bins[1])},
119         {"size_65_127_packets",    offsetof(struct virtnet_tx, stats.size_bins[2])},
120         {"size_128_255_packets",   offsetof(struct virtnet_tx, stats.size_bins[3])},
121         {"size_256_511_packets",   offsetof(struct virtnet_tx, stats.size_bins[4])},
122         {"size_512_1023_packets",  offsetof(struct virtnet_tx, stats.size_bins[5])},
123         {"size_1024_1518_packets", offsetof(struct virtnet_tx, stats.size_bins[6])},
124         {"size_1519_max_packets",  offsetof(struct virtnet_tx, stats.size_bins[7])},
125 };
126
127 #define VIRTIO_NB_RXQ_XSTATS (sizeof(rte_virtio_rxq_stat_strings) / \
128                             sizeof(rte_virtio_rxq_stat_strings[0]))
129 #define VIRTIO_NB_TXQ_XSTATS (sizeof(rte_virtio_txq_stat_strings) / \
130                             sizeof(rte_virtio_txq_stat_strings[0]))
131
132 struct virtio_hw_internal virtio_hw_internal[RTE_MAX_ETHPORTS];
133
134 static struct virtio_pmd_ctrl *
135 virtio_send_command_packed(struct virtnet_ctl *cvq,
136                            struct virtio_pmd_ctrl *ctrl,
137                            int *dlen, int pkt_num)
138 {
139         struct virtqueue *vq = cvq->vq;
140         int head;
141         struct vring_packed_desc *desc = vq->vq_packed.ring.desc;
142         struct virtio_pmd_ctrl *result;
143         uint16_t flags;
144         int sum = 0;
145         int nb_descs = 0;
146         int k;
147
148         /*
149          * Format is enforced in qemu code:
150          * One TX packet for header;
151          * At least one TX packet per argument;
152          * One RX packet for ACK.
153          */
154         head = vq->vq_avail_idx;
155         flags = vq->vq_packed.cached_flags;
156         desc[head].addr = cvq->virtio_net_hdr_mem;
157         desc[head].len = sizeof(struct virtio_net_ctrl_hdr);
158         vq->vq_free_cnt--;
159         nb_descs++;
160         if (++vq->vq_avail_idx >= vq->vq_nentries) {
161                 vq->vq_avail_idx -= vq->vq_nentries;
162                 vq->vq_packed.cached_flags ^= VRING_PACKED_DESC_F_AVAIL_USED;
163         }
164
165         for (k = 0; k < pkt_num; k++) {
166                 desc[vq->vq_avail_idx].addr = cvq->virtio_net_hdr_mem
167                         + sizeof(struct virtio_net_ctrl_hdr)
168                         + sizeof(ctrl->status) + sizeof(uint8_t) * sum;
169                 desc[vq->vq_avail_idx].len = dlen[k];
170                 desc[vq->vq_avail_idx].flags = VRING_DESC_F_NEXT |
171                         vq->vq_packed.cached_flags;
172                 sum += dlen[k];
173                 vq->vq_free_cnt--;
174                 nb_descs++;
175                 if (++vq->vq_avail_idx >= vq->vq_nentries) {
176                         vq->vq_avail_idx -= vq->vq_nentries;
177                         vq->vq_packed.cached_flags ^=
178                                 VRING_PACKED_DESC_F_AVAIL_USED;
179                 }
180         }
181
182         desc[vq->vq_avail_idx].addr = cvq->virtio_net_hdr_mem
183                 + sizeof(struct virtio_net_ctrl_hdr);
184         desc[vq->vq_avail_idx].len = sizeof(ctrl->status);
185         desc[vq->vq_avail_idx].flags = VRING_DESC_F_WRITE |
186                 vq->vq_packed.cached_flags;
187         vq->vq_free_cnt--;
188         nb_descs++;
189         if (++vq->vq_avail_idx >= vq->vq_nentries) {
190                 vq->vq_avail_idx -= vq->vq_nentries;
191                 vq->vq_packed.cached_flags ^= VRING_PACKED_DESC_F_AVAIL_USED;
192         }
193
194         virtqueue_store_flags_packed(&desc[head], VRING_DESC_F_NEXT | flags,
195                         vq->hw->weak_barriers);
196
197         virtio_wmb(vq->hw->weak_barriers);
198         virtqueue_notify(vq);
199
200         /* wait for used desc in virtqueue
201          * desc_is_used has a load-acquire or rte_io_rmb inside
202          */
203         while (!desc_is_used(&desc[head], vq))
204                 usleep(100);
205
206         /* now get used descriptors */
207         vq->vq_free_cnt += nb_descs;
208         vq->vq_used_cons_idx += nb_descs;
209         if (vq->vq_used_cons_idx >= vq->vq_nentries) {
210                 vq->vq_used_cons_idx -= vq->vq_nentries;
211                 vq->vq_packed.used_wrap_counter ^= 1;
212         }
213
214         PMD_INIT_LOG(DEBUG, "vq->vq_free_cnt=%d\n"
215                         "vq->vq_avail_idx=%d\n"
216                         "vq->vq_used_cons_idx=%d\n"
217                         "vq->vq_packed.cached_flags=0x%x\n"
218                         "vq->vq_packed.used_wrap_counter=%d\n",
219                         vq->vq_free_cnt,
220                         vq->vq_avail_idx,
221                         vq->vq_used_cons_idx,
222                         vq->vq_packed.cached_flags,
223                         vq->vq_packed.used_wrap_counter);
224
225         result = cvq->virtio_net_hdr_mz->addr;
226         return result;
227 }
228
229 static struct virtio_pmd_ctrl *
230 virtio_send_command_split(struct virtnet_ctl *cvq,
231                           struct virtio_pmd_ctrl *ctrl,
232                           int *dlen, int pkt_num)
233 {
234         struct virtio_pmd_ctrl *result;
235         struct virtqueue *vq = cvq->vq;
236         uint32_t head, i;
237         int k, sum = 0;
238
239         head = vq->vq_desc_head_idx;
240
241         /*
242          * Format is enforced in qemu code:
243          * One TX packet for header;
244          * At least one TX packet per argument;
245          * One RX packet for ACK.
246          */
247         vq->vq_split.ring.desc[head].flags = VRING_DESC_F_NEXT;
248         vq->vq_split.ring.desc[head].addr = cvq->virtio_net_hdr_mem;
249         vq->vq_split.ring.desc[head].len = sizeof(struct virtio_net_ctrl_hdr);
250         vq->vq_free_cnt--;
251         i = vq->vq_split.ring.desc[head].next;
252
253         for (k = 0; k < pkt_num; k++) {
254                 vq->vq_split.ring.desc[i].flags = VRING_DESC_F_NEXT;
255                 vq->vq_split.ring.desc[i].addr = cvq->virtio_net_hdr_mem
256                         + sizeof(struct virtio_net_ctrl_hdr)
257                         + sizeof(ctrl->status) + sizeof(uint8_t)*sum;
258                 vq->vq_split.ring.desc[i].len = dlen[k];
259                 sum += dlen[k];
260                 vq->vq_free_cnt--;
261                 i = vq->vq_split.ring.desc[i].next;
262         }
263
264         vq->vq_split.ring.desc[i].flags = VRING_DESC_F_WRITE;
265         vq->vq_split.ring.desc[i].addr = cvq->virtio_net_hdr_mem
266                         + sizeof(struct virtio_net_ctrl_hdr);
267         vq->vq_split.ring.desc[i].len = sizeof(ctrl->status);
268         vq->vq_free_cnt--;
269
270         vq->vq_desc_head_idx = vq->vq_split.ring.desc[i].next;
271
272         vq_update_avail_ring(vq, head);
273         vq_update_avail_idx(vq);
274
275         PMD_INIT_LOG(DEBUG, "vq->vq_queue_index = %d", vq->vq_queue_index);
276
277         virtqueue_notify(vq);
278
279         while (virtqueue_nused(vq) == 0)
280                 usleep(100);
281
282         while (virtqueue_nused(vq)) {
283                 uint32_t idx, desc_idx, used_idx;
284                 struct vring_used_elem *uep;
285
286                 used_idx = (uint32_t)(vq->vq_used_cons_idx
287                                 & (vq->vq_nentries - 1));
288                 uep = &vq->vq_split.ring.used->ring[used_idx];
289                 idx = (uint32_t) uep->id;
290                 desc_idx = idx;
291
292                 while (vq->vq_split.ring.desc[desc_idx].flags &
293                                 VRING_DESC_F_NEXT) {
294                         desc_idx = vq->vq_split.ring.desc[desc_idx].next;
295                         vq->vq_free_cnt++;
296                 }
297
298                 vq->vq_split.ring.desc[desc_idx].next = vq->vq_desc_head_idx;
299                 vq->vq_desc_head_idx = idx;
300
301                 vq->vq_used_cons_idx++;
302                 vq->vq_free_cnt++;
303         }
304
305         PMD_INIT_LOG(DEBUG, "vq->vq_free_cnt=%d\nvq->vq_desc_head_idx=%d",
306                         vq->vq_free_cnt, vq->vq_desc_head_idx);
307
308         result = cvq->virtio_net_hdr_mz->addr;
309         return result;
310 }
311
312 static int
313 virtio_send_command(struct virtnet_ctl *cvq, struct virtio_pmd_ctrl *ctrl,
314                     int *dlen, int pkt_num)
315 {
316         virtio_net_ctrl_ack status = ~0;
317         struct virtio_pmd_ctrl *result;
318         struct virtqueue *vq;
319
320         ctrl->status = status;
321
322         if (!cvq || !cvq->vq) {
323                 PMD_INIT_LOG(ERR, "Control queue is not supported.");
324                 return -1;
325         }
326
327         rte_spinlock_lock(&cvq->lock);
328         vq = cvq->vq;
329
330         PMD_INIT_LOG(DEBUG, "vq->vq_desc_head_idx = %d, status = %d, "
331                 "vq->hw->cvq = %p vq = %p",
332                 vq->vq_desc_head_idx, status, vq->hw->cvq, vq);
333
334         if (vq->vq_free_cnt < pkt_num + 2 || pkt_num < 1) {
335                 rte_spinlock_unlock(&cvq->lock);
336                 return -1;
337         }
338
339         memcpy(cvq->virtio_net_hdr_mz->addr, ctrl,
340                 sizeof(struct virtio_pmd_ctrl));
341
342         if (vtpci_packed_queue(vq->hw))
343                 result = virtio_send_command_packed(cvq, ctrl, dlen, pkt_num);
344         else
345                 result = virtio_send_command_split(cvq, ctrl, dlen, pkt_num);
346
347         rte_spinlock_unlock(&cvq->lock);
348         return result->status;
349 }
350
351 static int
352 virtio_set_multiple_queues(struct rte_eth_dev *dev, uint16_t nb_queues)
353 {
354         struct virtio_hw *hw = dev->data->dev_private;
355         struct virtio_pmd_ctrl ctrl;
356         int dlen[1];
357         int ret;
358
359         ctrl.hdr.class = VIRTIO_NET_CTRL_MQ;
360         ctrl.hdr.cmd = VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET;
361         memcpy(ctrl.data, &nb_queues, sizeof(uint16_t));
362
363         dlen[0] = sizeof(uint16_t);
364
365         ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
366         if (ret) {
367                 PMD_INIT_LOG(ERR, "Multiqueue configured but send command "
368                           "failed, this is too late now...");
369                 return -EINVAL;
370         }
371
372         return 0;
373 }
374
375 static void
376 virtio_dev_queue_release(void *queue __rte_unused)
377 {
378         /* do nothing */
379 }
380
381 static uint16_t
382 virtio_get_nr_vq(struct virtio_hw *hw)
383 {
384         uint16_t nr_vq = hw->max_queue_pairs * 2;
385
386         if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ))
387                 nr_vq += 1;
388
389         return nr_vq;
390 }
391
392 static void
393 virtio_init_vring(struct virtqueue *vq)
394 {
395         int size = vq->vq_nentries;
396         uint8_t *ring_mem = vq->vq_ring_virt_mem;
397
398         PMD_INIT_FUNC_TRACE();
399
400         memset(ring_mem, 0, vq->vq_ring_size);
401
402         vq->vq_used_cons_idx = 0;
403         vq->vq_desc_head_idx = 0;
404         vq->vq_avail_idx = 0;
405         vq->vq_desc_tail_idx = (uint16_t)(vq->vq_nentries - 1);
406         vq->vq_free_cnt = vq->vq_nentries;
407         memset(vq->vq_descx, 0, sizeof(struct vq_desc_extra) * vq->vq_nentries);
408         if (vtpci_packed_queue(vq->hw)) {
409                 vring_init_packed(&vq->vq_packed.ring, ring_mem,
410                                   VIRTIO_PCI_VRING_ALIGN, size);
411                 vring_desc_init_packed(vq, size);
412         } else {
413                 struct vring *vr = &vq->vq_split.ring;
414
415                 vring_init_split(vr, ring_mem, VIRTIO_PCI_VRING_ALIGN, size);
416                 vring_desc_init_split(vr->desc, size);
417         }
418         /*
419          * Disable device(host) interrupting guest
420          */
421         virtqueue_disable_intr(vq);
422 }
423
424 static int
425 virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
426 {
427         char vq_name[VIRTQUEUE_MAX_NAME_SZ];
428         char vq_hdr_name[VIRTQUEUE_MAX_NAME_SZ];
429         const struct rte_memzone *mz = NULL, *hdr_mz = NULL;
430         unsigned int vq_size, size;
431         struct virtio_hw *hw = dev->data->dev_private;
432         struct virtnet_rx *rxvq = NULL;
433         struct virtnet_tx *txvq = NULL;
434         struct virtnet_ctl *cvq = NULL;
435         struct virtqueue *vq;
436         size_t sz_hdr_mz = 0;
437         void *sw_ring = NULL;
438         int queue_type = virtio_get_queue_type(hw, vtpci_queue_idx);
439         int ret;
440         int numa_node = dev->device->numa_node;
441
442         PMD_INIT_LOG(INFO, "setting up queue: %u on NUMA node %d",
443                         vtpci_queue_idx, numa_node);
444
445         /*
446          * Read the virtqueue size from the Queue Size field
447          * Always power of 2 and if 0 virtqueue does not exist
448          */
449         vq_size = VTPCI_OPS(hw)->get_queue_num(hw, vtpci_queue_idx);
450         PMD_INIT_LOG(DEBUG, "vq_size: %u", vq_size);
451         if (vq_size == 0) {
452                 PMD_INIT_LOG(ERR, "virtqueue does not exist");
453                 return -EINVAL;
454         }
455
456         if (!vtpci_packed_queue(hw) && !rte_is_power_of_2(vq_size)) {
457                 PMD_INIT_LOG(ERR, "split virtqueue size is not power of 2");
458                 return -EINVAL;
459         }
460
461         snprintf(vq_name, sizeof(vq_name), "port%d_vq%d",
462                  dev->data->port_id, vtpci_queue_idx);
463
464         size = RTE_ALIGN_CEIL(sizeof(*vq) +
465                                 vq_size * sizeof(struct vq_desc_extra),
466                                 RTE_CACHE_LINE_SIZE);
467         if (queue_type == VTNET_TQ) {
468                 /*
469                  * For each xmit packet, allocate a virtio_net_hdr
470                  * and indirect ring elements
471                  */
472                 sz_hdr_mz = vq_size * sizeof(struct virtio_tx_region);
473         } else if (queue_type == VTNET_CQ) {
474                 /* Allocate a page for control vq command, data and status */
475                 sz_hdr_mz = PAGE_SIZE;
476         }
477
478         vq = rte_zmalloc_socket(vq_name, size, RTE_CACHE_LINE_SIZE,
479                                 numa_node);
480         if (vq == NULL) {
481                 PMD_INIT_LOG(ERR, "can not allocate vq");
482                 return -ENOMEM;
483         }
484         hw->vqs[vtpci_queue_idx] = vq;
485
486         vq->hw = hw;
487         vq->vq_queue_index = vtpci_queue_idx;
488         vq->vq_nentries = vq_size;
489         if (vtpci_packed_queue(hw)) {
490                 vq->vq_packed.used_wrap_counter = 1;
491                 vq->vq_packed.cached_flags = VRING_PACKED_DESC_F_AVAIL;
492                 vq->vq_packed.event_flags_shadow = 0;
493                 if (queue_type == VTNET_RQ)
494                         vq->vq_packed.cached_flags |= VRING_DESC_F_WRITE;
495         }
496
497         /*
498          * Reserve a memzone for vring elements
499          */
500         size = vring_size(hw, vq_size, VIRTIO_PCI_VRING_ALIGN);
501         vq->vq_ring_size = RTE_ALIGN_CEIL(size, VIRTIO_PCI_VRING_ALIGN);
502         PMD_INIT_LOG(DEBUG, "vring_size: %d, rounded_vring_size: %d",
503                      size, vq->vq_ring_size);
504
505         mz = rte_memzone_reserve_aligned(vq_name, vq->vq_ring_size,
506                         numa_node, RTE_MEMZONE_IOVA_CONTIG,
507                         VIRTIO_PCI_VRING_ALIGN);
508         if (mz == NULL) {
509                 if (rte_errno == EEXIST)
510                         mz = rte_memzone_lookup(vq_name);
511                 if (mz == NULL) {
512                         ret = -ENOMEM;
513                         goto fail_q_alloc;
514                 }
515         }
516
517         memset(mz->addr, 0, mz->len);
518
519         vq->vq_ring_mem = mz->iova;
520         vq->vq_ring_virt_mem = mz->addr;
521         PMD_INIT_LOG(DEBUG, "vq->vq_ring_mem:      0x%" PRIx64,
522                      (uint64_t)mz->iova);
523         PMD_INIT_LOG(DEBUG, "vq->vq_ring_virt_mem: 0x%" PRIx64,
524                      (uint64_t)(uintptr_t)mz->addr);
525
526         virtio_init_vring(vq);
527
528         if (sz_hdr_mz) {
529                 snprintf(vq_hdr_name, sizeof(vq_hdr_name), "port%d_vq%d_hdr",
530                          dev->data->port_id, vtpci_queue_idx);
531                 hdr_mz = rte_memzone_reserve_aligned(vq_hdr_name, sz_hdr_mz,
532                                 numa_node, RTE_MEMZONE_IOVA_CONTIG,
533                                 RTE_CACHE_LINE_SIZE);
534                 if (hdr_mz == NULL) {
535                         if (rte_errno == EEXIST)
536                                 hdr_mz = rte_memzone_lookup(vq_hdr_name);
537                         if (hdr_mz == NULL) {
538                                 ret = -ENOMEM;
539                                 goto fail_q_alloc;
540                         }
541                 }
542         }
543
544         if (queue_type == VTNET_RQ) {
545                 size_t sz_sw = (RTE_PMD_VIRTIO_RX_MAX_BURST + vq_size) *
546                                sizeof(vq->sw_ring[0]);
547
548                 sw_ring = rte_zmalloc_socket("sw_ring", sz_sw,
549                                 RTE_CACHE_LINE_SIZE, numa_node);
550                 if (!sw_ring) {
551                         PMD_INIT_LOG(ERR, "can not allocate RX soft ring");
552                         ret = -ENOMEM;
553                         goto fail_q_alloc;
554                 }
555
556                 vq->sw_ring = sw_ring;
557                 rxvq = &vq->rxq;
558                 rxvq->vq = vq;
559                 rxvq->port_id = dev->data->port_id;
560                 rxvq->mz = mz;
561         } else if (queue_type == VTNET_TQ) {
562                 txvq = &vq->txq;
563                 txvq->vq = vq;
564                 txvq->port_id = dev->data->port_id;
565                 txvq->mz = mz;
566                 txvq->virtio_net_hdr_mz = hdr_mz;
567                 txvq->virtio_net_hdr_mem = hdr_mz->iova;
568         } else if (queue_type == VTNET_CQ) {
569                 cvq = &vq->cq;
570                 cvq->vq = vq;
571                 cvq->mz = mz;
572                 cvq->virtio_net_hdr_mz = hdr_mz;
573                 cvq->virtio_net_hdr_mem = hdr_mz->iova;
574                 memset(cvq->virtio_net_hdr_mz->addr, 0, PAGE_SIZE);
575
576                 hw->cvq = cvq;
577         }
578
579         /* For virtio_user case (that is when hw->virtio_user_dev is not NULL),
580          * we use virtual address. And we need properly set _offset_, please see
581          * VIRTIO_MBUF_DATA_DMA_ADDR in virtqueue.h for more information.
582          */
583         if (hw->bus_type == VIRTIO_BUS_PCI_LEGACY || hw->bus_type == VIRTIO_BUS_PCI_MODERN) {
584                 vq->offset = offsetof(struct rte_mbuf, buf_iova);
585         } else if (hw->bus_type == VIRTIO_BUS_USER) {
586                 vq->vq_ring_mem = (uintptr_t)mz->addr;
587                 vq->offset = offsetof(struct rte_mbuf, buf_addr);
588                 if (queue_type == VTNET_TQ)
589                         txvq->virtio_net_hdr_mem = (uintptr_t)hdr_mz->addr;
590                 else if (queue_type == VTNET_CQ)
591                         cvq->virtio_net_hdr_mem = (uintptr_t)hdr_mz->addr;
592         }
593
594         if (queue_type == VTNET_TQ) {
595                 struct virtio_tx_region *txr;
596                 unsigned int i;
597
598                 txr = hdr_mz->addr;
599                 memset(txr, 0, vq_size * sizeof(*txr));
600                 for (i = 0; i < vq_size; i++) {
601                         /* first indirect descriptor is always the tx header */
602                         if (!vtpci_packed_queue(hw)) {
603                                 struct vring_desc *start_dp = txr[i].tx_indir;
604                                 vring_desc_init_split(start_dp,
605                                                       RTE_DIM(txr[i].tx_indir));
606                                 start_dp->addr = txvq->virtio_net_hdr_mem
607                                         + i * sizeof(*txr)
608                                         + offsetof(struct virtio_tx_region,
609                                                    tx_hdr);
610                                 start_dp->len = hw->vtnet_hdr_size;
611                                 start_dp->flags = VRING_DESC_F_NEXT;
612                         } else {
613                                 struct vring_packed_desc *start_dp =
614                                         txr[i].tx_packed_indir;
615                                 vring_desc_init_indirect_packed(start_dp,
616                                       RTE_DIM(txr[i].tx_packed_indir));
617                                 start_dp->addr = txvq->virtio_net_hdr_mem
618                                         + i * sizeof(*txr)
619                                         + offsetof(struct virtio_tx_region,
620                                                    tx_hdr);
621                                 start_dp->len = hw->vtnet_hdr_size;
622                         }
623                 }
624         }
625
626         if (VTPCI_OPS(hw)->setup_queue(hw, vq) < 0) {
627                 PMD_INIT_LOG(ERR, "setup_queue failed");
628                 return -EINVAL;
629         }
630
631         return 0;
632
633 fail_q_alloc:
634         rte_free(sw_ring);
635         rte_memzone_free(hdr_mz);
636         rte_memzone_free(mz);
637         rte_free(vq);
638
639         return ret;
640 }
641
642 static void
643 virtio_free_queues(struct virtio_hw *hw)
644 {
645         uint16_t nr_vq = virtio_get_nr_vq(hw);
646         struct virtqueue *vq;
647         int queue_type;
648         uint16_t i;
649
650         if (hw->vqs == NULL)
651                 return;
652
653         for (i = 0; i < nr_vq; i++) {
654                 vq = hw->vqs[i];
655                 if (!vq)
656                         continue;
657
658                 queue_type = virtio_get_queue_type(hw, i);
659                 if (queue_type == VTNET_RQ) {
660                         rte_free(vq->sw_ring);
661                         rte_memzone_free(vq->rxq.mz);
662                 } else if (queue_type == VTNET_TQ) {
663                         rte_memzone_free(vq->txq.mz);
664                         rte_memzone_free(vq->txq.virtio_net_hdr_mz);
665                 } else {
666                         rte_memzone_free(vq->cq.mz);
667                         rte_memzone_free(vq->cq.virtio_net_hdr_mz);
668                 }
669
670                 rte_free(vq);
671                 hw->vqs[i] = NULL;
672         }
673
674         rte_free(hw->vqs);
675         hw->vqs = NULL;
676 }
677
678 static int
679 virtio_alloc_queues(struct rte_eth_dev *dev)
680 {
681         struct virtio_hw *hw = dev->data->dev_private;
682         uint16_t nr_vq = virtio_get_nr_vq(hw);
683         uint16_t i;
684         int ret;
685
686         hw->vqs = rte_zmalloc(NULL, sizeof(struct virtqueue *) * nr_vq, 0);
687         if (!hw->vqs) {
688                 PMD_INIT_LOG(ERR, "failed to allocate vqs");
689                 return -ENOMEM;
690         }
691
692         for (i = 0; i < nr_vq; i++) {
693                 ret = virtio_init_queue(dev, i);
694                 if (ret < 0) {
695                         virtio_free_queues(hw);
696                         return ret;
697                 }
698         }
699
700         return 0;
701 }
702
703 static void virtio_queues_unbind_intr(struct rte_eth_dev *dev);
704
705 int
706 virtio_dev_close(struct rte_eth_dev *dev)
707 {
708         struct virtio_hw *hw = dev->data->dev_private;
709         struct rte_intr_conf *intr_conf = &dev->data->dev_conf.intr_conf;
710
711         PMD_INIT_LOG(DEBUG, "virtio_dev_close");
712         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
713                 return 0;
714
715         if (!hw->opened)
716                 return 0;
717         hw->opened = false;
718
719         /* reset the NIC */
720         if (dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
721                 VTPCI_OPS(hw)->set_config_irq(hw, VIRTIO_MSI_NO_VECTOR);
722         if (intr_conf->rxq)
723                 virtio_queues_unbind_intr(dev);
724
725         if (intr_conf->lsc || intr_conf->rxq) {
726                 virtio_intr_disable(dev);
727                 rte_intr_efd_disable(dev->intr_handle);
728                 rte_free(dev->intr_handle->intr_vec);
729                 dev->intr_handle->intr_vec = NULL;
730         }
731
732         vtpci_reset(hw);
733         virtio_dev_free_mbufs(dev);
734         virtio_free_queues(hw);
735
736 #ifdef RTE_VIRTIO_USER
737         if (hw->bus_type == VIRTIO_BUS_USER)
738                 virtio_user_dev_uninit(dev->data->dev_private);
739         else
740 #endif
741         if (dev->device) {
742                 rte_pci_unmap_device(RTE_ETH_DEV_TO_PCI(dev));
743                 if (hw->bus_type == VIRTIO_BUS_PCI_LEGACY)
744                         rte_pci_ioport_unmap(VTPCI_IO(hw));
745         }
746
747         return 0;
748 }
749
750 static int
751 virtio_dev_promiscuous_enable(struct rte_eth_dev *dev)
752 {
753         struct virtio_hw *hw = dev->data->dev_private;
754         struct virtio_pmd_ctrl ctrl;
755         int dlen[1];
756         int ret;
757
758         if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
759                 PMD_INIT_LOG(INFO, "host does not support rx control");
760                 return -ENOTSUP;
761         }
762
763         ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
764         ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_PROMISC;
765         ctrl.data[0] = 1;
766         dlen[0] = 1;
767
768         ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
769         if (ret) {
770                 PMD_INIT_LOG(ERR, "Failed to enable promisc");
771                 return -EAGAIN;
772         }
773
774         return 0;
775 }
776
777 static int
778 virtio_dev_promiscuous_disable(struct rte_eth_dev *dev)
779 {
780         struct virtio_hw *hw = dev->data->dev_private;
781         struct virtio_pmd_ctrl ctrl;
782         int dlen[1];
783         int ret;
784
785         if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
786                 PMD_INIT_LOG(INFO, "host does not support rx control");
787                 return -ENOTSUP;
788         }
789
790         ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
791         ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_PROMISC;
792         ctrl.data[0] = 0;
793         dlen[0] = 1;
794
795         ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
796         if (ret) {
797                 PMD_INIT_LOG(ERR, "Failed to disable promisc");
798                 return -EAGAIN;
799         }
800
801         return 0;
802 }
803
804 static int
805 virtio_dev_allmulticast_enable(struct rte_eth_dev *dev)
806 {
807         struct virtio_hw *hw = dev->data->dev_private;
808         struct virtio_pmd_ctrl ctrl;
809         int dlen[1];
810         int ret;
811
812         if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
813                 PMD_INIT_LOG(INFO, "host does not support rx control");
814                 return -ENOTSUP;
815         }
816
817         ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
818         ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_ALLMULTI;
819         ctrl.data[0] = 1;
820         dlen[0] = 1;
821
822         ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
823         if (ret) {
824                 PMD_INIT_LOG(ERR, "Failed to enable allmulticast");
825                 return -EAGAIN;
826         }
827
828         return 0;
829 }
830
831 static int
832 virtio_dev_allmulticast_disable(struct rte_eth_dev *dev)
833 {
834         struct virtio_hw *hw = dev->data->dev_private;
835         struct virtio_pmd_ctrl ctrl;
836         int dlen[1];
837         int ret;
838
839         if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
840                 PMD_INIT_LOG(INFO, "host does not support rx control");
841                 return -ENOTSUP;
842         }
843
844         ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
845         ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_ALLMULTI;
846         ctrl.data[0] = 0;
847         dlen[0] = 1;
848
849         ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
850         if (ret) {
851                 PMD_INIT_LOG(ERR, "Failed to disable allmulticast");
852                 return -EAGAIN;
853         }
854
855         return 0;
856 }
857
858 #define VLAN_TAG_LEN           4    /* 802.3ac tag (not DMA'd) */
859 static int
860 virtio_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
861 {
862         struct virtio_hw *hw = dev->data->dev_private;
863         uint32_t ether_hdr_len = RTE_ETHER_HDR_LEN + VLAN_TAG_LEN +
864                                  hw->vtnet_hdr_size;
865         uint32_t frame_size = mtu + ether_hdr_len;
866         uint32_t max_frame_size = hw->max_mtu + ether_hdr_len;
867
868         max_frame_size = RTE_MIN(max_frame_size, VIRTIO_MAX_RX_PKTLEN);
869
870         if (mtu < RTE_ETHER_MIN_MTU || frame_size > max_frame_size) {
871                 PMD_INIT_LOG(ERR, "MTU should be between %d and %d",
872                         RTE_ETHER_MIN_MTU, max_frame_size - ether_hdr_len);
873                 return -EINVAL;
874         }
875         return 0;
876 }
877
878 static int
879 virtio_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
880 {
881         struct virtio_hw *hw = dev->data->dev_private;
882         struct virtnet_rx *rxvq = dev->data->rx_queues[queue_id];
883         struct virtqueue *vq = rxvq->vq;
884
885         virtqueue_enable_intr(vq);
886         virtio_mb(hw->weak_barriers);
887         return 0;
888 }
889
890 static int
891 virtio_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
892 {
893         struct virtnet_rx *rxvq = dev->data->rx_queues[queue_id];
894         struct virtqueue *vq = rxvq->vq;
895
896         virtqueue_disable_intr(vq);
897         return 0;
898 }
899
900 /*
901  * dev_ops for virtio, bare necessities for basic operation
902  */
903 static const struct eth_dev_ops virtio_eth_dev_ops = {
904         .dev_configure           = virtio_dev_configure,
905         .dev_start               = virtio_dev_start,
906         .dev_stop                = virtio_dev_stop,
907         .dev_close               = virtio_dev_close,
908         .promiscuous_enable      = virtio_dev_promiscuous_enable,
909         .promiscuous_disable     = virtio_dev_promiscuous_disable,
910         .allmulticast_enable     = virtio_dev_allmulticast_enable,
911         .allmulticast_disable    = virtio_dev_allmulticast_disable,
912         .mtu_set                 = virtio_mtu_set,
913         .dev_infos_get           = virtio_dev_info_get,
914         .stats_get               = virtio_dev_stats_get,
915         .xstats_get              = virtio_dev_xstats_get,
916         .xstats_get_names        = virtio_dev_xstats_get_names,
917         .stats_reset             = virtio_dev_stats_reset,
918         .xstats_reset            = virtio_dev_stats_reset,
919         .link_update             = virtio_dev_link_update,
920         .vlan_offload_set        = virtio_dev_vlan_offload_set,
921         .rx_queue_setup          = virtio_dev_rx_queue_setup,
922         .rx_queue_intr_enable    = virtio_dev_rx_queue_intr_enable,
923         .rx_queue_intr_disable   = virtio_dev_rx_queue_intr_disable,
924         .rx_queue_release        = virtio_dev_queue_release,
925         .tx_queue_setup          = virtio_dev_tx_queue_setup,
926         .tx_queue_release        = virtio_dev_queue_release,
927         /* collect stats per queue */
928         .queue_stats_mapping_set = virtio_dev_queue_stats_mapping_set,
929         .vlan_filter_set         = virtio_vlan_filter_set,
930         .mac_addr_add            = virtio_mac_addr_add,
931         .mac_addr_remove         = virtio_mac_addr_remove,
932         .mac_addr_set            = virtio_mac_addr_set,
933 };
934
935 /*
936  * dev_ops for virtio-user in secondary processes, as we just have
937  * some limited supports currently.
938  */
939 const struct eth_dev_ops virtio_user_secondary_eth_dev_ops = {
940         .dev_infos_get           = virtio_dev_info_get,
941         .stats_get               = virtio_dev_stats_get,
942         .xstats_get              = virtio_dev_xstats_get,
943         .xstats_get_names        = virtio_dev_xstats_get_names,
944         .stats_reset             = virtio_dev_stats_reset,
945         .xstats_reset            = virtio_dev_stats_reset,
946         /* collect stats per queue */
947         .queue_stats_mapping_set = virtio_dev_queue_stats_mapping_set,
948 };
949
950 static void
951 virtio_update_stats(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
952 {
953         unsigned i;
954
955         for (i = 0; i < dev->data->nb_tx_queues; i++) {
956                 const struct virtnet_tx *txvq = dev->data->tx_queues[i];
957                 if (txvq == NULL)
958                         continue;
959
960                 stats->opackets += txvq->stats.packets;
961                 stats->obytes += txvq->stats.bytes;
962
963                 if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
964                         stats->q_opackets[i] = txvq->stats.packets;
965                         stats->q_obytes[i] = txvq->stats.bytes;
966                 }
967         }
968
969         for (i = 0; i < dev->data->nb_rx_queues; i++) {
970                 const struct virtnet_rx *rxvq = dev->data->rx_queues[i];
971                 if (rxvq == NULL)
972                         continue;
973
974                 stats->ipackets += rxvq->stats.packets;
975                 stats->ibytes += rxvq->stats.bytes;
976                 stats->ierrors += rxvq->stats.errors;
977
978                 if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
979                         stats->q_ipackets[i] = rxvq->stats.packets;
980                         stats->q_ibytes[i] = rxvq->stats.bytes;
981                 }
982         }
983
984         stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed;
985 }
986
987 static int virtio_dev_xstats_get_names(struct rte_eth_dev *dev,
988                                        struct rte_eth_xstat_name *xstats_names,
989                                        __rte_unused unsigned limit)
990 {
991         unsigned i;
992         unsigned count = 0;
993         unsigned t;
994
995         unsigned nstats = dev->data->nb_tx_queues * VIRTIO_NB_TXQ_XSTATS +
996                 dev->data->nb_rx_queues * VIRTIO_NB_RXQ_XSTATS;
997
998         if (xstats_names != NULL) {
999                 /* Note: limit checked in rte_eth_xstats_names() */
1000
1001                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1002                         struct virtnet_rx *rxvq = dev->data->rx_queues[i];
1003                         if (rxvq == NULL)
1004                                 continue;
1005                         for (t = 0; t < VIRTIO_NB_RXQ_XSTATS; t++) {
1006                                 snprintf(xstats_names[count].name,
1007                                         sizeof(xstats_names[count].name),
1008                                         "rx_q%u_%s", i,
1009                                         rte_virtio_rxq_stat_strings[t].name);
1010                                 count++;
1011                         }
1012                 }
1013
1014                 for (i = 0; i < dev->data->nb_tx_queues; i++) {
1015                         struct virtnet_tx *txvq = dev->data->tx_queues[i];
1016                         if (txvq == NULL)
1017                                 continue;
1018                         for (t = 0; t < VIRTIO_NB_TXQ_XSTATS; t++) {
1019                                 snprintf(xstats_names[count].name,
1020                                         sizeof(xstats_names[count].name),
1021                                         "tx_q%u_%s", i,
1022                                         rte_virtio_txq_stat_strings[t].name);
1023                                 count++;
1024                         }
1025                 }
1026                 return count;
1027         }
1028         return nstats;
1029 }
1030
1031 static int
1032 virtio_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1033                       unsigned n)
1034 {
1035         unsigned i;
1036         unsigned count = 0;
1037
1038         unsigned nstats = dev->data->nb_tx_queues * VIRTIO_NB_TXQ_XSTATS +
1039                 dev->data->nb_rx_queues * VIRTIO_NB_RXQ_XSTATS;
1040
1041         if (n < nstats)
1042                 return nstats;
1043
1044         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1045                 struct virtnet_rx *rxvq = dev->data->rx_queues[i];
1046
1047                 if (rxvq == NULL)
1048                         continue;
1049
1050                 unsigned t;
1051
1052                 for (t = 0; t < VIRTIO_NB_RXQ_XSTATS; t++) {
1053                         xstats[count].value = *(uint64_t *)(((char *)rxvq) +
1054                                 rte_virtio_rxq_stat_strings[t].offset);
1055                         xstats[count].id = count;
1056                         count++;
1057                 }
1058         }
1059
1060         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1061                 struct virtnet_tx *txvq = dev->data->tx_queues[i];
1062
1063                 if (txvq == NULL)
1064                         continue;
1065
1066                 unsigned t;
1067
1068                 for (t = 0; t < VIRTIO_NB_TXQ_XSTATS; t++) {
1069                         xstats[count].value = *(uint64_t *)(((char *)txvq) +
1070                                 rte_virtio_txq_stat_strings[t].offset);
1071                         xstats[count].id = count;
1072                         count++;
1073                 }
1074         }
1075
1076         return count;
1077 }
1078
1079 static int
1080 virtio_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
1081 {
1082         virtio_update_stats(dev, stats);
1083
1084         return 0;
1085 }
1086
1087 static int
1088 virtio_dev_stats_reset(struct rte_eth_dev *dev)
1089 {
1090         unsigned int i;
1091
1092         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1093                 struct virtnet_tx *txvq = dev->data->tx_queues[i];
1094                 if (txvq == NULL)
1095                         continue;
1096
1097                 txvq->stats.packets = 0;
1098                 txvq->stats.bytes = 0;
1099                 txvq->stats.multicast = 0;
1100                 txvq->stats.broadcast = 0;
1101                 memset(txvq->stats.size_bins, 0,
1102                        sizeof(txvq->stats.size_bins[0]) * 8);
1103         }
1104
1105         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1106                 struct virtnet_rx *rxvq = dev->data->rx_queues[i];
1107                 if (rxvq == NULL)
1108                         continue;
1109
1110                 rxvq->stats.packets = 0;
1111                 rxvq->stats.bytes = 0;
1112                 rxvq->stats.errors = 0;
1113                 rxvq->stats.multicast = 0;
1114                 rxvq->stats.broadcast = 0;
1115                 memset(rxvq->stats.size_bins, 0,
1116                        sizeof(rxvq->stats.size_bins[0]) * 8);
1117         }
1118
1119         return 0;
1120 }
1121
1122 static void
1123 virtio_set_hwaddr(struct virtio_hw *hw)
1124 {
1125         vtpci_write_dev_config(hw,
1126                         offsetof(struct virtio_net_config, mac),
1127                         &hw->mac_addr, RTE_ETHER_ADDR_LEN);
1128 }
1129
1130 static void
1131 virtio_get_hwaddr(struct virtio_hw *hw)
1132 {
1133         if (vtpci_with_feature(hw, VIRTIO_NET_F_MAC)) {
1134                 vtpci_read_dev_config(hw,
1135                         offsetof(struct virtio_net_config, mac),
1136                         &hw->mac_addr, RTE_ETHER_ADDR_LEN);
1137         } else {
1138                 rte_eth_random_addr(&hw->mac_addr[0]);
1139                 virtio_set_hwaddr(hw);
1140         }
1141 }
1142
1143 static int
1144 virtio_mac_table_set(struct virtio_hw *hw,
1145                      const struct virtio_net_ctrl_mac *uc,
1146                      const struct virtio_net_ctrl_mac *mc)
1147 {
1148         struct virtio_pmd_ctrl ctrl;
1149         int err, len[2];
1150
1151         if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1152                 PMD_DRV_LOG(INFO, "host does not support mac table");
1153                 return -1;
1154         }
1155
1156         ctrl.hdr.class = VIRTIO_NET_CTRL_MAC;
1157         ctrl.hdr.cmd = VIRTIO_NET_CTRL_MAC_TABLE_SET;
1158
1159         len[0] = uc->entries * RTE_ETHER_ADDR_LEN + sizeof(uc->entries);
1160         memcpy(ctrl.data, uc, len[0]);
1161
1162         len[1] = mc->entries * RTE_ETHER_ADDR_LEN + sizeof(mc->entries);
1163         memcpy(ctrl.data + len[0], mc, len[1]);
1164
1165         err = virtio_send_command(hw->cvq, &ctrl, len, 2);
1166         if (err != 0)
1167                 PMD_DRV_LOG(NOTICE, "mac table set failed: %d", err);
1168         return err;
1169 }
1170
1171 static int
1172 virtio_mac_addr_add(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr,
1173                     uint32_t index, uint32_t vmdq __rte_unused)
1174 {
1175         struct virtio_hw *hw = dev->data->dev_private;
1176         const struct rte_ether_addr *addrs = dev->data->mac_addrs;
1177         unsigned int i;
1178         struct virtio_net_ctrl_mac *uc, *mc;
1179
1180         if (index >= VIRTIO_MAX_MAC_ADDRS) {
1181                 PMD_DRV_LOG(ERR, "mac address index %u out of range", index);
1182                 return -EINVAL;
1183         }
1184
1185         uc = alloca(VIRTIO_MAX_MAC_ADDRS * RTE_ETHER_ADDR_LEN +
1186                 sizeof(uc->entries));
1187         uc->entries = 0;
1188         mc = alloca(VIRTIO_MAX_MAC_ADDRS * RTE_ETHER_ADDR_LEN +
1189                 sizeof(mc->entries));
1190         mc->entries = 0;
1191
1192         for (i = 0; i < VIRTIO_MAX_MAC_ADDRS; i++) {
1193                 const struct rte_ether_addr *addr
1194                         = (i == index) ? mac_addr : addrs + i;
1195                 struct virtio_net_ctrl_mac *tbl
1196                         = rte_is_multicast_ether_addr(addr) ? mc : uc;
1197
1198                 memcpy(&tbl->macs[tbl->entries++], addr, RTE_ETHER_ADDR_LEN);
1199         }
1200
1201         return virtio_mac_table_set(hw, uc, mc);
1202 }
1203
1204 static void
1205 virtio_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
1206 {
1207         struct virtio_hw *hw = dev->data->dev_private;
1208         struct rte_ether_addr *addrs = dev->data->mac_addrs;
1209         struct virtio_net_ctrl_mac *uc, *mc;
1210         unsigned int i;
1211
1212         if (index >= VIRTIO_MAX_MAC_ADDRS) {
1213                 PMD_DRV_LOG(ERR, "mac address index %u out of range", index);
1214                 return;
1215         }
1216
1217         uc = alloca(VIRTIO_MAX_MAC_ADDRS * RTE_ETHER_ADDR_LEN +
1218                 sizeof(uc->entries));
1219         uc->entries = 0;
1220         mc = alloca(VIRTIO_MAX_MAC_ADDRS * RTE_ETHER_ADDR_LEN +
1221                 sizeof(mc->entries));
1222         mc->entries = 0;
1223
1224         for (i = 0; i < VIRTIO_MAX_MAC_ADDRS; i++) {
1225                 struct virtio_net_ctrl_mac *tbl;
1226
1227                 if (i == index || rte_is_zero_ether_addr(addrs + i))
1228                         continue;
1229
1230                 tbl = rte_is_multicast_ether_addr(addrs + i) ? mc : uc;
1231                 memcpy(&tbl->macs[tbl->entries++], addrs + i,
1232                         RTE_ETHER_ADDR_LEN);
1233         }
1234
1235         virtio_mac_table_set(hw, uc, mc);
1236 }
1237
1238 static int
1239 virtio_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *mac_addr)
1240 {
1241         struct virtio_hw *hw = dev->data->dev_private;
1242
1243         memcpy(hw->mac_addr, mac_addr, RTE_ETHER_ADDR_LEN);
1244
1245         /* Use atomic update if available */
1246         if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1247                 struct virtio_pmd_ctrl ctrl;
1248                 int len = RTE_ETHER_ADDR_LEN;
1249
1250                 ctrl.hdr.class = VIRTIO_NET_CTRL_MAC;
1251                 ctrl.hdr.cmd = VIRTIO_NET_CTRL_MAC_ADDR_SET;
1252
1253                 memcpy(ctrl.data, mac_addr, RTE_ETHER_ADDR_LEN);
1254                 return virtio_send_command(hw->cvq, &ctrl, &len, 1);
1255         }
1256
1257         if (!vtpci_with_feature(hw, VIRTIO_NET_F_MAC))
1258                 return -ENOTSUP;
1259
1260         virtio_set_hwaddr(hw);
1261         return 0;
1262 }
1263
1264 static int
1265 virtio_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1266 {
1267         struct virtio_hw *hw = dev->data->dev_private;
1268         struct virtio_pmd_ctrl ctrl;
1269         int len;
1270
1271         if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VLAN))
1272                 return -ENOTSUP;
1273
1274         ctrl.hdr.class = VIRTIO_NET_CTRL_VLAN;
1275         ctrl.hdr.cmd = on ? VIRTIO_NET_CTRL_VLAN_ADD : VIRTIO_NET_CTRL_VLAN_DEL;
1276         memcpy(ctrl.data, &vlan_id, sizeof(vlan_id));
1277         len = sizeof(vlan_id);
1278
1279         return virtio_send_command(hw->cvq, &ctrl, &len, 1);
1280 }
1281
1282 static int
1283 virtio_intr_unmask(struct rte_eth_dev *dev)
1284 {
1285         struct virtio_hw *hw = dev->data->dev_private;
1286
1287         if (rte_intr_ack(dev->intr_handle) < 0)
1288                 return -1;
1289
1290         if (hw->bus_type == VIRTIO_BUS_PCI_LEGACY || hw->bus_type == VIRTIO_BUS_PCI_MODERN)
1291                 hw->use_msix = vtpci_msix_detect(RTE_ETH_DEV_TO_PCI(dev));
1292
1293         return 0;
1294 }
1295
1296 static int
1297 virtio_intr_enable(struct rte_eth_dev *dev)
1298 {
1299         struct virtio_hw *hw = dev->data->dev_private;
1300
1301         if (rte_intr_enable(dev->intr_handle) < 0)
1302                 return -1;
1303
1304         if (hw->bus_type == VIRTIO_BUS_PCI_LEGACY || hw->bus_type == VIRTIO_BUS_PCI_MODERN)
1305                 hw->use_msix = vtpci_msix_detect(RTE_ETH_DEV_TO_PCI(dev));
1306
1307         return 0;
1308 }
1309
1310 static int
1311 virtio_intr_disable(struct rte_eth_dev *dev)
1312 {
1313         struct virtio_hw *hw = dev->data->dev_private;
1314
1315         if (rte_intr_disable(dev->intr_handle) < 0)
1316                 return -1;
1317
1318         if (hw->bus_type == VIRTIO_BUS_PCI_LEGACY || hw->bus_type == VIRTIO_BUS_PCI_MODERN)
1319                 hw->use_msix = vtpci_msix_detect(RTE_ETH_DEV_TO_PCI(dev));
1320
1321         return 0;
1322 }
1323
1324 static int
1325 virtio_negotiate_features(struct virtio_hw *hw, uint64_t req_features)
1326 {
1327         uint64_t host_features;
1328
1329         /* Prepare guest_features: feature that driver wants to support */
1330         PMD_INIT_LOG(DEBUG, "guest_features before negotiate = %" PRIx64,
1331                 req_features);
1332
1333         /* Read device(host) feature bits */
1334         host_features = VTPCI_OPS(hw)->get_features(hw);
1335         PMD_INIT_LOG(DEBUG, "host_features before negotiate = %" PRIx64,
1336                 host_features);
1337
1338         /* If supported, ensure MTU value is valid before acknowledging it. */
1339         if (host_features & req_features & (1ULL << VIRTIO_NET_F_MTU)) {
1340                 struct virtio_net_config config;
1341
1342                 vtpci_read_dev_config(hw,
1343                         offsetof(struct virtio_net_config, mtu),
1344                         &config.mtu, sizeof(config.mtu));
1345
1346                 if (config.mtu < RTE_ETHER_MIN_MTU)
1347                         req_features &= ~(1ULL << VIRTIO_NET_F_MTU);
1348         }
1349
1350         /*
1351          * Negotiate features: Subset of device feature bits are written back
1352          * guest feature bits.
1353          */
1354         hw->guest_features = req_features;
1355         hw->guest_features = vtpci_negotiate_features(hw, host_features);
1356         PMD_INIT_LOG(DEBUG, "features after negotiate = %" PRIx64,
1357                 hw->guest_features);
1358
1359         if (hw->bus_type == VIRTIO_BUS_PCI_MODERN && !vtpci_with_feature(hw, VIRTIO_F_VERSION_1)) {
1360                 PMD_INIT_LOG(ERR,
1361                         "VIRTIO_F_VERSION_1 features is not enabled.");
1362                 return -1;
1363         }
1364
1365         if (hw->bus_type == VIRTIO_BUS_PCI_MODERN || hw->bus_type == VIRTIO_BUS_USER) {
1366                 vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_FEATURES_OK);
1367                 if (!(vtpci_get_status(hw) & VIRTIO_CONFIG_STATUS_FEATURES_OK)) {
1368                         PMD_INIT_LOG(ERR,
1369                                 "failed to set FEATURES_OK status!");
1370                         return -1;
1371                 }
1372         }
1373
1374         hw->req_guest_features = req_features;
1375
1376         return 0;
1377 }
1378
1379 int
1380 virtio_dev_pause(struct rte_eth_dev *dev)
1381 {
1382         struct virtio_hw *hw = dev->data->dev_private;
1383
1384         rte_spinlock_lock(&hw->state_lock);
1385
1386         if (hw->started == 0) {
1387                 /* Device is just stopped. */
1388                 rte_spinlock_unlock(&hw->state_lock);
1389                 return -1;
1390         }
1391         hw->started = 0;
1392         /*
1393          * Prevent the worker threads from touching queues to avoid contention,
1394          * 1 ms should be enough for the ongoing Tx function to finish.
1395          */
1396         rte_delay_ms(1);
1397         return 0;
1398 }
1399
1400 /*
1401  * Recover hw state to let the worker threads continue.
1402  */
1403 void
1404 virtio_dev_resume(struct rte_eth_dev *dev)
1405 {
1406         struct virtio_hw *hw = dev->data->dev_private;
1407
1408         hw->started = 1;
1409         rte_spinlock_unlock(&hw->state_lock);
1410 }
1411
1412 /*
1413  * Should be called only after device is paused.
1414  */
1415 int
1416 virtio_inject_pkts(struct rte_eth_dev *dev, struct rte_mbuf **tx_pkts,
1417                 int nb_pkts)
1418 {
1419         struct virtio_hw *hw = dev->data->dev_private;
1420         struct virtnet_tx *txvq = dev->data->tx_queues[0];
1421         int ret;
1422
1423         hw->inject_pkts = tx_pkts;
1424         ret = dev->tx_pkt_burst(txvq, tx_pkts, nb_pkts);
1425         hw->inject_pkts = NULL;
1426
1427         return ret;
1428 }
1429
1430 static void
1431 virtio_notify_peers(struct rte_eth_dev *dev)
1432 {
1433         struct virtio_hw *hw = dev->data->dev_private;
1434         struct virtnet_rx *rxvq;
1435         struct rte_mbuf *rarp_mbuf;
1436
1437         if (!dev->data->rx_queues)
1438                 return;
1439
1440         rxvq = dev->data->rx_queues[0];
1441         if (!rxvq)
1442                 return;
1443
1444         rarp_mbuf = rte_net_make_rarp_packet(rxvq->mpool,
1445                         (struct rte_ether_addr *)hw->mac_addr);
1446         if (rarp_mbuf == NULL) {
1447                 PMD_DRV_LOG(ERR, "failed to make RARP packet.");
1448                 return;
1449         }
1450
1451         /* If virtio port just stopped, no need to send RARP */
1452         if (virtio_dev_pause(dev) < 0) {
1453                 rte_pktmbuf_free(rarp_mbuf);
1454                 return;
1455         }
1456
1457         virtio_inject_pkts(dev, &rarp_mbuf, 1);
1458         virtio_dev_resume(dev);
1459 }
1460
1461 static void
1462 virtio_ack_link_announce(struct rte_eth_dev *dev)
1463 {
1464         struct virtio_hw *hw = dev->data->dev_private;
1465         struct virtio_pmd_ctrl ctrl;
1466
1467         ctrl.hdr.class = VIRTIO_NET_CTRL_ANNOUNCE;
1468         ctrl.hdr.cmd = VIRTIO_NET_CTRL_ANNOUNCE_ACK;
1469
1470         virtio_send_command(hw->cvq, &ctrl, NULL, 0);
1471 }
1472
1473 /*
1474  * Process virtio config changed interrupt. Call the callback
1475  * if link state changed, generate gratuitous RARP packet if
1476  * the status indicates an ANNOUNCE.
1477  */
1478 void
1479 virtio_interrupt_handler(void *param)
1480 {
1481         struct rte_eth_dev *dev = param;
1482         struct virtio_hw *hw = dev->data->dev_private;
1483         uint8_t isr;
1484         uint16_t status;
1485
1486         /* Read interrupt status which clears interrupt */
1487         isr = vtpci_isr(hw);
1488         PMD_DRV_LOG(INFO, "interrupt status = %#x", isr);
1489
1490         if (virtio_intr_unmask(dev) < 0)
1491                 PMD_DRV_LOG(ERR, "interrupt enable failed");
1492
1493         if (isr & VIRTIO_PCI_ISR_CONFIG) {
1494                 if (virtio_dev_link_update(dev, 0) == 0)
1495                         rte_eth_dev_callback_process(dev,
1496                                                      RTE_ETH_EVENT_INTR_LSC,
1497                                                      NULL);
1498
1499                 if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
1500                         vtpci_read_dev_config(hw,
1501                                 offsetof(struct virtio_net_config, status),
1502                                 &status, sizeof(status));
1503                         if (status & VIRTIO_NET_S_ANNOUNCE) {
1504                                 virtio_notify_peers(dev);
1505                                 if (hw->cvq)
1506                                         virtio_ack_link_announce(dev);
1507                         }
1508                 }
1509         }
1510 }
1511
1512 /* set rx and tx handlers according to what is supported */
1513 static void
1514 set_rxtx_funcs(struct rte_eth_dev *eth_dev)
1515 {
1516         struct virtio_hw *hw = eth_dev->data->dev_private;
1517
1518         eth_dev->tx_pkt_prepare = virtio_xmit_pkts_prepare;
1519         if (vtpci_packed_queue(hw)) {
1520                 PMD_INIT_LOG(INFO,
1521                         "virtio: using packed ring %s Tx path on port %u",
1522                         hw->use_vec_tx ? "vectorized" : "standard",
1523                         eth_dev->data->port_id);
1524                 if (hw->use_vec_tx)
1525                         eth_dev->tx_pkt_burst = virtio_xmit_pkts_packed_vec;
1526                 else
1527                         eth_dev->tx_pkt_burst = virtio_xmit_pkts_packed;
1528         } else {
1529                 if (hw->use_inorder_tx) {
1530                         PMD_INIT_LOG(INFO, "virtio: using inorder Tx path on port %u",
1531                                 eth_dev->data->port_id);
1532                         eth_dev->tx_pkt_burst = virtio_xmit_pkts_inorder;
1533                 } else {
1534                         PMD_INIT_LOG(INFO, "virtio: using standard Tx path on port %u",
1535                                 eth_dev->data->port_id);
1536                         eth_dev->tx_pkt_burst = virtio_xmit_pkts;
1537                 }
1538         }
1539
1540         if (vtpci_packed_queue(hw)) {
1541                 if (hw->use_vec_rx) {
1542                         PMD_INIT_LOG(INFO,
1543                                 "virtio: using packed ring vectorized Rx path on port %u",
1544                                 eth_dev->data->port_id);
1545                         eth_dev->rx_pkt_burst =
1546                                 &virtio_recv_pkts_packed_vec;
1547                 } else if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF)) {
1548                         PMD_INIT_LOG(INFO,
1549                                 "virtio: using packed ring mergeable buffer Rx path on port %u",
1550                                 eth_dev->data->port_id);
1551                         eth_dev->rx_pkt_burst =
1552                                 &virtio_recv_mergeable_pkts_packed;
1553                 } else {
1554                         PMD_INIT_LOG(INFO,
1555                                 "virtio: using packed ring standard Rx path on port %u",
1556                                 eth_dev->data->port_id);
1557                         eth_dev->rx_pkt_burst = &virtio_recv_pkts_packed;
1558                 }
1559         } else {
1560                 if (hw->use_vec_rx) {
1561                         PMD_INIT_LOG(INFO, "virtio: using vectorized Rx path on port %u",
1562                                 eth_dev->data->port_id);
1563                         eth_dev->rx_pkt_burst = virtio_recv_pkts_vec;
1564                 } else if (hw->use_inorder_rx) {
1565                         PMD_INIT_LOG(INFO,
1566                                 "virtio: using inorder Rx path on port %u",
1567                                 eth_dev->data->port_id);
1568                         eth_dev->rx_pkt_burst = &virtio_recv_pkts_inorder;
1569                 } else if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF)) {
1570                         PMD_INIT_LOG(INFO,
1571                                 "virtio: using mergeable buffer Rx path on port %u",
1572                                 eth_dev->data->port_id);
1573                         eth_dev->rx_pkt_burst = &virtio_recv_mergeable_pkts;
1574                 } else {
1575                         PMD_INIT_LOG(INFO, "virtio: using standard Rx path on port %u",
1576                                 eth_dev->data->port_id);
1577                         eth_dev->rx_pkt_burst = &virtio_recv_pkts;
1578                 }
1579         }
1580
1581 }
1582
1583 /* Only support 1:1 queue/interrupt mapping so far.
1584  * TODO: support n:1 queue/interrupt mapping when there are limited number of
1585  * interrupt vectors (<N+1).
1586  */
1587 static int
1588 virtio_queues_bind_intr(struct rte_eth_dev *dev)
1589 {
1590         uint32_t i;
1591         struct virtio_hw *hw = dev->data->dev_private;
1592
1593         PMD_INIT_LOG(INFO, "queue/interrupt binding");
1594         for (i = 0; i < dev->data->nb_rx_queues; ++i) {
1595                 dev->intr_handle->intr_vec[i] = i + 1;
1596                 if (VTPCI_OPS(hw)->set_queue_irq(hw, hw->vqs[i * 2], i + 1) ==
1597                                                  VIRTIO_MSI_NO_VECTOR) {
1598                         PMD_DRV_LOG(ERR, "failed to set queue vector");
1599                         return -EBUSY;
1600                 }
1601         }
1602
1603         return 0;
1604 }
1605
1606 static void
1607 virtio_queues_unbind_intr(struct rte_eth_dev *dev)
1608 {
1609         uint32_t i;
1610         struct virtio_hw *hw = dev->data->dev_private;
1611
1612         PMD_INIT_LOG(INFO, "queue/interrupt unbinding");
1613         for (i = 0; i < dev->data->nb_rx_queues; ++i)
1614                 VTPCI_OPS(hw)->set_queue_irq(hw,
1615                                              hw->vqs[i * VTNET_CQ],
1616                                              VIRTIO_MSI_NO_VECTOR);
1617 }
1618
1619 static int
1620 virtio_configure_intr(struct rte_eth_dev *dev)
1621 {
1622         struct virtio_hw *hw = dev->data->dev_private;
1623
1624         if (!rte_intr_cap_multiple(dev->intr_handle)) {
1625                 PMD_INIT_LOG(ERR, "Multiple intr vector not supported");
1626                 return -ENOTSUP;
1627         }
1628
1629         if (rte_intr_efd_enable(dev->intr_handle, dev->data->nb_rx_queues)) {
1630                 PMD_INIT_LOG(ERR, "Fail to create eventfd");
1631                 return -1;
1632         }
1633
1634         if (!dev->intr_handle->intr_vec) {
1635                 dev->intr_handle->intr_vec =
1636                         rte_zmalloc("intr_vec",
1637                                     hw->max_queue_pairs * sizeof(int), 0);
1638                 if (!dev->intr_handle->intr_vec) {
1639                         PMD_INIT_LOG(ERR, "Failed to allocate %u rxq vectors",
1640                                      hw->max_queue_pairs);
1641                         return -ENOMEM;
1642                 }
1643         }
1644
1645         /* Re-register callback to update max_intr */
1646         rte_intr_callback_unregister(dev->intr_handle,
1647                                      virtio_interrupt_handler,
1648                                      dev);
1649         rte_intr_callback_register(dev->intr_handle,
1650                                    virtio_interrupt_handler,
1651                                    dev);
1652
1653         /* DO NOT try to remove this! This function will enable msix, or QEMU
1654          * will encounter SIGSEGV when DRIVER_OK is sent.
1655          * And for legacy devices, this should be done before queue/vec binding
1656          * to change the config size from 20 to 24, or VIRTIO_MSI_QUEUE_VECTOR
1657          * (22) will be ignored.
1658          */
1659         if (virtio_intr_enable(dev) < 0) {
1660                 PMD_DRV_LOG(ERR, "interrupt enable failed");
1661                 return -1;
1662         }
1663
1664         if (virtio_queues_bind_intr(dev) < 0) {
1665                 PMD_INIT_LOG(ERR, "Failed to bind queue/interrupt");
1666                 return -1;
1667         }
1668
1669         return 0;
1670 }
1671 #define DUPLEX_UNKNOWN   0xff
1672 /* reset device and renegotiate features if needed */
1673 static int
1674 virtio_init_device(struct rte_eth_dev *eth_dev, uint64_t req_features)
1675 {
1676         struct virtio_hw *hw = eth_dev->data->dev_private;
1677         struct virtio_net_config *config;
1678         struct virtio_net_config local_config;
1679         int ret;
1680
1681         /* Reset the device although not necessary at startup */
1682         vtpci_reset(hw);
1683
1684         if (hw->vqs) {
1685                 virtio_dev_free_mbufs(eth_dev);
1686                 virtio_free_queues(hw);
1687         }
1688
1689         /* Tell the host we've noticed this device. */
1690         vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_ACK);
1691
1692         /* Tell the host we've known how to drive the device. */
1693         vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_DRIVER);
1694         if (virtio_negotiate_features(hw, req_features) < 0)
1695                 return -1;
1696
1697         hw->weak_barriers = !vtpci_with_feature(hw, VIRTIO_F_ORDER_PLATFORM);
1698
1699         /* If host does not support both status and MSI-X then disable LSC */
1700         if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS) &&
1701             hw->use_msix != VIRTIO_MSIX_NONE)
1702                 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC;
1703         else
1704                 eth_dev->data->dev_flags &= ~RTE_ETH_DEV_INTR_LSC;
1705
1706         eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
1707
1708         /* Setting up rx_header size for the device */
1709         if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF) ||
1710             vtpci_with_feature(hw, VIRTIO_F_VERSION_1) ||
1711             vtpci_with_feature(hw, VIRTIO_F_RING_PACKED))
1712                 hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf);
1713         else
1714                 hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr);
1715
1716         /* Copy the permanent MAC address to: virtio_hw */
1717         virtio_get_hwaddr(hw);
1718         rte_ether_addr_copy((struct rte_ether_addr *)hw->mac_addr,
1719                         &eth_dev->data->mac_addrs[0]);
1720         PMD_INIT_LOG(DEBUG,
1721                      "PORT MAC: %02X:%02X:%02X:%02X:%02X:%02X",
1722                      hw->mac_addr[0], hw->mac_addr[1], hw->mac_addr[2],
1723                      hw->mac_addr[3], hw->mac_addr[4], hw->mac_addr[5]);
1724
1725         if (hw->speed == ETH_SPEED_NUM_UNKNOWN) {
1726                 if (vtpci_with_feature(hw, VIRTIO_NET_F_SPEED_DUPLEX)) {
1727                         config = &local_config;
1728                         vtpci_read_dev_config(hw,
1729                                 offsetof(struct virtio_net_config, speed),
1730                                 &config->speed, sizeof(config->speed));
1731                         vtpci_read_dev_config(hw,
1732                                 offsetof(struct virtio_net_config, duplex),
1733                                 &config->duplex, sizeof(config->duplex));
1734                         hw->speed = config->speed;
1735                         hw->duplex = config->duplex;
1736                 }
1737         }
1738         if (hw->duplex == DUPLEX_UNKNOWN)
1739                 hw->duplex = ETH_LINK_FULL_DUPLEX;
1740         PMD_INIT_LOG(DEBUG, "link speed = %d, duplex = %d",
1741                 hw->speed, hw->duplex);
1742         if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ)) {
1743                 config = &local_config;
1744
1745                 vtpci_read_dev_config(hw,
1746                         offsetof(struct virtio_net_config, mac),
1747                         &config->mac, sizeof(config->mac));
1748
1749                 if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
1750                         vtpci_read_dev_config(hw,
1751                                 offsetof(struct virtio_net_config, status),
1752                                 &config->status, sizeof(config->status));
1753                 } else {
1754                         PMD_INIT_LOG(DEBUG,
1755                                      "VIRTIO_NET_F_STATUS is not supported");
1756                         config->status = 0;
1757                 }
1758
1759                 if (vtpci_with_feature(hw, VIRTIO_NET_F_MQ)) {
1760                         vtpci_read_dev_config(hw,
1761                                 offsetof(struct virtio_net_config, max_virtqueue_pairs),
1762                                 &config->max_virtqueue_pairs,
1763                                 sizeof(config->max_virtqueue_pairs));
1764                 } else {
1765                         PMD_INIT_LOG(DEBUG,
1766                                      "VIRTIO_NET_F_MQ is not supported");
1767                         config->max_virtqueue_pairs = 1;
1768                 }
1769
1770                 hw->max_queue_pairs = config->max_virtqueue_pairs;
1771
1772                 if (vtpci_with_feature(hw, VIRTIO_NET_F_MTU)) {
1773                         vtpci_read_dev_config(hw,
1774                                 offsetof(struct virtio_net_config, mtu),
1775                                 &config->mtu,
1776                                 sizeof(config->mtu));
1777
1778                         /*
1779                          * MTU value has already been checked at negotiation
1780                          * time, but check again in case it has changed since
1781                          * then, which should not happen.
1782                          */
1783                         if (config->mtu < RTE_ETHER_MIN_MTU) {
1784                                 PMD_INIT_LOG(ERR, "invalid max MTU value (%u)",
1785                                                 config->mtu);
1786                                 return -1;
1787                         }
1788
1789                         hw->max_mtu = config->mtu;
1790                         /* Set initial MTU to maximum one supported by vhost */
1791                         eth_dev->data->mtu = config->mtu;
1792
1793                 } else {
1794                         hw->max_mtu = VIRTIO_MAX_RX_PKTLEN - RTE_ETHER_HDR_LEN -
1795                                 VLAN_TAG_LEN - hw->vtnet_hdr_size;
1796                 }
1797
1798                 PMD_INIT_LOG(DEBUG, "config->max_virtqueue_pairs=%d",
1799                                 config->max_virtqueue_pairs);
1800                 PMD_INIT_LOG(DEBUG, "config->status=%d", config->status);
1801                 PMD_INIT_LOG(DEBUG,
1802                                 "PORT MAC: %02X:%02X:%02X:%02X:%02X:%02X",
1803                                 config->mac[0], config->mac[1],
1804                                 config->mac[2], config->mac[3],
1805                                 config->mac[4], config->mac[5]);
1806         } else {
1807                 PMD_INIT_LOG(DEBUG, "config->max_virtqueue_pairs=1");
1808                 hw->max_queue_pairs = 1;
1809                 hw->max_mtu = VIRTIO_MAX_RX_PKTLEN - RTE_ETHER_HDR_LEN -
1810                         VLAN_TAG_LEN - hw->vtnet_hdr_size;
1811         }
1812
1813         ret = virtio_alloc_queues(eth_dev);
1814         if (ret < 0)
1815                 return ret;
1816
1817         if (eth_dev->data->dev_conf.intr_conf.rxq) {
1818                 if (virtio_configure_intr(eth_dev) < 0) {
1819                         PMD_INIT_LOG(ERR, "failed to configure interrupt");
1820                         virtio_free_queues(hw);
1821                         return -1;
1822                 }
1823         }
1824
1825         vtpci_reinit_complete(hw);
1826
1827         return 0;
1828 }
1829
1830
1831 static void
1832 virtio_set_vtpci_ops(struct virtio_hw *hw)
1833 {
1834 #ifdef RTE_VIRTIO_USER
1835         if (hw->bus_type == VIRTIO_BUS_USER)
1836                 VTPCI_OPS(hw) = &virtio_user_ops;
1837         else
1838 #endif
1839         if (hw->bus_type == VIRTIO_BUS_PCI_MODERN)
1840                 VTPCI_OPS(hw) = &modern_ops;
1841         else if (hw->bus_type == VIRTIO_BUS_PCI_LEGACY)
1842                 VTPCI_OPS(hw) = &legacy_ops;
1843
1844         return;
1845 }
1846
1847 /*
1848  * This function is based on probe() function in virtio_pci.c
1849  * It returns 0 on success.
1850  */
1851 int
1852 eth_virtio_dev_init(struct rte_eth_dev *eth_dev)
1853 {
1854         struct virtio_hw *hw = eth_dev->data->dev_private;
1855         uint32_t speed = ETH_SPEED_NUM_UNKNOWN;
1856         int vectorized = 0;
1857         int ret;
1858
1859         if (sizeof(struct virtio_net_hdr_mrg_rxbuf) > RTE_PKTMBUF_HEADROOM) {
1860                 PMD_INIT_LOG(ERR,
1861                         "Not sufficient headroom required = %d, avail = %d",
1862                         (int)sizeof(struct virtio_net_hdr_mrg_rxbuf),
1863                         RTE_PKTMBUF_HEADROOM);
1864
1865                 return -1;
1866         }
1867
1868         eth_dev->dev_ops = &virtio_eth_dev_ops;
1869         eth_dev->rx_descriptor_done = virtio_dev_rx_queue_done;
1870
1871         if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
1872                 virtio_set_vtpci_ops(hw);
1873                 set_rxtx_funcs(eth_dev);
1874                 return 0;
1875         }
1876
1877         ret = virtio_dev_devargs_parse(eth_dev->device->devargs, &speed, &vectorized);
1878         if (ret < 0)
1879                 return ret;
1880         hw->speed = speed;
1881
1882         /* Allocate memory for storing MAC addresses */
1883         eth_dev->data->mac_addrs = rte_zmalloc("virtio",
1884                                 VIRTIO_MAX_MAC_ADDRS * RTE_ETHER_ADDR_LEN, 0);
1885         if (eth_dev->data->mac_addrs == NULL) {
1886                 PMD_INIT_LOG(ERR,
1887                         "Failed to allocate %d bytes needed to store MAC addresses",
1888                         VIRTIO_MAX_MAC_ADDRS * RTE_ETHER_ADDR_LEN);
1889                 return -ENOMEM;
1890         }
1891
1892         hw->port_id = eth_dev->data->port_id;
1893         rte_spinlock_init(&hw->state_lock);
1894
1895         /* reset device and negotiate default features */
1896         ret = virtio_init_device(eth_dev, VIRTIO_PMD_DEFAULT_GUEST_FEATURES);
1897         if (ret < 0)
1898                 goto err_virtio_init;
1899
1900         if (vectorized) {
1901                 if (!vtpci_packed_queue(hw)) {
1902                         hw->use_vec_rx = 1;
1903                 } else {
1904 #if defined(CC_AVX512_SUPPORT) || defined(RTE_ARCH_ARM)
1905                         hw->use_vec_rx = 1;
1906                         hw->use_vec_tx = 1;
1907 #else
1908                         PMD_DRV_LOG(INFO,
1909                                 "building environment do not support packed ring vectorized");
1910 #endif
1911                 }
1912         }
1913
1914         hw->opened = true;
1915
1916         return 0;
1917
1918 err_virtio_init:
1919         rte_free(eth_dev->data->mac_addrs);
1920         eth_dev->data->mac_addrs = NULL;
1921         return ret;
1922 }
1923
1924 static uint32_t
1925 virtio_dev_speed_capa_get(uint32_t speed)
1926 {
1927         switch (speed) {
1928         case ETH_SPEED_NUM_10G:
1929                 return ETH_LINK_SPEED_10G;
1930         case ETH_SPEED_NUM_20G:
1931                 return ETH_LINK_SPEED_20G;
1932         case ETH_SPEED_NUM_25G:
1933                 return ETH_LINK_SPEED_25G;
1934         case ETH_SPEED_NUM_40G:
1935                 return ETH_LINK_SPEED_40G;
1936         case ETH_SPEED_NUM_50G:
1937                 return ETH_LINK_SPEED_50G;
1938         case ETH_SPEED_NUM_56G:
1939                 return ETH_LINK_SPEED_56G;
1940         case ETH_SPEED_NUM_100G:
1941                 return ETH_LINK_SPEED_100G;
1942         case ETH_SPEED_NUM_200G:
1943                 return ETH_LINK_SPEED_200G;
1944         default:
1945                 return 0;
1946         }
1947 }
1948
1949 static int vectorized_check_handler(__rte_unused const char *key,
1950                 const char *value, void *ret_val)
1951 {
1952         if (strcmp(value, "1") == 0)
1953                 *(int *)ret_val = 1;
1954         else
1955                 *(int *)ret_val = 0;
1956
1957         return 0;
1958 }
1959
1960 #define VIRTIO_ARG_SPEED      "speed"
1961 #define VIRTIO_ARG_VECTORIZED "vectorized"
1962
1963 static int
1964 link_speed_handler(const char *key __rte_unused,
1965                 const char *value, void *ret_val)
1966 {
1967         uint32_t val;
1968         if (!value || !ret_val)
1969                 return -EINVAL;
1970         val = strtoul(value, NULL, 0);
1971         /* validate input */
1972         if (virtio_dev_speed_capa_get(val) == 0)
1973                 return -EINVAL;
1974         *(uint32_t *)ret_val = val;
1975
1976         return 0;
1977 }
1978
1979
1980 static int
1981 virtio_dev_devargs_parse(struct rte_devargs *devargs, uint32_t *speed, int *vectorized)
1982 {
1983         struct rte_kvargs *kvlist;
1984         int ret = 0;
1985
1986         if (devargs == NULL)
1987                 return 0;
1988
1989         kvlist = rte_kvargs_parse(devargs->args, NULL);
1990         if (kvlist == NULL) {
1991                 PMD_INIT_LOG(ERR, "error when parsing param");
1992                 return 0;
1993         }
1994
1995         if (speed && rte_kvargs_count(kvlist, VIRTIO_ARG_SPEED) == 1) {
1996                 ret = rte_kvargs_process(kvlist,
1997                                         VIRTIO_ARG_SPEED,
1998                                         link_speed_handler, speed);
1999                 if (ret < 0) {
2000                         PMD_INIT_LOG(ERR, "Failed to parse %s",
2001                                         VIRTIO_ARG_SPEED);
2002                         goto exit;
2003                 }
2004         }
2005
2006         if (vectorized &&
2007                 rte_kvargs_count(kvlist, VIRTIO_ARG_VECTORIZED) == 1) {
2008                 ret = rte_kvargs_process(kvlist,
2009                                 VIRTIO_ARG_VECTORIZED,
2010                                 vectorized_check_handler, vectorized);
2011                 if (ret < 0) {
2012                         PMD_INIT_LOG(ERR, "Failed to parse %s",
2013                                         VIRTIO_ARG_VECTORIZED);
2014                         goto exit;
2015                 }
2016         }
2017
2018 exit:
2019         rte_kvargs_free(kvlist);
2020         return ret;
2021 }
2022
2023 static bool
2024 rx_offload_enabled(struct virtio_hw *hw)
2025 {
2026         return vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_CSUM) ||
2027                 vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4) ||
2028                 vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO6);
2029 }
2030
2031 static bool
2032 tx_offload_enabled(struct virtio_hw *hw)
2033 {
2034         return vtpci_with_feature(hw, VIRTIO_NET_F_CSUM) ||
2035                 vtpci_with_feature(hw, VIRTIO_NET_F_HOST_TSO4) ||
2036                 vtpci_with_feature(hw, VIRTIO_NET_F_HOST_TSO6);
2037 }
2038
2039 /*
2040  * Configure virtio device
2041  * It returns 0 on success.
2042  */
2043 static int
2044 virtio_dev_configure(struct rte_eth_dev *dev)
2045 {
2046         const struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
2047         const struct rte_eth_txmode *txmode = &dev->data->dev_conf.txmode;
2048         struct virtio_hw *hw = dev->data->dev_private;
2049         uint32_t ether_hdr_len = RTE_ETHER_HDR_LEN + VLAN_TAG_LEN +
2050                 hw->vtnet_hdr_size;
2051         uint64_t rx_offloads = rxmode->offloads;
2052         uint64_t tx_offloads = txmode->offloads;
2053         uint64_t req_features;
2054         int ret;
2055
2056         PMD_INIT_LOG(DEBUG, "configure");
2057         req_features = VIRTIO_PMD_DEFAULT_GUEST_FEATURES;
2058
2059         if (rxmode->mq_mode != ETH_MQ_RX_NONE) {
2060                 PMD_DRV_LOG(ERR,
2061                         "Unsupported Rx multi queue mode %d",
2062                         rxmode->mq_mode);
2063                 return -EINVAL;
2064         }
2065
2066         if (txmode->mq_mode != ETH_MQ_TX_NONE) {
2067                 PMD_DRV_LOG(ERR,
2068                         "Unsupported Tx multi queue mode %d",
2069                         txmode->mq_mode);
2070                 return -EINVAL;
2071         }
2072
2073         if (dev->data->dev_conf.intr_conf.rxq) {
2074                 ret = virtio_init_device(dev, hw->req_guest_features);
2075                 if (ret < 0)
2076                         return ret;
2077         }
2078
2079         if (rxmode->max_rx_pkt_len > hw->max_mtu + ether_hdr_len)
2080                 req_features &= ~(1ULL << VIRTIO_NET_F_MTU);
2081
2082         if (rx_offloads & (DEV_RX_OFFLOAD_UDP_CKSUM |
2083                            DEV_RX_OFFLOAD_TCP_CKSUM))
2084                 req_features |= (1ULL << VIRTIO_NET_F_GUEST_CSUM);
2085
2086         if (rx_offloads & DEV_RX_OFFLOAD_TCP_LRO)
2087                 req_features |=
2088                         (1ULL << VIRTIO_NET_F_GUEST_TSO4) |
2089                         (1ULL << VIRTIO_NET_F_GUEST_TSO6);
2090
2091         if (tx_offloads & (DEV_TX_OFFLOAD_UDP_CKSUM |
2092                            DEV_TX_OFFLOAD_TCP_CKSUM))
2093                 req_features |= (1ULL << VIRTIO_NET_F_CSUM);
2094
2095         if (tx_offloads & DEV_TX_OFFLOAD_TCP_TSO)
2096                 req_features |=
2097                         (1ULL << VIRTIO_NET_F_HOST_TSO4) |
2098                         (1ULL << VIRTIO_NET_F_HOST_TSO6);
2099
2100         /* if request features changed, reinit the device */
2101         if (req_features != hw->req_guest_features) {
2102                 ret = virtio_init_device(dev, req_features);
2103                 if (ret < 0)
2104                         return ret;
2105         }
2106
2107         if ((rx_offloads & (DEV_RX_OFFLOAD_UDP_CKSUM |
2108                             DEV_RX_OFFLOAD_TCP_CKSUM)) &&
2109                 !vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_CSUM)) {
2110                 PMD_DRV_LOG(ERR,
2111                         "rx checksum not available on this host");
2112                 return -ENOTSUP;
2113         }
2114
2115         if ((rx_offloads & DEV_RX_OFFLOAD_TCP_LRO) &&
2116                 (!vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4) ||
2117                  !vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO6))) {
2118                 PMD_DRV_LOG(ERR,
2119                         "Large Receive Offload not available on this host");
2120                 return -ENOTSUP;
2121         }
2122
2123         /* start control queue */
2124         if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ))
2125                 virtio_dev_cq_start(dev);
2126
2127         if (rx_offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2128                 hw->vlan_strip = 1;
2129
2130         if ((rx_offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
2131             && !vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VLAN)) {
2132                 PMD_DRV_LOG(ERR,
2133                             "vlan filtering not available on this host");
2134                 return -ENOTSUP;
2135         }
2136
2137         hw->has_tx_offload = tx_offload_enabled(hw);
2138         hw->has_rx_offload = rx_offload_enabled(hw);
2139
2140         if (dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
2141                 /* Enable vector (0) for Link State Intrerrupt */
2142                 if (VTPCI_OPS(hw)->set_config_irq(hw, 0) ==
2143                                 VIRTIO_MSI_NO_VECTOR) {
2144                         PMD_DRV_LOG(ERR, "failed to set config vector");
2145                         return -EBUSY;
2146                 }
2147
2148         if (vtpci_packed_queue(hw)) {
2149 #if defined(RTE_ARCH_X86_64) && defined(CC_AVX512_SUPPORT)
2150                 if ((hw->use_vec_rx || hw->use_vec_tx) &&
2151                     (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_AVX512F) ||
2152                      !vtpci_with_feature(hw, VIRTIO_F_IN_ORDER) ||
2153                      !vtpci_with_feature(hw, VIRTIO_F_VERSION_1) ||
2154                      rte_vect_get_max_simd_bitwidth() < RTE_VECT_SIMD_512)) {
2155                         PMD_DRV_LOG(INFO,
2156                                 "disabled packed ring vectorized path for requirements not met");
2157                         hw->use_vec_rx = 0;
2158                         hw->use_vec_tx = 0;
2159                 }
2160 #elif defined(RTE_ARCH_ARM)
2161                 if ((hw->use_vec_rx || hw->use_vec_tx) &&
2162                     (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_NEON) ||
2163                      !vtpci_with_feature(hw, VIRTIO_F_IN_ORDER) ||
2164                      !vtpci_with_feature(hw, VIRTIO_F_VERSION_1) ||
2165                      rte_vect_get_max_simd_bitwidth() < RTE_VECT_SIMD_128)) {
2166                         PMD_DRV_LOG(INFO,
2167                                 "disabled packed ring vectorized path for requirements not met");
2168                         hw->use_vec_rx = 0;
2169                         hw->use_vec_tx = 0;
2170                 }
2171 #else
2172                 hw->use_vec_rx = 0;
2173                 hw->use_vec_tx = 0;
2174 #endif
2175
2176                 if (hw->use_vec_rx) {
2177                         if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF)) {
2178                                 PMD_DRV_LOG(INFO,
2179                                         "disabled packed ring vectorized rx for mrg_rxbuf enabled");
2180                                 hw->use_vec_rx = 0;
2181                         }
2182
2183                         if (rx_offloads & DEV_RX_OFFLOAD_TCP_LRO) {
2184                                 PMD_DRV_LOG(INFO,
2185                                         "disabled packed ring vectorized rx for TCP_LRO enabled");
2186                                 hw->use_vec_rx = 0;
2187                         }
2188                 }
2189         } else {
2190                 if (vtpci_with_feature(hw, VIRTIO_F_IN_ORDER)) {
2191                         hw->use_inorder_tx = 1;
2192                         hw->use_inorder_rx = 1;
2193                         hw->use_vec_rx = 0;
2194                 }
2195
2196                 if (hw->use_vec_rx) {
2197 #if defined RTE_ARCH_ARM
2198                         if (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_NEON)) {
2199                                 PMD_DRV_LOG(INFO,
2200                                         "disabled split ring vectorized path for requirement not met");
2201                                 hw->use_vec_rx = 0;
2202                         }
2203 #endif
2204                         if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF)) {
2205                                 PMD_DRV_LOG(INFO,
2206                                         "disabled split ring vectorized rx for mrg_rxbuf enabled");
2207                                 hw->use_vec_rx = 0;
2208                         }
2209
2210                         if (rx_offloads & (DEV_RX_OFFLOAD_UDP_CKSUM |
2211                                            DEV_RX_OFFLOAD_TCP_CKSUM |
2212                                            DEV_RX_OFFLOAD_TCP_LRO |
2213                                            DEV_RX_OFFLOAD_VLAN_STRIP)) {
2214                                 PMD_DRV_LOG(INFO,
2215                                         "disabled split ring vectorized rx for offloading enabled");
2216                                 hw->use_vec_rx = 0;
2217                         }
2218
2219                         if (rte_vect_get_max_simd_bitwidth() < RTE_VECT_SIMD_128) {
2220                                 PMD_DRV_LOG(INFO,
2221                                         "disabled split ring vectorized rx, max SIMD bitwidth too low");
2222                                 hw->use_vec_rx = 0;
2223                         }
2224                 }
2225         }
2226
2227         return 0;
2228 }
2229
2230
2231 static int
2232 virtio_dev_start(struct rte_eth_dev *dev)
2233 {
2234         uint16_t nb_queues, i;
2235         struct virtnet_rx *rxvq;
2236         struct virtnet_tx *txvq __rte_unused;
2237         struct virtio_hw *hw = dev->data->dev_private;
2238         int ret;
2239
2240         /* Finish the initialization of the queues */
2241         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2242                 ret = virtio_dev_rx_queue_setup_finish(dev, i);
2243                 if (ret < 0)
2244                         return ret;
2245         }
2246         for (i = 0; i < dev->data->nb_tx_queues; i++) {
2247                 ret = virtio_dev_tx_queue_setup_finish(dev, i);
2248                 if (ret < 0)
2249                         return ret;
2250         }
2251
2252         /* check if lsc interrupt feature is enabled */
2253         if (dev->data->dev_conf.intr_conf.lsc) {
2254                 if (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)) {
2255                         PMD_DRV_LOG(ERR, "link status not supported by host");
2256                         return -ENOTSUP;
2257                 }
2258         }
2259
2260         /* Enable uio/vfio intr/eventfd mapping: althrough we already did that
2261          * in device configure, but it could be unmapped  when device is
2262          * stopped.
2263          */
2264         if (dev->data->dev_conf.intr_conf.lsc ||
2265             dev->data->dev_conf.intr_conf.rxq) {
2266                 virtio_intr_disable(dev);
2267
2268                 /* Setup interrupt callback  */
2269                 if (dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
2270                         rte_intr_callback_register(dev->intr_handle,
2271                                                    virtio_interrupt_handler,
2272                                                    dev);
2273
2274                 if (virtio_intr_enable(dev) < 0) {
2275                         PMD_DRV_LOG(ERR, "interrupt enable failed");
2276                         return -EIO;
2277                 }
2278         }
2279
2280         /*Notify the backend
2281          *Otherwise the tap backend might already stop its queue due to fullness.
2282          *vhost backend will have no chance to be waked up
2283          */
2284         nb_queues = RTE_MAX(dev->data->nb_rx_queues, dev->data->nb_tx_queues);
2285         if (hw->max_queue_pairs > 1) {
2286                 if (virtio_set_multiple_queues(dev, nb_queues) != 0)
2287                         return -EINVAL;
2288         }
2289
2290         PMD_INIT_LOG(DEBUG, "nb_queues=%d", nb_queues);
2291
2292         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2293                 rxvq = dev->data->rx_queues[i];
2294                 /* Flush the old packets */
2295                 virtqueue_rxvq_flush(rxvq->vq);
2296                 virtqueue_notify(rxvq->vq);
2297         }
2298
2299         for (i = 0; i < dev->data->nb_tx_queues; i++) {
2300                 txvq = dev->data->tx_queues[i];
2301                 virtqueue_notify(txvq->vq);
2302         }
2303
2304         PMD_INIT_LOG(DEBUG, "Notified backend at initialization");
2305
2306         for (i = 0; i < dev->data->nb_rx_queues; i++) {
2307                 rxvq = dev->data->rx_queues[i];
2308                 VIRTQUEUE_DUMP(rxvq->vq);
2309         }
2310
2311         for (i = 0; i < dev->data->nb_tx_queues; i++) {
2312                 txvq = dev->data->tx_queues[i];
2313                 VIRTQUEUE_DUMP(txvq->vq);
2314         }
2315
2316         set_rxtx_funcs(dev);
2317         hw->started = true;
2318
2319         /* Initialize Link state */
2320         virtio_dev_link_update(dev, 0);
2321
2322         return 0;
2323 }
2324
2325 static void virtio_dev_free_mbufs(struct rte_eth_dev *dev)
2326 {
2327         struct virtio_hw *hw = dev->data->dev_private;
2328         uint16_t nr_vq = virtio_get_nr_vq(hw);
2329         const char *type __rte_unused;
2330         unsigned int i, mbuf_num = 0;
2331         struct virtqueue *vq;
2332         struct rte_mbuf *buf;
2333         int queue_type;
2334
2335         if (hw->vqs == NULL)
2336                 return;
2337
2338         for (i = 0; i < nr_vq; i++) {
2339                 vq = hw->vqs[i];
2340                 if (!vq)
2341                         continue;
2342
2343                 queue_type = virtio_get_queue_type(hw, i);
2344                 if (queue_type == VTNET_RQ)
2345                         type = "rxq";
2346                 else if (queue_type == VTNET_TQ)
2347                         type = "txq";
2348                 else
2349                         continue;
2350
2351                 PMD_INIT_LOG(DEBUG,
2352                         "Before freeing %s[%d] used and unused buf",
2353                         type, i);
2354                 VIRTQUEUE_DUMP(vq);
2355
2356                 while ((buf = virtqueue_detach_unused(vq)) != NULL) {
2357                         rte_pktmbuf_free(buf);
2358                         mbuf_num++;
2359                 }
2360
2361                 PMD_INIT_LOG(DEBUG,
2362                         "After freeing %s[%d] used and unused buf",
2363                         type, i);
2364                 VIRTQUEUE_DUMP(vq);
2365         }
2366
2367         PMD_INIT_LOG(DEBUG, "%d mbufs freed", mbuf_num);
2368 }
2369
2370 /*
2371  * Stop device: disable interrupt and mark link down
2372  */
2373 int
2374 virtio_dev_stop(struct rte_eth_dev *dev)
2375 {
2376         struct virtio_hw *hw = dev->data->dev_private;
2377         struct rte_eth_link link;
2378         struct rte_intr_conf *intr_conf = &dev->data->dev_conf.intr_conf;
2379
2380         PMD_INIT_LOG(DEBUG, "stop");
2381         dev->data->dev_started = 0;
2382
2383         rte_spinlock_lock(&hw->state_lock);
2384         if (!hw->started)
2385                 goto out_unlock;
2386         hw->started = false;
2387
2388         if (intr_conf->lsc || intr_conf->rxq) {
2389                 virtio_intr_disable(dev);
2390
2391                 /* Reset interrupt callback  */
2392                 if (dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC) {
2393                         rte_intr_callback_unregister(dev->intr_handle,
2394                                                      virtio_interrupt_handler,
2395                                                      dev);
2396                 }
2397         }
2398
2399         memset(&link, 0, sizeof(link));
2400         rte_eth_linkstatus_set(dev, &link);
2401 out_unlock:
2402         rte_spinlock_unlock(&hw->state_lock);
2403
2404         return 0;
2405 }
2406
2407 static int
2408 virtio_dev_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complete)
2409 {
2410         struct rte_eth_link link;
2411         uint16_t status;
2412         struct virtio_hw *hw = dev->data->dev_private;
2413
2414         memset(&link, 0, sizeof(link));
2415         link.link_duplex = hw->duplex;
2416         link.link_speed  = hw->speed;
2417         link.link_autoneg = ETH_LINK_AUTONEG;
2418
2419         if (!hw->started) {
2420                 link.link_status = ETH_LINK_DOWN;
2421                 link.link_speed = ETH_SPEED_NUM_NONE;
2422         } else if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
2423                 PMD_INIT_LOG(DEBUG, "Get link status from hw");
2424                 vtpci_read_dev_config(hw,
2425                                 offsetof(struct virtio_net_config, status),
2426                                 &status, sizeof(status));
2427                 if ((status & VIRTIO_NET_S_LINK_UP) == 0) {
2428                         link.link_status = ETH_LINK_DOWN;
2429                         link.link_speed = ETH_SPEED_NUM_NONE;
2430                         PMD_INIT_LOG(DEBUG, "Port %d is down",
2431                                      dev->data->port_id);
2432                 } else {
2433                         link.link_status = ETH_LINK_UP;
2434                         PMD_INIT_LOG(DEBUG, "Port %d is up",
2435                                      dev->data->port_id);
2436                 }
2437         } else {
2438                 link.link_status = ETH_LINK_UP;
2439         }
2440
2441         return rte_eth_linkstatus_set(dev, &link);
2442 }
2443
2444 static int
2445 virtio_dev_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2446 {
2447         const struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
2448         struct virtio_hw *hw = dev->data->dev_private;
2449         uint64_t offloads = rxmode->offloads;
2450
2451         if (mask & ETH_VLAN_FILTER_MASK) {
2452                 if ((offloads & DEV_RX_OFFLOAD_VLAN_FILTER) &&
2453                                 !vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VLAN)) {
2454
2455                         PMD_DRV_LOG(NOTICE,
2456                                 "vlan filtering not available on this host");
2457
2458                         return -ENOTSUP;
2459                 }
2460         }
2461
2462         if (mask & ETH_VLAN_STRIP_MASK)
2463                 hw->vlan_strip = !!(offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
2464
2465         return 0;
2466 }
2467
2468 static int
2469 virtio_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2470 {
2471         uint64_t tso_mask, host_features;
2472         struct virtio_hw *hw = dev->data->dev_private;
2473         dev_info->speed_capa = virtio_dev_speed_capa_get(hw->speed);
2474
2475         dev_info->max_rx_queues =
2476                 RTE_MIN(hw->max_queue_pairs, VIRTIO_MAX_RX_QUEUES);
2477         dev_info->max_tx_queues =
2478                 RTE_MIN(hw->max_queue_pairs, VIRTIO_MAX_TX_QUEUES);
2479         dev_info->min_rx_bufsize = VIRTIO_MIN_RX_BUFSIZE;
2480         dev_info->max_rx_pktlen = VIRTIO_MAX_RX_PKTLEN;
2481         dev_info->max_mac_addrs = VIRTIO_MAX_MAC_ADDRS;
2482
2483         host_features = VTPCI_OPS(hw)->get_features(hw);
2484         dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP;
2485         dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_JUMBO_FRAME;
2486         if (host_features & (1ULL << VIRTIO_NET_F_GUEST_CSUM)) {
2487                 dev_info->rx_offload_capa |=
2488                         DEV_RX_OFFLOAD_TCP_CKSUM |
2489                         DEV_RX_OFFLOAD_UDP_CKSUM;
2490         }
2491         if (host_features & (1ULL << VIRTIO_NET_F_CTRL_VLAN))
2492                 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_VLAN_FILTER;
2493         tso_mask = (1ULL << VIRTIO_NET_F_GUEST_TSO4) |
2494                 (1ULL << VIRTIO_NET_F_GUEST_TSO6);
2495         if ((host_features & tso_mask) == tso_mask)
2496                 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_TCP_LRO;
2497
2498         dev_info->tx_offload_capa = DEV_TX_OFFLOAD_MULTI_SEGS |
2499                                     DEV_TX_OFFLOAD_VLAN_INSERT;
2500         if (host_features & (1ULL << VIRTIO_NET_F_CSUM)) {
2501                 dev_info->tx_offload_capa |=
2502                         DEV_TX_OFFLOAD_UDP_CKSUM |
2503                         DEV_TX_OFFLOAD_TCP_CKSUM;
2504         }
2505         tso_mask = (1ULL << VIRTIO_NET_F_HOST_TSO4) |
2506                 (1ULL << VIRTIO_NET_F_HOST_TSO6);
2507         if ((host_features & tso_mask) == tso_mask)
2508                 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_TCP_TSO;
2509
2510         return 0;
2511 }
2512
2513 /*
2514  * It enables testpmd to collect per queue stats.
2515  */
2516 static int
2517 virtio_dev_queue_stats_mapping_set(__rte_unused struct rte_eth_dev *eth_dev,
2518 __rte_unused uint16_t queue_id, __rte_unused uint8_t stat_idx,
2519 __rte_unused uint8_t is_rx)
2520 {
2521         return 0;
2522 }
2523
2524 RTE_LOG_REGISTER(virtio_logtype_init, pmd.net.virtio.init, NOTICE);
2525 RTE_LOG_REGISTER(virtio_logtype_driver, pmd.net.virtio.driver, NOTICE);