net/octeontx2: add promiscuous and allmulticast mode
authorVamsi Attunuru <vattunuru@marvell.com>
Wed, 29 May 2019 10:27:54 +0000 (15:57 +0530)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 4 Jul 2019 23:52:01 +0000 (01:52 +0200)
Add promiscuous and allmulticast mode for PF devices and
update the respective feature list.

Signed-off-by: Vamsi Attunuru <vattunuru@marvell.com>
Signed-off-by: Sunil Kumar Kori <skori@marvell.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
doc/guides/nics/features/octeontx2.ini
doc/guides/nics/features/octeontx2_vec.ini
doc/guides/nics/octeontx2.rst
drivers/net/octeontx2/otx2_ethdev.c
drivers/net/octeontx2/otx2_ethdev.h
drivers/net/octeontx2/otx2_ethdev_ops.c

index 8d7c358..9f68260 100644 (file)
@@ -10,6 +10,8 @@ SR-IOV               = Y
 Multiprocess aware   = Y
 Link status          = Y
 Link status event    = Y
+Promiscuous mode     = Y
+Allmulticast mode    = Y
 Basic stats          = Y
 Stats per queue      = Y
 Extended stats       = Y
index a6e6876..764e95c 100644 (file)
@@ -10,6 +10,8 @@ SR-IOV               = Y
 Multiprocess aware   = Y
 Link status          = Y
 Link status event    = Y
+Promiscuous mode     = Y
+Allmulticast mode    = Y
 Basic stats          = Y
 Extended stats       = Y
 Stats per queue      = Y
index 2944bbb..9ef7be0 100644 (file)
@@ -16,6 +16,7 @@ Features
 
 Features of the OCTEON TX2 Ethdev PMD are:
 
+- Promiscuous mode
 - SR-IOV VF
 - Lock-free Tx queue
 - Port hardware statistics
index 937ba63..826ce7f 100644 (file)
@@ -237,6 +237,10 @@ static const struct eth_dev_ops otx2_eth_dev_ops = {
        .stats_get                = otx2_nix_dev_stats_get,
        .stats_reset              = otx2_nix_dev_stats_reset,
        .get_reg                  = otx2_nix_dev_get_reg,
+       .promiscuous_enable       = otx2_nix_promisc_enable,
+       .promiscuous_disable      = otx2_nix_promisc_disable,
+       .allmulticast_enable      = otx2_nix_allmulticast_enable,
+       .allmulticast_disable     = otx2_nix_allmulticast_disable,
        .queue_stats_mapping_set  = otx2_nix_queue_stats_mapping,
        .xstats_get               = otx2_nix_xstats_get,
        .xstats_get_names         = otx2_nix_xstats_get_names,
index 7d53a66..814fd6e 100644 (file)
@@ -178,6 +178,12 @@ otx2_eth_pmd_priv(struct rte_eth_dev *eth_dev)
 void otx2_nix_info_get(struct rte_eth_dev *eth_dev,
                       struct rte_eth_dev_info *dev_info);
 
+void otx2_nix_promisc_config(struct rte_eth_dev *eth_dev, int en);
+void otx2_nix_promisc_enable(struct rte_eth_dev *eth_dev);
+void otx2_nix_promisc_disable(struct rte_eth_dev *eth_dev);
+void otx2_nix_allmulticast_enable(struct rte_eth_dev *eth_dev);
+void otx2_nix_allmulticast_disable(struct rte_eth_dev *eth_dev);
+
 /* Link */
 void otx2_nix_toggle_flag_link_cfg(struct otx2_eth_dev *dev, bool set);
 int otx2_nix_link_update(struct rte_eth_dev *eth_dev, int wait_to_complete);
index df7e909..301a597 100644 (file)
@@ -4,6 +4,88 @@
 
 #include "otx2_ethdev.h"
 
+static void
+nix_cgx_promisc_config(struct rte_eth_dev *eth_dev, int en)
+{
+       struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
+       struct otx2_mbox *mbox = dev->mbox;
+
+       if (otx2_dev_is_vf(dev))
+               return;
+
+       if (en)
+               otx2_mbox_alloc_msg_cgx_promisc_enable(mbox);
+       else
+               otx2_mbox_alloc_msg_cgx_promisc_disable(mbox);
+
+       otx2_mbox_process(mbox);
+}
+
+void
+otx2_nix_promisc_config(struct rte_eth_dev *eth_dev, int en)
+{
+       struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
+       struct otx2_mbox *mbox = dev->mbox;
+       struct nix_rx_mode *req;
+
+       if (otx2_dev_is_vf(dev))
+               return;
+
+       req = otx2_mbox_alloc_msg_nix_set_rx_mode(mbox);
+
+       if (en)
+               req->mode = NIX_RX_MODE_UCAST | NIX_RX_MODE_PROMISC;
+
+       otx2_mbox_process(mbox);
+       eth_dev->data->promiscuous = en;
+}
+
+void
+otx2_nix_promisc_enable(struct rte_eth_dev *eth_dev)
+{
+       otx2_nix_promisc_config(eth_dev, 1);
+       nix_cgx_promisc_config(eth_dev, 1);
+}
+
+void
+otx2_nix_promisc_disable(struct rte_eth_dev *eth_dev)
+{
+       otx2_nix_promisc_config(eth_dev, 0);
+       nix_cgx_promisc_config(eth_dev, 0);
+}
+
+static void
+nix_allmulticast_config(struct rte_eth_dev *eth_dev, int en)
+{
+       struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
+       struct otx2_mbox *mbox = dev->mbox;
+       struct nix_rx_mode *req;
+
+       if (otx2_dev_is_vf(dev))
+               return;
+
+       req = otx2_mbox_alloc_msg_nix_set_rx_mode(mbox);
+
+       if (en)
+               req->mode = NIX_RX_MODE_UCAST | NIX_RX_MODE_ALLMULTI;
+       else if (eth_dev->data->promiscuous)
+               req->mode = NIX_RX_MODE_UCAST | NIX_RX_MODE_PROMISC;
+
+       otx2_mbox_process(mbox);
+}
+
+void
+otx2_nix_allmulticast_enable(struct rte_eth_dev *eth_dev)
+{
+       nix_allmulticast_config(eth_dev, 1);
+}
+
+void
+otx2_nix_allmulticast_disable(struct rte_eth_dev *eth_dev)
+{
+       nix_allmulticast_config(eth_dev, 0);
+}
+
 void
 otx2_nix_info_get(struct rte_eth_dev *eth_dev, struct rte_eth_dev_info *devinfo)
 {