net/cnxk: support flow API
[dpdk.git] / drivers / net / cnxk / cn9k_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4 #include "cn9k_ethdev.h"
5 #include "cn9k_rte_flow.h"
6 #include "cn9k_rx.h"
7 #include "cn9k_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 == ETH_MQ_RX_RSS &&
19             (dev->rx_offloads & DEV_RX_OFFLOAD_RSS_HASH))
20                 flags |= NIX_RX_OFFLOAD_RSS_F;
21
22         if (dev->rx_offloads &
23             (DEV_RX_OFFLOAD_TCP_CKSUM | DEV_RX_OFFLOAD_UDP_CKSUM))
24                 flags |= NIX_RX_OFFLOAD_CHECKSUM_F;
25
26         if (dev->rx_offloads &
27             (DEV_RX_OFFLOAD_IPV4_CKSUM | DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM))
28                 flags |= NIX_RX_OFFLOAD_CHECKSUM_F;
29
30         if (dev->rx_offloads & DEV_RX_OFFLOAD_SCATTER)
31                 flags |= NIX_RX_MULTI_SEG_F;
32
33         if (!dev->ptype_disable)
34                 flags |= NIX_RX_OFFLOAD_PTYPE_F;
35
36         return flags;
37 }
38
39 static uint16_t
40 nix_tx_offload_flags(struct rte_eth_dev *eth_dev)
41 {
42         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
43         uint64_t conf = dev->tx_offloads;
44         uint16_t flags = 0;
45
46         /* Fastpath is dependent on these enums */
47         RTE_BUILD_BUG_ON(PKT_TX_TCP_CKSUM != (1ULL << 52));
48         RTE_BUILD_BUG_ON(PKT_TX_SCTP_CKSUM != (2ULL << 52));
49         RTE_BUILD_BUG_ON(PKT_TX_UDP_CKSUM != (3ULL << 52));
50         RTE_BUILD_BUG_ON(PKT_TX_IP_CKSUM != (1ULL << 54));
51         RTE_BUILD_BUG_ON(PKT_TX_IPV4 != (1ULL << 55));
52         RTE_BUILD_BUG_ON(PKT_TX_OUTER_IP_CKSUM != (1ULL << 58));
53         RTE_BUILD_BUG_ON(PKT_TX_OUTER_IPV4 != (1ULL << 59));
54         RTE_BUILD_BUG_ON(PKT_TX_OUTER_IPV6 != (1ULL << 60));
55         RTE_BUILD_BUG_ON(PKT_TX_OUTER_UDP_CKSUM != (1ULL << 41));
56         RTE_BUILD_BUG_ON(RTE_MBUF_L2_LEN_BITS != 7);
57         RTE_BUILD_BUG_ON(RTE_MBUF_L3_LEN_BITS != 9);
58         RTE_BUILD_BUG_ON(RTE_MBUF_OUTL2_LEN_BITS != 7);
59         RTE_BUILD_BUG_ON(RTE_MBUF_OUTL3_LEN_BITS != 9);
60         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) !=
61                          offsetof(struct rte_mbuf, buf_iova) + 8);
62         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, ol_flags) !=
63                          offsetof(struct rte_mbuf, buf_iova) + 16);
64         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, pkt_len) !=
65                          offsetof(struct rte_mbuf, ol_flags) + 12);
66         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, tx_offload) !=
67                          offsetof(struct rte_mbuf, pool) + 2 * sizeof(void *));
68
69         if (conf & DEV_TX_OFFLOAD_VLAN_INSERT ||
70             conf & DEV_TX_OFFLOAD_QINQ_INSERT)
71                 flags |= NIX_TX_OFFLOAD_VLAN_QINQ_F;
72
73         if (conf & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM ||
74             conf & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM)
75                 flags |= NIX_TX_OFFLOAD_OL3_OL4_CSUM_F;
76
77         if (conf & DEV_TX_OFFLOAD_IPV4_CKSUM ||
78             conf & DEV_TX_OFFLOAD_TCP_CKSUM ||
79             conf & DEV_TX_OFFLOAD_UDP_CKSUM || conf & DEV_TX_OFFLOAD_SCTP_CKSUM)
80                 flags |= NIX_TX_OFFLOAD_L3_L4_CSUM_F;
81
82         if (!(conf & DEV_TX_OFFLOAD_MBUF_FAST_FREE))
83                 flags |= NIX_TX_OFFLOAD_MBUF_NOFF_F;
84
85         if (conf & DEV_TX_OFFLOAD_MULTI_SEGS)
86                 flags |= NIX_TX_MULTI_SEG_F;
87
88         /* Enable Inner checksum for TSO */
89         if (conf & DEV_TX_OFFLOAD_TCP_TSO)
90                 flags |= (NIX_TX_OFFLOAD_TSO_F | NIX_TX_OFFLOAD_L3_L4_CSUM_F);
91
92         /* Enable Inner and Outer checksum for Tunnel TSO */
93         if (conf & (DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
94                     DEV_TX_OFFLOAD_GENEVE_TNL_TSO | DEV_TX_OFFLOAD_GRE_TNL_TSO))
95                 flags |= (NIX_TX_OFFLOAD_TSO_F | NIX_TX_OFFLOAD_OL3_OL4_CSUM_F |
96                           NIX_TX_OFFLOAD_L3_L4_CSUM_F);
97
98         return flags;
99 }
100
101 static int
102 cn9k_nix_ptypes_set(struct rte_eth_dev *eth_dev, uint32_t ptype_mask)
103 {
104         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
105
106         if (ptype_mask) {
107                 dev->rx_offload_flags |= NIX_RX_OFFLOAD_PTYPE_F;
108                 dev->ptype_disable = 0;
109         } else {
110                 dev->rx_offload_flags &= ~NIX_RX_OFFLOAD_PTYPE_F;
111                 dev->ptype_disable = 1;
112         }
113
114         cn9k_eth_set_rx_function(eth_dev);
115         return 0;
116 }
117
118 static void
119 nix_form_default_desc(struct cnxk_eth_dev *dev, struct cn9k_eth_txq *txq,
120                       uint16_t qid)
121 {
122         struct nix_send_ext_s *send_hdr_ext;
123         struct nix_send_hdr_s *send_hdr;
124         union nix_send_sg_s *sg;
125
126         RTE_SET_USED(dev);
127
128         /* Initialize the fields based on basic single segment packet */
129         memset(&txq->cmd, 0, sizeof(txq->cmd));
130
131         if (dev->tx_offload_flags & NIX_TX_NEED_EXT_HDR) {
132                 send_hdr = (struct nix_send_hdr_s *)&txq->cmd[0];
133                 /* 2(HDR) + 2(EXT_HDR) + 1(SG) + 1(IOVA) = 6/2 - 1 = 2 */
134                 send_hdr->w0.sizem1 = 2;
135
136                 send_hdr_ext = (struct nix_send_ext_s *)&txq->cmd[2];
137                 send_hdr_ext->w0.subdc = NIX_SUBDC_EXT;
138                 sg = (union nix_send_sg_s *)&txq->cmd[4];
139         } else {
140                 send_hdr = (struct nix_send_hdr_s *)&txq->cmd[0];
141                 /* 2(HDR) + 1(SG) + 1(IOVA) = 4/2 - 1 = 1 */
142                 send_hdr->w0.sizem1 = 1;
143                 sg = (union nix_send_sg_s *)&txq->cmd[2];
144         }
145
146         send_hdr->w0.sq = qid;
147         sg->subdc = NIX_SUBDC_SG;
148         sg->segs = 1;
149         sg->ld_type = NIX_SENDLDTYPE_LDD;
150
151         rte_wmb();
152 }
153
154 static int
155 cn9k_nix_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t qid,
156                         uint16_t nb_desc, unsigned int socket,
157                         const struct rte_eth_txconf *tx_conf)
158 {
159         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
160         struct cn9k_eth_txq *txq;
161         struct roc_nix_sq *sq;
162         int rc;
163
164         RTE_SET_USED(socket);
165
166         /* Common Tx queue setup */
167         rc = cnxk_nix_tx_queue_setup(eth_dev, qid, nb_desc,
168                                      sizeof(struct cn9k_eth_txq), tx_conf);
169         if (rc)
170                 return rc;
171
172         sq = &dev->sqs[qid];
173         /* Update fast path queue */
174         txq = eth_dev->data->tx_queues[qid];
175         txq->fc_mem = sq->fc;
176         txq->lmt_addr = sq->lmt_addr;
177         txq->io_addr = sq->io_addr;
178         txq->nb_sqb_bufs_adj = sq->nb_sqb_bufs_adj;
179         txq->sqes_per_sqb_log2 = sq->sqes_per_sqb_log2;
180
181         nix_form_default_desc(dev, txq, qid);
182         txq->lso_tun_fmt = dev->lso_tun_fmt;
183         return 0;
184 }
185
186 static int
187 cn9k_nix_rx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t qid,
188                         uint16_t nb_desc, unsigned int socket,
189                         const struct rte_eth_rxconf *rx_conf,
190                         struct rte_mempool *mp)
191 {
192         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
193         struct cn9k_eth_rxq *rxq;
194         struct roc_nix_rq *rq;
195         struct roc_nix_cq *cq;
196         int rc;
197
198         RTE_SET_USED(socket);
199
200         /* CQ Errata needs min 4K ring */
201         if (dev->cq_min_4k && nb_desc < 4096)
202                 nb_desc = 4096;
203
204         /* Common Rx queue setup */
205         rc = cnxk_nix_rx_queue_setup(eth_dev, qid, nb_desc,
206                                      sizeof(struct cn9k_eth_rxq), rx_conf, mp);
207         if (rc)
208                 return rc;
209
210         rq = &dev->rqs[qid];
211         cq = &dev->cqs[qid];
212
213         /* Update fast path queue */
214         rxq = eth_dev->data->rx_queues[qid];
215         rxq->rq = qid;
216         rxq->desc = (uintptr_t)cq->desc_base;
217         rxq->cq_door = cq->door;
218         rxq->cq_status = cq->status;
219         rxq->wdata = cq->wdata;
220         rxq->head = cq->head;
221         rxq->qmask = cq->qmask;
222
223         /* Data offset from data to start of mbuf is first_skip */
224         rxq->data_off = rq->first_skip;
225         rxq->mbuf_initializer = cnxk_nix_rxq_mbuf_setup(dev);
226
227         /* Lookup mem */
228         rxq->lookup_mem = cnxk_nix_fastpath_lookup_mem_get();
229         return 0;
230 }
231
232 static int
233 cn9k_nix_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t qidx)
234 {
235         struct cn9k_eth_txq *txq = eth_dev->data->tx_queues[qidx];
236         int rc;
237
238         rc = cnxk_nix_tx_queue_stop(eth_dev, qidx);
239         if (rc)
240                 return rc;
241
242         /* Clear fc cache pkts to trigger worker stop */
243         txq->fc_cache_pkts = 0;
244         return 0;
245 }
246
247 static int
248 cn9k_nix_configure(struct rte_eth_dev *eth_dev)
249 {
250         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
251         struct rte_eth_conf *conf = &eth_dev->data->dev_conf;
252         struct rte_eth_txmode *txmode = &conf->txmode;
253         int rc;
254
255         /* Platform specific checks */
256         if ((roc_model_is_cn96_a0() || roc_model_is_cn95_a0()) &&
257             (txmode->offloads & DEV_TX_OFFLOAD_SCTP_CKSUM) &&
258             ((txmode->offloads & DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM) ||
259              (txmode->offloads & DEV_TX_OFFLOAD_OUTER_UDP_CKSUM))) {
260                 plt_err("Outer IP and SCTP checksum unsupported");
261                 return -EINVAL;
262         }
263
264         /* Common nix configure */
265         rc = cnxk_nix_configure(eth_dev);
266         if (rc)
267                 return rc;
268
269         /* Update offload flags */
270         dev->rx_offload_flags = nix_rx_offload_flags(eth_dev);
271         dev->tx_offload_flags = nix_tx_offload_flags(eth_dev);
272
273         plt_nix_dbg("Configured port%d platform specific rx_offload_flags=%x"
274                     " tx_offload_flags=0x%x",
275                     eth_dev->data->port_id, dev->rx_offload_flags,
276                     dev->tx_offload_flags);
277         return 0;
278 }
279
280 static int
281 cn9k_nix_dev_start(struct rte_eth_dev *eth_dev)
282 {
283         struct cnxk_eth_dev *dev = cnxk_eth_pmd_priv(eth_dev);
284         int rc;
285
286         /* Common eth dev start */
287         rc = cnxk_nix_dev_start(eth_dev);
288         if (rc)
289                 return rc;
290
291         /* Setting up the rx[tx]_offload_flags due to change
292          * in rx[tx]_offloads.
293          */
294         dev->rx_offload_flags |= nix_rx_offload_flags(eth_dev);
295         dev->tx_offload_flags |= nix_tx_offload_flags(eth_dev);
296
297         cn9k_eth_set_tx_function(eth_dev);
298         cn9k_eth_set_rx_function(eth_dev);
299         return 0;
300 }
301
302 /* Update platform specific eth dev ops */
303 static void
304 nix_eth_dev_ops_override(void)
305 {
306         static int init_once;
307
308         if (init_once)
309                 return;
310         init_once = 1;
311
312         /* Update platform specific ops */
313         cnxk_eth_dev_ops.dev_configure = cn9k_nix_configure;
314         cnxk_eth_dev_ops.tx_queue_setup = cn9k_nix_tx_queue_setup;
315         cnxk_eth_dev_ops.rx_queue_setup = cn9k_nix_rx_queue_setup;
316         cnxk_eth_dev_ops.tx_queue_stop = cn9k_nix_tx_queue_stop;
317         cnxk_eth_dev_ops.dev_start = cn9k_nix_dev_start;
318         cnxk_eth_dev_ops.dev_ptypes_set = cn9k_nix_ptypes_set;
319 }
320
321 static void
322 npc_flow_ops_override(void)
323 {
324         static int init_once;
325
326         if (init_once)
327                 return;
328         init_once = 1;
329
330         /* Update platform specific ops */
331         cnxk_flow_ops.create = cn9k_flow_create;
332         cnxk_flow_ops.destroy = cn9k_flow_destroy;
333 }
334
335 static int
336 cn9k_nix_remove(struct rte_pci_device *pci_dev)
337 {
338         return cnxk_nix_remove(pci_dev);
339 }
340
341 static int
342 cn9k_nix_probe(struct rte_pci_driver *pci_drv, struct rte_pci_device *pci_dev)
343 {
344         struct rte_eth_dev *eth_dev;
345         struct cnxk_eth_dev *dev;
346         int rc;
347
348         if (RTE_CACHE_LINE_SIZE != 128) {
349                 plt_err("Driver not compiled for CN9K");
350                 return -EFAULT;
351         }
352
353         rc = roc_plt_init();
354         if (rc) {
355                 plt_err("Failed to initialize platform model, rc=%d", rc);
356                 return rc;
357         }
358
359         nix_eth_dev_ops_override();
360         npc_flow_ops_override();
361
362         /* Common probe */
363         rc = cnxk_nix_probe(pci_drv, pci_dev);
364         if (rc)
365                 return rc;
366
367         /* Find eth dev allocated */
368         eth_dev = rte_eth_dev_allocated(pci_dev->device.name);
369         if (!eth_dev)
370                 return -ENOENT;
371
372         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
373                 /* Setup callbacks for secondary process */
374                 cn9k_eth_set_tx_function(eth_dev);
375                 cn9k_eth_set_rx_function(eth_dev);
376                 return 0;
377         }
378
379         dev = cnxk_eth_pmd_priv(eth_dev);
380         /* Update capabilities already set for TSO.
381          * TSO not supported for earlier chip revisions
382          */
383         if (roc_model_is_cn96_a0() || roc_model_is_cn95_a0())
384                 dev->tx_offload_capa &= ~(DEV_TX_OFFLOAD_TCP_TSO |
385                                           DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
386                                           DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
387                                           DEV_TX_OFFLOAD_GRE_TNL_TSO);
388
389         /* 50G and 100G to be supported for board version C0
390          * and above of CN9K.
391          */
392         if (roc_model_is_cn96_a0() || roc_model_is_cn95_a0()) {
393                 dev->speed_capa &= ~(uint64_t)ETH_LINK_SPEED_50G;
394                 dev->speed_capa &= ~(uint64_t)ETH_LINK_SPEED_100G;
395         }
396
397         dev->hwcap = 0;
398
399         /* Update HW erratas */
400         if (roc_model_is_cn96_a0() || roc_model_is_cn95_a0())
401                 dev->cq_min_4k = 1;
402         return 0;
403 }
404
405 static const struct rte_pci_id cn9k_pci_nix_map[] = {
406         {
407                 .vendor_id = 0,
408         },
409 };
410
411 static struct rte_pci_driver cn9k_pci_nix = {
412         .id_table = cn9k_pci_nix_map,
413         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_NEED_IOVA_AS_VA |
414                      RTE_PCI_DRV_INTR_LSC,
415         .probe = cn9k_nix_probe,
416         .remove = cn9k_nix_remove,
417 };
418
419 RTE_PMD_REGISTER_PCI(net_cn9k, cn9k_pci_nix);
420 RTE_PMD_REGISTER_PCI_TABLE(net_cn9k, cn9k_pci_nix_map);
421 RTE_PMD_REGISTER_KMOD_DEP(net_cn9k, "vfio-pci");