net/mvneta: support promiscuous mode
authorZyta Szpak <zr@semihalf.com>
Wed, 3 Oct 2018 07:22:13 +0000 (09:22 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 11 Oct 2018 16:53:48 +0000 (18:53 +0200)
Add callbacks for enabling/disabling of promiscuous mode.

Signed-off-by: Yelena Krivosheev <yelena@marvell.com>
Signed-off-by: Zyta Szpak <zr@semihalf.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
doc/guides/nics/features/mvneta.ini
doc/guides/nics/mvneta.rst
drivers/net/mvneta/mvneta_ethdev.c

index 581ed31..6a140a3 100644 (file)
@@ -8,6 +8,7 @@ Speed capabilities   = Y
 Link status          = Y
 MTU update           = Y
 Jumbo frame          = Y
+Promiscuous mode     = Y
 CRC offload          = Y
 L3 checksum offload  = Y
 L4 checksum offload  = Y
index fdea3da..ccd19f2 100644 (file)
@@ -31,6 +31,7 @@ Features of the MVNETA PMD are:
 - Speed capabilities
 - Jumbo frame
 - MTU update
+- Promiscuous mode
 - Link status
 - CRC offload
 - L3 checksum offload
index 052e97f..a3dbe56 100644 (file)
@@ -521,6 +521,58 @@ mvneta_link_update(struct rte_eth_dev *dev, int wait_to_complete __rte_unused)
        return 0;
 }
 
+/**
+ * DPDK callback to enable promiscuous mode.
+ *
+ * @param dev
+ *   Pointer to Ethernet device structure.
+ */
+static void
+mvneta_promiscuous_enable(struct rte_eth_dev *dev)
+{
+       struct mvneta_priv *priv = dev->data->dev_private;
+       int ret, en;
+
+       if (!priv->ppio)
+               return;
+
+       neta_ppio_get_promisc(priv->ppio, &en);
+       if (en) {
+               MVNETA_LOG(INFO, "Promiscuous already enabled");
+               return;
+       }
+
+       ret = neta_ppio_set_promisc(priv->ppio, 1);
+       if (ret)
+               MVNETA_LOG(ERR, "Failed to enable promiscuous mode");
+}
+
+/**
+ * DPDK callback to disable allmulticast mode.
+ *
+ * @param dev
+ *   Pointer to Ethernet device structure.
+ */
+static void
+mvneta_promiscuous_disable(struct rte_eth_dev *dev)
+{
+       struct mvneta_priv *priv = dev->data->dev_private;
+       int ret, en;
+
+       if (!priv->ppio)
+               return;
+
+       neta_ppio_get_promisc(priv->ppio, &en);
+       if (!en) {
+               MVNETA_LOG(INFO, "Promiscuous already disabled");
+               return;
+       }
+
+       ret = neta_ppio_set_promisc(priv->ppio, 0);
+       if (ret)
+               MVNETA_LOG(ERR, "Failed to disable promiscuous mode");
+}
+
 /**
  * DPDK callback to set the primary MAC address.
  *
@@ -555,6 +607,8 @@ static const struct eth_dev_ops mvneta_ops = {
        .dev_set_link_down = mvneta_dev_set_link_down,
        .dev_close = mvneta_dev_close,
        .link_update = mvneta_link_update,
+       .promiscuous_enable = mvneta_promiscuous_enable,
+       .promiscuous_disable = mvneta_promiscuous_disable,
        .mac_addr_set = mvneta_mac_addr_set,
        .mtu_set = mvneta_mtu_set,
        .dev_infos_get = mvneta_dev_infos_get,