net/octeontx2: add Tx queue setup and release
[dpdk.git] / drivers / net / octeontx2 / otx2_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2019 Marvell International Ltd.
3  */
4
5 #include <inttypes.h>
6 #include <math.h>
7
8 #include <rte_ethdev_pci.h>
9 #include <rte_io.h>
10 #include <rte_malloc.h>
11 #include <rte_mbuf.h>
12 #include <rte_mbuf_pool_ops.h>
13 #include <rte_mempool.h>
14
15 #include "otx2_ethdev.h"
16
17 static inline void
18 otx2_eth_set_rx_function(struct rte_eth_dev *eth_dev)
19 {
20         RTE_SET_USED(eth_dev);
21 }
22
23 static inline void
24 otx2_eth_set_tx_function(struct rte_eth_dev *eth_dev)
25 {
26         RTE_SET_USED(eth_dev);
27 }
28
29 static inline uint64_t
30 nix_get_rx_offload_capa(struct otx2_eth_dev *dev)
31 {
32         uint64_t capa = NIX_RX_OFFLOAD_CAPA;
33
34         if (otx2_dev_is_vf(dev))
35                 capa &= ~DEV_RX_OFFLOAD_TIMESTAMP;
36
37         return capa;
38 }
39
40 static inline uint64_t
41 nix_get_tx_offload_capa(struct otx2_eth_dev *dev)
42 {
43         RTE_SET_USED(dev);
44
45         return NIX_TX_OFFLOAD_CAPA;
46 }
47
48 static const struct otx2_dev_ops otx2_dev_ops = {
49         .link_status_update = otx2_eth_dev_link_status_update,
50 };
51
52 static int
53 nix_lf_alloc(struct otx2_eth_dev *dev, uint32_t nb_rxq, uint32_t nb_txq)
54 {
55         struct otx2_mbox *mbox = dev->mbox;
56         struct nix_lf_alloc_req *req;
57         struct nix_lf_alloc_rsp *rsp;
58         int rc;
59
60         req = otx2_mbox_alloc_msg_nix_lf_alloc(mbox);
61         req->rq_cnt = nb_rxq;
62         req->sq_cnt = nb_txq;
63         req->cq_cnt = nb_rxq;
64         /* XQE_SZ should be in Sync with NIX_CQ_ENTRY_SZ */
65         RTE_BUILD_BUG_ON(NIX_CQ_ENTRY_SZ != 128);
66         req->xqe_sz = NIX_XQESZ_W16;
67         req->rss_sz = dev->rss_info.rss_size;
68         req->rss_grps = NIX_RSS_GRPS;
69         req->npa_func = otx2_npa_pf_func_get();
70         req->sso_func = otx2_sso_pf_func_get();
71         req->rx_cfg = BIT_ULL(35 /* DIS_APAD */);
72         if (dev->rx_offloads & (DEV_RX_OFFLOAD_TCP_CKSUM |
73                          DEV_RX_OFFLOAD_UDP_CKSUM)) {
74                 req->rx_cfg |= BIT_ULL(37 /* CSUM_OL4 */);
75                 req->rx_cfg |= BIT_ULL(36 /* CSUM_IL4 */);
76         }
77
78         rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
79         if (rc)
80                 return rc;
81
82         dev->sqb_size = rsp->sqb_size;
83         dev->tx_chan_base = rsp->tx_chan_base;
84         dev->rx_chan_base = rsp->rx_chan_base;
85         dev->rx_chan_cnt = rsp->rx_chan_cnt;
86         dev->tx_chan_cnt = rsp->tx_chan_cnt;
87         dev->lso_tsov4_idx = rsp->lso_tsov4_idx;
88         dev->lso_tsov6_idx = rsp->lso_tsov6_idx;
89         dev->lf_tx_stats = rsp->lf_tx_stats;
90         dev->lf_rx_stats = rsp->lf_rx_stats;
91         dev->cints = rsp->cints;
92         dev->qints = rsp->qints;
93         dev->npc_flow.channel = dev->rx_chan_base;
94
95         return 0;
96 }
97
98 static int
99 nix_lf_free(struct otx2_eth_dev *dev)
100 {
101         struct otx2_mbox *mbox = dev->mbox;
102         struct nix_lf_free_req *req;
103         struct ndc_sync_op *ndc_req;
104         int rc;
105
106         /* Sync NDC-NIX for LF */
107         ndc_req = otx2_mbox_alloc_msg_ndc_sync_op(mbox);
108         ndc_req->nix_lf_tx_sync = 1;
109         ndc_req->nix_lf_rx_sync = 1;
110         rc = otx2_mbox_process(mbox);
111         if (rc)
112                 otx2_err("Error on NDC-NIX-[TX, RX] LF sync, rc %d", rc);
113
114         req = otx2_mbox_alloc_msg_nix_lf_free(mbox);
115         /* Let AF driver free all this nix lf's
116          * NPC entries allocated using NPC MBOX.
117          */
118         req->flags = 0;
119
120         return otx2_mbox_process(mbox);
121 }
122
123 static inline void
124 nix_rx_queue_reset(struct otx2_eth_rxq *rxq)
125 {
126         rxq->head = 0;
127         rxq->available = 0;
128 }
129
130 static inline uint32_t
131 nix_qsize_to_val(enum nix_q_size_e qsize)
132 {
133         return (16UL << (qsize * 2));
134 }
135
136 static inline enum nix_q_size_e
137 nix_qsize_clampup_get(struct otx2_eth_dev *dev, uint32_t val)
138 {
139         int i;
140
141         if (otx2_ethdev_fixup_is_min_4k_q(dev))
142                 i = nix_q_size_4K;
143         else
144                 i = nix_q_size_16;
145
146         for (; i < nix_q_size_max; i++)
147                 if (val <= nix_qsize_to_val(i))
148                         break;
149
150         if (i >= nix_q_size_max)
151                 i = nix_q_size_max - 1;
152
153         return i;
154 }
155
156 static int
157 nix_cq_rq_init(struct rte_eth_dev *eth_dev, struct otx2_eth_dev *dev,
158                uint16_t qid, struct otx2_eth_rxq *rxq, struct rte_mempool *mp)
159 {
160         struct otx2_mbox *mbox = dev->mbox;
161         const struct rte_memzone *rz;
162         uint32_t ring_size, cq_size;
163         struct nix_aq_enq_req *aq;
164         uint16_t first_skip;
165         int rc;
166
167         cq_size = rxq->qlen;
168         ring_size = cq_size * NIX_CQ_ENTRY_SZ;
169         rz = rte_eth_dma_zone_reserve(eth_dev, "cq", qid, ring_size,
170                                       NIX_CQ_ALIGN, dev->node);
171         if (rz == NULL) {
172                 otx2_err("Failed to allocate mem for cq hw ring");
173                 rc = -ENOMEM;
174                 goto fail;
175         }
176         memset(rz->addr, 0, rz->len);
177         rxq->desc = (uintptr_t)rz->addr;
178         rxq->qmask = cq_size - 1;
179
180         aq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
181         aq->qidx = qid;
182         aq->ctype = NIX_AQ_CTYPE_CQ;
183         aq->op = NIX_AQ_INSTOP_INIT;
184
185         aq->cq.ena = 1;
186         aq->cq.caching = 1;
187         aq->cq.qsize = rxq->qsize;
188         aq->cq.base = rz->iova;
189         aq->cq.avg_level = 0xff;
190         aq->cq.cq_err_int_ena = BIT(NIX_CQERRINT_CQE_FAULT);
191         aq->cq.cq_err_int_ena |= BIT(NIX_CQERRINT_DOOR_ERR);
192
193         /* Many to one reduction */
194         aq->cq.qint_idx = qid % dev->qints;
195
196         if (otx2_ethdev_fixup_is_limit_cq_full(dev)) {
197                 uint16_t min_rx_drop;
198                 const float rx_cq_skid = 1024 * 256;
199
200                 min_rx_drop = ceil(rx_cq_skid / (float)cq_size);
201                 aq->cq.drop = min_rx_drop;
202                 aq->cq.drop_ena = 1;
203         }
204
205         rc = otx2_mbox_process(mbox);
206         if (rc) {
207                 otx2_err("Failed to init cq context");
208                 goto fail;
209         }
210
211         aq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
212         aq->qidx = qid;
213         aq->ctype = NIX_AQ_CTYPE_RQ;
214         aq->op = NIX_AQ_INSTOP_INIT;
215
216         aq->rq.sso_ena = 0;
217         aq->rq.cq = qid; /* RQ to CQ 1:1 mapped */
218         aq->rq.spb_ena = 0;
219         aq->rq.lpb_aura = npa_lf_aura_handle_to_aura(mp->pool_id);
220         first_skip = (sizeof(struct rte_mbuf));
221         first_skip += RTE_PKTMBUF_HEADROOM;
222         first_skip += rte_pktmbuf_priv_size(mp);
223         rxq->data_off = first_skip;
224
225         first_skip /= 8; /* Expressed in number of dwords */
226         aq->rq.first_skip = first_skip;
227         aq->rq.later_skip = (sizeof(struct rte_mbuf) / 8);
228         aq->rq.flow_tagw = 32; /* 32-bits */
229         aq->rq.lpb_sizem1 = rte_pktmbuf_data_room_size(mp);
230         aq->rq.lpb_sizem1 += rte_pktmbuf_priv_size(mp);
231         aq->rq.lpb_sizem1 += sizeof(struct rte_mbuf);
232         aq->rq.lpb_sizem1 /= 8;
233         aq->rq.lpb_sizem1 -= 1; /* Expressed in size minus one */
234         aq->rq.ena = 1;
235         aq->rq.pb_caching = 0x2; /* First cache aligned block to LLC */
236         aq->rq.xqe_imm_size = 0; /* No pkt data copy to CQE */
237         aq->rq.rq_int_ena = 0;
238         /* Many to one reduction */
239         aq->rq.qint_idx = qid % dev->qints;
240
241         if (otx2_ethdev_fixup_is_limit_cq_full(dev))
242                 aq->rq.xqe_drop_ena = 1;
243
244         rc = otx2_mbox_process(mbox);
245         if (rc) {
246                 otx2_err("Failed to init rq context");
247                 goto fail;
248         }
249
250         return 0;
251 fail:
252         return rc;
253 }
254
255 static int
256 nix_cq_rq_uninit(struct rte_eth_dev *eth_dev, struct otx2_eth_rxq *rxq)
257 {
258         struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
259         struct otx2_mbox *mbox = dev->mbox;
260         struct nix_aq_enq_req *aq;
261         int rc;
262
263         /* RQ is already disabled */
264         /* Disable CQ */
265         aq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
266         aq->qidx = rxq->rq;
267         aq->ctype = NIX_AQ_CTYPE_CQ;
268         aq->op = NIX_AQ_INSTOP_WRITE;
269
270         aq->cq.ena = 0;
271         aq->cq_mask.ena = ~(aq->cq_mask.ena);
272
273         rc = otx2_mbox_process(mbox);
274         if (rc < 0) {
275                 otx2_err("Failed to disable cq context");
276                 return rc;
277         }
278
279         return 0;
280 }
281
282 static inline int
283 nix_get_data_off(struct otx2_eth_dev *dev)
284 {
285         RTE_SET_USED(dev);
286
287         return 0;
288 }
289
290 uint64_t
291 otx2_nix_rxq_mbuf_setup(struct otx2_eth_dev *dev, uint16_t port_id)
292 {
293         struct rte_mbuf mb_def;
294         uint64_t *tmp;
295
296         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) % 8 != 0);
297         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, refcnt) -
298                                 offsetof(struct rte_mbuf, data_off) != 2);
299         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, nb_segs) -
300                                 offsetof(struct rte_mbuf, data_off) != 4);
301         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, port) -
302                                 offsetof(struct rte_mbuf, data_off) != 6);
303         mb_def.nb_segs = 1;
304         mb_def.data_off = RTE_PKTMBUF_HEADROOM + nix_get_data_off(dev);
305         mb_def.port = port_id;
306         rte_mbuf_refcnt_set(&mb_def, 1);
307
308         /* Prevent compiler reordering: rearm_data covers previous fields */
309         rte_compiler_barrier();
310         tmp = (uint64_t *)&mb_def.rearm_data;
311
312         return *tmp;
313 }
314
315 static void
316 otx2_nix_rx_queue_release(void *rx_queue)
317 {
318         struct otx2_eth_rxq *rxq = rx_queue;
319
320         if (!rxq)
321                 return;
322
323         otx2_nix_dbg("Releasing rxq %u", rxq->rq);
324         nix_cq_rq_uninit(rxq->eth_dev, rxq);
325         rte_free(rx_queue);
326 }
327
328 static int
329 otx2_nix_rx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t rq,
330                         uint16_t nb_desc, unsigned int socket,
331                         const struct rte_eth_rxconf *rx_conf,
332                         struct rte_mempool *mp)
333 {
334         struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
335         struct rte_mempool_ops *ops;
336         struct otx2_eth_rxq *rxq;
337         const char *platform_ops;
338         enum nix_q_size_e qsize;
339         uint64_t offloads;
340         int rc;
341
342         rc = -EINVAL;
343
344         /* Compile time check to make sure all fast path elements in a CL */
345         RTE_BUILD_BUG_ON(offsetof(struct otx2_eth_rxq, slow_path_start) >= 128);
346
347         /* Sanity checks */
348         if (rx_conf->rx_deferred_start == 1) {
349                 otx2_err("Deferred Rx start is not supported");
350                 goto fail;
351         }
352
353         platform_ops = rte_mbuf_platform_mempool_ops();
354         /* This driver needs octeontx2_npa mempool ops to work */
355         ops = rte_mempool_get_ops(mp->ops_index);
356         if (strncmp(ops->name, platform_ops, RTE_MEMPOOL_OPS_NAMESIZE)) {
357                 otx2_err("mempool ops should be of octeontx2_npa type");
358                 goto fail;
359         }
360
361         if (mp->pool_id == 0) {
362                 otx2_err("Invalid pool_id");
363                 goto fail;
364         }
365
366         /* Free memory prior to re-allocation if needed */
367         if (eth_dev->data->rx_queues[rq] != NULL) {
368                 otx2_nix_dbg("Freeing memory prior to re-allocation %d", rq);
369                 otx2_nix_rx_queue_release(eth_dev->data->rx_queues[rq]);
370                 eth_dev->data->rx_queues[rq] = NULL;
371         }
372
373         offloads = rx_conf->offloads | eth_dev->data->dev_conf.rxmode.offloads;
374         dev->rx_offloads |= offloads;
375
376         /* Find the CQ queue size */
377         qsize = nix_qsize_clampup_get(dev, nb_desc);
378         /* Allocate rxq memory */
379         rxq = rte_zmalloc_socket("otx2 rxq", sizeof(*rxq), OTX2_ALIGN, socket);
380         if (rxq == NULL) {
381                 otx2_err("Failed to allocate rq=%d", rq);
382                 rc = -ENOMEM;
383                 goto fail;
384         }
385
386         rxq->eth_dev = eth_dev;
387         rxq->rq = rq;
388         rxq->cq_door = dev->base + NIX_LF_CQ_OP_DOOR;
389         rxq->cq_status = (int64_t *)(dev->base + NIX_LF_CQ_OP_STATUS);
390         rxq->wdata = (uint64_t)rq << 32;
391         rxq->aura = npa_lf_aura_handle_to_aura(mp->pool_id);
392         rxq->mbuf_initializer = otx2_nix_rxq_mbuf_setup(dev,
393                                                         eth_dev->data->port_id);
394         rxq->offloads = offloads;
395         rxq->pool = mp;
396         rxq->qlen = nix_qsize_to_val(qsize);
397         rxq->qsize = qsize;
398
399         /* Alloc completion queue */
400         rc = nix_cq_rq_init(eth_dev, dev, rq, rxq, mp);
401         if (rc) {
402                 otx2_err("Failed to allocate rxq=%u", rq);
403                 goto free_rxq;
404         }
405
406         rxq->qconf.socket_id = socket;
407         rxq->qconf.nb_desc = nb_desc;
408         rxq->qconf.mempool = mp;
409         memcpy(&rxq->qconf.conf.rx, rx_conf, sizeof(struct rte_eth_rxconf));
410
411         nix_rx_queue_reset(rxq);
412         otx2_nix_dbg("rq=%d pool=%s qsize=%d nb_desc=%d->%d",
413                      rq, mp->name, qsize, nb_desc, rxq->qlen);
414
415         eth_dev->data->rx_queues[rq] = rxq;
416         eth_dev->data->rx_queue_state[rq] = RTE_ETH_QUEUE_STATE_STOPPED;
417         return 0;
418
419 free_rxq:
420         otx2_nix_rx_queue_release(rxq);
421 fail:
422         return rc;
423 }
424
425 static inline uint8_t
426 nix_sq_max_sqe_sz(struct otx2_eth_txq *txq)
427 {
428         /*
429          * Maximum three segments can be supported with W8, Choose
430          * NIX_MAXSQESZ_W16 for multi segment offload.
431          */
432         if (txq->offloads & DEV_TX_OFFLOAD_MULTI_SEGS)
433                 return NIX_MAXSQESZ_W16;
434         else
435                 return NIX_MAXSQESZ_W8;
436 }
437
438 static int
439 nix_sq_init(struct otx2_eth_txq *txq)
440 {
441         struct otx2_eth_dev *dev = txq->dev;
442         struct otx2_mbox *mbox = dev->mbox;
443         struct nix_aq_enq_req *sq;
444
445         if (txq->sqb_pool->pool_id == 0)
446                 return -EINVAL;
447
448         sq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
449         sq->qidx = txq->sq;
450         sq->ctype = NIX_AQ_CTYPE_SQ;
451         sq->op = NIX_AQ_INSTOP_INIT;
452         sq->sq.max_sqe_size = nix_sq_max_sqe_sz(txq);
453
454         sq->sq.default_chan = dev->tx_chan_base;
455         sq->sq.sqe_stype = NIX_STYPE_STF;
456         sq->sq.ena = 1;
457         if (sq->sq.max_sqe_size == NIX_MAXSQESZ_W8)
458                 sq->sq.sqe_stype = NIX_STYPE_STP;
459         sq->sq.sqb_aura =
460                 npa_lf_aura_handle_to_aura(txq->sqb_pool->pool_id);
461         sq->sq.sq_int_ena = BIT(NIX_SQINT_LMT_ERR);
462         sq->sq.sq_int_ena |= BIT(NIX_SQINT_SQB_ALLOC_FAIL);
463         sq->sq.sq_int_ena |= BIT(NIX_SQINT_SEND_ERR);
464         sq->sq.sq_int_ena |= BIT(NIX_SQINT_MNQ_ERR);
465
466         /* Many to one reduction */
467         sq->sq.qint_idx = txq->sq % dev->qints;
468
469         return otx2_mbox_process(mbox);
470 }
471
472 static int
473 nix_sq_uninit(struct otx2_eth_txq *txq)
474 {
475         struct otx2_eth_dev *dev = txq->dev;
476         struct otx2_mbox *mbox = dev->mbox;
477         struct ndc_sync_op *ndc_req;
478         struct nix_aq_enq_rsp *rsp;
479         struct nix_aq_enq_req *aq;
480         uint16_t sqes_per_sqb;
481         void *sqb_buf;
482         int rc, count;
483
484         otx2_nix_dbg("Cleaning up sq %u", txq->sq);
485
486         aq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
487         aq->qidx = txq->sq;
488         aq->ctype = NIX_AQ_CTYPE_SQ;
489         aq->op = NIX_AQ_INSTOP_READ;
490
491         rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
492         if (rc)
493                 return rc;
494
495         /* Check if sq is already cleaned up */
496         if (!rsp->sq.ena)
497                 return 0;
498
499         /* Disable sq */
500         aq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
501         aq->qidx = txq->sq;
502         aq->ctype = NIX_AQ_CTYPE_SQ;
503         aq->op = NIX_AQ_INSTOP_WRITE;
504
505         aq->sq_mask.ena = ~aq->sq_mask.ena;
506         aq->sq.ena = 0;
507
508         rc = otx2_mbox_process(mbox);
509         if (rc)
510                 return rc;
511
512         /* Read SQ and free sqb's */
513         aq = otx2_mbox_alloc_msg_nix_aq_enq(mbox);
514         aq->qidx = txq->sq;
515         aq->ctype = NIX_AQ_CTYPE_SQ;
516         aq->op = NIX_AQ_INSTOP_READ;
517
518         rc = otx2_mbox_process_msg(mbox, (void *)&rsp);
519         if (rc)
520                 return rc;
521
522         if (aq->sq.smq_pend)
523                 otx2_err("SQ has pending sqe's");
524
525         count = aq->sq.sqb_count;
526         sqes_per_sqb = 1 << txq->sqes_per_sqb_log2;
527         /* Free SQB's that are used */
528         sqb_buf = (void *)rsp->sq.head_sqb;
529         while (count) {
530                 void *next_sqb;
531
532                 next_sqb = *(void **)((uintptr_t)sqb_buf + ((sqes_per_sqb - 1) *
533                                       nix_sq_max_sqe_sz(txq)));
534                 npa_lf_aura_op_free(txq->sqb_pool->pool_id, 1,
535                                     (uint64_t)sqb_buf);
536                 sqb_buf = next_sqb;
537                 count--;
538         }
539
540         /* Free next to use sqb */
541         if (rsp->sq.next_sqb)
542                 npa_lf_aura_op_free(txq->sqb_pool->pool_id, 1,
543                                     rsp->sq.next_sqb);
544
545         /* Sync NDC-NIX-TX for LF */
546         ndc_req = otx2_mbox_alloc_msg_ndc_sync_op(mbox);
547         ndc_req->nix_lf_tx_sync = 1;
548         rc = otx2_mbox_process(mbox);
549         if (rc)
550                 otx2_err("Error on NDC-NIX-TX LF sync, rc %d", rc);
551
552         return rc;
553 }
554
555 static int
556 nix_sqb_aura_limit_cfg(struct rte_mempool *mp, uint16_t nb_sqb_bufs)
557 {
558         struct otx2_npa_lf *npa_lf = otx2_intra_dev_get_cfg()->npa_lf;
559         struct npa_aq_enq_req *aura_req;
560
561         aura_req = otx2_mbox_alloc_msg_npa_aq_enq(npa_lf->mbox);
562         aura_req->aura_id = npa_lf_aura_handle_to_aura(mp->pool_id);
563         aura_req->ctype = NPA_AQ_CTYPE_AURA;
564         aura_req->op = NPA_AQ_INSTOP_WRITE;
565
566         aura_req->aura.limit = nb_sqb_bufs;
567         aura_req->aura_mask.limit = ~(aura_req->aura_mask.limit);
568
569         return otx2_mbox_process(npa_lf->mbox);
570 }
571
572 static int
573 nix_alloc_sqb_pool(int port, struct otx2_eth_txq *txq, uint16_t nb_desc)
574 {
575         struct otx2_eth_dev *dev = txq->dev;
576         uint16_t sqes_per_sqb, nb_sqb_bufs;
577         char name[RTE_MEMPOOL_NAMESIZE];
578         struct rte_mempool_objsz sz;
579         struct npa_aura_s *aura;
580         uint32_t tmp, blk_sz;
581
582         aura = (struct npa_aura_s *)((uintptr_t)txq->fc_mem + OTX2_ALIGN);
583         snprintf(name, sizeof(name), "otx2_sqb_pool_%d_%d", port, txq->sq);
584         blk_sz = dev->sqb_size;
585
586         if (nix_sq_max_sqe_sz(txq) == NIX_MAXSQESZ_W16)
587                 sqes_per_sqb = (dev->sqb_size / 8) / 16;
588         else
589                 sqes_per_sqb = (dev->sqb_size / 8) / 8;
590
591         nb_sqb_bufs = nb_desc / sqes_per_sqb;
592         /* Clamp up to devarg passed SQB count */
593         nb_sqb_bufs =  RTE_MIN(dev->max_sqb_count, RTE_MAX(NIX_MIN_SQB,
594                               nb_sqb_bufs + NIX_SQB_LIST_SPACE));
595
596         txq->sqb_pool = rte_mempool_create_empty(name, NIX_MAX_SQB, blk_sz,
597                                                  0, 0, dev->node,
598                                                  MEMPOOL_F_NO_SPREAD);
599         txq->nb_sqb_bufs = nb_sqb_bufs;
600         txq->sqes_per_sqb_log2 = (uint16_t)rte_log2_u32(sqes_per_sqb);
601         txq->nb_sqb_bufs_adj = nb_sqb_bufs -
602                 RTE_ALIGN_MUL_CEIL(nb_sqb_bufs, sqes_per_sqb) / sqes_per_sqb;
603         txq->nb_sqb_bufs_adj =
604                 (NIX_SQB_LOWER_THRESH * txq->nb_sqb_bufs_adj) / 100;
605
606         if (txq->sqb_pool == NULL) {
607                 otx2_err("Failed to allocate sqe mempool");
608                 goto fail;
609         }
610
611         memset(aura, 0, sizeof(*aura));
612         aura->fc_ena = 1;
613         aura->fc_addr = txq->fc_iova;
614         aura->fc_hyst_bits = 0; /* Store count on all updates */
615         if (rte_mempool_set_ops_byname(txq->sqb_pool, "octeontx2_npa", aura)) {
616                 otx2_err("Failed to set ops for sqe mempool");
617                 goto fail;
618         }
619         if (rte_mempool_populate_default(txq->sqb_pool) < 0) {
620                 otx2_err("Failed to populate sqe mempool");
621                 goto fail;
622         }
623
624         tmp = rte_mempool_calc_obj_size(blk_sz, MEMPOOL_F_NO_SPREAD, &sz);
625         if (dev->sqb_size != sz.elt_size) {
626                 otx2_err("sqe pool block size is not expected %d != %d",
627                          dev->sqb_size, tmp);
628                 goto fail;
629         }
630
631         nix_sqb_aura_limit_cfg(txq->sqb_pool, txq->nb_sqb_bufs);
632
633         return 0;
634 fail:
635         return -ENOMEM;
636 }
637
638 void
639 otx2_nix_form_default_desc(struct otx2_eth_txq *txq)
640 {
641         struct nix_send_ext_s *send_hdr_ext;
642         struct nix_send_hdr_s *send_hdr;
643         struct nix_send_mem_s *send_mem;
644         union nix_send_sg_s *sg;
645
646         /* Initialize the fields based on basic single segment packet */
647         memset(&txq->cmd, 0, sizeof(txq->cmd));
648
649         if (txq->dev->tx_offload_flags & NIX_TX_NEED_EXT_HDR) {
650                 send_hdr = (struct nix_send_hdr_s *)&txq->cmd[0];
651                 /* 2(HDR) + 2(EXT_HDR) + 1(SG) + 1(IOVA) = 6/2 - 1 = 2 */
652                 send_hdr->w0.sizem1 = 2;
653
654                 send_hdr_ext = (struct nix_send_ext_s *)&txq->cmd[2];
655                 send_hdr_ext->w0.subdc = NIX_SUBDC_EXT;
656                 if (txq->dev->tx_offload_flags & NIX_TX_OFFLOAD_TSTAMP_F) {
657                         /* Default: one seg packet would have:
658                          * 2(HDR) + 2(EXT) + 1(SG) + 1(IOVA) + 2(MEM)
659                          * => 8/2 - 1 = 3
660                          */
661                         send_hdr->w0.sizem1 = 3;
662                         send_hdr_ext->w0.tstmp = 1;
663
664                         /* To calculate the offset for send_mem,
665                          * send_hdr->w0.sizem1 * 2
666                          */
667                         send_mem = (struct nix_send_mem_s *)(txq->cmd +
668                                                 (send_hdr->w0.sizem1 << 1));
669                         send_mem->subdc = NIX_SUBDC_MEM;
670                         send_mem->dsz = 0x0;
671                         send_mem->wmem = 0x1;
672                         send_mem->alg = NIX_SENDMEMALG_SETTSTMP;
673                 }
674                 sg = (union nix_send_sg_s *)&txq->cmd[4];
675         } else {
676                 send_hdr = (struct nix_send_hdr_s *)&txq->cmd[0];
677                 /* 2(HDR) + 1(SG) + 1(IOVA) = 4/2 - 1 = 1 */
678                 send_hdr->w0.sizem1 = 1;
679                 sg = (union nix_send_sg_s *)&txq->cmd[2];
680         }
681
682         send_hdr->w0.sq = txq->sq;
683         sg->subdc = NIX_SUBDC_SG;
684         sg->segs = 1;
685         sg->ld_type = NIX_SENDLDTYPE_LDD;
686
687         rte_smp_wmb();
688 }
689
690 static void
691 otx2_nix_tx_queue_release(void *_txq)
692 {
693         struct otx2_eth_txq *txq = _txq;
694
695         if (!txq)
696                 return;
697
698         otx2_nix_dbg("Releasing txq %u", txq->sq);
699
700         /* Free sqb's and disable sq */
701         nix_sq_uninit(txq);
702
703         if (txq->sqb_pool) {
704                 rte_mempool_free(txq->sqb_pool);
705                 txq->sqb_pool = NULL;
706         }
707         rte_free(txq);
708 }
709
710
711 static int
712 otx2_nix_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t sq,
713                         uint16_t nb_desc, unsigned int socket_id,
714                         const struct rte_eth_txconf *tx_conf)
715 {
716         struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
717         const struct rte_memzone *fc;
718         struct otx2_eth_txq *txq;
719         uint64_t offloads;
720         int rc;
721
722         rc = -EINVAL;
723
724         /* Compile time check to make sure all fast path elements in a CL */
725         RTE_BUILD_BUG_ON(offsetof(struct otx2_eth_txq, slow_path_start) >= 128);
726
727         if (tx_conf->tx_deferred_start) {
728                 otx2_err("Tx deferred start is not supported");
729                 goto fail;
730         }
731
732         /* Free memory prior to re-allocation if needed. */
733         if (eth_dev->data->tx_queues[sq] != NULL) {
734                 otx2_nix_dbg("Freeing memory prior to re-allocation %d", sq);
735                 otx2_nix_tx_queue_release(eth_dev->data->tx_queues[sq]);
736                 eth_dev->data->tx_queues[sq] = NULL;
737         }
738
739         /* Find the expected offloads for this queue */
740         offloads = tx_conf->offloads | eth_dev->data->dev_conf.txmode.offloads;
741
742         /* Allocating tx queue data structure */
743         txq = rte_zmalloc_socket("otx2_ethdev TX queue", sizeof(*txq),
744                                  OTX2_ALIGN, socket_id);
745         if (txq == NULL) {
746                 otx2_err("Failed to alloc txq=%d", sq);
747                 rc = -ENOMEM;
748                 goto fail;
749         }
750         txq->sq = sq;
751         txq->dev = dev;
752         txq->sqb_pool = NULL;
753         txq->offloads = offloads;
754         dev->tx_offloads |= offloads;
755
756         /*
757          * Allocate memory for flow control updates from HW.
758          * Alloc one cache line, so that fits all FC_STYPE modes.
759          */
760         fc = rte_eth_dma_zone_reserve(eth_dev, "fcmem", sq,
761                                       OTX2_ALIGN + sizeof(struct npa_aura_s),
762                                       OTX2_ALIGN, dev->node);
763         if (fc == NULL) {
764                 otx2_err("Failed to allocate mem for fcmem");
765                 rc = -ENOMEM;
766                 goto free_txq;
767         }
768         txq->fc_iova = fc->iova;
769         txq->fc_mem = fc->addr;
770
771         /* Initialize the aura sqb pool */
772         rc = nix_alloc_sqb_pool(eth_dev->data->port_id, txq, nb_desc);
773         if (rc) {
774                 otx2_err("Failed to alloc sqe pool rc=%d", rc);
775                 goto free_txq;
776         }
777
778         /* Initialize the SQ */
779         rc = nix_sq_init(txq);
780         if (rc) {
781                 otx2_err("Failed to init sq=%d context", sq);
782                 goto free_txq;
783         }
784
785         txq->fc_cache_pkts = 0;
786         txq->io_addr = dev->base + NIX_LF_OP_SENDX(0);
787         /* Evenly distribute LMT slot for each sq */
788         txq->lmt_addr = (void *)(dev->lmt_addr + ((sq & LMT_SLOT_MASK) << 12));
789
790         txq->qconf.socket_id = socket_id;
791         txq->qconf.nb_desc = nb_desc;
792         memcpy(&txq->qconf.conf.tx, tx_conf, sizeof(struct rte_eth_txconf));
793
794         otx2_nix_form_default_desc(txq);
795
796         otx2_nix_dbg("sq=%d fc=%p offload=0x%" PRIx64 " sqb=0x%" PRIx64 ""
797                      " lmt_addr=%p nb_sqb_bufs=%d sqes_per_sqb_log2=%d", sq,
798                      fc->addr, offloads, txq->sqb_pool->pool_id, txq->lmt_addr,
799                      txq->nb_sqb_bufs, txq->sqes_per_sqb_log2);
800         eth_dev->data->tx_queues[sq] = txq;
801         eth_dev->data->tx_queue_state[sq] = RTE_ETH_QUEUE_STATE_STOPPED;
802         return 0;
803
804 free_txq:
805         otx2_nix_tx_queue_release(txq);
806 fail:
807         return rc;
808 }
809
810
811 static int
812 otx2_nix_configure(struct rte_eth_dev *eth_dev)
813 {
814         struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
815         struct rte_eth_dev_data *data = eth_dev->data;
816         struct rte_eth_conf *conf = &data->dev_conf;
817         struct rte_eth_rxmode *rxmode = &conf->rxmode;
818         struct rte_eth_txmode *txmode = &conf->txmode;
819         char ea_fmt[RTE_ETHER_ADDR_FMT_SIZE];
820         struct rte_ether_addr *ea;
821         uint8_t nb_rxq, nb_txq;
822         int rc;
823
824         rc = -EINVAL;
825
826         /* Sanity checks */
827         if (rte_eal_has_hugepages() == 0) {
828                 otx2_err("Huge page is not configured");
829                 goto fail;
830         }
831
832         if (rte_eal_iova_mode() != RTE_IOVA_VA) {
833                 otx2_err("iova mode should be va");
834                 goto fail;
835         }
836
837         if (conf->link_speeds & ETH_LINK_SPEED_FIXED) {
838                 otx2_err("Setting link speed/duplex not supported");
839                 goto fail;
840         }
841
842         if (conf->dcb_capability_en == 1) {
843                 otx2_err("dcb enable is not supported");
844                 goto fail;
845         }
846
847         if (conf->fdir_conf.mode != RTE_FDIR_MODE_NONE) {
848                 otx2_err("Flow director is not supported");
849                 goto fail;
850         }
851
852         if (rxmode->mq_mode != ETH_MQ_RX_NONE &&
853             rxmode->mq_mode != ETH_MQ_RX_RSS) {
854                 otx2_err("Unsupported mq rx mode %d", rxmode->mq_mode);
855                 goto fail;
856         }
857
858         if (txmode->mq_mode != ETH_MQ_TX_NONE) {
859                 otx2_err("Unsupported mq tx mode %d", txmode->mq_mode);
860                 goto fail;
861         }
862
863         /* Free the resources allocated from the previous configure */
864         if (dev->configured == 1) {
865                 oxt2_nix_unregister_queue_irqs(eth_dev);
866                 nix_lf_free(dev);
867         }
868
869         if (otx2_dev_is_A0(dev) &&
870             (txmode->offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
871             ((txmode->offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ||
872             (txmode->offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM))) {
873                 otx2_err("Outer IP and SCTP checksum unsupported");
874                 rc = -EINVAL;
875                 goto fail;
876         }
877
878         dev->rx_offloads = rxmode->offloads;
879         dev->tx_offloads = txmode->offloads;
880         dev->rss_info.rss_grps = NIX_RSS_GRPS;
881
882         nb_rxq = RTE_MAX(data->nb_rx_queues, 1);
883         nb_txq = RTE_MAX(data->nb_tx_queues, 1);
884
885         /* Alloc a nix lf */
886         rc = nix_lf_alloc(dev, nb_rxq, nb_txq);
887         if (rc) {
888                 otx2_err("Failed to init nix_lf rc=%d", rc);
889                 goto fail;
890         }
891
892         /* Configure RSS */
893         rc = otx2_nix_rss_config(eth_dev);
894         if (rc) {
895                 otx2_err("Failed to configure rss rc=%d", rc);
896                 goto free_nix_lf;
897         }
898
899         /* Register queue IRQs */
900         rc = oxt2_nix_register_queue_irqs(eth_dev);
901         if (rc) {
902                 otx2_err("Failed to register queue interrupts rc=%d", rc);
903                 goto free_nix_lf;
904         }
905
906         /* Update the mac address */
907         ea = eth_dev->data->mac_addrs;
908         memcpy(ea, dev->mac_addr, RTE_ETHER_ADDR_LEN);
909         if (rte_is_zero_ether_addr(ea))
910                 rte_eth_random_addr((uint8_t *)ea);
911
912         rte_ether_format_addr(ea_fmt, RTE_ETHER_ADDR_FMT_SIZE, ea);
913
914         otx2_nix_dbg("Configured port%d mac=%s nb_rxq=%d nb_txq=%d"
915                 " rx_offloads=0x%" PRIx64 " tx_offloads=0x%" PRIx64 ""
916                 " rx_flags=0x%x tx_flags=0x%x",
917                 eth_dev->data->port_id, ea_fmt, nb_rxq,
918                 nb_txq, dev->rx_offloads, dev->tx_offloads,
919                 dev->rx_offload_flags, dev->tx_offload_flags);
920
921         /* All good */
922         dev->configured = 1;
923         dev->configured_nb_rx_qs = data->nb_rx_queues;
924         dev->configured_nb_tx_qs = data->nb_tx_queues;
925         return 0;
926
927 free_nix_lf:
928         rc = nix_lf_free(dev);
929 fail:
930         return rc;
931 }
932
933 /* Initialize and register driver with DPDK Application */
934 static const struct eth_dev_ops otx2_eth_dev_ops = {
935         .dev_infos_get            = otx2_nix_info_get,
936         .dev_configure            = otx2_nix_configure,
937         .link_update              = otx2_nix_link_update,
938         .tx_queue_setup           = otx2_nix_tx_queue_setup,
939         .tx_queue_release         = otx2_nix_tx_queue_release,
940         .rx_queue_setup           = otx2_nix_rx_queue_setup,
941         .rx_queue_release         = otx2_nix_rx_queue_release,
942         .stats_get                = otx2_nix_dev_stats_get,
943         .stats_reset              = otx2_nix_dev_stats_reset,
944         .get_reg                  = otx2_nix_dev_get_reg,
945         .mac_addr_add             = otx2_nix_mac_addr_add,
946         .mac_addr_remove          = otx2_nix_mac_addr_del,
947         .mac_addr_set             = otx2_nix_mac_addr_set,
948         .promiscuous_enable       = otx2_nix_promisc_enable,
949         .promiscuous_disable      = otx2_nix_promisc_disable,
950         .allmulticast_enable      = otx2_nix_allmulticast_enable,
951         .allmulticast_disable     = otx2_nix_allmulticast_disable,
952         .queue_stats_mapping_set  = otx2_nix_queue_stats_mapping,
953         .reta_update              = otx2_nix_dev_reta_update,
954         .reta_query               = otx2_nix_dev_reta_query,
955         .rss_hash_update          = otx2_nix_rss_hash_update,
956         .rss_hash_conf_get        = otx2_nix_rss_hash_conf_get,
957         .xstats_get               = otx2_nix_xstats_get,
958         .xstats_get_names         = otx2_nix_xstats_get_names,
959         .xstats_reset             = otx2_nix_xstats_reset,
960         .xstats_get_by_id         = otx2_nix_xstats_get_by_id,
961         .xstats_get_names_by_id   = otx2_nix_xstats_get_names_by_id,
962 };
963
964 static inline int
965 nix_lf_attach(struct otx2_eth_dev *dev)
966 {
967         struct otx2_mbox *mbox = dev->mbox;
968         struct rsrc_attach_req *req;
969
970         /* Attach NIX(lf) */
971         req = otx2_mbox_alloc_msg_attach_resources(mbox);
972         req->modify = true;
973         req->nixlf = true;
974
975         return otx2_mbox_process(mbox);
976 }
977
978 static inline int
979 nix_lf_get_msix_offset(struct otx2_eth_dev *dev)
980 {
981         struct otx2_mbox *mbox = dev->mbox;
982         struct msix_offset_rsp *msix_rsp;
983         int rc;
984
985         /* Get NPA and NIX MSIX vector offsets */
986         otx2_mbox_alloc_msg_msix_offset(mbox);
987
988         rc = otx2_mbox_process_msg(mbox, (void *)&msix_rsp);
989
990         dev->nix_msixoff = msix_rsp->nix_msixoff;
991
992         return rc;
993 }
994
995 static inline int
996 otx2_eth_dev_lf_detach(struct otx2_mbox *mbox)
997 {
998         struct rsrc_detach_req *req;
999
1000         req = otx2_mbox_alloc_msg_detach_resources(mbox);
1001
1002         /* Detach all except npa lf */
1003         req->partial = true;
1004         req->nixlf = true;
1005         req->sso = true;
1006         req->ssow = true;
1007         req->timlfs = true;
1008         req->cptlfs = true;
1009
1010         return otx2_mbox_process(mbox);
1011 }
1012
1013 static int
1014 otx2_eth_dev_init(struct rte_eth_dev *eth_dev)
1015 {
1016         struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1017         struct rte_pci_device *pci_dev;
1018         int rc, max_entries;
1019
1020         eth_dev->dev_ops = &otx2_eth_dev_ops;
1021
1022         /* For secondary processes, the primary has done all the work */
1023         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1024                 /* Setup callbacks for secondary process */
1025                 otx2_eth_set_tx_function(eth_dev);
1026                 otx2_eth_set_rx_function(eth_dev);
1027                 return 0;
1028         }
1029
1030         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1031
1032         rte_eth_copy_pci_info(eth_dev, pci_dev);
1033         eth_dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
1034
1035         /* Zero out everything after OTX2_DEV to allow proper dev_reset() */
1036         memset(&dev->otx2_eth_dev_data_start, 0, sizeof(*dev) -
1037                 offsetof(struct otx2_eth_dev, otx2_eth_dev_data_start));
1038
1039         /* Parse devargs string */
1040         rc = otx2_ethdev_parse_devargs(eth_dev->device->devargs, dev);
1041         if (rc) {
1042                 otx2_err("Failed to parse devargs rc=%d", rc);
1043                 goto error;
1044         }
1045
1046         if (!dev->mbox_active) {
1047                 /* Initialize the base otx2_dev object
1048                  * only if already present
1049                  */
1050                 rc = otx2_dev_init(pci_dev, dev);
1051                 if (rc) {
1052                         otx2_err("Failed to initialize otx2_dev rc=%d", rc);
1053                         goto error;
1054                 }
1055         }
1056         /* Device generic callbacks */
1057         dev->ops = &otx2_dev_ops;
1058         dev->eth_dev = eth_dev;
1059
1060         /* Grab the NPA LF if required */
1061         rc = otx2_npa_lf_init(pci_dev, dev);
1062         if (rc)
1063                 goto otx2_dev_uninit;
1064
1065         dev->configured = 0;
1066         dev->drv_inited = true;
1067         dev->base = dev->bar2 + (RVU_BLOCK_ADDR_NIX0 << 20);
1068         dev->lmt_addr = dev->bar2 + (RVU_BLOCK_ADDR_LMT << 20);
1069
1070         /* Attach NIX LF */
1071         rc = nix_lf_attach(dev);
1072         if (rc)
1073                 goto otx2_npa_uninit;
1074
1075         /* Get NIX MSIX offset */
1076         rc = nix_lf_get_msix_offset(dev);
1077         if (rc)
1078                 goto otx2_npa_uninit;
1079
1080         /* Register LF irq handlers */
1081         rc = otx2_nix_register_irqs(eth_dev);
1082         if (rc)
1083                 goto mbox_detach;
1084
1085         /* Get maximum number of supported MAC entries */
1086         max_entries = otx2_cgx_mac_max_entries_get(dev);
1087         if (max_entries < 0) {
1088                 otx2_err("Failed to get max entries for mac addr");
1089                 rc = -ENOTSUP;
1090                 goto unregister_irq;
1091         }
1092
1093         /* For VFs, returned max_entries will be 0. But to keep default MAC
1094          * address, one entry must be allocated. So setting up to 1.
1095          */
1096         if (max_entries == 0)
1097                 max_entries = 1;
1098
1099         eth_dev->data->mac_addrs = rte_zmalloc("mac_addr", max_entries *
1100                                                RTE_ETHER_ADDR_LEN, 0);
1101         if (eth_dev->data->mac_addrs == NULL) {
1102                 otx2_err("Failed to allocate memory for mac addr");
1103                 rc = -ENOMEM;
1104                 goto unregister_irq;
1105         }
1106
1107         dev->max_mac_entries = max_entries;
1108
1109         rc = otx2_nix_mac_addr_get(eth_dev, dev->mac_addr);
1110         if (rc)
1111                 goto free_mac_addrs;
1112
1113         /* Update the mac address */
1114         memcpy(eth_dev->data->mac_addrs, dev->mac_addr, RTE_ETHER_ADDR_LEN);
1115
1116         /* Also sync same MAC address to CGX table */
1117         otx2_cgx_mac_addr_set(eth_dev, &eth_dev->data->mac_addrs[0]);
1118
1119         dev->tx_offload_capa = nix_get_tx_offload_capa(dev);
1120         dev->rx_offload_capa = nix_get_rx_offload_capa(dev);
1121
1122         if (otx2_dev_is_A0(dev)) {
1123                 dev->hwcap |= OTX2_FIXUP_F_MIN_4K_Q;
1124                 dev->hwcap |= OTX2_FIXUP_F_LIMIT_CQ_FULL;
1125         }
1126
1127         otx2_nix_dbg("Port=%d pf=%d vf=%d ver=%s msix_off=%d hwcap=0x%" PRIx64
1128                      " rxoffload_capa=0x%" PRIx64 " txoffload_capa=0x%" PRIx64,
1129                      eth_dev->data->port_id, dev->pf, dev->vf,
1130                      OTX2_ETH_DEV_PMD_VERSION, dev->nix_msixoff, dev->hwcap,
1131                      dev->rx_offload_capa, dev->tx_offload_capa);
1132         return 0;
1133
1134 free_mac_addrs:
1135         rte_free(eth_dev->data->mac_addrs);
1136 unregister_irq:
1137         otx2_nix_unregister_irqs(eth_dev);
1138 mbox_detach:
1139         otx2_eth_dev_lf_detach(dev->mbox);
1140 otx2_npa_uninit:
1141         otx2_npa_lf_fini();
1142 otx2_dev_uninit:
1143         otx2_dev_fini(pci_dev, dev);
1144 error:
1145         otx2_err("Failed to init nix eth_dev rc=%d", rc);
1146         return rc;
1147 }
1148
1149 static int
1150 otx2_eth_dev_uninit(struct rte_eth_dev *eth_dev, bool mbox_close)
1151 {
1152         struct otx2_eth_dev *dev = otx2_eth_pmd_priv(eth_dev);
1153         struct rte_pci_device *pci_dev;
1154         int rc, i;
1155
1156         /* Nothing to be done for secondary processes */
1157         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1158                 return 0;
1159
1160         /* Free up SQs */
1161         for (i = 0; i < eth_dev->data->nb_tx_queues; i++) {
1162                 otx2_nix_tx_queue_release(eth_dev->data->tx_queues[i]);
1163                 eth_dev->data->tx_queues[i] = NULL;
1164         }
1165         eth_dev->data->nb_tx_queues = 0;
1166
1167         /* Free up RQ's and CQ's */
1168         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
1169                 otx2_nix_rx_queue_release(eth_dev->data->rx_queues[i]);
1170                 eth_dev->data->rx_queues[i] = NULL;
1171         }
1172         eth_dev->data->nb_rx_queues = 0;
1173
1174         /* Unregister queue irqs */
1175         oxt2_nix_unregister_queue_irqs(eth_dev);
1176
1177         rc = nix_lf_free(dev);
1178         if (rc)
1179                 otx2_err("Failed to free nix lf, rc=%d", rc);
1180
1181         rc = otx2_npa_lf_fini();
1182         if (rc)
1183                 otx2_err("Failed to cleanup npa lf, rc=%d", rc);
1184
1185         rte_free(eth_dev->data->mac_addrs);
1186         eth_dev->data->mac_addrs = NULL;
1187         dev->drv_inited = false;
1188
1189         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1190         otx2_nix_unregister_irqs(eth_dev);
1191
1192         rc = otx2_eth_dev_lf_detach(dev->mbox);
1193         if (rc)
1194                 otx2_err("Failed to detach resources, rc=%d", rc);
1195
1196         /* Check if mbox close is needed */
1197         if (!mbox_close)
1198                 return 0;
1199
1200         if (otx2_npa_lf_active(dev) || otx2_dev_active_vfs(dev)) {
1201                 /* Will be freed later by PMD */
1202                 eth_dev->data->dev_private = NULL;
1203                 return 0;
1204         }
1205
1206         otx2_dev_fini(pci_dev, dev);
1207         return 0;
1208 }
1209
1210 static int
1211 nix_remove(struct rte_pci_device *pci_dev)
1212 {
1213         struct rte_eth_dev *eth_dev;
1214         struct otx2_idev_cfg *idev;
1215         struct otx2_dev *otx2_dev;
1216         int rc;
1217
1218         eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
1219         if (eth_dev) {
1220                 /* Cleanup eth dev */
1221                 rc = otx2_eth_dev_uninit(eth_dev, true);
1222                 if (rc)
1223                         return rc;
1224
1225                 rte_eth_dev_pci_release(eth_dev);
1226         }
1227
1228         /* Nothing to be done for secondary processes */
1229         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1230                 return 0;
1231
1232         /* Check for common resources */
1233         idev = otx2_intra_dev_get_cfg();
1234         if (!idev || !idev->npa_lf || idev->npa_lf->pci_dev != pci_dev)
1235                 return 0;
1236
1237         otx2_dev = container_of(idev->npa_lf, struct otx2_dev, npalf);
1238
1239         if (otx2_npa_lf_active(otx2_dev) || otx2_dev_active_vfs(otx2_dev))
1240                 goto exit;
1241
1242         /* Safe to cleanup mbox as no more users */
1243         otx2_dev_fini(pci_dev, otx2_dev);
1244         rte_free(otx2_dev);
1245         return 0;
1246
1247 exit:
1248         otx2_info("%s: common resource in use by other devices", pci_dev->name);
1249         return -EAGAIN;
1250 }
1251
1252 static int
1253 nix_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
1254 {
1255         int rc;
1256
1257         RTE_SET_USED(pci_drv);
1258
1259         rc = rte_eth_dev_pci_generic_probe(pci_dev, sizeof(struct otx2_eth_dev),
1260                                            otx2_eth_dev_init);
1261
1262         /* On error on secondary, recheck if port exists in primary or
1263          * in mid of detach state.
1264          */
1265         if (rte_eal_process_type() != RTE_PROC_PRIMARY && rc)
1266                 if (!rte_eth_dev_allocated(pci_dev->device.name))
1267                         return 0;
1268         return rc;
1269 }
1270
1271 static const struct rte_pci_id pci_nix_map[] = {
1272         {
1273                 RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVID_OCTEONTX2_RVU_PF)
1274         },
1275         {
1276                 RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVID_OCTEONTX2_RVU_VF)
1277         },
1278         {
1279                 RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM,
1280                                PCI_DEVID_OCTEONTX2_RVU_AF_VF)
1281         },
1282         {
1283                 .vendor_id = 0,
1284         },
1285 };
1286
1287 static struct rte_pci_driver pci_nix = {
1288         .id_table = pci_nix_map,
1289         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_IOVA_AS_VA |
1290                         RTE_PCI_DRV_INTR_LSC,
1291         .probe = nix_probe,
1292         .remove = nix_remove,
1293 };
1294
1295 RTE_PMD_REGISTER_PCI(net_octeontx2, pci_nix);
1296 RTE_PMD_REGISTER_PCI_TABLE(net_octeontx2, pci_nix_map);
1297 RTE_PMD_REGISTER_KMOD_DEP(net_octeontx2, "vfio-pci");