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