2 * Copyright (c) 2016 QLogic Corporation.
6 * See LICENSE.qede_pmd for copyright and licensing details.
9 #include "qede_ethdev.h"
10 #include <rte_alarm.h>
11 #include <rte_version.h>
14 static const struct qed_eth_ops *qed_ops;
15 static int64_t timer_period = 1;
17 /* VXLAN tunnel classification mapping */
18 const struct _qede_vxlan_tunn_types {
19 uint16_t rte_filter_type;
20 enum ecore_filter_ucast_type qede_type;
21 enum ecore_tunn_clss qede_tunn_clss;
23 } qede_tunn_types[] = {
25 ETH_TUNNEL_FILTER_OMAC,
27 ECORE_TUNN_CLSS_MAC_VLAN,
31 ETH_TUNNEL_FILTER_TENID,
33 ECORE_TUNN_CLSS_MAC_VNI,
37 ETH_TUNNEL_FILTER_IMAC,
38 ECORE_FILTER_INNER_MAC,
39 ECORE_TUNN_CLSS_INNER_MAC_VLAN,
43 ETH_TUNNEL_FILTER_IVLAN,
44 ECORE_FILTER_INNER_VLAN,
45 ECORE_TUNN_CLSS_INNER_MAC_VLAN,
49 ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_TENID,
50 ECORE_FILTER_MAC_VNI_PAIR,
51 ECORE_TUNN_CLSS_MAC_VNI,
55 ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_IMAC,
58 "outer-mac and inner-mac"
61 ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_IVLAN,
64 "outer-mac and inner-vlan"
67 ETH_TUNNEL_FILTER_TENID | ETH_TUNNEL_FILTER_IMAC,
68 ECORE_FILTER_INNER_MAC_VNI_PAIR,
69 ECORE_TUNN_CLSS_INNER_MAC_VNI,
73 ETH_TUNNEL_FILTER_TENID | ETH_TUNNEL_FILTER_IVLAN,
79 ETH_TUNNEL_FILTER_IMAC | ETH_TUNNEL_FILTER_IVLAN,
80 ECORE_FILTER_INNER_PAIR,
81 ECORE_TUNN_CLSS_INNER_MAC_VLAN,
82 "inner-mac and inner-vlan",
85 ETH_TUNNEL_FILTER_OIP,
91 ETH_TUNNEL_FILTER_IIP,
97 RTE_TUNNEL_FILTER_IMAC_IVLAN,
103 RTE_TUNNEL_FILTER_IMAC_IVLAN_TENID,
109 RTE_TUNNEL_FILTER_IMAC_TENID,
115 RTE_TUNNEL_FILTER_OMAC_TENID_IMAC,
122 struct rte_qede_xstats_name_off {
123 char name[RTE_ETH_XSTATS_NAME_SIZE];
127 static const struct rte_qede_xstats_name_off qede_xstats_strings[] = {
128 {"rx_unicast_bytes", offsetof(struct ecore_eth_stats, rx_ucast_bytes)},
129 {"rx_multicast_bytes",
130 offsetof(struct ecore_eth_stats, rx_mcast_bytes)},
131 {"rx_broadcast_bytes",
132 offsetof(struct ecore_eth_stats, rx_bcast_bytes)},
133 {"rx_unicast_packets", offsetof(struct ecore_eth_stats, rx_ucast_pkts)},
134 {"rx_multicast_packets",
135 offsetof(struct ecore_eth_stats, rx_mcast_pkts)},
136 {"rx_broadcast_packets",
137 offsetof(struct ecore_eth_stats, rx_bcast_pkts)},
139 {"tx_unicast_bytes", offsetof(struct ecore_eth_stats, tx_ucast_bytes)},
140 {"tx_multicast_bytes",
141 offsetof(struct ecore_eth_stats, tx_mcast_bytes)},
142 {"tx_broadcast_bytes",
143 offsetof(struct ecore_eth_stats, tx_bcast_bytes)},
144 {"tx_unicast_packets", offsetof(struct ecore_eth_stats, tx_ucast_pkts)},
145 {"tx_multicast_packets",
146 offsetof(struct ecore_eth_stats, tx_mcast_pkts)},
147 {"tx_broadcast_packets",
148 offsetof(struct ecore_eth_stats, tx_bcast_pkts)},
150 {"rx_64_byte_packets",
151 offsetof(struct ecore_eth_stats, rx_64_byte_packets)},
152 {"rx_65_to_127_byte_packets",
153 offsetof(struct ecore_eth_stats, rx_65_to_127_byte_packets)},
154 {"rx_128_to_255_byte_packets",
155 offsetof(struct ecore_eth_stats, rx_128_to_255_byte_packets)},
156 {"rx_256_to_511_byte_packets",
157 offsetof(struct ecore_eth_stats, rx_256_to_511_byte_packets)},
158 {"rx_512_to_1023_byte_packets",
159 offsetof(struct ecore_eth_stats, rx_512_to_1023_byte_packets)},
160 {"rx_1024_to_1518_byte_packets",
161 offsetof(struct ecore_eth_stats, rx_1024_to_1518_byte_packets)},
162 {"rx_1519_to_1522_byte_packets",
163 offsetof(struct ecore_eth_stats, rx_1519_to_1522_byte_packets)},
164 {"rx_1519_to_2047_byte_packets",
165 offsetof(struct ecore_eth_stats, rx_1519_to_2047_byte_packets)},
166 {"rx_2048_to_4095_byte_packets",
167 offsetof(struct ecore_eth_stats, rx_2048_to_4095_byte_packets)},
168 {"rx_4096_to_9216_byte_packets",
169 offsetof(struct ecore_eth_stats, rx_4096_to_9216_byte_packets)},
170 {"rx_9217_to_16383_byte_packets",
171 offsetof(struct ecore_eth_stats,
172 rx_9217_to_16383_byte_packets)},
173 {"tx_64_byte_packets",
174 offsetof(struct ecore_eth_stats, tx_64_byte_packets)},
175 {"tx_65_to_127_byte_packets",
176 offsetof(struct ecore_eth_stats, tx_65_to_127_byte_packets)},
177 {"tx_128_to_255_byte_packets",
178 offsetof(struct ecore_eth_stats, tx_128_to_255_byte_packets)},
179 {"tx_256_to_511_byte_packets",
180 offsetof(struct ecore_eth_stats, tx_256_to_511_byte_packets)},
181 {"tx_512_to_1023_byte_packets",
182 offsetof(struct ecore_eth_stats, tx_512_to_1023_byte_packets)},
183 {"tx_1024_to_1518_byte_packets",
184 offsetof(struct ecore_eth_stats, tx_1024_to_1518_byte_packets)},
185 {"trx_1519_to_1522_byte_packets",
186 offsetof(struct ecore_eth_stats, tx_1519_to_2047_byte_packets)},
187 {"tx_2048_to_4095_byte_packets",
188 offsetof(struct ecore_eth_stats, tx_2048_to_4095_byte_packets)},
189 {"tx_4096_to_9216_byte_packets",
190 offsetof(struct ecore_eth_stats, tx_4096_to_9216_byte_packets)},
191 {"tx_9217_to_16383_byte_packets",
192 offsetof(struct ecore_eth_stats,
193 tx_9217_to_16383_byte_packets)},
195 {"rx_mac_crtl_frames",
196 offsetof(struct ecore_eth_stats, rx_mac_crtl_frames)},
197 {"tx_mac_control_frames",
198 offsetof(struct ecore_eth_stats, tx_mac_ctrl_frames)},
199 {"rx_pause_frames", offsetof(struct ecore_eth_stats, rx_pause_frames)},
200 {"tx_pause_frames", offsetof(struct ecore_eth_stats, tx_pause_frames)},
201 {"rx_priority_flow_control_frames",
202 offsetof(struct ecore_eth_stats, rx_pfc_frames)},
203 {"tx_priority_flow_control_frames",
204 offsetof(struct ecore_eth_stats, tx_pfc_frames)},
206 {"rx_crc_errors", offsetof(struct ecore_eth_stats, rx_crc_errors)},
207 {"rx_align_errors", offsetof(struct ecore_eth_stats, rx_align_errors)},
208 {"rx_carrier_errors",
209 offsetof(struct ecore_eth_stats, rx_carrier_errors)},
210 {"rx_oversize_packet_errors",
211 offsetof(struct ecore_eth_stats, rx_oversize_packets)},
212 {"rx_jabber_errors", offsetof(struct ecore_eth_stats, rx_jabbers)},
213 {"rx_undersize_packet_errors",
214 offsetof(struct ecore_eth_stats, rx_undersize_packets)},
215 {"rx_fragments", offsetof(struct ecore_eth_stats, rx_fragments)},
216 {"rx_host_buffer_not_available",
217 offsetof(struct ecore_eth_stats, no_buff_discards)},
218 /* Number of packets discarded because they are bigger than MTU */
219 {"rx_packet_too_big_discards",
220 offsetof(struct ecore_eth_stats, packet_too_big_discard)},
221 {"rx_ttl_zero_discards",
222 offsetof(struct ecore_eth_stats, ttl0_discard)},
223 {"rx_multi_function_tag_filter_discards",
224 offsetof(struct ecore_eth_stats, mftag_filter_discards)},
225 {"rx_mac_filter_discards",
226 offsetof(struct ecore_eth_stats, mac_filter_discards)},
227 {"rx_hw_buffer_truncates",
228 offsetof(struct ecore_eth_stats, brb_truncates)},
229 {"rx_hw_buffer_discards",
230 offsetof(struct ecore_eth_stats, brb_discards)},
231 {"tx_lpi_entry_count",
232 offsetof(struct ecore_eth_stats, tx_lpi_entry_count)},
233 {"tx_total_collisions",
234 offsetof(struct ecore_eth_stats, tx_total_collisions)},
235 {"tx_error_drop_packets",
236 offsetof(struct ecore_eth_stats, tx_err_drop_pkts)},
238 {"rx_mac_bytes", offsetof(struct ecore_eth_stats, rx_mac_bytes)},
239 {"rx_mac_unicast_packets",
240 offsetof(struct ecore_eth_stats, rx_mac_uc_packets)},
241 {"rx_mac_multicast_packets",
242 offsetof(struct ecore_eth_stats, rx_mac_mc_packets)},
243 {"rx_mac_broadcast_packets",
244 offsetof(struct ecore_eth_stats, rx_mac_bc_packets)},
246 offsetof(struct ecore_eth_stats, rx_mac_frames_ok)},
247 {"tx_mac_bytes", offsetof(struct ecore_eth_stats, tx_mac_bytes)},
248 {"tx_mac_unicast_packets",
249 offsetof(struct ecore_eth_stats, tx_mac_uc_packets)},
250 {"tx_mac_multicast_packets",
251 offsetof(struct ecore_eth_stats, tx_mac_mc_packets)},
252 {"tx_mac_broadcast_packets",
253 offsetof(struct ecore_eth_stats, tx_mac_bc_packets)},
255 {"lro_coalesced_packets",
256 offsetof(struct ecore_eth_stats, tpa_coalesced_pkts)},
257 {"lro_coalesced_events",
258 offsetof(struct ecore_eth_stats, tpa_coalesced_events)},
260 offsetof(struct ecore_eth_stats, tpa_aborts_num)},
261 {"lro_not_coalesced_packets",
262 offsetof(struct ecore_eth_stats, tpa_not_coalesced_pkts)},
263 {"lro_coalesced_bytes",
264 offsetof(struct ecore_eth_stats, tpa_coalesced_bytes)},
267 static const struct rte_qede_xstats_name_off qede_rxq_xstats_strings[] = {
269 offsetof(struct qede_rx_queue, rx_segs)},
271 offsetof(struct qede_rx_queue, rx_hw_errors)},
272 {"rx_q_allocation_errors",
273 offsetof(struct qede_rx_queue, rx_alloc_errors)}
276 static void qede_interrupt_action(struct ecore_hwfn *p_hwfn)
278 ecore_int_sp_dpc((osal_int_ptr_t)(p_hwfn));
282 qede_interrupt_handler(void *param)
284 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
285 struct qede_dev *qdev = eth_dev->data->dev_private;
286 struct ecore_dev *edev = &qdev->edev;
288 qede_interrupt_action(ECORE_LEADING_HWFN(edev));
289 if (rte_intr_enable(eth_dev->intr_handle))
290 DP_ERR(edev, "rte_intr_enable failed\n");
294 qede_alloc_etherdev(struct qede_dev *qdev, struct qed_dev_eth_info *info)
296 rte_memcpy(&qdev->dev_info, info, sizeof(*info));
300 #ifdef RTE_LIBRTE_QEDE_DEBUG_INFO
301 static void qede_print_adapter_info(struct qede_dev *qdev)
303 struct ecore_dev *edev = &qdev->edev;
304 struct qed_dev_info *info = &qdev->dev_info.common;
305 static char drv_ver[QEDE_PMD_DRV_VER_STR_SIZE];
306 static char ver_str[QEDE_PMD_DRV_VER_STR_SIZE];
308 DP_INFO(edev, "*********************************\n");
309 DP_INFO(edev, " DPDK version:%s\n", rte_version());
310 DP_INFO(edev, " Chip details : %s%d\n",
311 ECORE_IS_BB(edev) ? "BB" : "AH",
312 CHIP_REV_IS_A0(edev) ? 0 : 1);
313 snprintf(ver_str, QEDE_PMD_DRV_VER_STR_SIZE, "%d.%d.%d.%d",
314 info->fw_major, info->fw_minor, info->fw_rev, info->fw_eng);
315 snprintf(drv_ver, QEDE_PMD_DRV_VER_STR_SIZE, "%s_%s",
316 ver_str, QEDE_PMD_VERSION);
317 DP_INFO(edev, " Driver version : %s\n", drv_ver);
318 DP_INFO(edev, " Firmware version : %s\n", ver_str);
320 snprintf(ver_str, MCP_DRV_VER_STR_SIZE,
322 (info->mfw_rev >> 24) & 0xff,
323 (info->mfw_rev >> 16) & 0xff,
324 (info->mfw_rev >> 8) & 0xff, (info->mfw_rev) & 0xff);
325 DP_INFO(edev, " Management Firmware version : %s\n", ver_str);
326 DP_INFO(edev, " Firmware file : %s\n", fw_file);
327 DP_INFO(edev, "*********************************\n");
332 qede_start_vport(struct qede_dev *qdev, uint16_t mtu)
334 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
335 struct ecore_sp_vport_start_params params;
336 struct ecore_hwfn *p_hwfn;
340 memset(¶ms, 0, sizeof(params));
343 /* @DPDK - Disable FW placement */
344 params.zero_placement_offset = 1;
345 for_each_hwfn(edev, i) {
346 p_hwfn = &edev->hwfns[i];
347 params.concrete_fid = p_hwfn->hw_info.concrete_fid;
348 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
349 rc = ecore_sp_vport_start(p_hwfn, ¶ms);
350 if (rc != ECORE_SUCCESS) {
351 DP_ERR(edev, "Start V-PORT failed %d\n", rc);
355 ecore_reset_vport_stats(edev);
356 DP_INFO(edev, "VPORT started with MTU = %u\n", mtu);
362 qede_stop_vport(struct ecore_dev *edev)
364 struct ecore_hwfn *p_hwfn;
370 for_each_hwfn(edev, i) {
371 p_hwfn = &edev->hwfns[i];
372 rc = ecore_sp_vport_stop(p_hwfn, p_hwfn->hw_info.opaque_fid,
374 if (rc != ECORE_SUCCESS) {
375 DP_ERR(edev, "Stop V-PORT failed rc = %d\n", rc);
383 /* Activate or deactivate vport via vport-update */
384 int qede_activate_vport(struct rte_eth_dev *eth_dev, bool flg)
386 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
387 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
388 struct ecore_sp_vport_update_params params;
389 struct ecore_hwfn *p_hwfn;
393 memset(¶ms, 0, sizeof(struct ecore_sp_vport_update_params));
395 params.update_vport_active_rx_flg = 1;
396 params.update_vport_active_tx_flg = 1;
397 params.vport_active_rx_flg = flg;
398 params.vport_active_tx_flg = flg;
399 for_each_hwfn(edev, i) {
400 p_hwfn = &edev->hwfns[i];
401 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
402 rc = ecore_sp_vport_update(p_hwfn, ¶ms,
403 ECORE_SPQ_MODE_EBLOCK, NULL);
404 if (rc != ECORE_SUCCESS) {
405 DP_ERR(edev, "Failed to update vport\n");
409 DP_INFO(edev, "vport %s\n", flg ? "activated" : "deactivated");
414 qede_update_sge_tpa_params(struct ecore_sge_tpa_params *sge_tpa_params,
415 uint16_t mtu, bool enable)
417 /* Enable LRO in split mode */
418 sge_tpa_params->tpa_ipv4_en_flg = enable;
419 sge_tpa_params->tpa_ipv6_en_flg = enable;
420 sge_tpa_params->tpa_ipv4_tunn_en_flg = false;
421 sge_tpa_params->tpa_ipv6_tunn_en_flg = false;
422 /* set if tpa enable changes */
423 sge_tpa_params->update_tpa_en_flg = 1;
424 /* set if tpa parameters should be handled */
425 sge_tpa_params->update_tpa_param_flg = enable;
427 sge_tpa_params->max_buffers_per_cqe = 20;
428 /* Enable TPA in split mode. In this mode each TPA segment
429 * starts on the new BD, so there is one BD per segment.
431 sge_tpa_params->tpa_pkt_split_flg = 1;
432 sge_tpa_params->tpa_hdr_data_split_flg = 0;
433 sge_tpa_params->tpa_gro_consistent_flg = 0;
434 sge_tpa_params->tpa_max_aggs_num = ETH_TPA_MAX_AGGS_NUM;
435 sge_tpa_params->tpa_max_size = 0x7FFF;
436 sge_tpa_params->tpa_min_size_to_start = mtu / 2;
437 sge_tpa_params->tpa_min_size_to_cont = mtu / 2;
440 /* Enable/disable LRO via vport-update */
441 int qede_enable_tpa(struct rte_eth_dev *eth_dev, bool flg)
443 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
444 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
445 struct ecore_sp_vport_update_params params;
446 struct ecore_sge_tpa_params tpa_params;
447 struct ecore_hwfn *p_hwfn;
451 memset(¶ms, 0, sizeof(struct ecore_sp_vport_update_params));
452 memset(&tpa_params, 0, sizeof(struct ecore_sge_tpa_params));
453 qede_update_sge_tpa_params(&tpa_params, qdev->mtu, flg);
455 params.sge_tpa_params = &tpa_params;
456 for_each_hwfn(edev, i) {
457 p_hwfn = &edev->hwfns[i];
458 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
459 rc = ecore_sp_vport_update(p_hwfn, ¶ms,
460 ECORE_SPQ_MODE_EBLOCK, NULL);
461 if (rc != ECORE_SUCCESS) {
462 DP_ERR(edev, "Failed to update LRO\n");
467 DP_INFO(edev, "LRO is %s\n", flg ? "enabled" : "disabled");
472 /* Update MTU via vport-update without doing port restart.
473 * The vport must be deactivated before calling this API.
475 int qede_update_mtu(struct rte_eth_dev *eth_dev, uint16_t mtu)
477 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
478 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
479 struct ecore_sp_vport_update_params params;
480 struct ecore_hwfn *p_hwfn;
484 memset(¶ms, 0, sizeof(struct ecore_sp_vport_update_params));
488 for_each_hwfn(edev, i) {
489 p_hwfn = &edev->hwfns[i];
490 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
491 rc = ecore_sp_vport_update(p_hwfn, ¶ms,
492 ECORE_SPQ_MODE_EBLOCK, NULL);
493 if (rc != ECORE_SUCCESS) {
494 DP_ERR(edev, "Failed to update MTU\n");
498 DP_INFO(edev, "MTU updated to %u\n", mtu);
503 static void qede_set_ucast_cmn_params(struct ecore_filter_ucast *ucast)
505 memset(ucast, 0, sizeof(struct ecore_filter_ucast));
506 ucast->is_rx_filter = true;
507 ucast->is_tx_filter = true;
508 /* ucast->assert_on_error = true; - For debug */
512 qed_configure_filter_rx_mode(struct rte_eth_dev *eth_dev,
513 enum qed_filter_rx_mode_type type)
515 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
516 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
517 struct ecore_filter_accept_flags flags;
519 memset(&flags, 0, sizeof(flags));
521 flags.update_rx_mode_config = 1;
522 flags.update_tx_mode_config = 1;
523 flags.rx_accept_filter = ECORE_ACCEPT_UCAST_MATCHED |
524 ECORE_ACCEPT_MCAST_MATCHED |
527 flags.tx_accept_filter = ECORE_ACCEPT_UCAST_MATCHED |
528 ECORE_ACCEPT_MCAST_MATCHED |
531 if (type == QED_FILTER_RX_MODE_TYPE_PROMISC) {
532 flags.rx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED;
534 flags.tx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED;
535 DP_INFO(edev, "Enabling Tx unmatched flag for VF\n");
537 } else if (type == QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC) {
538 flags.rx_accept_filter |= ECORE_ACCEPT_MCAST_UNMATCHED;
539 } else if (type == (QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC |
540 QED_FILTER_RX_MODE_TYPE_PROMISC)) {
541 flags.rx_accept_filter |= ECORE_ACCEPT_UCAST_UNMATCHED |
542 ECORE_ACCEPT_MCAST_UNMATCHED;
545 return ecore_filter_accept_cmd(edev, 0, flags, false, false,
546 ECORE_SPQ_MODE_CB, NULL);
548 static void qede_set_cmn_tunn_param(struct ecore_tunnel_info *p_tunn,
549 uint8_t clss, bool mode, bool mask)
551 memset(p_tunn, 0, sizeof(struct ecore_tunnel_info));
552 p_tunn->vxlan.b_update_mode = mode;
553 p_tunn->vxlan.b_mode_enabled = mask;
554 p_tunn->b_update_rx_cls = true;
555 p_tunn->b_update_tx_cls = true;
556 p_tunn->vxlan.tun_cls = clss;
560 qede_ucast_filter(struct rte_eth_dev *eth_dev, struct ecore_filter_ucast *ucast,
563 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
564 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
565 struct qede_ucast_entry *tmp = NULL;
566 struct qede_ucast_entry *u;
567 struct ether_addr *mac_addr;
569 mac_addr = (struct ether_addr *)ucast->mac;
571 SLIST_FOREACH(tmp, &qdev->uc_list_head, list) {
572 if ((memcmp(mac_addr, &tmp->mac,
573 ETHER_ADDR_LEN) == 0) &&
574 ucast->vlan == tmp->vlan) {
575 DP_ERR(edev, "Unicast MAC is already added"
576 " with vlan = %u, vni = %u\n",
577 ucast->vlan, ucast->vni);
581 u = rte_malloc(NULL, sizeof(struct qede_ucast_entry),
582 RTE_CACHE_LINE_SIZE);
584 DP_ERR(edev, "Did not allocate memory for ucast\n");
587 ether_addr_copy(mac_addr, &u->mac);
588 u->vlan = ucast->vlan;
590 SLIST_INSERT_HEAD(&qdev->uc_list_head, u, list);
593 SLIST_FOREACH(tmp, &qdev->uc_list_head, list) {
594 if ((memcmp(mac_addr, &tmp->mac,
595 ETHER_ADDR_LEN) == 0) &&
596 ucast->vlan == tmp->vlan &&
597 ucast->vni == tmp->vni)
601 DP_INFO(edev, "Unicast MAC is not found\n");
604 SLIST_REMOVE(&qdev->uc_list_head, tmp, qede_ucast_entry, list);
612 qede_mcast_filter(struct rte_eth_dev *eth_dev, struct ecore_filter_ucast *mcast,
615 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
616 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
617 struct ether_addr *mac_addr;
618 struct qede_mcast_entry *tmp = NULL;
619 struct qede_mcast_entry *m;
621 mac_addr = (struct ether_addr *)mcast->mac;
623 SLIST_FOREACH(tmp, &qdev->mc_list_head, list) {
624 if (memcmp(mac_addr, &tmp->mac, ETHER_ADDR_LEN) == 0) {
626 "Multicast MAC is already added\n");
630 m = rte_malloc(NULL, sizeof(struct qede_mcast_entry),
631 RTE_CACHE_LINE_SIZE);
634 "Did not allocate memory for mcast\n");
637 ether_addr_copy(mac_addr, &m->mac);
638 SLIST_INSERT_HEAD(&qdev->mc_list_head, m, list);
641 SLIST_FOREACH(tmp, &qdev->mc_list_head, list) {
642 if (memcmp(mac_addr, &tmp->mac, ETHER_ADDR_LEN) == 0)
646 DP_INFO(edev, "Multicast mac is not found\n");
649 SLIST_REMOVE(&qdev->mc_list_head, tmp,
650 qede_mcast_entry, list);
657 static enum _ecore_status_t
658 qede_mac_int_ops(struct rte_eth_dev *eth_dev, struct ecore_filter_ucast *ucast,
661 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
662 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
663 enum _ecore_status_t rc;
664 struct ecore_filter_mcast mcast;
665 struct qede_mcast_entry *tmp;
669 if (is_multicast_ether_addr((struct ether_addr *)ucast->mac)) {
671 if (qdev->num_mc_addr >= ECORE_MAX_MC_ADDRS) {
673 "Mcast filter table limit exceeded, "
674 "Please enable mcast promisc mode\n");
678 rc = qede_mcast_filter(eth_dev, ucast, add);
680 DP_INFO(edev, "num_mc_addrs = %u\n", qdev->num_mc_addr);
681 memset(&mcast, 0, sizeof(mcast));
682 mcast.num_mc_addrs = qdev->num_mc_addr;
683 mcast.opcode = ECORE_FILTER_ADD;
684 SLIST_FOREACH(tmp, &qdev->mc_list_head, list) {
685 ether_addr_copy(&tmp->mac,
686 (struct ether_addr *)&mcast.mac[j]);
689 rc = ecore_filter_mcast_cmd(edev, &mcast,
690 ECORE_SPQ_MODE_CB, NULL);
692 if (rc != ECORE_SUCCESS) {
693 DP_ERR(edev, "Failed to add multicast filter"
694 " rc = %d, op = %d\n", rc, add);
696 } else { /* Unicast */
698 if (qdev->num_uc_addr >=
699 qdev->dev_info.num_mac_filters) {
701 "Ucast filter table limit exceeded,"
702 " Please enable promisc mode\n");
706 rc = qede_ucast_filter(eth_dev, ucast, add);
708 rc = ecore_filter_ucast_cmd(edev, ucast,
709 ECORE_SPQ_MODE_CB, NULL);
710 if (rc != ECORE_SUCCESS) {
711 DP_ERR(edev, "MAC filter failed, rc = %d, op = %d\n",
720 qede_mac_addr_add(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr,
721 __rte_unused uint32_t index, __rte_unused uint32_t pool)
723 struct ecore_filter_ucast ucast;
726 qede_set_ucast_cmn_params(&ucast);
727 ucast.type = ECORE_FILTER_MAC;
728 ether_addr_copy(mac_addr, (struct ether_addr *)&ucast.mac);
729 re = (int)qede_mac_int_ops(eth_dev, &ucast, 1);
734 qede_mac_addr_remove(struct rte_eth_dev *eth_dev, uint32_t index)
736 struct qede_dev *qdev = eth_dev->data->dev_private;
737 struct ecore_dev *edev = &qdev->edev;
738 struct ecore_filter_ucast ucast;
740 PMD_INIT_FUNC_TRACE(edev);
742 if (index >= qdev->dev_info.num_mac_filters) {
743 DP_ERR(edev, "Index %u is above MAC filter limit %u\n",
744 index, qdev->dev_info.num_mac_filters);
748 qede_set_ucast_cmn_params(&ucast);
749 ucast.opcode = ECORE_FILTER_REMOVE;
750 ucast.type = ECORE_FILTER_MAC;
752 /* Use the index maintained by rte */
753 ether_addr_copy(ð_dev->data->mac_addrs[index],
754 (struct ether_addr *)&ucast.mac);
756 ecore_filter_ucast_cmd(edev, &ucast, ECORE_SPQ_MODE_CB, NULL);
760 qede_mac_addr_set(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr)
762 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
763 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
765 if (IS_VF(edev) && !ecore_vf_check_mac(ECORE_LEADING_HWFN(edev),
766 mac_addr->addr_bytes)) {
767 DP_ERR(edev, "Setting MAC address is not allowed\n");
768 ether_addr_copy(&qdev->primary_mac,
769 ð_dev->data->mac_addrs[0]);
773 qede_mac_addr_add(eth_dev, mac_addr, 0, 0);
776 static void qede_config_accept_any_vlan(struct qede_dev *qdev, bool flg)
778 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
779 struct ecore_sp_vport_update_params params;
780 struct ecore_hwfn *p_hwfn;
784 memset(¶ms, 0, sizeof(struct ecore_sp_vport_update_params));
786 params.update_accept_any_vlan_flg = 1;
787 params.accept_any_vlan = flg;
788 for_each_hwfn(edev, i) {
789 p_hwfn = &edev->hwfns[i];
790 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
791 rc = ecore_sp_vport_update(p_hwfn, ¶ms,
792 ECORE_SPQ_MODE_EBLOCK, NULL);
793 if (rc != ECORE_SUCCESS) {
794 DP_ERR(edev, "Failed to configure accept-any-vlan\n");
799 DP_INFO(edev, "%s accept-any-vlan\n", flg ? "enabled" : "disabled");
802 static int qede_vlan_stripping(struct rte_eth_dev *eth_dev, bool flg)
804 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
805 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
806 struct ecore_sp_vport_update_params params;
807 struct ecore_hwfn *p_hwfn;
811 memset(¶ms, 0, sizeof(struct ecore_sp_vport_update_params));
813 params.update_inner_vlan_removal_flg = 1;
814 params.inner_vlan_removal_flg = flg;
815 for_each_hwfn(edev, i) {
816 p_hwfn = &edev->hwfns[i];
817 params.opaque_fid = p_hwfn->hw_info.opaque_fid;
818 rc = ecore_sp_vport_update(p_hwfn, ¶ms,
819 ECORE_SPQ_MODE_EBLOCK, NULL);
820 if (rc != ECORE_SUCCESS) {
821 DP_ERR(edev, "Failed to update vport\n");
826 DP_INFO(edev, "VLAN stripping %s\n", flg ? "enabled" : "disabled");
830 static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
831 uint16_t vlan_id, int on)
833 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
834 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
835 struct qed_dev_eth_info *dev_info = &qdev->dev_info;
836 struct qede_vlan_entry *tmp = NULL;
837 struct qede_vlan_entry *vlan;
838 struct ecore_filter_ucast ucast;
842 if (qdev->configured_vlans == dev_info->num_vlan_filters) {
843 DP_ERR(edev, "Reached max VLAN filter limit"
844 " enabling accept_any_vlan\n");
845 qede_config_accept_any_vlan(qdev, true);
849 SLIST_FOREACH(tmp, &qdev->vlan_list_head, list) {
850 if (tmp->vid == vlan_id) {
851 DP_ERR(edev, "VLAN %u already configured\n",
857 vlan = rte_malloc(NULL, sizeof(struct qede_vlan_entry),
858 RTE_CACHE_LINE_SIZE);
861 DP_ERR(edev, "Did not allocate memory for VLAN\n");
865 qede_set_ucast_cmn_params(&ucast);
866 ucast.opcode = ECORE_FILTER_ADD;
867 ucast.type = ECORE_FILTER_VLAN;
868 ucast.vlan = vlan_id;
869 rc = ecore_filter_ucast_cmd(edev, &ucast, ECORE_SPQ_MODE_CB,
872 DP_ERR(edev, "Failed to add VLAN %u rc %d\n", vlan_id,
877 SLIST_INSERT_HEAD(&qdev->vlan_list_head, vlan, list);
878 qdev->configured_vlans++;
879 DP_INFO(edev, "VLAN %u added, configured_vlans %u\n",
880 vlan_id, qdev->configured_vlans);
883 SLIST_FOREACH(tmp, &qdev->vlan_list_head, list) {
884 if (tmp->vid == vlan_id)
889 if (qdev->configured_vlans == 0) {
891 "No VLAN filters configured yet\n");
895 DP_ERR(edev, "VLAN %u not configured\n", vlan_id);
899 SLIST_REMOVE(&qdev->vlan_list_head, tmp, qede_vlan_entry, list);
901 qede_set_ucast_cmn_params(&ucast);
902 ucast.opcode = ECORE_FILTER_REMOVE;
903 ucast.type = ECORE_FILTER_VLAN;
904 ucast.vlan = vlan_id;
905 rc = ecore_filter_ucast_cmd(edev, &ucast, ECORE_SPQ_MODE_CB,
908 DP_ERR(edev, "Failed to delete VLAN %u rc %d\n",
911 qdev->configured_vlans--;
912 DP_INFO(edev, "VLAN %u removed configured_vlans %u\n",
913 vlan_id, qdev->configured_vlans);
920 static void qede_vlan_offload_set(struct rte_eth_dev *eth_dev, int mask)
922 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
923 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
924 struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
926 if (mask & ETH_VLAN_STRIP_MASK) {
927 if (rxmode->hw_vlan_strip)
928 (void)qede_vlan_stripping(eth_dev, 1);
930 (void)qede_vlan_stripping(eth_dev, 0);
933 if (mask & ETH_VLAN_FILTER_MASK) {
934 /* VLAN filtering kicks in when a VLAN is added */
935 if (rxmode->hw_vlan_filter) {
936 qede_vlan_filter_set(eth_dev, 0, 1);
938 if (qdev->configured_vlans > 1) { /* Excluding VLAN0 */
940 " Please remove existing VLAN filters"
941 " before disabling VLAN filtering\n");
942 /* Signal app that VLAN filtering is still
945 rxmode->hw_vlan_filter = true;
947 qede_vlan_filter_set(eth_dev, 0, 0);
952 if (mask & ETH_VLAN_EXTEND_MASK)
953 DP_INFO(edev, "No offloads are supported with VLAN Q-in-Q"
954 " and classification is based on outer tag only\n");
956 DP_INFO(edev, "vlan offload mask %d vlan-strip %d vlan-filter %d\n",
957 mask, rxmode->hw_vlan_strip, rxmode->hw_vlan_filter);
960 static void qede_prandom_bytes(uint32_t *buff)
964 srand((unsigned int)time(NULL));
965 for (i = 0; i < ECORE_RSS_KEY_SIZE; i++)
969 int qede_config_rss(struct rte_eth_dev *eth_dev)
971 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
972 #ifdef RTE_LIBRTE_QEDE_DEBUG_INFO
973 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
975 uint32_t def_rss_key[ECORE_RSS_KEY_SIZE];
976 struct rte_eth_rss_reta_entry64 reta_conf[2];
977 struct rte_eth_rss_conf rss_conf;
978 uint32_t i, id, pos, q;
980 rss_conf = eth_dev->data->dev_conf.rx_adv_conf.rss_conf;
981 if (!rss_conf.rss_key) {
982 DP_INFO(edev, "Applying driver default key\n");
983 rss_conf.rss_key_len = ECORE_RSS_KEY_SIZE * sizeof(uint32_t);
984 qede_prandom_bytes(&def_rss_key[0]);
985 rss_conf.rss_key = (uint8_t *)&def_rss_key[0];
988 /* Configure RSS hash */
989 if (qede_rss_hash_update(eth_dev, &rss_conf))
992 /* Configure default RETA */
993 memset(reta_conf, 0, sizeof(reta_conf));
994 for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++)
995 reta_conf[i / RTE_RETA_GROUP_SIZE].mask = UINT64_MAX;
997 for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++) {
998 id = i / RTE_RETA_GROUP_SIZE;
999 pos = i % RTE_RETA_GROUP_SIZE;
1000 q = i % QEDE_RSS_COUNT(qdev);
1001 reta_conf[id].reta[pos] = q;
1003 if (qede_rss_reta_update(eth_dev, &reta_conf[0],
1004 ECORE_RSS_IND_TABLE_SIZE))
1010 static void qede_fastpath_start(struct ecore_dev *edev)
1012 struct ecore_hwfn *p_hwfn;
1015 for_each_hwfn(edev, i) {
1016 p_hwfn = &edev->hwfns[i];
1017 ecore_hw_start_fastpath(p_hwfn);
1021 static int qede_dev_start(struct rte_eth_dev *eth_dev)
1023 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1024 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1026 PMD_INIT_FUNC_TRACE(edev);
1028 /* Update MTU only if it has changed */
1029 if (qdev->mtu != qdev->new_mtu) {
1030 if (qede_update_mtu(eth_dev, qdev->new_mtu))
1032 qdev->mtu = qdev->new_mtu;
1033 /* If MTU has changed then update TPA too */
1034 if (qdev->enable_lro)
1035 if (qede_enable_tpa(eth_dev, true))
1040 if (qede_start_queues(eth_dev))
1043 /* Newer SR-IOV PF driver expects RX/TX queues to be started before
1044 * enabling RSS. Hence RSS configuration is deferred upto this point.
1045 * Also, we would like to retain similar behavior in PF case, so we
1046 * don't do PF/VF specific check here.
1048 if (eth_dev->data->dev_conf.rxmode.mq_mode == ETH_MQ_RX_RSS)
1049 if (qede_config_rss(eth_dev))
1053 if (qede_activate_vport(eth_dev, true))
1056 /* Bring-up the link */
1057 qede_dev_set_link_state(eth_dev, true);
1059 /* Start/resume traffic */
1060 qede_fastpath_start(edev);
1062 DP_INFO(edev, "Device started\n");
1066 DP_ERR(edev, "Device start fails\n");
1067 return -1; /* common error code is < 0 */
1070 static void qede_dev_stop(struct rte_eth_dev *eth_dev)
1072 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1073 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1075 PMD_INIT_FUNC_TRACE(edev);
1078 if (qede_activate_vport(eth_dev, false))
1081 if (qdev->enable_lro)
1082 qede_enable_tpa(eth_dev, false);
1084 /* TODO: Do we need disable LRO or RSS */
1086 qede_stop_queues(eth_dev);
1088 /* Disable traffic */
1089 ecore_hw_stop_fastpath(edev); /* TBD - loop */
1091 /* Bring the link down */
1092 qede_dev_set_link_state(eth_dev, false);
1094 DP_INFO(edev, "Device is stopped\n");
1097 static int qede_dev_configure(struct rte_eth_dev *eth_dev)
1099 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1100 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1101 struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
1103 PMD_INIT_FUNC_TRACE(edev);
1105 /* Check requirements for 100G mode */
1106 if (edev->num_hwfns > 1) {
1107 if (eth_dev->data->nb_rx_queues < 2 ||
1108 eth_dev->data->nb_tx_queues < 2) {
1109 DP_ERR(edev, "100G mode needs min. 2 RX/TX queues\n");
1113 if ((eth_dev->data->nb_rx_queues % 2 != 0) ||
1114 (eth_dev->data->nb_tx_queues % 2 != 0)) {
1116 "100G mode needs even no. of RX/TX queues\n");
1121 /* Sanity checks and throw warnings */
1122 if (rxmode->enable_scatter)
1123 eth_dev->data->scattered_rx = 1;
1124 if (!rxmode->hw_strip_crc)
1125 DP_INFO(edev, "L2 CRC stripping is always enabled in hw\n");
1126 if (!rxmode->hw_ip_checksum)
1127 DP_INFO(edev, "IP/UDP/TCP checksum offload is always enabled "
1129 if (rxmode->header_split)
1130 DP_INFO(edev, "Header split enable is not supported\n");
1131 if (!(rxmode->mq_mode == ETH_MQ_RX_NONE || rxmode->mq_mode ==
1133 DP_ERR(edev, "Unsupported multi-queue mode\n");
1136 /* Flow director mode check */
1137 if (qede_check_fdir_support(eth_dev))
1140 /* Deallocate resources if held previously. It is needed only if the
1141 * queue count has been changed from previous configuration. If its
1142 * going to change then it means RX/TX queue setup will be called
1143 * again and the fastpath pointers will be reinitialized there.
1145 if (qdev->num_tx_queues != eth_dev->data->nb_tx_queues ||
1146 qdev->num_rx_queues != eth_dev->data->nb_rx_queues) {
1147 qede_dealloc_fp_resc(eth_dev);
1148 /* Proceed with updated queue count */
1149 qdev->num_tx_queues = eth_dev->data->nb_tx_queues;
1150 qdev->num_rx_queues = eth_dev->data->nb_rx_queues;
1151 if (qede_alloc_fp_resc(qdev))
1155 /* VF's MTU has to be set using vport-start where as
1156 * PF's MTU can be updated via vport-update.
1159 if (qede_start_vport(qdev, rxmode->max_rx_pkt_len))
1162 if (qede_update_mtu(eth_dev, rxmode->max_rx_pkt_len))
1166 qdev->mtu = rxmode->max_rx_pkt_len;
1167 qdev->new_mtu = qdev->mtu;
1169 /* Configure TPA parameters */
1170 if (rxmode->enable_lro) {
1171 if (qede_enable_tpa(eth_dev, true))
1173 /* Enable scatter mode for LRO */
1174 if (!rxmode->enable_scatter)
1175 eth_dev->data->scattered_rx = 1;
1177 qdev->enable_lro = rxmode->enable_lro;
1179 /* Enable VLAN offloads by default */
1180 qede_vlan_offload_set(eth_dev, ETH_VLAN_STRIP_MASK |
1181 ETH_VLAN_FILTER_MASK |
1182 ETH_VLAN_EXTEND_MASK);
1184 DP_INFO(edev, "Device configured with RSS=%d TSS=%d\n",
1185 QEDE_RSS_COUNT(qdev), QEDE_TSS_COUNT(qdev));
1190 /* Info about HW descriptor ring limitations */
1191 static const struct rte_eth_desc_lim qede_rx_desc_lim = {
1192 .nb_max = NUM_RX_BDS_MAX,
1194 .nb_align = 128 /* lowest common multiple */
1197 static const struct rte_eth_desc_lim qede_tx_desc_lim = {
1198 .nb_max = NUM_TX_BDS_MAX,
1201 .nb_seg_max = ETH_TX_MAX_BDS_PER_LSO_PACKET,
1202 .nb_mtu_seg_max = ETH_TX_MAX_BDS_PER_NON_LSO_PACKET
1206 qede_dev_info_get(struct rte_eth_dev *eth_dev,
1207 struct rte_eth_dev_info *dev_info)
1209 struct qede_dev *qdev = eth_dev->data->dev_private;
1210 struct ecore_dev *edev = &qdev->edev;
1211 struct qed_link_output link;
1212 uint32_t speed_cap = 0;
1214 PMD_INIT_FUNC_TRACE(edev);
1216 dev_info->pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1217 dev_info->min_rx_bufsize = (uint32_t)QEDE_MIN_RX_BUFF_SIZE;
1218 dev_info->max_rx_pktlen = (uint32_t)ETH_TX_MAX_NON_LSO_PKT_LEN;
1219 dev_info->rx_desc_lim = qede_rx_desc_lim;
1220 dev_info->tx_desc_lim = qede_tx_desc_lim;
1223 dev_info->max_rx_queues = (uint16_t)RTE_MIN(
1224 QEDE_MAX_RSS_CNT(qdev), QEDE_PF_NUM_CONNS / 2);
1226 dev_info->max_rx_queues = (uint16_t)RTE_MIN(
1227 QEDE_MAX_RSS_CNT(qdev), ECORE_MAX_VF_CHAINS_PER_PF);
1228 dev_info->max_tx_queues = dev_info->max_rx_queues;
1230 dev_info->max_mac_addrs = qdev->dev_info.num_mac_filters;
1231 dev_info->max_vfs = 0;
1232 dev_info->reta_size = ECORE_RSS_IND_TABLE_SIZE;
1233 dev_info->hash_key_size = ECORE_RSS_KEY_SIZE * sizeof(uint32_t);
1234 dev_info->flow_type_rss_offloads = (uint64_t)QEDE_RSS_OFFLOAD_ALL;
1236 dev_info->default_txconf = (struct rte_eth_txconf) {
1237 .txq_flags = QEDE_TXQ_FLAGS,
1240 dev_info->rx_offload_capa = (DEV_RX_OFFLOAD_VLAN_STRIP |
1241 DEV_RX_OFFLOAD_IPV4_CKSUM |
1242 DEV_RX_OFFLOAD_UDP_CKSUM |
1243 DEV_RX_OFFLOAD_TCP_CKSUM |
1244 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
1245 DEV_RX_OFFLOAD_TCP_LRO);
1247 dev_info->tx_offload_capa = (DEV_TX_OFFLOAD_VLAN_INSERT |
1248 DEV_TX_OFFLOAD_IPV4_CKSUM |
1249 DEV_TX_OFFLOAD_UDP_CKSUM |
1250 DEV_TX_OFFLOAD_TCP_CKSUM |
1251 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
1252 DEV_TX_OFFLOAD_TCP_TSO |
1253 DEV_TX_OFFLOAD_VXLAN_TNL_TSO);
1255 memset(&link, 0, sizeof(struct qed_link_output));
1256 qdev->ops->common->get_link(edev, &link);
1257 if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_1G)
1258 speed_cap |= ETH_LINK_SPEED_1G;
1259 if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_10G)
1260 speed_cap |= ETH_LINK_SPEED_10G;
1261 if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_25G)
1262 speed_cap |= ETH_LINK_SPEED_25G;
1263 if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_40G)
1264 speed_cap |= ETH_LINK_SPEED_40G;
1265 if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_50G)
1266 speed_cap |= ETH_LINK_SPEED_50G;
1267 if (link.adv_speed & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_BB_100G)
1268 speed_cap |= ETH_LINK_SPEED_100G;
1269 dev_info->speed_capa = speed_cap;
1272 /* return 0 means link status changed, -1 means not changed */
1274 qede_link_update(struct rte_eth_dev *eth_dev, __rte_unused int wait_to_complete)
1276 struct qede_dev *qdev = eth_dev->data->dev_private;
1277 struct ecore_dev *edev = &qdev->edev;
1278 uint16_t link_duplex;
1279 struct qed_link_output link;
1280 struct rte_eth_link *curr = ð_dev->data->dev_link;
1282 memset(&link, 0, sizeof(struct qed_link_output));
1283 qdev->ops->common->get_link(edev, &link);
1286 curr->link_speed = link.speed;
1289 switch (link.duplex) {
1290 case QEDE_DUPLEX_HALF:
1291 link_duplex = ETH_LINK_HALF_DUPLEX;
1293 case QEDE_DUPLEX_FULL:
1294 link_duplex = ETH_LINK_FULL_DUPLEX;
1296 case QEDE_DUPLEX_UNKNOWN:
1300 curr->link_duplex = link_duplex;
1303 curr->link_status = (link.link_up) ? ETH_LINK_UP : ETH_LINK_DOWN;
1306 curr->link_autoneg = (link.supported_caps & QEDE_SUPPORTED_AUTONEG) ?
1307 ETH_LINK_AUTONEG : ETH_LINK_FIXED;
1309 DP_INFO(edev, "Link - Speed %u Mode %u AN %u Status %u\n",
1310 curr->link_speed, curr->link_duplex,
1311 curr->link_autoneg, curr->link_status);
1313 /* return 0 means link status changed, -1 means not changed */
1314 return ((curr->link_status == link.link_up) ? -1 : 0);
1317 static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
1319 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
1320 struct qede_dev *qdev = eth_dev->data->dev_private;
1321 struct ecore_dev *edev = &qdev->edev;
1323 PMD_INIT_FUNC_TRACE(edev);
1326 enum qed_filter_rx_mode_type type = QED_FILTER_RX_MODE_TYPE_PROMISC;
1328 if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
1329 type |= QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
1331 qed_configure_filter_rx_mode(eth_dev, type);
1334 static void qede_promiscuous_disable(struct rte_eth_dev *eth_dev)
1336 #ifdef RTE_LIBRTE_QEDE_DEBUG_INIT
1337 struct qede_dev *qdev = eth_dev->data->dev_private;
1338 struct ecore_dev *edev = &qdev->edev;
1340 PMD_INIT_FUNC_TRACE(edev);
1343 if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
1344 qed_configure_filter_rx_mode(eth_dev,
1345 QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC);
1347 qed_configure_filter_rx_mode(eth_dev,
1348 QED_FILTER_RX_MODE_TYPE_REGULAR);
1351 static void qede_poll_sp_sb_cb(void *param)
1353 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
1354 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1355 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1358 qede_interrupt_action(ECORE_LEADING_HWFN(edev));
1359 qede_interrupt_action(&edev->hwfns[1]);
1361 rc = rte_eal_alarm_set(timer_period * US_PER_S,
1365 DP_ERR(edev, "Unable to start periodic"
1366 " timer rc %d\n", rc);
1367 assert(false && "Unable to start periodic timer");
1371 static void qede_dev_close(struct rte_eth_dev *eth_dev)
1373 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1374 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1375 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1378 PMD_INIT_FUNC_TRACE(edev);
1380 /* dev_stop() shall cleanup fp resources in hw but without releasing
1381 * dma memories and sw structures so that dev_start() can be called
1382 * by the app without reconfiguration. However, in dev_close() we
1383 * can release all the resources and device can be brought up newly
1385 if (eth_dev->data->dev_started)
1386 qede_dev_stop(eth_dev);
1388 qede_stop_vport(edev);
1389 qede_fdir_dealloc_resc(eth_dev);
1390 qede_dealloc_fp_resc(eth_dev);
1392 for (i = 0; i < eth_dev->data->nb_rx_queues; i++)
1393 if (eth_dev->data->rx_queues[i])
1394 eth_dev->data->rx_queues[i] = NULL;
1395 for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
1396 if (eth_dev->data->tx_queues[i])
1397 eth_dev->data->tx_queues[i] = NULL;
1398 eth_dev->data->nb_rx_queues = 0;
1399 eth_dev->data->nb_tx_queues = 0;
1401 qdev->ops->common->slowpath_stop(edev);
1402 qdev->ops->common->remove(edev);
1403 rte_intr_disable(&pci_dev->intr_handle);
1404 rte_intr_callback_unregister(&pci_dev->intr_handle,
1405 qede_interrupt_handler, (void *)eth_dev);
1406 if (edev->num_hwfns > 1)
1407 rte_eal_alarm_cancel(qede_poll_sp_sb_cb, (void *)eth_dev);
1411 qede_get_stats(struct rte_eth_dev *eth_dev, struct rte_eth_stats *eth_stats)
1413 struct qede_dev *qdev = eth_dev->data->dev_private;
1414 struct ecore_dev *edev = &qdev->edev;
1415 struct ecore_eth_stats stats;
1416 unsigned int i = 0, j = 0, qid;
1417 unsigned int rxq_stat_cntrs, txq_stat_cntrs;
1418 struct qede_tx_queue *txq;
1420 ecore_get_vport_stats(edev, &stats);
1423 eth_stats->ipackets = stats.rx_ucast_pkts +
1424 stats.rx_mcast_pkts + stats.rx_bcast_pkts;
1426 eth_stats->ibytes = stats.rx_ucast_bytes +
1427 stats.rx_mcast_bytes + stats.rx_bcast_bytes;
1429 eth_stats->ierrors = stats.rx_crc_errors +
1430 stats.rx_align_errors +
1431 stats.rx_carrier_errors +
1432 stats.rx_oversize_packets +
1433 stats.rx_jabbers + stats.rx_undersize_packets;
1435 eth_stats->rx_nombuf = stats.no_buff_discards;
1437 eth_stats->imissed = stats.mftag_filter_discards +
1438 stats.mac_filter_discards +
1439 stats.no_buff_discards + stats.brb_truncates + stats.brb_discards;
1442 eth_stats->opackets = stats.tx_ucast_pkts +
1443 stats.tx_mcast_pkts + stats.tx_bcast_pkts;
1445 eth_stats->obytes = stats.tx_ucast_bytes +
1446 stats.tx_mcast_bytes + stats.tx_bcast_bytes;
1448 eth_stats->oerrors = stats.tx_err_drop_pkts;
1451 rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1452 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1453 txq_stat_cntrs = RTE_MIN(QEDE_TSS_COUNT(qdev),
1454 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1455 if ((rxq_stat_cntrs != (unsigned int)QEDE_RSS_COUNT(qdev)) ||
1456 (txq_stat_cntrs != (unsigned int)QEDE_TSS_COUNT(qdev)))
1457 DP_VERBOSE(edev, ECORE_MSG_DEBUG,
1458 "Not all the queue stats will be displayed. Set"
1459 " RTE_ETHDEV_QUEUE_STAT_CNTRS config param"
1460 " appropriately and retry.\n");
1463 eth_stats->q_ipackets[i] =
1465 ((char *)(qdev->fp_array[qid].rxq)) +
1466 offsetof(struct qede_rx_queue,
1468 eth_stats->q_errors[i] =
1470 ((char *)(qdev->fp_array[qid].rxq)) +
1471 offsetof(struct qede_rx_queue,
1474 ((char *)(qdev->fp_array[qid].rxq)) +
1475 offsetof(struct qede_rx_queue,
1478 if (i == rxq_stat_cntrs)
1483 txq = qdev->fp_array[qid].txq;
1484 eth_stats->q_opackets[j] =
1485 *((uint64_t *)(uintptr_t)
1486 (((uint64_t)(uintptr_t)(txq)) +
1487 offsetof(struct qede_tx_queue,
1490 if (j == txq_stat_cntrs)
1496 qede_get_xstats_count(struct qede_dev *qdev) {
1497 return RTE_DIM(qede_xstats_strings) +
1498 (RTE_DIM(qede_rxq_xstats_strings) *
1499 RTE_MIN(QEDE_RSS_COUNT(qdev),
1500 RTE_ETHDEV_QUEUE_STAT_CNTRS));
1504 qede_get_xstats_names(struct rte_eth_dev *dev,
1505 struct rte_eth_xstat_name *xstats_names,
1506 __rte_unused unsigned int limit)
1508 struct qede_dev *qdev = dev->data->dev_private;
1509 const unsigned int stat_cnt = qede_get_xstats_count(qdev);
1510 unsigned int i, qid, stat_idx = 0;
1511 unsigned int rxq_stat_cntrs;
1513 if (xstats_names != NULL) {
1514 for (i = 0; i < RTE_DIM(qede_xstats_strings); i++) {
1515 snprintf(xstats_names[stat_idx].name,
1516 sizeof(xstats_names[stat_idx].name),
1518 qede_xstats_strings[i].name);
1522 rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1523 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1524 for (qid = 0; qid < rxq_stat_cntrs; qid++) {
1525 for (i = 0; i < RTE_DIM(qede_rxq_xstats_strings); i++) {
1526 snprintf(xstats_names[stat_idx].name,
1527 sizeof(xstats_names[stat_idx].name),
1529 qede_rxq_xstats_strings[i].name, qid,
1530 qede_rxq_xstats_strings[i].name + 4);
1540 qede_get_xstats(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
1543 struct qede_dev *qdev = dev->data->dev_private;
1544 struct ecore_dev *edev = &qdev->edev;
1545 struct ecore_eth_stats stats;
1546 const unsigned int num = qede_get_xstats_count(qdev);
1547 unsigned int i, qid, stat_idx = 0;
1548 unsigned int rxq_stat_cntrs;
1553 ecore_get_vport_stats(edev, &stats);
1555 for (i = 0; i < RTE_DIM(qede_xstats_strings); i++) {
1556 xstats[stat_idx].value = *(uint64_t *)(((char *)&stats) +
1557 qede_xstats_strings[i].offset);
1558 xstats[stat_idx].id = stat_idx;
1562 rxq_stat_cntrs = RTE_MIN(QEDE_RSS_COUNT(qdev),
1563 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1564 for (qid = 0; qid < rxq_stat_cntrs; qid++) {
1566 for (i = 0; i < RTE_DIM(qede_rxq_xstats_strings); i++) {
1567 xstats[stat_idx].value = *(uint64_t *)(
1568 ((char *)(qdev->fp_array[qid].rxq)) +
1569 qede_rxq_xstats_strings[i].offset);
1570 xstats[stat_idx].id = stat_idx;
1580 qede_reset_xstats(struct rte_eth_dev *dev)
1582 struct qede_dev *qdev = dev->data->dev_private;
1583 struct ecore_dev *edev = &qdev->edev;
1585 ecore_reset_vport_stats(edev);
1588 int qede_dev_set_link_state(struct rte_eth_dev *eth_dev, bool link_up)
1590 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1591 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1592 struct qed_link_params link_params;
1595 DP_INFO(edev, "setting link state %d\n", link_up);
1596 memset(&link_params, 0, sizeof(link_params));
1597 link_params.link_up = link_up;
1598 rc = qdev->ops->common->set_link(edev, &link_params);
1599 if (rc != ECORE_SUCCESS)
1600 DP_ERR(edev, "Unable to set link state %d\n", link_up);
1605 static int qede_dev_set_link_up(struct rte_eth_dev *eth_dev)
1607 return qede_dev_set_link_state(eth_dev, true);
1610 static int qede_dev_set_link_down(struct rte_eth_dev *eth_dev)
1612 return qede_dev_set_link_state(eth_dev, false);
1615 static void qede_reset_stats(struct rte_eth_dev *eth_dev)
1617 struct qede_dev *qdev = eth_dev->data->dev_private;
1618 struct ecore_dev *edev = &qdev->edev;
1620 ecore_reset_vport_stats(edev);
1623 static void qede_allmulticast_enable(struct rte_eth_dev *eth_dev)
1625 enum qed_filter_rx_mode_type type =
1626 QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
1628 if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
1629 type |= QED_FILTER_RX_MODE_TYPE_PROMISC;
1631 qed_configure_filter_rx_mode(eth_dev, type);
1634 static void qede_allmulticast_disable(struct rte_eth_dev *eth_dev)
1636 if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
1637 qed_configure_filter_rx_mode(eth_dev,
1638 QED_FILTER_RX_MODE_TYPE_PROMISC);
1640 qed_configure_filter_rx_mode(eth_dev,
1641 QED_FILTER_RX_MODE_TYPE_REGULAR);
1644 static int qede_flow_ctrl_set(struct rte_eth_dev *eth_dev,
1645 struct rte_eth_fc_conf *fc_conf)
1647 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1648 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1649 struct qed_link_output current_link;
1650 struct qed_link_params params;
1652 memset(¤t_link, 0, sizeof(current_link));
1653 qdev->ops->common->get_link(edev, ¤t_link);
1655 memset(¶ms, 0, sizeof(params));
1656 params.override_flags |= QED_LINK_OVERRIDE_PAUSE_CONFIG;
1657 if (fc_conf->autoneg) {
1658 if (!(current_link.supported_caps & QEDE_SUPPORTED_AUTONEG)) {
1659 DP_ERR(edev, "Autoneg not supported\n");
1662 params.pause_config |= QED_LINK_PAUSE_AUTONEG_ENABLE;
1665 /* Pause is assumed to be supported (SUPPORTED_Pause) */
1666 if (fc_conf->mode == RTE_FC_FULL)
1667 params.pause_config |= (QED_LINK_PAUSE_TX_ENABLE |
1668 QED_LINK_PAUSE_RX_ENABLE);
1669 if (fc_conf->mode == RTE_FC_TX_PAUSE)
1670 params.pause_config |= QED_LINK_PAUSE_TX_ENABLE;
1671 if (fc_conf->mode == RTE_FC_RX_PAUSE)
1672 params.pause_config |= QED_LINK_PAUSE_RX_ENABLE;
1674 params.link_up = true;
1675 (void)qdev->ops->common->set_link(edev, ¶ms);
1680 static int qede_flow_ctrl_get(struct rte_eth_dev *eth_dev,
1681 struct rte_eth_fc_conf *fc_conf)
1683 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1684 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1685 struct qed_link_output current_link;
1687 memset(¤t_link, 0, sizeof(current_link));
1688 qdev->ops->common->get_link(edev, ¤t_link);
1690 if (current_link.pause_config & QED_LINK_PAUSE_AUTONEG_ENABLE)
1691 fc_conf->autoneg = true;
1693 if (current_link.pause_config & (QED_LINK_PAUSE_RX_ENABLE |
1694 QED_LINK_PAUSE_TX_ENABLE))
1695 fc_conf->mode = RTE_FC_FULL;
1696 else if (current_link.pause_config & QED_LINK_PAUSE_RX_ENABLE)
1697 fc_conf->mode = RTE_FC_RX_PAUSE;
1698 else if (current_link.pause_config & QED_LINK_PAUSE_TX_ENABLE)
1699 fc_conf->mode = RTE_FC_TX_PAUSE;
1701 fc_conf->mode = RTE_FC_NONE;
1706 static const uint32_t *
1707 qede_dev_supported_ptypes_get(struct rte_eth_dev *eth_dev)
1709 static const uint32_t ptypes[] = {
1715 if (eth_dev->rx_pkt_burst == qede_recv_pkts)
1721 static void qede_init_rss_caps(uint8_t *rss_caps, uint64_t hf)
1724 *rss_caps |= (hf & ETH_RSS_IPV4) ? ECORE_RSS_IPV4 : 0;
1725 *rss_caps |= (hf & ETH_RSS_IPV6) ? ECORE_RSS_IPV6 : 0;
1726 *rss_caps |= (hf & ETH_RSS_IPV6_EX) ? ECORE_RSS_IPV6 : 0;
1727 *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_TCP) ? ECORE_RSS_IPV4_TCP : 0;
1728 *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_TCP) ? ECORE_RSS_IPV6_TCP : 0;
1729 *rss_caps |= (hf & ETH_RSS_IPV6_TCP_EX) ? ECORE_RSS_IPV6_TCP : 0;
1730 *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_UDP) ? ECORE_RSS_IPV4_UDP : 0;
1731 *rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_UDP) ? ECORE_RSS_IPV6_UDP : 0;
1734 int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
1735 struct rte_eth_rss_conf *rss_conf)
1737 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1738 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1739 struct ecore_sp_vport_update_params vport_update_params;
1740 struct ecore_rss_params rss_params;
1741 struct ecore_hwfn *p_hwfn;
1742 uint32_t *key = (uint32_t *)rss_conf->rss_key;
1743 uint64_t hf = rss_conf->rss_hf;
1744 uint8_t len = rss_conf->rss_key_len;
1749 memset(&vport_update_params, 0, sizeof(vport_update_params));
1750 memset(&rss_params, 0, sizeof(rss_params));
1752 DP_INFO(edev, "RSS hf = 0x%lx len = %u key = %p\n",
1753 (unsigned long)hf, len, key);
1757 DP_INFO(edev, "Enabling rss\n");
1760 qede_init_rss_caps(&rss_params.rss_caps, hf);
1761 rss_params.update_rss_capabilities = 1;
1765 if (len > (ECORE_RSS_KEY_SIZE * sizeof(uint32_t))) {
1766 DP_ERR(edev, "RSS key length exceeds limit\n");
1769 DP_INFO(edev, "Applying user supplied hash key\n");
1770 rss_params.update_rss_key = 1;
1771 memcpy(&rss_params.rss_key, key, len);
1773 rss_params.rss_enable = 1;
1776 rss_params.update_rss_config = 1;
1777 /* tbl_size has to be set with capabilities */
1778 rss_params.rss_table_size_log = 7;
1779 vport_update_params.vport_id = 0;
1780 /* pass the L2 handles instead of qids */
1781 for (i = 0 ; i < ECORE_RSS_IND_TABLE_SIZE ; i++) {
1782 idx = qdev->rss_ind_table[i];
1783 rss_params.rss_ind_table[i] = qdev->fp_array[idx].rxq->handle;
1785 vport_update_params.rss_params = &rss_params;
1787 for_each_hwfn(edev, i) {
1788 p_hwfn = &edev->hwfns[i];
1789 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
1790 rc = ecore_sp_vport_update(p_hwfn, &vport_update_params,
1791 ECORE_SPQ_MODE_EBLOCK, NULL);
1793 DP_ERR(edev, "vport-update for RSS failed\n");
1797 qdev->rss_enable = rss_params.rss_enable;
1799 /* Update local structure for hash query */
1800 qdev->rss_conf.rss_hf = hf;
1801 qdev->rss_conf.rss_key_len = len;
1802 if (qdev->rss_enable) {
1803 if (qdev->rss_conf.rss_key == NULL) {
1804 qdev->rss_conf.rss_key = (uint8_t *)malloc(len);
1805 if (qdev->rss_conf.rss_key == NULL) {
1806 DP_ERR(edev, "No memory to store RSS key\n");
1811 DP_INFO(edev, "Storing RSS key\n");
1812 memcpy(qdev->rss_conf.rss_key, key, len);
1814 } else if (!qdev->rss_enable && len == 0) {
1815 if (qdev->rss_conf.rss_key) {
1816 free(qdev->rss_conf.rss_key);
1817 qdev->rss_conf.rss_key = NULL;
1818 DP_INFO(edev, "Free RSS key\n");
1825 static int qede_rss_hash_conf_get(struct rte_eth_dev *eth_dev,
1826 struct rte_eth_rss_conf *rss_conf)
1828 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1830 rss_conf->rss_hf = qdev->rss_conf.rss_hf;
1831 rss_conf->rss_key_len = qdev->rss_conf.rss_key_len;
1833 if (rss_conf->rss_key && qdev->rss_conf.rss_key)
1834 memcpy(rss_conf->rss_key, qdev->rss_conf.rss_key,
1835 rss_conf->rss_key_len);
1839 static bool qede_update_rss_parm_cmt(struct ecore_dev *edev,
1840 struct ecore_rss_params *rss)
1843 bool rss_mode = 1; /* enable */
1844 struct ecore_queue_cid *cid;
1845 struct ecore_rss_params *t_rss;
1847 /* In regular scenario, we'd simply need to take input handlers.
1848 * But in CMT, we'd have to split the handlers according to the
1849 * engine they were configured on. We'd then have to understand
1850 * whether RSS is really required, since 2-queues on CMT doesn't
1854 /* CMT should be round-robin */
1855 for (i = 0; i < ECORE_RSS_IND_TABLE_SIZE; i++) {
1856 cid = rss->rss_ind_table[i];
1858 if (cid->p_owner == ECORE_LEADING_HWFN(edev))
1863 t_rss->rss_ind_table[i / edev->num_hwfns] = cid;
1867 t_rss->update_rss_ind_table = 1;
1868 t_rss->rss_table_size_log = 7;
1869 t_rss->update_rss_config = 1;
1871 /* Make sure RSS is actually required */
1872 for_each_hwfn(edev, fn) {
1873 for (i = 1; i < ECORE_RSS_IND_TABLE_SIZE / edev->num_hwfns;
1875 if (rss[fn].rss_ind_table[i] !=
1876 rss[fn].rss_ind_table[0])
1880 if (i == ECORE_RSS_IND_TABLE_SIZE / edev->num_hwfns) {
1882 "CMT - 1 queue per-hwfn; Disabling RSS\n");
1889 t_rss->rss_enable = rss_mode;
1894 int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
1895 struct rte_eth_rss_reta_entry64 *reta_conf,
1898 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
1899 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1900 struct ecore_sp_vport_update_params vport_update_params;
1901 struct ecore_rss_params *params;
1902 struct ecore_hwfn *p_hwfn;
1903 uint16_t i, idx, shift;
1907 if (reta_size > ETH_RSS_RETA_SIZE_128) {
1908 DP_ERR(edev, "reta_size %d is not supported by hardware\n",
1913 memset(&vport_update_params, 0, sizeof(vport_update_params));
1914 params = rte_zmalloc("qede_rss", sizeof(*params) * edev->num_hwfns,
1915 RTE_CACHE_LINE_SIZE);
1917 for (i = 0; i < reta_size; i++) {
1918 idx = i / RTE_RETA_GROUP_SIZE;
1919 shift = i % RTE_RETA_GROUP_SIZE;
1920 if (reta_conf[idx].mask & (1ULL << shift)) {
1921 entry = reta_conf[idx].reta[shift];
1922 /* Pass rxq handles to ecore */
1923 params->rss_ind_table[i] =
1924 qdev->fp_array[entry].rxq->handle;
1925 /* Update the local copy for RETA query command */
1926 qdev->rss_ind_table[i] = entry;
1930 params->update_rss_ind_table = 1;
1931 params->rss_table_size_log = 7;
1932 params->update_rss_config = 1;
1934 /* Fix up RETA for CMT mode device */
1935 if (edev->num_hwfns > 1)
1936 qdev->rss_enable = qede_update_rss_parm_cmt(edev,
1938 vport_update_params.vport_id = 0;
1939 /* Use the current value of rss_enable */
1940 params->rss_enable = qdev->rss_enable;
1941 vport_update_params.rss_params = params;
1943 for_each_hwfn(edev, i) {
1944 p_hwfn = &edev->hwfns[i];
1945 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
1946 rc = ecore_sp_vport_update(p_hwfn, &vport_update_params,
1947 ECORE_SPQ_MODE_EBLOCK, NULL);
1949 DP_ERR(edev, "vport-update for RSS failed\n");
1959 static int qede_rss_reta_query(struct rte_eth_dev *eth_dev,
1960 struct rte_eth_rss_reta_entry64 *reta_conf,
1963 struct qede_dev *qdev = eth_dev->data->dev_private;
1964 struct ecore_dev *edev = &qdev->edev;
1965 uint16_t i, idx, shift;
1968 if (reta_size > ETH_RSS_RETA_SIZE_128) {
1969 DP_ERR(edev, "reta_size %d is not supported\n",
1974 for (i = 0; i < reta_size; i++) {
1975 idx = i / RTE_RETA_GROUP_SIZE;
1976 shift = i % RTE_RETA_GROUP_SIZE;
1977 if (reta_conf[idx].mask & (1ULL << shift)) {
1978 entry = qdev->rss_ind_table[i];
1979 reta_conf[idx].reta[shift] = entry;
1988 static int qede_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
1990 struct qede_dev *qdev = QEDE_INIT_QDEV(dev);
1991 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
1992 struct rte_eth_dev_info dev_info = {0};
1993 struct qede_fastpath *fp;
1994 uint32_t frame_size;
1995 uint16_t rx_buf_size;
1999 PMD_INIT_FUNC_TRACE(edev);
2000 qede_dev_info_get(dev, &dev_info);
2001 frame_size = mtu + QEDE_ETH_OVERHEAD;
2002 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen)) {
2003 DP_ERR(edev, "MTU %u out of range\n", mtu);
2006 if (!dev->data->scattered_rx &&
2007 frame_size > dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM) {
2008 DP_INFO(edev, "MTU greater than minimum RX buffer size of %u\n",
2009 dev->data->min_rx_buf_size);
2012 /* Temporarily replace I/O functions with dummy ones. It cannot
2013 * be set to NULL because rte_eth_rx_burst() doesn't check for NULL.
2015 dev->rx_pkt_burst = qede_rxtx_pkts_dummy;
2016 dev->tx_pkt_burst = qede_rxtx_pkts_dummy;
2020 /* Fix up RX buf size for all queues of the port */
2022 fp = &qdev->fp_array[i];
2023 bufsz = (uint16_t)rte_pktmbuf_data_room_size(
2024 fp->rxq->mb_pool) - RTE_PKTMBUF_HEADROOM;
2025 if (dev->data->scattered_rx)
2026 rx_buf_size = bufsz + QEDE_ETH_OVERHEAD;
2028 rx_buf_size = mtu + QEDE_ETH_OVERHEAD;
2029 rx_buf_size = QEDE_CEIL_TO_CACHE_LINE_SIZE(rx_buf_size);
2030 fp->rxq->rx_buf_size = rx_buf_size;
2031 DP_INFO(edev, "buf_size adjusted to %u\n", rx_buf_size);
2033 qede_dev_start(dev);
2034 if (frame_size > ETHER_MAX_LEN)
2035 dev->data->dev_conf.rxmode.jumbo_frame = 1;
2037 dev->data->dev_conf.rxmode.jumbo_frame = 0;
2038 /* update max frame size */
2039 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
2041 dev->rx_pkt_burst = qede_recv_pkts;
2042 dev->tx_pkt_burst = qede_xmit_pkts;
2048 qede_conf_udp_dst_port(struct rte_eth_dev *eth_dev,
2049 struct rte_eth_udp_tunnel *tunnel_udp,
2052 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2053 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2054 struct ecore_tunnel_info tunn; /* @DPDK */
2055 struct ecore_hwfn *p_hwfn;
2058 PMD_INIT_FUNC_TRACE(edev);
2060 memset(&tunn, 0, sizeof(tunn));
2061 if (tunnel_udp->prot_type == RTE_TUNNEL_TYPE_VXLAN) {
2062 tunn.vxlan_port.b_update_port = true;
2063 tunn.vxlan_port.port = (add) ? tunnel_udp->udp_port :
2064 QEDE_VXLAN_DEF_PORT;
2065 for_each_hwfn(edev, i) {
2066 p_hwfn = &edev->hwfns[i];
2067 rc = ecore_sp_pf_update_tunn_cfg(p_hwfn, &tunn,
2068 ECORE_SPQ_MODE_CB, NULL);
2069 if (rc != ECORE_SUCCESS) {
2070 DP_ERR(edev, "Unable to config UDP port %u\n",
2071 tunn.vxlan_port.port);
2081 qede_udp_dst_port_del(struct rte_eth_dev *eth_dev,
2082 struct rte_eth_udp_tunnel *tunnel_udp)
2084 return qede_conf_udp_dst_port(eth_dev, tunnel_udp, false);
2088 qede_udp_dst_port_add(struct rte_eth_dev *eth_dev,
2089 struct rte_eth_udp_tunnel *tunnel_udp)
2091 return qede_conf_udp_dst_port(eth_dev, tunnel_udp, true);
2094 static void qede_get_ecore_tunn_params(uint32_t filter, uint32_t *type,
2095 uint32_t *clss, char *str)
2098 *clss = MAX_ECORE_TUNN_CLSS;
2100 for (j = 0; j < RTE_DIM(qede_tunn_types); j++) {
2101 if (filter == qede_tunn_types[j].rte_filter_type) {
2102 *type = qede_tunn_types[j].qede_type;
2103 *clss = qede_tunn_types[j].qede_tunn_clss;
2104 strcpy(str, qede_tunn_types[j].string);
2111 qede_set_ucast_tunn_cmn_param(struct ecore_filter_ucast *ucast,
2112 const struct rte_eth_tunnel_filter_conf *conf,
2115 /* Init commmon ucast params first */
2116 qede_set_ucast_cmn_params(ucast);
2118 /* Copy out the required fields based on classification type */
2122 case ECORE_FILTER_VNI:
2123 ucast->vni = conf->tenant_id;
2125 case ECORE_FILTER_INNER_VLAN:
2126 ucast->vlan = conf->inner_vlan;
2128 case ECORE_FILTER_MAC:
2129 memcpy(ucast->mac, conf->outer_mac.addr_bytes,
2132 case ECORE_FILTER_INNER_MAC:
2133 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2136 case ECORE_FILTER_MAC_VNI_PAIR:
2137 memcpy(ucast->mac, conf->outer_mac.addr_bytes,
2139 ucast->vni = conf->tenant_id;
2141 case ECORE_FILTER_INNER_MAC_VNI_PAIR:
2142 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2144 ucast->vni = conf->tenant_id;
2146 case ECORE_FILTER_INNER_PAIR:
2147 memcpy(ucast->mac, conf->inner_mac.addr_bytes,
2149 ucast->vlan = conf->inner_vlan;
2155 return ECORE_SUCCESS;
2158 static int qede_vxlan_tunn_config(struct rte_eth_dev *eth_dev,
2159 enum rte_filter_op filter_op,
2160 const struct rte_eth_tunnel_filter_conf *conf)
2162 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2163 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2164 struct ecore_tunnel_info tunn;
2165 struct ecore_hwfn *p_hwfn;
2166 enum ecore_filter_ucast_type type;
2167 enum ecore_tunn_clss clss;
2168 struct ecore_filter_ucast ucast;
2170 uint16_t filter_type;
2173 filter_type = conf->filter_type | qdev->vxlan_filter_type;
2174 /* First determine if the given filter classification is supported */
2175 qede_get_ecore_tunn_params(filter_type, &type, &clss, str);
2176 if (clss == MAX_ECORE_TUNN_CLSS) {
2177 DP_ERR(edev, "Wrong filter type\n");
2180 /* Init tunnel ucast params */
2181 rc = qede_set_ucast_tunn_cmn_param(&ucast, conf, type);
2182 if (rc != ECORE_SUCCESS) {
2183 DP_ERR(edev, "Unsupported VxLAN filter type 0x%x\n",
2187 DP_INFO(edev, "Rule: \"%s\", op %d, type 0x%x\n",
2188 str, filter_op, ucast.type);
2189 switch (filter_op) {
2190 case RTE_ETH_FILTER_ADD:
2191 ucast.opcode = ECORE_FILTER_ADD;
2193 /* Skip MAC/VLAN if filter is based on VNI */
2194 if (!(filter_type & ETH_TUNNEL_FILTER_TENID)) {
2195 rc = qede_mac_int_ops(eth_dev, &ucast, 1);
2197 /* Enable accept anyvlan */
2198 qede_config_accept_any_vlan(qdev, true);
2201 rc = qede_ucast_filter(eth_dev, &ucast, 1);
2203 rc = ecore_filter_ucast_cmd(edev, &ucast,
2204 ECORE_SPQ_MODE_CB, NULL);
2207 if (rc != ECORE_SUCCESS)
2210 qdev->vxlan_filter_type = filter_type;
2212 DP_INFO(edev, "Enabling VXLAN tunneling\n");
2213 qede_set_cmn_tunn_param(&tunn, clss, true, true);
2214 for_each_hwfn(edev, i) {
2215 p_hwfn = &edev->hwfns[i];
2216 rc = ecore_sp_pf_update_tunn_cfg(p_hwfn,
2217 &tunn, ECORE_SPQ_MODE_CB, NULL);
2218 if (rc != ECORE_SUCCESS) {
2219 DP_ERR(edev, "Failed to update tunn_clss %u\n",
2220 tunn.vxlan.tun_cls);
2223 qdev->num_tunn_filters++; /* Filter added successfully */
2225 case RTE_ETH_FILTER_DELETE:
2226 ucast.opcode = ECORE_FILTER_REMOVE;
2228 if (!(filter_type & ETH_TUNNEL_FILTER_TENID)) {
2229 rc = qede_mac_int_ops(eth_dev, &ucast, 0);
2231 rc = qede_ucast_filter(eth_dev, &ucast, 0);
2233 rc = ecore_filter_ucast_cmd(edev, &ucast,
2234 ECORE_SPQ_MODE_CB, NULL);
2236 if (rc != ECORE_SUCCESS)
2239 qdev->vxlan_filter_type = filter_type;
2240 qdev->num_tunn_filters--;
2242 /* Disable VXLAN if VXLAN filters become 0 */
2243 if (qdev->num_tunn_filters == 0) {
2244 DP_INFO(edev, "Disabling VXLAN tunneling\n");
2246 /* Use 0 as tunnel mode */
2247 qede_set_cmn_tunn_param(&tunn, clss, false, true);
2248 for_each_hwfn(edev, i) {
2249 p_hwfn = &edev->hwfns[i];
2250 rc = ecore_sp_pf_update_tunn_cfg(p_hwfn, &tunn,
2251 ECORE_SPQ_MODE_CB, NULL);
2252 if (rc != ECORE_SUCCESS) {
2254 "Failed to update tunn_clss %u\n",
2255 tunn.vxlan.tun_cls);
2262 DP_ERR(edev, "Unsupported operation %d\n", filter_op);
2265 DP_INFO(edev, "Current VXLAN filters %d\n", qdev->num_tunn_filters);
2270 int qede_dev_filter_ctrl(struct rte_eth_dev *eth_dev,
2271 enum rte_filter_type filter_type,
2272 enum rte_filter_op filter_op,
2275 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
2276 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
2277 struct rte_eth_tunnel_filter_conf *filter_conf =
2278 (struct rte_eth_tunnel_filter_conf *)arg;
2280 switch (filter_type) {
2281 case RTE_ETH_FILTER_TUNNEL:
2282 switch (filter_conf->tunnel_type) {
2283 case RTE_TUNNEL_TYPE_VXLAN:
2285 "Packet steering to the specified Rx queue"
2286 " is not supported with VXLAN tunneling");
2287 return(qede_vxlan_tunn_config(eth_dev, filter_op,
2289 /* Place holders for future tunneling support */
2290 case RTE_TUNNEL_TYPE_GENEVE:
2291 case RTE_TUNNEL_TYPE_TEREDO:
2292 case RTE_TUNNEL_TYPE_NVGRE:
2293 case RTE_TUNNEL_TYPE_IP_IN_GRE:
2294 case RTE_L2_TUNNEL_TYPE_E_TAG:
2295 DP_ERR(edev, "Unsupported tunnel type %d\n",
2296 filter_conf->tunnel_type);
2298 case RTE_TUNNEL_TYPE_NONE:
2303 case RTE_ETH_FILTER_FDIR:
2304 return qede_fdir_filter_conf(eth_dev, filter_op, arg);
2305 case RTE_ETH_FILTER_NTUPLE:
2306 return qede_ntuple_filter_conf(eth_dev, filter_op, arg);
2307 case RTE_ETH_FILTER_MACVLAN:
2308 case RTE_ETH_FILTER_ETHERTYPE:
2309 case RTE_ETH_FILTER_FLEXIBLE:
2310 case RTE_ETH_FILTER_SYN:
2311 case RTE_ETH_FILTER_HASH:
2312 case RTE_ETH_FILTER_L2_TUNNEL:
2313 case RTE_ETH_FILTER_MAX:
2315 DP_ERR(edev, "Unsupported filter type %d\n",
2323 static const struct eth_dev_ops qede_eth_dev_ops = {
2324 .dev_configure = qede_dev_configure,
2325 .dev_infos_get = qede_dev_info_get,
2326 .rx_queue_setup = qede_rx_queue_setup,
2327 .rx_queue_release = qede_rx_queue_release,
2328 .tx_queue_setup = qede_tx_queue_setup,
2329 .tx_queue_release = qede_tx_queue_release,
2330 .dev_start = qede_dev_start,
2331 .dev_set_link_up = qede_dev_set_link_up,
2332 .dev_set_link_down = qede_dev_set_link_down,
2333 .link_update = qede_link_update,
2334 .promiscuous_enable = qede_promiscuous_enable,
2335 .promiscuous_disable = qede_promiscuous_disable,
2336 .allmulticast_enable = qede_allmulticast_enable,
2337 .allmulticast_disable = qede_allmulticast_disable,
2338 .dev_stop = qede_dev_stop,
2339 .dev_close = qede_dev_close,
2340 .stats_get = qede_get_stats,
2341 .stats_reset = qede_reset_stats,
2342 .xstats_get = qede_get_xstats,
2343 .xstats_reset = qede_reset_xstats,
2344 .xstats_get_names = qede_get_xstats_names,
2345 .mac_addr_add = qede_mac_addr_add,
2346 .mac_addr_remove = qede_mac_addr_remove,
2347 .mac_addr_set = qede_mac_addr_set,
2348 .vlan_offload_set = qede_vlan_offload_set,
2349 .vlan_filter_set = qede_vlan_filter_set,
2350 .flow_ctrl_set = qede_flow_ctrl_set,
2351 .flow_ctrl_get = qede_flow_ctrl_get,
2352 .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
2353 .rss_hash_update = qede_rss_hash_update,
2354 .rss_hash_conf_get = qede_rss_hash_conf_get,
2355 .reta_update = qede_rss_reta_update,
2356 .reta_query = qede_rss_reta_query,
2357 .mtu_set = qede_set_mtu,
2358 .filter_ctrl = qede_dev_filter_ctrl,
2359 .udp_tunnel_port_add = qede_udp_dst_port_add,
2360 .udp_tunnel_port_del = qede_udp_dst_port_del,
2363 static const struct eth_dev_ops qede_eth_vf_dev_ops = {
2364 .dev_configure = qede_dev_configure,
2365 .dev_infos_get = qede_dev_info_get,
2366 .rx_queue_setup = qede_rx_queue_setup,
2367 .rx_queue_release = qede_rx_queue_release,
2368 .tx_queue_setup = qede_tx_queue_setup,
2369 .tx_queue_release = qede_tx_queue_release,
2370 .dev_start = qede_dev_start,
2371 .dev_set_link_up = qede_dev_set_link_up,
2372 .dev_set_link_down = qede_dev_set_link_down,
2373 .link_update = qede_link_update,
2374 .promiscuous_enable = qede_promiscuous_enable,
2375 .promiscuous_disable = qede_promiscuous_disable,
2376 .allmulticast_enable = qede_allmulticast_enable,
2377 .allmulticast_disable = qede_allmulticast_disable,
2378 .dev_stop = qede_dev_stop,
2379 .dev_close = qede_dev_close,
2380 .stats_get = qede_get_stats,
2381 .stats_reset = qede_reset_stats,
2382 .xstats_get = qede_get_xstats,
2383 .xstats_reset = qede_reset_xstats,
2384 .xstats_get_names = qede_get_xstats_names,
2385 .vlan_offload_set = qede_vlan_offload_set,
2386 .vlan_filter_set = qede_vlan_filter_set,
2387 .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
2388 .rss_hash_update = qede_rss_hash_update,
2389 .rss_hash_conf_get = qede_rss_hash_conf_get,
2390 .reta_update = qede_rss_reta_update,
2391 .reta_query = qede_rss_reta_query,
2392 .mtu_set = qede_set_mtu,
2395 static void qede_update_pf_params(struct ecore_dev *edev)
2397 struct ecore_pf_params pf_params;
2399 memset(&pf_params, 0, sizeof(struct ecore_pf_params));
2400 pf_params.eth_pf_params.num_cons = QEDE_PF_NUM_CONNS;
2401 pf_params.eth_pf_params.num_arfs_filters = QEDE_RFS_MAX_FLTR;
2402 qed_ops->common->update_pf_params(edev, &pf_params);
2405 static int qede_common_dev_init(struct rte_eth_dev *eth_dev, bool is_vf)
2407 struct rte_pci_device *pci_dev;
2408 struct rte_pci_addr pci_addr;
2409 struct qede_dev *adapter;
2410 struct ecore_dev *edev;
2411 struct qed_dev_eth_info dev_info;
2412 struct qed_slowpath_params params;
2413 static bool do_once = true;
2414 uint8_t bulletin_change;
2415 uint8_t vf_mac[ETHER_ADDR_LEN];
2416 uint8_t is_mac_forced;
2418 /* Fix up ecore debug level */
2419 uint32_t dp_module = ~0 & ~ECORE_MSG_HW;
2420 uint8_t dp_level = ECORE_LEVEL_VERBOSE;
2423 /* Extract key data structures */
2424 adapter = eth_dev->data->dev_private;
2425 edev = &adapter->edev;
2426 pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
2427 pci_addr = pci_dev->addr;
2429 PMD_INIT_FUNC_TRACE(edev);
2431 snprintf(edev->name, NAME_SIZE, PCI_SHORT_PRI_FMT ":dpdk-port-%u",
2432 pci_addr.bus, pci_addr.devid, pci_addr.function,
2433 eth_dev->data->port_id);
2435 eth_dev->rx_pkt_burst = qede_recv_pkts;
2436 eth_dev->tx_pkt_burst = qede_xmit_pkts;
2437 eth_dev->tx_pkt_prepare = qede_xmit_prep_pkts;
2439 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2440 DP_NOTICE(edev, false,
2441 "Skipping device init from secondary process\n");
2445 rte_eth_copy_pci_info(eth_dev, pci_dev);
2448 edev->vendor_id = pci_dev->id.vendor_id;
2449 edev->device_id = pci_dev->id.device_id;
2451 qed_ops = qed_get_eth_ops();
2453 DP_ERR(edev, "Failed to get qed_eth_ops_pass\n");
2457 DP_INFO(edev, "Starting qede probe\n");
2458 rc = qed_ops->common->probe(edev, pci_dev, dp_module,
2461 DP_ERR(edev, "qede probe failed rc %d\n", rc);
2464 qede_update_pf_params(edev);
2465 rte_intr_callback_register(&pci_dev->intr_handle,
2466 qede_interrupt_handler, (void *)eth_dev);
2467 if (rte_intr_enable(&pci_dev->intr_handle)) {
2468 DP_ERR(edev, "rte_intr_enable() failed\n");
2472 /* Start the Slowpath-process */
2473 memset(¶ms, 0, sizeof(struct qed_slowpath_params));
2474 params.int_mode = ECORE_INT_MODE_MSIX;
2475 params.drv_major = QEDE_PMD_VERSION_MAJOR;
2476 params.drv_minor = QEDE_PMD_VERSION_MINOR;
2477 params.drv_rev = QEDE_PMD_VERSION_REVISION;
2478 params.drv_eng = QEDE_PMD_VERSION_PATCH;
2479 strncpy((char *)params.name, QEDE_PMD_VER_PREFIX,
2480 QEDE_PMD_DRV_VER_STR_SIZE);
2482 /* For CMT mode device do periodic polling for slowpath events.
2483 * This is required since uio device uses only one MSI-x
2484 * interrupt vector but we need one for each engine.
2486 if (edev->num_hwfns > 1 && IS_PF(edev)) {
2487 rc = rte_eal_alarm_set(timer_period * US_PER_S,
2491 DP_ERR(edev, "Unable to start periodic"
2492 " timer rc %d\n", rc);
2497 rc = qed_ops->common->slowpath_start(edev, ¶ms);
2499 DP_ERR(edev, "Cannot start slowpath rc = %d\n", rc);
2500 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
2505 rc = qed_ops->fill_dev_info(edev, &dev_info);
2507 DP_ERR(edev, "Cannot get device_info rc %d\n", rc);
2508 qed_ops->common->slowpath_stop(edev);
2509 qed_ops->common->remove(edev);
2510 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
2515 qede_alloc_etherdev(adapter, &dev_info);
2517 adapter->ops->common->set_name(edev, edev->name);
2520 adapter->dev_info.num_mac_filters =
2521 (uint32_t)RESC_NUM(ECORE_LEADING_HWFN(edev),
2524 ecore_vf_get_num_mac_filters(ECORE_LEADING_HWFN(edev),
2525 (uint32_t *)&adapter->dev_info.num_mac_filters);
2527 /* Allocate memory for storing MAC addr */
2528 eth_dev->data->mac_addrs = rte_zmalloc(edev->name,
2530 adapter->dev_info.num_mac_filters),
2531 RTE_CACHE_LINE_SIZE);
2533 if (eth_dev->data->mac_addrs == NULL) {
2534 DP_ERR(edev, "Failed to allocate MAC address\n");
2535 qed_ops->common->slowpath_stop(edev);
2536 qed_ops->common->remove(edev);
2537 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
2543 ether_addr_copy((struct ether_addr *)edev->hwfns[0].
2544 hw_info.hw_mac_addr,
2545 ð_dev->data->mac_addrs[0]);
2546 ether_addr_copy(ð_dev->data->mac_addrs[0],
2547 &adapter->primary_mac);
2549 ecore_vf_read_bulletin(ECORE_LEADING_HWFN(edev),
2551 if (bulletin_change) {
2553 ecore_vf_bulletin_get_forced_mac(
2554 ECORE_LEADING_HWFN(edev),
2557 if (is_mac_exist && is_mac_forced) {
2558 DP_INFO(edev, "VF macaddr received from PF\n");
2559 ether_addr_copy((struct ether_addr *)&vf_mac,
2560 ð_dev->data->mac_addrs[0]);
2561 ether_addr_copy(ð_dev->data->mac_addrs[0],
2562 &adapter->primary_mac);
2564 DP_NOTICE(edev, false,
2565 "No VF macaddr assigned\n");
2570 eth_dev->dev_ops = (is_vf) ? &qede_eth_vf_dev_ops : &qede_eth_dev_ops;
2573 #ifdef RTE_LIBRTE_QEDE_DEBUG_INFO
2574 qede_print_adapter_info(adapter);
2579 adapter->num_tx_queues = 0;
2580 adapter->num_rx_queues = 0;
2581 SLIST_INIT(&adapter->fdir_info.fdir_list_head);
2582 SLIST_INIT(&adapter->vlan_list_head);
2583 SLIST_INIT(&adapter->uc_list_head);
2584 adapter->mtu = ETHER_MTU;
2585 adapter->new_mtu = ETHER_MTU;
2587 if (qede_start_vport(adapter, adapter->mtu))
2590 DP_NOTICE(edev, false, "MAC address : %02x:%02x:%02x:%02x:%02x:%02x\n",
2591 adapter->primary_mac.addr_bytes[0],
2592 adapter->primary_mac.addr_bytes[1],
2593 adapter->primary_mac.addr_bytes[2],
2594 adapter->primary_mac.addr_bytes[3],
2595 adapter->primary_mac.addr_bytes[4],
2596 adapter->primary_mac.addr_bytes[5]);
2598 DP_INFO(edev, "Device initialized\n");
2603 static int qedevf_eth_dev_init(struct rte_eth_dev *eth_dev)
2605 return qede_common_dev_init(eth_dev, 1);
2608 static int qede_eth_dev_init(struct rte_eth_dev *eth_dev)
2610 return qede_common_dev_init(eth_dev, 0);
2613 static int qede_dev_common_uninit(struct rte_eth_dev *eth_dev)
2615 /* only uninitialize in the primary process */
2616 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2619 /* safe to close dev here */
2620 qede_dev_close(eth_dev);
2622 eth_dev->dev_ops = NULL;
2623 eth_dev->rx_pkt_burst = NULL;
2624 eth_dev->tx_pkt_burst = NULL;
2626 if (eth_dev->data->mac_addrs)
2627 rte_free(eth_dev->data->mac_addrs);
2629 eth_dev->data->mac_addrs = NULL;
2634 static int qede_eth_dev_uninit(struct rte_eth_dev *eth_dev)
2636 return qede_dev_common_uninit(eth_dev);
2639 static int qedevf_eth_dev_uninit(struct rte_eth_dev *eth_dev)
2641 return qede_dev_common_uninit(eth_dev);
2644 static const struct rte_pci_id pci_id_qedevf_map[] = {
2645 #define QEDEVF_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
2647 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_VF)
2650 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_IOV)
2653 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_IOV)
2658 static const struct rte_pci_id pci_id_qede_map[] = {
2659 #define QEDE_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
2661 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_57980E)
2664 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_NX2_57980S)
2667 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_40)
2670 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_25)
2673 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_100)
2676 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_57980S_50)
2679 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_50G)
2682 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_10G)
2685 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_40G)
2688 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_QLOGIC_AH_25G)
2693 static int qedevf_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2694 struct rte_pci_device *pci_dev)
2696 return rte_eth_dev_pci_generic_probe(pci_dev,
2697 sizeof(struct qede_dev), qedevf_eth_dev_init);
2700 static int qedevf_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
2702 return rte_eth_dev_pci_generic_remove(pci_dev, qedevf_eth_dev_uninit);
2705 static struct rte_pci_driver rte_qedevf_pmd = {
2706 .id_table = pci_id_qedevf_map,
2707 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
2708 .probe = qedevf_eth_dev_pci_probe,
2709 .remove = qedevf_eth_dev_pci_remove,
2712 static int qede_eth_dev_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
2713 struct rte_pci_device *pci_dev)
2715 return rte_eth_dev_pci_generic_probe(pci_dev,
2716 sizeof(struct qede_dev), qede_eth_dev_init);
2719 static int qede_eth_dev_pci_remove(struct rte_pci_device *pci_dev)
2721 return rte_eth_dev_pci_generic_remove(pci_dev, qede_eth_dev_uninit);
2724 static struct rte_pci_driver rte_qede_pmd = {
2725 .id_table = pci_id_qede_map,
2726 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
2727 .probe = qede_eth_dev_pci_probe,
2728 .remove = qede_eth_dev_pci_remove,
2731 RTE_PMD_REGISTER_PCI(net_qede, rte_qede_pmd);
2732 RTE_PMD_REGISTER_PCI_TABLE(net_qede, pci_id_qede_map);
2733 RTE_PMD_REGISTER_KMOD_DEP(net_qede, "* igb_uio | uio_pci_generic | vfio-pci");
2734 RTE_PMD_REGISTER_PCI(net_qede_vf, rte_qedevf_pmd);
2735 RTE_PMD_REGISTER_PCI_TABLE(net_qede_vf, pci_id_qedevf_map);
2736 RTE_PMD_REGISTER_KMOD_DEP(net_qede_vf, "* igb_uio | vfio-pci");