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