net/sfc: move isolated flag in 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 (sfc_sa2shared(sa)->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 (sfc_sa2shared(sa)->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 (sfc_sa2shared(sa)->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         unsigned int efx_hash_types;
1455         int rc = 0;
1456
1457         if (sfc_sa2shared(sa)->isolated)
1458                 return -ENOTSUP;
1459
1460         if (rss->context_type != EFX_RX_SCALE_EXCLUSIVE) {
1461                 sfc_err(sa, "RSS is not available");
1462                 return -ENOTSUP;
1463         }
1464
1465         if (rss->channels == 0) {
1466                 sfc_err(sa, "RSS is not configured");
1467                 return -EINVAL;
1468         }
1469
1470         if ((rss_conf->rss_key != NULL) &&
1471             (rss_conf->rss_key_len != sizeof(rss->key))) {
1472                 sfc_err(sa, "RSS key size is wrong (should be %lu)",
1473                         sizeof(rss->key));
1474                 return -EINVAL;
1475         }
1476
1477         sfc_adapter_lock(sa);
1478
1479         rc = sfc_rx_hf_rte_to_efx(sa, rss_conf->rss_hf, &efx_hash_types);
1480         if (rc != 0)
1481                 goto fail_rx_hf_rte_to_efx;
1482
1483         rc = efx_rx_scale_mode_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
1484                                    rss->hash_alg, efx_hash_types, B_TRUE);
1485         if (rc != 0)
1486                 goto fail_scale_mode_set;
1487
1488         if (rss_conf->rss_key != NULL) {
1489                 if (sa->state == SFC_ADAPTER_STARTED) {
1490                         rc = efx_rx_scale_key_set(sa->nic,
1491                                                   EFX_RSS_CONTEXT_DEFAULT,
1492                                                   rss_conf->rss_key,
1493                                                   sizeof(rss->key));
1494                         if (rc != 0)
1495                                 goto fail_scale_key_set;
1496                 }
1497
1498                 rte_memcpy(rss->key, rss_conf->rss_key, sizeof(rss->key));
1499         }
1500
1501         rss->hash_types = efx_hash_types;
1502
1503         sfc_adapter_unlock(sa);
1504
1505         return 0;
1506
1507 fail_scale_key_set:
1508         if (efx_rx_scale_mode_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
1509                                   EFX_RX_HASHALG_TOEPLITZ,
1510                                   rss->hash_types, B_TRUE) != 0)
1511                 sfc_err(sa, "failed to restore RSS mode");
1512
1513 fail_scale_mode_set:
1514 fail_rx_hf_rte_to_efx:
1515         sfc_adapter_unlock(sa);
1516         return -rc;
1517 }
1518
1519 /*
1520  * The function is used by the secondary process as well. It must not
1521  * use any process-local pointers from the adapter data.
1522  */
1523 static int
1524 sfc_dev_rss_reta_query(struct rte_eth_dev *dev,
1525                        struct rte_eth_rss_reta_entry64 *reta_conf,
1526                        uint16_t reta_size)
1527 {
1528         struct sfc_adapter_shared *sas = sfc_adapter_shared_by_eth_dev(dev);
1529         struct sfc_adapter *sa = dev->data->dev_private;
1530         struct sfc_rss *rss = &sas->rss;
1531         int entry;
1532
1533         if (rss->context_type != EFX_RX_SCALE_EXCLUSIVE || sas->isolated)
1534                 return -ENOTSUP;
1535
1536         if (rss->channels == 0)
1537                 return -EINVAL;
1538
1539         if (reta_size != EFX_RSS_TBL_SIZE)
1540                 return -EINVAL;
1541
1542         sfc_adapter_lock(sa);
1543
1544         for (entry = 0; entry < reta_size; entry++) {
1545                 int grp = entry / RTE_RETA_GROUP_SIZE;
1546                 int grp_idx = entry % RTE_RETA_GROUP_SIZE;
1547
1548                 if ((reta_conf[grp].mask >> grp_idx) & 1)
1549                         reta_conf[grp].reta[grp_idx] = rss->tbl[entry];
1550         }
1551
1552         sfc_adapter_unlock(sa);
1553
1554         return 0;
1555 }
1556
1557 static int
1558 sfc_dev_rss_reta_update(struct rte_eth_dev *dev,
1559                         struct rte_eth_rss_reta_entry64 *reta_conf,
1560                         uint16_t reta_size)
1561 {
1562         struct sfc_adapter *sa = dev->data->dev_private;
1563         struct sfc_rss *rss = &sfc_sa2shared(sa)->rss;
1564         unsigned int *rss_tbl_new;
1565         uint16_t entry;
1566         int rc = 0;
1567
1568
1569         if (sfc_sa2shared(sa)->isolated)
1570                 return -ENOTSUP;
1571
1572         if (rss->context_type != EFX_RX_SCALE_EXCLUSIVE) {
1573                 sfc_err(sa, "RSS is not available");
1574                 return -ENOTSUP;
1575         }
1576
1577         if (rss->channels == 0) {
1578                 sfc_err(sa, "RSS is not configured");
1579                 return -EINVAL;
1580         }
1581
1582         if (reta_size != EFX_RSS_TBL_SIZE) {
1583                 sfc_err(sa, "RETA size is wrong (should be %u)",
1584                         EFX_RSS_TBL_SIZE);
1585                 return -EINVAL;
1586         }
1587
1588         rss_tbl_new = rte_zmalloc("rss_tbl_new", sizeof(rss->tbl), 0);
1589         if (rss_tbl_new == NULL)
1590                 return -ENOMEM;
1591
1592         sfc_adapter_lock(sa);
1593
1594         rte_memcpy(rss_tbl_new, rss->tbl, sizeof(rss->tbl));
1595
1596         for (entry = 0; entry < reta_size; entry++) {
1597                 int grp_idx = entry % RTE_RETA_GROUP_SIZE;
1598                 struct rte_eth_rss_reta_entry64 *grp;
1599
1600                 grp = &reta_conf[entry / RTE_RETA_GROUP_SIZE];
1601
1602                 if (grp->mask & (1ull << grp_idx)) {
1603                         if (grp->reta[grp_idx] >= rss->channels) {
1604                                 rc = EINVAL;
1605                                 goto bad_reta_entry;
1606                         }
1607                         rss_tbl_new[entry] = grp->reta[grp_idx];
1608                 }
1609         }
1610
1611         if (sa->state == SFC_ADAPTER_STARTED) {
1612                 rc = efx_rx_scale_tbl_set(sa->nic, EFX_RSS_CONTEXT_DEFAULT,
1613                                           rss_tbl_new, EFX_RSS_TBL_SIZE);
1614                 if (rc != 0)
1615                         goto fail_scale_tbl_set;
1616         }
1617
1618         rte_memcpy(rss->tbl, rss_tbl_new, sizeof(rss->tbl));
1619
1620 fail_scale_tbl_set:
1621 bad_reta_entry:
1622         sfc_adapter_unlock(sa);
1623
1624         rte_free(rss_tbl_new);
1625
1626         SFC_ASSERT(rc >= 0);
1627         return -rc;
1628 }
1629
1630 static int
1631 sfc_dev_filter_ctrl(struct rte_eth_dev *dev, enum rte_filter_type filter_type,
1632                     enum rte_filter_op filter_op,
1633                     void *arg)
1634 {
1635         struct sfc_adapter *sa = dev->data->dev_private;
1636         int rc = ENOTSUP;
1637
1638         sfc_log_init(sa, "entry");
1639
1640         switch (filter_type) {
1641         case RTE_ETH_FILTER_NONE:
1642                 sfc_err(sa, "Global filters configuration not supported");
1643                 break;
1644         case RTE_ETH_FILTER_MACVLAN:
1645                 sfc_err(sa, "MACVLAN filters not supported");
1646                 break;
1647         case RTE_ETH_FILTER_ETHERTYPE:
1648                 sfc_err(sa, "EtherType filters not supported");
1649                 break;
1650         case RTE_ETH_FILTER_FLEXIBLE:
1651                 sfc_err(sa, "Flexible filters not supported");
1652                 break;
1653         case RTE_ETH_FILTER_SYN:
1654                 sfc_err(sa, "SYN filters not supported");
1655                 break;
1656         case RTE_ETH_FILTER_NTUPLE:
1657                 sfc_err(sa, "NTUPLE filters not supported");
1658                 break;
1659         case RTE_ETH_FILTER_TUNNEL:
1660                 sfc_err(sa, "Tunnel filters not supported");
1661                 break;
1662         case RTE_ETH_FILTER_FDIR:
1663                 sfc_err(sa, "Flow Director filters not supported");
1664                 break;
1665         case RTE_ETH_FILTER_HASH:
1666                 sfc_err(sa, "Hash filters not supported");
1667                 break;
1668         case RTE_ETH_FILTER_GENERIC:
1669                 if (filter_op != RTE_ETH_FILTER_GET) {
1670                         rc = EINVAL;
1671                 } else {
1672                         *(const void **)arg = &sfc_flow_ops;
1673                         rc = 0;
1674                 }
1675                 break;
1676         default:
1677                 sfc_err(sa, "Unknown filter type %u", filter_type);
1678                 break;
1679         }
1680
1681         sfc_log_init(sa, "exit: %d", -rc);
1682         SFC_ASSERT(rc >= 0);
1683         return -rc;
1684 }
1685
1686 static int
1687 sfc_pool_ops_supported(struct rte_eth_dev *dev, const char *pool)
1688 {
1689         const struct sfc_adapter_priv *sap = sfc_adapter_priv_by_eth_dev(dev);
1690
1691         /*
1692          * If Rx datapath does not provide callback to check mempool,
1693          * all pools are supported.
1694          */
1695         if (sap->dp_rx->pool_ops_supported == NULL)
1696                 return 1;
1697
1698         return sap->dp_rx->pool_ops_supported(pool);
1699 }
1700
1701 static const struct eth_dev_ops sfc_eth_dev_ops = {
1702         .dev_configure                  = sfc_dev_configure,
1703         .dev_start                      = sfc_dev_start,
1704         .dev_stop                       = sfc_dev_stop,
1705         .dev_set_link_up                = sfc_dev_set_link_up,
1706         .dev_set_link_down              = sfc_dev_set_link_down,
1707         .dev_close                      = sfc_dev_close,
1708         .promiscuous_enable             = sfc_dev_promisc_enable,
1709         .promiscuous_disable            = sfc_dev_promisc_disable,
1710         .allmulticast_enable            = sfc_dev_allmulti_enable,
1711         .allmulticast_disable           = sfc_dev_allmulti_disable,
1712         .link_update                    = sfc_dev_link_update,
1713         .stats_get                      = sfc_stats_get,
1714         .stats_reset                    = sfc_stats_reset,
1715         .xstats_get                     = sfc_xstats_get,
1716         .xstats_reset                   = sfc_stats_reset,
1717         .xstats_get_names               = sfc_xstats_get_names,
1718         .dev_infos_get                  = sfc_dev_infos_get,
1719         .dev_supported_ptypes_get       = sfc_dev_supported_ptypes_get,
1720         .mtu_set                        = sfc_dev_set_mtu,
1721         .rx_queue_start                 = sfc_rx_queue_start,
1722         .rx_queue_stop                  = sfc_rx_queue_stop,
1723         .tx_queue_start                 = sfc_tx_queue_start,
1724         .tx_queue_stop                  = sfc_tx_queue_stop,
1725         .rx_queue_setup                 = sfc_rx_queue_setup,
1726         .rx_queue_release               = sfc_rx_queue_release,
1727         .rx_queue_count                 = sfc_rx_queue_count,
1728         .rx_descriptor_done             = sfc_rx_descriptor_done,
1729         .rx_descriptor_status           = sfc_rx_descriptor_status,
1730         .tx_descriptor_status           = sfc_tx_descriptor_status,
1731         .tx_queue_setup                 = sfc_tx_queue_setup,
1732         .tx_queue_release               = sfc_tx_queue_release,
1733         .flow_ctrl_get                  = sfc_flow_ctrl_get,
1734         .flow_ctrl_set                  = sfc_flow_ctrl_set,
1735         .mac_addr_set                   = sfc_mac_addr_set,
1736         .udp_tunnel_port_add            = sfc_dev_udp_tunnel_port_add,
1737         .udp_tunnel_port_del            = sfc_dev_udp_tunnel_port_del,
1738         .reta_update                    = sfc_dev_rss_reta_update,
1739         .reta_query                     = sfc_dev_rss_reta_query,
1740         .rss_hash_update                = sfc_dev_rss_hash_update,
1741         .rss_hash_conf_get              = sfc_dev_rss_hash_conf_get,
1742         .filter_ctrl                    = sfc_dev_filter_ctrl,
1743         .set_mc_addr_list               = sfc_set_mc_addr_list,
1744         .rxq_info_get                   = sfc_rx_queue_info_get,
1745         .txq_info_get                   = sfc_tx_queue_info_get,
1746         .fw_version_get                 = sfc_fw_version_get,
1747         .xstats_get_by_id               = sfc_xstats_get_by_id,
1748         .xstats_get_names_by_id         = sfc_xstats_get_names_by_id,
1749         .pool_ops_supported             = sfc_pool_ops_supported,
1750 };
1751
1752 /**
1753  * Duplicate a string in potentially shared memory required for
1754  * multi-process support.
1755  *
1756  * strdup() allocates from process-local heap/memory.
1757  */
1758 static char *
1759 sfc_strdup(const char *str)
1760 {
1761         size_t size;
1762         char *copy;
1763
1764         if (str == NULL)
1765                 return NULL;
1766
1767         size = strlen(str) + 1;
1768         copy = rte_malloc(__func__, size, 0);
1769         if (copy != NULL)
1770                 rte_memcpy(copy, str, size);
1771
1772         return copy;
1773 }
1774
1775 static int
1776 sfc_eth_dev_set_ops(struct rte_eth_dev *dev)
1777 {
1778         struct sfc_adapter *sa = dev->data->dev_private;
1779         struct sfc_adapter_shared *sas = sfc_adapter_shared_by_eth_dev(dev);
1780         const struct sfc_dp_rx *dp_rx;
1781         const struct sfc_dp_tx *dp_tx;
1782         const efx_nic_cfg_t *encp;
1783         unsigned int avail_caps = 0;
1784         const char *rx_name = NULL;
1785         const char *tx_name = NULL;
1786         int rc;
1787
1788         switch (sa->family) {
1789         case EFX_FAMILY_HUNTINGTON:
1790         case EFX_FAMILY_MEDFORD:
1791         case EFX_FAMILY_MEDFORD2:
1792                 avail_caps |= SFC_DP_HW_FW_CAP_EF10;
1793                 break;
1794         default:
1795                 break;
1796         }
1797
1798         encp = efx_nic_cfg_get(sa->nic);
1799         if (encp->enc_rx_es_super_buffer_supported)
1800                 avail_caps |= SFC_DP_HW_FW_CAP_RX_ES_SUPER_BUFFER;
1801
1802         rc = sfc_kvargs_process(sa, SFC_KVARG_RX_DATAPATH,
1803                                 sfc_kvarg_string_handler, &rx_name);
1804         if (rc != 0)
1805                 goto fail_kvarg_rx_datapath;
1806
1807         if (rx_name != NULL) {
1808                 dp_rx = sfc_dp_find_rx_by_name(&sfc_dp_head, rx_name);
1809                 if (dp_rx == NULL) {
1810                         sfc_err(sa, "Rx datapath %s not found", rx_name);
1811                         rc = ENOENT;
1812                         goto fail_dp_rx;
1813                 }
1814                 if (!sfc_dp_match_hw_fw_caps(&dp_rx->dp, avail_caps)) {
1815                         sfc_err(sa,
1816                                 "Insufficient Hw/FW capabilities to use Rx datapath %s",
1817                                 rx_name);
1818                         rc = EINVAL;
1819                         goto fail_dp_rx_caps;
1820                 }
1821         } else {
1822                 dp_rx = sfc_dp_find_rx_by_caps(&sfc_dp_head, avail_caps);
1823                 if (dp_rx == NULL) {
1824                         sfc_err(sa, "Rx datapath by caps %#x not found",
1825                                 avail_caps);
1826                         rc = ENOENT;
1827                         goto fail_dp_rx;
1828                 }
1829         }
1830
1831         sas->dp_rx_name = sfc_strdup(dp_rx->dp.name);
1832         if (sas->dp_rx_name == NULL) {
1833                 rc = ENOMEM;
1834                 goto fail_dp_rx_name;
1835         }
1836
1837         sfc_notice(sa, "use %s Rx datapath", sas->dp_rx_name);
1838
1839         rc = sfc_kvargs_process(sa, SFC_KVARG_TX_DATAPATH,
1840                                 sfc_kvarg_string_handler, &tx_name);
1841         if (rc != 0)
1842                 goto fail_kvarg_tx_datapath;
1843
1844         if (tx_name != NULL) {
1845                 dp_tx = sfc_dp_find_tx_by_name(&sfc_dp_head, tx_name);
1846                 if (dp_tx == NULL) {
1847                         sfc_err(sa, "Tx datapath %s not found", tx_name);
1848                         rc = ENOENT;
1849                         goto fail_dp_tx;
1850                 }
1851                 if (!sfc_dp_match_hw_fw_caps(&dp_tx->dp, avail_caps)) {
1852                         sfc_err(sa,
1853                                 "Insufficient Hw/FW capabilities to use Tx datapath %s",
1854                                 tx_name);
1855                         rc = EINVAL;
1856                         goto fail_dp_tx_caps;
1857                 }
1858         } else {
1859                 dp_tx = sfc_dp_find_tx_by_caps(&sfc_dp_head, avail_caps);
1860                 if (dp_tx == NULL) {
1861                         sfc_err(sa, "Tx datapath by caps %#x not found",
1862                                 avail_caps);
1863                         rc = ENOENT;
1864                         goto fail_dp_tx;
1865                 }
1866         }
1867
1868         sas->dp_tx_name = sfc_strdup(dp_tx->dp.name);
1869         if (sas->dp_tx_name == NULL) {
1870                 rc = ENOMEM;
1871                 goto fail_dp_tx_name;
1872         }
1873
1874         sfc_notice(sa, "use %s Tx datapath", sas->dp_tx_name);
1875
1876         sa->priv.dp_rx = dp_rx;
1877         sa->priv.dp_tx = dp_tx;
1878
1879         dev->rx_pkt_burst = dp_rx->pkt_burst;
1880         dev->tx_pkt_burst = dp_tx->pkt_burst;
1881
1882         dev->dev_ops = &sfc_eth_dev_ops;
1883
1884         return 0;
1885
1886 fail_dp_tx_name:
1887 fail_dp_tx_caps:
1888 fail_dp_tx:
1889 fail_kvarg_tx_datapath:
1890         rte_free(sas->dp_rx_name);
1891         sas->dp_rx_name = NULL;
1892
1893 fail_dp_rx_name:
1894 fail_dp_rx_caps:
1895 fail_dp_rx:
1896 fail_kvarg_rx_datapath:
1897         return rc;
1898 }
1899
1900 static void
1901 sfc_eth_dev_clear_ops(struct rte_eth_dev *dev)
1902 {
1903         struct sfc_adapter *sa = dev->data->dev_private;
1904         struct sfc_adapter_shared *sas = sfc_adapter_shared_by_eth_dev(dev);
1905
1906         dev->dev_ops = NULL;
1907         dev->rx_pkt_burst = NULL;
1908         dev->tx_pkt_burst = NULL;
1909
1910         rte_free(sas->dp_tx_name);
1911         sas->dp_tx_name = NULL;
1912         sa->priv.dp_tx = NULL;
1913
1914         rte_free(sas->dp_rx_name);
1915         sas->dp_rx_name = NULL;
1916         sa->priv.dp_rx = NULL;
1917 }
1918
1919 static const struct eth_dev_ops sfc_eth_dev_secondary_ops = {
1920         .rx_queue_count                 = sfc_rx_queue_count,
1921         .rx_descriptor_done             = sfc_rx_descriptor_done,
1922         .rx_descriptor_status           = sfc_rx_descriptor_status,
1923         .tx_descriptor_status           = sfc_tx_descriptor_status,
1924         .reta_query                     = sfc_dev_rss_reta_query,
1925         .rss_hash_conf_get              = sfc_dev_rss_hash_conf_get,
1926         .rxq_info_get                   = sfc_rx_queue_info_get,
1927         .txq_info_get                   = sfc_tx_queue_info_get,
1928 };
1929
1930 static int
1931 sfc_eth_dev_secondary_init(struct rte_eth_dev *dev, uint32_t logtype_main)
1932 {
1933         struct sfc_adapter_shared *sas = sfc_adapter_shared_by_eth_dev(dev);
1934         struct sfc_adapter_priv *sap;
1935         const struct sfc_dp_rx *dp_rx;
1936         const struct sfc_dp_tx *dp_tx;
1937         int rc;
1938
1939         /*
1940          * Allocate process private data from heap, since it should not
1941          * be located in shared memory allocated using rte_malloc() API.
1942          */
1943         sap = calloc(1, sizeof(*sap));
1944         if (sap == NULL) {
1945                 rc = ENOMEM;
1946                 goto fail_alloc_priv;
1947         }
1948
1949         sap->logtype_main = logtype_main;
1950
1951         dp_rx = sfc_dp_find_rx_by_name(&sfc_dp_head, sas->dp_rx_name);
1952         if (dp_rx == NULL) {
1953                 SFC_LOG(sas, RTE_LOG_ERR, logtype_main,
1954                         "cannot find %s Rx datapath", sas->dp_rx_name);
1955                 rc = ENOENT;
1956                 goto fail_dp_rx;
1957         }
1958         if (~dp_rx->features & SFC_DP_RX_FEAT_MULTI_PROCESS) {
1959                 SFC_LOG(sas, RTE_LOG_ERR, logtype_main,
1960                         "%s Rx datapath does not support multi-process",
1961                         sas->dp_rx_name);
1962                 rc = EINVAL;
1963                 goto fail_dp_rx_multi_process;
1964         }
1965
1966         dp_tx = sfc_dp_find_tx_by_name(&sfc_dp_head, sas->dp_tx_name);
1967         if (dp_tx == NULL) {
1968                 SFC_LOG(sas, RTE_LOG_ERR, logtype_main,
1969                         "cannot find %s Tx datapath", sas->dp_tx_name);
1970                 rc = ENOENT;
1971                 goto fail_dp_tx;
1972         }
1973         if (~dp_tx->features & SFC_DP_TX_FEAT_MULTI_PROCESS) {
1974                 SFC_LOG(sas, RTE_LOG_ERR, logtype_main,
1975                         "%s Tx datapath does not support multi-process",
1976                         sas->dp_tx_name);
1977                 rc = EINVAL;
1978                 goto fail_dp_tx_multi_process;
1979         }
1980
1981         sap->dp_rx = dp_rx;
1982         sap->dp_tx = dp_tx;
1983
1984         dev->process_private = sap;
1985         dev->rx_pkt_burst = dp_rx->pkt_burst;
1986         dev->tx_pkt_burst = dp_tx->pkt_burst;
1987         dev->dev_ops = &sfc_eth_dev_secondary_ops;
1988
1989         return 0;
1990
1991 fail_dp_tx_multi_process:
1992 fail_dp_tx:
1993 fail_dp_rx_multi_process:
1994 fail_dp_rx:
1995         free(sap);
1996
1997 fail_alloc_priv:
1998         return rc;
1999 }
2000
2001 static void
2002 sfc_eth_dev_secondary_clear_ops(struct rte_eth_dev *dev)
2003 {
2004         free(dev->process_private);
2005         dev->process_private = NULL;
2006         dev->dev_ops = NULL;
2007         dev->tx_pkt_burst = NULL;
2008         dev->rx_pkt_burst = NULL;
2009 }
2010
2011 static void
2012 sfc_register_dp(void)
2013 {
2014         /* Register once */
2015         if (TAILQ_EMPTY(&sfc_dp_head)) {
2016                 /* Prefer EF10 datapath */
2017                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_essb_rx.dp);
2018                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_rx.dp);
2019                 sfc_dp_register(&sfc_dp_head, &sfc_efx_rx.dp);
2020
2021                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_tx.dp);
2022                 sfc_dp_register(&sfc_dp_head, &sfc_efx_tx.dp);
2023                 sfc_dp_register(&sfc_dp_head, &sfc_ef10_simple_tx.dp);
2024         }
2025 }
2026
2027 static int
2028 sfc_eth_dev_init(struct rte_eth_dev *dev)
2029 {
2030         struct sfc_adapter *sa = dev->data->dev_private;
2031         struct sfc_adapter_shared *sas;
2032         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2033         uint32_t logtype_main;
2034         int rc;
2035         const efx_nic_cfg_t *encp;
2036         const struct ether_addr *from;
2037
2038         sfc_register_dp();
2039
2040         logtype_main = sfc_register_logtype(&pci_dev->addr,
2041                                             SFC_LOGTYPE_MAIN_STR,
2042                                             RTE_LOG_NOTICE);
2043
2044         sa->priv.shared = &sa->_shared;
2045         sas = sa->priv.shared;
2046
2047         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2048                 return -sfc_eth_dev_secondary_init(dev, logtype_main);
2049
2050         /*
2051          * sfc_adapter is a mixture of shared and process private data.
2052          * During transition period use it in both kinds. When the
2053          * driver becomes ready to separate it, sfc_adapter will become
2054          * primary process private only.
2055          */
2056         dev->process_private = sa;
2057
2058         /* Required for logging */
2059         sas->pci_addr = pci_dev->addr;
2060         sas->port_id = dev->data->port_id;
2061         sa->priv.logtype_main = logtype_main;
2062
2063         sa->eth_dev = dev;
2064
2065         /* Copy PCI device info to the dev->data */
2066         rte_eth_copy_pci_info(dev, pci_dev);
2067
2068         rc = sfc_kvargs_parse(sa);
2069         if (rc != 0)
2070                 goto fail_kvargs_parse;
2071
2072         sfc_log_init(sa, "entry");
2073
2074         dev->data->mac_addrs = rte_zmalloc("sfc", ETHER_ADDR_LEN, 0);
2075         if (dev->data->mac_addrs == NULL) {
2076                 rc = ENOMEM;
2077                 goto fail_mac_addrs;
2078         }
2079
2080         sfc_adapter_lock_init(sa);
2081         sfc_adapter_lock(sa);
2082
2083         sfc_log_init(sa, "probing");
2084         rc = sfc_probe(sa);
2085         if (rc != 0)
2086                 goto fail_probe;
2087
2088         sfc_log_init(sa, "set device ops");
2089         rc = sfc_eth_dev_set_ops(dev);
2090         if (rc != 0)
2091                 goto fail_set_ops;
2092
2093         sfc_log_init(sa, "attaching");
2094         rc = sfc_attach(sa);
2095         if (rc != 0)
2096                 goto fail_attach;
2097
2098         encp = efx_nic_cfg_get(sa->nic);
2099
2100         /*
2101          * The arguments are really reverse order in comparison to
2102          * Linux kernel. Copy from NIC config to Ethernet device data.
2103          */
2104         from = (const struct ether_addr *)(encp->enc_mac_addr);
2105         ether_addr_copy(from, &dev->data->mac_addrs[0]);
2106
2107         sfc_adapter_unlock(sa);
2108
2109         sfc_log_init(sa, "done");
2110         return 0;
2111
2112 fail_attach:
2113         sfc_eth_dev_clear_ops(dev);
2114
2115 fail_set_ops:
2116         sfc_unprobe(sa);
2117
2118 fail_probe:
2119         sfc_adapter_unlock(sa);
2120         sfc_adapter_lock_fini(sa);
2121         rte_free(dev->data->mac_addrs);
2122         dev->data->mac_addrs = NULL;
2123
2124 fail_mac_addrs:
2125         sfc_kvargs_cleanup(sa);
2126
2127 fail_kvargs_parse:
2128         sfc_log_init(sa, "failed %d", rc);
2129         dev->process_private = NULL;
2130         SFC_ASSERT(rc > 0);
2131         return -rc;
2132 }
2133
2134 static int
2135 sfc_eth_dev_uninit(struct rte_eth_dev *dev)
2136 {
2137         struct sfc_adapter *sa;
2138
2139         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2140                 sfc_eth_dev_secondary_clear_ops(dev);
2141                 return 0;
2142         }
2143
2144         sa = dev->data->dev_private;
2145         sfc_log_init(sa, "entry");
2146
2147         sfc_adapter_lock(sa);
2148
2149         sfc_eth_dev_clear_ops(dev);
2150
2151         sfc_detach(sa);
2152         sfc_unprobe(sa);
2153
2154         sfc_kvargs_cleanup(sa);
2155
2156         sfc_adapter_unlock(sa);
2157         sfc_adapter_lock_fini(sa);
2158
2159         sfc_log_init(sa, "done");
2160
2161         /* Required for logging, so cleanup last */
2162         sa->eth_dev = NULL;
2163         return 0;
2164 }
2165
2166 static const struct rte_pci_id pci_id_sfc_efx_map[] = {
2167         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_FARMINGDALE) },
2168         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_FARMINGDALE_VF) },
2169         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_GREENPORT) },
2170         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_GREENPORT_VF) },
2171         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD) },
2172         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD_VF) },
2173         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD2) },
2174         { RTE_PCI_DEVICE(EFX_PCI_VENID_SFC, EFX_PCI_DEVID_MEDFORD2_VF) },
2175         { .vendor_id = 0 /* sentinel */ }
2176 };
2177
2178 static int sfc_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2179         struct rte_pci_device *pci_dev)
2180 {
2181         return rte_eth_dev_pci_generic_probe(pci_dev,
2182                 sizeof(struct sfc_adapter), sfc_eth_dev_init);
2183 }
2184
2185 static int sfc_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
2186 {
2187         return rte_eth_dev_pci_generic_remove(pci_dev, sfc_eth_dev_uninit);
2188 }
2189
2190 static struct rte_pci_driver sfc_efx_pmd = {
2191         .id_table = pci_id_sfc_efx_map,
2192         .drv_flags =
2193                 RTE_PCI_DRV_INTR_LSC |
2194                 RTE_PCI_DRV_NEED_MAPPING,
2195         .probe = sfc_eth_dev_pci_probe,
2196         .remove = sfc_eth_dev_pci_remove,
2197 };
2198
2199 RTE_PMD_REGISTER_PCI(net_sfc_efx, sfc_efx_pmd);
2200 RTE_PMD_REGISTER_PCI_TABLE(net_sfc_efx, pci_id_sfc_efx_map);
2201 RTE_PMD_REGISTER_KMOD_DEP(net_sfc_efx, "* igb_uio | uio_pci_generic | vfio-pci");
2202 RTE_PMD_REGISTER_PARAM_STRING(net_sfc_efx,
2203         SFC_KVARG_RX_DATAPATH "=" SFC_KVARG_VALUES_RX_DATAPATH " "
2204         SFC_KVARG_TX_DATAPATH "=" SFC_KVARG_VALUES_TX_DATAPATH " "
2205         SFC_KVARG_PERF_PROFILE "=" SFC_KVARG_VALUES_PERF_PROFILE " "
2206         SFC_KVARG_FW_VARIANT "=" SFC_KVARG_VALUES_FW_VARIANT " "
2207         SFC_KVARG_RXD_WAIT_TIMEOUT_NS "=<long> "
2208         SFC_KVARG_STATS_UPDATE_PERIOD_MS "=<long>");
2209
2210 RTE_INIT(sfc_driver_register_logtype)
2211 {
2212         int ret;
2213
2214         ret = rte_log_register_type_and_pick_level(SFC_LOGTYPE_PREFIX "driver",
2215                                                    RTE_LOG_NOTICE);
2216         sfc_logtype_driver = (ret < 0) ? RTE_LOGTYPE_PMD : ret;
2217 }