LCOV - code coverage report
Current view: top level - drivers/net/cnxk - cnxk_ethdev.c (source / functions) Hit Total Coverage
Test: Code coverage Lines: 0 1018 0.0 %
Date: 2025-04-03 19:37:06 Functions: 0 41 0.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 588 0.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: BSD-3-Clause
       2                 :            :  * Copyright(C) 2021 Marvell.
       3                 :            :  */
       4                 :            : #include <cnxk_ethdev.h>
       5                 :            : 
       6                 :            : #include <rte_eventdev.h>
       7                 :            : #include <rte_pmd_cnxk.h>
       8                 :            : 
       9                 :            : cnxk_ethdev_rx_offload_cb_t cnxk_ethdev_rx_offload_cb;
      10                 :            : 
      11                 :            : #define CNXK_NIX_CQ_INL_CLAMP_MAX (64UL * 1024UL)
      12                 :            : 
      13                 :            : #define NIX_TM_DFLT_RR_WT 71
      14                 :            : 
      15                 :            : const char *
      16                 :          0 : rte_pmd_cnxk_model_str_get(void)
      17                 :            : {
      18                 :          0 :         return roc_model->name;
      19                 :            : }
      20                 :            : 
      21                 :            : static inline uint64_t
      22                 :            : nix_get_rx_offload_capa(struct cnxk_eth_dev *dev)
      23                 :            : {
      24                 :            :         uint64_t capa = CNXK_NIX_RX_OFFLOAD_CAPA;
      25                 :            : 
      26         [ #  # ]:          0 :         if (roc_nix_is_vf_or_sdp(&dev->nix) ||
      27         [ #  # ]:          0 :             dev->npc.switch_header_type == ROC_PRIV_FLAGS_HIGIG)
      28                 :            :                 capa &= ~RTE_ETH_RX_OFFLOAD_TIMESTAMP;
      29                 :            : 
      30                 :            :         return capa;
      31                 :            : }
      32                 :            : 
      33                 :            : static inline uint64_t
      34                 :            : nix_get_tx_offload_capa(struct cnxk_eth_dev *dev)
      35                 :            : {
      36                 :            :         RTE_SET_USED(dev);
      37                 :            :         return CNXK_NIX_TX_OFFLOAD_CAPA;
      38                 :            : }
      39                 :            : 
      40                 :            : static inline uint32_t
      41                 :          0 : nix_get_speed_capa(struct cnxk_eth_dev *dev)
      42                 :            : {
      43                 :            :         uint32_t speed_capa;
      44                 :            : 
      45                 :            :         /* Auto negotiation disabled */
      46                 :            :         speed_capa = RTE_ETH_LINK_SPEED_FIXED;
      47   [ #  #  #  # ]:          0 :         if (!roc_nix_is_vf_or_sdp(&dev->nix) && !roc_nix_is_lbk(&dev->nix)) {
      48                 :            :                 speed_capa |= RTE_ETH_LINK_SPEED_1G | RTE_ETH_LINK_SPEED_10G |
      49                 :            :                               RTE_ETH_LINK_SPEED_25G | RTE_ETH_LINK_SPEED_40G |
      50                 :            :                               RTE_ETH_LINK_SPEED_50G | RTE_ETH_LINK_SPEED_100G;
      51                 :            :         }
      52                 :            : 
      53                 :          0 :         return speed_capa;
      54                 :            : }
      55                 :            : 
      56                 :            : static uint32_t
      57         [ #  # ]:          0 : nix_inl_cq_sz_clamp_up(struct roc_nix *nix, struct rte_mempool *mp,
      58                 :            :                        uint32_t nb_desc)
      59                 :            : {
      60                 :            :         struct roc_nix_rq *inl_rq;
      61                 :            :         uint64_t limit;
      62                 :            : 
      63                 :            :         /* For CN10KB and above, LBP needs minimum CQ size */
      64         [ #  # ]:          0 :         if (!roc_errata_cpt_hang_on_x2p_bp())
      65                 :          0 :                 return RTE_MAX(nb_desc, (uint32_t)4096);
      66                 :            : 
      67                 :            :         /* CQ should be able to hold all buffers in first pass RQ's aura
      68                 :            :          * this RQ's aura.
      69                 :            :          */
      70                 :          0 :         inl_rq = roc_nix_inl_dev_rq(nix);
      71                 :            :         if (!inl_rq) {
      72                 :            :                 /* This itself is going to be inline RQ's aura */
      73                 :            :                 limit = roc_npa_aura_op_limit_get(mp->pool_id);
      74                 :            :         } else {
      75                 :            :                 limit = roc_npa_aura_op_limit_get(inl_rq->aura_handle);
      76                 :            :                 /* Also add this RQ's aura if it is different */
      77                 :            :                 if (inl_rq->aura_handle != mp->pool_id)
      78                 :            :                         limit += roc_npa_aura_op_limit_get(mp->pool_id);
      79                 :            :         }
      80                 :          0 :         nb_desc = PLT_MAX(limit + 1, nb_desc);
      81         [ #  # ]:          0 :         if (nb_desc > CNXK_NIX_CQ_INL_CLAMP_MAX) {
      82                 :          0 :                 plt_warn("Could not setup CQ size to accommodate"
      83                 :            :                          " all buffers in related auras (%" PRIu64 ")",
      84                 :            :                          limit);
      85                 :            :                 nb_desc = CNXK_NIX_CQ_INL_CLAMP_MAX;
      86                 :            :         }
      87                 :            :         return nb_desc;
      88                 :            : }
      89                 :            : 
      90                 :            : void
      91                 :          0 : cnxk_ethdev_rx_offload_cb_register(cnxk_ethdev_rx_offload_cb_t cb)
      92                 :            : {
      93                 :          0 :         cnxk_ethdev_rx_offload_cb = cb;
      94                 :          0 : }
      95                 :            : 
      96                 :            : int
      97                 :          0 : cnxk_nix_inb_mode_set(struct cnxk_eth_dev *dev, bool use_inl_dev)
      98                 :            : {
      99                 :          0 :         struct roc_nix *nix = &dev->nix;
     100                 :            : 
     101                 :          0 :         plt_nix_dbg("Security sessions(%u) still active, inl=%u!!!",
     102                 :            :                     dev->inb.nb_sess, !!dev->inb.inl_dev);
     103                 :            : 
     104                 :            :         /* Change the mode */
     105                 :          0 :         dev->inb.inl_dev = use_inl_dev;
     106                 :            : 
     107                 :            :         /* Update RoC for NPC rule insertion */
     108                 :          0 :         roc_nix_inb_mode_set(nix, use_inl_dev);
     109                 :            : 
     110                 :            :         /* Setup lookup mem */
     111                 :          0 :         return cnxk_nix_lookup_mem_sa_base_set(dev);
     112                 :            : }
     113                 :            : 
     114                 :            : static int
     115                 :          0 : nix_security_setup(struct cnxk_eth_dev *dev)
     116                 :            : {
     117                 :          0 :         struct roc_nix *nix = &dev->nix;
     118                 :            :         int i, rc = 0;
     119                 :            : 
     120         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
     121                 :            :                 /* Setup minimum SA table when inline device is used */
     122         [ #  # ]:          0 :                 nix->ipsec_in_min_spi = dev->inb.no_inl_dev ? dev->inb.min_spi : 0;
     123         [ #  # ]:          0 :                 nix->ipsec_in_max_spi = dev->inb.no_inl_dev ? dev->inb.max_spi : 1;
     124                 :            : 
     125                 :            :                 /* Enable custom meta aura when multi-chan is used */
     126   [ #  #  #  # ]:          0 :                 if (nix->local_meta_aura_ena && roc_nix_inl_dev_is_multi_channel() &&
     127         [ #  # ]:          0 :                     !dev->inb.custom_meta_aura_dis)
     128                 :          0 :                         nix->custom_meta_aura_ena = true;
     129                 :            : 
     130                 :            :                 /* Setup Inline Inbound */
     131                 :          0 :                 rc = roc_nix_inl_inb_init(nix);
     132         [ #  # ]:          0 :                 if (rc) {
     133                 :          0 :                         plt_err("Failed to initialize nix inline inb, rc=%d",
     134                 :            :                                 rc);
     135                 :          0 :                         return rc;
     136                 :            :                 }
     137                 :            : 
     138                 :            :                 /* By default pick using inline device for poll mode.
     139                 :            :                  * Will be overridden when event mode rq's are setup.
     140                 :            :                  */
     141                 :          0 :                 cnxk_nix_inb_mode_set(dev, !dev->inb.no_inl_dev);
     142                 :            : 
     143                 :            :                 /* Allocate memory to be used as dptr for CPT ucode
     144                 :            :                  * WRITE_SA op.
     145                 :            :                  */
     146                 :          0 :                 dev->inb.sa_dptr =
     147                 :          0 :                         plt_zmalloc(ROC_NIX_INL_OT_IPSEC_INB_HW_SZ, 0);
     148         [ #  # ]:          0 :                 if (!dev->inb.sa_dptr) {
     149                 :          0 :                         plt_err("Couldn't allocate memory for SA dptr");
     150                 :            :                         rc = -ENOMEM;
     151                 :          0 :                         goto cleanup;
     152                 :            :                 }
     153                 :          0 :                 dev->inb.inl_dev_q = roc_nix_inl_dev_qptr_get(0);
     154                 :            :         }
     155                 :            : 
     156         [ #  # ]:          0 :         if (dev->tx_offloads & RTE_ETH_TX_OFFLOAD_SECURITY ||
     157         [ #  # ]:          0 :             dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
     158                 :            :                 struct plt_bitmap *bmap;
     159                 :            :                 size_t bmap_sz;
     160                 :            :                 void *mem;
     161                 :            : 
     162                 :            :                 /* Setup enough descriptors for all tx queues */
     163                 :          0 :                 nix->outb_nb_desc = dev->outb.nb_desc;
     164                 :          0 :                 nix->outb_nb_crypto_qs = dev->outb.nb_crypto_qs;
     165                 :            : 
     166                 :            :                 /* Setup Inline Outbound */
     167                 :          0 :                 rc = roc_nix_inl_outb_init(nix);
     168         [ #  # ]:          0 :                 if (rc) {
     169                 :          0 :                         plt_err("Failed to initialize nix inline outb, rc=%d",
     170                 :            :                                 rc);
     171                 :          0 :                         goto sa_dptr_free;
     172                 :            :                 }
     173                 :            : 
     174                 :          0 :                 dev->outb.lf_base = roc_nix_inl_outb_lf_base_get(nix);
     175                 :            : 
     176                 :            :                 /* Skip the rest if DEV_TX_OFFLOAD_SECURITY is not enabled */
     177         [ #  # ]:          0 :                 if (!(dev->tx_offloads & RTE_ETH_TX_OFFLOAD_SECURITY))
     178                 :            :                         return 0;
     179                 :            : 
     180                 :            :                 /* Allocate memory to be used as dptr for CPT ucode
     181                 :            :                  * WRITE_SA op.
     182                 :            :                  */
     183                 :          0 :                 dev->outb.sa_dptr =
     184                 :          0 :                         plt_zmalloc(ROC_NIX_INL_OT_IPSEC_OUTB_HW_SZ, 0);
     185         [ #  # ]:          0 :                 if (!dev->outb.sa_dptr) {
     186                 :          0 :                         plt_err("Couldn't allocate memory for SA dptr");
     187                 :            :                         rc = -ENOMEM;
     188                 :          0 :                         goto sa_dptr_free;
     189                 :            :                 }
     190                 :            : 
     191                 :            :                 rc = -ENOMEM;
     192                 :            :                 /* Allocate a bitmap to alloc and free sa indexes */
     193                 :          0 :                 bmap_sz = plt_bitmap_get_memory_footprint(dev->outb.max_sa);
     194                 :          0 :                 mem = plt_zmalloc(bmap_sz, PLT_CACHE_LINE_SIZE);
     195         [ #  # ]:          0 :                 if (mem == NULL) {
     196                 :          0 :                         plt_err("Outbound SA bmap alloc failed");
     197                 :            : 
     198                 :          0 :                         rc |= roc_nix_inl_outb_fini(nix);
     199                 :          0 :                         goto sa_dptr_free;
     200                 :            :                 }
     201                 :            : 
     202                 :            :                 rc = -EIO;
     203                 :          0 :                 bmap = plt_bitmap_init(dev->outb.max_sa, mem, bmap_sz);
     204         [ #  # ]:          0 :                 if (!bmap) {
     205                 :          0 :                         plt_err("Outbound SA bmap init failed");
     206                 :            : 
     207                 :          0 :                         rc |= roc_nix_inl_outb_fini(nix);
     208                 :          0 :                         plt_free(mem);
     209                 :          0 :                         goto sa_dptr_free;
     210                 :            :                 }
     211                 :            : 
     212         [ #  # ]:          0 :                 for (i = 0; i < dev->outb.max_sa; i++)
     213                 :          0 :                         plt_bitmap_set(bmap, i);
     214                 :            : 
     215                 :          0 :                 dev->outb.sa_base = roc_nix_inl_outb_sa_base_get(nix);
     216                 :          0 :                 dev->outb.sa_bmap_mem = mem;
     217                 :          0 :                 dev->outb.sa_bmap = bmap;
     218                 :            : 
     219                 :          0 :                 dev->outb.fc_sw_mem = plt_zmalloc(dev->outb.nb_crypto_qs *
     220                 :            :                                                           RTE_CACHE_LINE_SIZE,
     221                 :            :                                                   RTE_CACHE_LINE_SIZE);
     222         [ #  # ]:          0 :                 if (!dev->outb.fc_sw_mem) {
     223                 :          0 :                         plt_err("Outbound fc sw mem alloc failed");
     224                 :          0 :                         goto sa_bmap_free;
     225                 :            :                 }
     226                 :            : 
     227                 :          0 :                 dev->outb.cpt_eng_caps = roc_nix_inl_eng_caps_get(nix);
     228                 :            :         }
     229                 :            :         return 0;
     230                 :            : 
     231                 :            : sa_bmap_free:
     232                 :          0 :         plt_free(dev->outb.sa_bmap_mem);
     233                 :          0 : sa_dptr_free:
     234         [ #  # ]:          0 :         if (dev->inb.sa_dptr)
     235                 :          0 :                 plt_free(dev->inb.sa_dptr);
     236         [ #  # ]:          0 :         if (dev->outb.sa_dptr)
     237                 :          0 :                 plt_free(dev->outb.sa_dptr);
     238                 :          0 : cleanup:
     239         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)
     240                 :          0 :                 rc |= roc_nix_inl_inb_fini(nix);
     241                 :            :         return rc;
     242                 :            : }
     243                 :            : 
     244                 :            : static int
     245                 :          0 : nix_meter_fini(struct cnxk_eth_dev *dev)
     246                 :            : {
     247                 :            :         struct cnxk_meter_node *next_mtr = NULL;
     248                 :          0 :         struct roc_nix_bpf_objs profs = {0};
     249                 :            :         struct cnxk_meter_node *mtr = NULL;
     250                 :            :         struct cnxk_mtr *fms = &dev->mtr;
     251                 :          0 :         struct roc_nix *nix = &dev->nix;
     252                 :            :         struct roc_nix_rq *rq;
     253                 :            :         uint32_t i;
     254                 :            :         int rc = 0;
     255                 :            : 
     256         [ #  # ]:          0 :         RTE_TAILQ_FOREACH_SAFE(mtr, fms, next, next_mtr) {
     257         [ #  # ]:          0 :                 for (i = 0; i < mtr->rq_num; i++) {
     258                 :          0 :                         rq = &dev->rqs[mtr->rq_id[i]];
     259                 :          0 :                         rc |= roc_nix_bpf_ena_dis(nix, mtr->bpf_id, rq, false);
     260                 :            :                 }
     261                 :            : 
     262                 :          0 :                 profs.level = mtr->level;
     263                 :          0 :                 profs.count = 1;
     264                 :          0 :                 profs.ids[0] = mtr->bpf_id;
     265                 :          0 :                 rc = roc_nix_bpf_free(nix, &profs, 1);
     266                 :            : 
     267         [ #  # ]:          0 :                 if (rc)
     268                 :          0 :                         return rc;
     269                 :            : 
     270         [ #  # ]:          0 :                 TAILQ_REMOVE(fms, mtr, next);
     271                 :          0 :                 plt_free(mtr);
     272                 :            :         }
     273                 :            :         return 0;
     274                 :            : }
     275                 :            : 
     276                 :            : static int
     277                 :          0 : nix_security_release(struct cnxk_eth_dev *dev)
     278                 :            : {
     279                 :          0 :         struct rte_eth_dev *eth_dev = dev->eth_dev;
     280                 :            :         struct cnxk_eth_sec_sess *eth_sec, *tvar;
     281                 :          0 :         struct roc_nix *nix = &dev->nix;
     282                 :            :         int rc, ret = 0;
     283                 :            : 
     284                 :            :         /* Cleanup Inline inbound */
     285         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
     286                 :            :                 /* Destroy inbound sessions */
     287                 :            :                 tvar = NULL;
     288         [ #  # ]:          0 :                 RTE_TAILQ_FOREACH_SAFE(eth_sec, &dev->inb.list, entry, tvar)
     289                 :          0 :                         cnxk_eth_sec_ops.session_destroy(eth_dev,
     290                 :            :                                                          eth_sec->sess);
     291                 :            : 
     292                 :            :                 /* Clear lookup mem */
     293                 :          0 :                 cnxk_nix_lookup_mem_sa_base_clear(dev);
     294                 :            : 
     295                 :          0 :                 rc = roc_nix_inl_inb_fini(nix);
     296         [ #  # ]:          0 :                 if (rc)
     297                 :          0 :                         plt_err("Failed to cleanup nix inline inb, rc=%d", rc);
     298                 :            :                 ret |= rc;
     299                 :            : 
     300                 :          0 :                 cnxk_nix_lookup_mem_metapool_clear(dev);
     301                 :            : 
     302         [ #  # ]:          0 :                 if (dev->inb.sa_dptr) {
     303                 :          0 :                         plt_free(dev->inb.sa_dptr);
     304                 :          0 :                         dev->inb.sa_dptr = NULL;
     305                 :            :                 }
     306                 :            :         }
     307                 :            : 
     308                 :            :         /* Cleanup Inline outbound */
     309         [ #  # ]:          0 :         if (dev->tx_offloads & RTE_ETH_TX_OFFLOAD_SECURITY ||
     310         [ #  # ]:          0 :             dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
     311                 :            :                 /* Destroy outbound sessions */
     312                 :            :                 tvar = NULL;
     313         [ #  # ]:          0 :                 RTE_TAILQ_FOREACH_SAFE(eth_sec, &dev->outb.list, entry, tvar)
     314                 :          0 :                         cnxk_eth_sec_ops.session_destroy(eth_dev,
     315                 :            :                                                          eth_sec->sess);
     316                 :            : 
     317                 :          0 :                 rc = roc_nix_inl_outb_fini(nix);
     318         [ #  # ]:          0 :                 if (rc)
     319                 :          0 :                         plt_err("Failed to cleanup nix inline outb, rc=%d", rc);
     320                 :          0 :                 ret |= rc;
     321                 :            : 
     322                 :            :                 plt_bitmap_free(dev->outb.sa_bmap);
     323                 :          0 :                 plt_free(dev->outb.sa_bmap_mem);
     324                 :          0 :                 dev->outb.sa_bmap = NULL;
     325                 :          0 :                 dev->outb.sa_bmap_mem = NULL;
     326         [ #  # ]:          0 :                 if (dev->outb.sa_dptr) {
     327                 :          0 :                         plt_free(dev->outb.sa_dptr);
     328                 :          0 :                         dev->outb.sa_dptr = NULL;
     329                 :            :                 }
     330                 :            : 
     331                 :          0 :                 plt_free(dev->outb.fc_sw_mem);
     332                 :          0 :                 dev->outb.fc_sw_mem = NULL;
     333                 :            :         }
     334                 :            : 
     335                 :          0 :         dev->inb.inl_dev = false;
     336                 :          0 :         roc_nix_inb_mode_set(nix, false);
     337                 :          0 :         dev->nb_rxq_sso = 0;
     338                 :          0 :         dev->inb.nb_sess = 0;
     339                 :          0 :         dev->outb.nb_sess = 0;
     340                 :          0 :         return ret;
     341                 :            : }
     342                 :            : 
     343                 :            : static void
     344                 :          0 : nix_enable_mseg_on_jumbo(struct cnxk_eth_rxq_sp *rxq)
     345                 :            : {
     346                 :            :         struct rte_pktmbuf_pool_private *mbp_priv;
     347                 :            :         struct rte_eth_dev *eth_dev;
     348                 :            :         struct cnxk_eth_dev *dev;
     349                 :            :         uint32_t buffsz;
     350                 :            : 
     351                 :          0 :         dev = rxq->dev;
     352                 :          0 :         eth_dev = dev->eth_dev;
     353                 :            : 
     354                 :            :         /* Get rx buffer size */
     355         [ #  # ]:          0 :         mbp_priv = rte_mempool_get_priv(rxq->qconf.mp);
     356                 :          0 :         buffsz = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
     357                 :            : 
     358         [ #  # ]:          0 :         if (eth_dev->data->mtu + (uint32_t)CNXK_NIX_L2_OVERHEAD > buffsz) {
     359                 :          0 :                 dev->rx_offloads |= RTE_ETH_RX_OFFLOAD_SCATTER;
     360                 :          0 :                 dev->tx_offloads |= RTE_ETH_TX_OFFLOAD_MULTI_SEGS;
     361                 :            :         }
     362                 :          0 : }
     363                 :            : 
     364                 :            : int
     365                 :          0 : nix_recalc_mtu(struct rte_eth_dev *eth_dev)
     366                 :            : {
     367                 :          0 :         struct rte_eth_dev_data *data = eth_dev->data;
     368                 :            :         struct cnxk_eth_rxq_sp *rxq;
     369                 :            :         int rc;
     370                 :            : 
     371                 :          0 :         rxq = ((struct cnxk_eth_rxq_sp *)data->rx_queues[0]) - 1;
     372                 :            :         /* Setup scatter mode if needed by jumbo */
     373                 :          0 :         nix_enable_mseg_on_jumbo(rxq);
     374                 :            : 
     375                 :          0 :         rc = cnxk_nix_mtu_set(eth_dev, data->mtu);
     376         [ #  # ]:          0 :         if (rc)
     377                 :          0 :                 plt_err("Failed to set default MTU size, rc=%d", rc);
     378                 :            : 
     379                 :          0 :         return rc;
     380                 :            : }
     381                 :            : 
     382                 :            : static int
     383                 :          0 : nix_init_flow_ctrl_config(struct rte_eth_dev *eth_dev)
     384                 :            : {
     385                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
     386                 :            :         enum roc_nix_fc_mode fc_mode = ROC_NIX_FC_FULL;
     387                 :            :         struct cnxk_fc_cfg *fc = &dev->fc_cfg;
     388                 :            :         int rc;
     389                 :            : 
     390   [ #  #  #  # ]:          0 :         if (roc_nix_is_vf_or_sdp(&dev->nix) && !roc_nix_is_lbk(&dev->nix))
     391                 :            :                 return 0;
     392                 :            : 
     393                 :            :         /* To avoid Link credit deadlock on Ax, disable Tx FC if it's enabled */
     394         [ #  # ]:          0 :         if (roc_model_is_cn96_ax() &&
     395         [ #  # ]:          0 :             dev->npc.switch_header_type != ROC_PRIV_FLAGS_HIGIG)
     396                 :            :                 fc_mode = ROC_NIX_FC_TX;
     397                 :            : 
     398                 :            :         /* By default enable flow control */
     399                 :          0 :         rc = roc_nix_fc_mode_set(&dev->nix, fc_mode);
     400         [ #  # ]:          0 :         if (rc)
     401                 :            :                 return rc;
     402                 :            : 
     403         [ #  # ]:          0 :         fc->mode = (fc_mode == ROC_NIX_FC_FULL) ? RTE_ETH_FC_FULL : RTE_ETH_FC_TX_PAUSE;
     404                 :          0 :         fc->rx_pause = (fc->mode == RTE_ETH_FC_FULL) || (fc->mode == RTE_ETH_FC_RX_PAUSE);
     405                 :          0 :         fc->tx_pause = (fc->mode == RTE_ETH_FC_FULL) || (fc->mode == RTE_ETH_FC_TX_PAUSE);
     406                 :          0 :         return rc;
     407                 :            : }
     408                 :            : 
     409                 :            : static int
     410                 :          0 : nix_update_flow_ctrl_config(struct rte_eth_dev *eth_dev)
     411                 :            : {
     412                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
     413                 :            :         struct cnxk_fc_cfg *fc = &dev->fc_cfg;
     414                 :          0 :         struct rte_eth_fc_conf fc_cfg = {0};
     415                 :            : 
     416   [ #  #  #  # ]:          0 :         if (roc_nix_is_sdp(&dev->nix) || roc_nix_is_esw(&dev->nix))
     417                 :          0 :                 return 0;
     418                 :            : 
     419                 :            :         /* Don't do anything if PFC is enabled */
     420         [ #  # ]:          0 :         if (dev->pfc_cfg.rx_pause_en || dev->pfc_cfg.tx_pause_en)
     421                 :            :                 return 0;
     422                 :            : 
     423         [ #  # ]:          0 :         fc_cfg.mode = fc->mode;
     424                 :            : 
     425                 :            :         /* To avoid Link credit deadlock on Ax, disable Tx FC if it's enabled */
     426         [ #  # ]:          0 :         if (roc_model_is_cn96_ax() &&
     427         [ #  # ]:          0 :             dev->npc.switch_header_type != ROC_PRIV_FLAGS_HIGIG &&
     428         [ #  # ]:          0 :             (fc_cfg.mode == RTE_ETH_FC_FULL || fc_cfg.mode == RTE_ETH_FC_RX_PAUSE)) {
     429                 :          0 :                 fc_cfg.mode =
     430                 :          0 :                                 (fc_cfg.mode == RTE_ETH_FC_FULL ||
     431                 :            :                                 fc_cfg.mode == RTE_ETH_FC_TX_PAUSE) ?
     432         [ #  # ]:          0 :                                 RTE_ETH_FC_TX_PAUSE : RTE_ETH_FC_NONE;
     433                 :            :         }
     434                 :            : 
     435                 :          0 :         return cnxk_nix_flow_ctrl_set(eth_dev, &fc_cfg);
     436                 :            : }
     437                 :            : 
     438                 :            : uint64_t
     439                 :          0 : cnxk_nix_rxq_mbuf_setup(struct cnxk_eth_dev *dev)
     440                 :            : {
     441                 :          0 :         uint16_t port_id = dev->eth_dev->data->port_id;
     442                 :            :         struct rte_mbuf mb_def;
     443                 :            :         uint64_t *tmp;
     444                 :            : 
     445                 :            :         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) % 8 != 0);
     446                 :            :         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, refcnt) -
     447                 :            :                                  offsetof(struct rte_mbuf, data_off) !=
     448                 :            :                          2);
     449                 :            :         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, nb_segs) -
     450                 :            :                                  offsetof(struct rte_mbuf, data_off) !=
     451                 :            :                          4);
     452                 :            :         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, port) -
     453                 :            :                                  offsetof(struct rte_mbuf, data_off) !=
     454                 :            :                          6);
     455                 :          0 :         mb_def.nb_segs = 1;
     456                 :          0 :         mb_def.data_off = RTE_PKTMBUF_HEADROOM +
     457                 :          0 :                           (dev->ptp_en * CNXK_NIX_TIMESYNC_RX_OFFSET);
     458                 :          0 :         mb_def.port = port_id;
     459                 :            :         rte_mbuf_refcnt_set(&mb_def, 1);
     460                 :            : 
     461                 :            :         /* Prevent compiler reordering: rearm_data covers previous fields */
     462                 :          0 :         rte_compiler_barrier();
     463                 :            :         tmp = (uint64_t *)&mb_def.rearm_data;
     464                 :            : 
     465                 :          0 :         return *tmp;
     466                 :            : }
     467                 :            : 
     468                 :            : static inline uint8_t
     469                 :            : nix_sq_max_sqe_sz(struct cnxk_eth_dev *dev)
     470                 :            : {
     471                 :            :         /*
     472                 :            :          * Maximum three segments can be supported with W8, Choose
     473                 :            :          * NIX_MAXSQESZ_W16 for multi segment offload.
     474                 :            :          */
     475                 :          0 :         if (dev->tx_offloads & RTE_ETH_TX_OFFLOAD_MULTI_SEGS)
     476                 :            :                 return NIX_MAXSQESZ_W16;
     477                 :            :         else
     478                 :          0 :                 return NIX_MAXSQESZ_W8;
     479                 :            : }
     480                 :            : 
     481                 :            : int
     482         [ #  # ]:          0 : cnxk_nix_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t qid,
     483                 :            :                         uint16_t nb_desc, uint16_t fp_tx_q_sz,
     484                 :            :                         const struct rte_eth_txconf *tx_conf)
     485                 :            : {
     486                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
     487                 :          0 :         const struct eth_dev_ops *dev_ops = eth_dev->dev_ops;
     488                 :            :         struct roc_nix *nix = &dev->nix;
     489                 :            :         struct cnxk_eth_txq_sp *txq_sp;
     490                 :            :         struct roc_nix_cq *cq;
     491                 :            :         struct roc_nix_sq *sq;
     492                 :            :         size_t txq_sz;
     493                 :            :         int rc;
     494                 :            : 
     495                 :            :         /* Free memory prior to re-allocation if needed. */
     496         [ #  # ]:          0 :         if (eth_dev->data->tx_queues[qid] != NULL) {
     497                 :          0 :                 plt_nix_dbg("Freeing memory prior to re-allocation %d", qid);
     498                 :          0 :                 dev_ops->tx_queue_release(eth_dev, qid);
     499                 :          0 :                 eth_dev->data->tx_queues[qid] = NULL;
     500                 :            :         }
     501                 :            : 
     502                 :            :         /* When Tx Security offload is enabled, increase tx desc count by
     503                 :            :          * max possible outbound desc count.
     504                 :            :          */
     505         [ #  # ]:          0 :         if (dev->tx_offloads & RTE_ETH_TX_OFFLOAD_SECURITY)
     506                 :          0 :                 nb_desc += dev->outb.nb_desc;
     507                 :            : 
     508                 :            :         /* Setup ROC SQ */
     509                 :          0 :         sq = &dev->sqs[qid];
     510                 :          0 :         sq->qid = qid;
     511         [ #  # ]:          0 :         sq->nb_desc = nb_desc;
     512                 :          0 :         sq->max_sqe_sz = nix_sq_max_sqe_sz(dev);
     513         [ #  # ]:          0 :         if (sq->nb_desc >= CNXK_NIX_DEF_SQ_COUNT)
     514                 :          0 :                 sq->fc_hyst_bits = 0x1;
     515                 :            : 
     516         [ #  # ]:          0 :         if (nix->tx_compl_ena) {
     517                 :          0 :                 sq->cqid = sq->qid + dev->nb_rxq;
     518                 :          0 :                 sq->cq_ena = 1;
     519                 :          0 :                 cq = &dev->cqs[sq->cqid];
     520                 :          0 :                 cq->qid = sq->cqid;
     521                 :          0 :                 cq->nb_desc = nb_desc;
     522                 :          0 :                 rc = roc_nix_cq_init(&dev->nix, cq);
     523         [ #  # ]:          0 :                 if (rc) {
     524                 :          0 :                         plt_err("Failed to init cq=%d, rc=%d", cq->qid, rc);
     525                 :          0 :                         return rc;
     526                 :            :                 }
     527                 :            :         }
     528                 :            : 
     529                 :          0 :         rc = roc_nix_sq_init(&dev->nix, sq);
     530         [ #  # ]:          0 :         if (rc) {
     531                 :          0 :                 plt_err("Failed to init sq=%d, rc=%d", qid, rc);
     532                 :          0 :                 return rc;
     533                 :            :         }
     534                 :            : 
     535                 :            :         rc = -ENOMEM;
     536                 :          0 :         txq_sz = sizeof(struct cnxk_eth_txq_sp) + fp_tx_q_sz;
     537                 :          0 :         txq_sp = plt_zmalloc(txq_sz, PLT_CACHE_LINE_SIZE);
     538         [ #  # ]:          0 :         if (!txq_sp) {
     539                 :          0 :                 plt_err("Failed to alloc tx queue mem");
     540                 :          0 :                 rc |= roc_nix_sq_fini(sq);
     541                 :          0 :                 return rc;
     542                 :            :         }
     543                 :            : 
     544                 :          0 :         txq_sp->dev = dev;
     545                 :          0 :         txq_sp->qid = qid;
     546                 :          0 :         txq_sp->qconf.conf.tx = *tx_conf;
     547                 :            :         /* Queue config should reflect global offloads */
     548                 :          0 :         txq_sp->qconf.conf.tx.offloads = dev->tx_offloads;
     549                 :          0 :         txq_sp->qconf.nb_desc = nb_desc;
     550                 :            : 
     551                 :          0 :         plt_nix_dbg("sq=%d fc=%p offload=0x%" PRIx64 " lmt_addr=%p"
     552                 :            :                     " nb_sqb_bufs=%d sqes_per_sqb_log2=%d",
     553                 :            :                     qid, sq->fc, dev->tx_offloads, sq->lmt_addr,
     554                 :            :                     sq->nb_sqb_bufs, sq->sqes_per_sqb_log2);
     555                 :            : 
     556                 :            :         /* Store start of fast path area */
     557                 :          0 :         eth_dev->data->tx_queues[qid] = txq_sp + 1;
     558                 :          0 :         eth_dev->data->tx_queue_state[qid] = RTE_ETH_QUEUE_STATE_STOPPED;
     559                 :          0 :         return 0;
     560                 :            : }
     561                 :            : 
     562                 :            : void
     563                 :          0 : cnxk_nix_tx_queue_release(struct rte_eth_dev *eth_dev, uint16_t qid)
     564                 :            : {
     565                 :          0 :         void *txq = eth_dev->data->tx_queues[qid];
     566                 :            :         struct cnxk_eth_txq_sp *txq_sp;
     567                 :            :         struct cnxk_eth_dev *dev;
     568                 :            :         struct roc_nix_sq *sq;
     569                 :            :         int rc;
     570                 :            : 
     571         [ #  # ]:          0 :         if (!txq)
     572                 :            :                 return;
     573                 :            : 
     574                 :            :         txq_sp = cnxk_eth_txq_to_sp(txq);
     575                 :            : 
     576                 :          0 :         dev = txq_sp->dev;
     577                 :            : 
     578                 :          0 :         plt_nix_dbg("Releasing txq %u", qid);
     579                 :            : 
     580                 :            :         /* Cleanup ROC SQ */
     581                 :          0 :         sq = &dev->sqs[qid];
     582                 :          0 :         rc = roc_nix_sq_fini(sq);
     583         [ #  # ]:          0 :         if (rc)
     584                 :          0 :                 plt_err("Failed to cleanup sq, rc=%d", rc);
     585                 :            : 
     586                 :            :         /* Finally free */
     587                 :          0 :         plt_free(txq_sp);
     588                 :            : }
     589                 :            : 
     590                 :            : static int
     591                 :          0 : cnxk_nix_process_rx_conf(const struct rte_eth_rxconf *rx_conf,
     592                 :            :                          struct rte_mempool **lpb_pool,
     593                 :            :                          struct rte_mempool **spb_pool)
     594                 :            : {
     595                 :            :         struct rte_mempool *pool0;
     596                 :            :         struct rte_mempool *pool1;
     597                 :          0 :         struct rte_mempool **mp = rx_conf->rx_mempools;
     598                 :            :         const char *platform_ops;
     599                 :            :         struct rte_mempool_ops *ops;
     600                 :            : 
     601         [ #  # ]:          0 :         if (*lpb_pool ||
     602         [ #  # ]:          0 :             rx_conf->rx_nmempool != CNXK_NIX_NUM_POOLS_MAX) {
     603                 :          0 :                 plt_err("invalid arguments");
     604                 :          0 :                 return -EINVAL;
     605                 :            :         }
     606                 :            : 
     607   [ #  #  #  #  :          0 :         if (mp == NULL || mp[0] == NULL || mp[1] == NULL) {
                   #  # ]
     608                 :          0 :                 plt_err("invalid memory pools");
     609                 :          0 :                 return -EINVAL;
     610                 :            :         }
     611                 :            : 
     612                 :            :         pool0 = mp[0];
     613                 :            :         pool1 = mp[1];
     614                 :            : 
     615         [ #  # ]:          0 :         if (pool0->elt_size > pool1->elt_size) {
     616                 :          0 :                 *lpb_pool = pool0;
     617                 :          0 :                 *spb_pool = pool1;
     618                 :            : 
     619                 :            :         } else {
     620                 :          0 :                 *lpb_pool = pool1;
     621                 :          0 :                 *spb_pool = pool0;
     622                 :            :         }
     623                 :            : 
     624         [ #  # ]:          0 :         if ((*spb_pool)->pool_id == 0) {
     625                 :          0 :                 plt_err("Invalid pool_id");
     626                 :          0 :                 return -EINVAL;
     627                 :            :         }
     628                 :            : 
     629                 :          0 :         platform_ops = rte_mbuf_platform_mempool_ops();
     630         [ #  # ]:          0 :         ops = rte_mempool_get_ops((*spb_pool)->ops_index);
     631         [ #  # ]:          0 :         if (strncmp(ops->name, platform_ops, RTE_MEMPOOL_OPS_NAMESIZE)) {
     632                 :          0 :                 plt_err("mempool ops should be of cnxk_npa type");
     633                 :          0 :                 return -EINVAL;
     634                 :            :         }
     635                 :            : 
     636                 :          0 :         plt_info("spb_pool:%s lpb_pool:%s lpb_len:%u spb_len:%u", (*spb_pool)->name,
     637                 :            :                  (*lpb_pool)->name, (*lpb_pool)->elt_size, (*spb_pool)->elt_size);
     638                 :            : 
     639                 :          0 :         return 0;
     640                 :            : }
     641                 :            : 
     642                 :            : int
     643         [ #  # ]:          0 : cnxk_nix_rx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t qid,
     644                 :            :                         uint32_t nb_desc, uint16_t fp_rx_q_sz,
     645                 :            :                         const struct rte_eth_rxconf *rx_conf,
     646                 :            :                         struct rte_mempool *mp)
     647                 :            : {
     648                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
     649                 :          0 :         struct roc_nix *nix = &dev->nix;
     650                 :            :         struct cnxk_eth_rxq_sp *rxq_sp;
     651                 :            :         struct rte_mempool_ops *ops;
     652                 :            :         const char *platform_ops;
     653                 :            :         struct roc_nix_rq *rq;
     654                 :            :         struct roc_nix_cq *cq;
     655                 :            :         uint16_t first_skip;
     656                 :            :         uint16_t wqe_skip;
     657                 :            :         int rc = -EINVAL;
     658                 :            :         size_t rxq_sz;
     659                 :          0 :         struct rte_mempool *lpb_pool = mp;
     660                 :          0 :         struct rte_mempool *spb_pool = NULL;
     661                 :            : 
     662                 :            :         /* Sanity checks */
     663         [ #  # ]:          0 :         if (rx_conf->rx_deferred_start == 1) {
     664                 :          0 :                 plt_err("Deferred Rx start is not supported");
     665                 :          0 :                 goto fail;
     666                 :            :         }
     667                 :            : 
     668         [ #  # ]:          0 :         if (rx_conf->rx_nmempool > 0) {
     669                 :          0 :                 rc = cnxk_nix_process_rx_conf(rx_conf, &lpb_pool, &spb_pool);
     670         [ #  # ]:          0 :                 if (rc)
     671                 :          0 :                         goto fail;
     672                 :            :         }
     673                 :            : 
     674                 :          0 :         platform_ops = rte_mbuf_platform_mempool_ops();
     675                 :            :         /* This driver needs cnxk_npa mempool ops to work */
     676         [ #  # ]:          0 :         ops = rte_mempool_get_ops(lpb_pool->ops_index);
     677         [ #  # ]:          0 :         if (strncmp(ops->name, platform_ops, RTE_MEMPOOL_OPS_NAMESIZE)) {
     678                 :          0 :                 plt_err("mempool ops should be of cnxk_npa type");
     679                 :          0 :                 goto fail;
     680                 :            :         }
     681                 :            : 
     682         [ #  # ]:          0 :         if (lpb_pool->pool_id == 0) {
     683                 :          0 :                 plt_err("Invalid pool_id");
     684                 :          0 :                 goto fail;
     685                 :            :         }
     686                 :            : 
     687                 :            :         /* Free memory prior to re-allocation if needed */
     688         [ #  # ]:          0 :         if (eth_dev->data->rx_queues[qid] != NULL) {
     689                 :          0 :                 const struct eth_dev_ops *dev_ops = eth_dev->dev_ops;
     690                 :            : 
     691                 :          0 :                 plt_nix_dbg("Freeing memory prior to re-allocation %d", qid);
     692                 :          0 :                 dev_ops->rx_queue_release(eth_dev, qid);
     693                 :          0 :                 eth_dev->data->rx_queues[qid] = NULL;
     694                 :            :         }
     695                 :            : 
     696                 :            :         /* Its a no-op when inline device is not used */
     697         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY ||
     698         [ #  # ]:          0 :             dev->tx_offloads & RTE_ETH_TX_OFFLOAD_SECURITY)
     699                 :          0 :                 roc_nix_inl_dev_xaq_realloc(lpb_pool->pool_id);
     700                 :            : 
     701                 :            :         /* Increase CQ size to Aura size to avoid CQ overflow and
     702                 :            :          * then CPT buffer leak.
     703                 :            :          */
     704         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)
     705                 :          0 :                 nb_desc = nix_inl_cq_sz_clamp_up(nix, lpb_pool, nb_desc);
     706                 :            : 
     707                 :            :         /* Setup ROC CQ */
     708                 :          0 :         cq = &dev->cqs[qid];
     709                 :          0 :         cq->qid = qid;
     710                 :          0 :         cq->nb_desc = nb_desc;
     711                 :          0 :         rc = roc_nix_cq_init(&dev->nix, cq);
     712         [ #  # ]:          0 :         if (rc) {
     713                 :          0 :                 plt_err("Failed to init roc cq for rq=%d, rc=%d", qid, rc);
     714                 :          0 :                 goto fail;
     715                 :            :         }
     716                 :            : 
     717                 :            :         /* Setup ROC RQ */
     718                 :          0 :         rq = &dev->rqs[qid];
     719                 :          0 :         rq->qid = qid;
     720                 :          0 :         rq->cqid = cq->qid;
     721                 :          0 :         rq->aura_handle = lpb_pool->pool_id;
     722                 :          0 :         rq->flow_tag_width = 32;
     723         [ #  # ]:          0 :         rq->sso_ena = false;
     724                 :            : 
     725                 :            :         /* Calculate first mbuf skip */
     726                 :            :         first_skip = (sizeof(struct rte_mbuf));
     727                 :            :         first_skip += RTE_PKTMBUF_HEADROOM;
     728                 :          0 :         first_skip += rte_pktmbuf_priv_size(lpb_pool);
     729                 :          0 :         rq->first_skip = first_skip;
     730                 :          0 :         rq->later_skip = sizeof(struct rte_mbuf) + rte_pktmbuf_priv_size(lpb_pool);
     731         [ #  # ]:          0 :         rq->lpb_size = lpb_pool->elt_size;
     732         [ #  # ]:          0 :         if (roc_errata_nix_no_meta_aura())
     733                 :          0 :                 rq->lpb_drop_ena = !(dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY);
     734                 :            : 
     735                 :            :         /* Enable Inline IPSec on RQ, will not be used for Poll mode */
     736   [ #  #  #  # ]:          0 :         if (roc_nix_inl_inb_is_enabled(nix) && !dev->inb.inl_dev) {
     737                 :          0 :                 rq->ipsech_ena = true;
     738                 :            :                 /* WQE skip is needed when poll mode is enabled in CN10KA_B0 and above
     739                 :            :                  * for Inline IPsec traffic to CQ without inline device.
     740                 :            :                  */
     741                 :            :                 wqe_skip = RTE_ALIGN_CEIL(sizeof(struct rte_mbuf), ROC_CACHE_LINE_SZ);
     742                 :            :                 wqe_skip = wqe_skip / ROC_CACHE_LINE_SZ;
     743                 :          0 :                 rq->wqe_skip = wqe_skip;
     744                 :            :         }
     745                 :            : 
     746         [ #  # ]:          0 :         if (spb_pool) {
     747                 :          0 :                 rq->spb_ena = 1;
     748                 :          0 :                 rq->spb_aura_handle = spb_pool->pool_id;
     749                 :          0 :                 rq->spb_size = spb_pool->elt_size;
     750                 :            :         }
     751                 :            : 
     752                 :          0 :         rc = roc_nix_rq_init(&dev->nix, rq, !!eth_dev->data->dev_started);
     753         [ #  # ]:          0 :         if (rc) {
     754                 :          0 :                 plt_err("Failed to init roc rq for rq=%d, rc=%d", qid, rc);
     755                 :          0 :                 goto cq_fini;
     756                 :            :         }
     757                 :            : 
     758                 :            :         /* Allocate and setup fast path rx queue */
     759                 :            :         rc = -ENOMEM;
     760                 :          0 :         rxq_sz = sizeof(struct cnxk_eth_rxq_sp) + fp_rx_q_sz;
     761                 :          0 :         rxq_sp = plt_zmalloc(rxq_sz, PLT_CACHE_LINE_SIZE);
     762         [ #  # ]:          0 :         if (!rxq_sp) {
     763                 :          0 :                 plt_err("Failed to alloc rx queue for rq=%d", qid);
     764                 :          0 :                 goto rq_fini;
     765                 :            :         }
     766                 :            : 
     767                 :            :         /* Setup slow path fields */
     768                 :          0 :         rxq_sp->dev = dev;
     769                 :          0 :         rxq_sp->qid = qid;
     770                 :          0 :         rxq_sp->qconf.conf.rx = *rx_conf;
     771                 :            :         /* Queue config should reflect global offloads */
     772                 :          0 :         rxq_sp->qconf.conf.rx.offloads = dev->rx_offloads;
     773                 :          0 :         rxq_sp->qconf.nb_desc = nb_desc;
     774                 :          0 :         rxq_sp->qconf.mp = lpb_pool;
     775                 :          0 :         rxq_sp->tc = 0;
     776                 :          0 :         rxq_sp->tx_pause = (dev->fc_cfg.mode == RTE_ETH_FC_FULL ||
     777                 :            :                             dev->fc_cfg.mode == RTE_ETH_FC_TX_PAUSE);
     778                 :            : 
     779         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
     780                 :            :                 /* Pass a tagmask used to handle error packets in inline device.
     781                 :            :                  * Ethdev rq's tag_mask field will be overwritten later
     782                 :            :                  * when sso is setup.
     783                 :            :                  */
     784                 :          0 :                 rq->tag_mask =
     785                 :            :                         0x0FF00000 | ((uint32_t)RTE_EVENT_TYPE_ETHDEV << 28);
     786                 :            : 
     787                 :            :                 /* Setup rq reference for inline dev if present */
     788                 :          0 :                 rc = roc_nix_inl_dev_rq_get(rq, !!eth_dev->data->dev_started);
     789         [ #  # ]:          0 :                 if (rc)
     790                 :          0 :                         goto free_mem;
     791                 :            :         }
     792                 :            : 
     793                 :          0 :         plt_nix_dbg("rq=%d pool=%s nb_desc=%d->%d", qid, lpb_pool->name, nb_desc,
     794                 :            :                     cq->nb_desc);
     795                 :            : 
     796                 :            :         /* Store start of fast path area */
     797                 :          0 :         eth_dev->data->rx_queues[qid] = rxq_sp + 1;
     798                 :          0 :         eth_dev->data->rx_queue_state[qid] = RTE_ETH_QUEUE_STATE_STOPPED;
     799                 :            : 
     800                 :            :         /* Calculating delta and freq mult between PTP HI clock and tsc.
     801                 :            :          * These are needed in deriving raw clock value from tsc counter.
     802                 :            :          * read_clock eth op returns raw clock value.
     803                 :            :          */
     804   [ #  #  #  # ]:          0 :         if ((dev->rx_offloads & RTE_ETH_RX_OFFLOAD_TIMESTAMP) || dev->ptp_en) {
     805                 :          0 :                 rc = cnxk_nix_tsc_convert(dev);
     806         [ #  # ]:          0 :                 if (rc) {
     807                 :          0 :                         plt_err("Failed to calculate delta and freq mult");
     808                 :          0 :                         goto rq_fini;
     809                 :            :                 }
     810                 :            :         }
     811                 :            : 
     812                 :            :         return 0;
     813                 :            : free_mem:
     814                 :          0 :         plt_free(rxq_sp);
     815                 :          0 : rq_fini:
     816                 :          0 :         rc |= roc_nix_rq_fini(rq);
     817                 :          0 : cq_fini:
     818                 :          0 :         rc |= roc_nix_cq_fini(cq);
     819                 :            : fail:
     820                 :            :         return rc;
     821                 :            : }
     822                 :            : 
     823                 :            : static void
     824                 :          0 : cnxk_nix_rx_queue_release(struct rte_eth_dev *eth_dev, uint16_t qid)
     825                 :            : {
     826                 :          0 :         void *rxq = eth_dev->data->rx_queues[qid];
     827                 :            :         struct cnxk_eth_rxq_sp *rxq_sp;
     828                 :            :         struct cnxk_eth_dev *dev;
     829                 :            :         struct roc_nix_rq *rq;
     830                 :            :         struct roc_nix_cq *cq;
     831                 :            :         int rc;
     832                 :            : 
     833         [ #  # ]:          0 :         if (!rxq)
     834                 :            :                 return;
     835                 :            : 
     836                 :            :         rxq_sp = cnxk_eth_rxq_to_sp(rxq);
     837                 :          0 :         dev = rxq_sp->dev;
     838                 :          0 :         rq = &dev->rqs[qid];
     839                 :            : 
     840                 :          0 :         plt_nix_dbg("Releasing rxq %u", qid);
     841                 :            : 
     842                 :            :         /* Release rq reference for inline dev if present */
     843         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)
     844                 :          0 :                 roc_nix_inl_dev_rq_put(rq);
     845                 :            : 
     846                 :            :         /* Cleanup ROC RQ */
     847                 :          0 :         rc = roc_nix_rq_fini(rq);
     848         [ #  # ]:          0 :         if (rc)
     849                 :          0 :                 plt_err("Failed to cleanup rq, rc=%d", rc);
     850                 :            : 
     851                 :            :         /* Cleanup ROC CQ */
     852                 :          0 :         cq = &dev->cqs[qid];
     853                 :          0 :         rc = roc_nix_cq_fini(cq);
     854         [ #  # ]:          0 :         if (rc)
     855                 :          0 :                 plt_err("Failed to cleanup cq, rc=%d", rc);
     856                 :            : 
     857                 :            :         /* Finally free fast path area */
     858                 :          0 :         plt_free(rxq_sp);
     859                 :            : }
     860                 :            : 
     861                 :            : uint32_t
     862                 :          0 : cnxk_rss_ethdev_to_nix(struct cnxk_eth_dev *dev, uint64_t ethdev_rss,
     863                 :            :                        uint8_t rss_level)
     864                 :            : {
     865                 :          0 :         uint32_t flow_key_type[RSS_MAX_LEVELS][6] = {
     866                 :            :                 {FLOW_KEY_TYPE_IPV4, FLOW_KEY_TYPE_IPV6, FLOW_KEY_TYPE_TCP,
     867                 :            :                  FLOW_KEY_TYPE_UDP, FLOW_KEY_TYPE_SCTP, FLOW_KEY_TYPE_ETH_DMAC},
     868                 :            :                 {FLOW_KEY_TYPE_INNR_IPV4, FLOW_KEY_TYPE_INNR_IPV6,
     869                 :            :                  FLOW_KEY_TYPE_INNR_TCP, FLOW_KEY_TYPE_INNR_UDP,
     870                 :            :                  FLOW_KEY_TYPE_INNR_SCTP, FLOW_KEY_TYPE_INNR_ETH_DMAC},
     871                 :            :                 {FLOW_KEY_TYPE_IPV4 | FLOW_KEY_TYPE_INNR_IPV4,
     872                 :            :                  FLOW_KEY_TYPE_IPV6 | FLOW_KEY_TYPE_INNR_IPV6,
     873                 :            :                  FLOW_KEY_TYPE_TCP | FLOW_KEY_TYPE_INNR_TCP,
     874                 :            :                  FLOW_KEY_TYPE_UDP | FLOW_KEY_TYPE_INNR_UDP,
     875                 :            :                  FLOW_KEY_TYPE_SCTP | FLOW_KEY_TYPE_INNR_SCTP,
     876                 :            :                  FLOW_KEY_TYPE_ETH_DMAC | FLOW_KEY_TYPE_INNR_ETH_DMAC}
     877                 :            :         };
     878                 :            :         uint32_t flowkey_cfg = 0;
     879                 :            : 
     880                 :          0 :         dev->ethdev_rss_hf = ethdev_rss;
     881                 :            : 
     882         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_L2_PAYLOAD &&
     883         [ #  # ]:          0 :             dev->npc.switch_header_type == ROC_PRIV_FLAGS_LEN_90B) {
     884                 :            :                 flowkey_cfg |= FLOW_KEY_TYPE_CH_LEN_90B;
     885                 :            :         }
     886                 :            : 
     887         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_C_VLAN)
     888                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_VLAN;
     889                 :            : 
     890         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_L3_SRC_ONLY)
     891                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_L3_SRC;
     892                 :            : 
     893         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_L3_DST_ONLY)
     894                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_L3_DST;
     895                 :            : 
     896         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_L4_SRC_ONLY)
     897                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_L4_SRC;
     898                 :            : 
     899         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_L4_DST_ONLY)
     900                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_L4_DST;
     901                 :            : 
     902         [ #  # ]:          0 :         if (ethdev_rss & RSS_IPV4_ENABLE)
     903                 :          0 :                 flowkey_cfg |= flow_key_type[rss_level][RSS_IPV4_INDEX];
     904                 :            : 
     905         [ #  # ]:          0 :         if (ethdev_rss & RSS_IPV6_ENABLE)
     906                 :          0 :                 flowkey_cfg |= flow_key_type[rss_level][RSS_IPV6_INDEX];
     907                 :            : 
     908         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_TCP)
     909                 :          0 :                 flowkey_cfg |= flow_key_type[rss_level][RSS_TCP_INDEX];
     910                 :            : 
     911         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_UDP)
     912                 :          0 :                 flowkey_cfg |= flow_key_type[rss_level][RSS_UDP_INDEX];
     913                 :            : 
     914         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_SCTP)
     915                 :          0 :                 flowkey_cfg |= flow_key_type[rss_level][RSS_SCTP_INDEX];
     916                 :            : 
     917         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_L2_PAYLOAD)
     918                 :          0 :                 flowkey_cfg |= flow_key_type[rss_level][RSS_DMAC_INDEX];
     919                 :            : 
     920         [ #  # ]:          0 :         if (ethdev_rss & RSS_IPV6_EX_ENABLE)
     921                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_IPV6_EXT;
     922                 :            : 
     923         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_PORT)
     924                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_PORT;
     925                 :            : 
     926         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_NVGRE)
     927                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_NVGRE;
     928                 :            : 
     929         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_VXLAN)
     930                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_VXLAN;
     931                 :            : 
     932         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_GENEVE)
     933                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_GENEVE;
     934                 :            : 
     935         [ #  # ]:          0 :         if (ethdev_rss & RTE_ETH_RSS_GTPU)
     936                 :          0 :                 flowkey_cfg |= FLOW_KEY_TYPE_GTPU;
     937                 :            : 
     938                 :          0 :         return flowkey_cfg;
     939                 :            : }
     940                 :            : 
     941                 :            : static int
     942                 :          0 : nix_rxchan_cfg_disable(struct cnxk_eth_dev *dev)
     943                 :            : {
     944                 :          0 :         struct roc_nix *nix = &dev->nix;
     945                 :            :         struct roc_nix_fc_cfg fc_cfg;
     946                 :            :         int rc;
     947                 :            : 
     948         [ #  # ]:          0 :         if (!roc_nix_is_lbk(nix))
     949                 :            :                 return 0;
     950                 :            : 
     951                 :            :         memset(&fc_cfg, 0, sizeof(struct roc_nix_fc_cfg));
     952                 :            :         fc_cfg.type = ROC_NIX_FC_RXCHAN_CFG;
     953                 :            :         fc_cfg.rxchan_cfg.enable = false;
     954                 :          0 :         rc = roc_nix_fc_config_set(nix, &fc_cfg);
     955         [ #  # ]:          0 :         if (rc) {
     956                 :          0 :                 plt_err("Failed to setup flow control, rc=%d(%s)", rc, roc_error_msg_get(rc));
     957                 :          0 :                 return rc;
     958                 :            :         }
     959                 :            :         return 0;
     960                 :            : }
     961                 :            : 
     962                 :            : static void
     963                 :          0 : nix_free_queue_mem(struct cnxk_eth_dev *dev)
     964                 :            : {
     965                 :          0 :         plt_free(dev->rqs);
     966                 :          0 :         plt_free(dev->cqs);
     967                 :          0 :         plt_free(dev->sqs);
     968                 :          0 :         dev->rqs = NULL;
     969                 :          0 :         dev->cqs = NULL;
     970                 :          0 :         dev->sqs = NULL;
     971                 :          0 : }
     972                 :            : 
     973                 :            : static int
     974                 :          0 : nix_ingress_policer_setup(struct cnxk_eth_dev *dev)
     975                 :            : {
     976                 :          0 :         struct rte_eth_dev *eth_dev = dev->eth_dev;
     977                 :            :         int rc = 0;
     978                 :            : 
     979                 :          0 :         TAILQ_INIT(&dev->mtr_profiles);
     980                 :          0 :         TAILQ_INIT(&dev->mtr_policy);
     981                 :          0 :         TAILQ_INIT(&dev->mtr);
     982                 :            : 
     983         [ #  # ]:          0 :         if (eth_dev->dev_ops->mtr_ops_get == NULL)
     984                 :            :                 return rc;
     985                 :            : 
     986                 :          0 :         return nix_mtr_capabilities_init(eth_dev);
     987                 :            : }
     988                 :            : 
     989                 :            : static int
     990                 :          0 : nix_rss_default_setup(struct cnxk_eth_dev *dev)
     991                 :            : {
     992                 :          0 :         struct rte_eth_dev *eth_dev = dev->eth_dev;
     993                 :            :         uint8_t rss_hash_level;
     994                 :            :         uint32_t flowkey_cfg;
     995                 :            :         uint64_t rss_hf;
     996                 :            : 
     997                 :          0 :         rss_hf = eth_dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf;
     998                 :          0 :         rss_hash_level = RTE_ETH_RSS_LEVEL(rss_hf);
     999         [ #  # ]:          0 :         if (rss_hash_level)
    1000                 :          0 :                 rss_hash_level -= 1;
    1001                 :            : 
    1002                 :          0 :         flowkey_cfg = cnxk_rss_ethdev_to_nix(dev, rss_hf, rss_hash_level);
    1003                 :          0 :         return roc_nix_rss_default_setup(&dev->nix, flowkey_cfg);
    1004                 :            : }
    1005                 :            : 
    1006                 :            : static int
    1007         [ #  # ]:          0 : nix_store_queue_cfg_and_then_release(struct rte_eth_dev *eth_dev)
    1008                 :            : {
    1009                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1010                 :          0 :         const struct eth_dev_ops *dev_ops = eth_dev->dev_ops;
    1011                 :            :         struct cnxk_eth_qconf *tx_qconf = NULL;
    1012                 :            :         struct cnxk_eth_qconf *rx_qconf = NULL;
    1013                 :            :         struct cnxk_eth_rxq_sp *rxq_sp;
    1014                 :            :         struct cnxk_eth_txq_sp *txq_sp;
    1015                 :            :         int i, nb_rxq, nb_txq;
    1016                 :            :         void **txq, **rxq;
    1017                 :            : 
    1018                 :          0 :         nb_rxq = RTE_MIN(dev->nb_rxq, eth_dev->data->nb_rx_queues);
    1019                 :          0 :         nb_txq = RTE_MIN(dev->nb_txq, eth_dev->data->nb_tx_queues);
    1020                 :            : 
    1021                 :          0 :         tx_qconf = malloc(nb_txq * sizeof(*tx_qconf));
    1022         [ #  # ]:          0 :         if (tx_qconf == NULL) {
    1023                 :          0 :                 plt_err("Failed to allocate memory for tx_qconf");
    1024                 :          0 :                 goto fail;
    1025                 :            :         }
    1026                 :            : 
    1027                 :          0 :         rx_qconf = malloc(nb_rxq * sizeof(*rx_qconf));
    1028         [ #  # ]:          0 :         if (rx_qconf == NULL) {
    1029                 :          0 :                 plt_err("Failed to allocate memory for rx_qconf");
    1030                 :          0 :                 goto fail;
    1031                 :            :         }
    1032                 :            : 
    1033                 :          0 :         txq = eth_dev->data->tx_queues;
    1034         [ #  # ]:          0 :         for (i = 0; i < nb_txq; i++) {
    1035         [ #  # ]:          0 :                 if (txq[i] == NULL) {
    1036                 :          0 :                         tx_qconf[i].valid = false;
    1037                 :          0 :                         plt_info("txq[%d] is already released", i);
    1038                 :          0 :                         continue;
    1039                 :            :                 }
    1040                 :            :                 txq_sp = cnxk_eth_txq_to_sp(txq[i]);
    1041                 :          0 :                 memcpy(&tx_qconf[i], &txq_sp->qconf, sizeof(*tx_qconf));
    1042                 :          0 :                 tx_qconf[i].valid = true;
    1043                 :          0 :                 dev_ops->tx_queue_release(eth_dev, i);
    1044                 :          0 :                 eth_dev->data->tx_queues[i] = NULL;
    1045                 :            :         }
    1046                 :            : 
    1047                 :          0 :         rxq = eth_dev->data->rx_queues;
    1048         [ #  # ]:          0 :         for (i = 0; i < nb_rxq; i++) {
    1049         [ #  # ]:          0 :                 if (rxq[i] == NULL) {
    1050                 :          0 :                         rx_qconf[i].valid = false;
    1051                 :          0 :                         plt_info("rxq[%d] is already released", i);
    1052                 :          0 :                         continue;
    1053                 :            :                 }
    1054                 :            :                 rxq_sp = cnxk_eth_rxq_to_sp(rxq[i]);
    1055                 :          0 :                 memcpy(&rx_qconf[i], &rxq_sp->qconf, sizeof(*rx_qconf));
    1056                 :          0 :                 rx_qconf[i].valid = true;
    1057                 :          0 :                 dev_ops->rx_queue_release(eth_dev, i);
    1058                 :          0 :                 eth_dev->data->rx_queues[i] = NULL;
    1059                 :            :         }
    1060                 :            : 
    1061                 :          0 :         dev->tx_qconf = tx_qconf;
    1062                 :          0 :         dev->rx_qconf = rx_qconf;
    1063                 :          0 :         return 0;
    1064                 :            : 
    1065                 :          0 : fail:
    1066                 :          0 :         free(tx_qconf);
    1067                 :            :         free(rx_qconf);
    1068                 :          0 :         return -ENOMEM;
    1069                 :            : }
    1070                 :            : 
    1071                 :            : static int
    1072                 :          0 : nix_restore_queue_cfg(struct rte_eth_dev *eth_dev)
    1073                 :            : {
    1074                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1075                 :          0 :         const struct eth_dev_ops *dev_ops = eth_dev->dev_ops;
    1076                 :          0 :         struct cnxk_eth_qconf *tx_qconf = dev->tx_qconf;
    1077                 :          0 :         struct cnxk_eth_qconf *rx_qconf = dev->rx_qconf;
    1078                 :            :         int rc, i, nb_rxq, nb_txq;
    1079                 :            : 
    1080                 :          0 :         nb_rxq = RTE_MIN(dev->nb_rxq, eth_dev->data->nb_rx_queues);
    1081                 :          0 :         nb_txq = RTE_MIN(dev->nb_txq, eth_dev->data->nb_tx_queues);
    1082                 :            : 
    1083                 :            :         rc = -ENOMEM;
    1084                 :            :         /* Setup tx & rx queues with previous configuration so
    1085                 :            :          * that the queues can be functional in cases like ports
    1086                 :            :          * are started without re configuring queues.
    1087                 :            :          *
    1088                 :            :          * Usual re config sequence is like below:
    1089                 :            :          * port_configure() {
    1090                 :            :          *      if(reconfigure) {
    1091                 :            :          *              queue_release()
    1092                 :            :          *              queue_setup()
    1093                 :            :          *      }
    1094                 :            :          *      queue_configure() {
    1095                 :            :          *              queue_release()
    1096                 :            :          *              queue_setup()
    1097                 :            :          *      }
    1098                 :            :          * }
    1099                 :            :          * port_start()
    1100                 :            :          *
    1101                 :            :          * In some application's control path, queue_configure() would
    1102                 :            :          * NOT be invoked for TXQs/RXQs in port_configure().
    1103                 :            :          * In such cases, queues can be functional after start as the
    1104                 :            :          * queues are already setup in port_configure().
    1105                 :            :          */
    1106         [ #  # ]:          0 :         for (i = 0; i < nb_txq; i++) {
    1107         [ #  # ]:          0 :                 if (!tx_qconf[i].valid)
    1108                 :          0 :                         continue;
    1109                 :          0 :                 rc = dev_ops->tx_queue_setup(eth_dev, i, tx_qconf[i].nb_desc, 0,
    1110                 :          0 :                                              &tx_qconf[i].conf.tx);
    1111         [ #  # ]:          0 :                 if (rc) {
    1112                 :          0 :                         plt_err("Failed to setup tx queue rc=%d", rc);
    1113         [ #  # ]:          0 :                         for (i -= 1; i >= 0; i--)
    1114                 :          0 :                                 dev_ops->tx_queue_release(eth_dev, i);
    1115                 :          0 :                         goto fail;
    1116                 :            :                 }
    1117                 :            :         }
    1118                 :            : 
    1119                 :          0 :         free(tx_qconf);
    1120                 :            :         tx_qconf = NULL;
    1121                 :            : 
    1122         [ #  # ]:          0 :         for (i = 0; i < nb_rxq; i++) {
    1123         [ #  # ]:          0 :                 if (!rx_qconf[i].valid)
    1124                 :          0 :                         continue;
    1125                 :          0 :                 rc = dev_ops->rx_queue_setup(eth_dev, i, rx_qconf[i].nb_desc, 0,
    1126                 :          0 :                                              &rx_qconf[i].conf.rx,
    1127                 :            :                                              rx_qconf[i].mp);
    1128         [ #  # ]:          0 :                 if (rc) {
    1129                 :          0 :                         plt_err("Failed to setup rx queue rc=%d", rc);
    1130         [ #  # ]:          0 :                         for (i -= 1; i >= 0; i--)
    1131                 :          0 :                                 dev_ops->rx_queue_release(eth_dev, i);
    1132                 :          0 :                         goto tx_queue_release;
    1133                 :            :                 }
    1134                 :            :         }
    1135                 :            : 
    1136                 :          0 :         free(rx_qconf);
    1137                 :            :         rx_qconf = NULL;
    1138                 :            : 
    1139                 :          0 :         return 0;
    1140                 :            : 
    1141                 :            : tx_queue_release:
    1142         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
    1143                 :          0 :                 dev_ops->tx_queue_release(eth_dev, i);
    1144                 :          0 : fail:
    1145                 :          0 :         free(tx_qconf);
    1146                 :          0 :         free(rx_qconf);
    1147                 :            : 
    1148                 :          0 :         return rc;
    1149                 :            : }
    1150                 :            : 
    1151                 :            : static void
    1152                 :            : nix_set_nop_rxtx_function(struct rte_eth_dev *eth_dev)
    1153                 :            : {
    1154                 :            :         /* These dummy functions are required for supporting
    1155                 :            :          * some applications which reconfigure queues without
    1156                 :            :          * stopping tx burst and rx burst threads.
    1157                 :            :          * When the queues context is saved, txq/rxqs are released
    1158                 :            :          * which caused app crash since rx/tx burst is still
    1159                 :            :          * on different lcores
    1160                 :            :          */
    1161                 :          0 :         eth_dev->tx_pkt_burst = rte_eth_pkt_burst_dummy;
    1162                 :          0 :         eth_dev->rx_pkt_burst = rte_eth_pkt_burst_dummy;
    1163                 :            :         rte_mb();
    1164                 :            : }
    1165                 :            : 
    1166                 :            : static int
    1167                 :          0 : nix_lso_tun_fmt_update(struct cnxk_eth_dev *dev)
    1168                 :            : {
    1169                 :            :         uint8_t udp_tun[ROC_NIX_LSO_TUN_MAX];
    1170                 :            :         uint8_t tun[ROC_NIX_LSO_TUN_MAX];
    1171                 :          0 :         struct roc_nix *nix = &dev->nix;
    1172                 :            :         int rc;
    1173                 :            : 
    1174                 :          0 :         rc = roc_nix_lso_fmt_get(nix, udp_tun, tun);
    1175         [ #  # ]:          0 :         if (rc)
    1176                 :            :                 return rc;
    1177                 :            : 
    1178                 :          0 :         dev->lso_tun_fmt = ((uint64_t)tun[ROC_NIX_LSO_TUN_V4V4] |
    1179                 :          0 :                             (uint64_t)tun[ROC_NIX_LSO_TUN_V4V6] << 8 |
    1180                 :          0 :                             (uint64_t)tun[ROC_NIX_LSO_TUN_V6V4] << 16 |
    1181                 :          0 :                             (uint64_t)tun[ROC_NIX_LSO_TUN_V6V6] << 24);
    1182                 :            : 
    1183                 :          0 :         dev->lso_tun_fmt |= ((uint64_t)udp_tun[ROC_NIX_LSO_TUN_V4V4] << 32 |
    1184                 :          0 :                              (uint64_t)udp_tun[ROC_NIX_LSO_TUN_V4V6] << 40 |
    1185                 :          0 :                              (uint64_t)udp_tun[ROC_NIX_LSO_TUN_V6V4] << 48 |
    1186                 :          0 :                              (uint64_t)udp_tun[ROC_NIX_LSO_TUN_V6V6] << 56);
    1187                 :          0 :         return 0;
    1188                 :            : }
    1189                 :            : 
    1190                 :            : static int
    1191                 :          0 : nix_lso_fmt_setup(struct cnxk_eth_dev *dev)
    1192                 :            : {
    1193                 :          0 :         struct roc_nix *nix = &dev->nix;
    1194                 :            :         int rc;
    1195                 :            : 
    1196                 :            :         /* Nothing much to do if offload is not enabled */
    1197         [ #  # ]:          0 :         if (!(dev->tx_offloads &
    1198                 :            :               (RTE_ETH_TX_OFFLOAD_TCP_TSO | RTE_ETH_TX_OFFLOAD_VXLAN_TNL_TSO |
    1199                 :            :                RTE_ETH_TX_OFFLOAD_GENEVE_TNL_TSO | RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO)))
    1200                 :            :                 return 0;
    1201                 :            : 
    1202                 :            :         /* Setup LSO formats in AF. Its a no-op if other ethdev has
    1203                 :            :          * already set it up
    1204                 :            :          */
    1205                 :          0 :         rc = roc_nix_lso_fmt_setup(nix);
    1206         [ #  # ]:          0 :         if (rc)
    1207                 :            :                 return rc;
    1208                 :            : 
    1209                 :          0 :         return nix_lso_tun_fmt_update(dev);
    1210                 :            : }
    1211                 :            : 
    1212                 :            : int
    1213                 :          0 : cnxk_nix_configure(struct rte_eth_dev *eth_dev)
    1214                 :            : {
    1215                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1216                 :            :         struct rte_eth_dev_data *data = eth_dev->data;
    1217                 :            :         struct rte_eth_conf *conf = &data->dev_conf;
    1218                 :            :         struct rte_eth_rxmode *rxmode = &conf->rxmode;
    1219                 :            :         struct rte_eth_txmode *txmode = &conf->txmode;
    1220                 :            :         char ea_fmt[RTE_ETHER_ADDR_FMT_SIZE];
    1221                 :          0 :         struct roc_nix_fc_cfg fc_cfg = {0};
    1222                 :          0 :         struct roc_nix *nix = &dev->nix;
    1223                 :            :         uint16_t nb_rxq, nb_txq, nb_cq;
    1224                 :            :         struct rte_ether_addr *ea;
    1225                 :            :         uint64_t rx_cfg;
    1226                 :            :         void *qs;
    1227                 :            :         int rc;
    1228                 :            : 
    1229                 :            :         rc = -EINVAL;
    1230                 :            : 
    1231                 :            :         /* Sanity checks */
    1232         [ #  # ]:          0 :         if (rte_eal_has_hugepages() == 0) {
    1233                 :          0 :                 plt_err("Huge page is not configured");
    1234                 :          0 :                 goto fail_configure;
    1235                 :            :         }
    1236                 :            : 
    1237         [ #  # ]:          0 :         if (conf->dcb_capability_en == 1) {
    1238                 :          0 :                 plt_err("dcb enable is not supported");
    1239                 :          0 :                 goto fail_configure;
    1240                 :            :         }
    1241                 :            : 
    1242         [ #  # ]:          0 :         if (rxmode->mq_mode != RTE_ETH_MQ_RX_NONE &&
    1243                 :            :             rxmode->mq_mode != RTE_ETH_MQ_RX_RSS) {
    1244                 :          0 :                 plt_err("Unsupported mq rx mode %d", rxmode->mq_mode);
    1245                 :          0 :                 goto fail_configure;
    1246                 :            :         }
    1247                 :            : 
    1248         [ #  # ]:          0 :         if (txmode->mq_mode != RTE_ETH_MQ_TX_NONE) {
    1249                 :          0 :                 plt_err("Unsupported mq tx mode %d", txmode->mq_mode);
    1250                 :          0 :                 goto fail_configure;
    1251                 :            :         }
    1252                 :            : 
    1253                 :            :         /* Free the resources allocated from the previous configure */
    1254         [ #  # ]:          0 :         if (dev->configured == 1) {
    1255                 :            :                 /* Unregister queue irq's */
    1256                 :          0 :                 roc_nix_unregister_queue_irqs(nix);
    1257                 :            : 
    1258                 :            :                 /* Unregister CQ irqs if present */
    1259         [ #  # ]:          0 :                 if (eth_dev->data->dev_conf.intr_conf.rxq)
    1260                 :          0 :                         roc_nix_unregister_cq_irqs(nix);
    1261                 :            : 
    1262                 :            :                 /* Set no-op functions */
    1263                 :            :                 nix_set_nop_rxtx_function(eth_dev);
    1264                 :            :                 /* Store queue config for later */
    1265                 :          0 :                 rc = nix_store_queue_cfg_and_then_release(eth_dev);
    1266         [ #  # ]:          0 :                 if (rc)
    1267                 :          0 :                         goto fail_configure;
    1268                 :            : 
    1269                 :            :                 /* Disable and free rte_meter entries */
    1270                 :          0 :                 rc = nix_meter_fini(dev);
    1271         [ #  # ]:          0 :                 if (rc)
    1272                 :          0 :                         goto fail_configure;
    1273                 :            : 
    1274                 :            :                 /* Cleanup security support */
    1275                 :          0 :                 rc = nix_security_release(dev);
    1276         [ #  # ]:          0 :                 if (rc)
    1277                 :          0 :                         goto fail_configure;
    1278                 :            : 
    1279                 :          0 :                 roc_nix_tm_fini(nix);
    1280                 :          0 :                 nix_rxchan_cfg_disable(dev);
    1281                 :          0 :                 roc_nix_lf_free(nix);
    1282                 :            :         }
    1283                 :            : 
    1284                 :          0 :         dev->rx_offloads = rxmode->offloads;
    1285                 :          0 :         dev->tx_offloads = txmode->offloads;
    1286                 :            : 
    1287         [ #  # ]:          0 :         if (nix->custom_inb_sa)
    1288                 :          0 :                 dev->rx_offloads |= RTE_ETH_RX_OFFLOAD_SECURITY;
    1289                 :            : 
    1290                 :            :         /* Prepare rx cfg */
    1291                 :            :         rx_cfg = ROC_NIX_LF_RX_CFG_DIS_APAD;
    1292         [ #  # ]:          0 :         if (dev->rx_offloads &
    1293                 :            :             (RTE_ETH_RX_OFFLOAD_TCP_CKSUM | RTE_ETH_RX_OFFLOAD_UDP_CKSUM)) {
    1294                 :            :                 rx_cfg |= ROC_NIX_LF_RX_CFG_CSUM_OL4;
    1295                 :            :                 rx_cfg |= ROC_NIX_LF_RX_CFG_CSUM_IL4;
    1296                 :            :         }
    1297         [ #  # ]:          0 :         rx_cfg |= (ROC_NIX_LF_RX_CFG_DROP_RE | ROC_NIX_LF_RX_CFG_L2_LEN_ERR |
    1298                 :            :                    ROC_NIX_LF_RX_CFG_LEN_IL4 | ROC_NIX_LF_RX_CFG_LEN_IL3 |
    1299                 :            :                    ROC_NIX_LF_RX_CFG_LEN_OL4 | ROC_NIX_LF_RX_CFG_LEN_OL3);
    1300                 :            : 
    1301                 :            :         rx_cfg &= (ROC_NIX_LF_RX_CFG_RX_ERROR_MASK);
    1302                 :            : 
    1303         [ #  # ]:          0 :         if (roc_feature_nix_has_drop_re_mask())
    1304                 :          0 :                 rx_cfg |= (ROC_NIX_RE_CRC8_PCH | ROC_NIX_RE_MACSEC);
    1305                 :            : 
    1306         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
    1307                 :          0 :                 rx_cfg |= ROC_NIX_LF_RX_CFG_IP6_UDP_OPT;
    1308                 :            :                 /* Disable drop re if rx offload security is enabled and
    1309                 :            :                  * platform does not support it.
    1310                 :            :                  */
    1311         [ #  # ]:          0 :                 if (dev->ipsecd_drop_re_dis)
    1312                 :          0 :                         rx_cfg &= ~(ROC_NIX_LF_RX_CFG_DROP_RE);
    1313                 :            :         }
    1314                 :            : 
    1315                 :          0 :         nb_rxq = RTE_MAX(data->nb_rx_queues, 1);
    1316                 :          0 :         nb_txq = RTE_MAX(data->nb_tx_queues, 1);
    1317                 :            : 
    1318         [ #  # ]:          0 :         if (roc_nix_is_lbk(nix))
    1319                 :          0 :                 nix->enable_loop = eth_dev->data->dev_conf.lpbk_mode;
    1320                 :            : 
    1321                 :          0 :         nix->tx_compl_ena = dev->tx_compl_ena;
    1322                 :            : 
    1323                 :            :         /* Alloc a nix lf */
    1324                 :          0 :         rc = roc_nix_lf_alloc(nix, nb_rxq, nb_txq, rx_cfg);
    1325         [ #  # ]:          0 :         if (rc) {
    1326                 :          0 :                 plt_err("Failed to init nix_lf rc=%d", rc);
    1327                 :          0 :                 goto fail_configure;
    1328                 :            :         }
    1329                 :            : 
    1330         [ #  # ]:          0 :         if (!roc_nix_is_vf_or_sdp(nix)) {
    1331                 :            :                 /* Sync same MAC address to CGX/RPM table */
    1332                 :          0 :                 rc = roc_nix_mac_addr_set(nix, dev->mac_addr);
    1333         [ #  # ]:          0 :                 if (rc) {
    1334                 :          0 :                         plt_err("Failed to set mac addr, rc=%d", rc);
    1335                 :          0 :                         goto fail_configure;
    1336                 :            :                 }
    1337                 :            :         }
    1338                 :            : 
    1339                 :            :         /* Check if ptp is enable in PF owning this VF*/
    1340   [ #  #  #  # ]:          0 :         if (!roc_nix_is_pf(nix) && (!roc_nix_is_sdp(nix)))
    1341                 :          0 :                 dev->ptp_en = roc_nix_ptp_is_enable(nix);
    1342                 :            : 
    1343                 :          0 :         dev->npc.channel = roc_nix_get_base_chan(nix);
    1344                 :            : 
    1345                 :          0 :         nb_rxq = data->nb_rx_queues;
    1346                 :          0 :         nb_txq = data->nb_tx_queues;
    1347                 :            :         nb_cq = nb_rxq;
    1348         [ #  # ]:          0 :         if (nix->tx_compl_ena)
    1349                 :          0 :                 nb_cq += nb_txq;
    1350                 :            :         rc = -ENOMEM;
    1351         [ #  # ]:          0 :         if (nb_rxq) {
    1352                 :            :                 /* Allocate memory for roc rq's and cq's */
    1353                 :          0 :                 qs = plt_zmalloc(sizeof(struct roc_nix_rq) * nb_rxq, 0);
    1354         [ #  # ]:          0 :                 if (!qs) {
    1355                 :          0 :                         plt_err("Failed to alloc rqs");
    1356                 :          0 :                         goto free_nix_lf;
    1357                 :            :                 }
    1358                 :          0 :                 dev->rqs = qs;
    1359                 :            :         }
    1360                 :            : 
    1361         [ #  # ]:          0 :         if (nb_txq) {
    1362                 :            :                 /* Allocate memory for roc sq's */
    1363                 :          0 :                 qs = plt_zmalloc(sizeof(struct roc_nix_sq) * nb_txq, 0);
    1364         [ #  # ]:          0 :                 if (!qs) {
    1365                 :          0 :                         plt_err("Failed to alloc sqs");
    1366                 :          0 :                         goto free_nix_lf;
    1367                 :            :                 }
    1368                 :          0 :                 dev->sqs = qs;
    1369                 :            :         }
    1370                 :            : 
    1371         [ #  # ]:          0 :         if (nb_cq) {
    1372                 :          0 :                 qs = plt_zmalloc(sizeof(struct roc_nix_cq) * nb_cq, 0);
    1373         [ #  # ]:          0 :                 if (!qs) {
    1374                 :          0 :                         plt_err("Failed to alloc cqs");
    1375                 :          0 :                         goto free_nix_lf;
    1376                 :            :                 }
    1377                 :          0 :                 dev->cqs = qs;
    1378                 :            :         }
    1379                 :            : 
    1380                 :            :         /* Re-enable NIX LF error interrupts */
    1381                 :          0 :         roc_nix_err_intr_ena_dis(nix, true);
    1382                 :          0 :         roc_nix_ras_intr_ena_dis(nix, true);
    1383                 :            : 
    1384         [ #  # ]:          0 :         if (nix->rx_ptp_ena &&
    1385         [ #  # ]:          0 :             dev->npc.switch_header_type == ROC_PRIV_FLAGS_HIGIG) {
    1386                 :          0 :                 plt_err("Both PTP and switch header enabled");
    1387                 :          0 :                 goto free_nix_lf;
    1388                 :            :         }
    1389                 :            : 
    1390                 :          0 :         rc = roc_nix_switch_hdr_set(nix, dev->npc.switch_header_type,
    1391                 :          0 :                                     dev->npc.pre_l2_size_offset,
    1392                 :          0 :                                     dev->npc.pre_l2_size_offset_mask,
    1393                 :          0 :                                     dev->npc.pre_l2_size_shift_dir);
    1394         [ #  # ]:          0 :         if (rc) {
    1395                 :          0 :                 plt_err("Failed to enable switch type nix_lf rc=%d", rc);
    1396                 :          0 :                 goto free_nix_lf;
    1397                 :            :         }
    1398                 :            : 
    1399                 :            :         /* Setup LSO if needed */
    1400                 :          0 :         rc = nix_lso_fmt_setup(dev);
    1401         [ #  # ]:          0 :         if (rc) {
    1402                 :          0 :                 plt_err("Failed to setup nix lso format fields, rc=%d", rc);
    1403                 :          0 :                 goto free_nix_lf;
    1404                 :            :         }
    1405                 :            : 
    1406                 :            :         /* Configure RSS */
    1407                 :          0 :         rc = nix_rss_default_setup(dev);
    1408         [ #  # ]:          0 :         if (rc) {
    1409                 :          0 :                 plt_err("Failed to configure rss rc=%d", rc);
    1410                 :          0 :                 goto free_nix_lf;
    1411                 :            :         }
    1412                 :            : 
    1413                 :            :         /* Overwrite default RSS setup if requested by user */
    1414                 :          0 :         rc = cnxk_nix_rss_hash_update(eth_dev, &conf->rx_adv_conf.rss_conf);
    1415         [ #  # ]:          0 :         if (rc) {
    1416                 :          0 :                 plt_err("Failed to configure rss rc=%d", rc);
    1417                 :          0 :                 goto free_nix_lf;
    1418                 :            :         }
    1419                 :            : 
    1420                 :            :         /* Init the default TM scheduler hierarchy */
    1421                 :          0 :         rc = roc_nix_tm_init(nix);
    1422         [ #  # ]:          0 :         if (rc) {
    1423                 :          0 :                 plt_err("Failed to init traffic manager, rc=%d", rc);
    1424                 :          0 :                 goto free_nix_lf;
    1425                 :            :         }
    1426                 :            : 
    1427                 :          0 :         rc = nix_ingress_policer_setup(dev);
    1428         [ #  # ]:          0 :         if (rc) {
    1429                 :          0 :                 plt_err("Failed to setup ingress policer rc=%d", rc);
    1430                 :          0 :                 goto free_nix_lf;
    1431                 :            :         }
    1432                 :            : 
    1433                 :          0 :         rc = roc_nix_tm_hierarchy_enable(nix, ROC_NIX_TM_DEFAULT, false);
    1434         [ #  # ]:          0 :         if (rc) {
    1435                 :          0 :                 plt_err("Failed to enable default tm hierarchy, rc=%d", rc);
    1436                 :          0 :                 goto tm_fini;
    1437                 :            :         }
    1438                 :            : 
    1439                 :            :         /* Register queue IRQs */
    1440                 :          0 :         rc = roc_nix_register_queue_irqs(nix);
    1441         [ #  # ]:          0 :         if (rc) {
    1442                 :          0 :                 plt_err("Failed to register queue interrupts rc=%d", rc);
    1443                 :          0 :                 goto tm_fini;
    1444                 :            :         }
    1445                 :            : 
    1446                 :            :         /* Register cq IRQs */
    1447         [ #  # ]:          0 :         if (eth_dev->data->dev_conf.intr_conf.rxq) {
    1448         [ #  # ]:          0 :                 if (eth_dev->data->nb_rx_queues > dev->nix.cints) {
    1449                 :          0 :                         plt_err("Rx interrupt cannot be enabled, rxq > %d",
    1450                 :            :                                 dev->nix.cints);
    1451                 :          0 :                         goto q_irq_fini;
    1452                 :            :                 }
    1453                 :            :                 /* Rx interrupt feature cannot work with vector mode because,
    1454                 :            :                  * vector mode does not process packets unless min 4 pkts are
    1455                 :            :                  * received, while cq interrupts are generated even for 1 pkt
    1456                 :            :                  * in the CQ.
    1457                 :            :                  */
    1458                 :          0 :                 dev->scalar_ena = true;
    1459                 :            : 
    1460                 :          0 :                 rc = roc_nix_register_cq_irqs(nix);
    1461         [ #  # ]:          0 :                 if (rc) {
    1462                 :          0 :                         plt_err("Failed to register CQ interrupts rc=%d", rc);
    1463                 :          0 :                         goto q_irq_fini;
    1464                 :            :                 }
    1465                 :            :         }
    1466                 :            : 
    1467         [ #  # ]:          0 :         if (roc_nix_is_lbk(nix))
    1468                 :          0 :                 goto skip_lbk_setup;
    1469                 :            : 
    1470                 :            :         /* Configure loop back mode */
    1471                 :          0 :         rc = roc_nix_mac_loopback_enable(nix,
    1472                 :          0 :                                          eth_dev->data->dev_conf.lpbk_mode);
    1473         [ #  # ]:          0 :         if (rc) {
    1474                 :          0 :                 plt_err("Failed to configure cgx loop back mode rc=%d", rc);
    1475                 :          0 :                 goto cq_fini;
    1476                 :            :         }
    1477                 :            : 
    1478                 :          0 : skip_lbk_setup:
    1479                 :            :         /* Setup Inline security support */
    1480                 :          0 :         rc = nix_security_setup(dev);
    1481         [ #  # ]:          0 :         if (rc)
    1482                 :          0 :                 goto cq_fini;
    1483                 :            : 
    1484                 :            :         /* Init flow control configuration */
    1485         [ #  # ]:          0 :         if (!roc_nix_is_esw(nix)) {
    1486                 :          0 :                 fc_cfg.type = ROC_NIX_FC_RXCHAN_CFG;
    1487                 :          0 :                 fc_cfg.rxchan_cfg.enable = true;
    1488                 :          0 :                 rc = roc_nix_fc_config_set(nix, &fc_cfg);
    1489         [ #  # ]:          0 :                 if (rc) {
    1490                 :          0 :                         plt_err("Failed to initialize flow control rc=%d", rc);
    1491                 :          0 :                         goto cq_fini;
    1492                 :            :                 }
    1493                 :            :         }
    1494                 :            : 
    1495                 :            :         /* Update flow control configuration to PMD */
    1496                 :          0 :         rc = nix_init_flow_ctrl_config(eth_dev);
    1497         [ #  # ]:          0 :         if (rc) {
    1498                 :          0 :                 plt_err("Failed to initialize flow control rc=%d", rc);
    1499                 :          0 :                 goto cq_fini;
    1500                 :            :         }
    1501                 :            : 
    1502                 :            :         /*
    1503                 :            :          * Restore queue config when reconfigure followed by
    1504                 :            :          * reconfigure and no queue configure invoked from application case.
    1505                 :            :          */
    1506         [ #  # ]:          0 :         if (dev->configured == 1) {
    1507                 :          0 :                 rc = nix_restore_queue_cfg(eth_dev);
    1508         [ #  # ]:          0 :                 if (rc)
    1509                 :          0 :                         goto sec_release;
    1510                 :            :         }
    1511                 :            : 
    1512                 :            :         /* Update the mac address */
    1513                 :          0 :         ea = eth_dev->data->mac_addrs;
    1514         [ #  # ]:          0 :         memcpy(ea, dev->mac_addr, RTE_ETHER_ADDR_LEN);
    1515         [ #  # ]:          0 :         if (rte_is_zero_ether_addr(ea))
    1516                 :          0 :                 rte_eth_random_addr((uint8_t *)ea);
    1517                 :            : 
    1518                 :          0 :         rte_ether_format_addr(ea_fmt, RTE_ETHER_ADDR_FMT_SIZE, ea);
    1519                 :            : 
    1520                 :          0 :         plt_nix_dbg("Configured port%d mac=%s nb_rxq=%d nb_txq=%d"
    1521                 :            :                     " rx_offloads=0x%" PRIx64 " tx_offloads=0x%" PRIx64 "",
    1522                 :            :                     eth_dev->data->port_id, ea_fmt, nb_rxq, nb_txq,
    1523                 :            :                     dev->rx_offloads, dev->tx_offloads);
    1524                 :            : 
    1525                 :            :         /* All good */
    1526                 :          0 :         dev->configured = 1;
    1527                 :          0 :         dev->nb_rxq = data->nb_rx_queues;
    1528                 :          0 :         dev->nb_txq = data->nb_tx_queues;
    1529                 :          0 :         return 0;
    1530                 :            : 
    1531                 :            : sec_release:
    1532                 :          0 :         rc |= nix_security_release(dev);
    1533                 :          0 : cq_fini:
    1534                 :          0 :         roc_nix_unregister_cq_irqs(nix);
    1535                 :          0 : q_irq_fini:
    1536                 :          0 :         roc_nix_unregister_queue_irqs(nix);
    1537                 :          0 : tm_fini:
    1538                 :          0 :         roc_nix_tm_fini(nix);
    1539                 :          0 : free_nix_lf:
    1540                 :          0 :         nix_free_queue_mem(dev);
    1541                 :          0 :         rc |= nix_rxchan_cfg_disable(dev);
    1542                 :          0 :         rc |= roc_nix_lf_free(nix);
    1543                 :          0 : fail_configure:
    1544                 :          0 :         dev->configured = 0;
    1545                 :          0 :         return rc;
    1546                 :            : }
    1547                 :            : 
    1548                 :            : int
    1549         [ #  # ]:          0 : cnxk_nix_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t qid)
    1550                 :            : {
    1551                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1552                 :            :         struct rte_eth_dev_data *data = eth_dev->data;
    1553                 :          0 :         struct roc_nix_sq *sq = &dev->sqs[qid];
    1554                 :            :         int rc = -EINVAL;
    1555                 :            : 
    1556         [ #  # ]:          0 :         if (data->tx_queue_state[qid] == RTE_ETH_QUEUE_STATE_STARTED)
    1557                 :            :                 return 0;
    1558                 :            : 
    1559                 :          0 :         rc = roc_nix_sq_ena_dis(sq, true);
    1560         [ #  # ]:          0 :         if (rc) {
    1561                 :          0 :                 plt_err("Failed to enable sq aura fc, txq=%u, rc=%d", qid, rc);
    1562                 :          0 :                 goto done;
    1563                 :            :         }
    1564                 :            : 
    1565                 :          0 :         data->tx_queue_state[qid] = RTE_ETH_QUEUE_STATE_STARTED;
    1566                 :            : done:
    1567                 :            :         return rc;
    1568                 :            : }
    1569                 :            : 
    1570                 :            : int
    1571         [ #  # ]:          0 : cnxk_nix_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t qid)
    1572                 :            : {
    1573                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1574                 :            :         struct rte_eth_dev_data *data = eth_dev->data;
    1575                 :          0 :         struct roc_nix_sq *sq = &dev->sqs[qid];
    1576                 :            :         int rc;
    1577                 :            : 
    1578         [ #  # ]:          0 :         if (data->tx_queue_state[qid] == RTE_ETH_QUEUE_STATE_STOPPED)
    1579                 :            :                 return 0;
    1580                 :            : 
    1581                 :          0 :         rc = roc_nix_sq_ena_dis(sq, false);
    1582         [ #  # ]:          0 :         if (rc) {
    1583                 :          0 :                 plt_err("Failed to disable sqb aura fc, txq=%u, rc=%d", qid,
    1584                 :            :                         rc);
    1585                 :          0 :                 goto done;
    1586                 :            :         }
    1587                 :            : 
    1588                 :          0 :         data->tx_queue_state[qid] = RTE_ETH_QUEUE_STATE_STOPPED;
    1589                 :            : done:
    1590                 :            :         return rc;
    1591                 :            : }
    1592                 :            : 
    1593                 :            : static int
    1594         [ #  # ]:          0 : cnxk_nix_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t qid)
    1595                 :            : {
    1596                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1597                 :            :         struct rte_eth_dev_data *data = eth_dev->data;
    1598                 :          0 :         struct roc_nix_rq *rq = &dev->rqs[qid];
    1599                 :            :         int rc;
    1600                 :            : 
    1601         [ #  # ]:          0 :         if (data->rx_queue_state[qid] == RTE_ETH_QUEUE_STATE_STARTED)
    1602                 :            :                 return 0;
    1603                 :            : 
    1604                 :          0 :         rc = roc_nix_rq_ena_dis(rq, true);
    1605         [ #  # ]:          0 :         if (rc) {
    1606                 :          0 :                 plt_err("Failed to enable rxq=%u, rc=%d", qid, rc);
    1607                 :          0 :                 goto done;
    1608                 :            :         }
    1609                 :            : 
    1610                 :          0 :         data->rx_queue_state[qid] = RTE_ETH_QUEUE_STATE_STARTED;
    1611                 :            : done:
    1612                 :            :         return rc;
    1613                 :            : }
    1614                 :            : 
    1615                 :            : static int
    1616         [ #  # ]:          0 : cnxk_nix_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t qid)
    1617                 :            : {
    1618                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1619                 :            :         struct rte_eth_dev_data *data = eth_dev->data;
    1620                 :          0 :         struct roc_nix_rq *rq = &dev->rqs[qid];
    1621                 :            :         int rc;
    1622                 :            : 
    1623         [ #  # ]:          0 :         if (data->rx_queue_state[qid] == RTE_ETH_QUEUE_STATE_STOPPED)
    1624                 :            :                 return 0;
    1625                 :            : 
    1626                 :          0 :         rc = roc_nix_rq_ena_dis(rq, false);
    1627         [ #  # ]:          0 :         if (rc) {
    1628                 :          0 :                 plt_err("Failed to disable rxq=%u, rc=%d", qid, rc);
    1629                 :          0 :                 goto done;
    1630                 :            :         }
    1631                 :            : 
    1632                 :          0 :         data->rx_queue_state[qid] = RTE_ETH_QUEUE_STATE_STOPPED;
    1633                 :            : done:
    1634                 :            :         return rc;
    1635                 :            : }
    1636                 :            : 
    1637                 :            : static int
    1638         [ #  # ]:          0 : cnxk_nix_dev_stop(struct rte_eth_dev *eth_dev)
    1639                 :            : {
    1640                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1641         [ #  # ]:          0 :         const struct eth_dev_ops *dev_ops = eth_dev->dev_ops;
    1642                 :            :         struct rte_mbuf *rx_pkts[32];
    1643                 :            :         struct rte_eth_link link;
    1644                 :            :         int count, i, j, rc;
    1645                 :            :         void *rxq;
    1646                 :            : 
    1647                 :            :         /* In case of Inline IPSec, will need to avoid disabling the MCAM rules and NPC Rx
    1648                 :            :          * in this routine to continue processing of second pass inflight packets if any.
    1649                 :            :          * Drop of second pass packets will leak first pass buffers on some platforms
    1650                 :            :          * due to hardware limitations.
    1651                 :            :          */
    1652         [ #  # ]:          0 :         if (roc_feature_nix_has_second_pass_drop() ||
    1653         [ #  # ]:          0 :             !(dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)) {
    1654                 :            :                 /* Disable all the NPC entries */
    1655                 :          0 :                 rc = roc_npc_mcam_enable_all_entries(&dev->npc, 0);
    1656         [ #  # ]:          0 :                 if (rc)
    1657                 :            :                         return rc;
    1658                 :            : 
    1659                 :            :                 /* Disable Rx via NPC */
    1660                 :          0 :                 roc_nix_npc_rx_ena_dis(&dev->nix, false);
    1661                 :            :         }
    1662                 :            : 
    1663                 :            :         /* Stop link change events */
    1664         [ #  # ]:          0 :         if (!roc_nix_is_vf_or_sdp(&dev->nix))
    1665                 :          0 :                 roc_nix_mac_link_event_start_stop(&dev->nix, false);
    1666                 :            : 
    1667                 :          0 :         roc_nix_inl_outb_soft_exp_poll_switch(&dev->nix, false);
    1668                 :            : 
    1669                 :            :         /* Stop inline device RQ first */
    1670         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)
    1671                 :          0 :                 roc_nix_inl_rq_ena_dis(&dev->nix, false);
    1672                 :            : 
    1673                 :            :         /* Stop rx queues and free up pkts pending */
    1674         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
    1675                 :          0 :                 rc = dev_ops->rx_queue_stop(eth_dev, i);
    1676         [ #  # ]:          0 :                 if (rc)
    1677                 :          0 :                         continue;
    1678                 :            : 
    1679                 :          0 :                 rxq = eth_dev->data->rx_queues[i];
    1680                 :          0 :                 count = dev->rx_pkt_burst_no_offload(rxq, rx_pkts, 32);
    1681         [ #  # ]:          0 :                 while (count) {
    1682         [ #  # ]:          0 :                         for (j = 0; j < count; j++)
    1683                 :          0 :                                 rte_pktmbuf_free(rx_pkts[j]);
    1684                 :          0 :                         count = dev->rx_pkt_burst_no_offload(rxq, rx_pkts, 32);
    1685                 :            :                 }
    1686                 :            :         }
    1687                 :            : 
    1688                 :            :         /* Stop tx queues  */
    1689         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
    1690                 :          0 :                 dev_ops->tx_queue_stop(eth_dev, i);
    1691                 :            : 
    1692                 :            :         /* Bring down link status internally */
    1693                 :            :         memset(&link, 0, sizeof(link));
    1694                 :          0 :         rte_eth_linkstatus_set(eth_dev, &link);
    1695                 :            : 
    1696                 :          0 :         return 0;
    1697                 :            : }
    1698                 :            : 
    1699                 :            : int
    1700         [ #  # ]:          0 : cnxk_nix_dev_start(struct rte_eth_dev *eth_dev)
    1701                 :            : {
    1702                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1703                 :            :         int rc, i;
    1704                 :            : 
    1705   [ #  #  #  # ]:          0 :         if (eth_dev->data->nb_rx_queues != 0 && !dev->ptp_en) {
    1706                 :          0 :                 rc = nix_recalc_mtu(eth_dev);
    1707         [ #  # ]:          0 :                 if (rc)
    1708                 :            :                         return rc;
    1709                 :            :         }
    1710                 :            : 
    1711                 :            :         /* Start rx queues */
    1712         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
    1713                 :          0 :                 rc = cnxk_nix_rx_queue_start(eth_dev, i);
    1714         [ #  # ]:          0 :                 if (rc)
    1715                 :          0 :                         return rc;
    1716                 :            :         }
    1717                 :            : 
    1718         [ #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
    1719                 :          0 :                 rc = roc_nix_inl_rq_ena_dis(&dev->nix, true);
    1720         [ #  # ]:          0 :                 if (rc) {
    1721                 :          0 :                         plt_err("Failed to enable Inline device RQ, rc=%d", rc);
    1722                 :          0 :                         return rc;
    1723                 :            :                 }
    1724                 :            :         }
    1725                 :            : 
    1726                 :            :         /* Start tx queues  */
    1727         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
    1728                 :          0 :                 rc = cnxk_nix_tx_queue_start(eth_dev, i);
    1729         [ #  # ]:          0 :                 if (rc)
    1730                 :          0 :                         return rc;
    1731                 :            :         }
    1732                 :            : 
    1733                 :            :         /* Update Flow control configuration */
    1734                 :          0 :         rc = nix_update_flow_ctrl_config(eth_dev);
    1735         [ #  # ]:          0 :         if (rc) {
    1736                 :          0 :                 plt_err("Failed to enable flow control. error code(%d)", rc);
    1737                 :          0 :                 return rc;
    1738                 :            :         }
    1739                 :            : 
    1740                 :            :         /* Enable Rx in NPC */
    1741                 :          0 :         rc = roc_nix_npc_rx_ena_dis(&dev->nix, true);
    1742         [ #  # ]:          0 :         if (rc) {
    1743                 :          0 :                 plt_err("Failed to enable NPC rx %d", rc);
    1744                 :          0 :                 return rc;
    1745                 :            :         }
    1746                 :            : 
    1747                 :          0 :         rc = roc_npc_mcam_enable_all_entries(&dev->npc, 1);
    1748         [ #  # ]:          0 :         if (rc) {
    1749                 :          0 :                 plt_err("Failed to enable NPC entries %d", rc);
    1750                 :          0 :                 return rc;
    1751                 :            :         }
    1752                 :            : 
    1753                 :          0 :         cnxk_nix_toggle_flag_link_cfg(dev, true);
    1754                 :            : 
    1755                 :            :         /* Start link change events */
    1756         [ #  # ]:          0 :         if (!roc_nix_is_vf_or_sdp(&dev->nix)) {
    1757                 :          0 :                 rc = roc_nix_mac_link_event_start_stop(&dev->nix, true);
    1758         [ #  # ]:          0 :                 if (rc) {
    1759                 :          0 :                         plt_err("Failed to start cgx link event %d", rc);
    1760                 :          0 :                         goto rx_disable;
    1761                 :            :                 }
    1762                 :            :         }
    1763                 :            : 
    1764                 :            :         /* Enable PTP if it is requested by the user or already
    1765                 :            :          * enabled on PF owning this VF
    1766                 :            :          */
    1767         [ #  # ]:          0 :         memset(&dev->tstamp, 0, sizeof(struct cnxk_timesync_info));
    1768   [ #  #  #  # ]:          0 :         if ((dev->rx_offloads & RTE_ETH_RX_OFFLOAD_TIMESTAMP) || dev->ptp_en)
    1769                 :          0 :                 cnxk_eth_dev_ops.timesync_enable(eth_dev);
    1770                 :            :         else
    1771                 :          0 :                 cnxk_eth_dev_ops.timesync_disable(eth_dev);
    1772                 :            : 
    1773   [ #  #  #  # ]:          0 :         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_TIMESTAMP || dev->ptp_en) {
    1774                 :          0 :                 rc = rte_mbuf_dyn_rx_timestamp_register
    1775                 :            :                         (&dev->tstamp.tstamp_dynfield_offset,
    1776                 :            :                          &dev->tstamp.rx_tstamp_dynflag);
    1777         [ #  # ]:          0 :                 if (rc != 0) {
    1778                 :          0 :                         plt_err("Failed to register Rx timestamp field/flag");
    1779                 :          0 :                         goto rx_disable;
    1780                 :            :                 }
    1781                 :            :         }
    1782                 :            : 
    1783                 :          0 :         cnxk_nix_toggle_flag_link_cfg(dev, false);
    1784                 :            : 
    1785                 :          0 :         roc_nix_inl_outb_soft_exp_poll_switch(&dev->nix, true);
    1786                 :            : 
    1787                 :          0 :         return 0;
    1788                 :            : 
    1789                 :          0 : rx_disable:
    1790                 :          0 :         roc_nix_npc_rx_ena_dis(&dev->nix, false);
    1791                 :          0 :         cnxk_nix_toggle_flag_link_cfg(dev, false);
    1792                 :          0 :         return rc;
    1793                 :            : }
    1794                 :            : 
    1795                 :            : static int cnxk_nix_dev_reset(struct rte_eth_dev *eth_dev);
    1796                 :            : static int cnxk_nix_dev_close(struct rte_eth_dev *eth_dev);
    1797                 :            : 
    1798                 :            : /* CNXK platform independent eth dev ops */
    1799                 :            : struct eth_dev_ops cnxk_eth_dev_ops = {
    1800                 :            :         .mtu_set = cnxk_nix_mtu_set,
    1801                 :            :         .mac_addr_add = cnxk_nix_mac_addr_add,
    1802                 :            :         .mac_addr_remove = cnxk_nix_mac_addr_del,
    1803                 :            :         .mac_addr_set = cnxk_nix_mac_addr_set,
    1804                 :            :         .dev_infos_get = cnxk_nix_info_get,
    1805                 :            :         .link_update = cnxk_nix_link_update,
    1806                 :            :         .tx_queue_release = cnxk_nix_tx_queue_release,
    1807                 :            :         .rx_queue_release = cnxk_nix_rx_queue_release,
    1808                 :            :         .dev_stop = cnxk_nix_dev_stop,
    1809                 :            :         .dev_close = cnxk_nix_dev_close,
    1810                 :            :         .dev_reset = cnxk_nix_dev_reset,
    1811                 :            :         .tx_queue_start = cnxk_nix_tx_queue_start,
    1812                 :            :         .rx_queue_start = cnxk_nix_rx_queue_start,
    1813                 :            :         .rx_queue_stop = cnxk_nix_rx_queue_stop,
    1814                 :            :         .dev_supported_ptypes_get = cnxk_nix_supported_ptypes_get,
    1815                 :            :         .promiscuous_enable = cnxk_nix_promisc_enable,
    1816                 :            :         .promiscuous_disable = cnxk_nix_promisc_disable,
    1817                 :            :         .allmulticast_enable = cnxk_nix_allmulticast_enable,
    1818                 :            :         .allmulticast_disable = cnxk_nix_allmulticast_disable,
    1819                 :            :         .rx_burst_mode_get = cnxk_nix_rx_burst_mode_get,
    1820                 :            :         .tx_burst_mode_get = cnxk_nix_tx_burst_mode_get,
    1821                 :            :         .flow_ctrl_get = cnxk_nix_flow_ctrl_get,
    1822                 :            :         .flow_ctrl_set = cnxk_nix_flow_ctrl_set,
    1823                 :            :         .priority_flow_ctrl_queue_config =
    1824                 :            :                                 cnxk_nix_priority_flow_ctrl_queue_config,
    1825                 :            :         .priority_flow_ctrl_queue_info_get =
    1826                 :            :                                 cnxk_nix_priority_flow_ctrl_queue_info_get,
    1827                 :            :         .dev_set_link_up = cnxk_nix_set_link_up,
    1828                 :            :         .dev_set_link_down = cnxk_nix_set_link_down,
    1829                 :            :         .get_module_info = cnxk_nix_get_module_info,
    1830                 :            :         .get_module_eeprom = cnxk_nix_get_module_eeprom,
    1831                 :            :         .rx_queue_intr_enable = cnxk_nix_rx_queue_intr_enable,
    1832                 :            :         .rx_queue_intr_disable = cnxk_nix_rx_queue_intr_disable,
    1833                 :            :         .pool_ops_supported = cnxk_nix_pool_ops_supported,
    1834                 :            :         .queue_stats_mapping_set = cnxk_nix_queue_stats_mapping,
    1835                 :            :         .stats_get = cnxk_nix_stats_get,
    1836                 :            :         .stats_reset = cnxk_nix_stats_reset,
    1837                 :            :         .xstats_get = cnxk_nix_xstats_get,
    1838                 :            :         .xstats_get_names = cnxk_nix_xstats_get_names,
    1839                 :            :         .xstats_reset = cnxk_nix_xstats_reset,
    1840                 :            :         .xstats_get_by_id = cnxk_nix_xstats_get_by_id,
    1841                 :            :         .xstats_get_names_by_id = cnxk_nix_xstats_get_names_by_id,
    1842                 :            :         .fw_version_get = cnxk_nix_fw_version_get,
    1843                 :            :         .rxq_info_get = cnxk_nix_rxq_info_get,
    1844                 :            :         .txq_info_get = cnxk_nix_txq_info_get,
    1845                 :            :         .tx_done_cleanup = cnxk_nix_tx_done_cleanup,
    1846                 :            :         .flow_ops_get = cnxk_nix_flow_ops_get,
    1847                 :            :         .get_reg = cnxk_nix_dev_get_reg,
    1848                 :            :         .timesync_read_rx_timestamp = cnxk_nix_timesync_read_rx_timestamp,
    1849                 :            :         .timesync_read_tx_timestamp = cnxk_nix_timesync_read_tx_timestamp,
    1850                 :            :         .timesync_read_time = cnxk_nix_timesync_read_time,
    1851                 :            :         .timesync_write_time = cnxk_nix_timesync_write_time,
    1852                 :            :         .timesync_adjust_time = cnxk_nix_timesync_adjust_time,
    1853                 :            :         .read_clock = cnxk_nix_read_clock,
    1854                 :            :         .reta_update = cnxk_nix_reta_update,
    1855                 :            :         .reta_query = cnxk_nix_reta_query,
    1856                 :            :         .rss_hash_update = cnxk_nix_rss_hash_update,
    1857                 :            :         .rss_hash_conf_get = cnxk_nix_rss_hash_conf_get,
    1858                 :            :         .set_mc_addr_list = cnxk_nix_mc_addr_list_configure,
    1859                 :            :         .set_queue_rate_limit = cnxk_nix_tm_set_queue_rate_limit,
    1860                 :            :         .tm_ops_get = cnxk_nix_tm_ops_get,
    1861                 :            :         .mtr_ops_get = cnxk_nix_mtr_ops_get,
    1862                 :            :         .eth_dev_priv_dump  = cnxk_nix_eth_dev_priv_dump,
    1863                 :            :         .cman_info_get = cnxk_nix_cman_info_get,
    1864                 :            :         .cman_config_init = cnxk_nix_cman_config_init,
    1865                 :            :         .cman_config_set = cnxk_nix_cman_config_set,
    1866                 :            :         .cman_config_get = cnxk_nix_cman_config_get,
    1867                 :            :         .eth_tx_descriptor_dump = cnxk_nix_tx_descriptor_dump,
    1868                 :            : };
    1869                 :            : 
    1870                 :            : void
    1871                 :          0 : cnxk_eth_dev_q_err_cb(struct roc_nix *nix, void *data)
    1872                 :            : {
    1873                 :            :         struct cnxk_eth_dev *dev = (struct cnxk_eth_dev *)nix;
    1874                 :          0 :         struct rte_eth_dev *eth_dev = dev->eth_dev;
    1875                 :            : 
    1876                 :            :         /* Set the flag and execute application callbacks */
    1877                 :          0 :         rte_eth_dev_callback_process(eth_dev, RTE_ETH_EVENT_INTR_RESET, data);
    1878                 :          0 : }
    1879                 :            : 
    1880                 :            : static int
    1881                 :          0 : cnxk_eth_dev_init(struct rte_eth_dev *eth_dev)
    1882                 :            : {
    1883                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    1884                 :            :         struct rte_security_ctx *sec_ctx;
    1885                 :          0 :         struct roc_nix *nix = &dev->nix;
    1886                 :            :         struct rte_pci_device *pci_dev;
    1887                 :            :         int rc, max_entries;
    1888                 :            : 
    1889                 :          0 :         eth_dev->dev_ops = &cnxk_eth_dev_ops;
    1890                 :          0 :         eth_dev->rx_queue_count = cnxk_nix_rx_queue_count;
    1891                 :          0 :         eth_dev->rx_descriptor_status = cnxk_nix_rx_descriptor_status;
    1892                 :          0 :         eth_dev->tx_descriptor_status = cnxk_nix_tx_descriptor_status;
    1893                 :            : 
    1894                 :            :         /* Alloc security context */
    1895                 :          0 :         sec_ctx = plt_zmalloc(sizeof(struct rte_security_ctx), 0);
    1896         [ #  # ]:          0 :         if (!sec_ctx)
    1897                 :            :                 return -ENOMEM;
    1898                 :          0 :         sec_ctx->device = eth_dev;
    1899                 :          0 :         sec_ctx->ops = &cnxk_eth_sec_ops;
    1900                 :          0 :         sec_ctx->flags = RTE_SEC_CTX_F_FAST_SET_MDATA;
    1901                 :          0 :         eth_dev->security_ctx = sec_ctx;
    1902                 :            : 
    1903                 :            :         /* For secondary processes, the primary has done all the work */
    1904         [ #  # ]:          0 :         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
    1905                 :            :                 return 0;
    1906                 :            : 
    1907                 :          0 :         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
    1908                 :          0 :         rte_eth_copy_pci_info(eth_dev, pci_dev);
    1909                 :            : 
    1910                 :            :         /* Parse devargs string */
    1911                 :          0 :         rc = cnxk_ethdev_parse_devargs(eth_dev->device->devargs, dev);
    1912         [ #  # ]:          0 :         if (rc) {
    1913                 :          0 :                 plt_err("Failed to parse devargs rc=%d", rc);
    1914                 :          0 :                 goto error;
    1915                 :            :         }
    1916                 :            : 
    1917                 :            :         /* Initialize base roc nix */
    1918                 :          0 :         nix->pci_dev = pci_dev;
    1919                 :          0 :         nix->hw_vlan_ins = true;
    1920                 :          0 :         nix->port_id = eth_dev->data->port_id;
    1921                 :            :         /* For better performance set default VF root schedule weight */
    1922         [ #  # ]:          0 :         nix->root_sched_weight = NIX_TM_DFLT_RR_WT;
    1923                 :            : 
    1924                 :            :         /* Skip meta aura for cn20k */
    1925   [ #  #  #  # ]:          0 :         if (roc_feature_nix_has_own_meta_aura() && !roc_feature_nix_has_second_pass_drop())
    1926                 :          0 :                 nix->local_meta_aura_ena = true;
    1927                 :            : 
    1928                 :          0 :         rc = roc_nix_dev_init(nix);
    1929         [ #  # ]:          0 :         if (rc) {
    1930                 :          0 :                 plt_err("Failed to initialize roc nix rc=%d", rc);
    1931                 :          0 :                 goto error;
    1932                 :            :         }
    1933                 :            : 
    1934                 :            :         /* Register up msg callbacks */
    1935                 :          0 :         roc_nix_mac_link_cb_register(nix, cnxk_eth_dev_link_status_cb);
    1936                 :            : 
    1937                 :            :         /* Register up msg callbacks */
    1938                 :          0 :         roc_nix_mac_link_info_get_cb_register(nix,
    1939                 :            :                                               cnxk_eth_dev_link_status_get_cb);
    1940                 :            : 
    1941                 :            :         /* Register up msg callbacks */
    1942                 :          0 :         roc_nix_q_err_cb_register(nix, cnxk_eth_dev_q_err_cb);
    1943                 :            : 
    1944                 :            :         /* Register callback for inline meta pool create */
    1945                 :          0 :         roc_nix_inl_meta_pool_cb_register(cnxk_nix_inl_meta_pool_cb);
    1946                 :            : 
    1947                 :            :         /* Register callback for inline meta pool create 1:N pool:aura */
    1948                 :          0 :         roc_nix_inl_custom_meta_pool_cb_register(cnxk_nix_inl_custom_meta_pool_cb);
    1949                 :            : 
    1950                 :          0 :         dev->eth_dev = eth_dev;
    1951                 :          0 :         dev->configured = 0;
    1952                 :          0 :         dev->ptype_disable = 0;
    1953                 :          0 :         dev->proto = RTE_MTR_COLOR_IN_PROTO_OUTER_VLAN;
    1954                 :            : 
    1955                 :          0 :         TAILQ_INIT(&dev->inb.list);
    1956                 :          0 :         TAILQ_INIT(&dev->outb.list);
    1957                 :            :         rte_spinlock_init(&dev->inb.lock);
    1958                 :            :         rte_spinlock_init(&dev->outb.lock);
    1959                 :            : 
    1960                 :            :         /* For vfs, returned max_entries will be 0. but to keep default mac
    1961                 :            :          * address, one entry must be allocated. so setting up to 1.
    1962                 :            :          */
    1963         [ #  # ]:          0 :         if (roc_nix_is_vf_or_sdp(nix))
    1964                 :            :                 max_entries = 1;
    1965                 :            :         else
    1966                 :          0 :                 max_entries = roc_nix_mac_max_entries_get(nix);
    1967                 :            : 
    1968         [ #  # ]:          0 :         if (max_entries <= 0) {
    1969                 :          0 :                 plt_err("Failed to get max entries for mac addr");
    1970                 :            :                 rc = -ENOTSUP;
    1971                 :          0 :                 goto dev_fini;
    1972                 :            :         }
    1973                 :            : 
    1974                 :          0 :         eth_dev->data->mac_addrs =
    1975                 :          0 :                 rte_zmalloc("mac_addr", max_entries * RTE_ETHER_ADDR_LEN, 0);
    1976         [ #  # ]:          0 :         if (eth_dev->data->mac_addrs == NULL) {
    1977                 :          0 :                 plt_err("Failed to allocate memory for mac addr");
    1978                 :            :                 rc = -ENOMEM;
    1979                 :          0 :                 goto dev_fini;
    1980                 :            :         }
    1981                 :            : 
    1982                 :          0 :         dev->dmac_idx_map = rte_zmalloc("dmac_idx_map", max_entries * sizeof(int), 0);
    1983         [ #  # ]:          0 :         if (dev->dmac_idx_map == NULL) {
    1984                 :          0 :                 plt_err("Failed to allocate memory for dmac idx map");
    1985                 :            :                 rc = -ENOMEM;
    1986                 :          0 :                 goto free_mac_addrs;
    1987                 :            :         }
    1988                 :            : 
    1989                 :          0 :         dev->max_mac_entries = max_entries;
    1990                 :          0 :         dev->dmac_filter_count = 1;
    1991                 :            : 
    1992                 :            :         /* Get mac address */
    1993                 :          0 :         rc = roc_nix_npc_mac_addr_get(nix, dev->mac_addr);
    1994         [ #  # ]:          0 :         if (rc) {
    1995                 :          0 :                 plt_err("Failed to get mac addr, rc=%d", rc);
    1996                 :          0 :                 goto free_mac_addrs;
    1997                 :            :         }
    1998                 :            : 
    1999                 :            :         /* Update the mac address */
    2000                 :          0 :         memcpy(eth_dev->data->mac_addrs, dev->mac_addr, RTE_ETHER_ADDR_LEN);
    2001                 :            : 
    2002                 :            :         /* Union of all capabilities supported by CNXK.
    2003                 :            :          * Platform specific capabilities will be
    2004                 :            :          * updated later.
    2005                 :            :          */
    2006                 :          0 :         dev->rx_offload_capa = nix_get_rx_offload_capa(dev);
    2007                 :          0 :         dev->tx_offload_capa = nix_get_tx_offload_capa(dev);
    2008                 :          0 :         dev->speed_capa = nix_get_speed_capa(dev);
    2009                 :            : 
    2010                 :            :         /* Initialize roc npc */
    2011                 :          0 :         dev->npc.roc_nix = nix;
    2012                 :          0 :         rc = roc_npc_init(&dev->npc);
    2013         [ #  # ]:          0 :         if (rc)
    2014                 :          0 :                 goto free_mac_addrs;
    2015                 :            : 
    2016   [ #  #  #  # ]:          0 :         if (roc_feature_nix_has_macsec() && roc_mcs_is_supported()) {
    2017                 :          0 :                 rc = cnxk_mcs_dev_init(dev, 0);
    2018         [ #  # ]:          0 :                 if (rc) {
    2019                 :          0 :                         plt_err("Failed to init MCS");
    2020                 :          0 :                         goto free_mac_addrs;
    2021                 :            :                 }
    2022                 :          0 :                 dev->rx_offload_capa |= RTE_ETH_RX_OFFLOAD_MACSEC_STRIP;
    2023                 :          0 :                 dev->tx_offload_capa |= RTE_ETH_TX_OFFLOAD_MACSEC_INSERT;
    2024                 :            : 
    2025                 :          0 :                 TAILQ_INIT(&dev->mcs_list);
    2026                 :            :         }
    2027                 :            : 
    2028                 :            :         /* Reserve a switch domain for eswitch device */
    2029         [ #  # ]:          0 :         if (pci_dev->id.device_id == PCI_DEVID_CNXK_RVU_ESWITCH_VF) {
    2030                 :          0 :                 eth_dev->data->dev_flags |= RTE_ETH_DEV_REPRESENTOR;
    2031                 :          0 :                 rc = rte_eth_switch_domain_alloc(&dev->switch_domain_id);
    2032         [ #  # ]:          0 :                 if (rc) {
    2033                 :          0 :                         plt_err("Failed to alloc switch domain: %d", rc);
    2034                 :          0 :                         goto free_mac_addrs;
    2035                 :            :                 }
    2036                 :            :         }
    2037                 :            : 
    2038                 :          0 :         plt_nix_dbg("Port=%d pf=%d vf=%d ver=%s hwcap=0x%" PRIx64 " rxoffload_capa=0x%" PRIx64
    2039                 :            :                     " txoffload_capa=0x%" PRIx64,
    2040                 :            :                     eth_dev->data->port_id, roc_nix_get_pf(nix), roc_nix_get_vf(nix),
    2041                 :            :                     CNXK_ETH_DEV_PMD_VERSION, dev->hwcap, dev->rx_offload_capa,
    2042                 :            :                     dev->tx_offload_capa);
    2043                 :          0 :         return 0;
    2044                 :            : 
    2045                 :          0 : free_mac_addrs:
    2046                 :          0 :         rte_free(eth_dev->data->mac_addrs);
    2047                 :          0 :         rte_free(dev->dmac_idx_map);
    2048                 :          0 : dev_fini:
    2049                 :          0 :         roc_nix_dev_fini(nix);
    2050                 :          0 : error:
    2051                 :          0 :         plt_err("Failed to init nix eth_dev rc=%d", rc);
    2052                 :          0 :         return rc;
    2053                 :            : }
    2054                 :            : 
    2055                 :            : static int
    2056                 :          0 : cnxk_eth_dev_uninit(struct rte_eth_dev *eth_dev, bool reset)
    2057                 :            : {
    2058                 :            :         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
    2059                 :          0 :         const struct eth_dev_ops *dev_ops = eth_dev->dev_ops;
    2060                 :            :         struct cnxk_pfc_cfg *pfc_cfg = &dev->pfc_cfg;
    2061                 :            :         struct cnxk_fc_cfg *fc_cfg = &dev->fc_cfg;
    2062                 :            :         struct rte_eth_pfc_queue_conf pfc_conf;
    2063                 :          0 :         struct roc_nix *nix = &dev->nix;
    2064                 :            :         struct rte_eth_fc_conf fc_conf;
    2065                 :            :         int rc, i;
    2066                 :            : 
    2067                 :          0 :         plt_free(eth_dev->security_ctx);
    2068                 :          0 :         eth_dev->security_ctx = NULL;
    2069                 :            : 
    2070                 :            :         /* Nothing to be done for secondary processes */
    2071         [ #  # ]:          0 :         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
    2072                 :            :                 return 0;
    2073                 :            : 
    2074                 :            :         /* Disable switch hdr pkind */
    2075                 :          0 :         roc_nix_switch_hdr_set(&dev->nix, 0, 0, 0, 0);
    2076                 :            : 
    2077                 :            :         /* Clear the flag since we are closing down */
    2078                 :          0 :         dev->configured = 0;
    2079                 :            : 
    2080                 :            :         /* Disable all the NPC entries */
    2081                 :          0 :         rc = roc_npc_mcam_enable_all_entries(&dev->npc, 0);
    2082         [ #  # ]:          0 :         if (rc)
    2083                 :            :                 return rc;
    2084                 :            : 
    2085                 :          0 :         roc_nix_npc_rx_ena_dis(nix, false);
    2086                 :            : 
    2087                 :            :         /* Restore 802.3 Flow control configuration */
    2088                 :            :         memset(&pfc_conf, 0, sizeof(struct rte_eth_pfc_queue_conf));
    2089                 :            :         memset(&fc_conf, 0, sizeof(struct rte_eth_fc_conf));
    2090         [ #  # ]:          0 :         if (fc_cfg->rx_pause || fc_cfg->tx_pause) {
    2091                 :            :                 fc_conf.mode = RTE_ETH_FC_NONE;
    2092                 :          0 :                 rc = cnxk_nix_flow_ctrl_set(eth_dev, &fc_conf);
    2093         [ #  # ]:          0 :                 if (rc < 0)
    2094                 :          0 :                         plt_err("Failed to reset control flow. error code(%d)",
    2095                 :            :                                         rc);
    2096                 :            :         }
    2097   [ #  #  #  # ]:          0 :         if (pfc_cfg->rx_pause_en || pfc_cfg->tx_pause_en) {
    2098         [ #  # ]:          0 :                 for (i = 0; i < RTE_MAX(eth_dev->data->nb_rx_queues,
    2099                 :            :                                         eth_dev->data->nb_tx_queues);
    2100                 :          0 :                      i++) {
    2101                 :          0 :                         pfc_conf.mode = RTE_ETH_FC_NONE;
    2102                 :          0 :                         pfc_conf.rx_pause.tc = ROC_NIX_PFC_CLASS_INVALID;
    2103                 :          0 :                         pfc_conf.rx_pause.tx_qid = i;
    2104                 :          0 :                         pfc_conf.tx_pause.tc = ROC_NIX_PFC_CLASS_INVALID;
    2105                 :          0 :                         pfc_conf.tx_pause.rx_qid = i;
    2106                 :          0 :                         rc = cnxk_nix_priority_flow_ctrl_queue_config(eth_dev,
    2107                 :            :                                         &pfc_conf);
    2108         [ #  # ]:          0 :                         if (rc && rc != -ENOTSUP)
    2109                 :          0 :                                 plt_err("Failed to reset PFC. error code(%d)", rc);
    2110                 :            :                 }
    2111                 :            :         }
    2112                 :            : 
    2113                 :            :         /* Free switch domain ID reserved for eswitch device */
    2114   [ #  #  #  # ]:          0 :         if ((eth_dev->data->dev_flags & RTE_ETH_DEV_REPRESENTOR) &&
    2115                 :          0 :             rte_eth_switch_domain_free(dev->switch_domain_id))
    2116                 :          0 :                 plt_err("Failed to free switch domain");
    2117                 :            : 
    2118                 :            :         /* Disable and free rte_meter entries */
    2119                 :          0 :         nix_meter_fini(dev);
    2120                 :            : 
    2121                 :            :         /* Disable and free rte_flow entries */
    2122                 :          0 :         roc_npc_fini(&dev->npc);
    2123                 :            : 
    2124                 :            :         /* Disable link status events */
    2125                 :          0 :         roc_nix_mac_link_event_start_stop(nix, false);
    2126                 :            : 
    2127                 :            :         /* Unregister the link update op, this is required to stop VFs from
    2128                 :            :          * receiving link status updates on exit path.
    2129                 :            :          */
    2130                 :          0 :         roc_nix_mac_link_cb_unregister(nix);
    2131                 :            : 
    2132                 :            :         /* Free up SQs */
    2133         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
    2134                 :          0 :                 dev_ops->tx_queue_release(eth_dev, i);
    2135                 :          0 :                 eth_dev->data->tx_queues[i] = NULL;
    2136                 :            :         }
    2137                 :          0 :         eth_dev->data->nb_tx_queues = 0;
    2138                 :            : 
    2139                 :            :         /* Free up RQ's and CQ's */
    2140         [ #  # ]:          0 :         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
    2141                 :          0 :                 dev_ops->rx_queue_release(eth_dev, i);
    2142                 :          0 :                 eth_dev->data->rx_queues[i] = NULL;
    2143                 :            :         }
    2144         [ #  # ]:          0 :         eth_dev->data->nb_rx_queues = 0;
    2145                 :            : 
    2146   [ #  #  #  # ]:          0 :         if (roc_feature_nix_has_macsec() && roc_mcs_is_supported())
    2147                 :          0 :                 cnxk_mcs_dev_fini(dev);
    2148                 :            : 
    2149                 :            :         /* Free security resources */
    2150                 :          0 :         nix_security_release(dev);
    2151                 :            : 
    2152                 :            :         /* Free tm resources */
    2153                 :          0 :         roc_nix_tm_fini(nix);
    2154                 :            : 
    2155                 :            :         /* Unregister queue irqs */
    2156                 :          0 :         roc_nix_unregister_queue_irqs(nix);
    2157                 :            : 
    2158                 :            :         /* Unregister cq irqs */
    2159         [ #  # ]:          0 :         if (eth_dev->data->dev_conf.intr_conf.rxq)
    2160                 :          0 :                 roc_nix_unregister_cq_irqs(nix);
    2161                 :            : 
    2162                 :            :         /* Free ROC RQ's, SQ's and CQ's memory */
    2163                 :          0 :         nix_free_queue_mem(dev);
    2164                 :            : 
    2165                 :            :         /* free nix bpid */
    2166                 :          0 :         rc = nix_rxchan_cfg_disable(dev);
    2167         [ #  # ]:          0 :         if (rc)
    2168                 :          0 :                 plt_err("Failed to free nix bpid, rc=%d", rc);
    2169                 :            : 
    2170                 :            :         /* Free nix lf resources */
    2171                 :          0 :         rc = roc_nix_lf_free(nix);
    2172         [ #  # ]:          0 :         if (rc)
    2173                 :          0 :                 plt_err("Failed to free nix lf, rc=%d", rc);
    2174                 :            : 
    2175                 :          0 :         rte_free(dev->dmac_idx_map);
    2176                 :          0 :         dev->dmac_idx_map = NULL;
    2177                 :            : 
    2178                 :          0 :         rte_free(eth_dev->data->mac_addrs);
    2179                 :          0 :         eth_dev->data->mac_addrs = NULL;
    2180                 :            : 
    2181                 :          0 :         rc = roc_nix_dev_fini(nix);
    2182                 :            :         /* Can be freed later by PMD if NPA LF is in use */
    2183         [ #  # ]:          0 :         if (rc == -EAGAIN) {
    2184         [ #  # ]:          0 :                 if (!reset)
    2185                 :          0 :                         eth_dev->data->dev_private = NULL;
    2186                 :          0 :                 return 0;
    2187         [ #  # ]:          0 :         } else if (rc) {
    2188                 :          0 :                 plt_err("Failed in nix dev fini, rc=%d", rc);
    2189                 :            :         }
    2190                 :            : 
    2191                 :            :         return rc;
    2192                 :            : }
    2193                 :            : 
    2194                 :            : static int
    2195                 :          0 : cnxk_nix_dev_close(struct rte_eth_dev *eth_dev)
    2196                 :            : {
    2197                 :          0 :         cnxk_eth_dev_uninit(eth_dev, false);
    2198                 :          0 :         return 0;
    2199                 :            : }
    2200                 :            : 
    2201                 :            : static int
    2202                 :          0 : cnxk_nix_dev_reset(struct rte_eth_dev *eth_dev)
    2203                 :            : {
    2204                 :            :         int rc;
    2205                 :            : 
    2206                 :          0 :         rc = cnxk_eth_dev_uninit(eth_dev, true);
    2207         [ #  # ]:          0 :         if (rc)
    2208                 :            :                 return rc;
    2209                 :            : 
    2210                 :          0 :         return cnxk_eth_dev_init(eth_dev);
    2211                 :            : }
    2212                 :            : 
    2213                 :            : int
    2214                 :          0 : cnxk_nix_remove(struct rte_pci_device *pci_dev)
    2215                 :            : {
    2216                 :            :         struct rte_eth_dev *eth_dev;
    2217                 :            :         struct roc_nix *nix;
    2218                 :            :         int rc = -EINVAL;
    2219                 :            : 
    2220                 :          0 :         eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
    2221         [ #  # ]:          0 :         if (eth_dev) {
    2222                 :            :                 /* Cleanup eth dev */
    2223                 :          0 :                 rc = cnxk_eth_dev_uninit(eth_dev, false);
    2224         [ #  # ]:          0 :                 if (rc)
    2225                 :            :                         return rc;
    2226                 :            : 
    2227                 :          0 :                 rte_eth_dev_release_port(eth_dev);
    2228                 :            :         }
    2229                 :            : 
    2230                 :            :         /* Nothing to be done for secondary processes */
    2231         [ #  # ]:          0 :         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
    2232                 :            :                 return 0;
    2233                 :            : 
    2234                 :            :         /* Check if this device is hosting common resource */
    2235                 :          0 :         nix = roc_idev_npa_nix_get();
    2236   [ #  #  #  # ]:          0 :         if (!nix || nix->pci_dev != pci_dev)
    2237                 :            :                 return 0;
    2238                 :            : 
    2239                 :            :         /* Try nix fini now */
    2240                 :          0 :         rc = roc_nix_dev_fini(nix);
    2241         [ #  # ]:          0 :         if (rc == -EAGAIN) {
    2242                 :          0 :                 plt_info("%s: common resource in use by other devices",
    2243                 :            :                          pci_dev->name);
    2244                 :          0 :                 goto exit;
    2245         [ #  # ]:          0 :         } else if (rc) {
    2246                 :          0 :                 plt_err("Failed in nix dev fini, rc=%d", rc);
    2247                 :          0 :                 goto exit;
    2248                 :            :         }
    2249                 :            : 
    2250                 :            :         /* Free device pointer as rte_ethdev does not have it anymore */
    2251                 :          0 :         rte_free(nix);
    2252                 :            : exit:
    2253                 :            :         return rc;
    2254                 :            : }
    2255                 :            : 
    2256                 :            : int
    2257                 :          0 : cnxk_nix_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
    2258                 :            : {
    2259                 :            :         int rc;
    2260                 :            : 
    2261                 :            :         RTE_SET_USED(pci_drv);
    2262                 :            : 
    2263                 :          0 :         rc = rte_eth_dev_pci_generic_probe(pci_dev, sizeof(struct cnxk_eth_dev),
    2264                 :            :                                            cnxk_eth_dev_init);
    2265                 :            : 
    2266                 :            :         /* On error on secondary, recheck if port exists in primary or
    2267                 :            :          * in mid of detach state.
    2268                 :            :          */
    2269   [ #  #  #  # ]:          0 :         if (rte_eal_process_type() != RTE_PROC_PRIMARY && rc)
    2270         [ #  # ]:          0 :                 if (!rte_eth_dev_allocated(pci_dev->device.name))
    2271                 :          0 :                         return 0;
    2272                 :            :         return rc;
    2273                 :            : }

Generated by: LCOV version 1.14