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