net/cnxk: support IP reassembly
[dpdk.git] / drivers / net / cnxk / cn10k_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4 #include "cn10k_ethdev.h"
5 #include "cn10k_flow.h"
6 #include "cn10k_rx.h"
7 #include "cn10k_tx.h"
8
9 static uint16_t
10 nix_rx_offload_flags(struct rte_eth_dev *eth_dev)
11 {
12         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
13         struct rte_eth_dev_data *data = eth_dev->data;
14         struct rte_eth_conf *conf = &data->dev_conf;
15         struct rte_eth_rxmode *rxmode = &conf->rxmode;
16         uint16_t flags = 0;
17
18         if (rxmode->mq_mode == RTE_ETH_MQ_RX_RSS &&
19             (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_RSS_HASH))
20                 flags |= NIX_RX_OFFLOAD_RSS_F;
21
22         if (dev->rx_offloads &
23             (RTE_ETH_RX_OFFLOAD_TCP_CKSUM | RTE_ETH_RX_OFFLOAD_UDP_CKSUM))
24                 flags |= NIX_RX_OFFLOAD_CHECKSUM_F;
25
26         if (dev->rx_offloads &
27             (RTE_ETH_RX_OFFLOAD_IPV4_CKSUM | RTE_ETH_RX_OFFLOAD_OUTER_IPV4_CKSUM))
28                 flags |= NIX_RX_OFFLOAD_CHECKSUM_F;
29
30         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SCATTER)
31                 flags |= NIX_RX_MULTI_SEG_F;
32
33         if ((dev->rx_offloads & RTE_ETH_RX_OFFLOAD_TIMESTAMP))
34                 flags |= NIX_RX_OFFLOAD_TSTAMP_F;
35
36         if (!dev->ptype_disable)
37                 flags |= NIX_RX_OFFLOAD_PTYPE_F;
38
39         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)
40                 flags |= NIX_RX_OFFLOAD_SECURITY_F;
41
42         if (dev->rx_mark_update)
43                 flags |= NIX_RX_OFFLOAD_MARK_UPDATE_F;
44
45         return flags;
46 }
47
48 static uint16_t
49 nix_tx_offload_flags(struct rte_eth_dev *eth_dev)
50 {
51         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
52         uint64_t conf = dev->tx_offloads;
53         uint16_t flags = 0;
54
55         /* Fastpath is dependent on these enums */
56         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_TCP_CKSUM != (1ULL << 52));
57         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_SCTP_CKSUM != (2ULL << 52));
58         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_UDP_CKSUM != (3ULL << 52));
59         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_IP_CKSUM != (1ULL << 54));
60         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_IPV4 != (1ULL << 55));
61         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_OUTER_IP_CKSUM != (1ULL << 58));
62         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_OUTER_IPV4 != (1ULL << 59));
63         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_OUTER_IPV6 != (1ULL << 60));
64         RTE_BUILD_BUG_ON(RTE_MBUF_F_TX_OUTER_UDP_CKSUM != (1ULL << 41));
65         RTE_BUILD_BUG_ON(RTE_MBUF_L2_LEN_BITS != 7);
66         RTE_BUILD_BUG_ON(RTE_MBUF_L3_LEN_BITS != 9);
67         RTE_BUILD_BUG_ON(RTE_MBUF_OUTL2_LEN_BITS != 7);
68         RTE_BUILD_BUG_ON(RTE_MBUF_OUTL3_LEN_BITS != 9);
69         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) !=
70                          offsetof(struct rte_mbuf, buf_iova) + 8);
71         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, ol_flags) !=
72                          offsetof(struct rte_mbuf, buf_iova) + 16);
73         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, pkt_len) !=
74                          offsetof(struct rte_mbuf, ol_flags) + 12);
75         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, tx_offload) !=
76                          offsetof(struct rte_mbuf, pool) + 2 * sizeof(void *));
77
78         if (conf & RTE_ETH_TX_OFFLOAD_VLAN_INSERT ||
79             conf & RTE_ETH_TX_OFFLOAD_QINQ_INSERT)
80                 flags |= NIX_TX_OFFLOAD_VLAN_QINQ_F;
81
82         if (conf & RTE_ETH_TX_OFFLOAD_OUTER_IPV4_CKSUM ||
83             conf & RTE_ETH_TX_OFFLOAD_OUTER_UDP_CKSUM)
84                 flags |= NIX_TX_OFFLOAD_OL3_OL4_CSUM_F;
85
86         if (conf & RTE_ETH_TX_OFFLOAD_IPV4_CKSUM ||
87             conf & RTE_ETH_TX_OFFLOAD_TCP_CKSUM ||
88             conf & RTE_ETH_TX_OFFLOAD_UDP_CKSUM || conf & RTE_ETH_TX_OFFLOAD_SCTP_CKSUM)
89                 flags |= NIX_TX_OFFLOAD_L3_L4_CSUM_F;
90
91         if (!(conf & RTE_ETH_TX_OFFLOAD_MBUF_FAST_FREE))
92                 flags |= NIX_TX_OFFLOAD_MBUF_NOFF_F;
93
94         if (conf & RTE_ETH_TX_OFFLOAD_MULTI_SEGS)
95                 flags |= NIX_TX_MULTI_SEG_F;
96
97         /* Enable Inner checksum for TSO */
98         if (conf & RTE_ETH_TX_OFFLOAD_TCP_TSO)
99                 flags |= (NIX_TX_OFFLOAD_TSO_F | NIX_TX_OFFLOAD_L3_L4_CSUM_F);
100
101         /* Enable Inner and Outer checksum for Tunnel TSO */
102         if (conf & (RTE_ETH_TX_OFFLOAD_VXLAN_TNL_TSO |
103                     RTE_ETH_TX_OFFLOAD_GENEVE_TNL_TSO | RTE_ETH_TX_OFFLOAD_GRE_TNL_TSO))
104                 flags |= (NIX_TX_OFFLOAD_TSO_F | NIX_TX_OFFLOAD_OL3_OL4_CSUM_F |
105                           NIX_TX_OFFLOAD_L3_L4_CSUM_F);
106
107         if ((dev->rx_offloads & RTE_ETH_RX_OFFLOAD_TIMESTAMP))
108                 flags |= NIX_TX_OFFLOAD_TSTAMP_F;
109
110         if (conf & RTE_ETH_TX_OFFLOAD_SECURITY)
111                 flags |= NIX_TX_OFFLOAD_SECURITY_F;
112
113         return flags;
114 }
115
116 static int
117 cn10k_nix_ptypes_set(struct rte_eth_dev *eth_dev, uint32_t ptype_mask)
118 {
119         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
120
121         if (ptype_mask) {
122                 dev->rx_offload_flags |= NIX_RX_OFFLOAD_PTYPE_F;
123                 dev->ptype_disable = 0;
124         } else {
125                 dev->rx_offload_flags &= ~NIX_RX_OFFLOAD_PTYPE_F;
126                 dev->ptype_disable = 1;
127         }
128
129         cn10k_eth_set_rx_function(eth_dev);
130         return 0;
131 }
132
133 static void
134 nix_form_default_desc(struct cnxk_eth_dev *dev, struct cn10k_eth_txq *txq,
135                       uint16_t qid)
136 {
137         union nix_send_hdr_w0_u send_hdr_w0;
138
139         /* Initialize the fields based on basic single segment packet */
140         send_hdr_w0.u = 0;
141         if (dev->tx_offload_flags & NIX_TX_NEED_EXT_HDR) {
142                 /* 2(HDR) + 2(EXT_HDR) + 1(SG) + 1(IOVA) = 6/2 - 1 = 2 */
143                 send_hdr_w0.sizem1 = 2;
144                 if (dev->tx_offload_flags & NIX_TX_OFFLOAD_TSTAMP_F) {
145                         /* Default: one seg packet would have:
146                          * 2(HDR) + 2(EXT) + 1(SG) + 1(IOVA) + 2(MEM)
147                          * => 8/2 - 1 = 3
148                          */
149                         send_hdr_w0.sizem1 = 3;
150
151                         /* To calculate the offset for send_mem,
152                          * send_hdr->w0.sizem1 * 2
153                          */
154                         txq->ts_mem = dev->tstamp.tx_tstamp_iova;
155                 }
156         } else {
157                 /* 2(HDR) + 1(SG) + 1(IOVA) = 4/2 - 1 = 1 */
158                 send_hdr_w0.sizem1 = 1;
159         }
160         send_hdr_w0.sq = qid;
161         txq->send_hdr_w0 = send_hdr_w0.u;
162         rte_wmb();
163 }
164
165 static int
166 cn10k_nix_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t qid,
167                          uint16_t nb_desc, unsigned int socket,
168                          const struct rte_eth_txconf *tx_conf)
169 {
170         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
171         struct roc_nix *nix = &dev->nix;
172         struct roc_cpt_lf *inl_lf;
173         struct cn10k_eth_txq *txq;
174         struct roc_nix_sq *sq;
175         uint16_t crypto_qid;
176         int rc;
177
178         RTE_SET_USED(socket);
179
180         /* Common Tx queue setup */
181         rc = cnxk_nix_tx_queue_setup(eth_dev, qid, nb_desc,
182                                      sizeof(struct cn10k_eth_txq), tx_conf);
183         if (rc)
184                 return rc;
185
186         sq = &dev->sqs[qid];
187         /* Update fast path queue */
188         txq = eth_dev->data->tx_queues[qid];
189         txq->fc_mem = sq->fc;
190         /* Store lmt base in tx queue for easy access */
191         txq->lmt_base = nix->lmt_base;
192         txq->io_addr = sq->io_addr;
193         txq->nb_sqb_bufs_adj = sq->nb_sqb_bufs_adj;
194         txq->sqes_per_sqb_log2 = sq->sqes_per_sqb_log2;
195
196         /* Fetch CPT LF info for outbound if present */
197         if (dev->outb.lf_base) {
198                 crypto_qid = qid % dev->outb.nb_crypto_qs;
199                 inl_lf = dev->outb.lf_base + crypto_qid;
200
201                 txq->cpt_io_addr = inl_lf->io_addr;
202                 txq->cpt_fc = inl_lf->fc_addr;
203                 txq->cpt_desc = inl_lf->nb_desc * 0.7;
204                 txq->sa_base = (uint64_t)dev->outb.sa_base;
205                 txq->sa_base |= eth_dev->data->port_id;
206                 PLT_STATIC_ASSERT(ROC_NIX_INL_SA_BASE_ALIGN == BIT_ULL(16));
207         }
208
209         nix_form_default_desc(dev, txq, qid);
210         txq->lso_tun_fmt = dev->lso_tun_fmt;
211         return 0;
212 }
213
214 static int
215 cn10k_nix_rx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t qid,
216                          uint16_t nb_desc, unsigned int socket,
217                          const struct rte_eth_rxconf *rx_conf,
218                          struct rte_mempool *mp)
219 {
220         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
221         struct cnxk_eth_rxq_sp *rxq_sp;
222         struct cn10k_eth_rxq *rxq;
223         struct roc_nix_rq *rq;
224         struct roc_nix_cq *cq;
225         int rc;
226
227         RTE_SET_USED(socket);
228
229         /* CQ Errata needs min 4K ring */
230         if (dev->cq_min_4k && nb_desc < 4096)
231                 nb_desc = 4096;
232
233         /* Common Rx queue setup */
234         rc = cnxk_nix_rx_queue_setup(eth_dev, qid, nb_desc,
235                                      sizeof(struct cn10k_eth_rxq), rx_conf, mp);
236         if (rc)
237                 return rc;
238
239         rq = &dev->rqs[qid];
240         cq = &dev->cqs[qid];
241
242         /* Update fast path queue */
243         rxq = eth_dev->data->rx_queues[qid];
244         rxq->rq = qid;
245         rxq->desc = (uintptr_t)cq->desc_base;
246         rxq->cq_door = cq->door;
247         rxq->cq_status = cq->status;
248         rxq->wdata = cq->wdata;
249         rxq->head = cq->head;
250         rxq->qmask = cq->qmask;
251         rxq->tstamp = &dev->tstamp;
252
253         /* Data offset from data to start of mbuf is first_skip */
254         rxq->data_off = rq->first_skip;
255         rxq->mbuf_initializer = cnxk_nix_rxq_mbuf_setup(dev);
256
257         /* Setup security related info */
258         if (dev->rx_offload_flags & NIX_RX_OFFLOAD_SECURITY_F) {
259                 rxq->lmt_base = dev->nix.lmt_base;
260                 rxq->sa_base = roc_nix_inl_inb_sa_base_get(&dev->nix,
261                                                            dev->inb.inl_dev);
262         }
263         rxq_sp = cnxk_eth_rxq_to_sp(rxq);
264         rxq->aura_handle = rxq_sp->qconf.mp->pool_id;
265
266         /* Lookup mem */
267         rxq->lookup_mem = cnxk_nix_fastpath_lookup_mem_get();
268         return 0;
269 }
270
271 static int
272 cn10k_nix_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t qidx)
273 {
274         struct cn10k_eth_txq *txq = eth_dev->data->tx_queues[qidx];
275         int rc;
276
277         rc = cnxk_nix_tx_queue_stop(eth_dev, qidx);
278         if (rc)
279                 return rc;
280
281         /* Clear fc cache pkts to trigger worker stop */
282         txq->fc_cache_pkts = 0;
283         return 0;
284 }
285
286 static int
287 cn10k_nix_configure(struct rte_eth_dev *eth_dev)
288 {
289         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
290         int rc;
291
292         /* Common nix configure */
293         rc = cnxk_nix_configure(eth_dev);
294         if (rc)
295                 return rc;
296
297         if (dev->tx_offloads & RTE_ETH_TX_OFFLOAD_SECURITY ||
298             dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
299                 /* Register callback to handle security error work */
300                 roc_nix_inl_cb_register(cn10k_eth_sec_sso_work_cb, NULL);
301         }
302
303         /* Update offload flags */
304         dev->rx_offload_flags = nix_rx_offload_flags(eth_dev);
305         dev->tx_offload_flags = nix_tx_offload_flags(eth_dev);
306
307         /* reset reassembly dynfield/flag offset */
308         dev->reass_dynfield_off = -1;
309         dev->reass_dynflag_bit = -1;
310
311         plt_nix_dbg("Configured port%d platform specific rx_offload_flags=%x"
312                     " tx_offload_flags=0x%x",
313                     eth_dev->data->port_id, dev->rx_offload_flags,
314                     dev->tx_offload_flags);
315         return 0;
316 }
317
318 /* Function to enable ptp config for VFs */
319 static void
320 nix_ptp_enable_vf(struct rte_eth_dev *eth_dev)
321 {
322         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
323
324         if (nix_recalc_mtu(eth_dev))
325                 plt_err("Failed to set MTU size for ptp");
326
327         dev->rx_offload_flags |= NIX_RX_OFFLOAD_TSTAMP_F;
328
329         /* Setting up the function pointers as per new offload flags */
330         cn10k_eth_set_rx_function(eth_dev);
331         cn10k_eth_set_tx_function(eth_dev);
332 }
333
334 static uint16_t
335 nix_ptp_vf_burst(void *queue, struct rte_mbuf **mbufs, uint16_t pkts)
336 {
337         struct cn10k_eth_rxq *rxq = queue;
338         struct cnxk_eth_rxq_sp *rxq_sp;
339         struct rte_eth_dev *eth_dev;
340
341         RTE_SET_USED(mbufs);
342         RTE_SET_USED(pkts);
343
344         rxq_sp = cnxk_eth_rxq_to_sp(rxq);
345         eth_dev = rxq_sp->dev->eth_dev;
346         nix_ptp_enable_vf(eth_dev);
347
348         return 0;
349 }
350
351 static int
352 cn10k_nix_ptp_info_update_cb(struct roc_nix *nix, bool ptp_en)
353 {
354         struct cnxk_eth_dev *dev = (struct cnxk_eth_dev *)nix;
355         struct rte_eth_dev *eth_dev;
356         struct cn10k_eth_rxq *rxq;
357         int i;
358
359         if (!dev)
360                 return -EINVAL;
361
362         eth_dev = dev->eth_dev;
363         if (!eth_dev)
364                 return -EINVAL;
365
366         dev->ptp_en = ptp_en;
367
368         for (i = 0; i < eth_dev->data->nb_rx_queues; i++) {
369                 rxq = eth_dev->data->rx_queues[i];
370                 rxq->mbuf_initializer = cnxk_nix_rxq_mbuf_setup(dev);
371         }
372
373         if (roc_nix_is_vf_or_sdp(nix) && !(roc_nix_is_sdp(nix)) &&
374             !(roc_nix_is_lbk(nix))) {
375                 /* In case of VF, setting of MTU cannot be done directly in this
376                  * function as this is running as part of MBOX request(PF->VF)
377                  * and MTU setting also requires MBOX message to be
378                  * sent(VF->PF)
379                  */
380                 eth_dev->rx_pkt_burst = nix_ptp_vf_burst;
381                 rte_mb();
382         }
383
384         return 0;
385 }
386
387 static int
388 cn10k_nix_timesync_enable(struct rte_eth_dev *eth_dev)
389 {
390         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
391         int i, rc;
392
393         rc = cnxk_nix_timesync_enable(eth_dev);
394         if (rc)
395                 return rc;
396
397         dev->rx_offload_flags |= NIX_RX_OFFLOAD_TSTAMP_F;
398         dev->tx_offload_flags |= NIX_TX_OFFLOAD_TSTAMP_F;
399
400         for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
401                 nix_form_default_desc(dev, eth_dev->data->tx_queues[i], i);
402
403         /* Setting up the rx[tx]_offload_flags due to change
404          * in rx[tx]_offloads.
405          */
406         cn10k_eth_set_rx_function(eth_dev);
407         cn10k_eth_set_tx_function(eth_dev);
408         return 0;
409 }
410
411 static int
412 cn10k_nix_timesync_disable(struct rte_eth_dev *eth_dev)
413 {
414         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
415         int i, rc;
416
417         rc = cnxk_nix_timesync_disable(eth_dev);
418         if (rc)
419                 return rc;
420
421         dev->rx_offload_flags &= ~NIX_RX_OFFLOAD_TSTAMP_F;
422         dev->tx_offload_flags &= ~NIX_TX_OFFLOAD_TSTAMP_F;
423
424         for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
425                 nix_form_default_desc(dev, eth_dev->data->tx_queues[i], i);
426
427         /* Setting up the rx[tx]_offload_flags due to change
428          * in rx[tx]_offloads.
429          */
430         cn10k_eth_set_rx_function(eth_dev);
431         cn10k_eth_set_tx_function(eth_dev);
432         return 0;
433 }
434
435 static int
436 cn10k_nix_timesync_read_tx_timestamp(struct rte_eth_dev *eth_dev,
437                                      struct timespec *timestamp)
438 {
439         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
440         struct cnxk_timesync_info *tstamp = &dev->tstamp;
441         uint64_t ns;
442
443         if (*tstamp->tx_tstamp == 0)
444                 return -EINVAL;
445
446         *tstamp->tx_tstamp = ((*tstamp->tx_tstamp >> 32) * NSEC_PER_SEC) +
447                 (*tstamp->tx_tstamp & 0xFFFFFFFFUL);
448         ns = rte_timecounter_update(&dev->tx_tstamp_tc, *tstamp->tx_tstamp);
449         *timestamp = rte_ns_to_timespec(ns);
450         *tstamp->tx_tstamp = 0;
451         rte_wmb();
452
453         return 0;
454 }
455
456 static int
457 cn10k_nix_dev_start(struct rte_eth_dev *eth_dev)
458 {
459         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
460         struct roc_nix *nix = &dev->nix;
461         int rc;
462
463         /* Common eth dev start */
464         rc = cnxk_nix_dev_start(eth_dev);
465         if (rc)
466                 return rc;
467
468         /* Update VF about data off shifted by 8 bytes if PTP already
469          * enabled in PF owning this VF
470          */
471         if (dev->ptp_en && (!roc_nix_is_pf(nix) && (!roc_nix_is_sdp(nix))))
472                 nix_ptp_enable_vf(eth_dev);
473
474         /* Setting up the rx[tx]_offload_flags due to change
475          * in rx[tx]_offloads.
476          */
477         dev->rx_offload_flags |= nix_rx_offload_flags(eth_dev);
478         dev->tx_offload_flags |= nix_tx_offload_flags(eth_dev);
479
480         cn10k_eth_set_tx_function(eth_dev);
481         cn10k_eth_set_rx_function(eth_dev);
482         return 0;
483 }
484
485 static int
486 cn10k_nix_rx_metadata_negotiate(struct rte_eth_dev *eth_dev, uint64_t *features)
487 {
488         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
489
490         *features &=
491                 (RTE_ETH_RX_METADATA_USER_FLAG | RTE_ETH_RX_METADATA_USER_MARK);
492
493         if (*features) {
494                 dev->rx_offload_flags |= NIX_RX_OFFLOAD_MARK_UPDATE_F;
495                 dev->rx_mark_update = true;
496         } else {
497                 dev->rx_offload_flags &= ~NIX_RX_OFFLOAD_MARK_UPDATE_F;
498                 dev->rx_mark_update = false;
499         }
500
501         cn10k_eth_set_rx_function(eth_dev);
502
503         return 0;
504 }
505
506 static int
507 cn10k_nix_reassembly_capability_get(struct rte_eth_dev *eth_dev,
508                 struct rte_eth_ip_reassembly_params *reassembly_capa)
509 {
510         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
511         int rc = -ENOTSUP;
512         RTE_SET_USED(eth_dev);
513
514         if (dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY) {
515                 reassembly_capa->timeout_ms = 60 * 1000;
516                 reassembly_capa->max_frags = 4;
517                 reassembly_capa->flags = RTE_ETH_DEV_REASSEMBLY_F_IPV4 |
518                                          RTE_ETH_DEV_REASSEMBLY_F_IPV6;
519                 rc = 0;
520         }
521
522         return rc;
523 }
524
525 static int
526 cn10k_nix_reassembly_conf_get(struct rte_eth_dev *eth_dev,
527                 struct rte_eth_ip_reassembly_params *conf)
528 {
529         RTE_SET_USED(eth_dev);
530         RTE_SET_USED(conf);
531         return -ENOTSUP;
532 }
533
534 static int
535 cn10k_nix_reassembly_conf_set(struct rte_eth_dev *eth_dev,
536                 const struct rte_eth_ip_reassembly_params *conf)
537 {
538         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
539         int rc = 0;
540
541         rc = roc_nix_reassembly_configure(conf->timeout_ms,
542                                 conf->max_frags);
543         if (!rc && dev->rx_offloads & RTE_ETH_RX_OFFLOAD_SECURITY)
544                 dev->rx_offload_flags |= NIX_RX_REAS_F;
545
546         return rc;
547 }
548
549 /* Update platform specific eth dev ops */
550 static void
551 nix_eth_dev_ops_override(void)
552 {
553         static int init_once;
554
555         if (init_once)
556                 return;
557         init_once = 1;
558
559         /* Update platform specific ops */
560         cnxk_eth_dev_ops.dev_configure = cn10k_nix_configure;
561         cnxk_eth_dev_ops.tx_queue_setup = cn10k_nix_tx_queue_setup;
562         cnxk_eth_dev_ops.rx_queue_setup = cn10k_nix_rx_queue_setup;
563         cnxk_eth_dev_ops.tx_queue_stop = cn10k_nix_tx_queue_stop;
564         cnxk_eth_dev_ops.dev_start = cn10k_nix_dev_start;
565         cnxk_eth_dev_ops.dev_ptypes_set = cn10k_nix_ptypes_set;
566         cnxk_eth_dev_ops.timesync_enable = cn10k_nix_timesync_enable;
567         cnxk_eth_dev_ops.timesync_disable = cn10k_nix_timesync_disable;
568         cnxk_eth_dev_ops.rx_metadata_negotiate =
569                 cn10k_nix_rx_metadata_negotiate;
570         cnxk_eth_dev_ops.timesync_read_tx_timestamp =
571                 cn10k_nix_timesync_read_tx_timestamp;
572         cnxk_eth_dev_ops.ip_reassembly_capability_get =
573                         cn10k_nix_reassembly_capability_get;
574         cnxk_eth_dev_ops.ip_reassembly_conf_get = cn10k_nix_reassembly_conf_get;
575         cnxk_eth_dev_ops.ip_reassembly_conf_set = cn10k_nix_reassembly_conf_set;
576 }
577
578 static void
579 npc_flow_ops_override(void)
580 {
581         static int init_once;
582
583         if (init_once)
584                 return;
585         init_once = 1;
586
587         /* Update platform specific ops */
588         cnxk_flow_ops.create = cn10k_flow_create;
589         cnxk_flow_ops.destroy = cn10k_flow_destroy;
590 }
591
592 static int
593 cn10k_nix_remove(struct rte_pci_device *pci_dev)
594 {
595         return cnxk_nix_remove(pci_dev);
596 }
597
598 static int
599 cn10k_nix_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
600 {
601         struct rte_eth_dev *eth_dev;
602         struct cnxk_eth_dev *dev;
603         int rc;
604
605         if (RTE_CACHE_LINE_SIZE != 64) {
606                 plt_err("Driver not compiled for CN10K");
607                 return -EFAULT;
608         }
609
610         rc = roc_plt_init();
611         if (rc) {
612                 plt_err("Failed to initialize platform model, rc=%d", rc);
613                 return rc;
614         }
615
616         nix_eth_dev_ops_override();
617         npc_flow_ops_override();
618
619         cn10k_eth_sec_ops_override();
620
621         /* Common probe */
622         rc = cnxk_nix_probe(pci_drv, pci_dev);
623         if (rc)
624                 return rc;
625
626         /* Find eth dev allocated */
627         eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
628         if (!eth_dev)
629                 return -ENOENT;
630
631         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
632                 /* Setup callbacks for secondary process */
633                 cn10k_eth_set_tx_function(eth_dev);
634                 cn10k_eth_set_rx_function(eth_dev);
635                 return 0;
636         }
637
638         dev = cnxk_eth_pmd_priv(eth_dev);
639
640         /* DROP_RE is not supported with inline IPSec for CN10K A0 and
641          * when vector mode is enabled.
642          */
643         if ((roc_model_is_cn10ka_a0() || roc_model_is_cnf10ka_a0() ||
644              roc_model_is_cnf10kb_a0()) &&
645             !roc_env_is_asim()) {
646                 dev->ipsecd_drop_re_dis = 1;
647                 dev->vec_drop_re_dis = 1;
648         }
649
650         /* Register up msg callbacks for PTP information */
651         roc_nix_ptp_info_cb_register(&dev->nix, cn10k_nix_ptp_info_update_cb);
652
653         return 0;
654 }
655
656 static const struct rte_pci_id cn10k_pci_nix_map[] = {
657         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CN10KA, PCI_DEVID_CNXK_RVU_PF),
658         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CN10KAS, PCI_DEVID_CNXK_RVU_PF),
659         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CNF10KA, PCI_DEVID_CNXK_RVU_PF),
660         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CN10KA, PCI_DEVID_CNXK_RVU_VF),
661         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CN10KAS, PCI_DEVID_CNXK_RVU_VF),
662         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CNF10KA, PCI_DEVID_CNXK_RVU_VF),
663         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CN10KA, PCI_DEVID_CNXK_RVU_AF_VF),
664         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CN10KAS, PCI_DEVID_CNXK_RVU_AF_VF),
665         CNXK_PCI_ID(PCI_SUBSYSTEM_DEVID_CNF10KA, PCI_DEVID_CNXK_RVU_AF_VF),
666         {
667                 .vendor_id = 0,
668         },
669 };
670
671 static struct rte_pci_driver cn10k_pci_nix = {
672         .id_table = cn10k_pci_nix_map,
673         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_NEED_IOVA_AS_VA |
674                      RTE_PCI_DRV_INTR_LSC,
675         .probe = cn10k_nix_probe,
676         .remove = cn10k_nix_remove,
677 };
678
679 RTE_PMD_REGISTER_PCI(net_cn10k, cn10k_pci_nix);
680 RTE_PMD_REGISTER_PCI_TABLE(net_cn10k, cn10k_pci_nix_map);
681 RTE_PMD_REGISTER_KMOD_DEP(net_cn10k, "vfio-pci");