4 * Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <rte_ethdev.h>
41 #include <rte_memcpy.h>
42 #include <rte_string_fns.h>
43 #include <rte_memzone.h>
44 #include <rte_malloc.h>
45 #include <rte_atomic.h>
46 #include <rte_branch_prediction.h>
48 #include <rte_ether.h>
49 #include <rte_common.h>
50 #include <rte_errno.h>
52 #include <rte_memory.h>
56 #include "virtio_ethdev.h"
57 #include "virtio_pci.h"
58 #include "virtio_logs.h"
59 #include "virtqueue.h"
60 #include "virtio_rxtx.h"
62 static int eth_virtio_dev_uninit(struct rte_eth_dev *eth_dev);
63 static int virtio_dev_configure(struct rte_eth_dev *dev);
64 static int virtio_dev_start(struct rte_eth_dev *dev);
65 static void virtio_dev_stop(struct rte_eth_dev *dev);
66 static void virtio_dev_promiscuous_enable(struct rte_eth_dev *dev);
67 static void virtio_dev_promiscuous_disable(struct rte_eth_dev *dev);
68 static void virtio_dev_allmulticast_enable(struct rte_eth_dev *dev);
69 static void virtio_dev_allmulticast_disable(struct rte_eth_dev *dev);
70 static void virtio_dev_info_get(struct rte_eth_dev *dev,
71 struct rte_eth_dev_info *dev_info);
72 static int virtio_dev_link_update(struct rte_eth_dev *dev,
73 __rte_unused int wait_to_complete);
75 static void virtio_set_hwaddr(struct virtio_hw *hw);
76 static void virtio_get_hwaddr(struct virtio_hw *hw);
78 static void virtio_dev_stats_get(struct rte_eth_dev *dev,
79 struct rte_eth_stats *stats);
80 static int virtio_dev_xstats_get(struct rte_eth_dev *dev,
81 struct rte_eth_xstat *xstats, unsigned n);
82 static int virtio_dev_xstats_get_names(struct rte_eth_dev *dev,
83 struct rte_eth_xstat_name *xstats_names,
85 static void virtio_dev_stats_reset(struct rte_eth_dev *dev);
86 static void virtio_dev_free_mbufs(struct rte_eth_dev *dev);
87 static int virtio_vlan_filter_set(struct rte_eth_dev *dev,
88 uint16_t vlan_id, int on);
89 static void virtio_mac_addr_add(struct rte_eth_dev *dev,
90 struct ether_addr *mac_addr,
91 uint32_t index, uint32_t vmdq __rte_unused);
92 static void virtio_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index);
93 static void virtio_mac_addr_set(struct rte_eth_dev *dev,
94 struct ether_addr *mac_addr);
96 static int virtio_dev_queue_stats_mapping_set(
97 __rte_unused struct rte_eth_dev *eth_dev,
98 __rte_unused uint16_t queue_id,
99 __rte_unused uint8_t stat_idx,
100 __rte_unused uint8_t is_rx);
103 * The set of PCI devices this driver supports
105 static const struct rte_pci_id pci_id_virtio_map[] = {
106 { RTE_PCI_DEVICE(VIRTIO_PCI_VENDORID, VIRTIO_PCI_LEGACY_DEVICEID_NET) },
107 { RTE_PCI_DEVICE(VIRTIO_PCI_VENDORID, VIRTIO_PCI_MODERN_DEVICEID_NET) },
108 { .vendor_id = 0, /* sentinel */ },
111 struct rte_virtio_xstats_name_off {
112 char name[RTE_ETH_XSTATS_NAME_SIZE];
116 /* [rt]x_qX_ is prepended to the name string here */
117 static const struct rte_virtio_xstats_name_off rte_virtio_rxq_stat_strings[] = {
118 {"good_packets", offsetof(struct virtnet_rx, stats.packets)},
119 {"good_bytes", offsetof(struct virtnet_rx, stats.bytes)},
120 {"errors", offsetof(struct virtnet_rx, stats.errors)},
121 {"multicast_packets", offsetof(struct virtnet_rx, stats.multicast)},
122 {"broadcast_packets", offsetof(struct virtnet_rx, stats.broadcast)},
123 {"undersize_packets", offsetof(struct virtnet_rx, stats.size_bins[0])},
124 {"size_64_packets", offsetof(struct virtnet_rx, stats.size_bins[1])},
125 {"size_65_127_packets", offsetof(struct virtnet_rx, stats.size_bins[2])},
126 {"size_128_255_packets", offsetof(struct virtnet_rx, stats.size_bins[3])},
127 {"size_256_511_packets", offsetof(struct virtnet_rx, stats.size_bins[4])},
128 {"size_512_1023_packets", offsetof(struct virtnet_rx, stats.size_bins[5])},
129 {"size_1024_1518_packets", offsetof(struct virtnet_rx, stats.size_bins[6])},
130 {"size_1519_max_packets", offsetof(struct virtnet_rx, stats.size_bins[7])},
133 /* [rt]x_qX_ is prepended to the name string here */
134 static const struct rte_virtio_xstats_name_off rte_virtio_txq_stat_strings[] = {
135 {"good_packets", offsetof(struct virtnet_tx, stats.packets)},
136 {"good_bytes", offsetof(struct virtnet_tx, stats.bytes)},
137 {"errors", offsetof(struct virtnet_tx, stats.errors)},
138 {"multicast_packets", offsetof(struct virtnet_tx, stats.multicast)},
139 {"broadcast_packets", offsetof(struct virtnet_tx, stats.broadcast)},
140 {"undersize_packets", offsetof(struct virtnet_tx, stats.size_bins[0])},
141 {"size_64_packets", offsetof(struct virtnet_tx, stats.size_bins[1])},
142 {"size_65_127_packets", offsetof(struct virtnet_tx, stats.size_bins[2])},
143 {"size_128_255_packets", offsetof(struct virtnet_tx, stats.size_bins[3])},
144 {"size_256_511_packets", offsetof(struct virtnet_tx, stats.size_bins[4])},
145 {"size_512_1023_packets", offsetof(struct virtnet_tx, stats.size_bins[5])},
146 {"size_1024_1518_packets", offsetof(struct virtnet_tx, stats.size_bins[6])},
147 {"size_1519_max_packets", offsetof(struct virtnet_tx, stats.size_bins[7])},
150 #define VIRTIO_NB_RXQ_XSTATS (sizeof(rte_virtio_rxq_stat_strings) / \
151 sizeof(rte_virtio_rxq_stat_strings[0]))
152 #define VIRTIO_NB_TXQ_XSTATS (sizeof(rte_virtio_txq_stat_strings) / \
153 sizeof(rte_virtio_txq_stat_strings[0]))
155 struct virtio_hw_internal virtio_hw_internal[RTE_MAX_ETHPORTS];
158 virtio_send_command(struct virtnet_ctl *cvq, struct virtio_pmd_ctrl *ctrl,
159 int *dlen, int pkt_num)
163 virtio_net_ctrl_ack status = ~0;
164 struct virtio_pmd_ctrl result;
165 struct virtqueue *vq;
167 ctrl->status = status;
169 if (!cvq || !cvq->vq) {
170 PMD_INIT_LOG(ERR, "Control queue is not supported.");
174 head = vq->vq_desc_head_idx;
176 PMD_INIT_LOG(DEBUG, "vq->vq_desc_head_idx = %d, status = %d, "
177 "vq->hw->cvq = %p vq = %p",
178 vq->vq_desc_head_idx, status, vq->hw->cvq, vq);
180 if ((vq->vq_free_cnt < ((uint32_t)pkt_num + 2)) || (pkt_num < 1))
183 memcpy(cvq->virtio_net_hdr_mz->addr, ctrl,
184 sizeof(struct virtio_pmd_ctrl));
187 * Format is enforced in qemu code:
188 * One TX packet for header;
189 * At least one TX packet per argument;
190 * One RX packet for ACK.
192 vq->vq_ring.desc[head].flags = VRING_DESC_F_NEXT;
193 vq->vq_ring.desc[head].addr = cvq->virtio_net_hdr_mem;
194 vq->vq_ring.desc[head].len = sizeof(struct virtio_net_ctrl_hdr);
196 i = vq->vq_ring.desc[head].next;
198 for (k = 0; k < pkt_num; k++) {
199 vq->vq_ring.desc[i].flags = VRING_DESC_F_NEXT;
200 vq->vq_ring.desc[i].addr = cvq->virtio_net_hdr_mem
201 + sizeof(struct virtio_net_ctrl_hdr)
202 + sizeof(ctrl->status) + sizeof(uint8_t)*sum;
203 vq->vq_ring.desc[i].len = dlen[k];
206 i = vq->vq_ring.desc[i].next;
209 vq->vq_ring.desc[i].flags = VRING_DESC_F_WRITE;
210 vq->vq_ring.desc[i].addr = cvq->virtio_net_hdr_mem
211 + sizeof(struct virtio_net_ctrl_hdr);
212 vq->vq_ring.desc[i].len = sizeof(ctrl->status);
215 vq->vq_desc_head_idx = vq->vq_ring.desc[i].next;
217 vq_update_avail_ring(vq, head);
218 vq_update_avail_idx(vq);
220 PMD_INIT_LOG(DEBUG, "vq->vq_queue_index = %d", vq->vq_queue_index);
222 virtqueue_notify(vq);
225 while (VIRTQUEUE_NUSED(vq) == 0) {
230 while (VIRTQUEUE_NUSED(vq)) {
231 uint32_t idx, desc_idx, used_idx;
232 struct vring_used_elem *uep;
234 used_idx = (uint32_t)(vq->vq_used_cons_idx
235 & (vq->vq_nentries - 1));
236 uep = &vq->vq_ring.used->ring[used_idx];
237 idx = (uint32_t) uep->id;
240 while (vq->vq_ring.desc[desc_idx].flags & VRING_DESC_F_NEXT) {
241 desc_idx = vq->vq_ring.desc[desc_idx].next;
245 vq->vq_ring.desc[desc_idx].next = vq->vq_desc_head_idx;
246 vq->vq_desc_head_idx = idx;
248 vq->vq_used_cons_idx++;
252 PMD_INIT_LOG(DEBUG, "vq->vq_free_cnt=%d\nvq->vq_desc_head_idx=%d",
253 vq->vq_free_cnt, vq->vq_desc_head_idx);
255 memcpy(&result, cvq->virtio_net_hdr_mz->addr,
256 sizeof(struct virtio_pmd_ctrl));
258 return result.status;
262 virtio_set_multiple_queues(struct rte_eth_dev *dev, uint16_t nb_queues)
264 struct virtio_hw *hw = dev->data->dev_private;
265 struct virtio_pmd_ctrl ctrl;
269 ctrl.hdr.class = VIRTIO_NET_CTRL_MQ;
270 ctrl.hdr.cmd = VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET;
271 memcpy(ctrl.data, &nb_queues, sizeof(uint16_t));
273 dlen[0] = sizeof(uint16_t);
275 ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
277 PMD_INIT_LOG(ERR, "Multiqueue configured but send command "
278 "failed, this is too late now...");
286 virtio_dev_queue_release(void *queue __rte_unused)
292 virtio_get_queue_type(struct virtio_hw *hw, uint16_t vtpci_queue_idx)
294 if (vtpci_queue_idx == hw->max_queue_pairs * 2)
296 else if (vtpci_queue_idx % 2 == 0)
303 virtio_get_nr_vq(struct virtio_hw *hw)
305 uint16_t nr_vq = hw->max_queue_pairs * 2;
307 if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ))
314 virtio_init_vring(struct virtqueue *vq)
316 int size = vq->vq_nentries;
317 struct vring *vr = &vq->vq_ring;
318 uint8_t *ring_mem = vq->vq_ring_virt_mem;
320 PMD_INIT_FUNC_TRACE();
323 * Reinitialise since virtio port might have been stopped and restarted
325 memset(ring_mem, 0, vq->vq_ring_size);
326 vring_init(vr, size, ring_mem, VIRTIO_PCI_VRING_ALIGN);
327 vq->vq_used_cons_idx = 0;
328 vq->vq_desc_head_idx = 0;
329 vq->vq_avail_idx = 0;
330 vq->vq_desc_tail_idx = (uint16_t)(vq->vq_nentries - 1);
331 vq->vq_free_cnt = vq->vq_nentries;
332 memset(vq->vq_descx, 0, sizeof(struct vq_desc_extra) * vq->vq_nentries);
334 vring_desc_init(vr->desc, size);
337 * Disable device(host) interrupting guest
339 virtqueue_disable_intr(vq);
343 virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
345 char vq_name[VIRTQUEUE_MAX_NAME_SZ];
346 char vq_hdr_name[VIRTQUEUE_MAX_NAME_SZ];
347 const struct rte_memzone *mz = NULL, *hdr_mz = NULL;
348 unsigned int vq_size, size;
349 struct virtio_hw *hw = dev->data->dev_private;
350 struct virtnet_rx *rxvq = NULL;
351 struct virtnet_tx *txvq = NULL;
352 struct virtnet_ctl *cvq = NULL;
353 struct virtqueue *vq;
354 size_t sz_hdr_mz = 0;
355 void *sw_ring = NULL;
356 int queue_type = virtio_get_queue_type(hw, vtpci_queue_idx);
359 PMD_INIT_LOG(DEBUG, "setting up queue: %u", vtpci_queue_idx);
362 * Read the virtqueue size from the Queue Size field
363 * Always power of 2 and if 0 virtqueue does not exist
365 vq_size = VTPCI_OPS(hw)->get_queue_num(hw, vtpci_queue_idx);
366 PMD_INIT_LOG(DEBUG, "vq_size: %u", vq_size);
368 PMD_INIT_LOG(ERR, "virtqueue does not exist");
372 if (!rte_is_power_of_2(vq_size)) {
373 PMD_INIT_LOG(ERR, "virtqueue size is not powerof 2");
377 snprintf(vq_name, sizeof(vq_name), "port%d_vq%d",
378 dev->data->port_id, vtpci_queue_idx);
380 size = RTE_ALIGN_CEIL(sizeof(*vq) +
381 vq_size * sizeof(struct vq_desc_extra),
382 RTE_CACHE_LINE_SIZE);
383 if (queue_type == VTNET_TQ) {
385 * For each xmit packet, allocate a virtio_net_hdr
386 * and indirect ring elements
388 sz_hdr_mz = vq_size * sizeof(struct virtio_tx_region);
389 } else if (queue_type == VTNET_CQ) {
390 /* Allocate a page for control vq command, data and status */
391 sz_hdr_mz = PAGE_SIZE;
394 vq = rte_zmalloc_socket(vq_name, size, RTE_CACHE_LINE_SIZE,
397 PMD_INIT_LOG(ERR, "can not allocate vq");
400 hw->vqs[vtpci_queue_idx] = vq;
403 vq->vq_queue_index = vtpci_queue_idx;
404 vq->vq_nentries = vq_size;
407 * Reserve a memzone for vring elements
409 size = vring_size(vq_size, VIRTIO_PCI_VRING_ALIGN);
410 vq->vq_ring_size = RTE_ALIGN_CEIL(size, VIRTIO_PCI_VRING_ALIGN);
411 PMD_INIT_LOG(DEBUG, "vring_size: %d, rounded_vring_size: %d",
412 size, vq->vq_ring_size);
414 mz = rte_memzone_reserve_aligned(vq_name, vq->vq_ring_size,
416 0, VIRTIO_PCI_VRING_ALIGN);
418 if (rte_errno == EEXIST)
419 mz = rte_memzone_lookup(vq_name);
426 memset(mz->addr, 0, sizeof(mz->len));
428 vq->vq_ring_mem = mz->phys_addr;
429 vq->vq_ring_virt_mem = mz->addr;
430 PMD_INIT_LOG(DEBUG, "vq->vq_ring_mem: 0x%" PRIx64,
431 (uint64_t)mz->phys_addr);
432 PMD_INIT_LOG(DEBUG, "vq->vq_ring_virt_mem: 0x%" PRIx64,
433 (uint64_t)(uintptr_t)mz->addr);
435 virtio_init_vring(vq);
438 snprintf(vq_hdr_name, sizeof(vq_hdr_name), "port%d_vq%d_hdr",
439 dev->data->port_id, vtpci_queue_idx);
440 hdr_mz = rte_memzone_reserve_aligned(vq_hdr_name, sz_hdr_mz,
442 RTE_CACHE_LINE_SIZE);
443 if (hdr_mz == NULL) {
444 if (rte_errno == EEXIST)
445 hdr_mz = rte_memzone_lookup(vq_hdr_name);
446 if (hdr_mz == NULL) {
453 if (queue_type == VTNET_RQ) {
454 size_t sz_sw = (RTE_PMD_VIRTIO_RX_MAX_BURST + vq_size) *
455 sizeof(vq->sw_ring[0]);
457 sw_ring = rte_zmalloc_socket("sw_ring", sz_sw,
458 RTE_CACHE_LINE_SIZE, SOCKET_ID_ANY);
460 PMD_INIT_LOG(ERR, "can not allocate RX soft ring");
465 vq->sw_ring = sw_ring;
468 rxvq->port_id = dev->data->port_id;
470 } else if (queue_type == VTNET_TQ) {
473 txvq->port_id = dev->data->port_id;
475 txvq->virtio_net_hdr_mz = hdr_mz;
476 txvq->virtio_net_hdr_mem = hdr_mz->phys_addr;
477 } else if (queue_type == VTNET_CQ) {
481 cvq->virtio_net_hdr_mz = hdr_mz;
482 cvq->virtio_net_hdr_mem = hdr_mz->phys_addr;
483 memset(cvq->virtio_net_hdr_mz->addr, 0, PAGE_SIZE);
488 /* For virtio_user case (that is when hw->dev is NULL), we use
489 * virtual address. And we need properly set _offset_, please see
490 * VIRTIO_MBUF_DATA_DMA_ADDR in virtqueue.h for more information.
492 if (!hw->virtio_user_dev)
493 vq->offset = offsetof(struct rte_mbuf, buf_physaddr);
495 vq->vq_ring_mem = (uintptr_t)mz->addr;
496 vq->offset = offsetof(struct rte_mbuf, buf_addr);
497 if (queue_type == VTNET_TQ)
498 txvq->virtio_net_hdr_mem = (uintptr_t)hdr_mz->addr;
499 else if (queue_type == VTNET_CQ)
500 cvq->virtio_net_hdr_mem = (uintptr_t)hdr_mz->addr;
503 if (queue_type == VTNET_TQ) {
504 struct virtio_tx_region *txr;
508 memset(txr, 0, vq_size * sizeof(*txr));
509 for (i = 0; i < vq_size; i++) {
510 struct vring_desc *start_dp = txr[i].tx_indir;
512 vring_desc_init(start_dp, RTE_DIM(txr[i].tx_indir));
514 /* first indirect descriptor is always the tx header */
515 start_dp->addr = txvq->virtio_net_hdr_mem
517 + offsetof(struct virtio_tx_region, tx_hdr);
519 start_dp->len = hw->vtnet_hdr_size;
520 start_dp->flags = VRING_DESC_F_NEXT;
524 if (VTPCI_OPS(hw)->setup_queue(hw, vq) < 0) {
525 PMD_INIT_LOG(ERR, "setup_queue failed");
533 rte_memzone_free(hdr_mz);
534 rte_memzone_free(mz);
541 virtio_free_queues(struct virtio_hw *hw)
543 uint16_t nr_vq = virtio_get_nr_vq(hw);
544 struct virtqueue *vq;
548 for (i = 0; i < nr_vq; i++) {
553 queue_type = virtio_get_queue_type(hw, i);
554 if (queue_type == VTNET_RQ) {
555 rte_free(vq->sw_ring);
556 rte_memzone_free(vq->rxq.mz);
557 } else if (queue_type == VTNET_TQ) {
558 rte_memzone_free(vq->txq.mz);
559 rte_memzone_free(vq->txq.virtio_net_hdr_mz);
561 rte_memzone_free(vq->cq.mz);
562 rte_memzone_free(vq->cq.virtio_net_hdr_mz);
572 virtio_alloc_queues(struct rte_eth_dev *dev)
574 struct virtio_hw *hw = dev->data->dev_private;
575 uint16_t nr_vq = virtio_get_nr_vq(hw);
579 hw->vqs = rte_zmalloc(NULL, sizeof(struct virtqueue *) * nr_vq, 0);
581 PMD_INIT_LOG(ERR, "failed to allocate vqs");
585 for (i = 0; i < nr_vq; i++) {
586 ret = virtio_init_queue(dev, i);
588 virtio_free_queues(hw);
597 virtio_dev_close(struct rte_eth_dev *dev)
599 struct virtio_hw *hw = dev->data->dev_private;
601 PMD_INIT_LOG(DEBUG, "virtio_dev_close");
604 if (dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
605 vtpci_irq_config(hw, VIRTIO_MSI_NO_VECTOR);
607 virtio_dev_free_mbufs(dev);
608 virtio_free_queues(hw);
612 virtio_dev_promiscuous_enable(struct rte_eth_dev *dev)
614 struct virtio_hw *hw = dev->data->dev_private;
615 struct virtio_pmd_ctrl ctrl;
619 if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
620 PMD_INIT_LOG(INFO, "host does not support rx control\n");
624 ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
625 ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_PROMISC;
629 ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
631 PMD_INIT_LOG(ERR, "Failed to enable promisc");
635 virtio_dev_promiscuous_disable(struct rte_eth_dev *dev)
637 struct virtio_hw *hw = dev->data->dev_private;
638 struct virtio_pmd_ctrl ctrl;
642 if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
643 PMD_INIT_LOG(INFO, "host does not support rx control\n");
647 ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
648 ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_PROMISC;
652 ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
654 PMD_INIT_LOG(ERR, "Failed to disable promisc");
658 virtio_dev_allmulticast_enable(struct rte_eth_dev *dev)
660 struct virtio_hw *hw = dev->data->dev_private;
661 struct virtio_pmd_ctrl ctrl;
665 if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
666 PMD_INIT_LOG(INFO, "host does not support rx control\n");
670 ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
671 ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_ALLMULTI;
675 ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
677 PMD_INIT_LOG(ERR, "Failed to enable allmulticast");
681 virtio_dev_allmulticast_disable(struct rte_eth_dev *dev)
683 struct virtio_hw *hw = dev->data->dev_private;
684 struct virtio_pmd_ctrl ctrl;
688 if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_RX)) {
689 PMD_INIT_LOG(INFO, "host does not support rx control\n");
693 ctrl.hdr.class = VIRTIO_NET_CTRL_RX;
694 ctrl.hdr.cmd = VIRTIO_NET_CTRL_RX_ALLMULTI;
698 ret = virtio_send_command(hw->cvq, &ctrl, dlen, 1);
700 PMD_INIT_LOG(ERR, "Failed to disable allmulticast");
703 #define VLAN_TAG_LEN 4 /* 802.3ac tag (not DMA'd) */
705 virtio_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
707 struct virtio_hw *hw = dev->data->dev_private;
708 uint32_t ether_hdr_len = ETHER_HDR_LEN + VLAN_TAG_LEN +
710 uint32_t frame_size = mtu + ether_hdr_len;
712 if (mtu < ETHER_MIN_MTU || frame_size > VIRTIO_MAX_RX_PKTLEN) {
713 PMD_INIT_LOG(ERR, "MTU should be between %d and %d\n",
714 ETHER_MIN_MTU, VIRTIO_MAX_RX_PKTLEN - ether_hdr_len);
721 * dev_ops for virtio, bare necessities for basic operation
723 static const struct eth_dev_ops virtio_eth_dev_ops = {
724 .dev_configure = virtio_dev_configure,
725 .dev_start = virtio_dev_start,
726 .dev_stop = virtio_dev_stop,
727 .dev_close = virtio_dev_close,
728 .promiscuous_enable = virtio_dev_promiscuous_enable,
729 .promiscuous_disable = virtio_dev_promiscuous_disable,
730 .allmulticast_enable = virtio_dev_allmulticast_enable,
731 .allmulticast_disable = virtio_dev_allmulticast_disable,
732 .mtu_set = virtio_mtu_set,
733 .dev_infos_get = virtio_dev_info_get,
734 .stats_get = virtio_dev_stats_get,
735 .xstats_get = virtio_dev_xstats_get,
736 .xstats_get_names = virtio_dev_xstats_get_names,
737 .stats_reset = virtio_dev_stats_reset,
738 .xstats_reset = virtio_dev_stats_reset,
739 .link_update = virtio_dev_link_update,
740 .rx_queue_setup = virtio_dev_rx_queue_setup,
741 .rx_queue_release = virtio_dev_queue_release,
742 .tx_queue_setup = virtio_dev_tx_queue_setup,
743 .tx_queue_release = virtio_dev_queue_release,
744 /* collect stats per queue */
745 .queue_stats_mapping_set = virtio_dev_queue_stats_mapping_set,
746 .vlan_filter_set = virtio_vlan_filter_set,
747 .mac_addr_add = virtio_mac_addr_add,
748 .mac_addr_remove = virtio_mac_addr_remove,
749 .mac_addr_set = virtio_mac_addr_set,
753 virtio_dev_atomic_read_link_status(struct rte_eth_dev *dev,
754 struct rte_eth_link *link)
756 struct rte_eth_link *dst = link;
757 struct rte_eth_link *src = &(dev->data->dev_link);
759 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
760 *(uint64_t *)src) == 0)
767 * Atomically writes the link status information into global
768 * structure rte_eth_dev.
771 * - Pointer to the structure rte_eth_dev to read from.
772 * - Pointer to the buffer to be saved with the link status.
775 * - On success, zero.
776 * - On failure, negative value.
779 virtio_dev_atomic_write_link_status(struct rte_eth_dev *dev,
780 struct rte_eth_link *link)
782 struct rte_eth_link *dst = &(dev->data->dev_link);
783 struct rte_eth_link *src = link;
785 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
786 *(uint64_t *)src) == 0)
793 virtio_update_stats(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
797 for (i = 0; i < dev->data->nb_tx_queues; i++) {
798 const struct virtnet_tx *txvq = dev->data->tx_queues[i];
802 stats->opackets += txvq->stats.packets;
803 stats->obytes += txvq->stats.bytes;
804 stats->oerrors += txvq->stats.errors;
806 if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
807 stats->q_opackets[i] = txvq->stats.packets;
808 stats->q_obytes[i] = txvq->stats.bytes;
812 for (i = 0; i < dev->data->nb_rx_queues; i++) {
813 const struct virtnet_rx *rxvq = dev->data->rx_queues[i];
817 stats->ipackets += rxvq->stats.packets;
818 stats->ibytes += rxvq->stats.bytes;
819 stats->ierrors += rxvq->stats.errors;
821 if (i < RTE_ETHDEV_QUEUE_STAT_CNTRS) {
822 stats->q_ipackets[i] = rxvq->stats.packets;
823 stats->q_ibytes[i] = rxvq->stats.bytes;
827 stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed;
830 static int virtio_dev_xstats_get_names(struct rte_eth_dev *dev,
831 struct rte_eth_xstat_name *xstats_names,
832 __rte_unused unsigned limit)
838 unsigned nstats = dev->data->nb_tx_queues * VIRTIO_NB_TXQ_XSTATS +
839 dev->data->nb_rx_queues * VIRTIO_NB_RXQ_XSTATS;
841 if (xstats_names != NULL) {
842 /* Note: limit checked in rte_eth_xstats_names() */
844 for (i = 0; i < dev->data->nb_rx_queues; i++) {
845 struct virtqueue *rxvq = dev->data->rx_queues[i];
848 for (t = 0; t < VIRTIO_NB_RXQ_XSTATS; t++) {
849 snprintf(xstats_names[count].name,
850 sizeof(xstats_names[count].name),
852 rte_virtio_rxq_stat_strings[t].name);
857 for (i = 0; i < dev->data->nb_tx_queues; i++) {
858 struct virtqueue *txvq = dev->data->tx_queues[i];
861 for (t = 0; t < VIRTIO_NB_TXQ_XSTATS; t++) {
862 snprintf(xstats_names[count].name,
863 sizeof(xstats_names[count].name),
865 rte_virtio_txq_stat_strings[t].name);
875 virtio_dev_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
881 unsigned nstats = dev->data->nb_tx_queues * VIRTIO_NB_TXQ_XSTATS +
882 dev->data->nb_rx_queues * VIRTIO_NB_RXQ_XSTATS;
887 for (i = 0; i < dev->data->nb_rx_queues; i++) {
888 struct virtnet_rx *rxvq = dev->data->rx_queues[i];
895 for (t = 0; t < VIRTIO_NB_RXQ_XSTATS; t++) {
896 xstats[count].value = *(uint64_t *)(((char *)rxvq) +
897 rte_virtio_rxq_stat_strings[t].offset);
898 xstats[count].id = count;
903 for (i = 0; i < dev->data->nb_tx_queues; i++) {
904 struct virtnet_tx *txvq = dev->data->tx_queues[i];
911 for (t = 0; t < VIRTIO_NB_TXQ_XSTATS; t++) {
912 xstats[count].value = *(uint64_t *)(((char *)txvq) +
913 rte_virtio_txq_stat_strings[t].offset);
914 xstats[count].id = count;
923 virtio_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
925 virtio_update_stats(dev, stats);
929 virtio_dev_stats_reset(struct rte_eth_dev *dev)
933 for (i = 0; i < dev->data->nb_tx_queues; i++) {
934 struct virtnet_tx *txvq = dev->data->tx_queues[i];
938 txvq->stats.packets = 0;
939 txvq->stats.bytes = 0;
940 txvq->stats.errors = 0;
941 txvq->stats.multicast = 0;
942 txvq->stats.broadcast = 0;
943 memset(txvq->stats.size_bins, 0,
944 sizeof(txvq->stats.size_bins[0]) * 8);
947 for (i = 0; i < dev->data->nb_rx_queues; i++) {
948 struct virtnet_rx *rxvq = dev->data->rx_queues[i];
952 rxvq->stats.packets = 0;
953 rxvq->stats.bytes = 0;
954 rxvq->stats.errors = 0;
955 rxvq->stats.multicast = 0;
956 rxvq->stats.broadcast = 0;
957 memset(rxvq->stats.size_bins, 0,
958 sizeof(rxvq->stats.size_bins[0]) * 8);
963 virtio_set_hwaddr(struct virtio_hw *hw)
965 vtpci_write_dev_config(hw,
966 offsetof(struct virtio_net_config, mac),
967 &hw->mac_addr, ETHER_ADDR_LEN);
971 virtio_get_hwaddr(struct virtio_hw *hw)
973 if (vtpci_with_feature(hw, VIRTIO_NET_F_MAC)) {
974 vtpci_read_dev_config(hw,
975 offsetof(struct virtio_net_config, mac),
976 &hw->mac_addr, ETHER_ADDR_LEN);
978 eth_random_addr(&hw->mac_addr[0]);
979 virtio_set_hwaddr(hw);
984 virtio_mac_table_set(struct virtio_hw *hw,
985 const struct virtio_net_ctrl_mac *uc,
986 const struct virtio_net_ctrl_mac *mc)
988 struct virtio_pmd_ctrl ctrl;
991 if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
992 PMD_DRV_LOG(INFO, "host does not support mac table");
996 ctrl.hdr.class = VIRTIO_NET_CTRL_MAC;
997 ctrl.hdr.cmd = VIRTIO_NET_CTRL_MAC_TABLE_SET;
999 len[0] = uc->entries * ETHER_ADDR_LEN + sizeof(uc->entries);
1000 memcpy(ctrl.data, uc, len[0]);
1002 len[1] = mc->entries * ETHER_ADDR_LEN + sizeof(mc->entries);
1003 memcpy(ctrl.data + len[0], mc, len[1]);
1005 err = virtio_send_command(hw->cvq, &ctrl, len, 2);
1007 PMD_DRV_LOG(NOTICE, "mac table set failed: %d", err);
1011 virtio_mac_addr_add(struct rte_eth_dev *dev, struct ether_addr *mac_addr,
1012 uint32_t index, uint32_t vmdq __rte_unused)
1014 struct virtio_hw *hw = dev->data->dev_private;
1015 const struct ether_addr *addrs = dev->data->mac_addrs;
1017 struct virtio_net_ctrl_mac *uc, *mc;
1019 if (index >= VIRTIO_MAX_MAC_ADDRS) {
1020 PMD_DRV_LOG(ERR, "mac address index %u out of range", index);
1024 uc = alloca(VIRTIO_MAX_MAC_ADDRS * ETHER_ADDR_LEN + sizeof(uc->entries));
1026 mc = alloca(VIRTIO_MAX_MAC_ADDRS * ETHER_ADDR_LEN + sizeof(mc->entries));
1029 for (i = 0; i < VIRTIO_MAX_MAC_ADDRS; i++) {
1030 const struct ether_addr *addr
1031 = (i == index) ? mac_addr : addrs + i;
1032 struct virtio_net_ctrl_mac *tbl
1033 = is_multicast_ether_addr(addr) ? mc : uc;
1035 memcpy(&tbl->macs[tbl->entries++], addr, ETHER_ADDR_LEN);
1038 virtio_mac_table_set(hw, uc, mc);
1042 virtio_mac_addr_remove(struct rte_eth_dev *dev, uint32_t index)
1044 struct virtio_hw *hw = dev->data->dev_private;
1045 struct ether_addr *addrs = dev->data->mac_addrs;
1046 struct virtio_net_ctrl_mac *uc, *mc;
1049 if (index >= VIRTIO_MAX_MAC_ADDRS) {
1050 PMD_DRV_LOG(ERR, "mac address index %u out of range", index);
1054 uc = alloca(VIRTIO_MAX_MAC_ADDRS * ETHER_ADDR_LEN + sizeof(uc->entries));
1056 mc = alloca(VIRTIO_MAX_MAC_ADDRS * ETHER_ADDR_LEN + sizeof(mc->entries));
1059 for (i = 0; i < VIRTIO_MAX_MAC_ADDRS; i++) {
1060 struct virtio_net_ctrl_mac *tbl;
1062 if (i == index || is_zero_ether_addr(addrs + i))
1065 tbl = is_multicast_ether_addr(addrs + i) ? mc : uc;
1066 memcpy(&tbl->macs[tbl->entries++], addrs + i, ETHER_ADDR_LEN);
1069 virtio_mac_table_set(hw, uc, mc);
1073 virtio_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr)
1075 struct virtio_hw *hw = dev->data->dev_private;
1077 memcpy(hw->mac_addr, mac_addr, ETHER_ADDR_LEN);
1079 /* Use atomic update if available */
1080 if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1081 struct virtio_pmd_ctrl ctrl;
1082 int len = ETHER_ADDR_LEN;
1084 ctrl.hdr.class = VIRTIO_NET_CTRL_MAC;
1085 ctrl.hdr.cmd = VIRTIO_NET_CTRL_MAC_ADDR_SET;
1087 memcpy(ctrl.data, mac_addr, ETHER_ADDR_LEN);
1088 virtio_send_command(hw->cvq, &ctrl, &len, 1);
1089 } else if (vtpci_with_feature(hw, VIRTIO_NET_F_MAC))
1090 virtio_set_hwaddr(hw);
1094 virtio_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1096 struct virtio_hw *hw = dev->data->dev_private;
1097 struct virtio_pmd_ctrl ctrl;
1100 if (!vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VLAN))
1103 ctrl.hdr.class = VIRTIO_NET_CTRL_VLAN;
1104 ctrl.hdr.cmd = on ? VIRTIO_NET_CTRL_VLAN_ADD : VIRTIO_NET_CTRL_VLAN_DEL;
1105 memcpy(ctrl.data, &vlan_id, sizeof(vlan_id));
1106 len = sizeof(vlan_id);
1108 return virtio_send_command(hw->cvq, &ctrl, &len, 1);
1112 virtio_negotiate_features(struct virtio_hw *hw, uint64_t req_features)
1114 uint64_t host_features;
1116 /* Prepare guest_features: feature that driver wants to support */
1117 PMD_INIT_LOG(DEBUG, "guest_features before negotiate = %" PRIx64,
1120 /* Read device(host) feature bits */
1121 host_features = VTPCI_OPS(hw)->get_features(hw);
1122 PMD_INIT_LOG(DEBUG, "host_features before negotiate = %" PRIx64,
1126 * Negotiate features: Subset of device feature bits are written back
1127 * guest feature bits.
1129 hw->guest_features = req_features;
1130 hw->guest_features = vtpci_negotiate_features(hw, host_features);
1131 PMD_INIT_LOG(DEBUG, "features after negotiate = %" PRIx64,
1132 hw->guest_features);
1135 if (!vtpci_with_feature(hw, VIRTIO_F_VERSION_1)) {
1137 "VIRTIO_F_VERSION_1 features is not enabled.");
1140 vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_FEATURES_OK);
1141 if (!(vtpci_get_status(hw) & VIRTIO_CONFIG_STATUS_FEATURES_OK)) {
1143 "failed to set FEATURES_OK status!");
1148 hw->req_guest_features = req_features;
1154 * Process Virtio Config changed interrupt and call the callback
1155 * if link state changed.
1158 virtio_interrupt_handler(struct rte_intr_handle *handle,
1161 struct rte_eth_dev *dev = param;
1162 struct virtio_hw *hw = dev->data->dev_private;
1165 /* Read interrupt status which clears interrupt */
1166 isr = vtpci_isr(hw);
1167 PMD_DRV_LOG(INFO, "interrupt status = %#x", isr);
1169 if (rte_intr_enable(handle) < 0)
1170 PMD_DRV_LOG(ERR, "interrupt enable failed");
1172 if (isr & VIRTIO_PCI_ISR_CONFIG) {
1173 if (virtio_dev_link_update(dev, 0) == 0)
1174 _rte_eth_dev_callback_process(dev,
1175 RTE_ETH_EVENT_INTR_LSC, NULL);
1181 rx_func_get(struct rte_eth_dev *eth_dev)
1183 struct virtio_hw *hw = eth_dev->data->dev_private;
1184 if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF))
1185 eth_dev->rx_pkt_burst = &virtio_recv_mergeable_pkts;
1187 eth_dev->rx_pkt_burst = &virtio_recv_pkts;
1190 /* reset device and renegotiate features if needed */
1192 virtio_init_device(struct rte_eth_dev *eth_dev, uint64_t req_features)
1194 struct virtio_hw *hw = eth_dev->data->dev_private;
1195 struct virtio_net_config *config;
1196 struct virtio_net_config local_config;
1197 struct rte_pci_device *pci_dev = NULL;
1200 /* Reset the device although not necessary at startup */
1203 /* Tell the host we've noticed this device. */
1204 vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_ACK);
1206 /* Tell the host we've known how to drive the device. */
1207 vtpci_set_status(hw, VIRTIO_CONFIG_STATUS_DRIVER);
1208 if (virtio_negotiate_features(hw, req_features) < 0)
1211 /* If host does not support status then disable LSC */
1212 if (!vtpci_with_feature(hw, VIRTIO_NET_F_STATUS))
1213 eth_dev->data->dev_flags &= ~RTE_ETH_DEV_INTR_LSC;
1215 eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC;
1217 if (eth_dev->device) {
1218 pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
1219 rte_eth_copy_pci_info(eth_dev, pci_dev);
1220 eth_dev->data->dev_flags = RTE_ETH_DEV_DETACHABLE;
1223 rx_func_get(eth_dev);
1225 /* Setting up rx_header size for the device */
1226 if (vtpci_with_feature(hw, VIRTIO_NET_F_MRG_RXBUF) ||
1227 vtpci_with_feature(hw, VIRTIO_F_VERSION_1))
1228 hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr_mrg_rxbuf);
1230 hw->vtnet_hdr_size = sizeof(struct virtio_net_hdr);
1232 /* Copy the permanent MAC address to: virtio_hw */
1233 virtio_get_hwaddr(hw);
1234 ether_addr_copy((struct ether_addr *) hw->mac_addr,
1235 ð_dev->data->mac_addrs[0]);
1237 "PORT MAC: %02X:%02X:%02X:%02X:%02X:%02X",
1238 hw->mac_addr[0], hw->mac_addr[1], hw->mac_addr[2],
1239 hw->mac_addr[3], hw->mac_addr[4], hw->mac_addr[5]);
1241 if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ)) {
1242 config = &local_config;
1244 vtpci_read_dev_config(hw,
1245 offsetof(struct virtio_net_config, mac),
1246 &config->mac, sizeof(config->mac));
1248 if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
1249 vtpci_read_dev_config(hw,
1250 offsetof(struct virtio_net_config, status),
1251 &config->status, sizeof(config->status));
1254 "VIRTIO_NET_F_STATUS is not supported");
1258 if (vtpci_with_feature(hw, VIRTIO_NET_F_MQ)) {
1259 vtpci_read_dev_config(hw,
1260 offsetof(struct virtio_net_config, max_virtqueue_pairs),
1261 &config->max_virtqueue_pairs,
1262 sizeof(config->max_virtqueue_pairs));
1265 "VIRTIO_NET_F_MQ is not supported");
1266 config->max_virtqueue_pairs = 1;
1269 hw->max_queue_pairs = config->max_virtqueue_pairs;
1271 PMD_INIT_LOG(DEBUG, "config->max_virtqueue_pairs=%d",
1272 config->max_virtqueue_pairs);
1273 PMD_INIT_LOG(DEBUG, "config->status=%d", config->status);
1275 "PORT MAC: %02X:%02X:%02X:%02X:%02X:%02X",
1276 config->mac[0], config->mac[1],
1277 config->mac[2], config->mac[3],
1278 config->mac[4], config->mac[5]);
1280 PMD_INIT_LOG(DEBUG, "config->max_virtqueue_pairs=1");
1281 hw->max_queue_pairs = 1;
1284 ret = virtio_alloc_queues(eth_dev);
1287 vtpci_reinit_complete(hw);
1290 PMD_INIT_LOG(DEBUG, "port %d vendorID=0x%x deviceID=0x%x",
1291 eth_dev->data->port_id, pci_dev->id.vendor_id,
1292 pci_dev->id.device_id);
1298 * Remap the PCI device again (IO port map for legacy device and
1299 * memory map for modern device), so that the secondary process
1300 * could have the PCI initiated correctly.
1303 virtio_remap_pci(struct rte_pci_device *pci_dev, struct virtio_hw *hw)
1307 * We don't have to re-parse the PCI config space, since
1308 * rte_eal_pci_map_device() makes sure the mapped address
1309 * in secondary process would equal to the one mapped in
1310 * the primary process: error will be returned if that
1311 * requirement is not met.
1313 * That said, we could simply reuse all cap pointers
1314 * (such as dev_cfg, common_cfg, etc.) parsed from the
1315 * primary process, which is stored in shared memory.
1317 if (rte_eal_pci_map_device(pci_dev)) {
1318 PMD_INIT_LOG(DEBUG, "failed to map pci device!");
1322 if (rte_eal_pci_ioport_map(pci_dev, 0, VTPCI_IO(hw)) < 0)
1330 virtio_set_vtpci_ops(struct virtio_hw *hw)
1332 if (hw->virtio_user_dev)
1333 VTPCI_OPS(hw) = &virtio_user_ops;
1334 else if (hw->modern)
1335 VTPCI_OPS(hw) = &modern_ops;
1337 VTPCI_OPS(hw) = &legacy_ops;
1341 * This function is based on probe() function in virtio_pci.c
1342 * It returns 0 on success.
1345 eth_virtio_dev_init(struct rte_eth_dev *eth_dev)
1347 struct virtio_hw *hw = eth_dev->data->dev_private;
1348 uint32_t dev_flags = RTE_ETH_DEV_DETACHABLE;
1351 RTE_BUILD_BUG_ON(RTE_PKTMBUF_HEADROOM < sizeof(struct virtio_net_hdr_mrg_rxbuf));
1353 eth_dev->dev_ops = &virtio_eth_dev_ops;
1354 eth_dev->tx_pkt_burst = &virtio_xmit_pkts;
1356 if (rte_eal_process_type() == RTE_PROC_SECONDARY) {
1357 if (!hw->virtio_user_dev) {
1358 ret = virtio_remap_pci(RTE_DEV_TO_PCI(eth_dev->device),
1364 virtio_set_vtpci_ops(hw);
1365 if (hw->use_simple_rxtx) {
1366 eth_dev->tx_pkt_burst = virtio_xmit_pkts_simple;
1367 eth_dev->rx_pkt_burst = virtio_recv_pkts_vec;
1369 rx_func_get(eth_dev);
1374 /* Allocate memory for storing MAC addresses */
1375 eth_dev->data->mac_addrs = rte_zmalloc("virtio", VIRTIO_MAX_MAC_ADDRS * ETHER_ADDR_LEN, 0);
1376 if (eth_dev->data->mac_addrs == NULL) {
1378 "Failed to allocate %d bytes needed to store MAC addresses",
1379 VIRTIO_MAX_MAC_ADDRS * ETHER_ADDR_LEN);
1383 /* For virtio_user case the hw->virtio_user_dev is populated by
1384 * virtio_user_eth_dev_alloc() before eth_virtio_dev_init() is called.
1386 if (!hw->virtio_user_dev) {
1387 ret = vtpci_init(RTE_DEV_TO_PCI(eth_dev->device), hw,
1393 hw->port_id = eth_dev->data->port_id;
1394 eth_dev->data->dev_flags = dev_flags;
1396 /* reset device and negotiate default features */
1397 ret = virtio_init_device(eth_dev, VIRTIO_PMD_DEFAULT_GUEST_FEATURES);
1401 /* Setup interrupt callback */
1402 if (eth_dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
1403 rte_intr_callback_register(eth_dev->intr_handle,
1404 virtio_interrupt_handler, eth_dev);
1410 eth_virtio_dev_uninit(struct rte_eth_dev *eth_dev)
1412 PMD_INIT_FUNC_TRACE();
1414 if (rte_eal_process_type() == RTE_PROC_SECONDARY)
1417 virtio_dev_stop(eth_dev);
1418 virtio_dev_close(eth_dev);
1420 eth_dev->dev_ops = NULL;
1421 eth_dev->tx_pkt_burst = NULL;
1422 eth_dev->rx_pkt_burst = NULL;
1424 rte_free(eth_dev->data->mac_addrs);
1425 eth_dev->data->mac_addrs = NULL;
1427 /* reset interrupt callback */
1428 if (eth_dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
1429 rte_intr_callback_unregister(eth_dev->intr_handle,
1430 virtio_interrupt_handler,
1432 if (eth_dev->device)
1433 rte_eal_pci_unmap_device(RTE_DEV_TO_PCI(eth_dev->device));
1435 PMD_INIT_LOG(DEBUG, "dev_uninit completed");
1440 static struct eth_driver rte_virtio_pmd = {
1443 .name = "net_virtio",
1445 .id_table = pci_id_virtio_map,
1447 .probe = rte_eth_dev_pci_probe,
1448 .remove = rte_eth_dev_pci_remove,
1450 .eth_dev_init = eth_virtio_dev_init,
1451 .eth_dev_uninit = eth_virtio_dev_uninit,
1452 .dev_private_size = sizeof(struct virtio_hw),
1455 RTE_INIT(rte_virtio_pmd_init);
1457 rte_virtio_pmd_init(void)
1459 if (rte_eal_iopl_init() != 0) {
1460 PMD_INIT_LOG(ERR, "IOPL call failed - cannot use virtio PMD");
1464 rte_eal_pci_register(&rte_virtio_pmd.pci_drv);
1468 * Configure virtio device
1469 * It returns 0 on success.
1472 virtio_dev_configure(struct rte_eth_dev *dev)
1474 const struct rte_eth_rxmode *rxmode = &dev->data->dev_conf.rxmode;
1475 struct virtio_hw *hw = dev->data->dev_private;
1476 uint64_t req_features;
1479 PMD_INIT_LOG(DEBUG, "configure");
1480 req_features = VIRTIO_PMD_DEFAULT_GUEST_FEATURES;
1481 if (rxmode->hw_ip_checksum)
1482 req_features |= (1ULL << VIRTIO_NET_F_GUEST_CSUM);
1483 if (rxmode->enable_lro)
1485 (1ULL << VIRTIO_NET_F_GUEST_TSO4) |
1486 (1ULL << VIRTIO_NET_F_GUEST_TSO6);
1488 /* if request features changed, reinit the device */
1489 if (req_features != hw->req_guest_features) {
1490 ret = virtio_init_device(dev, req_features);
1495 if (rxmode->hw_ip_checksum &&
1496 !vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_CSUM)) {
1498 "rx ip checksum not available on this host");
1502 if (rxmode->enable_lro &&
1503 (!vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4) ||
1504 !vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4))) {
1506 "lro not available on this host");
1510 /* start control queue */
1511 if (vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VQ))
1512 virtio_dev_cq_start(dev);
1514 hw->vlan_strip = rxmode->hw_vlan_strip;
1516 if (rxmode->hw_vlan_filter
1517 && !vtpci_with_feature(hw, VIRTIO_NET_F_CTRL_VLAN)) {
1519 "vlan filtering not available on this host");
1523 if (dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)
1524 if (vtpci_irq_config(hw, 0) == VIRTIO_MSI_NO_VECTOR) {
1525 PMD_DRV_LOG(ERR, "failed to set config vector");
1534 virtio_dev_start(struct rte_eth_dev *dev)
1536 uint16_t nb_queues, i;
1537 struct virtnet_rx *rxvq;
1538 struct virtnet_tx *txvq __rte_unused;
1539 struct virtio_hw *hw = dev->data->dev_private;
1541 /* check if lsc interrupt feature is enabled */
1542 if (dev->data->dev_conf.intr_conf.lsc) {
1543 if (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC)) {
1544 PMD_DRV_LOG(ERR, "link status not supported by host");
1548 if (rte_intr_enable(dev->intr_handle) < 0) {
1549 PMD_DRV_LOG(ERR, "interrupt enable failed");
1554 /* Initialize Link state */
1555 virtio_dev_link_update(dev, 0);
1557 /*Notify the backend
1558 *Otherwise the tap backend might already stop its queue due to fullness.
1559 *vhost backend will have no chance to be waked up
1561 nb_queues = RTE_MAX(dev->data->nb_rx_queues, dev->data->nb_tx_queues);
1562 if (hw->max_queue_pairs > 1) {
1563 if (virtio_set_multiple_queues(dev, nb_queues) != 0)
1567 PMD_INIT_LOG(DEBUG, "nb_queues=%d", nb_queues);
1569 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1570 rxvq = dev->data->rx_queues[i];
1571 virtqueue_notify(rxvq->vq);
1574 PMD_INIT_LOG(DEBUG, "Notified backend at initialization");
1576 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1577 rxvq = dev->data->rx_queues[i];
1578 VIRTQUEUE_DUMP(rxvq->vq);
1581 for (i = 0; i < dev->data->nb_tx_queues; i++) {
1582 txvq = dev->data->tx_queues[i];
1583 VIRTQUEUE_DUMP(txvq->vq);
1589 static void virtio_dev_free_mbufs(struct rte_eth_dev *dev)
1591 struct rte_mbuf *buf;
1592 int i, mbuf_num = 0;
1594 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1595 struct virtnet_rx *rxvq = dev->data->rx_queues[i];
1598 "Before freeing rxq[%d] used and unused buf", i);
1599 VIRTQUEUE_DUMP(rxvq->vq);
1601 PMD_INIT_LOG(DEBUG, "rx_queues[%d]=%p", i, rxvq);
1602 while ((buf = virtqueue_detatch_unused(rxvq->vq)) != NULL) {
1603 rte_pktmbuf_free(buf);
1607 PMD_INIT_LOG(DEBUG, "free %d mbufs", mbuf_num);
1609 "After freeing rxq[%d] used and unused buf", i);
1610 VIRTQUEUE_DUMP(rxvq->vq);
1613 for (i = 0; i < dev->data->nb_tx_queues; i++) {
1614 struct virtnet_tx *txvq = dev->data->tx_queues[i];
1617 "Before freeing txq[%d] used and unused bufs",
1619 VIRTQUEUE_DUMP(txvq->vq);
1622 while ((buf = virtqueue_detatch_unused(txvq->vq)) != NULL) {
1623 rte_pktmbuf_free(buf);
1627 PMD_INIT_LOG(DEBUG, "free %d mbufs", mbuf_num);
1629 "After freeing txq[%d] used and unused buf", i);
1630 VIRTQUEUE_DUMP(txvq->vq);
1635 * Stop device: disable interrupt and mark link down
1638 virtio_dev_stop(struct rte_eth_dev *dev)
1640 struct rte_eth_link link;
1642 PMD_INIT_LOG(DEBUG, "stop");
1644 if (dev->data->dev_conf.intr_conf.lsc)
1645 rte_intr_disable(dev->intr_handle);
1647 memset(&link, 0, sizeof(link));
1648 virtio_dev_atomic_write_link_status(dev, &link);
1652 virtio_dev_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complete)
1654 struct rte_eth_link link, old;
1656 struct virtio_hw *hw = dev->data->dev_private;
1657 memset(&link, 0, sizeof(link));
1658 virtio_dev_atomic_read_link_status(dev, &link);
1660 link.link_duplex = ETH_LINK_FULL_DUPLEX;
1661 link.link_speed = SPEED_10G;
1663 if (vtpci_with_feature(hw, VIRTIO_NET_F_STATUS)) {
1664 PMD_INIT_LOG(DEBUG, "Get link status from hw");
1665 vtpci_read_dev_config(hw,
1666 offsetof(struct virtio_net_config, status),
1667 &status, sizeof(status));
1668 if ((status & VIRTIO_NET_S_LINK_UP) == 0) {
1669 link.link_status = ETH_LINK_DOWN;
1670 PMD_INIT_LOG(DEBUG, "Port %d is down",
1671 dev->data->port_id);
1673 link.link_status = ETH_LINK_UP;
1674 PMD_INIT_LOG(DEBUG, "Port %d is up",
1675 dev->data->port_id);
1678 link.link_status = ETH_LINK_UP;
1680 virtio_dev_atomic_write_link_status(dev, &link);
1682 return (old.link_status == link.link_status) ? -1 : 0;
1686 virtio_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
1689 struct virtio_hw *hw = dev->data->dev_private;
1691 dev_info->pci_dev = dev->device ? RTE_DEV_TO_PCI(dev->device) : NULL;
1692 dev_info->max_rx_queues =
1693 RTE_MIN(hw->max_queue_pairs, VIRTIO_MAX_RX_QUEUES);
1694 dev_info->max_tx_queues =
1695 RTE_MIN(hw->max_queue_pairs, VIRTIO_MAX_TX_QUEUES);
1696 dev_info->min_rx_bufsize = VIRTIO_MIN_RX_BUFSIZE;
1697 dev_info->max_rx_pktlen = VIRTIO_MAX_RX_PKTLEN;
1698 dev_info->max_mac_addrs = VIRTIO_MAX_MAC_ADDRS;
1699 dev_info->default_txconf = (struct rte_eth_txconf) {
1700 .txq_flags = ETH_TXQ_FLAGS_NOOFFLOADS
1702 dev_info->rx_offload_capa =
1703 DEV_RX_OFFLOAD_TCP_CKSUM |
1704 DEV_RX_OFFLOAD_UDP_CKSUM |
1705 DEV_RX_OFFLOAD_TCP_LRO;
1706 dev_info->tx_offload_capa = 0;
1708 if (hw->guest_features & (1ULL << VIRTIO_NET_F_CSUM)) {
1709 dev_info->tx_offload_capa |=
1710 DEV_TX_OFFLOAD_UDP_CKSUM |
1711 DEV_TX_OFFLOAD_TCP_CKSUM;
1714 tso_mask = (1ULL << VIRTIO_NET_F_HOST_TSO4) |
1715 (1ULL << VIRTIO_NET_F_HOST_TSO6);
1716 if ((hw->guest_features & tso_mask) == tso_mask)
1717 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_TCP_TSO;
1721 * It enables testpmd to collect per queue stats.
1724 virtio_dev_queue_stats_mapping_set(__rte_unused struct rte_eth_dev *eth_dev,
1725 __rte_unused uint16_t queue_id, __rte_unused uint8_t stat_idx,
1726 __rte_unused uint8_t is_rx)
1731 RTE_PMD_EXPORT_NAME(net_virtio, __COUNTER__);
1732 RTE_PMD_REGISTER_PCI_TABLE(net_virtio, pci_id_virtio_map);
1733 RTE_PMD_REGISTER_KMOD_DEP(net_virtio, "* igb_uio | uio_pci_generic | vfio");