net/virtio: report maximum MTU in device info
[dpdk.git] / drivers / net / virtio / virtio_ethdev.c
index 9e99e6a..a4adeec 100644 (file)
@@ -9,14 +9,11 @@
 #include <unistd.h>
 
 #include <ethdev_driver.h>
-#include <ethdev_pci.h>
 #include <rte_memcpy.h>
 #include <rte_string_fns.h>
 #include <rte_memzone.h>
 #include <rte_malloc.h>
 #include <rte_branch_prediction.h>
-#include <rte_pci.h>
-#include <rte_bus_pci.h>
 #include <rte_ether.h>
 #include <rte_ip.h>
 #include <rte_arp.h>
 #include <rte_errno.h>
 #include <rte_cpuflags.h>
 #include <rte_vect.h>
-
 #include <rte_memory.h>
+#include <rte_eal_paging.h>
 #include <rte_eal.h>
 #include <rte_dev.h>
 #include <rte_cycles.h>
 #include <rte_kvargs.h>
 
 #include "virtio_ethdev.h"
-#include "virtio_pci.h"
+#include "virtio.h"
 #include "virtio_logs.h"
 #include "virtqueue.h"
 #include "virtio_rxtx.h"
@@ -136,7 +133,7 @@ virtio_send_command_packed(struct virtnet_ctl *cvq,
                           struct virtio_pmd_ctrl *ctrl,
                           int *dlen, int pkt_num)
 {
-       struct virtqueue *vq = cvq->vq;
+       struct virtqueue *vq = virtnet_cq_to_vq(cvq);
        int head;
        struct vring_packed_desc *desc = vq->vq_packed.ring.desc;
        struct virtio_pmd_ctrl *result;
@@ -232,7 +229,7 @@ virtio_send_command_split(struct virtnet_ctl *cvq,
                          int *dlen, int pkt_num)
 {
        struct virtio_pmd_ctrl *result;
-       struct virtqueue *vq = cvq->vq;
+       struct virtqueue *vq = virtnet_cq_to_vq(cvq);
        uint32_t head, i;
        int k, sum = 0;
 
@@ -319,13 +316,13 @@ virtio_send_command(struct virtnet_ctl *cvq, struct virtio_pmd_ctrl *ctrl,
 
        ctrl->status = status;
 
-       if (!cvq || !cvq->vq) {
+       if (!cvq) {
                PMD_INIT_LOG(ERR, "Control queue is not supported.");
                return -1;
        }
 
        rte_spinlock_lock(&cvq->lock);
-       vq = cvq->vq;
+       vq = virtnet_cq_to_vq(cvq);
 
        PMD_INIT_LOG(DEBUG, "vq->vq_desc_head_idx = %d, status = %d, "
                "vq->hw->cvq = %p vq = %p",
@@ -407,12 +404,12 @@ virtio_init_vring(struct virtqueue *vq)
        memset(vq->vq_descx, 0, sizeof(struct vq_desc_extra) * vq->vq_nentries);
        if (virtio_with_packed_queue(vq->hw)) {
                vring_init_packed(&vq->vq_packed.ring, ring_mem,
-                                 VIRTIO_PCI_VRING_ALIGN, size);
+                                 VIRTIO_VRING_ALIGN, size);
                vring_desc_init_packed(vq, size);
        } else {
                struct vring *vr = &vq->vq_split.ring;
 
-               vring_init_split(vr, ring_mem, VIRTIO_PCI_VRING_ALIGN, size);
+               vring_init_split(vr, ring_mem, VIRTIO_VRING_ALIGN, size);
                vring_desc_init_split(vr->desc, size);
        }
        /*
@@ -422,7 +419,7 @@ virtio_init_vring(struct virtqueue *vq)
 }
 
 static int
-virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
+virtio_init_queue(struct rte_eth_dev *dev, uint16_t queue_idx)
 {
        char vq_name[VIRTQUEUE_MAX_NAME_SZ];
        char vq_hdr_name[VIRTQUEUE_MAX_NAME_SZ];
@@ -435,18 +432,19 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
        struct virtqueue *vq;
        size_t sz_hdr_mz = 0;
        void *sw_ring = NULL;
-       int queue_type = virtio_get_queue_type(hw, vtpci_queue_idx);
+       int queue_type = virtio_get_queue_type(hw, queue_idx);
        int ret;
        int numa_node = dev->device->numa_node;
+       struct rte_mbuf *fake_mbuf = NULL;
 
        PMD_INIT_LOG(INFO, "setting up queue: %u on NUMA node %d",
-                       vtpci_queue_idx, numa_node);
+                       queue_idx, numa_node);
 
        /*
         * Read the virtqueue size from the Queue Size field
         * Always power of 2 and if 0 virtqueue does not exist
         */
-       vq_size = VIRTIO_OPS(hw)->get_queue_num(hw, vtpci_queue_idx);
+       vq_size = VIRTIO_OPS(hw)->get_queue_num(hw, queue_idx);
        PMD_INIT_LOG(DEBUG, "vq_size: %u", vq_size);
        if (vq_size == 0) {
                PMD_INIT_LOG(ERR, "virtqueue does not exist");
@@ -459,7 +457,7 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
        }
 
        snprintf(vq_name, sizeof(vq_name), "port%d_vq%d",
-                dev->data->port_id, vtpci_queue_idx);
+                dev->data->port_id, queue_idx);
 
        size = RTE_ALIGN_CEIL(sizeof(*vq) +
                                vq_size * sizeof(struct vq_desc_extra),
@@ -472,7 +470,7 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
                sz_hdr_mz = vq_size * sizeof(struct virtio_tx_region);
        } else if (queue_type == VTNET_CQ) {
                /* Allocate a page for control vq command, data and status */
-               sz_hdr_mz = PAGE_SIZE;
+               sz_hdr_mz = rte_mem_page_size();
        }
 
        vq = rte_zmalloc_socket(vq_name, size, RTE_CACHE_LINE_SIZE,
@@ -481,10 +479,10 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
                PMD_INIT_LOG(ERR, "can not allocate vq");
                return -ENOMEM;
        }
-       hw->vqs[vtpci_queue_idx] = vq;
+       hw->vqs[queue_idx] = vq;
 
        vq->hw = hw;
-       vq->vq_queue_index = vtpci_queue_idx;
+       vq->vq_queue_index = queue_idx;
        vq->vq_nentries = vq_size;
        if (virtio_with_packed_queue(hw)) {
                vq->vq_packed.used_wrap_counter = 1;
@@ -497,20 +495,20 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
        /*
         * Reserve a memzone for vring elements
         */
-       size = vring_size(hw, vq_size, VIRTIO_PCI_VRING_ALIGN);
-       vq->vq_ring_size = RTE_ALIGN_CEIL(size, VIRTIO_PCI_VRING_ALIGN);
+       size = vring_size(hw, vq_size, VIRTIO_VRING_ALIGN);
+       vq->vq_ring_size = RTE_ALIGN_CEIL(size, VIRTIO_VRING_ALIGN);
        PMD_INIT_LOG(DEBUG, "vring_size: %d, rounded_vring_size: %d",
                     size, vq->vq_ring_size);
 
        mz = rte_memzone_reserve_aligned(vq_name, vq->vq_ring_size,
                        numa_node, RTE_MEMZONE_IOVA_CONTIG,
-                       VIRTIO_PCI_VRING_ALIGN);
+                       VIRTIO_VRING_ALIGN);
        if (mz == NULL) {
                if (rte_errno == EEXIST)
                        mz = rte_memzone_lookup(vq_name);
                if (mz == NULL) {
                        ret = -ENOMEM;
-                       goto fail_q_alloc;
+                       goto free_vq;
                }
        }
 
@@ -527,7 +525,7 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
 
        if (sz_hdr_mz) {
                snprintf(vq_hdr_name, sizeof(vq_hdr_name), "port%d_vq%d_hdr",
-                        dev->data->port_id, vtpci_queue_idx);
+                        dev->data->port_id, queue_idx);
                hdr_mz = rte_memzone_reserve_aligned(vq_hdr_name, sz_hdr_mz,
                                numa_node, RTE_MEMZONE_IOVA_CONTIG,
                                RTE_CACHE_LINE_SIZE);
@@ -536,7 +534,7 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
                                hdr_mz = rte_memzone_lookup(vq_hdr_name);
                        if (hdr_mz == NULL) {
                                ret = -ENOMEM;
-                               goto fail_q_alloc;
+                               goto free_mz;
                        }
                }
        }
@@ -550,28 +548,34 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
                if (!sw_ring) {
                        PMD_INIT_LOG(ERR, "can not allocate RX soft ring");
                        ret = -ENOMEM;
-                       goto fail_q_alloc;
+                       goto free_hdr_mz;
+               }
+
+               fake_mbuf = rte_zmalloc_socket("sw_ring", sizeof(*fake_mbuf),
+                               RTE_CACHE_LINE_SIZE, numa_node);
+               if (!fake_mbuf) {
+                       PMD_INIT_LOG(ERR, "can not allocate fake mbuf");
+                       ret = -ENOMEM;
+                       goto free_sw_ring;
                }
 
                vq->sw_ring = sw_ring;
                rxvq = &vq->rxq;
-               rxvq->vq = vq;
                rxvq->port_id = dev->data->port_id;
                rxvq->mz = mz;
+               rxvq->fake_mbuf = fake_mbuf;
        } else if (queue_type == VTNET_TQ) {
                txvq = &vq->txq;
-               txvq->vq = vq;
                txvq->port_id = dev->data->port_id;
                txvq->mz = mz;
                txvq->virtio_net_hdr_mz = hdr_mz;
                txvq->virtio_net_hdr_mem = hdr_mz->iova;
        } else if (queue_type == VTNET_CQ) {
                cvq = &vq->cq;
-               cvq->vq = vq;
                cvq->mz = mz;
                cvq->virtio_net_hdr_mz = hdr_mz;
                cvq->virtio_net_hdr_mem = hdr_mz->iova;
-               memset(cvq->virtio_net_hdr_mz->addr, 0, PAGE_SIZE);
+               memset(cvq->virtio_net_hdr_mz->addr, 0, rte_mem_page_size());
 
                hw->cvq = cvq;
        }
@@ -610,15 +614,22 @@ virtio_init_queue(struct rte_eth_dev *dev, uint16_t vtpci_queue_idx)
 
        if (VIRTIO_OPS(hw)->setup_queue(hw, vq) < 0) {
                PMD_INIT_LOG(ERR, "setup_queue failed");
-               return -EINVAL;
+               ret = -EINVAL;
+               goto clean_vq;
        }
 
        return 0;
 
-fail_q_alloc:
+clean_vq:
+       hw->cvq = NULL;
+       rte_free(fake_mbuf);
+free_sw_ring:
        rte_free(sw_ring);
+free_hdr_mz:
        rte_memzone_free(hdr_mz);
+free_mz:
        rte_memzone_free(mz);
+free_vq:
        rte_free(vq);
 
        return ret;
@@ -642,6 +653,7 @@ virtio_free_queues(struct virtio_hw *hw)
 
                queue_type = virtio_get_queue_type(hw, i);
                if (queue_type == VTNET_RQ) {
+                       rte_free(vq->rxq.fake_mbuf);
                        rte_free(vq->sw_ring);
                        rte_memzone_free(vq->rxq.mz);
                } else if (queue_type == VTNET_TQ) {
@@ -829,6 +841,56 @@ virtio_dev_allmulticast_disable(struct rte_eth_dev *dev)
        return 0;
 }
 
+uint16_t
+virtio_rx_mem_pool_buf_size(struct rte_mempool *mp)
+{
+       return rte_pktmbuf_data_room_size(mp) - RTE_PKTMBUF_HEADROOM;
+}
+
+bool
+virtio_rx_check_scatter(uint16_t max_rx_pkt_len, uint16_t rx_buf_size,
+                       bool rx_scatter_enabled, const char **error)
+{
+       if (!rx_scatter_enabled && max_rx_pkt_len > rx_buf_size) {
+               *error = "Rx scatter is disabled and RxQ mbuf pool object size is too small";
+               return false;
+       }
+
+       return true;
+}
+
+static bool
+virtio_check_scatter_on_all_rx_queues(struct rte_eth_dev *dev,
+                                     uint16_t frame_size)
+{
+       struct virtio_hw *hw = dev->data->dev_private;
+       struct virtnet_rx *rxvq;
+       struct virtqueue *vq;
+       unsigned int qidx;
+       uint16_t buf_size;
+       const char *error;
+
+       if (hw->vqs == NULL)
+               return true;
+
+       for (qidx = 0; (vq = hw->vqs[2 * qidx + VTNET_SQ_RQ_QUEUE_IDX]) != NULL;
+            qidx++) {
+               rxvq = &vq->rxq;
+               if (rxvq->mpool == NULL)
+                       continue;
+               buf_size = virtio_rx_mem_pool_buf_size(rxvq->mpool);
+
+               if (!virtio_rx_check_scatter(frame_size, buf_size,
+                                            hw->rx_ol_scatter, &error)) {
+                       PMD_INIT_LOG(ERR, "MTU check for RxQ %u failed: %s",
+                                    qidx, error);
+                       return false;
+               }
+       }
+
+       return true;
+}
+
 #define VLAN_TAG_LEN           4    /* 802.3ac tag (not DMA'd) */
 static int
 virtio_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
@@ -846,6 +908,15 @@ virtio_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
                        RTE_ETHER_MIN_MTU, max_frame_size - ether_hdr_len);
                return -EINVAL;
        }
+
+       if (!virtio_check_scatter_on_all_rx_queues(dev, frame_size)) {
+               PMD_INIT_LOG(ERR, "MTU vs Rx scatter and Rx buffers check failed");
+               return -EINVAL;
+       }
+
+       hw->max_rx_pkt_len = frame_size;
+       dev->data->dev_conf.rxmode.max_rx_pkt_len = hw->max_rx_pkt_len;
+
        return 0;
 }
 
@@ -854,7 +925,7 @@ virtio_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
 {
        struct virtio_hw *hw = dev->data->dev_private;
        struct virtnet_rx *rxvq = dev->data->rx_queues[queue_id];
-       struct virtqueue *vq = rxvq->vq;
+       struct virtqueue *vq = virtnet_rxq_to_vq(rxvq);
 
        virtqueue_enable_intr(vq);
        virtio_mb(hw->weak_barriers);
@@ -865,7 +936,7 @@ static int
 virtio_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
 {
        struct virtnet_rx *rxvq = dev->data->rx_queues[queue_id];
-       struct virtqueue *vq = rxvq->vq;
+       struct virtqueue *vq = virtnet_rxq_to_vq(rxvq);
 
        virtqueue_disable_intr(vq);
        return 0;
@@ -1455,13 +1526,13 @@ virtio_interrupt_handler(void *param)
        uint16_t status;
 
        /* Read interrupt status which clears interrupt */
-       isr = vtpci_isr(hw);
+       isr = virtio_get_isr(hw);
        PMD_DRV_LOG(INFO, "interrupt status = %#x", isr);
 
        if (virtio_intr_unmask(dev) < 0)
                PMD_DRV_LOG(ERR, "interrupt enable failed");
 
-       if (isr & VIRTIO_PCI_ISR_CONFIG) {
+       if (isr & VIRTIO_ISR_CONFIG) {
                if (virtio_dev_link_update(dev, 0) == 0)
                        rte_eth_dev_callback_process(dev,
                                                     RTE_ETH_EVENT_INTR_LSC,
@@ -1668,8 +1739,7 @@ virtio_init_device(struct rte_eth_dev *eth_dev, uint64_t req_features)
        hw->weak_barriers = !virtio_with_feature(hw, VIRTIO_F_ORDER_PLATFORM);
 
        /* If host does not support both status and MSI-X then disable LSC */
-       if (virtio_with_feature(hw, VIRTIO_NET_F_STATUS) &&
-           hw->use_msix != VIRTIO_MSIX_NONE)
+       if (virtio_with_feature(hw, VIRTIO_NET_F_STATUS) && hw->intr_lsc)
                eth_dev->data->dev_flags |= RTE_ETH_DEV_INTR_LSC;
        else
                eth_dev->data->dev_flags &= ~RTE_ETH_DEV_INTR_LSC;
@@ -1842,7 +1912,6 @@ eth_virtio_dev_init(struct rte_eth_dev *eth_dev)
                return -ENOMEM;
        }
 
-       hw->port_id = eth_dev->data->port_id;
        rte_spinlock_init(&hw->state_lock);
 
        /* reset device and negotiate default features */
@@ -2032,6 +2101,8 @@ virtio_dev_configure(struct rte_eth_dev *dev)
        if (rxmode->max_rx_pkt_len > hw->max_mtu + ether_hdr_len)
                req_features &= ~(1ULL << VIRTIO_NET_F_MTU);
 
+       hw->max_rx_pkt_len = rxmode->max_rx_pkt_len;
+
        if (rx_offloads & (DEV_RX_OFFLOAD_UDP_CKSUM |
                           DEV_RX_OFFLOAD_TCP_CKSUM))
                req_features |= (1ULL << VIRTIO_NET_F_GUEST_CSUM);
@@ -2080,6 +2151,8 @@ virtio_dev_configure(struct rte_eth_dev *dev)
        if (rx_offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
                hw->vlan_strip = 1;
 
+       hw->rx_ol_scatter = (rx_offloads & DEV_RX_OFFLOAD_SCATTER);
+
        if ((rx_offloads & DEV_RX_OFFLOAD_VLAN_FILTER) &&
                        !virtio_with_feature(hw, VIRTIO_NET_F_CTRL_VLAN)) {
                PMD_DRV_LOG(ERR,
@@ -2185,8 +2258,7 @@ static int
 virtio_dev_start(struct rte_eth_dev *dev)
 {
        uint16_t nb_queues, i;
-       struct virtnet_rx *rxvq;
-       struct virtnet_tx *txvq __rte_unused;
+       struct virtqueue *vq;
        struct virtio_hw *hw = dev->data->dev_private;
        int ret;
 
@@ -2243,27 +2315,27 @@ virtio_dev_start(struct rte_eth_dev *dev)
        PMD_INIT_LOG(DEBUG, "nb_queues=%d", nb_queues);
 
        for (i = 0; i < dev->data->nb_rx_queues; i++) {
-               rxvq = dev->data->rx_queues[i];
+               vq = virtnet_rxq_to_vq(dev->data->rx_queues[i]);
                /* Flush the old packets */
-               virtqueue_rxvq_flush(rxvq->vq);
-               virtqueue_notify(rxvq->vq);
+               virtqueue_rxvq_flush(vq);
+               virtqueue_notify(vq);
        }
 
        for (i = 0; i < dev->data->nb_tx_queues; i++) {
-               txvq = dev->data->tx_queues[i];
-               virtqueue_notify(txvq->vq);
+               vq = virtnet_txq_to_vq(dev->data->tx_queues[i]);
+               virtqueue_notify(vq);
        }
 
        PMD_INIT_LOG(DEBUG, "Notified backend at initialization");
 
        for (i = 0; i < dev->data->nb_rx_queues; i++) {
-               rxvq = dev->data->rx_queues[i];
-               VIRTQUEUE_DUMP(rxvq->vq);
+               vq = virtnet_rxq_to_vq(dev->data->rx_queues[i]);
+               VIRTQUEUE_DUMP(vq);
        }
 
        for (i = 0; i < dev->data->nb_tx_queues; i++) {
-               txvq = dev->data->tx_queues[i];
-               VIRTQUEUE_DUMP(txvq->vq);
+               vq = virtnet_txq_to_vq(dev->data->tx_queues[i]);
+               VIRTQUEUE_DUMP(vq);
        }
 
        set_rxtx_funcs(dev);
@@ -2432,10 +2504,13 @@ virtio_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
        dev_info->min_rx_bufsize = VIRTIO_MIN_RX_BUFSIZE;
        dev_info->max_rx_pktlen = VIRTIO_MAX_RX_PKTLEN;
        dev_info->max_mac_addrs = VIRTIO_MAX_MAC_ADDRS;
+       dev_info->max_mtu = hw->max_mtu;
 
        host_features = VIRTIO_OPS(hw)->get_features(hw);
        dev_info->rx_offload_capa = DEV_RX_OFFLOAD_VLAN_STRIP;
        dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_JUMBO_FRAME;
+       if (host_features & (1ULL << VIRTIO_NET_F_MRG_RXBUF))
+               dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_SCATTER;
        if (host_features & (1ULL << VIRTIO_NET_F_GUEST_CSUM)) {
                dev_info->rx_offload_capa |=
                        DEV_RX_OFFLOAD_TCP_CKSUM |
@@ -2474,5 +2549,5 @@ __rte_unused uint8_t is_rx)
        return 0;
 }
 
-RTE_LOG_REGISTER(virtio_logtype_init, pmd.net.virtio.init, NOTICE);
-RTE_LOG_REGISTER(virtio_logtype_driver, pmd.net.virtio.driver, NOTICE);
+RTE_LOG_REGISTER_SUFFIX(virtio_logtype_init, init, NOTICE);
+RTE_LOG_REGISTER_SUFFIX(virtio_logtype_driver, driver, NOTICE);