net/sfc: support VXLAN and NVGRE packet types classification
[dpdk.git] / drivers / net / sfc / sfc_ethdev.c
1 /*-
2  *   BSD LICENSE
3  *
4  * Copyright (c) 2016-2017 Solarflare Communications Inc.
5  * All rights reserved.
6  *
7  * This software was jointly developed between OKTET Labs (under contract
8  * for Solarflare) and Solarflare Communications, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice,
14  *    this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  *    this list of conditions and the following disclaimer in the documentation
17  *    and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
26  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
28  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include <rte_dev.h>
33 #include <rte_ethdev.h>
34 #include <rte_ethdev_pci.h>
35 #include <rte_pci.h>
36 #include <rte_bus_pci.h>
37 #include <rte_errno.h>
38
39 #include "efx.h"
40
41 #include "sfc.h"
42 #include "sfc_debug.h"
43 #include "sfc_log.h"
44 #include "sfc_kvargs.h"
45 #include "sfc_ev.h"
46 #include "sfc_rx.h"
47 #include "sfc_tx.h"
48 #include "sfc_flow.h"
49 #include "sfc_dp.h"
50 #include "sfc_dp_rx.h"
51
52 static struct sfc_dp_list sfc_dp_head =
53         TAILQ_HEAD_INITIALIZER(sfc_dp_head);
54
55 static int
56 sfc_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
57 {
58         struct sfc_adapter *sa = dev->data->dev_private;
59         efx_nic_fw_info_t enfi;
60         int ret;
61         int rc;
62
63         /*
64          * Return value of the callback is likely supposed to be
65          * equal to or greater than 0, nevertheless, if an error
66          * occurs, it will be desirable to pass it to the caller
67          */
68         if ((fw_version == NULL) || (fw_size == 0))
69                 return -EINVAL;
70
71         rc = efx_nic_get_fw_version(sa->nic, &enfi);
72         if (rc != 0)
73                 return -rc;
74
75         ret = snprintf(fw_version, fw_size,
76                        "%" PRIu16 ".%" PRIu16 ".%" PRIu16 ".%" PRIu16,
77                        enfi.enfi_mc_fw_version[0], enfi.enfi_mc_fw_version[1],
78                        enfi.enfi_mc_fw_version[2], enfi.enfi_mc_fw_version[3]);
79         if (ret < 0)
80                 return ret;
81
82         if (enfi.enfi_dpcpu_fw_ids_valid) {
83                 size_t dpcpu_fw_ids_offset = MIN(fw_size - 1, (size_t)ret);
84                 int ret_extra;
85
86                 ret_extra = snprintf(fw_version + dpcpu_fw_ids_offset,
87                                      fw_size - dpcpu_fw_ids_offset,
88                                      " rx%" PRIx16 " tx%" PRIx16,
89                                      enfi.enfi_rx_dpcpu_fw_id,
90                                      enfi.enfi_tx_dpcpu_fw_id);
91                 if (ret_extra < 0)
92                         return ret_extra;
93
94                 ret += ret_extra;
95         }
96
97         if (fw_size < (size_t)(++ret))
98                 return ret;
99         else
100                 return 0;
101 }
102
103 static void
104 sfc_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
105 {
106         struct sfc_adapter *sa = dev->data->dev_private;
107         const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
108
109         sfc_log_init(sa, "entry");
110
111         dev_info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
112         dev_info->max_rx_pktlen = EFX_MAC_PDU_MAX;
113
114         /* Autonegotiation may be disabled */
115         dev_info->speed_capa = ETH_LINK_SPEED_FIXED;
116         if (sa->port.phy_adv_cap_mask & EFX_PHY_CAP_1000FDX)
117                 dev_info->speed_capa |= ETH_LINK_SPEED_1G;
118         if (sa->port.phy_adv_cap_mask & EFX_PHY_CAP_10000FDX)
119                 dev_info->speed_capa |= ETH_LINK_SPEED_10G;
120         if (sa->port.phy_adv_cap_mask & EFX_PHY_CAP_40000FDX)
121                 dev_info->speed_capa |= ETH_LINK_SPEED_40G;
122
123         dev_info->max_rx_queues = sa->rxq_max;
124         dev_info->max_tx_queues = sa->txq_max;
125
126         /* By default packets are dropped if no descriptors are available */
127         dev_info->default_rxconf.rx_drop_en = 1;
128
129         dev_info->rx_offload_capa =
130                 DEV_RX_OFFLOAD_IPV4_CKSUM |
131                 DEV_RX_OFFLOAD_UDP_CKSUM |
132                 DEV_RX_OFFLOAD_TCP_CKSUM;
133
134         if ((encp->enc_tunnel_encapsulations_supported != 0) &&
135             (sa->dp_rx->features & SFC_DP_RX_FEAT_TUNNELS))
136                 dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM;
137
138         dev_info->tx_offload_capa =
139                 DEV_TX_OFFLOAD_IPV4_CKSUM |
140                 DEV_TX_OFFLOAD_UDP_CKSUM |
141                 DEV_TX_OFFLOAD_TCP_CKSUM;
142
143         dev_info->default_txconf.txq_flags = ETH_TXQ_FLAGS_NOXSUMSCTP;
144         if ((~sa->dp_tx->features & SFC_DP_TX_FEAT_VLAN_INSERT) ||
145             !encp->enc_hw_tx_insert_vlan_enabled)
146                 dev_info->default_txconf.txq_flags |= ETH_TXQ_FLAGS_NOVLANOFFL;
147         else
148                 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_VLAN_INSERT;
149
150         if (~sa->dp_tx->features & SFC_DP_TX_FEAT_MULTI_SEG)
151                 dev_info->default_txconf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
152
153         if (~sa->dp_tx->features & SFC_DP_TX_FEAT_MULTI_POOL)
154                 dev_info->default_txconf.txq_flags |= ETH_TXQ_FLAGS_NOMULTMEMP;
155
156         if (~sa->dp_tx->features & SFC_DP_TX_FEAT_REFCNT)
157                 dev_info->default_txconf.txq_flags |= ETH_TXQ_FLAGS_NOREFCOUNT;
158
159 #if EFSYS_OPT_RX_SCALE
160         if (sa->rss_support != EFX_RX_SCALE_UNAVAILABLE) {
161                 dev_info->reta_size = EFX_RSS_TBL_SIZE;
162                 dev_info->hash_key_size = EFX_RSS_KEY_SIZE;
163                 dev_info->flow_type_rss_offloads = SFC_RSS_OFFLOADS;
164         }
165 #endif
166
167         if (sa->tso)
168                 dev_info->tx_offload_capa |= DEV_TX_OFFLOAD_TCP_TSO;
169
170         dev_info->rx_desc_lim.nb_max = EFX_RXQ_MAXNDESCS;
171         dev_info->rx_desc_lim.nb_min = EFX_RXQ_MINNDESCS;
172         /* The RXQ hardware requires that the descriptor count is a power
173          * of 2, but rx_desc_lim cannot properly describe that constraint.
174          */
175         dev_info->rx_desc_lim.nb_align = EFX_RXQ_MINNDESCS;
176
177         dev_info->tx_desc_lim.nb_max = sa->txq_max_entries;
178         dev_info->tx_desc_lim.nb_min = EFX_TXQ_MINNDESCS;
179         /*
180          * The TXQ hardware requires that the descriptor count is a power
181          * of 2, but tx_desc_lim cannot properly describe that constraint
182          */
183         dev_info->tx_desc_lim.nb_align = EFX_TXQ_MINNDESCS;
184 }
185
186 static const uint32_t *
187 sfc_dev_supported_ptypes_get(struct rte_eth_dev *dev)
188 {
189         struct sfc_adapter *sa = dev->data->dev_private;
190         const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
191         uint32_t tunnel_encaps = encp->enc_tunnel_encapsulations_supported;
192
193         return sa->dp_rx->supported_ptypes_get(tunnel_encaps);
194 }
195
196 static int
197 sfc_dev_configure(struct rte_eth_dev *dev)
198 {
199         struct rte_eth_dev_data *dev_data = dev->data;
200         struct sfc_adapter *sa = dev_data->dev_private;
201         int rc;
202
203         sfc_log_init(sa, "entry n_rxq=%u n_txq=%u",
204                      dev_data->nb_rx_queues, dev_data->nb_tx_queues);
205
206         sfc_adapter_lock(sa);
207         switch (sa->state) {
208         case SFC_ADAPTER_CONFIGURED:
209                 /* FALLTHROUGH */
210         case SFC_ADAPTER_INITIALIZED:
211                 rc = sfc_configure(sa);
212                 break;
213         default:
214                 sfc_err(sa, "unexpected adapter state %u to configure",
215                         sa->state);
216                 rc = EINVAL;
217                 break;
218         }
219         sfc_adapter_unlock(sa);
220
221         sfc_log_init(sa, "done %d", rc);
222         SFC_ASSERT(rc >= 0);
223         return -rc;
224 }
225
226 static int
227 sfc_dev_start(struct rte_eth_dev *dev)
228 {
229         struct sfc_adapter *sa = dev->data->dev_private;
230         int rc;
231
232         sfc_log_init(sa, "entry");
233
234         sfc_adapter_lock(sa);
235         rc = sfc_start(sa);
236         sfc_adapter_unlock(sa);
237
238         sfc_log_init(sa, "done %d", rc);
239         SFC_ASSERT(rc >= 0);
240         return -rc;
241 }
242
243 static int
244 sfc_dev_link_update(struct rte_eth_dev *dev, int wait_to_complete)
245 {
246         struct sfc_adapter *sa = dev->data->dev_private;
247         struct rte_eth_link *dev_link = &dev->data->dev_link;
248         struct rte_eth_link old_link;
249         struct rte_eth_link current_link;
250
251         sfc_log_init(sa, "entry");
252
253 retry:
254         EFX_STATIC_ASSERT(sizeof(*dev_link) == sizeof(rte_atomic64_t));
255         *(int64_t *)&old_link = rte_atomic64_read((rte_atomic64_t *)dev_link);
256
257         if (sa->state != SFC_ADAPTER_STARTED) {
258                 sfc_port_link_mode_to_info(EFX_LINK_UNKNOWN, &current_link);
259                 if (!rte_atomic64_cmpset((volatile uint64_t *)dev_link,
260                                          *(uint64_t *)&old_link,
261                                          *(uint64_t *)&current_link))
262                         goto retry;
263         } else if (wait_to_complete) {
264                 efx_link_mode_t link_mode;
265
266                 if (efx_port_poll(sa->nic, &link_mode) != 0)
267                         link_mode = EFX_LINK_UNKNOWN;
268                 sfc_port_link_mode_to_info(link_mode, &current_link);
269
270                 if (!rte_atomic64_cmpset((volatile uint64_t *)dev_link,
271                                          *(uint64_t *)&old_link,
272                                          *(uint64_t *)&current_link))
273                         goto retry;
274         } else {
275                 sfc_ev_mgmt_qpoll(sa);
276                 *(int64_t *)&current_link =
277                         rte_atomic64_read((rte_atomic64_t *)dev_link);
278         }
279
280         if (old_link.link_status != current_link.link_status)
281                 sfc_info(sa, "Link status is %s",
282                          current_link.link_status ? "UP" : "DOWN");
283
284         return old_link.link_status == current_link.link_status ? 0 : -1;
285 }
286
287 static void
288 sfc_dev_stop(struct rte_eth_dev *dev)
289 {
290         struct sfc_adapter *sa = dev->data->dev_private;
291
292         sfc_log_init(sa, "entry");
293
294         sfc_adapter_lock(sa);
295         sfc_stop(sa);
296         sfc_adapter_unlock(sa);
297
298         sfc_log_init(sa, "done");
299 }
300
301 static int
302 sfc_dev_set_link_up(struct rte_eth_dev *dev)
303 {
304         struct sfc_adapter *sa = dev->data->dev_private;
305         int rc;
306
307         sfc_log_init(sa, "entry");
308
309         sfc_adapter_lock(sa);
310         rc = sfc_start(sa);
311         sfc_adapter_unlock(sa);
312
313         SFC_ASSERT(rc >= 0);
314         return -rc;
315 }
316
317 static int
318 sfc_dev_set_link_down(struct rte_eth_dev *dev)
319 {
320         struct sfc_adapter *sa = dev->data->dev_private;
321
322         sfc_log_init(sa, "entry");
323
324         sfc_adapter_lock(sa);
325         sfc_stop(sa);
326         sfc_adapter_unlock(sa);
327
328         return 0;
329 }
330
331 static void
332 sfc_dev_close(struct rte_eth_dev *dev)
333 {
334         struct sfc_adapter *sa = dev->data->dev_private;
335
336         sfc_log_init(sa, "entry");
337
338         sfc_adapter_lock(sa);
339         switch (sa->state) {
340         case SFC_ADAPTER_STARTED:
341                 sfc_stop(sa);
342                 SFC_ASSERT(sa->state == SFC_ADAPTER_CONFIGURED);
343                 /* FALLTHROUGH */
344         case SFC_ADAPTER_CONFIGURED:
345                 sfc_close(sa);
346                 SFC_ASSERT(sa->state == SFC_ADAPTER_INITIALIZED);
347                 /* FALLTHROUGH */
348         case SFC_ADAPTER_INITIALIZED:
349                 break;
350         default:
351                 sfc_err(sa, "unexpected adapter state %u on close", sa->state);
352                 break;
353         }
354         sfc_adapter_unlock(sa);
355
356         sfc_log_init(sa, "done");
357 }
358
359 static void
360 sfc_dev_filter_set(struct rte_eth_dev *dev, enum sfc_dev_filter_mode mode,
361                    boolean_t enabled)
362 {
363         struct sfc_port *port;
364         boolean_t *toggle;
365         struct sfc_adapter *sa = dev->data->dev_private;
366         boolean_t allmulti = (mode == SFC_DEV_FILTER_MODE_ALLMULTI);
367         const char *desc = (allmulti) ? "all-multi" : "promiscuous";
368
369         sfc_adapter_lock(sa);
370
371         port = &sa->port;
372         toggle = (allmulti) ? (&port->allmulti) : (&port->promisc);
373
374         if (*toggle != enabled) {
375                 *toggle = enabled;
376
377                 if (port->isolated) {
378                         sfc_warn(sa, "isolated mode is active on the port");
379                         sfc_warn(sa, "the change is to be applied on the next "
380                                      "start provided that isolated mode is "
381                                      "disabled prior the next start");
382                 } else if ((sa->state == SFC_ADAPTER_STARTED) &&
383                            (sfc_set_rx_mode(sa) != 0)) {
384                         *toggle = !(enabled);
385                         sfc_warn(sa, "Failed to %s %s mode",
386                                  ((enabled) ? "enable" : "disable"), desc);
387                 }
388         }
389
390         sfc_adapter_unlock(sa);
391 }
392
393 static void
394 sfc_dev_promisc_enable(struct rte_eth_dev *dev)
395 {
396         sfc_dev_filter_set(dev, SFC_DEV_FILTER_MODE_PROMISC, B_TRUE);
397 }
398
399 static void
400 sfc_dev_promisc_disable(struct rte_eth_dev *dev)
401 {
402         sfc_dev_filter_set(dev, SFC_DEV_FILTER_MODE_PROMISC, B_FALSE);
403 }
404
405 static void
406 sfc_dev_allmulti_enable(struct rte_eth_dev *dev)
407 {
408         sfc_dev_filter_set(dev, SFC_DEV_FILTER_MODE_ALLMULTI, B_TRUE);
409 }
410
411 static void
412 sfc_dev_allmulti_disable(struct rte_eth_dev *dev)
413 {
414         sfc_dev_filter_set(dev, SFC_DEV_FILTER_MODE_ALLMULTI, B_FALSE);
415 }
416
417 static int
418 sfc_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
419                    uint16_t nb_rx_desc, unsigned int socket_id,
420                    const struct rte_eth_rxconf *rx_conf,
421                    struct rte_mempool *mb_pool)
422 {
423         struct sfc_adapter *sa = dev->data->dev_private;
424         int rc;
425
426         sfc_log_init(sa, "RxQ=%u nb_rx_desc=%u socket_id=%u",
427                      rx_queue_id, nb_rx_desc, socket_id);
428
429         sfc_adapter_lock(sa);
430
431         rc = sfc_rx_qinit(sa, rx_queue_id, nb_rx_desc, socket_id,
432                           rx_conf, mb_pool);
433         if (rc != 0)
434                 goto fail_rx_qinit;
435
436         dev->data->rx_queues[rx_queue_id] = sa->rxq_info[rx_queue_id].rxq->dp;
437
438         sfc_adapter_unlock(sa);
439
440         return 0;
441
442 fail_rx_qinit:
443         sfc_adapter_unlock(sa);
444         SFC_ASSERT(rc > 0);
445         return -rc;
446 }
447
448 static void
449 sfc_rx_queue_release(void *queue)
450 {
451         struct sfc_dp_rxq *dp_rxq = queue;
452         struct sfc_rxq *rxq;
453         struct sfc_adapter *sa;
454         unsigned int sw_index;
455
456         if (dp_rxq == NULL)
457                 return;
458
459         rxq = sfc_rxq_by_dp_rxq(dp_rxq);
460         sa = rxq->evq->sa;
461         sfc_adapter_lock(sa);
462
463         sw_index = sfc_rxq_sw_index(rxq);
464
465         sfc_log_init(sa, "RxQ=%u", sw_index);
466
467         sa->eth_dev->data->rx_queues[sw_index] = NULL;
468
469         sfc_rx_qfini(sa, sw_index);
470
471         sfc_adapter_unlock(sa);
472 }
473
474 static int
475 sfc_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
476                    uint16_t nb_tx_desc, unsigned int socket_id,
477                    const struct rte_eth_txconf *tx_conf)
478 {
479         struct sfc_adapter *sa = dev->data->dev_private;
480         int rc;
481
482         sfc_log_init(sa, "TxQ = %u, nb_tx_desc = %u, socket_id = %u",
483                      tx_queue_id, nb_tx_desc, socket_id);
484
485         sfc_adapter_lock(sa);
486
487         rc = sfc_tx_qinit(sa, tx_queue_id, nb_tx_desc, socket_id, tx_conf);
488         if (rc != 0)
489                 goto fail_tx_qinit;
490
491         dev->data->tx_queues[tx_queue_id] = sa->txq_info[tx_queue_id].txq->dp;
492
493         sfc_adapter_unlock(sa);
494         return 0;
495
496 fail_tx_qinit:
497         sfc_adapter_unlock(sa);
498         SFC_ASSERT(rc > 0);
499         return -rc;
500 }
501
502 static void
503 sfc_tx_queue_release(void *queue)
504 {
505         struct sfc_dp_txq *dp_txq = queue;
506         struct sfc_txq *txq;
507         unsigned int sw_index;
508         struct sfc_adapter *sa;
509
510         if (dp_txq == NULL)
511                 return;
512
513         txq = sfc_txq_by_dp_txq(dp_txq);
514         sw_index = sfc_txq_sw_index(txq);
515
516         SFC_ASSERT(txq->evq != NULL);
517         sa = txq->evq->sa;
518
519         sfc_log_init(sa, "TxQ = %u", sw_index);
520
521         sfc_adapter_lock(sa);
522
523         SFC_ASSERT(sw_index < sa->eth_dev->data->nb_tx_queues);
524         sa->eth_dev->data->tx_queues[sw_index] = NULL;
525
526         sfc_tx_qfini(sa, sw_index);
527
528         sfc_adapter_unlock(sa);
529 }
530
531 static int
532 sfc_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
533 {
534         struct sfc_adapter *sa = dev->data->dev_private;
535         struct sfc_port *port = &sa->port;
536         uint64_t *mac_stats;
537         int ret;
538
539         rte_spinlock_lock(&port->mac_stats_lock);
540
541         ret = sfc_port_update_mac_stats(sa);
542         if (ret != 0)
543                 goto unlock;
544
545         mac_stats = port->mac_stats_buf;
546
547         if (EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask,
548                                    EFX_MAC_VADAPTER_RX_UNICAST_PACKETS)) {
549                 stats->ipackets =
550                         mac_stats[EFX_MAC_VADAPTER_RX_UNICAST_PACKETS] +
551                         mac_stats[EFX_MAC_VADAPTER_RX_MULTICAST_PACKETS] +
552                         mac_stats[EFX_MAC_VADAPTER_RX_BROADCAST_PACKETS];
553                 stats->opackets =
554                         mac_stats[EFX_MAC_VADAPTER_TX_UNICAST_PACKETS] +
555                         mac_stats[EFX_MAC_VADAPTER_TX_MULTICAST_PACKETS] +
556                         mac_stats[EFX_MAC_VADAPTER_TX_BROADCAST_PACKETS];
557                 stats->ibytes =
558                         mac_stats[EFX_MAC_VADAPTER_RX_UNICAST_BYTES] +
559                         mac_stats[EFX_MAC_VADAPTER_RX_MULTICAST_BYTES] +
560                         mac_stats[EFX_MAC_VADAPTER_RX_BROADCAST_BYTES];
561                 stats->obytes =
562                         mac_stats[EFX_MAC_VADAPTER_TX_UNICAST_BYTES] +
563                         mac_stats[EFX_MAC_VADAPTER_TX_MULTICAST_BYTES] +
564                         mac_stats[EFX_MAC_VADAPTER_TX_BROADCAST_BYTES];
565                 stats->imissed = mac_stats[EFX_MAC_VADAPTER_RX_OVERFLOW];
566                 stats->ierrors = mac_stats[EFX_MAC_VADAPTER_RX_BAD_PACKETS];
567                 stats->oerrors = mac_stats[EFX_MAC_VADAPTER_TX_BAD_PACKETS];
568         } else {
569                 stats->ipackets = mac_stats[EFX_MAC_RX_PKTS];
570                 stats->opackets = mac_stats[EFX_MAC_TX_PKTS];
571                 stats->ibytes = mac_stats[EFX_MAC_RX_OCTETS];
572                 stats->obytes = mac_stats[EFX_MAC_TX_OCTETS];
573                 /*
574                  * Take into account stats which are whenever supported
575                  * on EF10. If some stat is not supported by current
576                  * firmware variant or HW revision, it is guaranteed
577                  * to be zero in mac_stats.
578                  */
579                 stats->imissed =
580                         mac_stats[EFX_MAC_RX_NODESC_DROP_CNT] +
581                         mac_stats[EFX_MAC_PM_TRUNC_BB_OVERFLOW] +
582                         mac_stats[EFX_MAC_PM_DISCARD_BB_OVERFLOW] +
583                         mac_stats[EFX_MAC_PM_TRUNC_VFIFO_FULL] +
584                         mac_stats[EFX_MAC_PM_DISCARD_VFIFO_FULL] +
585                         mac_stats[EFX_MAC_PM_TRUNC_QBB] +
586                         mac_stats[EFX_MAC_PM_DISCARD_QBB] +
587                         mac_stats[EFX_MAC_PM_DISCARD_MAPPING] +
588                         mac_stats[EFX_MAC_RXDP_Q_DISABLED_PKTS] +
589                         mac_stats[EFX_MAC_RXDP_DI_DROPPED_PKTS];
590                 stats->ierrors =
591                         mac_stats[EFX_MAC_RX_FCS_ERRORS] +
592                         mac_stats[EFX_MAC_RX_ALIGN_ERRORS] +
593                         mac_stats[EFX_MAC_RX_JABBER_PKTS];
594                 /* no oerrors counters supported on EF10 */
595         }
596
597 unlock:
598         rte_spinlock_unlock(&port->mac_stats_lock);
599         SFC_ASSERT(ret >= 0);
600         return -ret;
601 }
602
603 static void
604 sfc_stats_reset(struct rte_eth_dev *dev)
605 {
606         struct sfc_adapter *sa = dev->data->dev_private;
607         struct sfc_port *port = &sa->port;
608         int rc;
609
610         if (sa->state != SFC_ADAPTER_STARTED) {
611                 /*
612                  * The operation cannot be done if port is not started; it
613                  * will be scheduled to be done during the next port start
614                  */
615                 port->mac_stats_reset_pending = B_TRUE;
616                 return;
617         }
618
619         rc = sfc_port_reset_mac_stats(sa);
620         if (rc != 0)
621                 sfc_err(sa, "failed to reset statistics (rc = %d)", rc);
622 }
623
624 static int
625 sfc_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
626                unsigned int xstats_count)
627 {
628         struct sfc_adapter *sa = dev->data->dev_private;
629         struct sfc_port *port = &sa->port;
630         uint64_t *mac_stats;
631         int rc;
632         unsigned int i;
633         int nstats = 0;
634
635         rte_spinlock_lock(&port->mac_stats_lock);
636
637         rc = sfc_port_update_mac_stats(sa);
638         if (rc != 0) {
639                 SFC_ASSERT(rc > 0);
640                 nstats = -rc;
641                 goto unlock;
642         }
643
644         mac_stats = port->mac_stats_buf;
645
646         for (i = 0; i < EFX_MAC_NSTATS; ++i) {
647                 if (EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask, i)) {
648                         if (xstats != NULL && nstats < (int)xstats_count) {
649                                 xstats[nstats].id = nstats;
650                                 xstats[nstats].value = mac_stats[i];
651                         }
652                         nstats++;
653                 }
654         }
655
656 unlock:
657         rte_spinlock_unlock(&port->mac_stats_lock);
658
659         return nstats;
660 }
661
662 static int
663 sfc_xstats_get_names(struct rte_eth_dev *dev,
664                      struct rte_eth_xstat_name *xstats_names,
665                      unsigned int xstats_count)
666 {
667         struct sfc_adapter *sa = dev->data->dev_private;
668         struct sfc_port *port = &sa->port;
669         unsigned int i;
670         unsigned int nstats = 0;
671
672         for (i = 0; i < EFX_MAC_NSTATS; ++i) {
673                 if (EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask, i)) {
674                         if (xstats_names != NULL && nstats < xstats_count)
675                                 strncpy(xstats_names[nstats].name,
676                                         efx_mac_stat_name(sa->nic, i),
677                                         sizeof(xstats_names[0].name));
678                         nstats++;
679                 }
680         }
681
682         return nstats;
683 }
684
685 static int
686 sfc_xstats_get_by_id(struct rte_eth_dev *dev, const uint64_t *ids,
687                      uint64_t *values, unsigned int n)
688 {
689         struct sfc_adapter *sa = dev->data->dev_private;
690         struct sfc_port *port = &sa->port;
691         uint64_t *mac_stats;
692         unsigned int nb_supported = 0;
693         unsigned int nb_written = 0;
694         unsigned int i;
695         int ret;
696         int rc;
697
698         if (unlikely(values == NULL) ||
699             unlikely((ids == NULL) && (n < port->mac_stats_nb_supported)))
700                 return port->mac_stats_nb_supported;
701
702         rte_spinlock_lock(&port->mac_stats_lock);
703
704         rc = sfc_port_update_mac_stats(sa);
705         if (rc != 0) {
706                 SFC_ASSERT(rc > 0);
707                 ret = -rc;
708                 goto unlock;
709         }
710
711         mac_stats = port->mac_stats_buf;
712
713         for (i = 0; (i < EFX_MAC_NSTATS) && (nb_written < n); ++i) {
714                 if (!EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask, i))
715                         continue;
716
717                 if ((ids == NULL) || (ids[nb_written] == nb_supported))
718                         values[nb_written++] = mac_stats[i];
719
720                 ++nb_supported;
721         }
722
723         ret = nb_written;
724
725 unlock:
726         rte_spinlock_unlock(&port->mac_stats_lock);
727
728         return ret;
729 }
730
731 static int
732 sfc_xstats_get_names_by_id(struct rte_eth_dev *dev,
733                            struct rte_eth_xstat_name *xstats_names,
734                            const uint64_t *ids, unsigned int size)
735 {
736         struct sfc_adapter *sa = dev->data->dev_private;
737         struct sfc_port *port = &sa->port;
738         unsigned int nb_supported = 0;
739         unsigned int nb_written = 0;
740         unsigned int i;
741
742         if (unlikely(xstats_names == NULL) ||
743             unlikely((ids == NULL) && (size < port->mac_stats_nb_supported)))
744                 return port->mac_stats_nb_supported;
745
746         for (i = 0; (i < EFX_MAC_NSTATS) && (nb_written < size); ++i) {
747                 if (!EFX_MAC_STAT_SUPPORTED(port->mac_stats_mask, i))
748                         continue;
749
750                 if ((ids == NULL) || (ids[nb_written] == nb_supported)) {
751                         char *name = xstats_names[nb_written++].name;
752
753                         strncpy(name, efx_mac_stat_name(sa->nic, i),
754                                 sizeof(xstats_names[0].name));
755                         name[sizeof(xstats_names[0].name) - 1] = '\0';
756                 }
757
758                 ++nb_supported;
759         }
760
761         return nb_written;
762 }
763
764 static int
765 sfc_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
766 {
767         struct sfc_adapter *sa = dev->data->dev_private;
768         unsigned int wanted_fc, link_fc;
769
770         memset(fc_conf, 0, sizeof(*fc_conf));
771
772         sfc_adapter_lock(sa);
773
774         if (sa->state == SFC_ADAPTER_STARTED)
775                 efx_mac_fcntl_get(sa->nic, &wanted_fc, &link_fc);
776         else
777                 link_fc = sa->port.flow_ctrl;
778
779         switch (link_fc) {
780         case 0:
781                 fc_conf->mode = RTE_FC_NONE;
782                 break;
783         case EFX_FCNTL_RESPOND:
784                 fc_conf->mode = RTE_FC_RX_PAUSE;
785                 break;
786         case EFX_FCNTL_GENERATE:
787                 fc_conf->mode = RTE_FC_TX_PAUSE;
788                 break;
789         case (EFX_FCNTL_RESPOND | EFX_FCNTL_GENERATE):
790                 fc_conf->mode = RTE_FC_FULL;
791                 break;
792         default:
793                 sfc_err(sa, "%s: unexpected flow control value %#x",
794                         __func__, link_fc);
795         }
796
797         fc_conf->autoneg = sa->port.flow_ctrl_autoneg;
798
799         sfc_adapter_unlock(sa);
800
801         return 0;
802 }
803
804 static int
805 sfc_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
806 {
807         struct sfc_adapter *sa = dev->data->dev_private;
808         struct sfc_port *port = &sa->port;
809         unsigned int fcntl;
810         int rc;
811
812         if (fc_conf->high_water != 0 || fc_conf->low_water != 0 ||
813             fc_conf->pause_time != 0 || fc_conf->send_xon != 0 ||
814             fc_conf->mac_ctrl_frame_fwd != 0) {
815                 sfc_err(sa, "unsupported flow control settings specified");
816                 rc = EINVAL;
817                 goto fail_inval;
818         }
819
820         switch (fc_conf->mode) {
821         case RTE_FC_NONE:
822                 fcntl = 0;
823                 break;
824         case RTE_FC_RX_PAUSE:
825                 fcntl = EFX_FCNTL_RESPOND;
826                 break;
827         case RTE_FC_TX_PAUSE:
828                 fcntl = EFX_FCNTL_GENERATE;
829                 break;
830         case RTE_FC_FULL:
831                 fcntl = EFX_FCNTL_RESPOND | EFX_FCNTL_GENERATE;
832                 break;
833         default:
834                 rc = EINVAL;
835                 goto fail_inval;
836         }
837
838         sfc_adapter_lock(sa);
839
840         if (sa->state == SFC_ADAPTER_STARTED) {
841                 rc = efx_mac_fcntl_set(sa->nic, fcntl, fc_conf->autoneg);
842                 if (rc != 0)
843                         goto fail_mac_fcntl_set;
844         }
845
846         port->flow_ctrl = fcntl;
847         port->flow_ctrl_autoneg = fc_conf->autoneg;
848
849         sfc_adapter_unlock(sa);
850
851         return 0;
852
853 fail_mac_fcntl_set:
854         sfc_adapter_unlock(sa);
855 fail_inval:
856         SFC_ASSERT(rc > 0);
857         return -rc;
858 }
859
860 static int
861 sfc_dev_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
862 {
863         struct sfc_adapter *sa = dev->data->dev_private;
864         size_t pdu = EFX_MAC_PDU(mtu);
865         size_t old_pdu;
866         int rc;
867
868         sfc_log_init(sa, "mtu=%u", mtu);
869
870         rc = EINVAL;
871         if (pdu < EFX_MAC_PDU_MIN) {
872                 sfc_err(sa, "too small MTU %u (PDU size %u less than min %u)",
873                         (unsigned int)mtu, (unsigned int)pdu,
874                         EFX_MAC_PDU_MIN);
875                 goto fail_inval;
876         }
877         if (pdu > EFX_MAC_PDU_MAX) {
878                 sfc_err(sa, "too big MTU %u (PDU size %u greater than max %u)",
879                         (unsigned int)mtu, (unsigned int)pdu,
880                         EFX_MAC_PDU_MAX);
881                 goto fail_inval;
882         }
883
884         sfc_adapter_lock(sa);
885
886         if (pdu != sa->port.pdu) {
887                 if (sa->state == SFC_ADAPTER_STARTED) {
888                         sfc_stop(sa);
889
890                         old_pdu = sa->port.pdu;
891                         sa->port.pdu = pdu;
892                         rc = sfc_start(sa);
893                         if (rc != 0)
894                                 goto fail_start;
895                 } else {
896                         sa->port.pdu = pdu;
897                 }
898         }
899
900         /*
901          * The driver does not use it, but other PMDs update jumbo_frame
902          * flag and max_rx_pkt_len when MTU is set.
903          */
904         dev->data->dev_conf.rxmode.jumbo_frame = (mtu > ETHER_MAX_LEN);
905         dev->data->dev_conf.rxmode.max_rx_pkt_len = sa->port.pdu;
906
907         sfc_adapter_unlock(sa);
908
909         sfc_log_init(sa, "done");
910         return 0;
911
912 fail_start:
913         sa->port.pdu = old_pdu;
914         if (sfc_start(sa) != 0)
915                 sfc_err(sa, "cannot start with neither new (%u) nor old (%u) "
916                         "PDU max size - port is stopped",
917                         (unsigned int)pdu, (unsigned int)old_pdu);
918         sfc_adapter_unlock(sa);
919
920 fail_inval:
921         sfc_log_init(sa, "failed %d", rc);
922         SFC_ASSERT(rc > 0);
923         return -rc;
924 }
925 static void
926 sfc_mac_addr_set(struct rte_eth_dev *dev, struct ether_addr *mac_addr)
927 {
928         struct sfc_adapter *sa = dev->data->dev_private;
929         const efx_nic_cfg_t *encp = efx_nic_cfg_get(sa->nic);
930         struct sfc_port *port = &sa->port;
931         int rc;
932
933         sfc_adapter_lock(sa);
934
935         /*
936          * Copy the address to the device private data so that
937          * it could be recalled in the case of adapter restart.
938          */
939         ether_addr_copy(mac_addr, &port->default_mac_addr);
940
941         if (port->isolated) {
942                 sfc_err(sa, "isolated mode is active on the port");
943                 sfc_err(sa, "will not set MAC address");
944                 goto unlock;
945         }
946
947         if (sa->state != SFC_ADAPTER_STARTED) {
948                 sfc_info(sa, "the port is not started");
949                 sfc_info(sa, "the new MAC address will be set on port start");
950
951                 goto unlock;
952         }
953
954         if (encp->enc_allow_set_mac_with_installed_filters) {
955                 rc = efx_mac_addr_set(sa->nic, mac_addr->addr_bytes);
956                 if (rc != 0) {
957                         sfc_err(sa, "cannot set MAC address (rc = %u)", rc);
958                         goto unlock;
959                 }
960
961                 /*
962                  * Changing the MAC address by means of MCDI request
963                  * has no effect on received traffic, therefore
964                  * we also need to update unicast filters
965                  */
966                 rc = sfc_set_rx_mode(sa);
967                 if (rc != 0)
968                         sfc_err(sa, "cannot set filter (rc = %u)", rc);
969         } else {
970                 sfc_warn(sa, "cannot set MAC address with filters installed");
971                 sfc_warn(sa, "adapter will be restarted to pick the new MAC");
972                 sfc_warn(sa, "(some traffic may be dropped)");
973
974                 /*
975                  * Since setting MAC address with filters installed is not
976                  * allowed on the adapter, the new MAC address will be set
977                  * by means of adapter restart. sfc_start() shall retrieve
978                  * the new address from the device private data and set it.
979                  */
980                 sfc_stop(sa);
981                 rc = sfc_start(sa);
982                 if (rc != 0)
983                         sfc_err(sa, "cannot restart adapter (rc = %u)", rc);
984         }
985
986 unlock:
987         /*
988          * In the case of failure sa->port->default_mac_addr does not
989          * need rollback since no error code is returned, and the upper
990          * API will anyway update the external MAC address storage.
991          * To be consistent with that new value it is better to keep
992          * the device private value the same.
993          */
994         sfc_adapter_unlock(sa);
995 }
996
997
998 static int
999 sfc_set_mc_addr_list(struct rte_eth_dev *dev, struct ether_addr *mc_addr_set,
1000                      uint32_t nb_mc_addr)
1001 {
1002         struct sfc_adapter *sa = dev->data->dev_private;
1003         struct sfc_port *port = &sa->port;
1004         uint8_t *mc_addrs = port->mcast_addrs;
1005         int rc;
1006         unsigned int i;
1007
1008         if (port->isolated) {
1009                 sfc_err(sa, "isolated mode is active on the port");
1010                 sfc_err(sa, "will not set multicast address list");
1011                 return -ENOTSUP;
1012         }
1013
1014         if (mc_addrs == NULL)
1015                 return -ENOBUFS;
1016
1017         if (nb_mc_addr > port->max_mcast_addrs) {
1018                 sfc_err(sa, "too many multicast addresses: %u > %u",
1019                          nb_mc_addr, port->max_mcast_addrs);
1020                 return -EINVAL;
1021         }
1022
1023         for (i = 0; i < nb_mc_addr; ++i) {
1024                 rte_memcpy(mc_addrs, mc_addr_set[i].addr_bytes,
1025                                  EFX_MAC_ADDR_LEN);
1026                 mc_addrs += EFX_MAC_ADDR_LEN;
1027         }
1028
1029         port->nb_mcast_addrs = nb_mc_addr;
1030
1031         if (sa->state != SFC_ADAPTER_STARTED)
1032                 return 0;
1033
1034         rc = efx_mac_multicast_list_set(sa->nic, port->mcast_addrs,
1035                                         port->nb_mcast_addrs);
1036         if (rc != 0)
1037                 sfc_err(sa, "cannot set multicast address list (rc = %u)", rc);
1038
1039         SFC_ASSERT(rc > 0);
1040         return -rc;
1041 }
1042
1043 /*
1044  * The function is used by the secondary process as well. It must not
1045  * use any process-local pointers from the adapter data.
1046  */
1047 static void
1048 sfc_rx_queue_info_get(struct rte_eth_dev *dev, uint16_t rx_queue_id,
1049                       struct rte_eth_rxq_info *qinfo)
1050 {
1051         struct sfc_adapter *sa = dev->data->dev_private;
1052         struct sfc_rxq_info *rxq_info;
1053         struct sfc_rxq *rxq;
1054
1055         sfc_adapter_lock(sa);
1056
1057         SFC_ASSERT(rx_queue_id < sa->rxq_count);
1058
1059         rxq_info = &sa->rxq_info[rx_queue_id];
1060         rxq = rxq_info->rxq;
1061         SFC_ASSERT(rxq != NULL);
1062
1063         qinfo->mp = rxq->refill_mb_pool;
1064         qinfo->conf.rx_free_thresh = rxq->refill_threshold;
1065         qinfo->conf.rx_drop_en = 1;
1066         qinfo->conf.rx_deferred_start = rxq_info->deferred_start;
1067         qinfo->scattered_rx =
1068                 ((rxq_info->type_flags & EFX_RXQ_FLAG_SCATTER) != 0);
1069         qinfo->nb_desc = rxq_info->entries;
1070
1071         sfc_adapter_unlock(sa);
1072 }
1073
1074 /*
1075  * The function is used by the secondary process as well. It must not
1076  * use any process-local pointers from the adapter data.
1077  */
1078 static void
1079 sfc_tx_queue_info_get(struct rte_eth_dev *dev, uint16_t tx_queue_id,
1080                       struct rte_eth_txq_info *qinfo)
1081 {
1082         struct sfc_adapter *sa = dev->data->dev_private;
1083         struct sfc_txq_info *txq_info;
1084
1085         sfc_adapter_lock(sa);
1086
1087         SFC_ASSERT(tx_queue_id < sa->txq_count);
1088
1089         txq_info = &sa->txq_info[tx_queue_id];
1090         SFC_ASSERT(txq_info->txq != NULL);
1091
1092         memset(qinfo, 0, sizeof(*qinfo));
1093
1094         qinfo->conf.txq_flags = txq_info->txq->flags;
1095         qinfo->conf.tx_free_thresh = txq_info->txq->free_thresh;
1096         qinfo->conf.tx_deferred_start = txq_info->deferred_start;
1097         qinfo->nb_desc = txq_info->entries;
1098
1099         sfc_adapter_unlock(sa);
1100 }
1101
1102 static uint32_t
1103 sfc_rx_queue_count(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1104 {
1105         struct sfc_adapter *sa = dev->data->dev_private;
1106
1107         sfc_log_init(sa, "RxQ=%u", rx_queue_id);
1108
1109         return sfc_rx_qdesc_npending(sa, rx_queue_id);
1110 }
1111
1112 static int
1113 sfc_rx_descriptor_done(void *queue, uint16_t offset)
1114 {
1115         struct sfc_dp_rxq *dp_rxq = queue;
1116
1117         return sfc_rx_qdesc_done(dp_rxq, offset);
1118 }
1119
1120 static int
1121 sfc_rx_descriptor_status(void *queue, uint16_t offset)
1122 {
1123         struct sfc_dp_rxq *dp_rxq = queue;
1124         struct sfc_rxq *rxq = sfc_rxq_by_dp_rxq(dp_rxq);
1125
1126         return rxq->evq->sa->dp_rx->qdesc_status(dp_rxq, offset);
1127 }
1128
1129 static int
1130 sfc_tx_descriptor_status(void *queue, uint16_t offset)
1131 {
1132         struct sfc_dp_txq *dp_txq = queue;
1133         struct sfc_txq *txq = sfc_txq_by_dp_txq(dp_txq);
1134
1135         return txq->evq->sa->dp_tx->qdesc_status(dp_txq, offset);
1136 }
1137
1138 static int
1139 sfc_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1140 {
1141         struct sfc_adapter *sa = dev->data->dev_private;
1142         int rc;
1143
1144         sfc_log_init(sa, "RxQ=%u", rx_queue_id);
1145
1146         sfc_adapter_lock(sa);
1147
1148         rc = EINVAL;
1149         if (sa->state != SFC_ADAPTER_STARTED)
1150                 goto fail_not_started;
1151
1152         rc = sfc_rx_qstart(sa, rx_queue_id);
1153         if (rc != 0)
1154                 goto fail_rx_qstart;
1155
1156         sa->rxq_info[rx_queue_id].deferred_started = B_TRUE;
1157
1158         sfc_adapter_unlock(sa);
1159
1160         return 0;
1161
1162 fail_rx_qstart:
1163 fail_not_started:
1164         sfc_adapter_unlock(sa);
1165         SFC_ASSERT(rc > 0);
1166         return -rc;
1167 }
1168
1169 static int
1170 sfc_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1171 {
1172         struct sfc_adapter *sa = dev->data->dev_private;
1173
1174         sfc_log_init(sa, "RxQ=%u", rx_queue_id);
1175
1176         sfc_adapter_lock(sa);
1177         sfc_rx_qstop(sa, rx_queue_id);
1178
1179         sa->rxq_info[rx_queue_id].deferred_started = B_FALSE;
1180
1181         sfc_adapter_unlock(sa);
1182
1183         return 0;
1184 }
1185
1186 static int
1187 sfc_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1188 {
1189         struct sfc_adapter *sa = dev->data->dev_private;
1190         int rc;
1191
1192         sfc_log_init(sa, "TxQ = %u", tx_queue_id);
1193
1194         sfc_adapter_lock(sa);
1195
1196         rc = EINVAL;
1197         if (sa->state != SFC_ADAPTER_STARTED)
1198                 goto fail_not_started;
1199
1200         rc = sfc_tx_qstart(sa, tx_queue_id);
1201         if (rc != 0)
1202                 goto fail_tx_qstart;
1203
1204         sa->txq_info[tx_queue_id].deferred_started = B_TRUE;
1205
1206         sfc_adapter_unlock(sa);
1207         return 0;
1208
1209 fail_tx_qstart:
1210
1211 fail_not_started:
1212         sfc_adapter_unlock(sa);
1213         SFC_ASSERT(rc > 0);
1214         return -rc;
1215 }
1216
1217 static int
1218 sfc_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1219 {
1220         struct sfc_adapter *sa = dev->data->dev_private;
1221
1222         sfc_log_init(sa, "TxQ = %u", tx_queue_id);
1223
1224         sfc_adapter_lock(sa);
1225
1226         sfc_tx_qstop(sa, tx_queue_id);
1227
1228         sa->txq_info[tx_queue_id].deferred_started = B_FALSE;
1229
1230         sfc_adapter_unlock(sa);
1231         return 0;
1232 }
1233
1234 static efx_tunnel_protocol_t
1235 sfc_tunnel_rte_type_to_efx_udp_proto(enum rte_eth_tunnel_type rte_type)
1236 {
1237         switch (rte_type) {
1238         case RTE_TUNNEL_TYPE_VXLAN:
1239                 return EFX_TUNNEL_PROTOCOL_VXLAN;
1240         case RTE_TUNNEL_TYPE_GENEVE:
1241                 return EFX_TUNNEL_PROTOCOL_GENEVE;
1242         default:
1243                 return EFX_TUNNEL_NPROTOS;
1244         }
1245 }
1246
1247 enum sfc_udp_tunnel_op_e {
1248         SFC_UDP_TUNNEL_ADD_PORT,
1249         SFC_UDP_TUNNEL_DEL_PORT,
1250 };
1251
1252 static int
1253 sfc_dev_udp_tunnel_op(struct rte_eth_dev *dev,
1254                       struct rte_eth_udp_tunnel *tunnel_udp,
1255                       enum sfc_udp_tunnel_op_e op)
1256 {
1257         struct sfc_adapter *sa = dev->data->dev_private;
1258         efx_tunnel_protocol_t tunnel_proto;
1259         int rc;
1260
1261         sfc_log_init(sa, "%s udp_port=%u prot_type=%u",
1262                      (op == SFC_UDP_TUNNEL_ADD_PORT) ? "add" :
1263                      (op == SFC_UDP_TUNNEL_DEL_PORT) ? "delete" : "unknown",
1264                      tunnel_udp->udp_port, tunnel_udp->prot_type);
1265
1266         tunnel_proto =
1267                 sfc_tunnel_rte_type_to_efx_udp_proto(tunnel_udp->prot_type);
1268         if (tunnel_proto >= EFX_TUNNEL_NPROTOS) {
1269                 rc = ENOTSUP;
1270                 goto fail_bad_proto;
1271         }
1272
1273         sfc_adapter_lock(sa);
1274
1275         switch (op) {
1276         case SFC_UDP_TUNNEL_ADD_PORT:
1277                 rc = efx_tunnel_config_udp_add(sa->nic,
1278                                                tunnel_udp->udp_port,
1279                                                tunnel_proto);
1280                 break;
1281         case SFC_UDP_TUNNEL_DEL_PORT:
1282                 rc = efx_tunnel_config_udp_remove(sa->nic,
1283                                                   tunnel_udp->udp_port,
1284                                                   tunnel_proto);
1285                 break;
1286         default:
1287                 rc = EINVAL;
1288                 goto fail_bad_op;
1289         }
1290
1291         if (rc != 0)
1292                 goto fail_op;
1293
1294         if (sa->state == SFC_ADAPTER_STARTED) {
1295                 rc = efx_tunnel_reconfigure(sa->nic);
1296                 if (rc == EAGAIN) {
1297                         /*
1298                          * Configuration is accepted by FW and MC reboot
1299                          * is initiated to apply the changes. MC reboot
1300                          * will be handled in a usual way (MC reboot
1301                          * event on management event queue and adapter
1302                          * restart).
1303                          */
1304                         rc = 0;
1305                 } else if (rc != 0) {
1306                         goto fail_reconfigure;
1307                 }
1308         }
1309
1310         sfc_adapter_unlock(sa);
1311         return 0;
1312
1313 fail_reconfigure:
1314         /* Remove/restore entry since the change makes the trouble */
1315         switch (op) {
1316         case SFC_UDP_TUNNEL_ADD_PORT:
1317                 (void)efx_tunnel_config_udp_remove(sa->nic,
1318                                                    tunnel_udp->udp_port,
1319                                                    tunnel_proto);
1320                 break;
1321         case SFC_UDP_TUNNEL_DEL_PORT:
1322                 (void)efx_tunnel_config_udp_add(sa->nic,
1323                                                 tunnel_udp->udp_port,
1324                                                 tunnel_proto);
1325                 break;
1326         }
1327
1328 fail_op:
1329 fail_bad_op:
1330         sfc_adapter_unlock(sa);
1331
1332 fail_bad_proto:
1333         SFC_ASSERT(rc > 0);
1334         return -rc;
1335 }
1336
1337 static int
1338 sfc_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
1339                             struct rte_eth_udp_tunnel *tunnel_udp)
1340 {
1341         return sfc_dev_udp_tunnel_op(dev, tunnel_udp, SFC_UDP_TUNNEL_ADD_PORT);
1342 }
1343
1344 static int
1345 sfc_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
1346                             struct rte_eth_udp_tunnel *tunnel_udp)
1347 {
1348         return sfc_dev_udp_tunnel_op(dev, tunnel_udp, SFC_UDP_TUNNEL_DEL_PORT);
1349 }
1350
1351 #if EFSYS_OPT_RX_SCALE
1352 static int
1353 sfc_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
1354                           struct rte_eth_rss_conf *rss_conf)
1355 {
1356         struct sfc_adapter *sa = dev->data->dev_private;
1357         struct sfc_port *port = &sa->port;
1358
1359         if ((sa->rss_support != EFX_RX_SCALE_EXCLUSIVE) || port->isolated)
1360                 return -ENOTSUP;
1361
1362         if (sa->rss_channels == 0)
1363                 return -EINVAL;
1364
1365         sfc_adapter_lock(sa);
1366
1367         /*
1368          * Mapping of hash configuration between RTE and EFX is not one-to-one,
1369          * hence, conversion is done here to derive a correct set of ETH_RSS
1370          * flags which corresponds to the active EFX configuration stored
1371          * locally in 'sfc_adapter' and kept up-to-date
1372          */
1373         rss_conf->rss_hf = sfc_efx_to_rte_hash_type(sa->rss_hash_types);
1374         rss_conf->rss_key_len = EFX_RSS_KEY_SIZE;
1375         if (rss_conf->rss_key != NULL)
1376                 rte_memcpy(rss_conf->rss_key, sa->rss_key, EFX_RSS_KEY_SIZE);
1377
1378         sfc_adapter_unlock(sa);
1379
1380         return 0;
1381 }
1382
1383 static int
1384 sfc_dev_rss_hash_update(struct rte_eth_dev *dev,
1385                         struct rte_eth_rss_conf *rss_conf)
1386 {
1387         struct sfc_adapter *sa = dev->data->dev_private;
1388         struct sfc_port *port = &sa->port;
1389         unsigned int efx_hash_types;
1390         int rc = 0;
1391
1392         if (port->isolated)
1393                 return -ENOTSUP;
1394
1395         if (sa->rss_support != EFX_RX_SCALE_EXCLUSIVE) {
1396                 sfc_err(sa, "RSS is not available");
1397                 return -ENOTSUP;
1398         }
1399
1400         if (sa->rss_channels == 0) {
1401                 sfc_err(sa, "RSS is not configured");
1402                 return -EINVAL;
1403         }
1404
1405         if ((rss_conf->rss_key != NULL) &&
1406             (rss_conf->rss_key_len != sizeof(sa->rss_key))) {
1407                 sfc_err(sa, "RSS key size is wrong (should be %lu)",
1408                         sizeof(sa->rss_key));
1409                 return -EINVAL;
1410         }
1411
1412         if ((rss_conf->rss_hf & ~SFC_RSS_OFFLOADS) != 0) {
1413                 sfc_err(sa, "unsupported hash functions requested");
1414                 return -EINVAL;
1415         }
1416
1417         sfc_adapter_lock(sa);
1418
1419         efx_hash_types = sfc_rte_to_efx_hash_type(rss_conf->rss_hf);
1420
1421         rc = efx_rx_scale_mode_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
1422                                    EFX_RX_HASHALG_TOEPLITZ,
1423                                    efx_hash_types, B_TRUE);
1424         if (rc != 0)
1425                 goto fail_scale_mode_set;
1426
1427         if (rss_conf->rss_key != NULL) {
1428                 if (sa->state == SFC_ADAPTER_STARTED) {
1429                         rc = efx_rx_scale_key_set(sa->nic,
1430                                                   EFX_RSS_CONTEXT_DEFAULT,
1431                                                   rss_conf->rss_key,
1432                                                   sizeof(sa->rss_key));
1433                         if (rc != 0)
1434                                 goto fail_scale_key_set;
1435                 }
1436
1437                 rte_memcpy(sa->rss_key, rss_conf->rss_key, sizeof(sa->rss_key));
1438         }
1439
1440         sa->rss_hash_types = efx_hash_types;
1441
1442         sfc_adapter_unlock(sa);
1443
1444         return 0;
1445
1446 fail_scale_key_set:
1447         if (efx_rx_scale_mode_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
1448                                   EFX_RX_HASHALG_TOEPLITZ,
1449                                   sa->rss_hash_types, B_TRUE) != 0)
1450                 sfc_err(sa, "failed to restore RSS mode");
1451
1452 fail_scale_mode_set:
1453         sfc_adapter_unlock(sa);
1454         return -rc;
1455 }
1456
1457 static int
1458 sfc_dev_rss_reta_query(struct rte_eth_dev *dev,
1459                        struct rte_eth_rss_reta_entry64 *reta_conf,
1460                        uint16_t reta_size)
1461 {
1462         struct sfc_adapter *sa = dev->data->dev_private;
1463         struct sfc_port *port = &sa->port;
1464         int entry;
1465
1466         if ((sa->rss_support != EFX_RX_SCALE_EXCLUSIVE) || port->isolated)
1467                 return -ENOTSUP;
1468
1469         if (sa->rss_channels == 0)
1470                 return -EINVAL;
1471
1472         if (reta_size != EFX_RSS_TBL_SIZE)
1473                 return -EINVAL;
1474
1475         sfc_adapter_lock(sa);
1476
1477         for (entry = 0; entry < reta_size; entry++) {
1478                 int grp = entry / RTE_RETA_GROUP_SIZE;
1479                 int grp_idx = entry % RTE_RETA_GROUP_SIZE;
1480
1481                 if ((reta_conf[grp].mask >> grp_idx) & 1)
1482                         reta_conf[grp].reta[grp_idx] = sa->rss_tbl[entry];
1483         }
1484
1485         sfc_adapter_unlock(sa);
1486
1487         return 0;
1488 }
1489
1490 static int
1491 sfc_dev_rss_reta_update(struct rte_eth_dev *dev,
1492                         struct rte_eth_rss_reta_entry64 *reta_conf,
1493                         uint16_t reta_size)
1494 {
1495         struct sfc_adapter *sa = dev->data->dev_private;
1496         struct sfc_port *port = &sa->port;
1497         unsigned int *rss_tbl_new;
1498         uint16_t entry;
1499         int rc = 0;
1500
1501
1502         if (port->isolated)
1503                 return -ENOTSUP;
1504
1505         if (sa->rss_support != EFX_RX_SCALE_EXCLUSIVE) {
1506                 sfc_err(sa, "RSS is not available");
1507                 return -ENOTSUP;
1508         }
1509
1510         if (sa->rss_channels == 0) {
1511                 sfc_err(sa, "RSS is not configured");
1512                 return -EINVAL;
1513         }
1514
1515         if (reta_size != EFX_RSS_TBL_SIZE) {
1516                 sfc_err(sa, "RETA size is wrong (should be %u)",
1517                         EFX_RSS_TBL_SIZE);
1518                 return -EINVAL;
1519         }
1520
1521         rss_tbl_new = rte_zmalloc("rss_tbl_new", sizeof(sa->rss_tbl), 0);
1522         if (rss_tbl_new == NULL)
1523                 return -ENOMEM;
1524
1525         sfc_adapter_lock(sa);
1526
1527         rte_memcpy(rss_tbl_new, sa->rss_tbl, sizeof(sa->rss_tbl));
1528
1529         for (entry = 0; entry < reta_size; entry++) {
1530                 int grp_idx = entry % RTE_RETA_GROUP_SIZE;
1531                 struct rte_eth_rss_reta_entry64 *grp;
1532
1533                 grp = &reta_conf[entry / RTE_RETA_GROUP_SIZE];
1534
1535                 if (grp->mask & (1ull << grp_idx)) {
1536                         if (grp->reta[grp_idx] >= sa->rss_channels) {
1537                                 rc = EINVAL;
1538                                 goto bad_reta_entry;
1539                         }
1540                         rss_tbl_new[entry] = grp->reta[grp_idx];
1541                 }
1542         }
1543
1544         if (sa->state == SFC_ADAPTER_STARTED) {
1545                 rc = efx_rx_scale_tbl_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
1546                                           rss_tbl_new, EFX_RSS_TBL_SIZE);
1547                 if (rc != 0)
1548                         goto fail_scale_tbl_set;
1549         }
1550
1551         rte_memcpy(sa->rss_tbl, rss_tbl_new, sizeof(sa->rss_tbl));
1552
1553 fail_scale_tbl_set:
1554 bad_reta_entry:
1555         sfc_adapter_unlock(sa);
1556
1557         rte_free(rss_tbl_new);
1558
1559         SFC_ASSERT(rc >= 0);
1560         return -rc;
1561 }
1562 #endif
1563
1564 static int
1565 sfc_dev_filter_ctrl(struct rte_eth_dev *dev, enum rte_filter_type filter_type,
1566                     enum rte_filter_op filter_op,
1567                     void *arg)
1568 {
1569         struct sfc_adapter *sa = dev->data->dev_private;
1570         int rc = ENOTSUP;
1571
1572         sfc_log_init(sa, "entry");
1573
1574         switch (filter_type) {
1575         case RTE_ETH_FILTER_NONE:
1576                 sfc_err(sa, "Global filters configuration not supported");
1577                 break;
1578         case RTE_ETH_FILTER_MACVLAN:
1579                 sfc_err(sa, "MACVLAN filters not supported");
1580                 break;
1581         case RTE_ETH_FILTER_ETHERTYPE:
1582                 sfc_err(sa, "EtherType filters not supported");
1583                 break;
1584         case RTE_ETH_FILTER_FLEXIBLE:
1585                 sfc_err(sa, "Flexible filters not supported");
1586                 break;
1587         case RTE_ETH_FILTER_SYN:
1588                 sfc_err(sa, "SYN filters not supported");
1589                 break;
1590         case RTE_ETH_FILTER_NTUPLE:
1591                 sfc_err(sa, "NTUPLE filters not supported");
1592                 break;
1593         case RTE_ETH_FILTER_TUNNEL:
1594                 sfc_err(sa, "Tunnel filters not supported");
1595                 break;
1596         case RTE_ETH_FILTER_FDIR:
1597                 sfc_err(sa, "Flow Director filters not supported");
1598                 break;
1599         case RTE_ETH_FILTER_HASH:
1600                 sfc_err(sa, "Hash filters not supported");
1601                 break;
1602         case RTE_ETH_FILTER_GENERIC:
1603                 if (filter_op != RTE_ETH_FILTER_GET) {
1604                         rc = EINVAL;
1605                 } else {
1606                         *(const void **)arg = &sfc_flow_ops;
1607                         rc = 0;
1608                 }
1609                 break;
1610         default:
1611                 sfc_err(sa, "Unknown filter type %u", filter_type);
1612                 break;
1613         }
1614
1615         sfc_log_init(sa, "exit: %d", -rc);
1616         SFC_ASSERT(rc >= 0);
1617         return -rc;
1618 }
1619
1620 static const struct eth_dev_ops sfc_eth_dev_ops = {
1621         .dev_configure                  = sfc_dev_configure,
1622         .dev_start                      = sfc_dev_start,
1623         .dev_stop                       = sfc_dev_stop,
1624         .dev_set_link_up                = sfc_dev_set_link_up,
1625         .dev_set_link_down              = sfc_dev_set_link_down,
1626         .dev_close                      = sfc_dev_close,
1627         .promiscuous_enable             = sfc_dev_promisc_enable,
1628         .promiscuous_disable            = sfc_dev_promisc_disable,
1629         .allmulticast_enable            = sfc_dev_allmulti_enable,
1630         .allmulticast_disable           = sfc_dev_allmulti_disable,
1631         .link_update                    = sfc_dev_link_update,
1632         .stats_get                      = sfc_stats_get,
1633         .stats_reset                    = sfc_stats_reset,
1634         .xstats_get                     = sfc_xstats_get,
1635         .xstats_reset                   = sfc_stats_reset,
1636         .xstats_get_names               = sfc_xstats_get_names,
1637         .dev_infos_get                  = sfc_dev_infos_get,
1638         .dev_supported_ptypes_get       = sfc_dev_supported_ptypes_get,
1639         .mtu_set                        = sfc_dev_set_mtu,
1640         .rx_queue_start                 = sfc_rx_queue_start,
1641         .rx_queue_stop                  = sfc_rx_queue_stop,
1642         .tx_queue_start                 = sfc_tx_queue_start,
1643         .tx_queue_stop                  = sfc_tx_queue_stop,
1644         .rx_queue_setup                 = sfc_rx_queue_setup,
1645         .rx_queue_release               = sfc_rx_queue_release,
1646         .rx_queue_count                 = sfc_rx_queue_count,
1647         .rx_descriptor_done             = sfc_rx_descriptor_done,
1648         .rx_descriptor_status           = sfc_rx_descriptor_status,
1649         .tx_descriptor_status           = sfc_tx_descriptor_status,
1650         .tx_queue_setup                 = sfc_tx_queue_setup,
1651         .tx_queue_release               = sfc_tx_queue_release,
1652         .flow_ctrl_get                  = sfc_flow_ctrl_get,
1653         .flow_ctrl_set                  = sfc_flow_ctrl_set,
1654         .mac_addr_set                   = sfc_mac_addr_set,
1655         .udp_tunnel_port_add            = sfc_dev_udp_tunnel_port_add,
1656         .udp_tunnel_port_del            = sfc_dev_udp_tunnel_port_del,
1657 #if EFSYS_OPT_RX_SCALE
1658         .reta_update                    = sfc_dev_rss_reta_update,
1659         .reta_query                     = sfc_dev_rss_reta_query,
1660         .rss_hash_update                = sfc_dev_rss_hash_update,
1661         .rss_hash_conf_get              = sfc_dev_rss_hash_conf_get,
1662 #endif
1663         .filter_ctrl                    = sfc_dev_filter_ctrl,
1664         .set_mc_addr_list               = sfc_set_mc_addr_list,
1665         .rxq_info_get                   = sfc_rx_queue_info_get,
1666         .txq_info_get                   = sfc_tx_queue_info_get,
1667         .fw_version_get                 = sfc_fw_version_get,
1668         .xstats_get_by_id               = sfc_xstats_get_by_id,
1669         .xstats_get_names_by_id         = sfc_xstats_get_names_by_id,
1670 };
1671
1672 /**
1673  * Duplicate a string in potentially shared memory required for
1674  * multi-process support.
1675  *
1676  * strdup() allocates from process-local heap/memory.
1677  */
1678 static char *
1679 sfc_strdup(const char *str)
1680 {
1681         size_t size;
1682         char *copy;
1683
1684         if (str == NULL)
1685                 return NULL;
1686
1687         size = strlen(str) + 1;
1688         copy = rte_malloc(__func__, size, 0);
1689         if (copy != NULL)
1690                 rte_memcpy(copy, str, size);
1691
1692         return copy;
1693 }
1694
1695 static int
1696 sfc_eth_dev_set_ops(struct rte_eth_dev *dev)
1697 {
1698         struct sfc_adapter *sa = dev->data->dev_private;
1699         unsigned int avail_caps = 0;
1700         const char *rx_name = NULL;
1701         const char *tx_name = NULL;
1702         int rc;
1703
1704         switch (sa->family) {
1705         case EFX_FAMILY_HUNTINGTON:
1706         case EFX_FAMILY_MEDFORD:
1707                 avail_caps |= SFC_DP_HW_FW_CAP_EF10;
1708                 break;
1709         default:
1710                 break;
1711         }
1712
1713         rc = sfc_kvargs_process(sa, SFC_KVARG_RX_DATAPATH,
1714                                 sfc_kvarg_string_handler, &rx_name);
1715         if (rc != 0)
1716                 goto fail_kvarg_rx_datapath;
1717
1718         if (rx_name != NULL) {
1719                 sa->dp_rx = sfc_dp_find_rx_by_name(&sfc_dp_head, rx_name);
1720                 if (sa->dp_rx == NULL) {
1721                         sfc_err(sa, "Rx datapath %s not found", rx_name);
1722                         rc = ENOENT;
1723                         goto fail_dp_rx;
1724                 }
1725                 if (!sfc_dp_match_hw_fw_caps(&sa->dp_rx->dp, avail_caps)) {
1726                         sfc_err(sa,
1727                                 "Insufficient Hw/FW capabilities to use Rx datapath %s",
1728                                 rx_name);
1729                         rc = EINVAL;
1730                         goto fail_dp_rx_caps;
1731                 }
1732         } else {
1733                 sa->dp_rx = sfc_dp_find_rx_by_caps(&sfc_dp_head, avail_caps);
1734                 if (sa->dp_rx == NULL) {
1735                         sfc_err(sa, "Rx datapath by caps %#x not found",
1736                                 avail_caps);
1737                         rc = ENOENT;
1738                         goto fail_dp_rx;
1739                 }
1740         }
1741
1742         sa->dp_rx_name = sfc_strdup(sa->dp_rx->dp.name);
1743         if (sa->dp_rx_name == NULL) {
1744                 rc = ENOMEM;
1745                 goto fail_dp_rx_name;
1746         }
1747
1748         sfc_info(sa, "use %s Rx datapath", sa->dp_rx_name);
1749
1750         dev->rx_pkt_burst = sa->dp_rx->pkt_burst;
1751
1752         rc = sfc_kvargs_process(sa, SFC_KVARG_TX_DATAPATH,
1753                                 sfc_kvarg_string_handler, &tx_name);
1754         if (rc != 0)
1755                 goto fail_kvarg_tx_datapath;
1756
1757         if (tx_name != NULL) {
1758                 sa->dp_tx = sfc_dp_find_tx_by_name(&sfc_dp_head, tx_name);
1759                 if (sa->dp_tx == NULL) {
1760                         sfc_err(sa, "Tx datapath %s not found", tx_name);
1761                         rc = ENOENT;
1762                         goto fail_dp_tx;
1763                 }
1764                 if (!sfc_dp_match_hw_fw_caps(&sa->dp_tx->dp, avail_caps)) {
1765                         sfc_err(sa,
1766                                 "Insufficient Hw/FW capabilities to use Tx datapath %s",
1767                                 tx_name);
1768                         rc = EINVAL;
1769                         goto fail_dp_tx_caps;
1770                 }
1771         } else {
1772                 sa->dp_tx = sfc_dp_find_tx_by_caps(&sfc_dp_head, avail_caps);
1773                 if (sa->dp_tx == NULL) {
1774                         sfc_err(sa, "Tx datapath by caps %#x not found",
1775                                 avail_caps);
1776                         rc = ENOENT;
1777                         goto fail_dp_tx;
1778                 }
1779         }
1780
1781         sa->dp_tx_name = sfc_strdup(sa->dp_tx->dp.name);
1782         if (sa->dp_tx_name == NULL) {
1783                 rc = ENOMEM;
1784                 goto fail_dp_tx_name;
1785         }
1786
1787         sfc_info(sa, "use %s Tx datapath", sa->dp_tx_name);
1788
1789         dev->tx_pkt_burst = sa->dp_tx->pkt_burst;
1790
1791         dev->dev_ops = &sfc_eth_dev_ops;
1792
1793         return 0;
1794
1795 fail_dp_tx_name:
1796 fail_dp_tx_caps:
1797         sa->dp_tx = NULL;
1798
1799 fail_dp_tx:
1800 fail_kvarg_tx_datapath:
1801         rte_free(sa->dp_rx_name);
1802         sa->dp_rx_name = NULL;
1803
1804 fail_dp_rx_name:
1805 fail_dp_rx_caps:
1806         sa->dp_rx = NULL;
1807
1808 fail_dp_rx:
1809 fail_kvarg_rx_datapath:
1810         return rc;
1811 }
1812
1813 static void
1814 sfc_eth_dev_clear_ops(struct rte_eth_dev *dev)
1815 {
1816         struct sfc_adapter *sa = dev->data->dev_private;
1817
1818         dev->dev_ops = NULL;
1819         dev->rx_pkt_burst = NULL;
1820         dev->tx_pkt_burst = NULL;
1821
1822         rte_free(sa->dp_tx_name);
1823         sa->dp_tx_name = NULL;
1824         sa->dp_tx = NULL;
1825
1826         rte_free(sa->dp_rx_name);
1827         sa->dp_rx_name = NULL;
1828         sa->dp_rx = NULL;
1829 }
1830
1831 static const struct eth_dev_ops sfc_eth_dev_secondary_ops = {
1832         .rxq_info_get                   = sfc_rx_queue_info_get,
1833         .txq_info_get                   = sfc_tx_queue_info_get,
1834 };
1835
1836 static int
1837 sfc_eth_dev_secondary_set_ops(struct rte_eth_dev *dev)
1838 {
1839         /*
1840          * Device private data has really many process-local pointers.
1841          * Below code should be extremely careful to use data located
1842          * in shared memory only.
1843          */
1844         struct sfc_adapter *sa = dev->data->dev_private;
1845         const struct sfc_dp_rx *dp_rx;
1846         const struct sfc_dp_tx *dp_tx;
1847         int rc;
1848
1849         dp_rx = sfc_dp_find_rx_by_name(&sfc_dp_head, sa->dp_rx_name);
1850         if (dp_rx == NULL) {
1851                 sfc_err(sa, "cannot find %s Rx datapath", sa->dp_tx_name);
1852                 rc = ENOENT;
1853                 goto fail_dp_rx;
1854         }
1855         if (~dp_rx->features & SFC_DP_RX_FEAT_MULTI_PROCESS) {
1856                 sfc_err(sa, "%s Rx datapath does not support multi-process",
1857                         sa->dp_tx_name);
1858                 rc = EINVAL;
1859                 goto fail_dp_rx_multi_process;
1860         }
1861
1862         dp_tx = sfc_dp_find_tx_by_name(&sfc_dp_head, sa->dp_tx_name);
1863         if (dp_tx == NULL) {
1864                 sfc_err(sa, "cannot find %s Tx datapath", sa->dp_tx_name);
1865                 rc = ENOENT;
1866                 goto fail_dp_tx;
1867         }
1868         if (~dp_tx->features & SFC_DP_TX_FEAT_MULTI_PROCESS) {
1869                 sfc_err(sa, "%s Tx datapath does not support multi-process",
1870                         sa->dp_tx_name);
1871                 rc = EINVAL;
1872                 goto fail_dp_tx_multi_process;
1873         }
1874
1875         dev->rx_pkt_burst = dp_rx->pkt_burst;
1876         dev->tx_pkt_burst = dp_tx->pkt_burst;
1877         dev->dev_ops = &sfc_eth_dev_secondary_ops;
1878
1879         return 0;
1880
1881 fail_dp_tx_multi_process:
1882 fail_dp_tx:
1883 fail_dp_rx_multi_process:
1884 fail_dp_rx:
1885         return rc;
1886 }
1887
1888 static void
1889 sfc_eth_dev_secondary_clear_ops(struct rte_eth_dev *dev)
1890 {
1891         dev->dev_ops = NULL;
1892         dev->tx_pkt_burst = NULL;
1893         dev->rx_pkt_burst = NULL;
1894 }
1895
1896 static void
1897 sfc_register_dp(void)
1898 {
1899         /* Register once */
1900         if (TAILQ_EMPTY(&sfc_dp_head)) {
1901                 /* Prefer EF10 datapath */
1902                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_rx.dp);
1903                 sfc_dp_register(&sfc_dp_head, &sfc_efx_rx.dp);
1904
1905                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_tx.dp);
1906                 sfc_dp_register(&sfc_dp_head, &sfc_efx_tx.dp);
1907                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_simple_tx.dp);
1908         }
1909 }
1910
1911 static int
1912 sfc_eth_dev_init(struct rte_eth_dev *dev)
1913 {
1914         struct sfc_adapter *sa = dev->data->dev_private;
1915         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1916         int rc;
1917         const efx_nic_cfg_t *encp;
1918         const struct ether_addr *from;
1919
1920         sfc_register_dp();
1921
1922         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1923                 return -sfc_eth_dev_secondary_set_ops(dev);
1924
1925         /* Required for logging */
1926         sa->pci_addr = pci_dev->addr;
1927         sa->port_id = dev->data->port_id;
1928
1929         sa->eth_dev = dev;
1930
1931         /* Copy PCI device info to the dev->data */
1932         rte_eth_copy_pci_info(dev, pci_dev);
1933
1934         rc = sfc_kvargs_parse(sa);
1935         if (rc != 0)
1936                 goto fail_kvargs_parse;
1937
1938         rc = sfc_kvargs_process(sa, SFC_KVARG_DEBUG_INIT,
1939                                 sfc_kvarg_bool_handler, &sa->debug_init);
1940         if (rc != 0)
1941                 goto fail_kvarg_debug_init;
1942
1943         sfc_log_init(sa, "entry");
1944
1945         dev->data->mac_addrs = rte_zmalloc("sfc", ETHER_ADDR_LEN, 0);
1946         if (dev->data->mac_addrs == NULL) {
1947                 rc = ENOMEM;
1948                 goto fail_mac_addrs;
1949         }
1950
1951         sfc_adapter_lock_init(sa);
1952         sfc_adapter_lock(sa);
1953
1954         sfc_log_init(sa, "probing");
1955         rc = sfc_probe(sa);
1956         if (rc != 0)
1957                 goto fail_probe;
1958
1959         sfc_log_init(sa, "set device ops");
1960         rc = sfc_eth_dev_set_ops(dev);
1961         if (rc != 0)
1962                 goto fail_set_ops;
1963
1964         sfc_log_init(sa, "attaching");
1965         rc = sfc_attach(sa);
1966         if (rc != 0)
1967                 goto fail_attach;
1968
1969         encp = efx_nic_cfg_get(sa->nic);
1970
1971         /*
1972          * The arguments are really reverse order in comparison to
1973          * Linux kernel. Copy from NIC config to Ethernet device data.
1974          */
1975         from = (const struct ether_addr *)(encp->enc_mac_addr);
1976         ether_addr_copy(from, &dev->data->mac_addrs[0]);
1977
1978         sfc_adapter_unlock(sa);
1979
1980         sfc_log_init(sa, "done");
1981         return 0;
1982
1983 fail_attach:
1984         sfc_eth_dev_clear_ops(dev);
1985
1986 fail_set_ops:
1987         sfc_unprobe(sa);
1988
1989 fail_probe:
1990         sfc_adapter_unlock(sa);
1991         sfc_adapter_lock_fini(sa);
1992         rte_free(dev->data->mac_addrs);
1993         dev->data->mac_addrs = NULL;
1994
1995 fail_mac_addrs:
1996 fail_kvarg_debug_init:
1997         sfc_kvargs_cleanup(sa);
1998
1999 fail_kvargs_parse:
2000         sfc_log_init(sa, "failed %d", rc);
2001         SFC_ASSERT(rc > 0);
2002         return -rc;
2003 }
2004
2005 static int
2006 sfc_eth_dev_uninit(struct rte_eth_dev *dev)
2007 {
2008         struct sfc_adapter *sa;
2009
2010         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2011                 sfc_eth_dev_secondary_clear_ops(dev);
2012                 return 0;
2013         }
2014
2015         sa = dev->data->dev_private;
2016         sfc_log_init(sa, "entry");
2017
2018         sfc_adapter_lock(sa);
2019
2020         sfc_eth_dev_clear_ops(dev);
2021
2022         sfc_detach(sa);
2023         sfc_unprobe(sa);
2024
2025         rte_free(dev->data->mac_addrs);
2026         dev->data->mac_addrs = NULL;
2027
2028         sfc_kvargs_cleanup(sa);
2029
2030         sfc_adapter_unlock(sa);
2031         sfc_adapter_lock_fini(sa);
2032
2033         sfc_log_init(sa, "done");
2034
2035         /* Required for logging, so cleanup last */
2036         sa->eth_dev = NULL;
2037         return 0;
2038 }
2039
2040 static const struct rte_pci_id pci_id_sfc_efx_map[] = {
2041         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_FARMINGDALE) },
2042         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_FARMINGDALE_VF) },
2043         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_GREENPORT) },
2044         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_GREENPORT_VF) },
2045         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD) },
2046         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD_VF) },
2047         { .vendor_id = 0 /* sentinel */ }
2048 };
2049
2050 static int sfc_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2051         struct rte_pci_device *pci_dev)
2052 {
2053         return rte_eth_dev_pci_generic_probe(pci_dev,
2054                 sizeof(struct sfc_adapter), sfc_eth_dev_init);
2055 }
2056
2057 static int sfc_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
2058 {
2059         return rte_eth_dev_pci_generic_remove(pci_dev, sfc_eth_dev_uninit);
2060 }
2061
2062 static struct rte_pci_driver sfc_efx_pmd = {
2063         .id_table = pci_id_sfc_efx_map,
2064         .drv_flags =
2065                 RTE_PCI_DRV_INTR_LSC |
2066                 RTE_PCI_DRV_NEED_MAPPING,
2067         .probe = sfc_eth_dev_pci_probe,
2068         .remove = sfc_eth_dev_pci_remove,
2069 };
2070
2071 RTE_PMD_REGISTER_PCI(net_sfc_efx, sfc_efx_pmd);
2072 RTE_PMD_REGISTER_PCI_TABLE(net_sfc_efx, pci_id_sfc_efx_map);
2073 RTE_PMD_REGISTER_KMOD_DEP(net_sfc_efx, "* igb_uio | uio_pci_generic | vfio-pci");
2074 RTE_PMD_REGISTER_PARAM_STRING(net_sfc_efx,
2075         SFC_KVARG_RX_DATAPATH "=" SFC_KVARG_VALUES_RX_DATAPATH " "
2076         SFC_KVARG_TX_DATAPATH "=" SFC_KVARG_VALUES_TX_DATAPATH " "
2077         SFC_KVARG_PERF_PROFILE "=" SFC_KVARG_VALUES_PERF_PROFILE " "
2078         SFC_KVARG_STATS_UPDATE_PERIOD_MS "=<long> "
2079         SFC_KVARG_MCDI_LOGGING "=" SFC_KVARG_VALUES_BOOL " "
2080         SFC_KVARG_DEBUG_INIT "=" SFC_KVARG_VALUES_BOOL);