ethdev: add new offload flag to keep CRC
[dpdk.git] / drivers / net / cxgbe / cxgbe_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2014-2018 Chelsio Communications.
3  * All rights reserved.
4  */
5
6 #include <sys/queue.h>
7 #include <stdio.h>
8 #include <errno.h>
9 #include <stdint.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include <stdarg.h>
13 #include <inttypes.h>
14 #include <netinet/in.h>
15
16 #include <rte_byteorder.h>
17 #include <rte_common.h>
18 #include <rte_cycles.h>
19 #include <rte_interrupts.h>
20 #include <rte_log.h>
21 #include <rte_debug.h>
22 #include <rte_pci.h>
23 #include <rte_bus_pci.h>
24 #include <rte_atomic.h>
25 #include <rte_branch_prediction.h>
26 #include <rte_memory.h>
27 #include <rte_tailq.h>
28 #include <rte_eal.h>
29 #include <rte_alarm.h>
30 #include <rte_ether.h>
31 #include <rte_ethdev_driver.h>
32 #include <rte_ethdev_pci.h>
33 #include <rte_malloc.h>
34 #include <rte_random.h>
35 #include <rte_dev.h>
36
37 #include "cxgbe.h"
38 #include "cxgbe_pfvf.h"
39 #include "cxgbe_flow.h"
40
41 /*
42  * Macros needed to support the PCI Device ID Table ...
43  */
44 #define CH_PCI_DEVICE_ID_TABLE_DEFINE_BEGIN \
45         static const struct rte_pci_id cxgb4_pci_tbl[] = {
46 #define CH_PCI_DEVICE_ID_FUNCTION 0x4
47
48 #define PCI_VENDOR_ID_CHELSIO 0x1425
49
50 #define CH_PCI_ID_TABLE_ENTRY(devid) \
51                 { RTE_PCI_DEVICE(PCI_VENDOR_ID_CHELSIO, (devid)) }
52
53 #define CH_PCI_DEVICE_ID_TABLE_DEFINE_END \
54                 { .vendor_id = 0, } \
55         }
56
57 /*
58  *... and the PCI ID Table itself ...
59  */
60 #include "t4_pci_id_tbl.h"
61
62 #define CXGBE_TX_OFFLOADS (DEV_TX_OFFLOAD_VLAN_INSERT |\
63                            DEV_TX_OFFLOAD_IPV4_CKSUM |\
64                            DEV_TX_OFFLOAD_UDP_CKSUM |\
65                            DEV_TX_OFFLOAD_TCP_CKSUM |\
66                            DEV_TX_OFFLOAD_TCP_TSO)
67
68 #define CXGBE_RX_OFFLOADS (DEV_RX_OFFLOAD_VLAN_STRIP |\
69                            DEV_RX_OFFLOAD_CRC_STRIP |\
70                            DEV_RX_OFFLOAD_IPV4_CKSUM |\
71                            DEV_RX_OFFLOAD_JUMBO_FRAME |\
72                            DEV_RX_OFFLOAD_UDP_CKSUM |\
73                            DEV_RX_OFFLOAD_TCP_CKSUM)
74
75 uint16_t cxgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
76                          uint16_t nb_pkts)
77 {
78         struct sge_eth_txq *txq = (struct sge_eth_txq *)tx_queue;
79         uint16_t pkts_sent, pkts_remain;
80         uint16_t total_sent = 0;
81         int ret = 0;
82
83         CXGBE_DEBUG_TX(adapter, "%s: txq = %p; tx_pkts = %p; nb_pkts = %d\n",
84                        __func__, txq, tx_pkts, nb_pkts);
85
86         t4_os_lock(&txq->txq_lock);
87         /* free up desc from already completed tx */
88         reclaim_completed_tx(&txq->q);
89         while (total_sent < nb_pkts) {
90                 pkts_remain = nb_pkts - total_sent;
91
92                 for (pkts_sent = 0; pkts_sent < pkts_remain; pkts_sent++) {
93                         ret = t4_eth_xmit(txq, tx_pkts[total_sent + pkts_sent],
94                                           nb_pkts);
95                         if (ret < 0)
96                                 break;
97                 }
98                 if (!pkts_sent)
99                         break;
100                 total_sent += pkts_sent;
101                 /* reclaim as much as possible */
102                 reclaim_completed_tx(&txq->q);
103         }
104
105         t4_os_unlock(&txq->txq_lock);
106         return total_sent;
107 }
108
109 uint16_t cxgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
110                          uint16_t nb_pkts)
111 {
112         struct sge_eth_rxq *rxq = (struct sge_eth_rxq *)rx_queue;
113         unsigned int work_done;
114
115         CXGBE_DEBUG_RX(adapter, "%s: rxq->rspq.cntxt_id = %u; nb_pkts = %d\n",
116                        __func__, rxq->rspq.cntxt_id, nb_pkts);
117
118         if (cxgbe_poll(&rxq->rspq, rx_pkts, (unsigned int)nb_pkts, &work_done))
119                 dev_err(adapter, "error in cxgbe poll\n");
120
121         CXGBE_DEBUG_RX(adapter, "%s: work_done = %u\n", __func__, work_done);
122         return work_done;
123 }
124
125 void cxgbe_dev_info_get(struct rte_eth_dev *eth_dev,
126                         struct rte_eth_dev_info *device_info)
127 {
128         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
129         struct adapter *adapter = pi->adapter;
130         int max_queues = adapter->sge.max_ethqsets / adapter->params.nports;
131
132         static const struct rte_eth_desc_lim cxgbe_desc_lim = {
133                 .nb_max = CXGBE_MAX_RING_DESC_SIZE,
134                 .nb_min = CXGBE_MIN_RING_DESC_SIZE,
135                 .nb_align = 1,
136         };
137
138         device_info->min_rx_bufsize = CXGBE_MIN_RX_BUFSIZE;
139         device_info->max_rx_pktlen = CXGBE_MAX_RX_PKTLEN;
140         device_info->max_rx_queues = max_queues;
141         device_info->max_tx_queues = max_queues;
142         device_info->max_mac_addrs = 1;
143         /* XXX: For now we support one MAC/port */
144         device_info->max_vfs = adapter->params.arch.vfcount;
145         device_info->max_vmdq_pools = 0; /* XXX: For now no support for VMDQ */
146
147         device_info->rx_queue_offload_capa = 0UL;
148         device_info->rx_offload_capa = CXGBE_RX_OFFLOADS;
149
150         device_info->tx_queue_offload_capa = 0UL;
151         device_info->tx_offload_capa = CXGBE_TX_OFFLOADS;
152
153         device_info->reta_size = pi->rss_size;
154         device_info->hash_key_size = CXGBE_DEFAULT_RSS_KEY_LEN;
155         device_info->flow_type_rss_offloads = CXGBE_RSS_HF_ALL;
156
157         device_info->rx_desc_lim = cxgbe_desc_lim;
158         device_info->tx_desc_lim = cxgbe_desc_lim;
159         cxgbe_get_speed_caps(pi, &device_info->speed_capa);
160 }
161
162 void cxgbe_dev_promiscuous_enable(struct rte_eth_dev *eth_dev)
163 {
164         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
165         struct adapter *adapter = pi->adapter;
166
167         t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
168                       1, -1, 1, -1, false);
169 }
170
171 void cxgbe_dev_promiscuous_disable(struct rte_eth_dev *eth_dev)
172 {
173         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
174         struct adapter *adapter = pi->adapter;
175
176         t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
177                       0, -1, 1, -1, false);
178 }
179
180 void cxgbe_dev_allmulticast_enable(struct rte_eth_dev *eth_dev)
181 {
182         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
183         struct adapter *adapter = pi->adapter;
184
185         /* TODO: address filters ?? */
186
187         t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
188                       -1, 1, 1, -1, false);
189 }
190
191 void cxgbe_dev_allmulticast_disable(struct rte_eth_dev *eth_dev)
192 {
193         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
194         struct adapter *adapter = pi->adapter;
195
196         /* TODO: address filters ?? */
197
198         t4_set_rxmode(adapter, adapter->mbox, pi->viid, -1,
199                       -1, 0, 1, -1, false);
200 }
201
202 int cxgbe_dev_link_update(struct rte_eth_dev *eth_dev,
203                           __rte_unused int wait_to_complete)
204 {
205         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
206         struct adapter *adapter = pi->adapter;
207         struct sge *s = &adapter->sge;
208         struct rte_eth_link new_link = { 0 };
209         unsigned int work_done, budget = 4;
210
211         cxgbe_poll(&s->fw_evtq, NULL, budget, &work_done);
212
213         new_link.link_status = force_linkup(adapter) ?
214                                ETH_LINK_UP : pi->link_cfg.link_ok;
215         new_link.link_autoneg = pi->link_cfg.autoneg;
216         new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
217         new_link.link_speed = pi->link_cfg.speed;
218
219         return rte_eth_linkstatus_set(eth_dev, &new_link);
220 }
221
222 int cxgbe_dev_mtu_set(struct rte_eth_dev *eth_dev, uint16_t mtu)
223 {
224         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
225         struct adapter *adapter = pi->adapter;
226         struct rte_eth_dev_info dev_info;
227         int err;
228         uint16_t new_mtu = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
229
230         cxgbe_dev_info_get(eth_dev, &dev_info);
231
232         /* Must accommodate at least ETHER_MIN_MTU */
233         if ((new_mtu < ETHER_MIN_MTU) || (new_mtu > dev_info.max_rx_pktlen))
234                 return -EINVAL;
235
236         /* set to jumbo mode if needed */
237         if (new_mtu > ETHER_MAX_LEN)
238                 eth_dev->data->dev_conf.rxmode.offloads |=
239                         DEV_RX_OFFLOAD_JUMBO_FRAME;
240         else
241                 eth_dev->data->dev_conf.rxmode.offloads &=
242                         ~DEV_RX_OFFLOAD_JUMBO_FRAME;
243
244         err = t4_set_rxmode(adapter, adapter->mbox, pi->viid, new_mtu, -1, -1,
245                             -1, -1, true);
246         if (!err)
247                 eth_dev->data->dev_conf.rxmode.max_rx_pkt_len = new_mtu;
248
249         return err;
250 }
251
252 /*
253  * Stop device.
254  */
255 void cxgbe_dev_close(struct rte_eth_dev *eth_dev)
256 {
257         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
258         struct adapter *adapter = pi->adapter;
259
260         CXGBE_FUNC_TRACE();
261
262         if (!(adapter->flags & FULL_INIT_DONE))
263                 return;
264
265         cxgbe_down(pi);
266
267         /*
268          *  We clear queues only if both tx and rx path of the port
269          *  have been disabled
270          */
271         t4_sge_eth_clear_queues(pi);
272 }
273
274 /* Start the device.
275  * It returns 0 on success.
276  */
277 int cxgbe_dev_start(struct rte_eth_dev *eth_dev)
278 {
279         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
280         struct adapter *adapter = pi->adapter;
281         int err = 0, i;
282
283         CXGBE_FUNC_TRACE();
284
285         /*
286          * If we don't have a connection to the firmware there's nothing we
287          * can do.
288          */
289         if (!(adapter->flags & FW_OK)) {
290                 err = -ENXIO;
291                 goto out;
292         }
293
294         if (!(adapter->flags & FULL_INIT_DONE)) {
295                 err = cxgbe_up(adapter);
296                 if (err < 0)
297                         goto out;
298         }
299
300         cxgbe_enable_rx_queues(pi);
301
302         err = setup_rss(pi);
303         if (err)
304                 goto out;
305
306         for (i = 0; i < pi->n_tx_qsets; i++) {
307                 err = cxgbe_dev_tx_queue_start(eth_dev, i);
308                 if (err)
309                         goto out;
310         }
311
312         for (i = 0; i < pi->n_rx_qsets; i++) {
313                 err = cxgbe_dev_rx_queue_start(eth_dev, i);
314                 if (err)
315                         goto out;
316         }
317
318         err = link_start(pi);
319         if (err)
320                 goto out;
321
322 out:
323         return err;
324 }
325
326 /*
327  * Stop device: disable rx and tx functions to allow for reconfiguring.
328  */
329 void cxgbe_dev_stop(struct rte_eth_dev *eth_dev)
330 {
331         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
332         struct adapter *adapter = pi->adapter;
333
334         CXGBE_FUNC_TRACE();
335
336         if (!(adapter->flags & FULL_INIT_DONE))
337                 return;
338
339         cxgbe_down(pi);
340
341         /*
342          *  We clear queues only if both tx and rx path of the port
343          *  have been disabled
344          */
345         t4_sge_eth_clear_queues(pi);
346 }
347
348 int cxgbe_dev_configure(struct rte_eth_dev *eth_dev)
349 {
350         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
351         struct adapter *adapter = pi->adapter;
352         uint64_t configured_offloads;
353         int err;
354
355         CXGBE_FUNC_TRACE();
356         configured_offloads = eth_dev->data->dev_conf.rxmode.offloads;
357
358         /* KEEP_CRC offload flag is not supported by PMD
359          * can remove the below block when DEV_RX_OFFLOAD_CRC_STRIP removed
360          */
361         if (rte_eth_dev_must_keep_crc(configured_offloads)) {
362                 dev_info(adapter, "can't disable hw crc strip\n");
363                 eth_dev->data->dev_conf.rxmode.offloads |=
364                         DEV_RX_OFFLOAD_CRC_STRIP;
365         }
366
367         if (!(adapter->flags & FW_QUEUE_BOUND)) {
368                 err = setup_sge_fwevtq(adapter);
369                 if (err)
370                         return err;
371                 adapter->flags |= FW_QUEUE_BOUND;
372                 err = setup_sge_ctrl_txq(adapter);
373                 if (err)
374                         return err;
375         }
376
377         err = cfg_queue_count(eth_dev);
378         if (err)
379                 return err;
380
381         return 0;
382 }
383
384 int cxgbe_dev_tx_queue_start(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
385 {
386         int ret;
387         struct sge_eth_txq *txq = (struct sge_eth_txq *)
388                                   (eth_dev->data->tx_queues[tx_queue_id]);
389
390         dev_debug(NULL, "%s: tx_queue_id = %d\n", __func__, tx_queue_id);
391
392         ret = t4_sge_eth_txq_start(txq);
393         if (ret == 0)
394                 eth_dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
395
396         return ret;
397 }
398
399 int cxgbe_dev_tx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t tx_queue_id)
400 {
401         int ret;
402         struct sge_eth_txq *txq = (struct sge_eth_txq *)
403                                   (eth_dev->data->tx_queues[tx_queue_id]);
404
405         dev_debug(NULL, "%s: tx_queue_id = %d\n", __func__, tx_queue_id);
406
407         ret = t4_sge_eth_txq_stop(txq);
408         if (ret == 0)
409                 eth_dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
410
411         return ret;
412 }
413
414 int cxgbe_dev_tx_queue_setup(struct rte_eth_dev *eth_dev,
415                              uint16_t queue_idx, uint16_t nb_desc,
416                              unsigned int socket_id,
417                              const struct rte_eth_txconf *tx_conf __rte_unused)
418 {
419         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
420         struct adapter *adapter = pi->adapter;
421         struct sge *s = &adapter->sge;
422         struct sge_eth_txq *txq = &s->ethtxq[pi->first_qset + queue_idx];
423         int err = 0;
424         unsigned int temp_nb_desc;
425
426         dev_debug(adapter, "%s: eth_dev->data->nb_tx_queues = %d; queue_idx = %d; nb_desc = %d; socket_id = %d; pi->first_qset = %u\n",
427                   __func__, eth_dev->data->nb_tx_queues, queue_idx, nb_desc,
428                   socket_id, pi->first_qset);
429
430         /*  Free up the existing queue  */
431         if (eth_dev->data->tx_queues[queue_idx]) {
432                 cxgbe_dev_tx_queue_release(eth_dev->data->tx_queues[queue_idx]);
433                 eth_dev->data->tx_queues[queue_idx] = NULL;
434         }
435
436         eth_dev->data->tx_queues[queue_idx] = (void *)txq;
437
438         /* Sanity Checking
439          *
440          * nb_desc should be > 1023 and <= CXGBE_MAX_RING_DESC_SIZE
441          */
442         temp_nb_desc = nb_desc;
443         if (nb_desc < CXGBE_MIN_RING_DESC_SIZE) {
444                 dev_warn(adapter, "%s: number of descriptors must be >= %d. Using default [%d]\n",
445                          __func__, CXGBE_MIN_RING_DESC_SIZE,
446                          CXGBE_DEFAULT_TX_DESC_SIZE);
447                 temp_nb_desc = CXGBE_DEFAULT_TX_DESC_SIZE;
448         } else if (nb_desc > CXGBE_MAX_RING_DESC_SIZE) {
449                 dev_err(adapter, "%s: number of descriptors must be between %d and %d inclusive. Default [%d]\n",
450                         __func__, CXGBE_MIN_RING_DESC_SIZE,
451                         CXGBE_MAX_RING_DESC_SIZE, CXGBE_DEFAULT_TX_DESC_SIZE);
452                 return -(EINVAL);
453         }
454
455         txq->q.size = temp_nb_desc;
456
457         err = t4_sge_alloc_eth_txq(adapter, txq, eth_dev, queue_idx,
458                                    s->fw_evtq.cntxt_id, socket_id);
459
460         dev_debug(adapter, "%s: txq->q.cntxt_id= %u txq->q.abs_id= %u err = %d\n",
461                   __func__, txq->q.cntxt_id, txq->q.abs_id, err);
462         return err;
463 }
464
465 void cxgbe_dev_tx_queue_release(void *q)
466 {
467         struct sge_eth_txq *txq = (struct sge_eth_txq *)q;
468
469         if (txq) {
470                 struct port_info *pi = (struct port_info *)
471                                        (txq->eth_dev->data->dev_private);
472                 struct adapter *adap = pi->adapter;
473
474                 dev_debug(adapter, "%s: pi->port_id = %d; tx_queue_id = %d\n",
475                           __func__, pi->port_id, txq->q.cntxt_id);
476
477                 t4_sge_eth_txq_release(adap, txq);
478         }
479 }
480
481 int cxgbe_dev_rx_queue_start(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
482 {
483         int ret;
484         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
485         struct adapter *adap = pi->adapter;
486         struct sge_rspq *q;
487
488         dev_debug(adapter, "%s: pi->port_id = %d; rx_queue_id = %d\n",
489                   __func__, pi->port_id, rx_queue_id);
490
491         q = eth_dev->data->rx_queues[rx_queue_id];
492
493         ret = t4_sge_eth_rxq_start(adap, q);
494         if (ret == 0)
495                 eth_dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
496
497         return ret;
498 }
499
500 int cxgbe_dev_rx_queue_stop(struct rte_eth_dev *eth_dev, uint16_t rx_queue_id)
501 {
502         int ret;
503         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
504         struct adapter *adap = pi->adapter;
505         struct sge_rspq *q;
506
507         dev_debug(adapter, "%s: pi->port_id = %d; rx_queue_id = %d\n",
508                   __func__, pi->port_id, rx_queue_id);
509
510         q = eth_dev->data->rx_queues[rx_queue_id];
511         ret = t4_sge_eth_rxq_stop(adap, q);
512         if (ret == 0)
513                 eth_dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
514
515         return ret;
516 }
517
518 int cxgbe_dev_rx_queue_setup(struct rte_eth_dev *eth_dev,
519                              uint16_t queue_idx, uint16_t nb_desc,
520                              unsigned int socket_id,
521                              const struct rte_eth_rxconf *rx_conf __rte_unused,
522                              struct rte_mempool *mp)
523 {
524         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
525         struct adapter *adapter = pi->adapter;
526         struct sge *s = &adapter->sge;
527         struct sge_eth_rxq *rxq = &s->ethrxq[pi->first_qset + queue_idx];
528         int err = 0;
529         int msi_idx = 0;
530         unsigned int temp_nb_desc;
531         struct rte_eth_dev_info dev_info;
532         unsigned int pkt_len = eth_dev->data->dev_conf.rxmode.max_rx_pkt_len;
533
534         dev_debug(adapter, "%s: eth_dev->data->nb_rx_queues = %d; queue_idx = %d; nb_desc = %d; socket_id = %d; mp = %p\n",
535                   __func__, eth_dev->data->nb_rx_queues, queue_idx, nb_desc,
536                   socket_id, mp);
537
538         cxgbe_dev_info_get(eth_dev, &dev_info);
539
540         /* Must accommodate at least ETHER_MIN_MTU */
541         if ((pkt_len < dev_info.min_rx_bufsize) ||
542             (pkt_len > dev_info.max_rx_pktlen)) {
543                 dev_err(adap, "%s: max pkt len must be > %d and <= %d\n",
544                         __func__, dev_info.min_rx_bufsize,
545                         dev_info.max_rx_pktlen);
546                 return -EINVAL;
547         }
548
549         /*  Free up the existing queue  */
550         if (eth_dev->data->rx_queues[queue_idx]) {
551                 cxgbe_dev_rx_queue_release(eth_dev->data->rx_queues[queue_idx]);
552                 eth_dev->data->rx_queues[queue_idx] = NULL;
553         }
554
555         eth_dev->data->rx_queues[queue_idx] = (void *)rxq;
556
557         /* Sanity Checking
558          *
559          * nb_desc should be > 0 and <= CXGBE_MAX_RING_DESC_SIZE
560          */
561         temp_nb_desc = nb_desc;
562         if (nb_desc < CXGBE_MIN_RING_DESC_SIZE) {
563                 dev_warn(adapter, "%s: number of descriptors must be >= %d. Using default [%d]\n",
564                          __func__, CXGBE_MIN_RING_DESC_SIZE,
565                          CXGBE_DEFAULT_RX_DESC_SIZE);
566                 temp_nb_desc = CXGBE_DEFAULT_RX_DESC_SIZE;
567         } else if (nb_desc > CXGBE_MAX_RING_DESC_SIZE) {
568                 dev_err(adapter, "%s: number of descriptors must be between %d and %d inclusive. Default [%d]\n",
569                         __func__, CXGBE_MIN_RING_DESC_SIZE,
570                         CXGBE_MAX_RING_DESC_SIZE, CXGBE_DEFAULT_RX_DESC_SIZE);
571                 return -(EINVAL);
572         }
573
574         rxq->rspq.size = temp_nb_desc;
575         if ((&rxq->fl) != NULL)
576                 rxq->fl.size = temp_nb_desc;
577
578         /* Set to jumbo mode if necessary */
579         if (pkt_len > ETHER_MAX_LEN)
580                 eth_dev->data->dev_conf.rxmode.offloads |=
581                         DEV_RX_OFFLOAD_JUMBO_FRAME;
582         else
583                 eth_dev->data->dev_conf.rxmode.offloads &=
584                         ~DEV_RX_OFFLOAD_JUMBO_FRAME;
585
586         err = t4_sge_alloc_rxq(adapter, &rxq->rspq, false, eth_dev, msi_idx,
587                                &rxq->fl, t4_ethrx_handler,
588                                is_pf4(adapter) ?
589                                t4_get_tp_ch_map(adapter, pi->tx_chan) : 0, mp,
590                                queue_idx, socket_id);
591
592         dev_debug(adapter, "%s: err = %d; port_id = %d; cntxt_id = %u; abs_id = %u\n",
593                   __func__, err, pi->port_id, rxq->rspq.cntxt_id,
594                   rxq->rspq.abs_id);
595         return err;
596 }
597
598 void cxgbe_dev_rx_queue_release(void *q)
599 {
600         struct sge_eth_rxq *rxq = (struct sge_eth_rxq *)q;
601         struct sge_rspq *rq = &rxq->rspq;
602
603         if (rq) {
604                 struct port_info *pi = (struct port_info *)
605                                        (rq->eth_dev->data->dev_private);
606                 struct adapter *adap = pi->adapter;
607
608                 dev_debug(adapter, "%s: pi->port_id = %d; rx_queue_id = %d\n",
609                           __func__, pi->port_id, rxq->rspq.cntxt_id);
610
611                 t4_sge_eth_rxq_release(adap, rxq);
612         }
613 }
614
615 /*
616  * Get port statistics.
617  */
618 static int cxgbe_dev_stats_get(struct rte_eth_dev *eth_dev,
619                                 struct rte_eth_stats *eth_stats)
620 {
621         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
622         struct adapter *adapter = pi->adapter;
623         struct sge *s = &adapter->sge;
624         struct port_stats ps;
625         unsigned int i;
626
627         cxgbe_stats_get(pi, &ps);
628
629         /* RX Stats */
630         eth_stats->imissed  = ps.rx_ovflow0 + ps.rx_ovflow1 +
631                               ps.rx_ovflow2 + ps.rx_ovflow3 +
632                               ps.rx_trunc0 + ps.rx_trunc1 +
633                               ps.rx_trunc2 + ps.rx_trunc3;
634         eth_stats->ierrors  = ps.rx_symbol_err + ps.rx_fcs_err +
635                               ps.rx_jabber + ps.rx_too_long + ps.rx_runt +
636                               ps.rx_len_err;
637
638         /* TX Stats */
639         eth_stats->opackets = ps.tx_frames;
640         eth_stats->obytes   = ps.tx_octets;
641         eth_stats->oerrors  = ps.tx_error_frames;
642
643         for (i = 0; i < pi->n_rx_qsets; i++) {
644                 struct sge_eth_rxq *rxq =
645                         &s->ethrxq[pi->first_qset + i];
646
647                 eth_stats->q_ipackets[i] = rxq->stats.pkts;
648                 eth_stats->q_ibytes[i] = rxq->stats.rx_bytes;
649                 eth_stats->ipackets += eth_stats->q_ipackets[i];
650                 eth_stats->ibytes += eth_stats->q_ibytes[i];
651         }
652
653         for (i = 0; i < pi->n_tx_qsets; i++) {
654                 struct sge_eth_txq *txq =
655                         &s->ethtxq[pi->first_qset + i];
656
657                 eth_stats->q_opackets[i] = txq->stats.pkts;
658                 eth_stats->q_obytes[i] = txq->stats.tx_bytes;
659                 eth_stats->q_errors[i] = txq->stats.mapping_err;
660         }
661         return 0;
662 }
663
664 /*
665  * Reset port statistics.
666  */
667 static void cxgbe_dev_stats_reset(struct rte_eth_dev *eth_dev)
668 {
669         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
670         struct adapter *adapter = pi->adapter;
671         struct sge *s = &adapter->sge;
672         unsigned int i;
673
674         cxgbe_stats_reset(pi);
675         for (i = 0; i < pi->n_rx_qsets; i++) {
676                 struct sge_eth_rxq *rxq =
677                         &s->ethrxq[pi->first_qset + i];
678
679                 rxq->stats.pkts = 0;
680                 rxq->stats.rx_bytes = 0;
681         }
682         for (i = 0; i < pi->n_tx_qsets; i++) {
683                 struct sge_eth_txq *txq =
684                         &s->ethtxq[pi->first_qset + i];
685
686                 txq->stats.pkts = 0;
687                 txq->stats.tx_bytes = 0;
688                 txq->stats.mapping_err = 0;
689         }
690 }
691
692 static int cxgbe_flow_ctrl_get(struct rte_eth_dev *eth_dev,
693                                struct rte_eth_fc_conf *fc_conf)
694 {
695         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
696         struct link_config *lc = &pi->link_cfg;
697         int rx_pause, tx_pause;
698
699         fc_conf->autoneg = lc->fc & PAUSE_AUTONEG;
700         rx_pause = lc->fc & PAUSE_RX;
701         tx_pause = lc->fc & PAUSE_TX;
702
703         if (rx_pause && tx_pause)
704                 fc_conf->mode = RTE_FC_FULL;
705         else if (rx_pause)
706                 fc_conf->mode = RTE_FC_RX_PAUSE;
707         else if (tx_pause)
708                 fc_conf->mode = RTE_FC_TX_PAUSE;
709         else
710                 fc_conf->mode = RTE_FC_NONE;
711         return 0;
712 }
713
714 static int cxgbe_flow_ctrl_set(struct rte_eth_dev *eth_dev,
715                                struct rte_eth_fc_conf *fc_conf)
716 {
717         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
718         struct adapter *adapter = pi->adapter;
719         struct link_config *lc = &pi->link_cfg;
720
721         if (lc->pcaps & FW_PORT_CAP32_ANEG) {
722                 if (fc_conf->autoneg)
723                         lc->requested_fc |= PAUSE_AUTONEG;
724                 else
725                         lc->requested_fc &= ~PAUSE_AUTONEG;
726         }
727
728         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
729             (fc_conf->mode & RTE_FC_RX_PAUSE))
730                 lc->requested_fc |= PAUSE_RX;
731         else
732                 lc->requested_fc &= ~PAUSE_RX;
733
734         if (((fc_conf->mode & RTE_FC_FULL) == RTE_FC_FULL) ||
735             (fc_conf->mode & RTE_FC_TX_PAUSE))
736                 lc->requested_fc |= PAUSE_TX;
737         else
738                 lc->requested_fc &= ~PAUSE_TX;
739
740         return t4_link_l1cfg(adapter, adapter->mbox, pi->tx_chan,
741                              &pi->link_cfg);
742 }
743
744 const uint32_t *
745 cxgbe_dev_supported_ptypes_get(struct rte_eth_dev *eth_dev)
746 {
747         static const uint32_t ptypes[] = {
748                 RTE_PTYPE_L3_IPV4,
749                 RTE_PTYPE_L3_IPV6,
750                 RTE_PTYPE_UNKNOWN
751         };
752
753         if (eth_dev->rx_pkt_burst == cxgbe_recv_pkts)
754                 return ptypes;
755         return NULL;
756 }
757
758 /* Update RSS hash configuration
759  */
760 static int cxgbe_dev_rss_hash_update(struct rte_eth_dev *dev,
761                                      struct rte_eth_rss_conf *rss_conf)
762 {
763         struct port_info *pi = (struct port_info *)(dev->data->dev_private);
764         struct adapter *adapter = pi->adapter;
765         int err;
766
767         err = cxgbe_write_rss_conf(pi, rss_conf->rss_hf);
768         if (err)
769                 return err;
770
771         pi->rss_hf = rss_conf->rss_hf;
772
773         if (rss_conf->rss_key) {
774                 u32 key[10], mod_key[10];
775                 int i, j;
776
777                 memcpy(key, rss_conf->rss_key, CXGBE_DEFAULT_RSS_KEY_LEN);
778
779                 for (i = 9, j = 0; i >= 0; i--, j++)
780                         mod_key[j] = cpu_to_be32(key[i]);
781
782                 t4_write_rss_key(adapter, mod_key, -1);
783         }
784
785         return 0;
786 }
787
788 /* Get RSS hash configuration
789  */
790 static int cxgbe_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
791                                        struct rte_eth_rss_conf *rss_conf)
792 {
793         struct port_info *pi = (struct port_info *)(dev->data->dev_private);
794         struct adapter *adapter = pi->adapter;
795         u64 rss_hf = 0;
796         u64 flags = 0;
797         int err;
798
799         err = t4_read_config_vi_rss(adapter, adapter->mbox, pi->viid,
800                                     &flags, NULL);
801
802         if (err)
803                 return err;
804
805         if (flags & F_FW_RSS_VI_CONFIG_CMD_IP6FOURTUPEN) {
806                 rss_hf |= ETH_RSS_NONFRAG_IPV6_TCP;
807                 if (flags & F_FW_RSS_VI_CONFIG_CMD_UDPEN)
808                         rss_hf |= ETH_RSS_NONFRAG_IPV6_UDP;
809         }
810
811         if (flags & F_FW_RSS_VI_CONFIG_CMD_IP6TWOTUPEN)
812                 rss_hf |= ETH_RSS_IPV6;
813
814         if (flags & F_FW_RSS_VI_CONFIG_CMD_IP4FOURTUPEN) {
815                 rss_hf |= ETH_RSS_NONFRAG_IPV4_TCP;
816                 if (flags & F_FW_RSS_VI_CONFIG_CMD_UDPEN)
817                         rss_hf |= ETH_RSS_NONFRAG_IPV4_UDP;
818         }
819
820         if (flags & F_FW_RSS_VI_CONFIG_CMD_IP4TWOTUPEN)
821                 rss_hf |= ETH_RSS_IPV4;
822
823         rss_conf->rss_hf = rss_hf;
824
825         if (rss_conf->rss_key) {
826                 u32 key[10], mod_key[10];
827                 int i, j;
828
829                 t4_read_rss_key(adapter, key);
830
831                 for (i = 9, j = 0; i >= 0; i--, j++)
832                         mod_key[j] = be32_to_cpu(key[i]);
833
834                 memcpy(rss_conf->rss_key, mod_key, CXGBE_DEFAULT_RSS_KEY_LEN);
835         }
836
837         return 0;
838 }
839
840 static int cxgbe_get_eeprom_length(struct rte_eth_dev *dev)
841 {
842         RTE_SET_USED(dev);
843         return EEPROMSIZE;
844 }
845
846 /**
847  * eeprom_ptov - translate a physical EEPROM address to virtual
848  * @phys_addr: the physical EEPROM address
849  * @fn: the PCI function number
850  * @sz: size of function-specific area
851  *
852  * Translate a physical EEPROM address to virtual.  The first 1K is
853  * accessed through virtual addresses starting at 31K, the rest is
854  * accessed through virtual addresses starting at 0.
855  *
856  * The mapping is as follows:
857  * [0..1K) -> [31K..32K)
858  * [1K..1K+A) -> [31K-A..31K)
859  * [1K+A..ES) -> [0..ES-A-1K)
860  *
861  * where A = @fn * @sz, and ES = EEPROM size.
862  */
863 static int eeprom_ptov(unsigned int phys_addr, unsigned int fn, unsigned int sz)
864 {
865         fn *= sz;
866         if (phys_addr < 1024)
867                 return phys_addr + (31 << 10);
868         if (phys_addr < 1024 + fn)
869                 return fn + phys_addr - 1024;
870         if (phys_addr < EEPROMSIZE)
871                 return phys_addr - 1024 - fn;
872         if (phys_addr < EEPROMVSIZE)
873                 return phys_addr - 1024;
874         return -EINVAL;
875 }
876
877 /* The next two routines implement eeprom read/write from physical addresses.
878  */
879 static int eeprom_rd_phys(struct adapter *adap, unsigned int phys_addr, u32 *v)
880 {
881         int vaddr = eeprom_ptov(phys_addr, adap->pf, EEPROMPFSIZE);
882
883         if (vaddr >= 0)
884                 vaddr = t4_seeprom_read(adap, vaddr, v);
885         return vaddr < 0 ? vaddr : 0;
886 }
887
888 static int eeprom_wr_phys(struct adapter *adap, unsigned int phys_addr, u32 v)
889 {
890         int vaddr = eeprom_ptov(phys_addr, adap->pf, EEPROMPFSIZE);
891
892         if (vaddr >= 0)
893                 vaddr = t4_seeprom_write(adap, vaddr, v);
894         return vaddr < 0 ? vaddr : 0;
895 }
896
897 #define EEPROM_MAGIC 0x38E2F10C
898
899 static int cxgbe_get_eeprom(struct rte_eth_dev *dev,
900                             struct rte_dev_eeprom_info *e)
901 {
902         struct port_info *pi = (struct port_info *)(dev->data->dev_private);
903         struct adapter *adapter = pi->adapter;
904         u32 i, err = 0;
905         u8 *buf = rte_zmalloc(NULL, EEPROMSIZE, 0);
906
907         if (!buf)
908                 return -ENOMEM;
909
910         e->magic = EEPROM_MAGIC;
911         for (i = e->offset & ~3; !err && i < e->offset + e->length; i += 4)
912                 err = eeprom_rd_phys(adapter, i, (u32 *)&buf[i]);
913
914         if (!err)
915                 rte_memcpy(e->data, buf + e->offset, e->length);
916         rte_free(buf);
917         return err;
918 }
919
920 static int cxgbe_set_eeprom(struct rte_eth_dev *dev,
921                             struct rte_dev_eeprom_info *eeprom)
922 {
923         struct port_info *pi = (struct port_info *)(dev->data->dev_private);
924         struct adapter *adapter = pi->adapter;
925         u8 *buf;
926         int err = 0;
927         u32 aligned_offset, aligned_len, *p;
928
929         if (eeprom->magic != EEPROM_MAGIC)
930                 return -EINVAL;
931
932         aligned_offset = eeprom->offset & ~3;
933         aligned_len = (eeprom->length + (eeprom->offset & 3) + 3) & ~3;
934
935         if (adapter->pf > 0) {
936                 u32 start = 1024 + adapter->pf * EEPROMPFSIZE;
937
938                 if (aligned_offset < start ||
939                     aligned_offset + aligned_len > start + EEPROMPFSIZE)
940                         return -EPERM;
941         }
942
943         if (aligned_offset != eeprom->offset || aligned_len != eeprom->length) {
944                 /* RMW possibly needed for first or last words.
945                  */
946                 buf = rte_zmalloc(NULL, aligned_len, 0);
947                 if (!buf)
948                         return -ENOMEM;
949                 err = eeprom_rd_phys(adapter, aligned_offset, (u32 *)buf);
950                 if (!err && aligned_len > 4)
951                         err = eeprom_rd_phys(adapter,
952                                              aligned_offset + aligned_len - 4,
953                                              (u32 *)&buf[aligned_len - 4]);
954                 if (err)
955                         goto out;
956                 rte_memcpy(buf + (eeprom->offset & 3), eeprom->data,
957                            eeprom->length);
958         } else {
959                 buf = eeprom->data;
960         }
961
962         err = t4_seeprom_wp(adapter, false);
963         if (err)
964                 goto out;
965
966         for (p = (u32 *)buf; !err && aligned_len; aligned_len -= 4, p++) {
967                 err = eeprom_wr_phys(adapter, aligned_offset, *p);
968                 aligned_offset += 4;
969         }
970
971         if (!err)
972                 err = t4_seeprom_wp(adapter, true);
973 out:
974         if (buf != eeprom->data)
975                 rte_free(buf);
976         return err;
977 }
978
979 static int cxgbe_get_regs_len(struct rte_eth_dev *eth_dev)
980 {
981         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
982         struct adapter *adapter = pi->adapter;
983
984         return t4_get_regs_len(adapter) / sizeof(uint32_t);
985 }
986
987 static int cxgbe_get_regs(struct rte_eth_dev *eth_dev,
988                           struct rte_dev_reg_info *regs)
989 {
990         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
991         struct adapter *adapter = pi->adapter;
992
993         regs->version = CHELSIO_CHIP_VERSION(adapter->params.chip) |
994                 (CHELSIO_CHIP_RELEASE(adapter->params.chip) << 10) |
995                 (1 << 16);
996
997         if (regs->data == NULL) {
998                 regs->length = cxgbe_get_regs_len(eth_dev);
999                 regs->width = sizeof(uint32_t);
1000
1001                 return 0;
1002         }
1003
1004         t4_get_regs(adapter, regs->data, (regs->length * sizeof(uint32_t)));
1005
1006         return 0;
1007 }
1008
1009 int cxgbe_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *addr)
1010 {
1011         struct port_info *pi = (struct port_info *)(dev->data->dev_private);
1012         struct adapter *adapter = pi->adapter;
1013         int ret;
1014
1015         ret = t4_change_mac(adapter, adapter->mbox, pi->viid,
1016                             pi->xact_addr_filt, (u8 *)addr, true, true);
1017         if (ret < 0) {
1018                 dev_err(adapter, "failed to set mac addr; err = %d\n",
1019                         ret);
1020                 return ret;
1021         }
1022         pi->xact_addr_filt = ret;
1023         return 0;
1024 }
1025
1026 static const struct eth_dev_ops cxgbe_eth_dev_ops = {
1027         .dev_start              = cxgbe_dev_start,
1028         .dev_stop               = cxgbe_dev_stop,
1029         .dev_close              = cxgbe_dev_close,
1030         .promiscuous_enable     = cxgbe_dev_promiscuous_enable,
1031         .promiscuous_disable    = cxgbe_dev_promiscuous_disable,
1032         .allmulticast_enable    = cxgbe_dev_allmulticast_enable,
1033         .allmulticast_disable   = cxgbe_dev_allmulticast_disable,
1034         .dev_configure          = cxgbe_dev_configure,
1035         .dev_infos_get          = cxgbe_dev_info_get,
1036         .dev_supported_ptypes_get = cxgbe_dev_supported_ptypes_get,
1037         .link_update            = cxgbe_dev_link_update,
1038         .mtu_set                = cxgbe_dev_mtu_set,
1039         .tx_queue_setup         = cxgbe_dev_tx_queue_setup,
1040         .tx_queue_start         = cxgbe_dev_tx_queue_start,
1041         .tx_queue_stop          = cxgbe_dev_tx_queue_stop,
1042         .tx_queue_release       = cxgbe_dev_tx_queue_release,
1043         .rx_queue_setup         = cxgbe_dev_rx_queue_setup,
1044         .rx_queue_start         = cxgbe_dev_rx_queue_start,
1045         .rx_queue_stop          = cxgbe_dev_rx_queue_stop,
1046         .rx_queue_release       = cxgbe_dev_rx_queue_release,
1047         .filter_ctrl            = cxgbe_dev_filter_ctrl,
1048         .stats_get              = cxgbe_dev_stats_get,
1049         .stats_reset            = cxgbe_dev_stats_reset,
1050         .flow_ctrl_get          = cxgbe_flow_ctrl_get,
1051         .flow_ctrl_set          = cxgbe_flow_ctrl_set,
1052         .get_eeprom_length      = cxgbe_get_eeprom_length,
1053         .get_eeprom             = cxgbe_get_eeprom,
1054         .set_eeprom             = cxgbe_set_eeprom,
1055         .get_reg                = cxgbe_get_regs,
1056         .rss_hash_update        = cxgbe_dev_rss_hash_update,
1057         .rss_hash_conf_get      = cxgbe_dev_rss_hash_conf_get,
1058         .mac_addr_set           = cxgbe_mac_addr_set,
1059 };
1060
1061 /*
1062  * Initialize driver
1063  * It returns 0 on success.
1064  */
1065 static int eth_cxgbe_dev_init(struct rte_eth_dev *eth_dev)
1066 {
1067         struct rte_pci_device *pci_dev;
1068         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
1069         struct adapter *adapter = NULL;
1070         char name[RTE_ETH_NAME_MAX_LEN];
1071         int err = 0;
1072
1073         CXGBE_FUNC_TRACE();
1074
1075         eth_dev->dev_ops = &cxgbe_eth_dev_ops;
1076         eth_dev->rx_pkt_burst = &cxgbe_recv_pkts;
1077         eth_dev->tx_pkt_burst = &cxgbe_xmit_pkts;
1078         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1079
1080         /* for secondary processes, we attach to ethdevs allocated by primary
1081          * and do minimal initialization.
1082          */
1083         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1084                 int i;
1085
1086                 for (i = 1; i < MAX_NPORTS; i++) {
1087                         struct rte_eth_dev *rest_eth_dev;
1088                         char namei[RTE_ETH_NAME_MAX_LEN];
1089
1090                         snprintf(namei, sizeof(namei), "%s_%d",
1091                                  pci_dev->device.name, i);
1092                         rest_eth_dev = rte_eth_dev_attach_secondary(namei);
1093                         if (rest_eth_dev) {
1094                                 rest_eth_dev->device = &pci_dev->device;
1095                                 rest_eth_dev->dev_ops =
1096                                         eth_dev->dev_ops;
1097                                 rest_eth_dev->rx_pkt_burst =
1098                                         eth_dev->rx_pkt_burst;
1099                                 rest_eth_dev->tx_pkt_burst =
1100                                         eth_dev->tx_pkt_burst;
1101                                 rte_eth_dev_probing_finish(rest_eth_dev);
1102                         }
1103                 }
1104                 return 0;
1105         }
1106
1107         snprintf(name, sizeof(name), "cxgbeadapter%d", eth_dev->data->port_id);
1108         adapter = rte_zmalloc(name, sizeof(*adapter), 0);
1109         if (!adapter)
1110                 return -1;
1111
1112         adapter->use_unpacked_mode = 1;
1113         adapter->regs = (void *)pci_dev->mem_resource[0].addr;
1114         if (!adapter->regs) {
1115                 dev_err(adapter, "%s: cannot map device registers\n", __func__);
1116                 err = -ENOMEM;
1117                 goto out_free_adapter;
1118         }
1119         adapter->pdev = pci_dev;
1120         adapter->eth_dev = eth_dev;
1121         pi->adapter = adapter;
1122
1123         err = cxgbe_probe(adapter);
1124         if (err) {
1125                 dev_err(adapter, "%s: cxgbe probe failed with err %d\n",
1126                         __func__, err);
1127                 goto out_free_adapter;
1128         }
1129
1130         return 0;
1131
1132 out_free_adapter:
1133         rte_free(adapter);
1134         return err;
1135 }
1136
1137 static int eth_cxgbe_dev_uninit(struct rte_eth_dev *eth_dev)
1138 {
1139         struct port_info *pi = (struct port_info *)(eth_dev->data->dev_private);
1140         struct adapter *adap = pi->adapter;
1141
1142         /* Free up other ports and all resources */
1143         cxgbe_close(adap);
1144         return 0;
1145 }
1146
1147 static int eth_cxgbe_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1148         struct rte_pci_device *pci_dev)
1149 {
1150         return rte_eth_dev_pci_generic_probe(pci_dev,
1151                 sizeof(struct port_info), eth_cxgbe_dev_init);
1152 }
1153
1154 static int eth_cxgbe_pci_remove(struct rte_pci_device *pci_dev)
1155 {
1156         return rte_eth_dev_pci_generic_remove(pci_dev, eth_cxgbe_dev_uninit);
1157 }
1158
1159 static struct rte_pci_driver rte_cxgbe_pmd = {
1160         .id_table = cxgb4_pci_tbl,
1161         .drv_flags = RTE_PCI_DRV_NEED_MAPPING,
1162         .probe = eth_cxgbe_pci_probe,
1163         .remove = eth_cxgbe_pci_remove,
1164 };
1165
1166 RTE_PMD_REGISTER_PCI(net_cxgbe, rte_cxgbe_pmd);
1167 RTE_PMD_REGISTER_PCI_TABLE(net_cxgbe, cxgb4_pci_tbl);
1168 RTE_PMD_REGISTER_KMOD_DEP(net_cxgbe, "* igb_uio | uio_pci_generic | vfio-pci");
1169 RTE_PMD_REGISTER_PARAM_STRING(net_cxgbe,
1170                               CXGBE_DEVARG_KEEP_OVLAN "=<0|1> "
1171                               CXGBE_DEVARG_FORCE_LINK_UP "=<0|1> ");