ethdev: make default behavior CRC strip on Rx
[dpdk.git] / drivers / net / qede / qede_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2016 - 2018 Cavium Inc.
3  * All rights reserved.
4  * www.cavium.com
5  */
6
7 #include "qede_ethdev.h"
8 #include <rte_alarm.h>
9 #include <rte_version.h>
10 #include <rte_kvargs.h>
11
12 /* Globals */
13 int qede_logtype_init;
14 int qede_logtype_driver;
15
16 static const struct qed_eth_ops *qed_ops;
17 #define QEDE_SP_TIMER_PERIOD    10000 /* 100ms */
18
19 /* VXLAN tunnel classification mapping */
20 const struct _qede_udp_tunn_types {
21         uint16_t rte_filter_type;
22         enum ecore_filter_ucast_type qede_type;
23         enum ecore_tunn_clss qede_tunn_clss;
24         const char *string;
25 } qede_tunn_types[] = {
26         {
27                 ETH_TUNNEL_FILTER_OMAC,
28                 ECORE_FILTER_MAC,
29                 ECORE_TUNN_CLSS_MAC_VLAN,
30                 "outer-mac"
31         },
32         {
33                 ETH_TUNNEL_FILTER_TENID,
34                 ECORE_FILTER_VNI,
35                 ECORE_TUNN_CLSS_MAC_VNI,
36                 "vni"
37         },
38         {
39                 ETH_TUNNEL_FILTER_IMAC,
40                 ECORE_FILTER_INNER_MAC,
41                 ECORE_TUNN_CLSS_INNER_MAC_VLAN,
42                 "inner-mac"
43         },
44         {
45                 ETH_TUNNEL_FILTER_IVLAN,
46                 ECORE_FILTER_INNER_VLAN,
47                 ECORE_TUNN_CLSS_INNER_MAC_VLAN,
48                 "inner-vlan"
49         },
50         {
51                 ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_TENID,
52                 ECORE_FILTER_MAC_VNI_PAIR,
53                 ECORE_TUNN_CLSS_MAC_VNI,
54                 "outer-mac and vni"
55         },
56         {
57                 ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_IMAC,
58                 ECORE_FILTER_UNUSED,
59                 MAX_ECORE_TUNN_CLSS,
60                 "outer-mac and inner-mac"
61         },
62         {
63                 ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_IVLAN,
64                 ECORE_FILTER_UNUSED,
65                 MAX_ECORE_TUNN_CLSS,
66                 "outer-mac and inner-vlan"
67         },
68         {
69                 ETH_TUNNEL_FILTER_TENID | ETH_TUNNEL_FILTER_IMAC,
70                 ECORE_FILTER_INNER_MAC_VNI_PAIR,
71                 ECORE_TUNN_CLSS_INNER_MAC_VNI,
72                 "vni and inner-mac",
73         },
74         {
75                 ETH_TUNNEL_FILTER_TENID | ETH_TUNNEL_FILTER_IVLAN,
76                 ECORE_FILTER_UNUSED,
77                 MAX_ECORE_TUNN_CLSS,
78                 "vni and inner-vlan",
79         },
80         {
81                 ETH_TUNNEL_FILTER_IMAC | ETH_TUNNEL_FILTER_IVLAN,
82                 ECORE_FILTER_INNER_PAIR,
83                 ECORE_TUNN_CLSS_INNER_MAC_VLAN,
84                 "inner-mac and inner-vlan",
85         },
86         {
87                 ETH_TUNNEL_FILTER_OIP,
88                 ECORE_FILTER_UNUSED,
89                 MAX_ECORE_TUNN_CLSS,
90                 "outer-IP"
91         },
92         {
93                 ETH_TUNNEL_FILTER_IIP,
94                 ECORE_FILTER_UNUSED,
95                 MAX_ECORE_TUNN_CLSS,
96                 "inner-IP"
97         },
98         {
99                 RTE_TUNNEL_FILTER_IMAC_IVLAN,
100                 ECORE_FILTER_UNUSED,
101                 MAX_ECORE_TUNN_CLSS,
102                 "IMAC_IVLAN"
103         },
104         {
105                 RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID,
106                 ECORE_FILTER_UNUSED,
107                 MAX_ECORE_TUNN_CLSS,
108                 "IMAC_IVLAN_TENID"
109         },
110         {
111                 RTE_TUNNEL_FILTER_IMAC_TENID,
112                 ECORE_FILTER_UNUSED,
113                 MAX_ECORE_TUNN_CLSS,
114                 "IMAC_TENID"
115         },
116         {
117                 RTE_TUNNEL_FILTER_OMAC_TENID_IMAC,
118                 ECORE_FILTER_UNUSED,
119                 MAX_ECORE_TUNN_CLSS,
120                 "OMAC_TENID_IMAC"
121         },
122 };
123
124 struct rte_qede_xstats_name_off {
125         char name[RTE_ETH_XSTATS_NAME_SIZE];
126         uint64_t offset;
127 };
128
129 static const struct rte_qede_xstats_name_off qede_xstats_strings[] = {
130         {"rx_unicast_bytes",
131                 offsetof(struct ecore_eth_stats_common, rx_ucast_bytes)},
132         {"rx_multicast_bytes",
133                 offsetof(struct ecore_eth_stats_common, rx_mcast_bytes)},
134         {"rx_broadcast_bytes",
135                 offsetof(struct ecore_eth_stats_common, rx_bcast_bytes)},
136         {"rx_unicast_packets",
137                 offsetof(struct ecore_eth_stats_common, rx_ucast_pkts)},
138         {"rx_multicast_packets",
139                 offsetof(struct ecore_eth_stats_common, rx_mcast_pkts)},
140         {"rx_broadcast_packets",
141                 offsetof(struct ecore_eth_stats_common, rx_bcast_pkts)},
142
143         {"tx_unicast_bytes",
144                 offsetof(struct ecore_eth_stats_common, tx_ucast_bytes)},
145         {"tx_multicast_bytes",
146                 offsetof(struct ecore_eth_stats_common, tx_mcast_bytes)},
147         {"tx_broadcast_bytes",
148                 offsetof(struct ecore_eth_stats_common, tx_bcast_bytes)},
149         {"tx_unicast_packets",
150                 offsetof(struct ecore_eth_stats_common, tx_ucast_pkts)},
151         {"tx_multicast_packets",
152                 offsetof(struct ecore_eth_stats_common, tx_mcast_pkts)},
153         {"tx_broadcast_packets",
154                 offsetof(struct ecore_eth_stats_common, tx_bcast_pkts)},
155
156         {"rx_64_byte_packets",
157                 offsetof(struct ecore_eth_stats_common, rx_64_byte_packets)},
158         {"rx_65_to_127_byte_packets",
159                 offsetof(struct ecore_eth_stats_common,
160                          rx_65_to_127_byte_packets)},
161         {"rx_128_to_255_byte_packets",
162                 offsetof(struct ecore_eth_stats_common,
163                          rx_128_to_255_byte_packets)},
164         {"rx_256_to_511_byte_packets",
165                 offsetof(struct ecore_eth_stats_common,
166                          rx_256_to_511_byte_packets)},
167         {"rx_512_to_1023_byte_packets",
168                 offsetof(struct ecore_eth_stats_common,
169                          rx_512_to_1023_byte_packets)},
170         {"rx_1024_to_1518_byte_packets",
171                 offsetof(struct ecore_eth_stats_common,
172                          rx_1024_to_1518_byte_packets)},
173         {"tx_64_byte_packets",
174                 offsetof(struct ecore_eth_stats_common, tx_64_byte_packets)},
175         {"tx_65_to_127_byte_packets",
176                 offsetof(struct ecore_eth_stats_common,
177                          tx_65_to_127_byte_packets)},
178         {"tx_128_to_255_byte_packets",
179                 offsetof(struct ecore_eth_stats_common,
180                          tx_128_to_255_byte_packets)},
181         {"tx_256_to_511_byte_packets",
182                 offsetof(struct ecore_eth_stats_common,
183                          tx_256_to_511_byte_packets)},
184         {"tx_512_to_1023_byte_packets",
185                 offsetof(struct ecore_eth_stats_common,
186                          tx_512_to_1023_byte_packets)},
187         {"tx_1024_to_1518_byte_packets",
188                 offsetof(struct ecore_eth_stats_common,
189                          tx_1024_to_1518_byte_packets)},
190
191         {"rx_mac_crtl_frames",
192                 offsetof(struct ecore_eth_stats_common, rx_mac_crtl_frames)},
193         {"tx_mac_control_frames",
194                 offsetof(struct ecore_eth_stats_common, tx_mac_ctrl_frames)},
195         {"rx_pause_frames",
196                 offsetof(struct ecore_eth_stats_common, rx_pause_frames)},
197         {"tx_pause_frames",
198                 offsetof(struct ecore_eth_stats_common, tx_pause_frames)},
199         {"rx_priority_flow_control_frames",
200                 offsetof(struct ecore_eth_stats_common, rx_pfc_frames)},
201         {"tx_priority_flow_control_frames",
202                 offsetof(struct ecore_eth_stats_common, tx_pfc_frames)},
203
204         {"rx_crc_errors",
205                 offsetof(struct ecore_eth_stats_common, rx_crc_errors)},
206         {"rx_align_errors",
207                 offsetof(struct ecore_eth_stats_common, rx_align_errors)},
208         {"rx_carrier_errors",
209                 offsetof(struct ecore_eth_stats_common, rx_carrier_errors)},
210         {"rx_oversize_packet_errors",
211                 offsetof(struct ecore_eth_stats_common, rx_oversize_packets)},
212         {"rx_jabber_errors",
213                 offsetof(struct ecore_eth_stats_common, rx_jabbers)},
214         {"rx_undersize_packet_errors",
215                 offsetof(struct ecore_eth_stats_common, rx_undersize_packets)},
216         {"rx_fragments", offsetof(struct ecore_eth_stats_common, rx_fragments)},
217         {"rx_host_buffer_not_available",
218                 offsetof(struct ecore_eth_stats_common, no_buff_discards)},
219         /* Number of packets discarded because they are bigger than MTU */
220         {"rx_packet_too_big_discards",
221                 offsetof(struct ecore_eth_stats_common,
222                          packet_too_big_discard)},
223         {"rx_ttl_zero_discards",
224                 offsetof(struct ecore_eth_stats_common, ttl0_discard)},
225         {"rx_multi_function_tag_filter_discards",
226                 offsetof(struct ecore_eth_stats_common, mftag_filter_discards)},
227         {"rx_mac_filter_discards",
228                 offsetof(struct ecore_eth_stats_common, mac_filter_discards)},
229         {"rx_hw_buffer_truncates",
230                 offsetof(struct ecore_eth_stats_common, brb_truncates)},
231         {"rx_hw_buffer_discards",
232                 offsetof(struct ecore_eth_stats_common, brb_discards)},
233         {"tx_error_drop_packets",
234                 offsetof(struct ecore_eth_stats_common, tx_err_drop_pkts)},
235
236         {"rx_mac_bytes", offsetof(struct ecore_eth_stats_common, rx_mac_bytes)},
237         {"rx_mac_unicast_packets",
238                 offsetof(struct ecore_eth_stats_common, rx_mac_uc_packets)},
239         {"rx_mac_multicast_packets",
240                 offsetof(struct ecore_eth_stats_common, rx_mac_mc_packets)},
241         {"rx_mac_broadcast_packets",
242                 offsetof(struct ecore_eth_stats_common, rx_mac_bc_packets)},
243         {"rx_mac_frames_ok",
244                 offsetof(struct ecore_eth_stats_common, rx_mac_frames_ok)},
245         {"tx_mac_bytes", offsetof(struct ecore_eth_stats_common, tx_mac_bytes)},
246         {"tx_mac_unicast_packets",
247                 offsetof(struct ecore_eth_stats_common, tx_mac_uc_packets)},
248         {"tx_mac_multicast_packets",
249                 offsetof(struct ecore_eth_stats_common, tx_mac_mc_packets)},
250         {"tx_mac_broadcast_packets",
251                 offsetof(struct ecore_eth_stats_common, tx_mac_bc_packets)},
252
253         {"lro_coalesced_packets",
254                 offsetof(struct ecore_eth_stats_common, tpa_coalesced_pkts)},
255         {"lro_coalesced_events",
256                 offsetof(struct ecore_eth_stats_common, tpa_coalesced_events)},
257         {"lro_aborts_num",
258                 offsetof(struct ecore_eth_stats_common, tpa_aborts_num)},
259         {"lro_not_coalesced_packets",
260                 offsetof(struct ecore_eth_stats_common,
261                          tpa_not_coalesced_pkts)},
262         {"lro_coalesced_bytes",
263                 offsetof(struct ecore_eth_stats_common,
264                          tpa_coalesced_bytes)},
265 };
266
267 static const struct rte_qede_xstats_name_off qede_bb_xstats_strings[] = {
268         {"rx_1519_to_1522_byte_packets",
269                 offsetof(struct ecore_eth_stats, bb) +
270                 offsetof(struct ecore_eth_stats_bb,
271                          rx_1519_to_1522_byte_packets)},
272         {"rx_1519_to_2047_byte_packets",
273                 offsetof(struct ecore_eth_stats, bb) +
274                 offsetof(struct ecore_eth_stats_bb,
275                          rx_1519_to_2047_byte_packets)},
276         {"rx_2048_to_4095_byte_packets",
277                 offsetof(struct ecore_eth_stats, bb) +
278                 offsetof(struct ecore_eth_stats_bb,
279                          rx_2048_to_4095_byte_packets)},
280         {"rx_4096_to_9216_byte_packets",
281                 offsetof(struct ecore_eth_stats, bb) +
282                 offsetof(struct ecore_eth_stats_bb,
283                          rx_4096_to_9216_byte_packets)},
284         {"rx_9217_to_16383_byte_packets",
285                 offsetof(struct ecore_eth_stats, bb) +
286                 offsetof(struct ecore_eth_stats_bb,
287                          rx_9217_to_16383_byte_packets)},
288
289         {"tx_1519_to_2047_byte_packets",
290                 offsetof(struct ecore_eth_stats, bb) +
291                 offsetof(struct ecore_eth_stats_bb,
292                          tx_1519_to_2047_byte_packets)},
293         {"tx_2048_to_4095_byte_packets",
294                 offsetof(struct ecore_eth_stats, bb) +
295                 offsetof(struct ecore_eth_stats_bb,
296                          tx_2048_to_4095_byte_packets)},
297         {"tx_4096_to_9216_byte_packets",
298                 offsetof(struct ecore_eth_stats, bb) +
299                 offsetof(struct ecore_eth_stats_bb,
300                          tx_4096_to_9216_byte_packets)},
301         {"tx_9217_to_16383_byte_packets",
302                 offsetof(struct ecore_eth_stats, bb) +
303                 offsetof(struct ecore_eth_stats_bb,
304                          tx_9217_to_16383_byte_packets)},
305
306         {"tx_lpi_entry_count",
307                 offsetof(struct ecore_eth_stats, bb) +
308                 offsetof(struct ecore_eth_stats_bb, tx_lpi_entry_count)},
309         {"tx_total_collisions",
310                 offsetof(struct ecore_eth_stats, bb) +
311                 offsetof(struct ecore_eth_stats_bb, tx_total_collisions)},
312 };
313
314 static const struct rte_qede_xstats_name_off qede_ah_xstats_strings[] = {
315         {"rx_1519_to_max_byte_packets",
316                 offsetof(struct ecore_eth_stats, ah) +
317                 offsetof(struct ecore_eth_stats_ah,
318                          rx_1519_to_max_byte_packets)},
319         {"tx_1519_to_max_byte_packets",
320                 offsetof(struct ecore_eth_stats, ah) +
321                 offsetof(struct ecore_eth_stats_ah,
322                          tx_1519_to_max_byte_packets)},
323 };
324
325 static const struct rte_qede_xstats_name_off qede_rxq_xstats_strings[] = {
326         {"rx_q_segments",
327                 offsetof(struct qede_rx_queue, rx_segs)},
328         {"rx_q_hw_errors",
329                 offsetof(struct qede_rx_queue, rx_hw_errors)},
330         {"rx_q_allocation_errors",
331                 offsetof(struct qede_rx_queue, rx_alloc_errors)}
332 };
333
334 static void qede_interrupt_action(struct ecore_hwfn *p_hwfn)
335 {
336         ecore_int_sp_dpc((osal_int_ptr_t)(p_hwfn));
337 }
338
339 static void
340 qede_interrupt_handler_intx(void *param)
341 {
342         struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
343         struct qede_dev *qdev = eth_dev->data->dev_private;
344         struct ecore_dev *edev = &qdev->edev;
345         u64 status;
346
347         /* Check if our device actually raised an interrupt */
348         status = ecore_int_igu_read_sisr_reg(ECORE_LEADING_HWFN(edev));
349         if (status & 0x1) {
350                 qede_interrupt_action(ECORE_LEADING_HWFN(edev));
351
352                 if (rte_intr_enable(eth_dev->intr_handle))
353                         DP_ERR(edev, "rte_intr_enable failed\n");
354         }
355 }
356
357 static void
358 qede_interrupt_handler(void *param)
359 {
360         struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
361         struct qede_dev *qdev = eth_dev->data->dev_private;
362         struct ecore_dev *edev = &qdev->edev;
363
364         qede_interrupt_action(ECORE_LEADING_HWFN(edev));
365         if (rte_intr_enable(eth_dev->intr_handle))
366                 DP_ERR(edev, "rte_intr_enable failed\n");
367 }
368
369 static void
370 qede_alloc_etherdev(struct qede_dev *qdev, struct qed_dev_eth_info *info)
371 {
372         rte_memcpy(&qdev->dev_info, info, sizeof(*info));
373         qdev->ops = qed_ops;
374 }
375
376 static void qede_print_adapter_info(struct qede_dev *qdev)
377 {
378         struct ecore_dev *edev = &qdev->edev;
379         struct qed_dev_info *info = &qdev->dev_info.common;
380         static char drv_ver[QEDE_PMD_DRV_VER_STR_SIZE];
381         static char ver_str[QEDE_PMD_DRV_VER_STR_SIZE];
382
383         DP_INFO(edev, "*********************************\n");
384         DP_INFO(edev, " DPDK version:%s\n", rte_version());
385         DP_INFO(edev, " Chip details : %s %c%d\n",
386                   ECORE_IS_BB(edev) ? "BB" : "AH",
387                   'A' + edev->chip_rev,
388                   (int)edev->chip_metal);
389         snprintf(ver_str, QEDE_PMD_DRV_VER_STR_SIZE, "%d.%d.%d.%d",
390                  info->fw_major, info->fw_minor, info->fw_rev, info->fw_eng);
391         snprintf(drv_ver, QEDE_PMD_DRV_VER_STR_SIZE, "%s_%s",
392                  ver_str, QEDE_PMD_VERSION);
393         DP_INFO(edev, " Driver version : %s\n", drv_ver);
394         DP_INFO(edev, " Firmware version : %s\n", ver_str);
395
396         snprintf(ver_str, MCP_DRV_VER_STR_SIZE,
397                  "%d.%d.%d.%d",
398                 (info->mfw_rev >> 24) & 0xff,
399                 (info->mfw_rev >> 16) & 0xff,
400                 (info->mfw_rev >> 8) & 0xff, (info->mfw_rev) & 0xff);
401         DP_INFO(edev, " Management Firmware version : %s\n", ver_str);
402         DP_INFO(edev, " Firmware file : %s\n", fw_file);
403         DP_INFO(edev, "*********************************\n");
404 }
405
406 static void qede_reset_queue_stats(struct qede_dev *qdev, bool xstats)
407 {
408         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
409         unsigned int i = 0, j = 0, qid;
410         unsigned int rxq_stat_cntrs, txq_stat_cntrs;
411         struct qede_tx_queue *txq;
412
413         DP_VERBOSE(edev, ECORE_MSG_DEBUG, "Clearing queue stats\n");
414
415         rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
416                                RTE_ETHDEV_QUEUE_STAT_CNTRS);
417         txq_stat_cntrs = RTE_MIN(QEDE_TSS_COUNT(qdev),
418                                RTE_ETHDEV_QUEUE_STAT_CNTRS);
419
420         for_each_rss(qid) {
421                 OSAL_MEMSET(((char *)(qdev->fp_array[qid].rxq)) +
422                              offsetof(struct qede_rx_queue, rcv_pkts), 0,
423                             sizeof(uint64_t));
424                 OSAL_MEMSET(((char *)(qdev->fp_array[qid].rxq)) +
425                              offsetof(struct qede_rx_queue, rx_hw_errors), 0,
426                             sizeof(uint64_t));
427                 OSAL_MEMSET(((char *)(qdev->fp_array[qid].rxq)) +
428                              offsetof(struct qede_rx_queue, rx_alloc_errors), 0,
429                             sizeof(uint64_t));
430
431                 if (xstats)
432                         for (j = 0; j < RTE_DIM(qede_rxq_xstats_strings); j++)
433                                 OSAL_MEMSET((((char *)
434                                               (qdev->fp_array[qid].rxq)) +
435                                              qede_rxq_xstats_strings[j].offset),
436                                             0,
437                                             sizeof(uint64_t));
438
439                 i++;
440                 if (i == rxq_stat_cntrs)
441                         break;
442         }
443
444         i = 0;
445
446         for_each_tss(qid) {
447                 txq = qdev->fp_array[qid].txq;
448
449                 OSAL_MEMSET((uint64_t *)(uintptr_t)
450                                 (((uint64_t)(uintptr_t)(txq)) +
451                                  offsetof(struct qede_tx_queue, xmit_pkts)), 0,
452                             sizeof(uint64_t));
453
454                 i++;
455                 if (i == txq_stat_cntrs)
456                         break;
457         }
458 }
459
460 static int
461 qede_stop_vport(struct ecore_dev *edev)
462 {
463         struct ecore_hwfn *p_hwfn;
464         uint8_t vport_id;
465         int rc;
466         int i;
467
468         vport_id = 0;
469         for_each_hwfn(edev, i) {
470                 p_hwfn = &edev->hwfns[i];
471                 rc = ecore_sp_vport_stop(p_hwfn, p_hwfn->hw_info.opaque_fid,
472                                          vport_id);
473                 if (rc != ECORE_SUCCESS) {
474                         DP_ERR(edev, "Stop V-PORT failed rc = %d\n", rc);
475                         return rc;
476                 }
477         }
478
479         DP_INFO(edev, "vport stopped\n");
480
481         return 0;
482 }
483
484 static int
485 qede_start_vport(struct qede_dev *qdev, uint16_t mtu)
486 {
487         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
488         struct ecore_sp_vport_start_params params;
489         struct ecore_hwfn *p_hwfn;
490         int rc;
491         int i;
492
493         if (qdev->vport_started)
494                 qede_stop_vport(edev);
495
496         memset(&params, 0, sizeof(params));
497         params.vport_id = 0;
498         params.mtu = mtu;
499         /* @DPDK - Disable FW placement */
500         params.zero_placement_offset = 1;
501         for_each_hwfn(edev, i) {
502                 p_hwfn = &edev->hwfns[i];
503                 params.concrete_fid = p_hwfn->hw_info.concrete_fid;
504                 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
505                 rc = ecore_sp_vport_start(p_hwfn, &params);
506                 if (rc != ECORE_SUCCESS) {
507                         DP_ERR(edev, "Start V-PORT failed %d\n", rc);
508                         return rc;
509                 }
510         }
511         ecore_reset_vport_stats(edev);
512         qdev->vport_started = true;
513         DP_INFO(edev, "VPORT started with MTU = %u\n", mtu);
514
515         return 0;
516 }
517
518 #define QEDE_NPAR_TX_SWITCHING          "npar_tx_switching"
519 #define QEDE_VF_TX_SWITCHING            "vf_tx_switching"
520
521 /* Activate or deactivate vport via vport-update */
522 int qede_activate_vport(struct rte_eth_dev *eth_dev, bool flg)
523 {
524         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
525         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
526         struct ecore_sp_vport_update_params params;
527         struct ecore_hwfn *p_hwfn;
528         uint8_t i;
529         int rc = -1;
530
531         memset(&params, 0, sizeof(struct ecore_sp_vport_update_params));
532         params.vport_id = 0;
533         params.update_vport_active_rx_flg = 1;
534         params.update_vport_active_tx_flg = 1;
535         params.vport_active_rx_flg = flg;
536         params.vport_active_tx_flg = flg;
537         if (~qdev->enable_tx_switching & flg) {
538                 params.update_tx_switching_flg = 1;
539                 params.tx_switching_flg = !flg;
540         }
541         for_each_hwfn(edev, i) {
542                 p_hwfn = &edev->hwfns[i];
543                 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
544                 rc = ecore_sp_vport_update(p_hwfn, &params,
545                                 ECORE_SPQ_MODE_EBLOCK, NULL);
546                 if (rc != ECORE_SUCCESS) {
547                         DP_ERR(edev, "Failed to update vport\n");
548                         break;
549                 }
550         }
551         DP_INFO(edev, "vport is %s\n", flg ? "activated" : "deactivated");
552
553         return rc;
554 }
555
556 static void
557 qede_update_sge_tpa_params(struct ecore_sge_tpa_params *sge_tpa_params,
558                            uint16_t mtu, bool enable)
559 {
560         /* Enable LRO in split mode */
561         sge_tpa_params->tpa_ipv4_en_flg = enable;
562         sge_tpa_params->tpa_ipv6_en_flg = enable;
563         sge_tpa_params->tpa_ipv4_tunn_en_flg = enable;
564         sge_tpa_params->tpa_ipv6_tunn_en_flg = enable;
565         /* set if tpa enable changes */
566         sge_tpa_params->update_tpa_en_flg = 1;
567         /* set if tpa parameters should be handled */
568         sge_tpa_params->update_tpa_param_flg = enable;
569
570         sge_tpa_params->max_buffers_per_cqe = 20;
571         /* Enable TPA in split mode. In this mode each TPA segment
572          * starts on the new BD, so there is one BD per segment.
573          */
574         sge_tpa_params->tpa_pkt_split_flg = 1;
575         sge_tpa_params->tpa_hdr_data_split_flg = 0;
576         sge_tpa_params->tpa_gro_consistent_flg = 0;
577         sge_tpa_params->tpa_max_aggs_num = ETH_TPA_MAX_AGGS_NUM;
578         sge_tpa_params->tpa_max_size = 0x7FFF;
579         sge_tpa_params->tpa_min_size_to_start = mtu / 2;
580         sge_tpa_params->tpa_min_size_to_cont = mtu / 2;
581 }
582
583 /* Enable/disable LRO via vport-update */
584 int qede_enable_tpa(struct rte_eth_dev *eth_dev, bool flg)
585 {
586         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
587         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
588         struct ecore_sp_vport_update_params params;
589         struct ecore_sge_tpa_params tpa_params;
590         struct ecore_hwfn *p_hwfn;
591         int rc;
592         int i;
593
594         memset(&params, 0, sizeof(struct ecore_sp_vport_update_params));
595         memset(&tpa_params, 0, sizeof(struct ecore_sge_tpa_params));
596         qede_update_sge_tpa_params(&tpa_params, qdev->mtu, flg);
597         params.vport_id = 0;
598         params.sge_tpa_params = &tpa_params;
599         for_each_hwfn(edev, i) {
600                 p_hwfn = &edev->hwfns[i];
601                 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
602                 rc = ecore_sp_vport_update(p_hwfn, &params,
603                                 ECORE_SPQ_MODE_EBLOCK, NULL);
604                 if (rc != ECORE_SUCCESS) {
605                         DP_ERR(edev, "Failed to update LRO\n");
606                         return -1;
607                 }
608         }
609         qdev->enable_lro = flg;
610         eth_dev->data->lro = flg;
611
612         DP_INFO(edev, "LRO is %s\n", flg ? "enabled" : "disabled");
613
614         return 0;
615 }
616
617 static void qede_set_ucast_cmn_params(struct ecore_filter_ucast *ucast)
618 {
619         memset(ucast, 0, sizeof(struct ecore_filter_ucast));
620         ucast->is_rx_filter = true;
621         ucast->is_tx_filter = true;
622         /* ucast->assert_on_error = true; - For debug */
623 }
624
625 static int
626 qed_configure_filter_rx_mode(struct rte_eth_dev *eth_dev,
627                              enum qed_filter_rx_mode_type type)
628 {
629         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
630         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
631         struct ecore_filter_accept_flags flags;
632
633         memset(&flags, 0, sizeof(flags));
634
635         flags.update_rx_mode_config = 1;
636         flags.update_tx_mode_config = 1;
637         flags.rx_accept_filter = ECORE_ACCEPT_UCAST_MATCHED |
638                 ECORE_ACCEPT_MCAST_MATCHED |
639                 ECORE_ACCEPT_BCAST;
640
641         flags.tx_accept_filter = ECORE_ACCEPT_UCAST_MATCHED |
642                 ECORE_ACCEPT_MCAST_MATCHED |
643                 ECORE_ACCEPT_BCAST;
644
645         if (type == QED_FILTER_RX_MODE_TYPE_PROMISC) {
646                 flags.rx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED;
647                 if (IS_VF(edev)) {
648                         flags.tx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED;
649                         DP_INFO(edev, "Enabling Tx unmatched flag for VF\n");
650                 }
651         } else if (type == QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC) {
652                 flags.rx_accept_filter |= ECORE_ACCEPT_MCAST_UNMATCHED;
653         } else if (type == (QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC |
654                                 QED_FILTER_RX_MODE_TYPE_PROMISC)) {
655                 flags.rx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED |
656                         ECORE_ACCEPT_MCAST_UNMATCHED;
657         }
658
659         return ecore_filter_accept_cmd(edev, 0, flags, false, false,
660                         ECORE_SPQ_MODE_CB, NULL);
661 }
662
663 static int
664 qede_tunnel_update(struct qede_dev *qdev,
665                    struct ecore_tunnel_info *tunn_info)
666 {
667         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
668         enum _ecore_status_t rc = ECORE_INVAL;
669         struct ecore_hwfn *p_hwfn;
670         struct ecore_ptt *p_ptt;
671         int i;
672
673         for_each_hwfn(edev, i) {
674                 p_hwfn = &edev->hwfns[i];
675                 if (IS_PF(edev)) {
676                         p_ptt = ecore_ptt_acquire(p_hwfn);
677                         if (!p_ptt) {
678                                 DP_ERR(p_hwfn, "Can't acquire PTT\n");
679                                 return -EAGAIN;
680                         }
681                 } else {
682                         p_ptt = NULL;
683                 }
684
685                 rc = ecore_sp_pf_update_tunn_cfg(p_hwfn, p_ptt,
686                                 tunn_info, ECORE_SPQ_MODE_CB, NULL);
687                 if (IS_PF(edev))
688                         ecore_ptt_release(p_hwfn, p_ptt);
689
690                 if (rc != ECORE_SUCCESS)
691                         break;
692         }
693
694         return rc;
695 }
696
697 static int
698 qede_vxlan_enable(struct rte_eth_dev *eth_dev, uint8_t clss,
699                   bool enable)
700 {
701         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
702         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
703         enum _ecore_status_t rc = ECORE_INVAL;
704         struct ecore_tunnel_info tunn;
705
706         if (qdev->vxlan.enable == enable)
707                 return ECORE_SUCCESS;
708
709         memset(&tunn, 0, sizeof(struct ecore_tunnel_info));
710         tunn.vxlan.b_update_mode = true;
711         tunn.vxlan.b_mode_enabled = enable;
712         tunn.b_update_rx_cls = true;
713         tunn.b_update_tx_cls = true;
714         tunn.vxlan.tun_cls = clss;
715
716         tunn.vxlan_port.b_update_port = true;
717         tunn.vxlan_port.port = enable ? QEDE_VXLAN_DEF_PORT : 0;
718
719         rc = qede_tunnel_update(qdev, &tunn);
720         if (rc == ECORE_SUCCESS) {
721                 qdev->vxlan.enable = enable;
722                 qdev->vxlan.udp_port = (enable) ? QEDE_VXLAN_DEF_PORT : 0;
723                 DP_INFO(edev, "vxlan is %s, UDP port = %d\n",
724                         enable ? "enabled" : "disabled", qdev->vxlan.udp_port);
725         } else {
726                 DP_ERR(edev, "Failed to update tunn_clss %u\n",
727                        tunn.vxlan.tun_cls);
728         }
729
730         return rc;
731 }
732
733 static int
734 qede_geneve_enable(struct rte_eth_dev *eth_dev, uint8_t clss,
735                   bool enable)
736 {
737         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
738         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
739         enum _ecore_status_t rc = ECORE_INVAL;
740         struct ecore_tunnel_info tunn;
741
742         memset(&tunn, 0, sizeof(struct ecore_tunnel_info));
743         tunn.l2_geneve.b_update_mode = true;
744         tunn.l2_geneve.b_mode_enabled = enable;
745         tunn.ip_geneve.b_update_mode = true;
746         tunn.ip_geneve.b_mode_enabled = enable;
747         tunn.l2_geneve.tun_cls = clss;
748         tunn.ip_geneve.tun_cls = clss;
749         tunn.b_update_rx_cls = true;
750         tunn.b_update_tx_cls = true;
751
752         tunn.geneve_port.b_update_port = true;
753         tunn.geneve_port.port = enable ? QEDE_GENEVE_DEF_PORT : 0;
754
755         rc = qede_tunnel_update(qdev, &tunn);
756         if (rc == ECORE_SUCCESS) {
757                 qdev->geneve.enable = enable;
758                 qdev->geneve.udp_port = (enable) ? QEDE_GENEVE_DEF_PORT : 0;
759                 DP_INFO(edev, "GENEVE is %s, UDP port = %d\n",
760                         enable ? "enabled" : "disabled", qdev->geneve.udp_port);
761         } else {
762                 DP_ERR(edev, "Failed to update tunn_clss %u\n",
763                        clss);
764         }
765
766         return rc;
767 }
768
769 static int
770 qede_ipgre_enable(struct rte_eth_dev *eth_dev, uint8_t clss,
771                   bool enable)
772 {
773         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
774         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
775         enum _ecore_status_t rc = ECORE_INVAL;
776         struct ecore_tunnel_info tunn;
777
778         memset(&tunn, 0, sizeof(struct ecore_tunnel_info));
779         tunn.ip_gre.b_update_mode = true;
780         tunn.ip_gre.b_mode_enabled = enable;
781         tunn.ip_gre.tun_cls = clss;
782         tunn.ip_gre.tun_cls = clss;
783         tunn.b_update_rx_cls = true;
784         tunn.b_update_tx_cls = true;
785
786         rc = qede_tunnel_update(qdev, &tunn);
787         if (rc == ECORE_SUCCESS) {
788                 qdev->ipgre.enable = enable;
789                 DP_INFO(edev, "IPGRE is %s\n",
790                         enable ? "enabled" : "disabled");
791         } else {
792                 DP_ERR(edev, "Failed to update tunn_clss %u\n",
793                        clss);
794         }
795
796         return rc;
797 }
798
799 static int
800 qede_tunn_enable(struct rte_eth_dev *eth_dev, uint8_t clss,
801                  enum rte_eth_tunnel_type tunn_type, bool enable)
802 {
803         int rc = -EINVAL;
804
805         switch (tunn_type) {
806         case RTE_TUNNEL_TYPE_VXLAN:
807                 rc = qede_vxlan_enable(eth_dev, clss, enable);
808                 break;
809         case RTE_TUNNEL_TYPE_GENEVE:
810                 rc = qede_geneve_enable(eth_dev, clss, enable);
811                 break;
812         case RTE_TUNNEL_TYPE_IP_IN_GRE:
813                 rc = qede_ipgre_enable(eth_dev, clss, enable);
814                 break;
815         default:
816                 rc = -EINVAL;
817                 break;
818         }
819
820         return rc;
821 }
822
823 static int
824 qede_ucast_filter(struct rte_eth_dev *eth_dev, struct ecore_filter_ucast *ucast,
825                   bool add)
826 {
827         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
828         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
829         struct qede_ucast_entry *tmp = NULL;
830         struct qede_ucast_entry *u;
831         struct ether_addr *mac_addr;
832
833         mac_addr  = (struct ether_addr *)ucast->mac;
834         if (add) {
835                 SLIST_FOREACH(tmp, &qdev->uc_list_head, list) {
836                         if ((memcmp(mac_addr, &tmp->mac,
837                                     ETHER_ADDR_LEN) == 0) &&
838                              ucast->vni == tmp->vni &&
839                              ucast->vlan == tmp->vlan) {
840                                 DP_INFO(edev, "Unicast MAC is already added"
841                                         " with vlan = %u, vni = %u\n",
842                                         ucast->vlan,  ucast->vni);
843                                         return 0;
844                         }
845                 }
846                 u = rte_malloc(NULL, sizeof(struct qede_ucast_entry),
847                                RTE_CACHE_LINE_SIZE);
848                 if (!u) {
849                         DP_ERR(edev, "Did not allocate memory for ucast\n");
850                         return -ENOMEM;
851                 }
852                 ether_addr_copy(mac_addr, &u->mac);
853                 u->vlan = ucast->vlan;
854                 u->vni = ucast->vni;
855                 SLIST_INSERT_HEAD(&qdev->uc_list_head, u, list);
856                 qdev->num_uc_addr++;
857         } else {
858                 SLIST_FOREACH(tmp, &qdev->uc_list_head, list) {
859                         if ((memcmp(mac_addr, &tmp->mac,
860                                     ETHER_ADDR_LEN) == 0) &&
861                             ucast->vlan == tmp->vlan      &&
862                             ucast->vni == tmp->vni)
863                         break;
864                 }
865                 if (tmp == NULL) {
866                         DP_INFO(edev, "Unicast MAC is not found\n");
867                         return -EINVAL;
868                 }
869                 SLIST_REMOVE(&qdev->uc_list_head, tmp, qede_ucast_entry, list);
870                 qdev->num_uc_addr--;
871         }
872
873         return 0;
874 }
875
876 static int
877 qede_add_mcast_filters(struct rte_eth_dev *eth_dev, struct ether_addr *mc_addrs,
878                        uint32_t mc_addrs_num)
879 {
880         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
881         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
882         struct ecore_filter_mcast mcast;
883         struct qede_mcast_entry *m = NULL;
884         uint8_t i;
885         int rc;
886
887         for (i = 0; i < mc_addrs_num; i++) {
888                 m = rte_malloc(NULL, sizeof(struct qede_mcast_entry),
889                                RTE_CACHE_LINE_SIZE);
890                 if (!m) {
891                         DP_ERR(edev, "Did not allocate memory for mcast\n");
892                         return -ENOMEM;
893                 }
894                 ether_addr_copy(&mc_addrs[i], &m->mac);
895                 SLIST_INSERT_HEAD(&qdev->mc_list_head, m, list);
896         }
897         memset(&mcast, 0, sizeof(mcast));
898         mcast.num_mc_addrs = mc_addrs_num;
899         mcast.opcode = ECORE_FILTER_ADD;
900         for (i = 0; i < mc_addrs_num; i++)
901                 ether_addr_copy(&mc_addrs[i], (struct ether_addr *)
902                                                         &mcast.mac[i]);
903         rc = ecore_filter_mcast_cmd(edev, &mcast, ECORE_SPQ_MODE_CB, NULL);
904         if (rc != ECORE_SUCCESS) {
905                 DP_ERR(edev, "Failed to add multicast filter (rc = %d\n)", rc);
906                 return -1;
907         }
908
909         return 0;
910 }
911
912 static int qede_del_mcast_filters(struct rte_eth_dev *eth_dev)
913 {
914         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
915         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
916         struct qede_mcast_entry *tmp = NULL;
917         struct ecore_filter_mcast mcast;
918         int j;
919         int rc;
920
921         memset(&mcast, 0, sizeof(mcast));
922         mcast.num_mc_addrs = qdev->num_mc_addr;
923         mcast.opcode = ECORE_FILTER_REMOVE;
924         j = 0;
925         SLIST_FOREACH(tmp, &qdev->mc_list_head, list) {
926                 ether_addr_copy(&tmp->mac, (struct ether_addr *)&mcast.mac[j]);
927                 j++;
928         }
929         rc = ecore_filter_mcast_cmd(edev, &mcast, ECORE_SPQ_MODE_CB, NULL);
930         if (rc != ECORE_SUCCESS) {
931                 DP_ERR(edev, "Failed to delete multicast filter\n");
932                 return -1;
933         }
934         /* Init the list */
935         while (!SLIST_EMPTY(&qdev->mc_list_head)) {
936                 tmp = SLIST_FIRST(&qdev->mc_list_head);
937                 SLIST_REMOVE_HEAD(&qdev->mc_list_head, list);
938         }
939         SLIST_INIT(&qdev->mc_list_head);
940
941         return 0;
942 }
943
944 static enum _ecore_status_t
945 qede_mac_int_ops(struct rte_eth_dev *eth_dev, struct ecore_filter_ucast *ucast,
946                  bool add)
947 {
948         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
949         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
950         enum _ecore_status_t rc = ECORE_INVAL;
951
952         if (add && (qdev->num_uc_addr >= qdev->dev_info.num_mac_filters)) {
953                 DP_ERR(edev, "Ucast filter table limit exceeded,"
954                               " Please enable promisc mode\n");
955                         return ECORE_INVAL;
956         }
957
958         rc = qede_ucast_filter(eth_dev, ucast, add);
959         if (rc == 0)
960                 rc = ecore_filter_ucast_cmd(edev, ucast,
961                                             ECORE_SPQ_MODE_CB, NULL);
962         /* Indicate error only for add filter operation.
963          * Delete filter operations are not severe.
964          */
965         if ((rc != ECORE_SUCCESS) && add)
966                 DP_ERR(edev, "MAC filter failed, rc = %d, op = %d\n",
967                        rc, add);
968
969         return rc;
970 }
971
972 static int
973 qede_mac_addr_add(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr,
974                   __rte_unused uint32_t index, __rte_unused uint32_t pool)
975 {
976         struct ecore_filter_ucast ucast;
977         int re;
978
979         if (!is_valid_assigned_ether_addr(mac_addr))
980                 return -EINVAL;
981
982         qede_set_ucast_cmn_params(&ucast);
983         ucast.opcode = ECORE_FILTER_ADD;
984         ucast.type = ECORE_FILTER_MAC;
985         ether_addr_copy(mac_addr, (struct ether_addr *)&ucast.mac);
986         re = (int)qede_mac_int_ops(eth_dev, &ucast, 1);
987         return re;
988 }
989
990 static void
991 qede_mac_addr_remove(struct rte_eth_dev *eth_dev, uint32_t index)
992 {
993         struct qede_dev *qdev = eth_dev->data->dev_private;
994         struct ecore_dev *edev = &qdev->edev;
995         struct ecore_filter_ucast ucast;
996
997         PMD_INIT_FUNC_TRACE(edev);
998
999         if (index >= qdev->dev_info.num_mac_filters) {
1000                 DP_ERR(edev, "Index %u is above MAC filter limit %u\n",
1001                        index, qdev->dev_info.num_mac_filters);
1002                 return;
1003         }
1004
1005         if (!is_valid_assigned_ether_addr(&eth_dev->data->mac_addrs[index]))
1006                 return;
1007
1008         qede_set_ucast_cmn_params(&ucast);
1009         ucast.opcode = ECORE_FILTER_REMOVE;
1010         ucast.type = ECORE_FILTER_MAC;
1011
1012         /* Use the index maintained by rte */
1013         ether_addr_copy(&eth_dev->data->mac_addrs[index],
1014                         (struct ether_addr *)&ucast.mac);
1015
1016         qede_mac_int_ops(eth_dev, &ucast, false);
1017 }
1018
1019 static int
1020 qede_mac_addr_set(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr)
1021 {
1022         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1023         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1024
1025         if (IS_VF(edev) && !ecore_vf_check_mac(ECORE_LEADING_HWFN(edev),
1026                                                mac_addr->addr_bytes)) {
1027                 DP_ERR(edev, "Setting MAC address is not allowed\n");
1028                 return -EPERM;
1029         }
1030
1031         qede_mac_addr_remove(eth_dev, 0);
1032
1033         return qede_mac_addr_add(eth_dev, mac_addr, 0, 0);
1034 }
1035
1036 static void qede_config_accept_any_vlan(struct qede_dev *qdev, bool flg)
1037 {
1038         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1039         struct ecore_sp_vport_update_params params;
1040         struct ecore_hwfn *p_hwfn;
1041         uint8_t i;
1042         int rc;
1043
1044         memset(&params, 0, sizeof(struct ecore_sp_vport_update_params));
1045         params.vport_id = 0;
1046         params.update_accept_any_vlan_flg = 1;
1047         params.accept_any_vlan = flg;
1048         for_each_hwfn(edev, i) {
1049                 p_hwfn = &edev->hwfns[i];
1050                 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
1051                 rc = ecore_sp_vport_update(p_hwfn, &params,
1052                                 ECORE_SPQ_MODE_EBLOCK, NULL);
1053                 if (rc != ECORE_SUCCESS) {
1054                         DP_ERR(edev, "Failed to configure accept-any-vlan\n");
1055                         return;
1056                 }
1057         }
1058
1059         DP_INFO(edev, "%s accept-any-vlan\n", flg ? "enabled" : "disabled");
1060 }
1061
1062 static int qede_vlan_stripping(struct rte_eth_dev *eth_dev, bool flg)
1063 {
1064         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1065         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1066         struct ecore_sp_vport_update_params params;
1067         struct ecore_hwfn *p_hwfn;
1068         uint8_t i;
1069         int rc;
1070
1071         memset(&params, 0, sizeof(struct ecore_sp_vport_update_params));
1072         params.vport_id = 0;
1073         params.update_inner_vlan_removal_flg = 1;
1074         params.inner_vlan_removal_flg = flg;
1075         for_each_hwfn(edev, i) {
1076                 p_hwfn = &edev->hwfns[i];
1077                 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
1078                 rc = ecore_sp_vport_update(p_hwfn, &params,
1079                                 ECORE_SPQ_MODE_EBLOCK, NULL);
1080                 if (rc != ECORE_SUCCESS) {
1081                         DP_ERR(edev, "Failed to update vport\n");
1082                         return -1;
1083                 }
1084         }
1085
1086         DP_INFO(edev, "VLAN stripping %s\n", flg ? "enabled" : "disabled");
1087         return 0;
1088 }
1089
1090 static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
1091                                 uint16_t vlan_id, int on)
1092 {
1093         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1094         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1095         struct qed_dev_eth_info *dev_info = &qdev->dev_info;
1096         struct qede_vlan_entry *tmp = NULL;
1097         struct qede_vlan_entry *vlan;
1098         struct ecore_filter_ucast ucast;
1099         int rc;
1100
1101         if (on) {
1102                 if (qdev->configured_vlans == dev_info->num_vlan_filters) {
1103                         DP_ERR(edev, "Reached max VLAN filter limit"
1104                                       " enabling accept_any_vlan\n");
1105                         qede_config_accept_any_vlan(qdev, true);
1106                         return 0;
1107                 }
1108
1109                 SLIST_FOREACH(tmp, &qdev->vlan_list_head, list) {
1110                         if (tmp->vid == vlan_id) {
1111                                 DP_INFO(edev, "VLAN %u already configured\n",
1112                                         vlan_id);
1113                                 return 0;
1114                         }
1115                 }
1116
1117                 vlan = rte_malloc(NULL, sizeof(struct qede_vlan_entry),
1118                                   RTE_CACHE_LINE_SIZE);
1119
1120                 if (!vlan) {
1121                         DP_ERR(edev, "Did not allocate memory for VLAN\n");
1122                         return -ENOMEM;
1123                 }
1124
1125                 qede_set_ucast_cmn_params(&ucast);
1126                 ucast.opcode = ECORE_FILTER_ADD;
1127                 ucast.type = ECORE_FILTER_VLAN;
1128                 ucast.vlan = vlan_id;
1129                 rc = ecore_filter_ucast_cmd(edev, &ucast, ECORE_SPQ_MODE_CB,
1130                                             NULL);
1131                 if (rc != 0) {
1132                         DP_ERR(edev, "Failed to add VLAN %u rc %d\n", vlan_id,
1133                                rc);
1134                         rte_free(vlan);
1135                 } else {
1136                         vlan->vid = vlan_id;
1137                         SLIST_INSERT_HEAD(&qdev->vlan_list_head, vlan, list);
1138                         qdev->configured_vlans++;
1139                         DP_INFO(edev, "VLAN %u added, configured_vlans %u\n",
1140                                 vlan_id, qdev->configured_vlans);
1141                 }
1142         } else {
1143                 SLIST_FOREACH(tmp, &qdev->vlan_list_head, list) {
1144                         if (tmp->vid == vlan_id)
1145                                 break;
1146                 }
1147
1148                 if (!tmp) {
1149                         if (qdev->configured_vlans == 0) {
1150                                 DP_INFO(edev,
1151                                         "No VLAN filters configured yet\n");
1152                                 return 0;
1153                         }
1154
1155                         DP_ERR(edev, "VLAN %u not configured\n", vlan_id);
1156                         return -EINVAL;
1157                 }
1158
1159                 SLIST_REMOVE(&qdev->vlan_list_head, tmp, qede_vlan_entry, list);
1160
1161                 qede_set_ucast_cmn_params(&ucast);
1162                 ucast.opcode = ECORE_FILTER_REMOVE;
1163                 ucast.type = ECORE_FILTER_VLAN;
1164                 ucast.vlan = vlan_id;
1165                 rc = ecore_filter_ucast_cmd(edev, &ucast, ECORE_SPQ_MODE_CB,
1166                                             NULL);
1167                 if (rc != 0) {
1168                         DP_ERR(edev, "Failed to delete VLAN %u rc %d\n",
1169                                vlan_id, rc);
1170                 } else {
1171                         qdev->configured_vlans--;
1172                         DP_INFO(edev, "VLAN %u removed configured_vlans %u\n",
1173                                 vlan_id, qdev->configured_vlans);
1174                 }
1175         }
1176
1177         return rc;
1178 }
1179
1180 static int qede_vlan_offload_set(struct rte_eth_dev *eth_dev, int mask)
1181 {
1182         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1183         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1184         uint64_t rx_offloads = eth_dev->data->dev_conf.rxmode.offloads;
1185
1186         if (mask & ETH_VLAN_STRIP_MASK) {
1187                 if (rx_offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
1188                         (void)qede_vlan_stripping(eth_dev, 1);
1189                 else
1190                         (void)qede_vlan_stripping(eth_dev, 0);
1191         }
1192
1193         if (mask & ETH_VLAN_FILTER_MASK) {
1194                 /* VLAN filtering kicks in when a VLAN is added */
1195                 if (rx_offloads & DEV_RX_OFFLOAD_VLAN_FILTER) {
1196                         qede_vlan_filter_set(eth_dev, 0, 1);
1197                 } else {
1198                         if (qdev->configured_vlans > 1) { /* Excluding VLAN0 */
1199                                 DP_ERR(edev,
1200                                   " Please remove existing VLAN filters"
1201                                   " before disabling VLAN filtering\n");
1202                                 /* Signal app that VLAN filtering is still
1203                                  * enabled
1204                                  */
1205                                 eth_dev->data->dev_conf.rxmode.offloads |=
1206                                                 DEV_RX_OFFLOAD_VLAN_FILTER;
1207                         } else {
1208                                 qede_vlan_filter_set(eth_dev, 0, 0);
1209                         }
1210                 }
1211         }
1212
1213         if (mask & ETH_VLAN_EXTEND_MASK)
1214                 DP_ERR(edev, "Extend VLAN not supported\n");
1215
1216         qdev->vlan_offload_mask = mask;
1217
1218         DP_INFO(edev, "VLAN offload mask %d\n", mask);
1219
1220         return 0;
1221 }
1222
1223 static void qede_prandom_bytes(uint32_t *buff)
1224 {
1225         uint8_t i;
1226
1227         srand((unsigned int)time(NULL));
1228         for (i = 0; i < ECORE_RSS_KEY_SIZE; i++)
1229                 buff[i] = rand();
1230 }
1231
1232 int qede_config_rss(struct rte_eth_dev *eth_dev)
1233 {
1234         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1235         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1236         uint32_t def_rss_key[ECORE_RSS_KEY_SIZE];
1237         struct rte_eth_rss_reta_entry64 reta_conf[2];
1238         struct rte_eth_rss_conf rss_conf;
1239         uint32_t i, id, pos, q;
1240
1241         rss_conf = eth_dev->data->dev_conf.rx_adv_conf.rss_conf;
1242         if (!rss_conf.rss_key) {
1243                 DP_INFO(edev, "Applying driver default key\n");
1244                 rss_conf.rss_key_len = ECORE_RSS_KEY_SIZE * sizeof(uint32_t);
1245                 qede_prandom_bytes(&def_rss_key[0]);
1246                 rss_conf.rss_key = (uint8_t *)&def_rss_key[0];
1247         }
1248
1249         /* Configure RSS hash */
1250         if (qede_rss_hash_update(eth_dev, &rss_conf))
1251                 return -EINVAL;
1252
1253         /* Configure default RETA */
1254         memset(reta_conf, 0, sizeof(reta_conf));
1255         for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++)
1256                 reta_conf[i / RTE_RETA_GROUP_SIZE].mask = UINT64_MAX;
1257
1258         for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++) {
1259                 id = i / RTE_RETA_GROUP_SIZE;
1260                 pos = i % RTE_RETA_GROUP_SIZE;
1261                 q = i % QEDE_RSS_COUNT(qdev);
1262                 reta_conf[id].reta[pos] = q;
1263         }
1264         if (qede_rss_reta_update(eth_dev, &reta_conf[0],
1265                                  ECORE_RSS_IND_TABLE_SIZE))
1266                 return -EINVAL;
1267
1268         return 0;
1269 }
1270
1271 static void qede_fastpath_start(struct ecore_dev *edev)
1272 {
1273         struct ecore_hwfn *p_hwfn;
1274         int i;
1275
1276         for_each_hwfn(edev, i) {
1277                 p_hwfn = &edev->hwfns[i];
1278                 ecore_hw_start_fastpath(p_hwfn);
1279         }
1280 }
1281
1282 static int qede_dev_start(struct rte_eth_dev *eth_dev)
1283 {
1284         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1285         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1286         struct rte_eth_rxmode *rxmode = &eth_dev->data->dev_conf.rxmode;
1287
1288         PMD_INIT_FUNC_TRACE(edev);
1289
1290         /* Update MTU only if it has changed */
1291         if (eth_dev->data->mtu != qdev->mtu) {
1292                 if (qede_update_mtu(eth_dev, qdev->mtu))
1293                         goto err;
1294         }
1295
1296         /* Configure TPA parameters */
1297         if (rxmode->offloads & DEV_RX_OFFLOAD_TCP_LRO) {
1298                 if (qede_enable_tpa(eth_dev, true))
1299                         return -EINVAL;
1300                 /* Enable scatter mode for LRO */
1301                 if (!eth_dev->data->scattered_rx)
1302                         rxmode->offloads |= DEV_RX_OFFLOAD_SCATTER;
1303         }
1304
1305         /* Start queues */
1306         if (qede_start_queues(eth_dev))
1307                 goto err;
1308
1309         if (IS_PF(edev))
1310                 qede_reset_queue_stats(qdev, true);
1311
1312         /* Newer SR-IOV PF driver expects RX/TX queues to be started before
1313          * enabling RSS. Hence RSS configuration is deferred upto this point.
1314          * Also, we would like to retain similar behavior in PF case, so we
1315          * don't do PF/VF specific check here.
1316          */
1317         if (eth_dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS)
1318                 if (qede_config_rss(eth_dev))
1319                         goto err;
1320
1321         /* Enable vport*/
1322         if (qede_activate_vport(eth_dev, true))
1323                 goto err;
1324
1325         /* Update link status */
1326         qede_link_update(eth_dev, 0);
1327
1328         /* Start/resume traffic */
1329         qede_fastpath_start(edev);
1330
1331         DP_INFO(edev, "Device started\n");
1332
1333         return 0;
1334 err:
1335         DP_ERR(edev, "Device start fails\n");
1336         return -1; /* common error code is < 0 */
1337 }
1338
1339 static void qede_dev_stop(struct rte_eth_dev *eth_dev)
1340 {
1341         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1342         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1343
1344         PMD_INIT_FUNC_TRACE(edev);
1345
1346         /* Disable vport */
1347         if (qede_activate_vport(eth_dev, false))
1348                 return;
1349
1350         if (qdev->enable_lro)
1351                 qede_enable_tpa(eth_dev, false);
1352
1353         /* Stop queues */
1354         qede_stop_queues(eth_dev);
1355
1356         /* Disable traffic */
1357         ecore_hw_stop_fastpath(edev); /* TBD - loop */
1358
1359         DP_INFO(edev, "Device is stopped\n");
1360 }
1361
1362 const char *valid_args[] = {
1363         QEDE_NPAR_TX_SWITCHING,
1364         QEDE_VF_TX_SWITCHING,
1365         NULL,
1366 };
1367
1368 static int qede_args_check(const char *key, const char *val, void *opaque)
1369 {
1370         unsigned long tmp;
1371         int ret = 0;
1372         struct rte_eth_dev *eth_dev = opaque;
1373         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1374         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1375
1376         errno = 0;
1377         tmp = strtoul(val, NULL, 0);
1378         if (errno) {
1379                 DP_INFO(edev, "%s: \"%s\" is not a valid integer", key, val);
1380                 return errno;
1381         }
1382
1383         if ((strcmp(QEDE_NPAR_TX_SWITCHING, key) == 0) ||
1384             ((strcmp(QEDE_VF_TX_SWITCHING, key) == 0) && IS_VF(edev))) {
1385                 qdev->enable_tx_switching = !!tmp;
1386                 DP_INFO(edev, "Disabling %s tx-switching\n",
1387                         strcmp(QEDE_NPAR_TX_SWITCHING, key) ?
1388                         "VF" : "NPAR");
1389         }
1390
1391         return ret;
1392 }
1393
1394 static int qede_args(struct rte_eth_dev *eth_dev)
1395 {
1396         struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
1397         struct rte_kvargs *kvlist;
1398         struct rte_devargs *devargs;
1399         int ret;
1400         int i;
1401
1402         devargs = pci_dev->device.devargs;
1403         if (!devargs)
1404                 return 0; /* return success */
1405
1406         kvlist = rte_kvargs_parse(devargs->args, valid_args);
1407         if (kvlist == NULL)
1408                 return -EINVAL;
1409
1410          /* Process parameters. */
1411         for (i = 0; (valid_args[i] != NULL); ++i) {
1412                 if (rte_kvargs_count(kvlist, valid_args[i])) {
1413                         ret = rte_kvargs_process(kvlist, valid_args[i],
1414                                                  qede_args_check, eth_dev);
1415                         if (ret != ECORE_SUCCESS) {
1416                                 rte_kvargs_free(kvlist);
1417                                 return ret;
1418                         }
1419                 }
1420         }
1421         rte_kvargs_free(kvlist);
1422
1423         return 0;
1424 }
1425
1426 static int qede_dev_configure(struct rte_eth_dev *eth_dev)
1427 {
1428         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1429         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1430         struct rte_eth_rxmode *rxmode = &eth_dev->data->dev_conf.rxmode;
1431         int ret;
1432
1433         PMD_INIT_FUNC_TRACE(edev);
1434
1435         /* Check requirements for 100G mode */
1436         if (ECORE_IS_CMT(edev)) {
1437                 if (eth_dev->data->nb_rx_queues < 2 ||
1438                     eth_dev->data->nb_tx_queues < 2) {
1439                         DP_ERR(edev, "100G mode needs min. 2 RX/TX queues\n");
1440                         return -EINVAL;
1441                 }
1442
1443                 if ((eth_dev->data->nb_rx_queues % 2 != 0) ||
1444                     (eth_dev->data->nb_tx_queues % 2 != 0)) {
1445                         DP_ERR(edev,
1446                                "100G mode needs even no. of RX/TX queues\n");
1447                         return -EINVAL;
1448                 }
1449         }
1450
1451         /* We need to have min 1 RX queue.There is no min check in
1452          * rte_eth_dev_configure(), so we are checking it here.
1453          */
1454         if (eth_dev->data->nb_rx_queues == 0) {
1455                 DP_ERR(edev, "Minimum one RX queue is required\n");
1456                 return -EINVAL;
1457         }
1458
1459         /* Enable Tx switching by default */
1460         qdev->enable_tx_switching = 1;
1461
1462         /* Parse devargs and fix up rxmode */
1463         if (qede_args(eth_dev))
1464                 DP_NOTICE(edev, false,
1465                           "Invalid devargs supplied, requested change will not take effect\n");
1466
1467         if (!(rxmode->mq_mode == ETH_MQ_RX_NONE ||
1468               rxmode->mq_mode == ETH_MQ_RX_RSS)) {
1469                 DP_ERR(edev, "Unsupported multi-queue mode\n");
1470                 return -ENOTSUP;
1471         }
1472         /* Flow director mode check */
1473         if (qede_check_fdir_support(eth_dev))
1474                 return -ENOTSUP;
1475
1476         qede_dealloc_fp_resc(eth_dev);
1477         qdev->num_tx_queues = eth_dev->data->nb_tx_queues;
1478         qdev->num_rx_queues = eth_dev->data->nb_rx_queues;
1479         if (qede_alloc_fp_resc(qdev))
1480                 return -ENOMEM;
1481
1482         /* If jumbo enabled adjust MTU */
1483         if (rxmode->offloads & DEV_RX_OFFLOAD_JUMBO_FRAME)
1484                 eth_dev->data->mtu =
1485                         eth_dev->data->dev_conf.rxmode.max_rx_pkt_len -
1486                         ETHER_HDR_LEN - ETHER_CRC_LEN;
1487
1488         if (rxmode->offloads & DEV_RX_OFFLOAD_SCATTER)
1489                 eth_dev->data->scattered_rx = 1;
1490
1491         if (qede_start_vport(qdev, eth_dev->data->mtu))
1492                 return -1;
1493
1494         qdev->mtu = eth_dev->data->mtu;
1495
1496         /* Enable VLAN offloads by default */
1497         ret = qede_vlan_offload_set(eth_dev, ETH_VLAN_STRIP_MASK  |
1498                                              ETH_VLAN_FILTER_MASK);
1499         if (ret)
1500                 return ret;
1501
1502         DP_INFO(edev, "Device configured with RSS=%d TSS=%d\n",
1503                         QEDE_RSS_COUNT(qdev), QEDE_TSS_COUNT(qdev));
1504
1505         return 0;
1506 }
1507
1508 /* Info about HW descriptor ring limitations */
1509 static const struct rte_eth_desc_lim qede_rx_desc_lim = {
1510         .nb_max = 0x8000, /* 32K */
1511         .nb_min = 128,
1512         .nb_align = 128 /* lowest common multiple */
1513 };
1514
1515 static const struct rte_eth_desc_lim qede_tx_desc_lim = {
1516         .nb_max = 0x8000, /* 32K */
1517         .nb_min = 256,
1518         .nb_align = 256,
1519         .nb_seg_max = ETH_TX_MAX_BDS_PER_LSO_PACKET,
1520         .nb_mtu_seg_max = ETH_TX_MAX_BDS_PER_NON_LSO_PACKET
1521 };
1522
1523 static void
1524 qede_dev_info_get(struct rte_eth_dev *eth_dev,
1525                   struct rte_eth_dev_info *dev_info)
1526 {
1527         struct qede_dev *qdev = eth_dev->data->dev_private;
1528         struct ecore_dev *edev = &qdev->edev;
1529         struct qed_link_output link;
1530         uint32_t speed_cap = 0;
1531
1532         PMD_INIT_FUNC_TRACE(edev);
1533
1534         dev_info->min_rx_bufsize = (uint32_t)QEDE_MIN_RX_BUFF_SIZE;
1535         dev_info->max_rx_pktlen = (uint32_t)ETH_TX_MAX_NON_LSO_PKT_LEN;
1536         dev_info->rx_desc_lim = qede_rx_desc_lim;
1537         dev_info->tx_desc_lim = qede_tx_desc_lim;
1538
1539         if (IS_PF(edev))
1540                 dev_info->max_rx_queues = (uint16_t)RTE_MIN(
1541                         QEDE_MAX_RSS_CNT(qdev), QEDE_PF_NUM_CONNS / 2);
1542         else
1543                 dev_info->max_rx_queues = (uint16_t)RTE_MIN(
1544                         QEDE_MAX_RSS_CNT(qdev), ECORE_MAX_VF_CHAINS_PER_PF);
1545         dev_info->max_tx_queues = dev_info->max_rx_queues;
1546
1547         dev_info->max_mac_addrs = qdev->dev_info.num_mac_filters;
1548         dev_info->max_vfs = 0;
1549         dev_info->reta_size = ECORE_RSS_IND_TABLE_SIZE;
1550         dev_info->hash_key_size = ECORE_RSS_KEY_SIZE * sizeof(uint32_t);
1551         dev_info->flow_type_rss_offloads = (uint64_t)QEDE_RSS_OFFLOAD_ALL;
1552         dev_info->rx_offload_capa = (DEV_RX_OFFLOAD_IPV4_CKSUM  |
1553                                      DEV_RX_OFFLOAD_UDP_CKSUM   |
1554                                      DEV_RX_OFFLOAD_TCP_CKSUM   |
1555                                      DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
1556                                      DEV_RX_OFFLOAD_TCP_LRO     |
1557                                      DEV_RX_OFFLOAD_KEEP_CRC    |
1558                                      DEV_RX_OFFLOAD_SCATTER     |
1559                                      DEV_RX_OFFLOAD_JUMBO_FRAME |
1560                                      DEV_RX_OFFLOAD_VLAN_FILTER |
1561                                      DEV_RX_OFFLOAD_VLAN_STRIP);
1562         dev_info->rx_queue_offload_capa = 0;
1563
1564         /* TX offloads are on a per-packet basis, so it is applicable
1565          * to both at port and queue levels.
1566          */
1567         dev_info->tx_offload_capa = (DEV_TX_OFFLOAD_VLAN_INSERT |
1568                                      DEV_TX_OFFLOAD_IPV4_CKSUM  |
1569                                      DEV_TX_OFFLOAD_UDP_CKSUM   |
1570                                      DEV_TX_OFFLOAD_TCP_CKSUM   |
1571                                      DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
1572                                      DEV_TX_OFFLOAD_MULTI_SEGS  |
1573                                      DEV_TX_OFFLOAD_TCP_TSO     |
1574                                      DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
1575                                      DEV_TX_OFFLOAD_GENEVE_TNL_TSO);
1576         dev_info->tx_queue_offload_capa = dev_info->tx_offload_capa;
1577
1578         dev_info->default_txconf = (struct rte_eth_txconf) {
1579                 .offloads = DEV_TX_OFFLOAD_MULTI_SEGS,
1580         };
1581
1582         dev_info->default_rxconf = (struct rte_eth_rxconf) {
1583                 /* Packets are always dropped if no descriptors are available */
1584                 .rx_drop_en = 1,
1585                 .offloads = 0,
1586         };
1587
1588         memset(&link, 0, sizeof(struct qed_link_output));
1589         qdev->ops->common->get_link(edev, &link);
1590         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_1G)
1591                 speed_cap |= ETH_LINK_SPEED_1G;
1592         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_10G)
1593                 speed_cap |= ETH_LINK_SPEED_10G;
1594         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_25G)
1595                 speed_cap |= ETH_LINK_SPEED_25G;
1596         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_40G)
1597                 speed_cap |= ETH_LINK_SPEED_40G;
1598         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_50G)
1599                 speed_cap |= ETH_LINK_SPEED_50G;
1600         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_BB_100G)
1601                 speed_cap |= ETH_LINK_SPEED_100G;
1602         dev_info->speed_capa = speed_cap;
1603 }
1604
1605 /* return 0 means link status changed, -1 means not changed */
1606 int
1607 qede_link_update(struct rte_eth_dev *eth_dev, __rte_unused int wait_to_complete)
1608 {
1609         struct qede_dev *qdev = eth_dev->data->dev_private;
1610         struct ecore_dev *edev = &qdev->edev;
1611         struct qed_link_output q_link;
1612         struct rte_eth_link link;
1613         uint16_t link_duplex;
1614
1615         memset(&q_link, 0, sizeof(q_link));
1616         memset(&link, 0, sizeof(link));
1617
1618         qdev->ops->common->get_link(edev, &q_link);
1619
1620         /* Link Speed */
1621         link.link_speed = q_link.speed;
1622
1623         /* Link Mode */
1624         switch (q_link.duplex) {
1625         case QEDE_DUPLEX_HALF:
1626                 link_duplex = ETH_LINK_HALF_DUPLEX;
1627                 break;
1628         case QEDE_DUPLEX_FULL:
1629                 link_duplex = ETH_LINK_FULL_DUPLEX;
1630                 break;
1631         case QEDE_DUPLEX_UNKNOWN:
1632         default:
1633                 link_duplex = -1;
1634         }
1635         link.link_duplex = link_duplex;
1636
1637         /* Link Status */
1638         link.link_status = q_link.link_up ? ETH_LINK_UP : ETH_LINK_DOWN;
1639
1640         /* AN */
1641         link.link_autoneg = (q_link.supported_caps & QEDE_SUPPORTED_AUTONEG) ?
1642                              ETH_LINK_AUTONEG : ETH_LINK_FIXED;
1643
1644         DP_INFO(edev, "Link - Speed %u Mode %u AN %u Status %u\n",
1645                 link.link_speed, link.link_duplex,
1646                 link.link_autoneg, link.link_status);
1647
1648         return rte_eth_linkstatus_set(eth_dev, &link);
1649 }
1650
1651 static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
1652 {
1653 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
1654         struct qede_dev *qdev = eth_dev->data->dev_private;
1655         struct ecore_dev *edev = &qdev->edev;
1656
1657         PMD_INIT_FUNC_TRACE(edev);
1658 #endif
1659
1660         enum qed_filter_rx_mode_type type = QED_FILTER_RX_MODE_TYPE_PROMISC;
1661
1662         if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
1663                 type |= QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
1664
1665         qed_configure_filter_rx_mode(eth_dev, type);
1666 }
1667
1668 static void qede_promiscuous_disable(struct rte_eth_dev *eth_dev)
1669 {
1670 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
1671         struct qede_dev *qdev = eth_dev->data->dev_private;
1672         struct ecore_dev *edev = &qdev->edev;
1673
1674         PMD_INIT_FUNC_TRACE(edev);
1675 #endif
1676
1677         if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
1678                 qed_configure_filter_rx_mode(eth_dev,
1679                                 QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC);
1680         else
1681                 qed_configure_filter_rx_mode(eth_dev,
1682                                 QED_FILTER_RX_MODE_TYPE_REGULAR);
1683 }
1684
1685 static void qede_poll_sp_sb_cb(void *param)
1686 {
1687         struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1688         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1689         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1690         int rc;
1691
1692         qede_interrupt_action(ECORE_LEADING_HWFN(edev));
1693         qede_interrupt_action(&edev->hwfns[1]);
1694
1695         rc = rte_eal_alarm_set(QEDE_SP_TIMER_PERIOD,
1696                                qede_poll_sp_sb_cb,
1697                                (void *)eth_dev);
1698         if (rc != 0) {
1699                 DP_ERR(edev, "Unable to start periodic"
1700                              " timer rc %d\n", rc);
1701                 assert(false && "Unable to start periodic timer");
1702         }
1703 }
1704
1705 static void qede_dev_close(struct rte_eth_dev *eth_dev)
1706 {
1707         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1708         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1709         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1710
1711         PMD_INIT_FUNC_TRACE(edev);
1712
1713         /* dev_stop() shall cleanup fp resources in hw but without releasing
1714          * dma memories and sw structures so that dev_start() can be called
1715          * by the app without reconfiguration. However, in dev_close() we
1716          * can release all the resources and device can be brought up newly
1717          */
1718         if (eth_dev->data->dev_started)
1719                 qede_dev_stop(eth_dev);
1720
1721         qede_stop_vport(edev);
1722         qdev->vport_started = false;
1723         qede_fdir_dealloc_resc(eth_dev);
1724         qede_dealloc_fp_resc(eth_dev);
1725
1726         eth_dev->data->nb_rx_queues = 0;
1727         eth_dev->data->nb_tx_queues = 0;
1728
1729         /* Bring the link down */
1730         qede_dev_set_link_state(eth_dev, false);
1731         qdev->ops->common->slowpath_stop(edev);
1732         qdev->ops->common->remove(edev);
1733         rte_intr_disable(&pci_dev->intr_handle);
1734
1735         switch (pci_dev->intr_handle.type) {
1736         case RTE_INTR_HANDLE_UIO_INTX:
1737         case RTE_INTR_HANDLE_VFIO_LEGACY:
1738                 rte_intr_callback_unregister(&pci_dev->intr_handle,
1739                                              qede_interrupt_handler_intx,
1740                                              (void *)eth_dev);
1741                 break;
1742         default:
1743                 rte_intr_callback_unregister(&pci_dev->intr_handle,
1744                                            qede_interrupt_handler,
1745                                            (void *)eth_dev);
1746         }
1747
1748         if (ECORE_IS_CMT(edev))
1749                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb, (void *)eth_dev);
1750 }
1751
1752 static int
1753 qede_get_stats(struct rte_eth_dev *eth_dev, struct rte_eth_stats *eth_stats)
1754 {
1755         struct qede_dev *qdev = eth_dev->data->dev_private;
1756         struct ecore_dev *edev = &qdev->edev;
1757         struct ecore_eth_stats stats;
1758         unsigned int i = 0, j = 0, qid;
1759         unsigned int rxq_stat_cntrs, txq_stat_cntrs;
1760         struct qede_tx_queue *txq;
1761
1762         ecore_get_vport_stats(edev, &stats);
1763
1764         /* RX Stats */
1765         eth_stats->ipackets = stats.common.rx_ucast_pkts +
1766             stats.common.rx_mcast_pkts + stats.common.rx_bcast_pkts;
1767
1768         eth_stats->ibytes = stats.common.rx_ucast_bytes +
1769             stats.common.rx_mcast_bytes + stats.common.rx_bcast_bytes;
1770
1771         eth_stats->ierrors = stats.common.rx_crc_errors +
1772             stats.common.rx_align_errors +
1773             stats.common.rx_carrier_errors +
1774             stats.common.rx_oversize_packets +
1775             stats.common.rx_jabbers + stats.common.rx_undersize_packets;
1776
1777         eth_stats->rx_nombuf = stats.common.no_buff_discards;
1778
1779         eth_stats->imissed = stats.common.mftag_filter_discards +
1780             stats.common.mac_filter_discards +
1781             stats.common.no_buff_discards +
1782             stats.common.brb_truncates + stats.common.brb_discards;
1783
1784         /* TX stats */
1785         eth_stats->opackets = stats.common.tx_ucast_pkts +
1786             stats.common.tx_mcast_pkts + stats.common.tx_bcast_pkts;
1787
1788         eth_stats->obytes = stats.common.tx_ucast_bytes +
1789             stats.common.tx_mcast_bytes + stats.common.tx_bcast_bytes;
1790
1791         eth_stats->oerrors = stats.common.tx_err_drop_pkts;
1792
1793         /* Queue stats */
1794         rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1795                                RTE_ETHDEV_QUEUE_STAT_CNTRS);
1796         txq_stat_cntrs = RTE_MIN(QEDE_TSS_COUNT(qdev),
1797                                RTE_ETHDEV_QUEUE_STAT_CNTRS);
1798         if ((rxq_stat_cntrs != (unsigned int)QEDE_RSS_COUNT(qdev)) ||
1799             (txq_stat_cntrs != (unsigned int)QEDE_TSS_COUNT(qdev)))
1800                 DP_VERBOSE(edev, ECORE_MSG_DEBUG,
1801                        "Not all the queue stats will be displayed. Set"
1802                        " RTE_ETHDEV_QUEUE_STAT_CNTRS config param"
1803                        " appropriately and retry.\n");
1804
1805         for_each_rss(qid) {
1806                 eth_stats->q_ipackets[i] =
1807                         *(uint64_t *)(
1808                                 ((char *)(qdev->fp_array[qid].rxq)) +
1809                                 offsetof(struct qede_rx_queue,
1810                                 rcv_pkts));
1811                 eth_stats->q_errors[i] =
1812                         *(uint64_t *)(
1813                                 ((char *)(qdev->fp_array[qid].rxq)) +
1814                                 offsetof(struct qede_rx_queue,
1815                                 rx_hw_errors)) +
1816                         *(uint64_t *)(
1817                                 ((char *)(qdev->fp_array[qid].rxq)) +
1818                                 offsetof(struct qede_rx_queue,
1819                                 rx_alloc_errors));
1820                 i++;
1821                 if (i == rxq_stat_cntrs)
1822                         break;
1823         }
1824
1825         for_each_tss(qid) {
1826                 txq = qdev->fp_array[qid].txq;
1827                 eth_stats->q_opackets[j] =
1828                         *((uint64_t *)(uintptr_t)
1829                                 (((uint64_t)(uintptr_t)(txq)) +
1830                                  offsetof(struct qede_tx_queue,
1831                                           xmit_pkts)));
1832                 j++;
1833                 if (j == txq_stat_cntrs)
1834                         break;
1835         }
1836
1837         return 0;
1838 }
1839
1840 static unsigned
1841 qede_get_xstats_count(struct qede_dev *qdev) {
1842         if (ECORE_IS_BB(&qdev->edev))
1843                 return RTE_DIM(qede_xstats_strings) +
1844                        RTE_DIM(qede_bb_xstats_strings) +
1845                        (RTE_DIM(qede_rxq_xstats_strings) *
1846                         RTE_MIN(QEDE_RSS_COUNT(qdev),
1847                                 RTE_ETHDEV_QUEUE_STAT_CNTRS));
1848         else
1849                 return RTE_DIM(qede_xstats_strings) +
1850                        RTE_DIM(qede_ah_xstats_strings) +
1851                        (RTE_DIM(qede_rxq_xstats_strings) *
1852                         RTE_MIN(QEDE_RSS_COUNT(qdev),
1853                                 RTE_ETHDEV_QUEUE_STAT_CNTRS));
1854 }
1855
1856 static int
1857 qede_get_xstats_names(struct rte_eth_dev *dev,
1858                       struct rte_eth_xstat_name *xstats_names,
1859                       __rte_unused unsigned int limit)
1860 {
1861         struct qede_dev *qdev = dev->data->dev_private;
1862         struct ecore_dev *edev = &qdev->edev;
1863         const unsigned int stat_cnt = qede_get_xstats_count(qdev);
1864         unsigned int i, qid, stat_idx = 0;
1865         unsigned int rxq_stat_cntrs;
1866
1867         if (xstats_names != NULL) {
1868                 for (i = 0; i < RTE_DIM(qede_xstats_strings); i++) {
1869                         snprintf(xstats_names[stat_idx].name,
1870                                 sizeof(xstats_names[stat_idx].name),
1871                                 "%s",
1872                                 qede_xstats_strings[i].name);
1873                         stat_idx++;
1874                 }
1875
1876                 if (ECORE_IS_BB(edev)) {
1877                         for (i = 0; i < RTE_DIM(qede_bb_xstats_strings); i++) {
1878                                 snprintf(xstats_names[stat_idx].name,
1879                                         sizeof(xstats_names[stat_idx].name),
1880                                         "%s",
1881                                         qede_bb_xstats_strings[i].name);
1882                                 stat_idx++;
1883                         }
1884                 } else {
1885                         for (i = 0; i < RTE_DIM(qede_ah_xstats_strings); i++) {
1886                                 snprintf(xstats_names[stat_idx].name,
1887                                         sizeof(xstats_names[stat_idx].name),
1888                                         "%s",
1889                                         qede_ah_xstats_strings[i].name);
1890                                 stat_idx++;
1891                         }
1892                 }
1893
1894                 rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1895                                          RTE_ETHDEV_QUEUE_STAT_CNTRS);
1896                 for (qid = 0; qid < rxq_stat_cntrs; qid++) {
1897                         for (i = 0; i < RTE_DIM(qede_rxq_xstats_strings); i++) {
1898                                 snprintf(xstats_names[stat_idx].name,
1899                                         sizeof(xstats_names[stat_idx].name),
1900                                         "%.4s%d%s",
1901                                         qede_rxq_xstats_strings[i].name, qid,
1902                                         qede_rxq_xstats_strings[i].name + 4);
1903                                 stat_idx++;
1904                         }
1905                 }
1906         }
1907
1908         return stat_cnt;
1909 }
1910
1911 static int
1912 qede_get_xstats(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1913                 unsigned int n)
1914 {
1915         struct qede_dev *qdev = dev->data->dev_private;
1916         struct ecore_dev *edev = &qdev->edev;
1917         struct ecore_eth_stats stats;
1918         const unsigned int num = qede_get_xstats_count(qdev);
1919         unsigned int i, qid, stat_idx = 0;
1920         unsigned int rxq_stat_cntrs;
1921
1922         if (n < num)
1923                 return num;
1924
1925         ecore_get_vport_stats(edev, &stats);
1926
1927         for (i = 0; i < RTE_DIM(qede_xstats_strings); i++) {
1928                 xstats[stat_idx].value = *(uint64_t *)(((char *)&stats) +
1929                                              qede_xstats_strings[i].offset);
1930                 xstats[stat_idx].id = stat_idx;
1931                 stat_idx++;
1932         }
1933
1934         if (ECORE_IS_BB(edev)) {
1935                 for (i = 0; i < RTE_DIM(qede_bb_xstats_strings); i++) {
1936                         xstats[stat_idx].value =
1937                                         *(uint64_t *)(((char *)&stats) +
1938                                         qede_bb_xstats_strings[i].offset);
1939                         xstats[stat_idx].id = stat_idx;
1940                         stat_idx++;
1941                 }
1942         } else {
1943                 for (i = 0; i < RTE_DIM(qede_ah_xstats_strings); i++) {
1944                         xstats[stat_idx].value =
1945                                         *(uint64_t *)(((char *)&stats) +
1946                                         qede_ah_xstats_strings[i].offset);
1947                         xstats[stat_idx].id = stat_idx;
1948                         stat_idx++;
1949                 }
1950         }
1951
1952         rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1953                                  RTE_ETHDEV_QUEUE_STAT_CNTRS);
1954         for (qid = 0; qid < rxq_stat_cntrs; qid++) {
1955                 for_each_rss(qid) {
1956                         for (i = 0; i < RTE_DIM(qede_rxq_xstats_strings); i++) {
1957                                 xstats[stat_idx].value = *(uint64_t *)(
1958                                         ((char *)(qdev->fp_array[qid].rxq)) +
1959                                          qede_rxq_xstats_strings[i].offset);
1960                                 xstats[stat_idx].id = stat_idx;
1961                                 stat_idx++;
1962                         }
1963                 }
1964         }
1965
1966         return stat_idx;
1967 }
1968
1969 static void
1970 qede_reset_xstats(struct rte_eth_dev *dev)
1971 {
1972         struct qede_dev *qdev = dev->data->dev_private;
1973         struct ecore_dev *edev = &qdev->edev;
1974
1975         ecore_reset_vport_stats(edev);
1976         qede_reset_queue_stats(qdev, true);
1977 }
1978
1979 int qede_dev_set_link_state(struct rte_eth_dev *eth_dev, bool link_up)
1980 {
1981         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1982         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1983         struct qed_link_params link_params;
1984         int rc;
1985
1986         DP_INFO(edev, "setting link state %d\n", link_up);
1987         memset(&link_params, 0, sizeof(link_params));
1988         link_params.link_up = link_up;
1989         rc = qdev->ops->common->set_link(edev, &link_params);
1990         if (rc != ECORE_SUCCESS)
1991                 DP_ERR(edev, "Unable to set link state %d\n", link_up);
1992
1993         return rc;
1994 }
1995
1996 static int qede_dev_set_link_up(struct rte_eth_dev *eth_dev)
1997 {
1998         return qede_dev_set_link_state(eth_dev, true);
1999 }
2000
2001 static int qede_dev_set_link_down(struct rte_eth_dev *eth_dev)
2002 {
2003         return qede_dev_set_link_state(eth_dev, false);
2004 }
2005
2006 static void qede_reset_stats(struct rte_eth_dev *eth_dev)
2007 {
2008         struct qede_dev *qdev = eth_dev->data->dev_private;
2009         struct ecore_dev *edev = &qdev->edev;
2010
2011         ecore_reset_vport_stats(edev);
2012         qede_reset_queue_stats(qdev, false);
2013 }
2014
2015 static void qede_allmulticast_enable(struct rte_eth_dev *eth_dev)
2016 {
2017         enum qed_filter_rx_mode_type type =
2018             QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
2019
2020         if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
2021                 type |= QED_FILTER_RX_MODE_TYPE_PROMISC;
2022
2023         qed_configure_filter_rx_mode(eth_dev, type);
2024 }
2025
2026 static void qede_allmulticast_disable(struct rte_eth_dev *eth_dev)
2027 {
2028         if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
2029                 qed_configure_filter_rx_mode(eth_dev,
2030                                 QED_FILTER_RX_MODE_TYPE_PROMISC);
2031         else
2032                 qed_configure_filter_rx_mode(eth_dev,
2033                                 QED_FILTER_RX_MODE_TYPE_REGULAR);
2034 }
2035
2036 static int
2037 qede_set_mc_addr_list(struct rte_eth_dev *eth_dev, struct ether_addr *mc_addrs,
2038                       uint32_t mc_addrs_num)
2039 {
2040         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2041         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2042         uint8_t i;
2043
2044         if (mc_addrs_num > ECORE_MAX_MC_ADDRS) {
2045                 DP_ERR(edev, "Reached max multicast filters limit,"
2046                              "Please enable multicast promisc mode\n");
2047                 return -ENOSPC;
2048         }
2049
2050         for (i = 0; i < mc_addrs_num; i++) {
2051                 if (!is_multicast_ether_addr(&mc_addrs[i])) {
2052                         DP_ERR(edev, "Not a valid multicast MAC\n");
2053                         return -EINVAL;
2054                 }
2055         }
2056
2057         /* Flush all existing entries */
2058         if (qede_del_mcast_filters(eth_dev))
2059                 return -1;
2060
2061         /* Set new mcast list */
2062         return qede_add_mcast_filters(eth_dev, mc_addrs, mc_addrs_num);
2063 }
2064
2065 /* Update MTU via vport-update without doing port restart.
2066  * The vport must be deactivated before calling this API.
2067  */
2068 int qede_update_mtu(struct rte_eth_dev *eth_dev, uint16_t mtu)
2069 {
2070         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2071         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2072         struct ecore_hwfn *p_hwfn;
2073         int rc;
2074         int i;
2075
2076         if (IS_PF(edev)) {
2077                 struct ecore_sp_vport_update_params params;
2078
2079                 memset(&params, 0, sizeof(struct ecore_sp_vport_update_params));
2080                 params.vport_id = 0;
2081                 params.mtu = mtu;
2082                 params.vport_id = 0;
2083                 for_each_hwfn(edev, i) {
2084                         p_hwfn = &edev->hwfns[i];
2085                         params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2086                         rc = ecore_sp_vport_update(p_hwfn, &params,
2087                                         ECORE_SPQ_MODE_EBLOCK, NULL);
2088                         if (rc != ECORE_SUCCESS)
2089                                 goto err;
2090                 }
2091         } else {
2092                 for_each_hwfn(edev, i) {
2093                         p_hwfn = &edev->hwfns[i];
2094                         rc = ecore_vf_pf_update_mtu(p_hwfn, mtu);
2095                         if (rc == ECORE_INVAL) {
2096                                 DP_INFO(edev, "VF MTU Update TLV not supported\n");
2097                                 /* Recreate vport */
2098                                 rc = qede_start_vport(qdev, mtu);
2099                                 if (rc != ECORE_SUCCESS)
2100                                         goto err;
2101
2102                                 /* Restore config lost due to vport stop */
2103                                 if (eth_dev->data->promiscuous)
2104                                         qede_promiscuous_enable(eth_dev);
2105                                 else
2106                                         qede_promiscuous_disable(eth_dev);
2107
2108                                 if (eth_dev->data->all_multicast)
2109                                         qede_allmulticast_enable(eth_dev);
2110                                 else
2111                                         qede_allmulticast_disable(eth_dev);
2112
2113                                 qede_vlan_offload_set(eth_dev,
2114                                                       qdev->vlan_offload_mask);
2115                         } else if (rc != ECORE_SUCCESS) {
2116                                 goto err;
2117                         }
2118                 }
2119         }
2120         DP_INFO(edev, "%s MTU updated to %u\n", IS_PF(edev) ? "PF" : "VF", mtu);
2121
2122         return 0;
2123
2124 err:
2125         DP_ERR(edev, "Failed to update MTU\n");
2126         return -1;
2127 }
2128
2129 static int qede_flow_ctrl_set(struct rte_eth_dev *eth_dev,
2130                               struct rte_eth_fc_conf *fc_conf)
2131 {
2132         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2133         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2134         struct qed_link_output current_link;
2135         struct qed_link_params params;
2136
2137         memset(&current_link, 0, sizeof(current_link));
2138         qdev->ops->common->get_link(edev, &current_link);
2139
2140         memset(&params, 0, sizeof(params));
2141         params.override_flags |= QED_LINK_OVERRIDE_PAUSE_CONFIG;
2142         if (fc_conf->autoneg) {
2143                 if (!(current_link.supported_caps & QEDE_SUPPORTED_AUTONEG)) {
2144                         DP_ERR(edev, "Autoneg not supported\n");
2145                         return -EINVAL;
2146                 }
2147                 params.pause_config |= QED_LINK_PAUSE_AUTONEG_ENABLE;
2148         }
2149
2150         /* Pause is assumed to be supported (SUPPORTED_Pause) */
2151         if (fc_conf->mode == RTE_FC_FULL)
2152                 params.pause_config |= (QED_LINK_PAUSE_TX_ENABLE |
2153                                         QED_LINK_PAUSE_RX_ENABLE);
2154         if (fc_conf->mode == RTE_FC_TX_PAUSE)
2155                 params.pause_config |= QED_LINK_PAUSE_TX_ENABLE;
2156         if (fc_conf->mode == RTE_FC_RX_PAUSE)
2157                 params.pause_config |= QED_LINK_PAUSE_RX_ENABLE;
2158
2159         params.link_up = true;
2160         (void)qdev->ops->common->set_link(edev, &params);
2161
2162         return 0;
2163 }
2164
2165 static int qede_flow_ctrl_get(struct rte_eth_dev *eth_dev,
2166                               struct rte_eth_fc_conf *fc_conf)
2167 {
2168         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2169         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2170         struct qed_link_output current_link;
2171
2172         memset(&current_link, 0, sizeof(current_link));
2173         qdev->ops->common->get_link(edev, &current_link);
2174
2175         if (current_link.pause_config & QED_LINK_PAUSE_AUTONEG_ENABLE)
2176                 fc_conf->autoneg = true;
2177
2178         if (current_link.pause_config & (QED_LINK_PAUSE_RX_ENABLE |
2179                                          QED_LINK_PAUSE_TX_ENABLE))
2180                 fc_conf->mode = RTE_FC_FULL;
2181         else if (current_link.pause_config & QED_LINK_PAUSE_RX_ENABLE)
2182                 fc_conf->mode = RTE_FC_RX_PAUSE;
2183         else if (current_link.pause_config & QED_LINK_PAUSE_TX_ENABLE)
2184                 fc_conf->mode = RTE_FC_TX_PAUSE;
2185         else
2186                 fc_conf->mode = RTE_FC_NONE;
2187
2188         return 0;
2189 }
2190
2191 static const uint32_t *
2192 qede_dev_supported_ptypes_get(struct rte_eth_dev *eth_dev)
2193 {
2194         static const uint32_t ptypes[] = {
2195                 RTE_PTYPE_L2_ETHER,
2196                 RTE_PTYPE_L2_ETHER_VLAN,
2197                 RTE_PTYPE_L3_IPV4,
2198                 RTE_PTYPE_L3_IPV6,
2199                 RTE_PTYPE_L4_TCP,
2200                 RTE_PTYPE_L4_UDP,
2201                 RTE_PTYPE_TUNNEL_VXLAN,
2202                 RTE_PTYPE_L4_FRAG,
2203                 RTE_PTYPE_TUNNEL_GENEVE,
2204                 RTE_PTYPE_TUNNEL_GRE,
2205                 /* Inner */
2206                 RTE_PTYPE_INNER_L2_ETHER,
2207                 RTE_PTYPE_INNER_L2_ETHER_VLAN,
2208                 RTE_PTYPE_INNER_L3_IPV4,
2209                 RTE_PTYPE_INNER_L3_IPV6,
2210                 RTE_PTYPE_INNER_L4_TCP,
2211                 RTE_PTYPE_INNER_L4_UDP,
2212                 RTE_PTYPE_INNER_L4_FRAG,
2213                 RTE_PTYPE_UNKNOWN
2214         };
2215
2216         if (eth_dev->rx_pkt_burst == qede_recv_pkts)
2217                 return ptypes;
2218
2219         return NULL;
2220 }
2221
2222 static void qede_init_rss_caps(uint8_t *rss_caps, uint64_t hf)
2223 {
2224         *rss_caps = 0;
2225         *rss_caps |= (hf & ETH_RSS_IPV4)              ? ECORE_RSS_IPV4 : 0;
2226         *rss_caps |= (hf & ETH_RSS_IPV6)              ? ECORE_RSS_IPV6 : 0;
2227         *rss_caps |= (hf & ETH_RSS_IPV6_EX)           ? ECORE_RSS_IPV6 : 0;
2228         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_TCP)  ? ECORE_RSS_IPV4_TCP : 0;
2229         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_TCP)  ? ECORE_RSS_IPV6_TCP : 0;
2230         *rss_caps |= (hf & ETH_RSS_IPV6_TCP_EX)       ? ECORE_RSS_IPV6_TCP : 0;
2231         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_UDP)  ? ECORE_RSS_IPV4_UDP : 0;
2232         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_UDP)  ? ECORE_RSS_IPV6_UDP : 0;
2233 }
2234
2235 int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
2236                          struct rte_eth_rss_conf *rss_conf)
2237 {
2238         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2239         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2240         struct ecore_sp_vport_update_params vport_update_params;
2241         struct ecore_rss_params rss_params;
2242         struct ecore_hwfn *p_hwfn;
2243         uint32_t *key = (uint32_t *)rss_conf->rss_key;
2244         uint64_t hf = rss_conf->rss_hf;
2245         uint8_t len = rss_conf->rss_key_len;
2246         uint8_t idx;
2247         uint8_t i;
2248         int rc;
2249
2250         memset(&vport_update_params, 0, sizeof(vport_update_params));
2251         memset(&rss_params, 0, sizeof(rss_params));
2252
2253         DP_INFO(edev, "RSS hf = 0x%lx len = %u key = %p\n",
2254                 (unsigned long)hf, len, key);
2255
2256         if (hf != 0) {
2257                 /* Enabling RSS */
2258                 DP_INFO(edev, "Enabling rss\n");
2259
2260                 /* RSS caps */
2261                 qede_init_rss_caps(&rss_params.rss_caps, hf);
2262                 rss_params.update_rss_capabilities = 1;
2263
2264                 /* RSS hash key */
2265                 if (key) {
2266                         if (len > (ECORE_RSS_KEY_SIZE * sizeof(uint32_t))) {
2267                                 DP_ERR(edev, "RSS key length exceeds limit\n");
2268                                 return -EINVAL;
2269                         }
2270                         DP_INFO(edev, "Applying user supplied hash key\n");
2271                         rss_params.update_rss_key = 1;
2272                         memcpy(&rss_params.rss_key, key, len);
2273                 }
2274                 rss_params.rss_enable = 1;
2275         }
2276
2277         rss_params.update_rss_config = 1;
2278         /* tbl_size has to be set with capabilities */
2279         rss_params.rss_table_size_log = 7;
2280         vport_update_params.vport_id = 0;
2281         /* pass the L2 handles instead of qids */
2282         for (i = 0 ; i < ECORE_RSS_IND_TABLE_SIZE ; i++) {
2283                 idx = i % QEDE_RSS_COUNT(qdev);
2284                 rss_params.rss_ind_table[i] = qdev->fp_array[idx].rxq->handle;
2285         }
2286         vport_update_params.rss_params = &rss_params;
2287
2288         for_each_hwfn(edev, i) {
2289                 p_hwfn = &edev->hwfns[i];
2290                 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2291                 rc = ecore_sp_vport_update(p_hwfn, &vport_update_params,
2292                                            ECORE_SPQ_MODE_EBLOCK, NULL);
2293                 if (rc) {
2294                         DP_ERR(edev, "vport-update for RSS failed\n");
2295                         return rc;
2296                 }
2297         }
2298         qdev->rss_enable = rss_params.rss_enable;
2299
2300         /* Update local structure for hash query */
2301         qdev->rss_conf.rss_hf = hf;
2302         qdev->rss_conf.rss_key_len = len;
2303         if (qdev->rss_enable) {
2304                 if  (qdev->rss_conf.rss_key == NULL) {
2305                         qdev->rss_conf.rss_key = (uint8_t *)malloc(len);
2306                         if (qdev->rss_conf.rss_key == NULL) {
2307                                 DP_ERR(edev, "No memory to store RSS key\n");
2308                                 return -ENOMEM;
2309                         }
2310                 }
2311                 if (key && len) {
2312                         DP_INFO(edev, "Storing RSS key\n");
2313                         memcpy(qdev->rss_conf.rss_key, key, len);
2314                 }
2315         } else if (!qdev->rss_enable && len == 0) {
2316                 if (qdev->rss_conf.rss_key) {
2317                         free(qdev->rss_conf.rss_key);
2318                         qdev->rss_conf.rss_key = NULL;
2319                         DP_INFO(edev, "Free RSS key\n");
2320                 }
2321         }
2322
2323         return 0;
2324 }
2325
2326 static int qede_rss_hash_conf_get(struct rte_eth_dev *eth_dev,
2327                            struct rte_eth_rss_conf *rss_conf)
2328 {
2329         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2330
2331         rss_conf->rss_hf = qdev->rss_conf.rss_hf;
2332         rss_conf->rss_key_len = qdev->rss_conf.rss_key_len;
2333
2334         if (rss_conf->rss_key && qdev->rss_conf.rss_key)
2335                 memcpy(rss_conf->rss_key, qdev->rss_conf.rss_key,
2336                        rss_conf->rss_key_len);
2337         return 0;
2338 }
2339
2340 static bool qede_update_rss_parm_cmt(struct ecore_dev *edev,
2341                                     struct ecore_rss_params *rss)
2342 {
2343         int i, fn;
2344         bool rss_mode = 1; /* enable */
2345         struct ecore_queue_cid *cid;
2346         struct ecore_rss_params *t_rss;
2347
2348         /* In regular scenario, we'd simply need to take input handlers.
2349          * But in CMT, we'd have to split the handlers according to the
2350          * engine they were configured on. We'd then have to understand
2351          * whether RSS is really required, since 2-queues on CMT doesn't
2352          * require RSS.
2353          */
2354
2355         /* CMT should be round-robin */
2356         for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++) {
2357                 cid = rss->rss_ind_table[i];
2358
2359                 if (cid->p_owner == ECORE_LEADING_HWFN(edev))
2360                         t_rss = &rss[0];
2361                 else
2362                         t_rss = &rss[1];
2363
2364                 t_rss->rss_ind_table[i / edev->num_hwfns] = cid;
2365         }
2366
2367         t_rss = &rss[1];
2368         t_rss->update_rss_ind_table = 1;
2369         t_rss->rss_table_size_log = 7;
2370         t_rss->update_rss_config = 1;
2371
2372         /* Make sure RSS is actually required */
2373         for_each_hwfn(edev, fn) {
2374                 for (i = 1; i < ECORE_RSS_IND_TABLE_SIZE / edev->num_hwfns;
2375                      i++) {
2376                         if (rss[fn].rss_ind_table[i] !=
2377                             rss[fn].rss_ind_table[0])
2378                                 break;
2379                 }
2380
2381                 if (i == ECORE_RSS_IND_TABLE_SIZE / edev->num_hwfns) {
2382                         DP_INFO(edev,
2383                                 "CMT - 1 queue per-hwfn; Disabling RSS\n");
2384                         rss_mode = 0;
2385                         goto out;
2386                 }
2387         }
2388
2389 out:
2390         t_rss->rss_enable = rss_mode;
2391
2392         return rss_mode;
2393 }
2394
2395 int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
2396                          struct rte_eth_rss_reta_entry64 *reta_conf,
2397                          uint16_t reta_size)
2398 {
2399         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2400         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2401         struct ecore_sp_vport_update_params vport_update_params;
2402         struct ecore_rss_params *params;
2403         struct ecore_hwfn *p_hwfn;
2404         uint16_t i, idx, shift;
2405         uint8_t entry;
2406         int rc = 0;
2407
2408         if (reta_size > ETH_RSS_RETA_SIZE_128) {
2409                 DP_ERR(edev, "reta_size %d is not supported by hardware\n",
2410                        reta_size);
2411                 return -EINVAL;
2412         }
2413
2414         memset(&vport_update_params, 0, sizeof(vport_update_params));
2415         params = rte_zmalloc("qede_rss", sizeof(*params) * edev->num_hwfns,
2416                              RTE_CACHE_LINE_SIZE);
2417         if (params == NULL) {
2418                 DP_ERR(edev, "failed to allocate memory\n");
2419                 return -ENOMEM;
2420         }
2421
2422         for (i = 0; i < reta_size; i++) {
2423                 idx = i / RTE_RETA_GROUP_SIZE;
2424                 shift = i % RTE_RETA_GROUP_SIZE;
2425                 if (reta_conf[idx].mask & (1ULL << shift)) {
2426                         entry = reta_conf[idx].reta[shift];
2427                         /* Pass rxq handles to ecore */
2428                         params->rss_ind_table[i] =
2429                                         qdev->fp_array[entry].rxq->handle;
2430                         /* Update the local copy for RETA query command */
2431                         qdev->rss_ind_table[i] = entry;
2432                 }
2433         }
2434
2435         params->update_rss_ind_table = 1;
2436         params->rss_table_size_log = 7;
2437         params->update_rss_config = 1;
2438
2439         /* Fix up RETA for CMT mode device */
2440         if (ECORE_IS_CMT(edev))
2441                 qdev->rss_enable = qede_update_rss_parm_cmt(edev,
2442                                                             params);
2443         vport_update_params.vport_id = 0;
2444         /* Use the current value of rss_enable */
2445         params->rss_enable = qdev->rss_enable;
2446         vport_update_params.rss_params = params;
2447
2448         for_each_hwfn(edev, i) {
2449                 p_hwfn = &edev->hwfns[i];
2450                 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2451                 rc = ecore_sp_vport_update(p_hwfn, &vport_update_params,
2452                                            ECORE_SPQ_MODE_EBLOCK, NULL);
2453                 if (rc) {
2454                         DP_ERR(edev, "vport-update for RSS failed\n");
2455                         goto out;
2456                 }
2457         }
2458
2459 out:
2460         rte_free(params);
2461         return rc;
2462 }
2463
2464 static int qede_rss_reta_query(struct rte_eth_dev *eth_dev,
2465                                struct rte_eth_rss_reta_entry64 *reta_conf,
2466                                uint16_t reta_size)
2467 {
2468         struct qede_dev *qdev = eth_dev->data->dev_private;
2469         struct ecore_dev *edev = &qdev->edev;
2470         uint16_t i, idx, shift;
2471         uint8_t entry;
2472
2473         if (reta_size > ETH_RSS_RETA_SIZE_128) {
2474                 DP_ERR(edev, "reta_size %d is not supported\n",
2475                        reta_size);
2476                 return -EINVAL;
2477         }
2478
2479         for (i = 0; i < reta_size; i++) {
2480                 idx = i / RTE_RETA_GROUP_SIZE;
2481                 shift = i % RTE_RETA_GROUP_SIZE;
2482                 if (reta_conf[idx].mask & (1ULL << shift)) {
2483                         entry = qdev->rss_ind_table[i];
2484                         reta_conf[idx].reta[shift] = entry;
2485                 }
2486         }
2487
2488         return 0;
2489 }
2490
2491
2492
2493 static int qede_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
2494 {
2495         struct qede_dev *qdev = QEDE_INIT_QDEV(dev);
2496         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2497         struct rte_eth_dev_info dev_info = {0};
2498         struct qede_fastpath *fp;
2499         uint32_t max_rx_pkt_len;
2500         uint32_t frame_size;
2501         uint16_t rx_buf_size;
2502         uint16_t bufsz;
2503         bool restart = false;
2504         int i;
2505
2506         PMD_INIT_FUNC_TRACE(edev);
2507         qede_dev_info_get(dev, &dev_info);
2508         max_rx_pkt_len = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
2509         frame_size = max_rx_pkt_len + QEDE_ETH_OVERHEAD;
2510         if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen)) {
2511                 DP_ERR(edev, "MTU %u out of range, %u is maximum allowable\n",
2512                        mtu, dev_info.max_rx_pktlen - ETHER_HDR_LEN -
2513                         ETHER_CRC_LEN - QEDE_ETH_OVERHEAD);
2514                 return -EINVAL;
2515         }
2516         if (!dev->data->scattered_rx &&
2517             frame_size > dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM) {
2518                 DP_INFO(edev, "MTU greater than minimum RX buffer size of %u\n",
2519                         dev->data->min_rx_buf_size);
2520                 return -EINVAL;
2521         }
2522         /* Temporarily replace I/O functions with dummy ones. It cannot
2523          * be set to NULL because rte_eth_rx_burst() doesn't check for NULL.
2524          */
2525         dev->rx_pkt_burst = qede_rxtx_pkts_dummy;
2526         dev->tx_pkt_burst = qede_rxtx_pkts_dummy;
2527         if (dev->data->dev_started) {
2528                 dev->data->dev_started = 0;
2529                 qede_dev_stop(dev);
2530                 restart = true;
2531         }
2532         rte_delay_ms(1000);
2533         qdev->mtu = mtu;
2534
2535         /* Fix up RX buf size for all queues of the port */
2536         for_each_rss(i) {
2537                 fp = &qdev->fp_array[i];
2538                 if (fp->rxq != NULL) {
2539                         bufsz = (uint16_t)rte_pktmbuf_data_room_size(
2540                                 fp->rxq->mb_pool) - RTE_PKTMBUF_HEADROOM;
2541                         if (dev->data->scattered_rx)
2542                                 rx_buf_size = bufsz + ETHER_HDR_LEN +
2543                                               ETHER_CRC_LEN + QEDE_ETH_OVERHEAD;
2544                         else
2545                                 rx_buf_size = frame_size;
2546                         rx_buf_size = QEDE_CEIL_TO_CACHE_LINE_SIZE(rx_buf_size);
2547                         fp->rxq->rx_buf_size = rx_buf_size;
2548                         DP_INFO(edev, "RX buffer size %u\n", rx_buf_size);
2549                 }
2550         }
2551         if (max_rx_pkt_len > ETHER_MAX_LEN)
2552                 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
2553         else
2554                 dev->data->dev_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
2555
2556         if (!dev->data->dev_started && restart) {
2557                 qede_dev_start(dev);
2558                 dev->data->dev_started = 1;
2559         }
2560
2561         /* update max frame size */
2562         dev->data->dev_conf.rxmode.max_rx_pkt_len = max_rx_pkt_len;
2563         /* Reassign back */
2564         dev->rx_pkt_burst = qede_recv_pkts;
2565         dev->tx_pkt_burst = qede_xmit_pkts;
2566
2567         return 0;
2568 }
2569
2570 static int
2571 qede_udp_dst_port_del(struct rte_eth_dev *eth_dev,
2572                       struct rte_eth_udp_tunnel *tunnel_udp)
2573 {
2574         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2575         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2576         struct ecore_tunnel_info tunn; /* @DPDK */
2577         uint16_t udp_port;
2578         int rc;
2579
2580         PMD_INIT_FUNC_TRACE(edev);
2581
2582         memset(&tunn, 0, sizeof(tunn));
2583
2584         switch (tunnel_udp->prot_type) {
2585         case RTE_TUNNEL_TYPE_VXLAN:
2586                 if (qdev->vxlan.udp_port != tunnel_udp->udp_port) {
2587                         DP_ERR(edev, "UDP port %u doesn't exist\n",
2588                                 tunnel_udp->udp_port);
2589                         return ECORE_INVAL;
2590                 }
2591                 udp_port = 0;
2592
2593                 tunn.vxlan_port.b_update_port = true;
2594                 tunn.vxlan_port.port = udp_port;
2595
2596                 rc = qede_tunnel_update(qdev, &tunn);
2597                 if (rc != ECORE_SUCCESS) {
2598                         DP_ERR(edev, "Unable to config UDP port %u\n",
2599                                tunn.vxlan_port.port);
2600                         return rc;
2601                 }
2602
2603                 qdev->vxlan.udp_port = udp_port;
2604                 /* If the request is to delete UDP port and if the number of
2605                  * VXLAN filters have reached 0 then VxLAN offload can be be
2606                  * disabled.
2607                  */
2608                 if (qdev->vxlan.enable && qdev->vxlan.num_filters == 0)
2609                         return qede_vxlan_enable(eth_dev,
2610                                         ECORE_TUNN_CLSS_MAC_VLAN, false);
2611
2612                 break;
2613         case RTE_TUNNEL_TYPE_GENEVE:
2614                 if (qdev->geneve.udp_port != tunnel_udp->udp_port) {
2615                         DP_ERR(edev, "UDP port %u doesn't exist\n",
2616                                 tunnel_udp->udp_port);
2617                         return ECORE_INVAL;
2618                 }
2619
2620                 udp_port = 0;
2621
2622                 tunn.geneve_port.b_update_port = true;
2623                 tunn.geneve_port.port = udp_port;
2624
2625                 rc = qede_tunnel_update(qdev, &tunn);
2626                 if (rc != ECORE_SUCCESS) {
2627                         DP_ERR(edev, "Unable to config UDP port %u\n",
2628                                tunn.vxlan_port.port);
2629                         return rc;
2630                 }
2631
2632                 qdev->vxlan.udp_port = udp_port;
2633                 /* If the request is to delete UDP port and if the number of
2634                  * GENEVE filters have reached 0 then GENEVE offload can be be
2635                  * disabled.
2636                  */
2637                 if (qdev->geneve.enable && qdev->geneve.num_filters == 0)
2638                         return qede_geneve_enable(eth_dev,
2639                                         ECORE_TUNN_CLSS_MAC_VLAN, false);
2640
2641                 break;
2642
2643         default:
2644                 return ECORE_INVAL;
2645         }
2646
2647         return 0;
2648
2649 }
2650 static int
2651 qede_udp_dst_port_add(struct rte_eth_dev *eth_dev,
2652                       struct rte_eth_udp_tunnel *tunnel_udp)
2653 {
2654         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2655         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2656         struct ecore_tunnel_info tunn; /* @DPDK */
2657         uint16_t udp_port;
2658         int rc;
2659
2660         PMD_INIT_FUNC_TRACE(edev);
2661
2662         memset(&tunn, 0, sizeof(tunn));
2663
2664         switch (tunnel_udp->prot_type) {
2665         case RTE_TUNNEL_TYPE_VXLAN:
2666                 if (qdev->vxlan.udp_port == tunnel_udp->udp_port) {
2667                         DP_INFO(edev,
2668                                 "UDP port %u for VXLAN was already configured\n",
2669                                 tunnel_udp->udp_port);
2670                         return ECORE_SUCCESS;
2671                 }
2672
2673                 /* Enable VxLAN tunnel with default MAC/VLAN classification if
2674                  * it was not enabled while adding VXLAN filter before UDP port
2675                  * update.
2676                  */
2677                 if (!qdev->vxlan.enable) {
2678                         rc = qede_vxlan_enable(eth_dev,
2679                                 ECORE_TUNN_CLSS_MAC_VLAN, true);
2680                         if (rc != ECORE_SUCCESS) {
2681                                 DP_ERR(edev, "Failed to enable VXLAN "
2682                                         "prior to updating UDP port\n");
2683                                 return rc;
2684                         }
2685                 }
2686                 udp_port = tunnel_udp->udp_port;
2687
2688                 tunn.vxlan_port.b_update_port = true;
2689                 tunn.vxlan_port.port = udp_port;
2690
2691                 rc = qede_tunnel_update(qdev, &tunn);
2692                 if (rc != ECORE_SUCCESS) {
2693                         DP_ERR(edev, "Unable to config UDP port %u for VXLAN\n",
2694                                udp_port);
2695                         return rc;
2696                 }
2697
2698                 DP_INFO(edev, "Updated UDP port %u for VXLAN\n", udp_port);
2699
2700                 qdev->vxlan.udp_port = udp_port;
2701                 break;
2702         case RTE_TUNNEL_TYPE_GENEVE:
2703                 if (qdev->geneve.udp_port == tunnel_udp->udp_port) {
2704                         DP_INFO(edev,
2705                                 "UDP port %u for GENEVE was already configured\n",
2706                                 tunnel_udp->udp_port);
2707                         return ECORE_SUCCESS;
2708                 }
2709
2710                 /* Enable GENEVE tunnel with default MAC/VLAN classification if
2711                  * it was not enabled while adding GENEVE filter before UDP port
2712                  * update.
2713                  */
2714                 if (!qdev->geneve.enable) {
2715                         rc = qede_geneve_enable(eth_dev,
2716                                 ECORE_TUNN_CLSS_MAC_VLAN, true);
2717                         if (rc != ECORE_SUCCESS) {
2718                                 DP_ERR(edev, "Failed to enable GENEVE "
2719                                         "prior to updating UDP port\n");
2720                                 return rc;
2721                         }
2722                 }
2723                 udp_port = tunnel_udp->udp_port;
2724
2725                 tunn.geneve_port.b_update_port = true;
2726                 tunn.geneve_port.port = udp_port;
2727
2728                 rc = qede_tunnel_update(qdev, &tunn);
2729                 if (rc != ECORE_SUCCESS) {
2730                         DP_ERR(edev, "Unable to config UDP port %u for GENEVE\n",
2731                                udp_port);
2732                         return rc;
2733                 }
2734
2735                 DP_INFO(edev, "Updated UDP port %u for GENEVE\n", udp_port);
2736
2737                 qdev->geneve.udp_port = udp_port;
2738                 break;
2739         default:
2740                 return ECORE_INVAL;
2741         }
2742
2743         return 0;
2744 }
2745
2746 static void qede_get_ecore_tunn_params(uint32_t filter, uint32_t *type,
2747                                        uint32_t *clss, char *str)
2748 {
2749         uint16_t j;
2750         *clss = MAX_ECORE_TUNN_CLSS;
2751
2752         for (j = 0; j < RTE_DIM(qede_tunn_types); j++) {
2753                 if (filter == qede_tunn_types[j].rte_filter_type) {
2754                         *type = qede_tunn_types[j].qede_type;
2755                         *clss = qede_tunn_types[j].qede_tunn_clss;
2756                         strcpy(str, qede_tunn_types[j].string);
2757                         return;
2758                 }
2759         }
2760 }
2761
2762 static int
2763 qede_set_ucast_tunn_cmn_param(struct ecore_filter_ucast *ucast,
2764                               const struct rte_eth_tunnel_filter_conf *conf,
2765                               uint32_t type)
2766 {
2767         /* Init commmon ucast params first */
2768         qede_set_ucast_cmn_params(ucast);
2769
2770         /* Copy out the required fields based on classification type */
2771         ucast->type = type;
2772
2773         switch (type) {
2774         case ECORE_FILTER_VNI:
2775                 ucast->vni = conf->tenant_id;
2776         break;
2777         case ECORE_FILTER_INNER_VLAN:
2778                 ucast->vlan = conf->inner_vlan;
2779         break;
2780         case ECORE_FILTER_MAC:
2781                 memcpy(ucast->mac, conf->outer_mac.addr_bytes,
2782                        ETHER_ADDR_LEN);
2783         break;
2784         case ECORE_FILTER_INNER_MAC:
2785                 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2786                        ETHER_ADDR_LEN);
2787         break;
2788         case ECORE_FILTER_MAC_VNI_PAIR:
2789                 memcpy(ucast->mac, conf->outer_mac.addr_bytes,
2790                         ETHER_ADDR_LEN);
2791                 ucast->vni = conf->tenant_id;
2792         break;
2793         case ECORE_FILTER_INNER_MAC_VNI_PAIR:
2794                 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2795                         ETHER_ADDR_LEN);
2796                 ucast->vni = conf->tenant_id;
2797         break;
2798         case ECORE_FILTER_INNER_PAIR:
2799                 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2800                         ETHER_ADDR_LEN);
2801                 ucast->vlan = conf->inner_vlan;
2802         break;
2803         default:
2804                 return -EINVAL;
2805         }
2806
2807         return ECORE_SUCCESS;
2808 }
2809
2810 static int
2811 _qede_tunn_filter_config(struct rte_eth_dev *eth_dev,
2812                          const struct rte_eth_tunnel_filter_conf *conf,
2813                          __attribute__((unused)) enum rte_filter_op filter_op,
2814                          enum ecore_tunn_clss *clss,
2815                          bool add)
2816 {
2817         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2818         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2819         struct ecore_filter_ucast ucast = {0};
2820         enum ecore_filter_ucast_type type;
2821         uint16_t filter_type = 0;
2822         char str[80];
2823         int rc;
2824
2825         filter_type = conf->filter_type;
2826         /* Determine if the given filter classification is supported */
2827         qede_get_ecore_tunn_params(filter_type, &type, clss, str);
2828         if (*clss == MAX_ECORE_TUNN_CLSS) {
2829                 DP_ERR(edev, "Unsupported filter type\n");
2830                 return -EINVAL;
2831         }
2832         /* Init tunnel ucast params */
2833         rc = qede_set_ucast_tunn_cmn_param(&ucast, conf, type);
2834         if (rc != ECORE_SUCCESS) {
2835                 DP_ERR(edev, "Unsupported Tunnel filter type 0x%x\n",
2836                 conf->filter_type);
2837                 return rc;
2838         }
2839         DP_INFO(edev, "Rule: \"%s\", op %d, type 0x%x\n",
2840                 str, filter_op, ucast.type);
2841
2842         ucast.opcode = add ? ECORE_FILTER_ADD : ECORE_FILTER_REMOVE;
2843
2844         /* Skip MAC/VLAN if filter is based on VNI */
2845         if (!(filter_type & ETH_TUNNEL_FILTER_TENID)) {
2846                 rc = qede_mac_int_ops(eth_dev, &ucast, add);
2847                 if ((rc == 0) && add) {
2848                         /* Enable accept anyvlan */
2849                         qede_config_accept_any_vlan(qdev, true);
2850                 }
2851         } else {
2852                 rc = qede_ucast_filter(eth_dev, &ucast, add);
2853                 if (rc == 0)
2854                         rc = ecore_filter_ucast_cmd(edev, &ucast,
2855                                             ECORE_SPQ_MODE_CB, NULL);
2856         }
2857
2858         return rc;
2859 }
2860
2861 static int
2862 qede_tunn_filter_config(struct rte_eth_dev *eth_dev,
2863                         enum rte_filter_op filter_op,
2864                         const struct rte_eth_tunnel_filter_conf *conf)
2865 {
2866         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2867         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2868         enum ecore_tunn_clss clss = MAX_ECORE_TUNN_CLSS;
2869         bool add;
2870         int rc;
2871
2872         PMD_INIT_FUNC_TRACE(edev);
2873
2874         switch (filter_op) {
2875         case RTE_ETH_FILTER_ADD:
2876                 add = true;
2877                 break;
2878         case RTE_ETH_FILTER_DELETE:
2879                 add = false;
2880                 break;
2881         default:
2882                 DP_ERR(edev, "Unsupported operation %d\n", filter_op);
2883                 return -EINVAL;
2884         }
2885
2886         if (IS_VF(edev))
2887                 return qede_tunn_enable(eth_dev,
2888                                         ECORE_TUNN_CLSS_MAC_VLAN,
2889                                         conf->tunnel_type, add);
2890
2891         rc = _qede_tunn_filter_config(eth_dev, conf, filter_op, &clss, add);
2892         if (rc != ECORE_SUCCESS)
2893                 return rc;
2894
2895         if (add) {
2896                 if (conf->tunnel_type == RTE_TUNNEL_TYPE_VXLAN) {
2897                         qdev->vxlan.num_filters++;
2898                         qdev->vxlan.filter_type = conf->filter_type;
2899                 } else { /* GENEVE */
2900                         qdev->geneve.num_filters++;
2901                         qdev->geneve.filter_type = conf->filter_type;
2902                 }
2903
2904                 if (!qdev->vxlan.enable || !qdev->geneve.enable ||
2905                     !qdev->ipgre.enable)
2906                         return qede_tunn_enable(eth_dev, clss,
2907                                                 conf->tunnel_type,
2908                                                 true);
2909         } else {
2910                 if (conf->tunnel_type == RTE_TUNNEL_TYPE_VXLAN)
2911                         qdev->vxlan.num_filters--;
2912                 else /*GENEVE*/
2913                         qdev->geneve.num_filters--;
2914
2915                 /* Disable VXLAN if VXLAN filters become 0 */
2916                 if ((qdev->vxlan.num_filters == 0) ||
2917                     (qdev->geneve.num_filters == 0))
2918                         return qede_tunn_enable(eth_dev, clss,
2919                                                 conf->tunnel_type,
2920                                                 false);
2921         }
2922
2923         return 0;
2924 }
2925
2926 int qede_dev_filter_ctrl(struct rte_eth_dev *eth_dev,
2927                          enum rte_filter_type filter_type,
2928                          enum rte_filter_op filter_op,
2929                          void *arg)
2930 {
2931         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2932         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2933         struct rte_eth_tunnel_filter_conf *filter_conf =
2934                         (struct rte_eth_tunnel_filter_conf *)arg;
2935
2936         switch (filter_type) {
2937         case RTE_ETH_FILTER_TUNNEL:
2938                 switch (filter_conf->tunnel_type) {
2939                 case RTE_TUNNEL_TYPE_VXLAN:
2940                 case RTE_TUNNEL_TYPE_GENEVE:
2941                 case RTE_TUNNEL_TYPE_IP_IN_GRE:
2942                         DP_INFO(edev,
2943                                 "Packet steering to the specified Rx queue"
2944                                 " is not supported with UDP tunneling");
2945                         return(qede_tunn_filter_config(eth_dev, filter_op,
2946                                                       filter_conf));
2947                 case RTE_TUNNEL_TYPE_TEREDO:
2948                 case RTE_TUNNEL_TYPE_NVGRE:
2949                 case RTE_L2_TUNNEL_TYPE_E_TAG:
2950                         DP_ERR(edev, "Unsupported tunnel type %d\n",
2951                                 filter_conf->tunnel_type);
2952                         return -EINVAL;
2953                 case RTE_TUNNEL_TYPE_NONE:
2954                 default:
2955                         return 0;
2956                 }
2957                 break;
2958         case RTE_ETH_FILTER_FDIR:
2959                 return qede_fdir_filter_conf(eth_dev, filter_op, arg);
2960         case RTE_ETH_FILTER_NTUPLE:
2961                 return qede_ntuple_filter_conf(eth_dev, filter_op, arg);
2962         case RTE_ETH_FILTER_MACVLAN:
2963         case RTE_ETH_FILTER_ETHERTYPE:
2964         case RTE_ETH_FILTER_FLEXIBLE:
2965         case RTE_ETH_FILTER_SYN:
2966         case RTE_ETH_FILTER_HASH:
2967         case RTE_ETH_FILTER_L2_TUNNEL:
2968         case RTE_ETH_FILTER_MAX:
2969         default:
2970                 DP_ERR(edev, "Unsupported filter type %d\n",
2971                         filter_type);
2972                 return -EINVAL;
2973         }
2974
2975         return 0;
2976 }
2977
2978 static const struct eth_dev_ops qede_eth_dev_ops = {
2979         .dev_configure = qede_dev_configure,
2980         .dev_infos_get = qede_dev_info_get,
2981         .rx_queue_setup = qede_rx_queue_setup,
2982         .rx_queue_release = qede_rx_queue_release,
2983         .tx_queue_setup = qede_tx_queue_setup,
2984         .tx_queue_release = qede_tx_queue_release,
2985         .dev_start = qede_dev_start,
2986         .dev_set_link_up = qede_dev_set_link_up,
2987         .dev_set_link_down = qede_dev_set_link_down,
2988         .link_update = qede_link_update,
2989         .promiscuous_enable = qede_promiscuous_enable,
2990         .promiscuous_disable = qede_promiscuous_disable,
2991         .allmulticast_enable = qede_allmulticast_enable,
2992         .allmulticast_disable = qede_allmulticast_disable,
2993         .set_mc_addr_list = qede_set_mc_addr_list,
2994         .dev_stop = qede_dev_stop,
2995         .dev_close = qede_dev_close,
2996         .stats_get = qede_get_stats,
2997         .stats_reset = qede_reset_stats,
2998         .xstats_get = qede_get_xstats,
2999         .xstats_reset = qede_reset_xstats,
3000         .xstats_get_names = qede_get_xstats_names,
3001         .mac_addr_add = qede_mac_addr_add,
3002         .mac_addr_remove = qede_mac_addr_remove,
3003         .mac_addr_set = qede_mac_addr_set,
3004         .vlan_offload_set = qede_vlan_offload_set,
3005         .vlan_filter_set = qede_vlan_filter_set,
3006         .flow_ctrl_set = qede_flow_ctrl_set,
3007         .flow_ctrl_get = qede_flow_ctrl_get,
3008         .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
3009         .rss_hash_update = qede_rss_hash_update,
3010         .rss_hash_conf_get = qede_rss_hash_conf_get,
3011         .reta_update  = qede_rss_reta_update,
3012         .reta_query  = qede_rss_reta_query,
3013         .mtu_set = qede_set_mtu,
3014         .filter_ctrl = qede_dev_filter_ctrl,
3015         .udp_tunnel_port_add = qede_udp_dst_port_add,
3016         .udp_tunnel_port_del = qede_udp_dst_port_del,
3017 };
3018
3019 static const struct eth_dev_ops qede_eth_vf_dev_ops = {
3020         .dev_configure = qede_dev_configure,
3021         .dev_infos_get = qede_dev_info_get,
3022         .rx_queue_setup = qede_rx_queue_setup,
3023         .rx_queue_release = qede_rx_queue_release,
3024         .tx_queue_setup = qede_tx_queue_setup,
3025         .tx_queue_release = qede_tx_queue_release,
3026         .dev_start = qede_dev_start,
3027         .dev_set_link_up = qede_dev_set_link_up,
3028         .dev_set_link_down = qede_dev_set_link_down,
3029         .link_update = qede_link_update,
3030         .promiscuous_enable = qede_promiscuous_enable,
3031         .promiscuous_disable = qede_promiscuous_disable,
3032         .allmulticast_enable = qede_allmulticast_enable,
3033         .allmulticast_disable = qede_allmulticast_disable,
3034         .set_mc_addr_list = qede_set_mc_addr_list,
3035         .dev_stop = qede_dev_stop,
3036         .dev_close = qede_dev_close,
3037         .stats_get = qede_get_stats,
3038         .stats_reset = qede_reset_stats,
3039         .xstats_get = qede_get_xstats,
3040         .xstats_reset = qede_reset_xstats,
3041         .xstats_get_names = qede_get_xstats_names,
3042         .vlan_offload_set = qede_vlan_offload_set,
3043         .vlan_filter_set = qede_vlan_filter_set,
3044         .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
3045         .rss_hash_update = qede_rss_hash_update,
3046         .rss_hash_conf_get = qede_rss_hash_conf_get,
3047         .reta_update  = qede_rss_reta_update,
3048         .reta_query  = qede_rss_reta_query,
3049         .mtu_set = qede_set_mtu,
3050         .udp_tunnel_port_add = qede_udp_dst_port_add,
3051         .udp_tunnel_port_del = qede_udp_dst_port_del,
3052         .mac_addr_add = qede_mac_addr_add,
3053         .mac_addr_remove = qede_mac_addr_remove,
3054         .mac_addr_set = qede_mac_addr_set,
3055 };
3056
3057 static void qede_update_pf_params(struct ecore_dev *edev)
3058 {
3059         struct ecore_pf_params pf_params;
3060
3061         memset(&pf_params, 0, sizeof(struct ecore_pf_params));
3062         pf_params.eth_pf_params.num_cons = QEDE_PF_NUM_CONNS;
3063         pf_params.eth_pf_params.num_arfs_filters = QEDE_RFS_MAX_FLTR;
3064         qed_ops->common->update_pf_params(edev, &pf_params);
3065 }
3066
3067 static int qede_common_dev_init(struct rte_eth_dev *eth_dev, bool is_vf)
3068 {
3069         struct rte_pci_device *pci_dev;
3070         struct rte_pci_addr pci_addr;
3071         struct qede_dev *adapter;
3072         struct ecore_dev *edev;
3073         struct qed_dev_eth_info dev_info;
3074         struct qed_slowpath_params params;
3075         static bool do_once = true;
3076         uint8_t bulletin_change;
3077         uint8_t vf_mac[ETHER_ADDR_LEN];
3078         uint8_t is_mac_forced;
3079         bool is_mac_exist;
3080         /* Fix up ecore debug level */
3081         uint32_t dp_module = ~0 & ~ECORE_MSG_HW;
3082         uint8_t dp_level = ECORE_LEVEL_VERBOSE;
3083         uint32_t int_mode;
3084         int rc;
3085
3086         /* Extract key data structures */
3087         adapter = eth_dev->data->dev_private;
3088         adapter->ethdev = eth_dev;
3089         edev = &adapter->edev;
3090         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
3091         pci_addr = pci_dev->addr;
3092
3093         PMD_INIT_FUNC_TRACE(edev);
3094
3095         snprintf(edev->name, NAME_SIZE, PCI_SHORT_PRI_FMT ":dpdk-port-%u",
3096                  pci_addr.bus, pci_addr.devid, pci_addr.function,
3097                  eth_dev->data->port_id);
3098
3099         eth_dev->rx_pkt_burst = qede_recv_pkts;
3100         eth_dev->tx_pkt_burst = qede_xmit_pkts;
3101         eth_dev->tx_pkt_prepare = qede_xmit_prep_pkts;
3102
3103         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
3104                 DP_ERR(edev, "Skipping device init from secondary process\n");
3105                 return 0;
3106         }
3107
3108         rte_eth_copy_pci_info(eth_dev, pci_dev);
3109
3110         /* @DPDK */
3111         edev->vendor_id = pci_dev->id.vendor_id;
3112         edev->device_id = pci_dev->id.device_id;
3113
3114         qed_ops = qed_get_eth_ops();
3115         if (!qed_ops) {
3116                 DP_ERR(edev, "Failed to get qed_eth_ops_pass\n");
3117                 return -EINVAL;
3118         }
3119
3120         DP_INFO(edev, "Starting qede probe\n");
3121         rc = qed_ops->common->probe(edev, pci_dev, dp_module,
3122                                     dp_level, is_vf);
3123         if (rc != 0) {
3124                 DP_ERR(edev, "qede probe failed rc %d\n", rc);
3125                 return -ENODEV;
3126         }
3127         qede_update_pf_params(edev);
3128
3129         switch (pci_dev->intr_handle.type) {
3130         case RTE_INTR_HANDLE_UIO_INTX:
3131         case RTE_INTR_HANDLE_VFIO_LEGACY:
3132                 int_mode = ECORE_INT_MODE_INTA;
3133                 rte_intr_callback_register(&pci_dev->intr_handle,
3134                                            qede_interrupt_handler_intx,
3135                                            (void *)eth_dev);
3136                 break;
3137         default:
3138                 int_mode = ECORE_INT_MODE_MSIX;
3139                 rte_intr_callback_register(&pci_dev->intr_handle,
3140                                            qede_interrupt_handler,
3141                                            (void *)eth_dev);
3142         }
3143
3144         if (rte_intr_enable(&pci_dev->intr_handle)) {
3145                 DP_ERR(edev, "rte_intr_enable() failed\n");
3146                 return -ENODEV;
3147         }
3148
3149         /* Start the Slowpath-process */
3150         memset(&params, 0, sizeof(struct qed_slowpath_params));
3151
3152         params.int_mode = int_mode;
3153         params.drv_major = QEDE_PMD_VERSION_MAJOR;
3154         params.drv_minor = QEDE_PMD_VERSION_MINOR;
3155         params.drv_rev = QEDE_PMD_VERSION_REVISION;
3156         params.drv_eng = QEDE_PMD_VERSION_PATCH;
3157         strncpy((char *)params.name, QEDE_PMD_VER_PREFIX,
3158                 QEDE_PMD_DRV_VER_STR_SIZE);
3159
3160         /* For CMT mode device do periodic polling for slowpath events.
3161          * This is required since uio device uses only one MSI-x
3162          * interrupt vector but we need one for each engine.
3163          */
3164         if (ECORE_IS_CMT(edev) && IS_PF(edev)) {
3165                 rc = rte_eal_alarm_set(QEDE_SP_TIMER_PERIOD,
3166                                        qede_poll_sp_sb_cb,
3167                                        (void *)eth_dev);
3168                 if (rc != 0) {
3169                         DP_ERR(edev, "Unable to start periodic"
3170                                      " timer rc %d\n", rc);
3171                         return -EINVAL;
3172                 }
3173         }
3174
3175         rc = qed_ops->common->slowpath_start(edev, &params);
3176         if (rc) {
3177                 DP_ERR(edev, "Cannot start slowpath rc = %d\n", rc);
3178                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
3179                                      (void *)eth_dev);
3180                 return -ENODEV;
3181         }
3182
3183         rc = qed_ops->fill_dev_info(edev, &dev_info);
3184         if (rc) {
3185                 DP_ERR(edev, "Cannot get device_info rc %d\n", rc);
3186                 qed_ops->common->slowpath_stop(edev);
3187                 qed_ops->common->remove(edev);
3188                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
3189                                      (void *)eth_dev);
3190                 return -ENODEV;
3191         }
3192
3193         qede_alloc_etherdev(adapter, &dev_info);
3194
3195         adapter->ops->common->set_name(edev, edev->name);
3196
3197         if (!is_vf)
3198                 adapter->dev_info.num_mac_filters =
3199                         (uint32_t)RESC_NUM(ECORE_LEADING_HWFN(edev),
3200                                             ECORE_MAC);
3201         else
3202                 ecore_vf_get_num_mac_filters(ECORE_LEADING_HWFN(edev),
3203                                 (uint32_t *)&adapter->dev_info.num_mac_filters);
3204
3205         /* Allocate memory for storing MAC addr */
3206         eth_dev->data->mac_addrs = rte_zmalloc(edev->name,
3207                                         (ETHER_ADDR_LEN *
3208                                         adapter->dev_info.num_mac_filters),
3209                                         RTE_CACHE_LINE_SIZE);
3210
3211         if (eth_dev->data->mac_addrs == NULL) {
3212                 DP_ERR(edev, "Failed to allocate MAC address\n");
3213                 qed_ops->common->slowpath_stop(edev);
3214                 qed_ops->common->remove(edev);
3215                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
3216                                      (void *)eth_dev);
3217                 return -ENOMEM;
3218         }
3219
3220         if (!is_vf) {
3221                 ether_addr_copy((struct ether_addr *)edev->hwfns[0].
3222                                 hw_info.hw_mac_addr,
3223                                 &eth_dev->data->mac_addrs[0]);
3224                 ether_addr_copy(&eth_dev->data->mac_addrs[0],
3225                                 &adapter->primary_mac);
3226         } else {
3227                 ecore_vf_read_bulletin(ECORE_LEADING_HWFN(edev),
3228                                        &bulletin_change);
3229                 if (bulletin_change) {
3230                         is_mac_exist =
3231                             ecore_vf_bulletin_get_forced_mac(
3232                                                 ECORE_LEADING_HWFN(edev),
3233                                                 vf_mac,
3234                                                 &is_mac_forced);
3235                         if (is_mac_exist) {
3236                                 DP_INFO(edev, "VF macaddr received from PF\n");
3237                                 ether_addr_copy((struct ether_addr *)&vf_mac,
3238                                                 &eth_dev->data->mac_addrs[0]);
3239                                 ether_addr_copy(&eth_dev->data->mac_addrs[0],
3240                                                 &adapter->primary_mac);
3241                         } else {
3242                                 DP_ERR(edev, "No VF macaddr assigned\n");
3243                         }
3244                 }
3245         }
3246
3247         eth_dev->dev_ops = (is_vf) ? &qede_eth_vf_dev_ops : &qede_eth_dev_ops;
3248
3249         if (do_once) {
3250                 qede_print_adapter_info(adapter);
3251                 do_once = false;
3252         }
3253
3254         /* Bring-up the link */
3255         qede_dev_set_link_state(eth_dev, true);
3256
3257         adapter->num_tx_queues = 0;
3258         adapter->num_rx_queues = 0;
3259         SLIST_INIT(&adapter->fdir_info.fdir_list_head);
3260         SLIST_INIT(&adapter->vlan_list_head);
3261         SLIST_INIT(&adapter->uc_list_head);
3262         SLIST_INIT(&adapter->mc_list_head);
3263         adapter->mtu = ETHER_MTU;
3264         adapter->vport_started = false;
3265
3266         /* VF tunnel offloads is enabled by default in PF driver */
3267         adapter->vxlan.num_filters = 0;
3268         adapter->geneve.num_filters = 0;
3269         adapter->ipgre.num_filters = 0;
3270         if (is_vf) {
3271                 adapter->vxlan.enable = true;
3272                 adapter->vxlan.filter_type = ETH_TUNNEL_FILTER_IMAC |
3273                                              ETH_TUNNEL_FILTER_IVLAN;
3274                 adapter->vxlan.udp_port = QEDE_VXLAN_DEF_PORT;
3275                 adapter->geneve.enable = true;
3276                 adapter->geneve.filter_type = ETH_TUNNEL_FILTER_IMAC |
3277                                               ETH_TUNNEL_FILTER_IVLAN;
3278                 adapter->geneve.udp_port = QEDE_GENEVE_DEF_PORT;
3279                 adapter->ipgre.enable = true;
3280                 adapter->ipgre.filter_type = ETH_TUNNEL_FILTER_IMAC |
3281                                              ETH_TUNNEL_FILTER_IVLAN;
3282         } else {
3283                 adapter->vxlan.enable = false;
3284                 adapter->geneve.enable = false;
3285                 adapter->ipgre.enable = false;
3286         }
3287
3288         DP_INFO(edev, "MAC address : %02x:%02x:%02x:%02x:%02x:%02x\n",
3289                 adapter->primary_mac.addr_bytes[0],
3290                 adapter->primary_mac.addr_bytes[1],
3291                 adapter->primary_mac.addr_bytes[2],
3292                 adapter->primary_mac.addr_bytes[3],
3293                 adapter->primary_mac.addr_bytes[4],
3294                 adapter->primary_mac.addr_bytes[5]);
3295
3296         DP_INFO(edev, "Device initialized\n");
3297
3298         return 0;
3299 }
3300
3301 static int qedevf_eth_dev_init(struct rte_eth_dev *eth_dev)
3302 {
3303         return qede_common_dev_init(eth_dev, 1);
3304 }
3305
3306 static int qede_eth_dev_init(struct rte_eth_dev *eth_dev)
3307 {
3308         return qede_common_dev_init(eth_dev, 0);
3309 }
3310
3311 static int qede_dev_common_uninit(struct rte_eth_dev *eth_dev)
3312 {
3313 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
3314         struct qede_dev *qdev = eth_dev->data->dev_private;
3315         struct ecore_dev *edev = &qdev->edev;
3316
3317         PMD_INIT_FUNC_TRACE(edev);
3318 #endif
3319
3320         /* only uninitialize in the primary process */
3321         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
3322                 return 0;
3323
3324         /* safe to close dev here */
3325         qede_dev_close(eth_dev);
3326
3327         eth_dev->dev_ops = NULL;
3328         eth_dev->rx_pkt_burst = NULL;
3329         eth_dev->tx_pkt_burst = NULL;
3330
3331         if (eth_dev->data->mac_addrs)
3332                 rte_free(eth_dev->data->mac_addrs);
3333
3334         eth_dev->data->mac_addrs = NULL;
3335
3336         return 0;
3337 }
3338
3339 static int qede_eth_dev_uninit(struct rte_eth_dev *eth_dev)
3340 {
3341         return qede_dev_common_uninit(eth_dev);
3342 }
3343
3344 static int qedevf_eth_dev_uninit(struct rte_eth_dev *eth_dev)
3345 {
3346         return qede_dev_common_uninit(eth_dev);
3347 }
3348
3349 static const struct rte_pci_id pci_id_qedevf_map[] = {
3350 #define QEDEVF_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
3351         {
3352                 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_VF)
3353         },
3354         {
3355                 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_IOV)
3356         },
3357         {
3358                 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_IOV)
3359         },
3360         {.vendor_id = 0,}
3361 };
3362
3363 static const struct rte_pci_id pci_id_qede_map[] = {
3364 #define QEDE_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
3365         {
3366                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_57980E)
3367         },
3368         {
3369                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_57980S)
3370         },
3371         {
3372                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_40)
3373         },
3374         {
3375                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_25)
3376         },
3377         {
3378                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_100)
3379         },
3380         {
3381                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_50)
3382         },
3383         {
3384                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_50G)
3385         },
3386         {
3387                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_10G)
3388         },
3389         {
3390                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_40G)
3391         },
3392         {
3393                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_25G)
3394         },
3395         {.vendor_id = 0,}
3396 };
3397
3398 static int qedevf_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
3399         struct rte_pci_device *pci_dev)
3400 {
3401         return rte_eth_dev_pci_generic_probe(pci_dev,
3402                 sizeof(struct qede_dev), qedevf_eth_dev_init);
3403 }
3404
3405 static int qedevf_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
3406 {
3407         return rte_eth_dev_pci_generic_remove(pci_dev, qedevf_eth_dev_uninit);
3408 }
3409
3410 static struct rte_pci_driver rte_qedevf_pmd = {
3411         .id_table = pci_id_qedevf_map,
3412         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
3413         .probe = qedevf_eth_dev_pci_probe,
3414         .remove = qedevf_eth_dev_pci_remove,
3415 };
3416
3417 static int qede_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
3418         struct rte_pci_device *pci_dev)
3419 {
3420         return rte_eth_dev_pci_generic_probe(pci_dev,
3421                 sizeof(struct qede_dev), qede_eth_dev_init);
3422 }
3423
3424 static int qede_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
3425 {
3426         return rte_eth_dev_pci_generic_remove(pci_dev, qede_eth_dev_uninit);
3427 }
3428
3429 static struct rte_pci_driver rte_qede_pmd = {
3430         .id_table = pci_id_qede_map,
3431         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
3432         .probe = qede_eth_dev_pci_probe,
3433         .remove = qede_eth_dev_pci_remove,
3434 };
3435
3436 RTE_PMD_REGISTER_PCI(net_qede, rte_qede_pmd);
3437 RTE_PMD_REGISTER_PCI_TABLE(net_qede, pci_id_qede_map);
3438 RTE_PMD_REGISTER_KMOD_DEP(net_qede, "* igb_uio | uio_pci_generic | vfio-pci");
3439 RTE_PMD_REGISTER_PCI(net_qede_vf, rte_qedevf_pmd);
3440 RTE_PMD_REGISTER_PCI_TABLE(net_qede_vf, pci_id_qedevf_map);
3441 RTE_PMD_REGISTER_KMOD_DEP(net_qede_vf, "* igb_uio | vfio-pci");
3442
3443 RTE_INIT(qede_init_log)
3444 {
3445         qede_logtype_init = rte_log_register("pmd.net.qede.init");
3446         if (qede_logtype_init >= 0)
3447                 rte_log_set_level(qede_logtype_init, RTE_LOG_NOTICE);
3448         qede_logtype_driver = rte_log_register("pmd.net.qede.driver");
3449         if (qede_logtype_driver >= 0)
3450                 rte_log_set_level(qede_logtype_driver, RTE_LOG_NOTICE);
3451 }