net/qede: remove primary MAC removal
[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                                              ETH_VLAN_EXTEND_MASK);
1499         if (ret)
1500                 return ret;
1501
1502         DP_INFO(edev, "Device configured with RSS=%d TSS=%d\n",
1503                         QEDE_RSS_COUNT(qdev), QEDE_TSS_COUNT(qdev));
1504
1505         return 0;
1506 }
1507
1508 /* Info about HW descriptor ring limitations */
1509 static const struct rte_eth_desc_lim qede_rx_desc_lim = {
1510         .nb_max = 0x8000, /* 32K */
1511         .nb_min = 128,
1512         .nb_align = 128 /* lowest common multiple */
1513 };
1514
1515 static const struct rte_eth_desc_lim qede_tx_desc_lim = {
1516         .nb_max = 0x8000, /* 32K */
1517         .nb_min = 256,
1518         .nb_align = 256,
1519         .nb_seg_max = ETH_TX_MAX_BDS_PER_LSO_PACKET,
1520         .nb_mtu_seg_max = ETH_TX_MAX_BDS_PER_NON_LSO_PACKET
1521 };
1522
1523 static void
1524 qede_dev_info_get(struct rte_eth_dev *eth_dev,
1525                   struct rte_eth_dev_info *dev_info)
1526 {
1527         struct qede_dev *qdev = eth_dev->data->dev_private;
1528         struct ecore_dev *edev = &qdev->edev;
1529         struct qed_link_output link;
1530         uint32_t speed_cap = 0;
1531
1532         PMD_INIT_FUNC_TRACE(edev);
1533
1534         dev_info->min_rx_bufsize = (uint32_t)QEDE_MIN_RX_BUFF_SIZE;
1535         dev_info->max_rx_pktlen = (uint32_t)ETH_TX_MAX_NON_LSO_PKT_LEN;
1536         dev_info->rx_desc_lim = qede_rx_desc_lim;
1537         dev_info->tx_desc_lim = qede_tx_desc_lim;
1538
1539         if (IS_PF(edev))
1540                 dev_info->max_rx_queues = (uint16_t)RTE_MIN(
1541                         QEDE_MAX_RSS_CNT(qdev), QEDE_PF_NUM_CONNS / 2);
1542         else
1543                 dev_info->max_rx_queues = (uint16_t)RTE_MIN(
1544                         QEDE_MAX_RSS_CNT(qdev), ECORE_MAX_VF_CHAINS_PER_PF);
1545         dev_info->max_tx_queues = dev_info->max_rx_queues;
1546
1547         dev_info->max_mac_addrs = qdev->dev_info.num_mac_filters;
1548         dev_info->max_vfs = 0;
1549         dev_info->reta_size = ECORE_RSS_IND_TABLE_SIZE;
1550         dev_info->hash_key_size = ECORE_RSS_KEY_SIZE * sizeof(uint32_t);
1551         dev_info->flow_type_rss_offloads = (uint64_t)QEDE_RSS_OFFLOAD_ALL;
1552         dev_info->rx_offload_capa = (DEV_RX_OFFLOAD_IPV4_CKSUM  |
1553                                      DEV_RX_OFFLOAD_UDP_CKSUM   |
1554                                      DEV_RX_OFFLOAD_TCP_CKSUM   |
1555                                      DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
1556                                      DEV_RX_OFFLOAD_TCP_LRO     |
1557                                      DEV_RX_OFFLOAD_CRC_STRIP   |
1558                                      DEV_RX_OFFLOAD_SCATTER     |
1559                                      DEV_RX_OFFLOAD_JUMBO_FRAME |
1560                                      DEV_RX_OFFLOAD_VLAN_FILTER |
1561                                      DEV_RX_OFFLOAD_VLAN_STRIP);
1562         dev_info->rx_queue_offload_capa = 0;
1563
1564         /* TX offloads are on a per-packet basis, so it is applicable
1565          * to both at port and queue levels.
1566          */
1567         dev_info->tx_offload_capa = (DEV_TX_OFFLOAD_VLAN_INSERT |
1568                                      DEV_TX_OFFLOAD_IPV4_CKSUM  |
1569                                      DEV_TX_OFFLOAD_UDP_CKSUM   |
1570                                      DEV_TX_OFFLOAD_TCP_CKSUM   |
1571                                      DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
1572                                      DEV_TX_OFFLOAD_QINQ_INSERT |
1573                                      DEV_TX_OFFLOAD_MULTI_SEGS  |
1574                                      DEV_TX_OFFLOAD_TCP_TSO     |
1575                                      DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
1576                                      DEV_TX_OFFLOAD_GENEVE_TNL_TSO);
1577         dev_info->tx_queue_offload_capa = dev_info->tx_offload_capa;
1578
1579         dev_info->default_txconf = (struct rte_eth_txconf) {
1580                 .offloads = DEV_TX_OFFLOAD_MULTI_SEGS,
1581         };
1582
1583         dev_info->default_rxconf = (struct rte_eth_rxconf) {
1584                 /* Packets are always dropped if no descriptors are available */
1585                 .rx_drop_en = 1,
1586                 /* The below RX offloads are always enabled */
1587                 .offloads = (DEV_RX_OFFLOAD_CRC_STRIP  |
1588                              DEV_RX_OFFLOAD_IPV4_CKSUM |
1589                              DEV_RX_OFFLOAD_TCP_CKSUM  |
1590                              DEV_RX_OFFLOAD_UDP_CKSUM),
1591         };
1592
1593         memset(&link, 0, sizeof(struct qed_link_output));
1594         qdev->ops->common->get_link(edev, &link);
1595         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_1G)
1596                 speed_cap |= ETH_LINK_SPEED_1G;
1597         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_10G)
1598                 speed_cap |= ETH_LINK_SPEED_10G;
1599         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_25G)
1600                 speed_cap |= ETH_LINK_SPEED_25G;
1601         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_40G)
1602                 speed_cap |= ETH_LINK_SPEED_40G;
1603         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_50G)
1604                 speed_cap |= ETH_LINK_SPEED_50G;
1605         if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_BB_100G)
1606                 speed_cap |= ETH_LINK_SPEED_100G;
1607         dev_info->speed_capa = speed_cap;
1608 }
1609
1610 /* return 0 means link status changed, -1 means not changed */
1611 int
1612 qede_link_update(struct rte_eth_dev *eth_dev, __rte_unused int wait_to_complete)
1613 {
1614         struct qede_dev *qdev = eth_dev->data->dev_private;
1615         struct ecore_dev *edev = &qdev->edev;
1616         struct qed_link_output q_link;
1617         struct rte_eth_link link;
1618         uint16_t link_duplex;
1619
1620         memset(&q_link, 0, sizeof(q_link));
1621         memset(&link, 0, sizeof(link));
1622
1623         qdev->ops->common->get_link(edev, &q_link);
1624
1625         /* Link Speed */
1626         link.link_speed = q_link.speed;
1627
1628         /* Link Mode */
1629         switch (q_link.duplex) {
1630         case QEDE_DUPLEX_HALF:
1631                 link_duplex = ETH_LINK_HALF_DUPLEX;
1632                 break;
1633         case QEDE_DUPLEX_FULL:
1634                 link_duplex = ETH_LINK_FULL_DUPLEX;
1635                 break;
1636         case QEDE_DUPLEX_UNKNOWN:
1637         default:
1638                 link_duplex = -1;
1639         }
1640         link.link_duplex = link_duplex;
1641
1642         /* Link Status */
1643         link.link_status = q_link.link_up ? ETH_LINK_UP : ETH_LINK_DOWN;
1644
1645         /* AN */
1646         link.link_autoneg = (q_link.supported_caps & QEDE_SUPPORTED_AUTONEG) ?
1647                              ETH_LINK_AUTONEG : ETH_LINK_FIXED;
1648
1649         DP_INFO(edev, "Link - Speed %u Mode %u AN %u Status %u\n",
1650                 link.link_speed, link.link_duplex,
1651                 link.link_autoneg, link.link_status);
1652
1653         return rte_eth_linkstatus_set(eth_dev, &link);
1654 }
1655
1656 static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
1657 {
1658 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
1659         struct qede_dev *qdev = eth_dev->data->dev_private;
1660         struct ecore_dev *edev = &qdev->edev;
1661
1662         PMD_INIT_FUNC_TRACE(edev);
1663 #endif
1664
1665         enum qed_filter_rx_mode_type type = QED_FILTER_RX_MODE_TYPE_PROMISC;
1666
1667         if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
1668                 type |= QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
1669
1670         qed_configure_filter_rx_mode(eth_dev, type);
1671 }
1672
1673 static void qede_promiscuous_disable(struct rte_eth_dev *eth_dev)
1674 {
1675 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
1676         struct qede_dev *qdev = eth_dev->data->dev_private;
1677         struct ecore_dev *edev = &qdev->edev;
1678
1679         PMD_INIT_FUNC_TRACE(edev);
1680 #endif
1681
1682         if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
1683                 qed_configure_filter_rx_mode(eth_dev,
1684                                 QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC);
1685         else
1686                 qed_configure_filter_rx_mode(eth_dev,
1687                                 QED_FILTER_RX_MODE_TYPE_REGULAR);
1688 }
1689
1690 static void qede_poll_sp_sb_cb(void *param)
1691 {
1692         struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1693         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1694         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1695         int rc;
1696
1697         qede_interrupt_action(ECORE_LEADING_HWFN(edev));
1698         qede_interrupt_action(&edev->hwfns[1]);
1699
1700         rc = rte_eal_alarm_set(QEDE_SP_TIMER_PERIOD,
1701                                qede_poll_sp_sb_cb,
1702                                (void *)eth_dev);
1703         if (rc != 0) {
1704                 DP_ERR(edev, "Unable to start periodic"
1705                              " timer rc %d\n", rc);
1706                 assert(false && "Unable to start periodic timer");
1707         }
1708 }
1709
1710 static void qede_dev_close(struct rte_eth_dev *eth_dev)
1711 {
1712         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1713         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1714         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1715
1716         PMD_INIT_FUNC_TRACE(edev);
1717
1718         /* dev_stop() shall cleanup fp resources in hw but without releasing
1719          * dma memories and sw structures so that dev_start() can be called
1720          * by the app without reconfiguration. However, in dev_close() we
1721          * can release all the resources and device can be brought up newly
1722          */
1723         if (eth_dev->data->dev_started)
1724                 qede_dev_stop(eth_dev);
1725
1726         qede_stop_vport(edev);
1727         qdev->vport_started = false;
1728         qede_fdir_dealloc_resc(eth_dev);
1729         qede_dealloc_fp_resc(eth_dev);
1730
1731         eth_dev->data->nb_rx_queues = 0;
1732         eth_dev->data->nb_tx_queues = 0;
1733
1734         /* Bring the link down */
1735         qede_dev_set_link_state(eth_dev, false);
1736         qdev->ops->common->slowpath_stop(edev);
1737         qdev->ops->common->remove(edev);
1738         rte_intr_disable(&pci_dev->intr_handle);
1739         rte_intr_callback_unregister(&pci_dev->intr_handle,
1740                                      qede_interrupt_handler, (void *)eth_dev);
1741         if (ECORE_IS_CMT(edev))
1742                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb, (void *)eth_dev);
1743 }
1744
1745 static int
1746 qede_get_stats(struct rte_eth_dev *eth_dev, struct rte_eth_stats *eth_stats)
1747 {
1748         struct qede_dev *qdev = eth_dev->data->dev_private;
1749         struct ecore_dev *edev = &qdev->edev;
1750         struct ecore_eth_stats stats;
1751         unsigned int i = 0, j = 0, qid;
1752         unsigned int rxq_stat_cntrs, txq_stat_cntrs;
1753         struct qede_tx_queue *txq;
1754
1755         ecore_get_vport_stats(edev, &stats);
1756
1757         /* RX Stats */
1758         eth_stats->ipackets = stats.common.rx_ucast_pkts +
1759             stats.common.rx_mcast_pkts + stats.common.rx_bcast_pkts;
1760
1761         eth_stats->ibytes = stats.common.rx_ucast_bytes +
1762             stats.common.rx_mcast_bytes + stats.common.rx_bcast_bytes;
1763
1764         eth_stats->ierrors = stats.common.rx_crc_errors +
1765             stats.common.rx_align_errors +
1766             stats.common.rx_carrier_errors +
1767             stats.common.rx_oversize_packets +
1768             stats.common.rx_jabbers + stats.common.rx_undersize_packets;
1769
1770         eth_stats->rx_nombuf = stats.common.no_buff_discards;
1771
1772         eth_stats->imissed = stats.common.mftag_filter_discards +
1773             stats.common.mac_filter_discards +
1774             stats.common.no_buff_discards +
1775             stats.common.brb_truncates + stats.common.brb_discards;
1776
1777         /* TX stats */
1778         eth_stats->opackets = stats.common.tx_ucast_pkts +
1779             stats.common.tx_mcast_pkts + stats.common.tx_bcast_pkts;
1780
1781         eth_stats->obytes = stats.common.tx_ucast_bytes +
1782             stats.common.tx_mcast_bytes + stats.common.tx_bcast_bytes;
1783
1784         eth_stats->oerrors = stats.common.tx_err_drop_pkts;
1785
1786         /* Queue stats */
1787         rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1788                                RTE_ETHDEV_QUEUE_STAT_CNTRS);
1789         txq_stat_cntrs = RTE_MIN(QEDE_TSS_COUNT(qdev),
1790                                RTE_ETHDEV_QUEUE_STAT_CNTRS);
1791         if ((rxq_stat_cntrs != (unsigned int)QEDE_RSS_COUNT(qdev)) ||
1792             (txq_stat_cntrs != (unsigned int)QEDE_TSS_COUNT(qdev)))
1793                 DP_VERBOSE(edev, ECORE_MSG_DEBUG,
1794                        "Not all the queue stats will be displayed. Set"
1795                        " RTE_ETHDEV_QUEUE_STAT_CNTRS config param"
1796                        " appropriately and retry.\n");
1797
1798         for_each_rss(qid) {
1799                 eth_stats->q_ipackets[i] =
1800                         *(uint64_t *)(
1801                                 ((char *)(qdev->fp_array[qid].rxq)) +
1802                                 offsetof(struct qede_rx_queue,
1803                                 rcv_pkts));
1804                 eth_stats->q_errors[i] =
1805                         *(uint64_t *)(
1806                                 ((char *)(qdev->fp_array[qid].rxq)) +
1807                                 offsetof(struct qede_rx_queue,
1808                                 rx_hw_errors)) +
1809                         *(uint64_t *)(
1810                                 ((char *)(qdev->fp_array[qid].rxq)) +
1811                                 offsetof(struct qede_rx_queue,
1812                                 rx_alloc_errors));
1813                 i++;
1814                 if (i == rxq_stat_cntrs)
1815                         break;
1816         }
1817
1818         for_each_tss(qid) {
1819                 txq = qdev->fp_array[qid].txq;
1820                 eth_stats->q_opackets[j] =
1821                         *((uint64_t *)(uintptr_t)
1822                                 (((uint64_t)(uintptr_t)(txq)) +
1823                                  offsetof(struct qede_tx_queue,
1824                                           xmit_pkts)));
1825                 j++;
1826                 if (j == txq_stat_cntrs)
1827                         break;
1828         }
1829
1830         return 0;
1831 }
1832
1833 static unsigned
1834 qede_get_xstats_count(struct qede_dev *qdev) {
1835         if (ECORE_IS_BB(&qdev->edev))
1836                 return RTE_DIM(qede_xstats_strings) +
1837                        RTE_DIM(qede_bb_xstats_strings) +
1838                        (RTE_DIM(qede_rxq_xstats_strings) *
1839                         RTE_MIN(QEDE_RSS_COUNT(qdev),
1840                                 RTE_ETHDEV_QUEUE_STAT_CNTRS));
1841         else
1842                 return RTE_DIM(qede_xstats_strings) +
1843                        RTE_DIM(qede_ah_xstats_strings) +
1844                        (RTE_DIM(qede_rxq_xstats_strings) *
1845                         RTE_MIN(QEDE_RSS_COUNT(qdev),
1846                                 RTE_ETHDEV_QUEUE_STAT_CNTRS));
1847 }
1848
1849 static int
1850 qede_get_xstats_names(struct rte_eth_dev *dev,
1851                       struct rte_eth_xstat_name *xstats_names,
1852                       __rte_unused unsigned int limit)
1853 {
1854         struct qede_dev *qdev = dev->data->dev_private;
1855         struct ecore_dev *edev = &qdev->edev;
1856         const unsigned int stat_cnt = qede_get_xstats_count(qdev);
1857         unsigned int i, qid, stat_idx = 0;
1858         unsigned int rxq_stat_cntrs;
1859
1860         if (xstats_names != NULL) {
1861                 for (i = 0; i < RTE_DIM(qede_xstats_strings); i++) {
1862                         snprintf(xstats_names[stat_idx].name,
1863                                 sizeof(xstats_names[stat_idx].name),
1864                                 "%s",
1865                                 qede_xstats_strings[i].name);
1866                         stat_idx++;
1867                 }
1868
1869                 if (ECORE_IS_BB(edev)) {
1870                         for (i = 0; i < RTE_DIM(qede_bb_xstats_strings); i++) {
1871                                 snprintf(xstats_names[stat_idx].name,
1872                                         sizeof(xstats_names[stat_idx].name),
1873                                         "%s",
1874                                         qede_bb_xstats_strings[i].name);
1875                                 stat_idx++;
1876                         }
1877                 } else {
1878                         for (i = 0; i < RTE_DIM(qede_ah_xstats_strings); i++) {
1879                                 snprintf(xstats_names[stat_idx].name,
1880                                         sizeof(xstats_names[stat_idx].name),
1881                                         "%s",
1882                                         qede_ah_xstats_strings[i].name);
1883                                 stat_idx++;
1884                         }
1885                 }
1886
1887                 rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1888                                          RTE_ETHDEV_QUEUE_STAT_CNTRS);
1889                 for (qid = 0; qid < rxq_stat_cntrs; qid++) {
1890                         for (i = 0; i < RTE_DIM(qede_rxq_xstats_strings); i++) {
1891                                 snprintf(xstats_names[stat_idx].name,
1892                                         sizeof(xstats_names[stat_idx].name),
1893                                         "%.4s%d%s",
1894                                         qede_rxq_xstats_strings[i].name, qid,
1895                                         qede_rxq_xstats_strings[i].name + 4);
1896                                 stat_idx++;
1897                         }
1898                 }
1899         }
1900
1901         return stat_cnt;
1902 }
1903
1904 static int
1905 qede_get_xstats(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1906                 unsigned int n)
1907 {
1908         struct qede_dev *qdev = dev->data->dev_private;
1909         struct ecore_dev *edev = &qdev->edev;
1910         struct ecore_eth_stats stats;
1911         const unsigned int num = qede_get_xstats_count(qdev);
1912         unsigned int i, qid, stat_idx = 0;
1913         unsigned int rxq_stat_cntrs;
1914
1915         if (n < num)
1916                 return num;
1917
1918         ecore_get_vport_stats(edev, &stats);
1919
1920         for (i = 0; i < RTE_DIM(qede_xstats_strings); i++) {
1921                 xstats[stat_idx].value = *(uint64_t *)(((char *)&stats) +
1922                                              qede_xstats_strings[i].offset);
1923                 xstats[stat_idx].id = stat_idx;
1924                 stat_idx++;
1925         }
1926
1927         if (ECORE_IS_BB(edev)) {
1928                 for (i = 0; i < RTE_DIM(qede_bb_xstats_strings); i++) {
1929                         xstats[stat_idx].value =
1930                                         *(uint64_t *)(((char *)&stats) +
1931                                         qede_bb_xstats_strings[i].offset);
1932                         xstats[stat_idx].id = stat_idx;
1933                         stat_idx++;
1934                 }
1935         } else {
1936                 for (i = 0; i < RTE_DIM(qede_ah_xstats_strings); i++) {
1937                         xstats[stat_idx].value =
1938                                         *(uint64_t *)(((char *)&stats) +
1939                                         qede_ah_xstats_strings[i].offset);
1940                         xstats[stat_idx].id = stat_idx;
1941                         stat_idx++;
1942                 }
1943         }
1944
1945         rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1946                                  RTE_ETHDEV_QUEUE_STAT_CNTRS);
1947         for (qid = 0; qid < rxq_stat_cntrs; qid++) {
1948                 for_each_rss(qid) {
1949                         for (i = 0; i < RTE_DIM(qede_rxq_xstats_strings); i++) {
1950                                 xstats[stat_idx].value = *(uint64_t *)(
1951                                         ((char *)(qdev->fp_array[qid].rxq)) +
1952                                          qede_rxq_xstats_strings[i].offset);
1953                                 xstats[stat_idx].id = stat_idx;
1954                                 stat_idx++;
1955                         }
1956                 }
1957         }
1958
1959         return stat_idx;
1960 }
1961
1962 static void
1963 qede_reset_xstats(struct rte_eth_dev *dev)
1964 {
1965         struct qede_dev *qdev = dev->data->dev_private;
1966         struct ecore_dev *edev = &qdev->edev;
1967
1968         ecore_reset_vport_stats(edev);
1969         qede_reset_queue_stats(qdev, true);
1970 }
1971
1972 int qede_dev_set_link_state(struct rte_eth_dev *eth_dev, bool link_up)
1973 {
1974         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1975         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1976         struct qed_link_params link_params;
1977         int rc;
1978
1979         DP_INFO(edev, "setting link state %d\n", link_up);
1980         memset(&link_params, 0, sizeof(link_params));
1981         link_params.link_up = link_up;
1982         rc = qdev->ops->common->set_link(edev, &link_params);
1983         if (rc != ECORE_SUCCESS)
1984                 DP_ERR(edev, "Unable to set link state %d\n", link_up);
1985
1986         return rc;
1987 }
1988
1989 static int qede_dev_set_link_up(struct rte_eth_dev *eth_dev)
1990 {
1991         return qede_dev_set_link_state(eth_dev, true);
1992 }
1993
1994 static int qede_dev_set_link_down(struct rte_eth_dev *eth_dev)
1995 {
1996         return qede_dev_set_link_state(eth_dev, false);
1997 }
1998
1999 static void qede_reset_stats(struct rte_eth_dev *eth_dev)
2000 {
2001         struct qede_dev *qdev = eth_dev->data->dev_private;
2002         struct ecore_dev *edev = &qdev->edev;
2003
2004         ecore_reset_vport_stats(edev);
2005         qede_reset_queue_stats(qdev, false);
2006 }
2007
2008 static void qede_allmulticast_enable(struct rte_eth_dev *eth_dev)
2009 {
2010         enum qed_filter_rx_mode_type type =
2011             QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
2012
2013         if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
2014                 type |= QED_FILTER_RX_MODE_TYPE_PROMISC;
2015
2016         qed_configure_filter_rx_mode(eth_dev, type);
2017 }
2018
2019 static void qede_allmulticast_disable(struct rte_eth_dev *eth_dev)
2020 {
2021         if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
2022                 qed_configure_filter_rx_mode(eth_dev,
2023                                 QED_FILTER_RX_MODE_TYPE_PROMISC);
2024         else
2025                 qed_configure_filter_rx_mode(eth_dev,
2026                                 QED_FILTER_RX_MODE_TYPE_REGULAR);
2027 }
2028
2029 static int
2030 qede_set_mc_addr_list(struct rte_eth_dev *eth_dev, struct ether_addr *mc_addrs,
2031                       uint32_t mc_addrs_num)
2032 {
2033         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2034         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2035         uint8_t i;
2036
2037         if (mc_addrs_num > ECORE_MAX_MC_ADDRS) {
2038                 DP_ERR(edev, "Reached max multicast filters limit,"
2039                              "Please enable multicast promisc mode\n");
2040                 return -ENOSPC;
2041         }
2042
2043         for (i = 0; i < mc_addrs_num; i++) {
2044                 if (!is_multicast_ether_addr(&mc_addrs[i])) {
2045                         DP_ERR(edev, "Not a valid multicast MAC\n");
2046                         return -EINVAL;
2047                 }
2048         }
2049
2050         /* Flush all existing entries */
2051         if (qede_del_mcast_filters(eth_dev))
2052                 return -1;
2053
2054         /* Set new mcast list */
2055         return qede_add_mcast_filters(eth_dev, mc_addrs, mc_addrs_num);
2056 }
2057
2058 /* Update MTU via vport-update without doing port restart.
2059  * The vport must be deactivated before calling this API.
2060  */
2061 int qede_update_mtu(struct rte_eth_dev *eth_dev, uint16_t mtu)
2062 {
2063         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2064         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2065         struct ecore_hwfn *p_hwfn;
2066         int rc;
2067         int i;
2068
2069         if (IS_PF(edev)) {
2070                 struct ecore_sp_vport_update_params params;
2071
2072                 memset(&params, 0, sizeof(struct ecore_sp_vport_update_params));
2073                 params.vport_id = 0;
2074                 params.mtu = mtu;
2075                 params.vport_id = 0;
2076                 for_each_hwfn(edev, i) {
2077                         p_hwfn = &edev->hwfns[i];
2078                         params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2079                         rc = ecore_sp_vport_update(p_hwfn, &params,
2080                                         ECORE_SPQ_MODE_EBLOCK, NULL);
2081                         if (rc != ECORE_SUCCESS)
2082                                 goto err;
2083                 }
2084         } else {
2085                 for_each_hwfn(edev, i) {
2086                         p_hwfn = &edev->hwfns[i];
2087                         rc = ecore_vf_pf_update_mtu(p_hwfn, mtu);
2088                         if (rc == ECORE_INVAL) {
2089                                 DP_INFO(edev, "VF MTU Update TLV not supported\n");
2090                                 /* Recreate vport */
2091                                 rc = qede_start_vport(qdev, mtu);
2092                                 if (rc != ECORE_SUCCESS)
2093                                         goto err;
2094
2095                                 /* Restore config lost due to vport stop */
2096                                 if (eth_dev->data->promiscuous)
2097                                         qede_promiscuous_enable(eth_dev);
2098                                 else
2099                                         qede_promiscuous_disable(eth_dev);
2100
2101                                 if (eth_dev->data->all_multicast)
2102                                         qede_allmulticast_enable(eth_dev);
2103                                 else
2104                                         qede_allmulticast_disable(eth_dev);
2105
2106                                 qede_vlan_offload_set(eth_dev,
2107                                                       qdev->vlan_offload_mask);
2108                         } else if (rc != ECORE_SUCCESS) {
2109                                 goto err;
2110                         }
2111                 }
2112         }
2113         DP_INFO(edev, "%s MTU updated to %u\n", IS_PF(edev) ? "PF" : "VF", mtu);
2114
2115         return 0;
2116
2117 err:
2118         DP_ERR(edev, "Failed to update MTU\n");
2119         return -1;
2120 }
2121
2122 static int qede_flow_ctrl_set(struct rte_eth_dev *eth_dev,
2123                               struct rte_eth_fc_conf *fc_conf)
2124 {
2125         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2126         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2127         struct qed_link_output current_link;
2128         struct qed_link_params params;
2129
2130         memset(&current_link, 0, sizeof(current_link));
2131         qdev->ops->common->get_link(edev, &current_link);
2132
2133         memset(&params, 0, sizeof(params));
2134         params.override_flags |= QED_LINK_OVERRIDE_PAUSE_CONFIG;
2135         if (fc_conf->autoneg) {
2136                 if (!(current_link.supported_caps & QEDE_SUPPORTED_AUTONEG)) {
2137                         DP_ERR(edev, "Autoneg not supported\n");
2138                         return -EINVAL;
2139                 }
2140                 params.pause_config |= QED_LINK_PAUSE_AUTONEG_ENABLE;
2141         }
2142
2143         /* Pause is assumed to be supported (SUPPORTED_Pause) */
2144         if (fc_conf->mode == RTE_FC_FULL)
2145                 params.pause_config |= (QED_LINK_PAUSE_TX_ENABLE |
2146                                         QED_LINK_PAUSE_RX_ENABLE);
2147         if (fc_conf->mode == RTE_FC_TX_PAUSE)
2148                 params.pause_config |= QED_LINK_PAUSE_TX_ENABLE;
2149         if (fc_conf->mode == RTE_FC_RX_PAUSE)
2150                 params.pause_config |= QED_LINK_PAUSE_RX_ENABLE;
2151
2152         params.link_up = true;
2153         (void)qdev->ops->common->set_link(edev, &params);
2154
2155         return 0;
2156 }
2157
2158 static int qede_flow_ctrl_get(struct rte_eth_dev *eth_dev,
2159                               struct rte_eth_fc_conf *fc_conf)
2160 {
2161         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2162         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2163         struct qed_link_output current_link;
2164
2165         memset(&current_link, 0, sizeof(current_link));
2166         qdev->ops->common->get_link(edev, &current_link);
2167
2168         if (current_link.pause_config & QED_LINK_PAUSE_AUTONEG_ENABLE)
2169                 fc_conf->autoneg = true;
2170
2171         if (current_link.pause_config & (QED_LINK_PAUSE_RX_ENABLE |
2172                                          QED_LINK_PAUSE_TX_ENABLE))
2173                 fc_conf->mode = RTE_FC_FULL;
2174         else if (current_link.pause_config & QED_LINK_PAUSE_RX_ENABLE)
2175                 fc_conf->mode = RTE_FC_RX_PAUSE;
2176         else if (current_link.pause_config & QED_LINK_PAUSE_TX_ENABLE)
2177                 fc_conf->mode = RTE_FC_TX_PAUSE;
2178         else
2179                 fc_conf->mode = RTE_FC_NONE;
2180
2181         return 0;
2182 }
2183
2184 static const uint32_t *
2185 qede_dev_supported_ptypes_get(struct rte_eth_dev *eth_dev)
2186 {
2187         static const uint32_t ptypes[] = {
2188                 RTE_PTYPE_L2_ETHER,
2189                 RTE_PTYPE_L2_ETHER_VLAN,
2190                 RTE_PTYPE_L3_IPV4,
2191                 RTE_PTYPE_L3_IPV6,
2192                 RTE_PTYPE_L4_TCP,
2193                 RTE_PTYPE_L4_UDP,
2194                 RTE_PTYPE_TUNNEL_VXLAN,
2195                 RTE_PTYPE_L4_FRAG,
2196                 RTE_PTYPE_TUNNEL_GENEVE,
2197                 RTE_PTYPE_TUNNEL_GRE,
2198                 /* Inner */
2199                 RTE_PTYPE_INNER_L2_ETHER,
2200                 RTE_PTYPE_INNER_L2_ETHER_VLAN,
2201                 RTE_PTYPE_INNER_L3_IPV4,
2202                 RTE_PTYPE_INNER_L3_IPV6,
2203                 RTE_PTYPE_INNER_L4_TCP,
2204                 RTE_PTYPE_INNER_L4_UDP,
2205                 RTE_PTYPE_INNER_L4_FRAG,
2206                 RTE_PTYPE_UNKNOWN
2207         };
2208
2209         if (eth_dev->rx_pkt_burst == qede_recv_pkts)
2210                 return ptypes;
2211
2212         return NULL;
2213 }
2214
2215 static void qede_init_rss_caps(uint8_t *rss_caps, uint64_t hf)
2216 {
2217         *rss_caps = 0;
2218         *rss_caps |= (hf & ETH_RSS_IPV4)              ? ECORE_RSS_IPV4 : 0;
2219         *rss_caps |= (hf & ETH_RSS_IPV6)              ? ECORE_RSS_IPV6 : 0;
2220         *rss_caps |= (hf & ETH_RSS_IPV6_EX)           ? ECORE_RSS_IPV6 : 0;
2221         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_TCP)  ? ECORE_RSS_IPV4_TCP : 0;
2222         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_TCP)  ? ECORE_RSS_IPV6_TCP : 0;
2223         *rss_caps |= (hf & ETH_RSS_IPV6_TCP_EX)       ? ECORE_RSS_IPV6_TCP : 0;
2224         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_UDP)  ? ECORE_RSS_IPV4_UDP : 0;
2225         *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_UDP)  ? ECORE_RSS_IPV6_UDP : 0;
2226 }
2227
2228 int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
2229                          struct rte_eth_rss_conf *rss_conf)
2230 {
2231         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2232         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2233         struct ecore_sp_vport_update_params vport_update_params;
2234         struct ecore_rss_params rss_params;
2235         struct ecore_hwfn *p_hwfn;
2236         uint32_t *key = (uint32_t *)rss_conf->rss_key;
2237         uint64_t hf = rss_conf->rss_hf;
2238         uint8_t len = rss_conf->rss_key_len;
2239         uint8_t idx;
2240         uint8_t i;
2241         int rc;
2242
2243         memset(&vport_update_params, 0, sizeof(vport_update_params));
2244         memset(&rss_params, 0, sizeof(rss_params));
2245
2246         DP_INFO(edev, "RSS hf = 0x%lx len = %u key = %p\n",
2247                 (unsigned long)hf, len, key);
2248
2249         if (hf != 0) {
2250                 /* Enabling RSS */
2251                 DP_INFO(edev, "Enabling rss\n");
2252
2253                 /* RSS caps */
2254                 qede_init_rss_caps(&rss_params.rss_caps, hf);
2255                 rss_params.update_rss_capabilities = 1;
2256
2257                 /* RSS hash key */
2258                 if (key) {
2259                         if (len > (ECORE_RSS_KEY_SIZE * sizeof(uint32_t))) {
2260                                 DP_ERR(edev, "RSS key length exceeds limit\n");
2261                                 return -EINVAL;
2262                         }
2263                         DP_INFO(edev, "Applying user supplied hash key\n");
2264                         rss_params.update_rss_key = 1;
2265                         memcpy(&rss_params.rss_key, key, len);
2266                 }
2267                 rss_params.rss_enable = 1;
2268         }
2269
2270         rss_params.update_rss_config = 1;
2271         /* tbl_size has to be set with capabilities */
2272         rss_params.rss_table_size_log = 7;
2273         vport_update_params.vport_id = 0;
2274         /* pass the L2 handles instead of qids */
2275         for (i = 0 ; i < ECORE_RSS_IND_TABLE_SIZE ; i++) {
2276                 idx = i % QEDE_RSS_COUNT(qdev);
2277                 rss_params.rss_ind_table[i] = qdev->fp_array[idx].rxq->handle;
2278         }
2279         vport_update_params.rss_params = &rss_params;
2280
2281         for_each_hwfn(edev, i) {
2282                 p_hwfn = &edev->hwfns[i];
2283                 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2284                 rc = ecore_sp_vport_update(p_hwfn, &vport_update_params,
2285                                            ECORE_SPQ_MODE_EBLOCK, NULL);
2286                 if (rc) {
2287                         DP_ERR(edev, "vport-update for RSS failed\n");
2288                         return rc;
2289                 }
2290         }
2291         qdev->rss_enable = rss_params.rss_enable;
2292
2293         /* Update local structure for hash query */
2294         qdev->rss_conf.rss_hf = hf;
2295         qdev->rss_conf.rss_key_len = len;
2296         if (qdev->rss_enable) {
2297                 if  (qdev->rss_conf.rss_key == NULL) {
2298                         qdev->rss_conf.rss_key = (uint8_t *)malloc(len);
2299                         if (qdev->rss_conf.rss_key == NULL) {
2300                                 DP_ERR(edev, "No memory to store RSS key\n");
2301                                 return -ENOMEM;
2302                         }
2303                 }
2304                 if (key && len) {
2305                         DP_INFO(edev, "Storing RSS key\n");
2306                         memcpy(qdev->rss_conf.rss_key, key, len);
2307                 }
2308         } else if (!qdev->rss_enable && len == 0) {
2309                 if (qdev->rss_conf.rss_key) {
2310                         free(qdev->rss_conf.rss_key);
2311                         qdev->rss_conf.rss_key = NULL;
2312                         DP_INFO(edev, "Free RSS key\n");
2313                 }
2314         }
2315
2316         return 0;
2317 }
2318
2319 static int qede_rss_hash_conf_get(struct rte_eth_dev *eth_dev,
2320                            struct rte_eth_rss_conf *rss_conf)
2321 {
2322         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2323
2324         rss_conf->rss_hf = qdev->rss_conf.rss_hf;
2325         rss_conf->rss_key_len = qdev->rss_conf.rss_key_len;
2326
2327         if (rss_conf->rss_key && qdev->rss_conf.rss_key)
2328                 memcpy(rss_conf->rss_key, qdev->rss_conf.rss_key,
2329                        rss_conf->rss_key_len);
2330         return 0;
2331 }
2332
2333 static bool qede_update_rss_parm_cmt(struct ecore_dev *edev,
2334                                     struct ecore_rss_params *rss)
2335 {
2336         int i, fn;
2337         bool rss_mode = 1; /* enable */
2338         struct ecore_queue_cid *cid;
2339         struct ecore_rss_params *t_rss;
2340
2341         /* In regular scenario, we'd simply need to take input handlers.
2342          * But in CMT, we'd have to split the handlers according to the
2343          * engine they were configured on. We'd then have to understand
2344          * whether RSS is really required, since 2-queues on CMT doesn't
2345          * require RSS.
2346          */
2347
2348         /* CMT should be round-robin */
2349         for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++) {
2350                 cid = rss->rss_ind_table[i];
2351
2352                 if (cid->p_owner == ECORE_LEADING_HWFN(edev))
2353                         t_rss = &rss[0];
2354                 else
2355                         t_rss = &rss[1];
2356
2357                 t_rss->rss_ind_table[i / edev->num_hwfns] = cid;
2358         }
2359
2360         t_rss = &rss[1];
2361         t_rss->update_rss_ind_table = 1;
2362         t_rss->rss_table_size_log = 7;
2363         t_rss->update_rss_config = 1;
2364
2365         /* Make sure RSS is actually required */
2366         for_each_hwfn(edev, fn) {
2367                 for (i = 1; i < ECORE_RSS_IND_TABLE_SIZE / edev->num_hwfns;
2368                      i++) {
2369                         if (rss[fn].rss_ind_table[i] !=
2370                             rss[fn].rss_ind_table[0])
2371                                 break;
2372                 }
2373
2374                 if (i == ECORE_RSS_IND_TABLE_SIZE / edev->num_hwfns) {
2375                         DP_INFO(edev,
2376                                 "CMT - 1 queue per-hwfn; Disabling RSS\n");
2377                         rss_mode = 0;
2378                         goto out;
2379                 }
2380         }
2381
2382 out:
2383         t_rss->rss_enable = rss_mode;
2384
2385         return rss_mode;
2386 }
2387
2388 int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
2389                          struct rte_eth_rss_reta_entry64 *reta_conf,
2390                          uint16_t reta_size)
2391 {
2392         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2393         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2394         struct ecore_sp_vport_update_params vport_update_params;
2395         struct ecore_rss_params *params;
2396         struct ecore_hwfn *p_hwfn;
2397         uint16_t i, idx, shift;
2398         uint8_t entry;
2399         int rc = 0;
2400
2401         if (reta_size > ETH_RSS_RETA_SIZE_128) {
2402                 DP_ERR(edev, "reta_size %d is not supported by hardware\n",
2403                        reta_size);
2404                 return -EINVAL;
2405         }
2406
2407         memset(&vport_update_params, 0, sizeof(vport_update_params));
2408         params = rte_zmalloc("qede_rss", sizeof(*params) * edev->num_hwfns,
2409                              RTE_CACHE_LINE_SIZE);
2410         if (params == NULL) {
2411                 DP_ERR(edev, "failed to allocate memory\n");
2412                 return -ENOMEM;
2413         }
2414
2415         for (i = 0; i < reta_size; i++) {
2416                 idx = i / RTE_RETA_GROUP_SIZE;
2417                 shift = i % RTE_RETA_GROUP_SIZE;
2418                 if (reta_conf[idx].mask & (1ULL << shift)) {
2419                         entry = reta_conf[idx].reta[shift];
2420                         /* Pass rxq handles to ecore */
2421                         params->rss_ind_table[i] =
2422                                         qdev->fp_array[entry].rxq->handle;
2423                         /* Update the local copy for RETA query command */
2424                         qdev->rss_ind_table[i] = entry;
2425                 }
2426         }
2427
2428         params->update_rss_ind_table = 1;
2429         params->rss_table_size_log = 7;
2430         params->update_rss_config = 1;
2431
2432         /* Fix up RETA for CMT mode device */
2433         if (ECORE_IS_CMT(edev))
2434                 qdev->rss_enable = qede_update_rss_parm_cmt(edev,
2435                                                             params);
2436         vport_update_params.vport_id = 0;
2437         /* Use the current value of rss_enable */
2438         params->rss_enable = qdev->rss_enable;
2439         vport_update_params.rss_params = params;
2440
2441         for_each_hwfn(edev, i) {
2442                 p_hwfn = &edev->hwfns[i];
2443                 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2444                 rc = ecore_sp_vport_update(p_hwfn, &vport_update_params,
2445                                            ECORE_SPQ_MODE_EBLOCK, NULL);
2446                 if (rc) {
2447                         DP_ERR(edev, "vport-update for RSS failed\n");
2448                         goto out;
2449                 }
2450         }
2451
2452 out:
2453         rte_free(params);
2454         return rc;
2455 }
2456
2457 static int qede_rss_reta_query(struct rte_eth_dev *eth_dev,
2458                                struct rte_eth_rss_reta_entry64 *reta_conf,
2459                                uint16_t reta_size)
2460 {
2461         struct qede_dev *qdev = eth_dev->data->dev_private;
2462         struct ecore_dev *edev = &qdev->edev;
2463         uint16_t i, idx, shift;
2464         uint8_t entry;
2465
2466         if (reta_size > ETH_RSS_RETA_SIZE_128) {
2467                 DP_ERR(edev, "reta_size %d is not supported\n",
2468                        reta_size);
2469                 return -EINVAL;
2470         }
2471
2472         for (i = 0; i < reta_size; i++) {
2473                 idx = i / RTE_RETA_GROUP_SIZE;
2474                 shift = i % RTE_RETA_GROUP_SIZE;
2475                 if (reta_conf[idx].mask & (1ULL << shift)) {
2476                         entry = qdev->rss_ind_table[i];
2477                         reta_conf[idx].reta[shift] = entry;
2478                 }
2479         }
2480
2481         return 0;
2482 }
2483
2484
2485
2486 static int qede_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
2487 {
2488         struct qede_dev *qdev = QEDE_INIT_QDEV(dev);
2489         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2490         struct rte_eth_dev_info dev_info = {0};
2491         struct qede_fastpath *fp;
2492         uint32_t max_rx_pkt_len;
2493         uint32_t frame_size;
2494         uint16_t rx_buf_size;
2495         uint16_t bufsz;
2496         bool restart = false;
2497         int i;
2498
2499         PMD_INIT_FUNC_TRACE(edev);
2500         qede_dev_info_get(dev, &dev_info);
2501         max_rx_pkt_len = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
2502         frame_size = max_rx_pkt_len + QEDE_ETH_OVERHEAD;
2503         if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen)) {
2504                 DP_ERR(edev, "MTU %u out of range, %u is maximum allowable\n",
2505                        mtu, dev_info.max_rx_pktlen - ETHER_HDR_LEN -
2506                         ETHER_CRC_LEN - QEDE_ETH_OVERHEAD);
2507                 return -EINVAL;
2508         }
2509         if (!dev->data->scattered_rx &&
2510             frame_size > dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM) {
2511                 DP_INFO(edev, "MTU greater than minimum RX buffer size of %u\n",
2512                         dev->data->min_rx_buf_size);
2513                 return -EINVAL;
2514         }
2515         /* Temporarily replace I/O functions with dummy ones. It cannot
2516          * be set to NULL because rte_eth_rx_burst() doesn't check for NULL.
2517          */
2518         dev->rx_pkt_burst = qede_rxtx_pkts_dummy;
2519         dev->tx_pkt_burst = qede_rxtx_pkts_dummy;
2520         if (dev->data->dev_started) {
2521                 dev->data->dev_started = 0;
2522                 qede_dev_stop(dev);
2523                 restart = true;
2524         }
2525         rte_delay_ms(1000);
2526         qdev->mtu = mtu;
2527
2528         /* Fix up RX buf size for all queues of the port */
2529         for_each_rss(i) {
2530                 fp = &qdev->fp_array[i];
2531                 if (fp->rxq != NULL) {
2532                         bufsz = (uint16_t)rte_pktmbuf_data_room_size(
2533                                 fp->rxq->mb_pool) - RTE_PKTMBUF_HEADROOM;
2534                         if (dev->data->scattered_rx)
2535                                 rx_buf_size = bufsz + ETHER_HDR_LEN +
2536                                               ETHER_CRC_LEN + QEDE_ETH_OVERHEAD;
2537                         else
2538                                 rx_buf_size = frame_size;
2539                         rx_buf_size = QEDE_CEIL_TO_CACHE_LINE_SIZE(rx_buf_size);
2540                         fp->rxq->rx_buf_size = rx_buf_size;
2541                         DP_INFO(edev, "RX buffer size %u\n", rx_buf_size);
2542                 }
2543         }
2544         if (max_rx_pkt_len > ETHER_MAX_LEN)
2545                 dev->data->dev_conf.rxmode.jumbo_frame = 1;
2546         else
2547                 dev->data->dev_conf.rxmode.jumbo_frame = 0;
2548
2549         if (!dev->data->dev_started && restart) {
2550                 qede_dev_start(dev);
2551                 dev->data->dev_started = 1;
2552         }
2553
2554         /* update max frame size */
2555         dev->data->dev_conf.rxmode.max_rx_pkt_len = max_rx_pkt_len;
2556         /* Reassign back */
2557         dev->rx_pkt_burst = qede_recv_pkts;
2558         dev->tx_pkt_burst = qede_xmit_pkts;
2559
2560         return 0;
2561 }
2562
2563 static int
2564 qede_udp_dst_port_del(struct rte_eth_dev *eth_dev,
2565                       struct rte_eth_udp_tunnel *tunnel_udp)
2566 {
2567         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2568         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2569         struct ecore_tunnel_info tunn; /* @DPDK */
2570         uint16_t udp_port;
2571         int rc;
2572
2573         PMD_INIT_FUNC_TRACE(edev);
2574
2575         memset(&tunn, 0, sizeof(tunn));
2576
2577         switch (tunnel_udp->prot_type) {
2578         case RTE_TUNNEL_TYPE_VXLAN:
2579                 if (qdev->vxlan.udp_port != tunnel_udp->udp_port) {
2580                         DP_ERR(edev, "UDP port %u doesn't exist\n",
2581                                 tunnel_udp->udp_port);
2582                         return ECORE_INVAL;
2583                 }
2584                 udp_port = 0;
2585
2586                 tunn.vxlan_port.b_update_port = true;
2587                 tunn.vxlan_port.port = udp_port;
2588
2589                 rc = qede_tunnel_update(qdev, &tunn);
2590                 if (rc != ECORE_SUCCESS) {
2591                         DP_ERR(edev, "Unable to config UDP port %u\n",
2592                                tunn.vxlan_port.port);
2593                         return rc;
2594                 }
2595
2596                 qdev->vxlan.udp_port = udp_port;
2597                 /* If the request is to delete UDP port and if the number of
2598                  * VXLAN filters have reached 0 then VxLAN offload can be be
2599                  * disabled.
2600                  */
2601                 if (qdev->vxlan.enable && qdev->vxlan.num_filters == 0)
2602                         return qede_vxlan_enable(eth_dev,
2603                                         ECORE_TUNN_CLSS_MAC_VLAN, false);
2604
2605                 break;
2606         case RTE_TUNNEL_TYPE_GENEVE:
2607                 if (qdev->geneve.udp_port != tunnel_udp->udp_port) {
2608                         DP_ERR(edev, "UDP port %u doesn't exist\n",
2609                                 tunnel_udp->udp_port);
2610                         return ECORE_INVAL;
2611                 }
2612
2613                 udp_port = 0;
2614
2615                 tunn.geneve_port.b_update_port = true;
2616                 tunn.geneve_port.port = udp_port;
2617
2618                 rc = qede_tunnel_update(qdev, &tunn);
2619                 if (rc != ECORE_SUCCESS) {
2620                         DP_ERR(edev, "Unable to config UDP port %u\n",
2621                                tunn.vxlan_port.port);
2622                         return rc;
2623                 }
2624
2625                 qdev->vxlan.udp_port = udp_port;
2626                 /* If the request is to delete UDP port and if the number of
2627                  * GENEVE filters have reached 0 then GENEVE offload can be be
2628                  * disabled.
2629                  */
2630                 if (qdev->geneve.enable && qdev->geneve.num_filters == 0)
2631                         return qede_geneve_enable(eth_dev,
2632                                         ECORE_TUNN_CLSS_MAC_VLAN, false);
2633
2634                 break;
2635
2636         default:
2637                 return ECORE_INVAL;
2638         }
2639
2640         return 0;
2641
2642 }
2643 static int
2644 qede_udp_dst_port_add(struct rte_eth_dev *eth_dev,
2645                       struct rte_eth_udp_tunnel *tunnel_udp)
2646 {
2647         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2648         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2649         struct ecore_tunnel_info tunn; /* @DPDK */
2650         uint16_t udp_port;
2651         int rc;
2652
2653         PMD_INIT_FUNC_TRACE(edev);
2654
2655         memset(&tunn, 0, sizeof(tunn));
2656
2657         switch (tunnel_udp->prot_type) {
2658         case RTE_TUNNEL_TYPE_VXLAN:
2659                 if (qdev->vxlan.udp_port == tunnel_udp->udp_port) {
2660                         DP_INFO(edev,
2661                                 "UDP port %u for VXLAN was already configured\n",
2662                                 tunnel_udp->udp_port);
2663                         return ECORE_SUCCESS;
2664                 }
2665
2666                 /* Enable VxLAN tunnel with default MAC/VLAN classification if
2667                  * it was not enabled while adding VXLAN filter before UDP port
2668                  * update.
2669                  */
2670                 if (!qdev->vxlan.enable) {
2671                         rc = qede_vxlan_enable(eth_dev,
2672                                 ECORE_TUNN_CLSS_MAC_VLAN, true);
2673                         if (rc != ECORE_SUCCESS) {
2674                                 DP_ERR(edev, "Failed to enable VXLAN "
2675                                         "prior to updating UDP port\n");
2676                                 return rc;
2677                         }
2678                 }
2679                 udp_port = tunnel_udp->udp_port;
2680
2681                 tunn.vxlan_port.b_update_port = true;
2682                 tunn.vxlan_port.port = udp_port;
2683
2684                 rc = qede_tunnel_update(qdev, &tunn);
2685                 if (rc != ECORE_SUCCESS) {
2686                         DP_ERR(edev, "Unable to config UDP port %u for VXLAN\n",
2687                                udp_port);
2688                         return rc;
2689                 }
2690
2691                 DP_INFO(edev, "Updated UDP port %u for VXLAN\n", udp_port);
2692
2693                 qdev->vxlan.udp_port = udp_port;
2694                 break;
2695         case RTE_TUNNEL_TYPE_GENEVE:
2696                 if (qdev->geneve.udp_port == tunnel_udp->udp_port) {
2697                         DP_INFO(edev,
2698                                 "UDP port %u for GENEVE was already configured\n",
2699                                 tunnel_udp->udp_port);
2700                         return ECORE_SUCCESS;
2701                 }
2702
2703                 /* Enable GENEVE tunnel with default MAC/VLAN classification if
2704                  * it was not enabled while adding GENEVE filter before UDP port
2705                  * update.
2706                  */
2707                 if (!qdev->geneve.enable) {
2708                         rc = qede_geneve_enable(eth_dev,
2709                                 ECORE_TUNN_CLSS_MAC_VLAN, true);
2710                         if (rc != ECORE_SUCCESS) {
2711                                 DP_ERR(edev, "Failed to enable GENEVE "
2712                                         "prior to updating UDP port\n");
2713                                 return rc;
2714                         }
2715                 }
2716                 udp_port = tunnel_udp->udp_port;
2717
2718                 tunn.geneve_port.b_update_port = true;
2719                 tunn.geneve_port.port = udp_port;
2720
2721                 rc = qede_tunnel_update(qdev, &tunn);
2722                 if (rc != ECORE_SUCCESS) {
2723                         DP_ERR(edev, "Unable to config UDP port %u for GENEVE\n",
2724                                udp_port);
2725                         return rc;
2726                 }
2727
2728                 DP_INFO(edev, "Updated UDP port %u for GENEVE\n", udp_port);
2729
2730                 qdev->geneve.udp_port = udp_port;
2731                 break;
2732         default:
2733                 return ECORE_INVAL;
2734         }
2735
2736         return 0;
2737 }
2738
2739 static void qede_get_ecore_tunn_params(uint32_t filter, uint32_t *type,
2740                                        uint32_t *clss, char *str)
2741 {
2742         uint16_t j;
2743         *clss = MAX_ECORE_TUNN_CLSS;
2744
2745         for (j = 0; j < RTE_DIM(qede_tunn_types); j++) {
2746                 if (filter == qede_tunn_types[j].rte_filter_type) {
2747                         *type = qede_tunn_types[j].qede_type;
2748                         *clss = qede_tunn_types[j].qede_tunn_clss;
2749                         strcpy(str, qede_tunn_types[j].string);
2750                         return;
2751                 }
2752         }
2753 }
2754
2755 static int
2756 qede_set_ucast_tunn_cmn_param(struct ecore_filter_ucast *ucast,
2757                               const struct rte_eth_tunnel_filter_conf *conf,
2758                               uint32_t type)
2759 {
2760         /* Init commmon ucast params first */
2761         qede_set_ucast_cmn_params(ucast);
2762
2763         /* Copy out the required fields based on classification type */
2764         ucast->type = type;
2765
2766         switch (type) {
2767         case ECORE_FILTER_VNI:
2768                 ucast->vni = conf->tenant_id;
2769         break;
2770         case ECORE_FILTER_INNER_VLAN:
2771                 ucast->vlan = conf->inner_vlan;
2772         break;
2773         case ECORE_FILTER_MAC:
2774                 memcpy(ucast->mac, conf->outer_mac.addr_bytes,
2775                        ETHER_ADDR_LEN);
2776         break;
2777         case ECORE_FILTER_INNER_MAC:
2778                 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2779                        ETHER_ADDR_LEN);
2780         break;
2781         case ECORE_FILTER_MAC_VNI_PAIR:
2782                 memcpy(ucast->mac, conf->outer_mac.addr_bytes,
2783                         ETHER_ADDR_LEN);
2784                 ucast->vni = conf->tenant_id;
2785         break;
2786         case ECORE_FILTER_INNER_MAC_VNI_PAIR:
2787                 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2788                         ETHER_ADDR_LEN);
2789                 ucast->vni = conf->tenant_id;
2790         break;
2791         case ECORE_FILTER_INNER_PAIR:
2792                 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2793                         ETHER_ADDR_LEN);
2794                 ucast->vlan = conf->inner_vlan;
2795         break;
2796         default:
2797                 return -EINVAL;
2798         }
2799
2800         return ECORE_SUCCESS;
2801 }
2802
2803 static int
2804 _qede_tunn_filter_config(struct rte_eth_dev *eth_dev,
2805                          const struct rte_eth_tunnel_filter_conf *conf,
2806                          __attribute__((unused)) enum rte_filter_op filter_op,
2807                          enum ecore_tunn_clss *clss,
2808                          bool add)
2809 {
2810         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2811         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2812         struct ecore_filter_ucast ucast = {0};
2813         enum ecore_filter_ucast_type type;
2814         uint16_t filter_type = 0;
2815         char str[80];
2816         int rc;
2817
2818         filter_type = conf->filter_type;
2819         /* Determine if the given filter classification is supported */
2820         qede_get_ecore_tunn_params(filter_type, &type, clss, str);
2821         if (*clss == MAX_ECORE_TUNN_CLSS) {
2822                 DP_ERR(edev, "Unsupported filter type\n");
2823                 return -EINVAL;
2824         }
2825         /* Init tunnel ucast params */
2826         rc = qede_set_ucast_tunn_cmn_param(&ucast, conf, type);
2827         if (rc != ECORE_SUCCESS) {
2828                 DP_ERR(edev, "Unsupported Tunnel filter type 0x%x\n",
2829                 conf->filter_type);
2830                 return rc;
2831         }
2832         DP_INFO(edev, "Rule: \"%s\", op %d, type 0x%x\n",
2833                 str, filter_op, ucast.type);
2834
2835         ucast.opcode = add ? ECORE_FILTER_ADD : ECORE_FILTER_REMOVE;
2836
2837         /* Skip MAC/VLAN if filter is based on VNI */
2838         if (!(filter_type & ETH_TUNNEL_FILTER_TENID)) {
2839                 rc = qede_mac_int_ops(eth_dev, &ucast, add);
2840                 if ((rc == 0) && add) {
2841                         /* Enable accept anyvlan */
2842                         qede_config_accept_any_vlan(qdev, true);
2843                 }
2844         } else {
2845                 rc = qede_ucast_filter(eth_dev, &ucast, add);
2846                 if (rc == 0)
2847                         rc = ecore_filter_ucast_cmd(edev, &ucast,
2848                                             ECORE_SPQ_MODE_CB, NULL);
2849         }
2850
2851         return rc;
2852 }
2853
2854 static int
2855 qede_tunn_filter_config(struct rte_eth_dev *eth_dev,
2856                         enum rte_filter_op filter_op,
2857                         const struct rte_eth_tunnel_filter_conf *conf)
2858 {
2859         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2860         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2861         enum ecore_tunn_clss clss = MAX_ECORE_TUNN_CLSS;
2862         bool add;
2863         int rc;
2864
2865         PMD_INIT_FUNC_TRACE(edev);
2866
2867         switch (filter_op) {
2868         case RTE_ETH_FILTER_ADD:
2869                 add = true;
2870                 break;
2871         case RTE_ETH_FILTER_DELETE:
2872                 add = false;
2873                 break;
2874         default:
2875                 DP_ERR(edev, "Unsupported operation %d\n", filter_op);
2876                 return -EINVAL;
2877         }
2878
2879         if (IS_VF(edev))
2880                 return qede_tunn_enable(eth_dev,
2881                                         ECORE_TUNN_CLSS_MAC_VLAN,
2882                                         conf->tunnel_type, add);
2883
2884         rc = _qede_tunn_filter_config(eth_dev, conf, filter_op, &clss, add);
2885         if (rc != ECORE_SUCCESS)
2886                 return rc;
2887
2888         if (add) {
2889                 if (conf->tunnel_type == RTE_TUNNEL_TYPE_VXLAN) {
2890                         qdev->vxlan.num_filters++;
2891                         qdev->vxlan.filter_type = conf->filter_type;
2892                 } else { /* GENEVE */
2893                         qdev->geneve.num_filters++;
2894                         qdev->geneve.filter_type = conf->filter_type;
2895                 }
2896
2897                 if (!qdev->vxlan.enable || !qdev->geneve.enable ||
2898                     !qdev->ipgre.enable)
2899                         return qede_tunn_enable(eth_dev, clss,
2900                                                 conf->tunnel_type,
2901                                                 true);
2902         } else {
2903                 if (conf->tunnel_type == RTE_TUNNEL_TYPE_VXLAN)
2904                         qdev->vxlan.num_filters--;
2905                 else /*GENEVE*/
2906                         qdev->geneve.num_filters--;
2907
2908                 /* Disable VXLAN if VXLAN filters become 0 */
2909                 if ((qdev->vxlan.num_filters == 0) ||
2910                     (qdev->geneve.num_filters == 0))
2911                         return qede_tunn_enable(eth_dev, clss,
2912                                                 conf->tunnel_type,
2913                                                 false);
2914         }
2915
2916         return 0;
2917 }
2918
2919 int qede_dev_filter_ctrl(struct rte_eth_dev *eth_dev,
2920                          enum rte_filter_type filter_type,
2921                          enum rte_filter_op filter_op,
2922                          void *arg)
2923 {
2924         struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2925         struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2926         struct rte_eth_tunnel_filter_conf *filter_conf =
2927                         (struct rte_eth_tunnel_filter_conf *)arg;
2928
2929         switch (filter_type) {
2930         case RTE_ETH_FILTER_TUNNEL:
2931                 switch (filter_conf->tunnel_type) {
2932                 case RTE_TUNNEL_TYPE_VXLAN:
2933                 case RTE_TUNNEL_TYPE_GENEVE:
2934                 case RTE_TUNNEL_TYPE_IP_IN_GRE:
2935                         DP_INFO(edev,
2936                                 "Packet steering to the specified Rx queue"
2937                                 " is not supported with UDP tunneling");
2938                         return(qede_tunn_filter_config(eth_dev, filter_op,
2939                                                       filter_conf));
2940                 case RTE_TUNNEL_TYPE_TEREDO:
2941                 case RTE_TUNNEL_TYPE_NVGRE:
2942                 case RTE_L2_TUNNEL_TYPE_E_TAG:
2943                         DP_ERR(edev, "Unsupported tunnel type %d\n",
2944                                 filter_conf->tunnel_type);
2945                         return -EINVAL;
2946                 case RTE_TUNNEL_TYPE_NONE:
2947                 default:
2948                         return 0;
2949                 }
2950                 break;
2951         case RTE_ETH_FILTER_FDIR:
2952                 return qede_fdir_filter_conf(eth_dev, filter_op, arg);
2953         case RTE_ETH_FILTER_NTUPLE:
2954                 return qede_ntuple_filter_conf(eth_dev, filter_op, arg);
2955         case RTE_ETH_FILTER_MACVLAN:
2956         case RTE_ETH_FILTER_ETHERTYPE:
2957         case RTE_ETH_FILTER_FLEXIBLE:
2958         case RTE_ETH_FILTER_SYN:
2959         case RTE_ETH_FILTER_HASH:
2960         case RTE_ETH_FILTER_L2_TUNNEL:
2961         case RTE_ETH_FILTER_MAX:
2962         default:
2963                 DP_ERR(edev, "Unsupported filter type %d\n",
2964                         filter_type);
2965                 return -EINVAL;
2966         }
2967
2968         return 0;
2969 }
2970
2971 static const struct eth_dev_ops qede_eth_dev_ops = {
2972         .dev_configure = qede_dev_configure,
2973         .dev_infos_get = qede_dev_info_get,
2974         .rx_queue_setup = qede_rx_queue_setup,
2975         .rx_queue_release = qede_rx_queue_release,
2976         .tx_queue_setup = qede_tx_queue_setup,
2977         .tx_queue_release = qede_tx_queue_release,
2978         .dev_start = qede_dev_start,
2979         .dev_set_link_up = qede_dev_set_link_up,
2980         .dev_set_link_down = qede_dev_set_link_down,
2981         .link_update = qede_link_update,
2982         .promiscuous_enable = qede_promiscuous_enable,
2983         .promiscuous_disable = qede_promiscuous_disable,
2984         .allmulticast_enable = qede_allmulticast_enable,
2985         .allmulticast_disable = qede_allmulticast_disable,
2986         .set_mc_addr_list = qede_set_mc_addr_list,
2987         .dev_stop = qede_dev_stop,
2988         .dev_close = qede_dev_close,
2989         .stats_get = qede_get_stats,
2990         .stats_reset = qede_reset_stats,
2991         .xstats_get = qede_get_xstats,
2992         .xstats_reset = qede_reset_xstats,
2993         .xstats_get_names = qede_get_xstats_names,
2994         .mac_addr_add = qede_mac_addr_add,
2995         .mac_addr_remove = qede_mac_addr_remove,
2996         .mac_addr_set = qede_mac_addr_set,
2997         .vlan_offload_set = qede_vlan_offload_set,
2998         .vlan_filter_set = qede_vlan_filter_set,
2999         .flow_ctrl_set = qede_flow_ctrl_set,
3000         .flow_ctrl_get = qede_flow_ctrl_get,
3001         .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
3002         .rss_hash_update = qede_rss_hash_update,
3003         .rss_hash_conf_get = qede_rss_hash_conf_get,
3004         .reta_update  = qede_rss_reta_update,
3005         .reta_query  = qede_rss_reta_query,
3006         .mtu_set = qede_set_mtu,
3007         .filter_ctrl = qede_dev_filter_ctrl,
3008         .udp_tunnel_port_add = qede_udp_dst_port_add,
3009         .udp_tunnel_port_del = qede_udp_dst_port_del,
3010 };
3011
3012 static const struct eth_dev_ops qede_eth_vf_dev_ops = {
3013         .dev_configure = qede_dev_configure,
3014         .dev_infos_get = qede_dev_info_get,
3015         .rx_queue_setup = qede_rx_queue_setup,
3016         .rx_queue_release = qede_rx_queue_release,
3017         .tx_queue_setup = qede_tx_queue_setup,
3018         .tx_queue_release = qede_tx_queue_release,
3019         .dev_start = qede_dev_start,
3020         .dev_set_link_up = qede_dev_set_link_up,
3021         .dev_set_link_down = qede_dev_set_link_down,
3022         .link_update = qede_link_update,
3023         .promiscuous_enable = qede_promiscuous_enable,
3024         .promiscuous_disable = qede_promiscuous_disable,
3025         .allmulticast_enable = qede_allmulticast_enable,
3026         .allmulticast_disable = qede_allmulticast_disable,
3027         .set_mc_addr_list = qede_set_mc_addr_list,
3028         .dev_stop = qede_dev_stop,
3029         .dev_close = qede_dev_close,
3030         .stats_get = qede_get_stats,
3031         .stats_reset = qede_reset_stats,
3032         .xstats_get = qede_get_xstats,
3033         .xstats_reset = qede_reset_xstats,
3034         .xstats_get_names = qede_get_xstats_names,
3035         .vlan_offload_set = qede_vlan_offload_set,
3036         .vlan_filter_set = qede_vlan_filter_set,
3037         .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
3038         .rss_hash_update = qede_rss_hash_update,
3039         .rss_hash_conf_get = qede_rss_hash_conf_get,
3040         .reta_update  = qede_rss_reta_update,
3041         .reta_query  = qede_rss_reta_query,
3042         .mtu_set = qede_set_mtu,
3043         .udp_tunnel_port_add = qede_udp_dst_port_add,
3044         .udp_tunnel_port_del = qede_udp_dst_port_del,
3045         .mac_addr_add = qede_mac_addr_add,
3046         .mac_addr_remove = qede_mac_addr_remove,
3047         .mac_addr_set = qede_mac_addr_set,
3048 };
3049
3050 static void qede_update_pf_params(struct ecore_dev *edev)
3051 {
3052         struct ecore_pf_params pf_params;
3053
3054         memset(&pf_params, 0, sizeof(struct ecore_pf_params));
3055         pf_params.eth_pf_params.num_cons = QEDE_PF_NUM_CONNS;
3056         pf_params.eth_pf_params.num_arfs_filters = QEDE_RFS_MAX_FLTR;
3057         qed_ops->common->update_pf_params(edev, &pf_params);
3058 }
3059
3060 static int qede_common_dev_init(struct rte_eth_dev *eth_dev, bool is_vf)
3061 {
3062         struct rte_pci_device *pci_dev;
3063         struct rte_pci_addr pci_addr;
3064         struct qede_dev *adapter;
3065         struct ecore_dev *edev;
3066         struct qed_dev_eth_info dev_info;
3067         struct qed_slowpath_params params;
3068         static bool do_once = true;
3069         uint8_t bulletin_change;
3070         uint8_t vf_mac[ETHER_ADDR_LEN];
3071         uint8_t is_mac_forced;
3072         bool is_mac_exist;
3073         /* Fix up ecore debug level */
3074         uint32_t dp_module = ~0 & ~ECORE_MSG_HW;
3075         uint8_t dp_level = ECORE_LEVEL_VERBOSE;
3076         uint32_t int_mode;
3077         int rc;
3078
3079         /* Extract key data structures */
3080         adapter = eth_dev->data->dev_private;
3081         adapter->ethdev = eth_dev;
3082         edev = &adapter->edev;
3083         pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
3084         pci_addr = pci_dev->addr;
3085
3086         PMD_INIT_FUNC_TRACE(edev);
3087
3088         snprintf(edev->name, NAME_SIZE, PCI_SHORT_PRI_FMT ":dpdk-port-%u",
3089                  pci_addr.bus, pci_addr.devid, pci_addr.function,
3090                  eth_dev->data->port_id);
3091
3092         eth_dev->rx_pkt_burst = qede_recv_pkts;
3093         eth_dev->tx_pkt_burst = qede_xmit_pkts;
3094         eth_dev->tx_pkt_prepare = qede_xmit_prep_pkts;
3095
3096         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
3097                 DP_ERR(edev, "Skipping device init from secondary process\n");
3098                 return 0;
3099         }
3100
3101         rte_eth_copy_pci_info(eth_dev, pci_dev);
3102
3103         /* @DPDK */
3104         edev->vendor_id = pci_dev->id.vendor_id;
3105         edev->device_id = pci_dev->id.device_id;
3106
3107         qed_ops = qed_get_eth_ops();
3108         if (!qed_ops) {
3109                 DP_ERR(edev, "Failed to get qed_eth_ops_pass\n");
3110                 return -EINVAL;
3111         }
3112
3113         DP_INFO(edev, "Starting qede probe\n");
3114         rc = qed_ops->common->probe(edev, pci_dev, dp_module,
3115                                     dp_level, is_vf);
3116         if (rc != 0) {
3117                 DP_ERR(edev, "qede probe failed rc %d\n", rc);
3118                 return -ENODEV;
3119         }
3120         qede_update_pf_params(edev);
3121
3122         switch (pci_dev->intr_handle.type) {
3123         case RTE_INTR_HANDLE_UIO_INTX:
3124         case RTE_INTR_HANDLE_VFIO_LEGACY:
3125                 int_mode = ECORE_INT_MODE_INTA;
3126                 rte_intr_callback_register(&pci_dev->intr_handle,
3127                                            qede_interrupt_handler_intx,
3128                                            (void *)eth_dev);
3129                 break;
3130         default:
3131                 int_mode = ECORE_INT_MODE_MSIX;
3132                 rte_intr_callback_register(&pci_dev->intr_handle,
3133                                            qede_interrupt_handler,
3134                                            (void *)eth_dev);
3135         }
3136
3137         if (rte_intr_enable(&pci_dev->intr_handle)) {
3138                 DP_ERR(edev, "rte_intr_enable() failed\n");
3139                 return -ENODEV;
3140         }
3141
3142         /* Start the Slowpath-process */
3143         memset(&params, 0, sizeof(struct qed_slowpath_params));
3144
3145         params.int_mode = int_mode;
3146         params.drv_major = QEDE_PMD_VERSION_MAJOR;
3147         params.drv_minor = QEDE_PMD_VERSION_MINOR;
3148         params.drv_rev = QEDE_PMD_VERSION_REVISION;
3149         params.drv_eng = QEDE_PMD_VERSION_PATCH;
3150         strncpy((char *)params.name, QEDE_PMD_VER_PREFIX,
3151                 QEDE_PMD_DRV_VER_STR_SIZE);
3152
3153         /* For CMT mode device do periodic polling for slowpath events.
3154          * This is required since uio device uses only one MSI-x
3155          * interrupt vector but we need one for each engine.
3156          */
3157         if (ECORE_IS_CMT(edev) && IS_PF(edev)) {
3158                 rc = rte_eal_alarm_set(QEDE_SP_TIMER_PERIOD,
3159                                        qede_poll_sp_sb_cb,
3160                                        (void *)eth_dev);
3161                 if (rc != 0) {
3162                         DP_ERR(edev, "Unable to start periodic"
3163                                      " timer rc %d\n", rc);
3164                         return -EINVAL;
3165                 }
3166         }
3167
3168         rc = qed_ops->common->slowpath_start(edev, &params);
3169         if (rc) {
3170                 DP_ERR(edev, "Cannot start slowpath rc = %d\n", rc);
3171                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
3172                                      (void *)eth_dev);
3173                 return -ENODEV;
3174         }
3175
3176         rc = qed_ops->fill_dev_info(edev, &dev_info);
3177         if (rc) {
3178                 DP_ERR(edev, "Cannot get device_info rc %d\n", rc);
3179                 qed_ops->common->slowpath_stop(edev);
3180                 qed_ops->common->remove(edev);
3181                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
3182                                      (void *)eth_dev);
3183                 return -ENODEV;
3184         }
3185
3186         qede_alloc_etherdev(adapter, &dev_info);
3187
3188         adapter->ops->common->set_name(edev, edev->name);
3189
3190         if (!is_vf)
3191                 adapter->dev_info.num_mac_filters =
3192                         (uint32_t)RESC_NUM(ECORE_LEADING_HWFN(edev),
3193                                             ECORE_MAC);
3194         else
3195                 ecore_vf_get_num_mac_filters(ECORE_LEADING_HWFN(edev),
3196                                 (uint32_t *)&adapter->dev_info.num_mac_filters);
3197
3198         /* Allocate memory for storing MAC addr */
3199         eth_dev->data->mac_addrs = rte_zmalloc(edev->name,
3200                                         (ETHER_ADDR_LEN *
3201                                         adapter->dev_info.num_mac_filters),
3202                                         RTE_CACHE_LINE_SIZE);
3203
3204         if (eth_dev->data->mac_addrs == NULL) {
3205                 DP_ERR(edev, "Failed to allocate MAC address\n");
3206                 qed_ops->common->slowpath_stop(edev);
3207                 qed_ops->common->remove(edev);
3208                 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
3209                                      (void *)eth_dev);
3210                 return -ENOMEM;
3211         }
3212
3213         if (!is_vf) {
3214                 ether_addr_copy((struct ether_addr *)edev->hwfns[0].
3215                                 hw_info.hw_mac_addr,
3216                                 &eth_dev->data->mac_addrs[0]);
3217                 ether_addr_copy(&eth_dev->data->mac_addrs[0],
3218                                 &adapter->primary_mac);
3219         } else {
3220                 ecore_vf_read_bulletin(ECORE_LEADING_HWFN(edev),
3221                                        &bulletin_change);
3222                 if (bulletin_change) {
3223                         is_mac_exist =
3224                             ecore_vf_bulletin_get_forced_mac(
3225                                                 ECORE_LEADING_HWFN(edev),
3226                                                 vf_mac,
3227                                                 &is_mac_forced);
3228                         if (is_mac_exist) {
3229                                 DP_INFO(edev, "VF macaddr received from PF\n");
3230                                 ether_addr_copy((struct ether_addr *)&vf_mac,
3231                                                 &eth_dev->data->mac_addrs[0]);
3232                                 ether_addr_copy(&eth_dev->data->mac_addrs[0],
3233                                                 &adapter->primary_mac);
3234                         } else {
3235                                 DP_ERR(edev, "No VF macaddr assigned\n");
3236                         }
3237                 }
3238         }
3239
3240         eth_dev->dev_ops = (is_vf) ? &qede_eth_vf_dev_ops : &qede_eth_dev_ops;
3241
3242         if (do_once) {
3243                 qede_print_adapter_info(adapter);
3244                 do_once = false;
3245         }
3246
3247         /* Bring-up the link */
3248         qede_dev_set_link_state(eth_dev, true);
3249
3250         adapter->num_tx_queues = 0;
3251         adapter->num_rx_queues = 0;
3252         SLIST_INIT(&adapter->fdir_info.fdir_list_head);
3253         SLIST_INIT(&adapter->vlan_list_head);
3254         SLIST_INIT(&adapter->uc_list_head);
3255         SLIST_INIT(&adapter->mc_list_head);
3256         adapter->mtu = ETHER_MTU;
3257         adapter->vport_started = false;
3258
3259         /* VF tunnel offloads is enabled by default in PF driver */
3260         adapter->vxlan.num_filters = 0;
3261         adapter->geneve.num_filters = 0;
3262         adapter->ipgre.num_filters = 0;
3263         if (is_vf) {
3264                 adapter->vxlan.enable = true;
3265                 adapter->vxlan.filter_type = ETH_TUNNEL_FILTER_IMAC |
3266                                              ETH_TUNNEL_FILTER_IVLAN;
3267                 adapter->vxlan.udp_port = QEDE_VXLAN_DEF_PORT;
3268                 adapter->geneve.enable = true;
3269                 adapter->geneve.filter_type = ETH_TUNNEL_FILTER_IMAC |
3270                                               ETH_TUNNEL_FILTER_IVLAN;
3271                 adapter->geneve.udp_port = QEDE_GENEVE_DEF_PORT;
3272                 adapter->ipgre.enable = true;
3273                 adapter->ipgre.filter_type = ETH_TUNNEL_FILTER_IMAC |
3274                                              ETH_TUNNEL_FILTER_IVLAN;
3275         } else {
3276                 adapter->vxlan.enable = false;
3277                 adapter->geneve.enable = false;
3278                 adapter->ipgre.enable = false;
3279         }
3280
3281         DP_INFO(edev, "MAC address : %02x:%02x:%02x:%02x:%02x:%02x\n",
3282                 adapter->primary_mac.addr_bytes[0],
3283                 adapter->primary_mac.addr_bytes[1],
3284                 adapter->primary_mac.addr_bytes[2],
3285                 adapter->primary_mac.addr_bytes[3],
3286                 adapter->primary_mac.addr_bytes[4],
3287                 adapter->primary_mac.addr_bytes[5]);
3288
3289         DP_INFO(edev, "Device initialized\n");
3290
3291         return 0;
3292 }
3293
3294 static int qedevf_eth_dev_init(struct rte_eth_dev *eth_dev)
3295 {
3296         return qede_common_dev_init(eth_dev, 1);
3297 }
3298
3299 static int qede_eth_dev_init(struct rte_eth_dev *eth_dev)
3300 {
3301         return qede_common_dev_init(eth_dev, 0);
3302 }
3303
3304 static int qede_dev_common_uninit(struct rte_eth_dev *eth_dev)
3305 {
3306 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
3307         struct qede_dev *qdev = eth_dev->data->dev_private;
3308         struct ecore_dev *edev = &qdev->edev;
3309
3310         PMD_INIT_FUNC_TRACE(edev);
3311 #endif
3312
3313         /* only uninitialize in the primary process */
3314         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
3315                 return 0;
3316
3317         /* safe to close dev here */
3318         qede_dev_close(eth_dev);
3319
3320         eth_dev->dev_ops = NULL;
3321         eth_dev->rx_pkt_burst = NULL;
3322         eth_dev->tx_pkt_burst = NULL;
3323
3324         if (eth_dev->data->mac_addrs)
3325                 rte_free(eth_dev->data->mac_addrs);
3326
3327         eth_dev->data->mac_addrs = NULL;
3328
3329         return 0;
3330 }
3331
3332 static int qede_eth_dev_uninit(struct rte_eth_dev *eth_dev)
3333 {
3334         return qede_dev_common_uninit(eth_dev);
3335 }
3336
3337 static int qedevf_eth_dev_uninit(struct rte_eth_dev *eth_dev)
3338 {
3339         return qede_dev_common_uninit(eth_dev);
3340 }
3341
3342 static const struct rte_pci_id pci_id_qedevf_map[] = {
3343 #define QEDEVF_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
3344         {
3345                 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_VF)
3346         },
3347         {
3348                 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_IOV)
3349         },
3350         {
3351                 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_IOV)
3352         },
3353         {.vendor_id = 0,}
3354 };
3355
3356 static const struct rte_pci_id pci_id_qede_map[] = {
3357 #define QEDE_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
3358         {
3359                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_57980E)
3360         },
3361         {
3362                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_57980S)
3363         },
3364         {
3365                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_40)
3366         },
3367         {
3368                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_25)
3369         },
3370         {
3371                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_100)
3372         },
3373         {
3374                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_50)
3375         },
3376         {
3377                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_50G)
3378         },
3379         {
3380                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_10G)
3381         },
3382         {
3383                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_40G)
3384         },
3385         {
3386                 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_25G)
3387         },
3388         {.vendor_id = 0,}
3389 };
3390
3391 static int qedevf_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
3392         struct rte_pci_device *pci_dev)
3393 {
3394         return rte_eth_dev_pci_generic_probe(pci_dev,
3395                 sizeof(struct qede_dev), qedevf_eth_dev_init);
3396 }
3397
3398 static int qedevf_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
3399 {
3400         return rte_eth_dev_pci_generic_remove(pci_dev, qedevf_eth_dev_uninit);
3401 }
3402
3403 static struct rte_pci_driver rte_qedevf_pmd = {
3404         .id_table = pci_id_qedevf_map,
3405         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
3406         .probe = qedevf_eth_dev_pci_probe,
3407         .remove = qedevf_eth_dev_pci_remove,
3408 };
3409
3410 static int qede_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
3411         struct rte_pci_device *pci_dev)
3412 {
3413         return rte_eth_dev_pci_generic_probe(pci_dev,
3414                 sizeof(struct qede_dev), qede_eth_dev_init);
3415 }
3416
3417 static int qede_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
3418 {
3419         return rte_eth_dev_pci_generic_remove(pci_dev, qede_eth_dev_uninit);
3420 }
3421
3422 static struct rte_pci_driver rte_qede_pmd = {
3423         .id_table = pci_id_qede_map,
3424         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
3425         .probe = qede_eth_dev_pci_probe,
3426         .remove = qede_eth_dev_pci_remove,
3427 };
3428
3429 RTE_PMD_REGISTER_PCI(net_qede, rte_qede_pmd);
3430 RTE_PMD_REGISTER_PCI_TABLE(net_qede, pci_id_qede_map);
3431 RTE_PMD_REGISTER_KMOD_DEP(net_qede, "* igb_uio | uio_pci_generic | vfio-pci");
3432 RTE_PMD_REGISTER_PCI(net_qede_vf, rte_qedevf_pmd);
3433 RTE_PMD_REGISTER_PCI_TABLE(net_qede_vf, pci_id_qedevf_map);
3434 RTE_PMD_REGISTER_KMOD_DEP(net_qede_vf, "* igb_uio | vfio-pci");
3435
3436 RTE_INIT(qede_init_log);
3437 static void
3438 qede_init_log(void)
3439 {
3440         qede_logtype_init = rte_log_register("pmd.net.qede.init");
3441         if (qede_logtype_init >= 0)
3442                 rte_log_set_level(qede_logtype_init, RTE_LOG_NOTICE);
3443         qede_logtype_driver = rte_log_register("pmd.net.qede.driver");
3444         if (qede_logtype_driver >= 0)
3445                 rte_log_set_level(qede_logtype_driver, RTE_LOG_NOTICE);
3446 }