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