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>
13 static const struct qed_eth_ops *qed_ops;
14 static const char *drivername = "qede pmd";
15 static int64_t timer_period = 1;
17 struct rte_qede_xstats_name_off {
18 char name[RTE_ETH_XSTATS_NAME_SIZE];
22 static const struct rte_qede_xstats_name_off qede_xstats_strings[] = {
23 {"rx_unicast_bytes", offsetof(struct ecore_eth_stats, rx_ucast_bytes)},
24 {"rx_multicast_bytes",
25 offsetof(struct ecore_eth_stats, rx_mcast_bytes)},
26 {"rx_broadcast_bytes",
27 offsetof(struct ecore_eth_stats, rx_bcast_bytes)},
28 {"rx_unicast_packets", offsetof(struct ecore_eth_stats, rx_ucast_pkts)},
29 {"rx_multicast_packets",
30 offsetof(struct ecore_eth_stats, rx_mcast_pkts)},
31 {"rx_broadcast_packets",
32 offsetof(struct ecore_eth_stats, rx_bcast_pkts)},
34 {"tx_unicast_bytes", offsetof(struct ecore_eth_stats, tx_ucast_bytes)},
35 {"tx_multicast_bytes",
36 offsetof(struct ecore_eth_stats, tx_mcast_bytes)},
37 {"tx_broadcast_bytes",
38 offsetof(struct ecore_eth_stats, tx_bcast_bytes)},
39 {"tx_unicast_packets", offsetof(struct ecore_eth_stats, tx_ucast_pkts)},
40 {"tx_multicast_packets",
41 offsetof(struct ecore_eth_stats, tx_mcast_pkts)},
42 {"tx_broadcast_packets",
43 offsetof(struct ecore_eth_stats, tx_bcast_pkts)},
45 {"rx_64_byte_packets",
46 offsetof(struct ecore_eth_stats, rx_64_byte_packets)},
47 {"rx_65_to_127_byte_packets",
48 offsetof(struct ecore_eth_stats, rx_65_to_127_byte_packets)},
49 {"rx_128_to_255_byte_packets",
50 offsetof(struct ecore_eth_stats, rx_128_to_255_byte_packets)},
51 {"rx_256_to_511_byte_packets",
52 offsetof(struct ecore_eth_stats, rx_256_to_511_byte_packets)},
53 {"rx_512_to_1023_byte_packets",
54 offsetof(struct ecore_eth_stats, rx_512_to_1023_byte_packets)},
55 {"rx_1024_to_1518_byte_packets",
56 offsetof(struct ecore_eth_stats, rx_1024_to_1518_byte_packets)},
57 {"rx_1519_to_1522_byte_packets",
58 offsetof(struct ecore_eth_stats, rx_1519_to_1522_byte_packets)},
59 {"rx_1519_to_2047_byte_packets",
60 offsetof(struct ecore_eth_stats, rx_1519_to_2047_byte_packets)},
61 {"rx_2048_to_4095_byte_packets",
62 offsetof(struct ecore_eth_stats, rx_2048_to_4095_byte_packets)},
63 {"rx_4096_to_9216_byte_packets",
64 offsetof(struct ecore_eth_stats, rx_4096_to_9216_byte_packets)},
65 {"rx_9217_to_16383_byte_packets",
66 offsetof(struct ecore_eth_stats,
67 rx_9217_to_16383_byte_packets)},
68 {"tx_64_byte_packets",
69 offsetof(struct ecore_eth_stats, tx_64_byte_packets)},
70 {"tx_65_to_127_byte_packets",
71 offsetof(struct ecore_eth_stats, tx_65_to_127_byte_packets)},
72 {"tx_128_to_255_byte_packets",
73 offsetof(struct ecore_eth_stats, tx_128_to_255_byte_packets)},
74 {"tx_256_to_511_byte_packets",
75 offsetof(struct ecore_eth_stats, tx_256_to_511_byte_packets)},
76 {"tx_512_to_1023_byte_packets",
77 offsetof(struct ecore_eth_stats, tx_512_to_1023_byte_packets)},
78 {"tx_1024_to_1518_byte_packets",
79 offsetof(struct ecore_eth_stats, tx_1024_to_1518_byte_packets)},
80 {"trx_1519_to_1522_byte_packets",
81 offsetof(struct ecore_eth_stats, tx_1519_to_2047_byte_packets)},
82 {"tx_2048_to_4095_byte_packets",
83 offsetof(struct ecore_eth_stats, tx_2048_to_4095_byte_packets)},
84 {"tx_4096_to_9216_byte_packets",
85 offsetof(struct ecore_eth_stats, tx_4096_to_9216_byte_packets)},
86 {"tx_9217_to_16383_byte_packets",
87 offsetof(struct ecore_eth_stats,
88 tx_9217_to_16383_byte_packets)},
90 {"rx_mac_crtl_frames",
91 offsetof(struct ecore_eth_stats, rx_mac_crtl_frames)},
92 {"tx_mac_control_frames",
93 offsetof(struct ecore_eth_stats, tx_mac_ctrl_frames)},
94 {"rx_pause_frames", offsetof(struct ecore_eth_stats, rx_pause_frames)},
95 {"tx_pause_frames", offsetof(struct ecore_eth_stats, tx_pause_frames)},
96 {"rx_priority_flow_control_frames",
97 offsetof(struct ecore_eth_stats, rx_pfc_frames)},
98 {"tx_priority_flow_control_frames",
99 offsetof(struct ecore_eth_stats, tx_pfc_frames)},
101 {"rx_crc_errors", offsetof(struct ecore_eth_stats, rx_crc_errors)},
102 {"rx_align_errors", offsetof(struct ecore_eth_stats, rx_align_errors)},
103 {"rx_carrier_errors",
104 offsetof(struct ecore_eth_stats, rx_carrier_errors)},
105 {"rx_oversize_packet_errors",
106 offsetof(struct ecore_eth_stats, rx_oversize_packets)},
107 {"rx_jabber_errors", offsetof(struct ecore_eth_stats, rx_jabbers)},
108 {"rx_undersize_packet_errors",
109 offsetof(struct ecore_eth_stats, rx_undersize_packets)},
110 {"rx_fragments", offsetof(struct ecore_eth_stats, rx_fragments)},
111 {"rx_host_buffer_not_available",
112 offsetof(struct ecore_eth_stats, no_buff_discards)},
113 /* Number of packets discarded because they are bigger than MTU */
114 {"rx_packet_too_big_discards",
115 offsetof(struct ecore_eth_stats, packet_too_big_discard)},
116 {"rx_ttl_zero_discards",
117 offsetof(struct ecore_eth_stats, ttl0_discard)},
118 {"rx_multi_function_tag_filter_discards",
119 offsetof(struct ecore_eth_stats, mftag_filter_discards)},
120 {"rx_mac_filter_discards",
121 offsetof(struct ecore_eth_stats, mac_filter_discards)},
122 {"rx_hw_buffer_truncates",
123 offsetof(struct ecore_eth_stats, brb_truncates)},
124 {"rx_hw_buffer_discards",
125 offsetof(struct ecore_eth_stats, brb_discards)},
126 {"tx_lpi_entry_count",
127 offsetof(struct ecore_eth_stats, tx_lpi_entry_count)},
128 {"tx_total_collisions",
129 offsetof(struct ecore_eth_stats, tx_total_collisions)},
130 {"tx_error_drop_packets",
131 offsetof(struct ecore_eth_stats, tx_err_drop_pkts)},
133 {"rx_mac_bytes", offsetof(struct ecore_eth_stats, rx_mac_bytes)},
134 {"rx_mac_unicast_packets",
135 offsetof(struct ecore_eth_stats, rx_mac_uc_packets)},
136 {"rx_mac_multicast_packets",
137 offsetof(struct ecore_eth_stats, rx_mac_mc_packets)},
138 {"rx_mac_broadcast_packets",
139 offsetof(struct ecore_eth_stats, rx_mac_bc_packets)},
141 offsetof(struct ecore_eth_stats, rx_mac_frames_ok)},
142 {"tx_mac_bytes", offsetof(struct ecore_eth_stats, tx_mac_bytes)},
143 {"tx_mac_unicast_packets",
144 offsetof(struct ecore_eth_stats, tx_mac_uc_packets)},
145 {"tx_mac_multicast_packets",
146 offsetof(struct ecore_eth_stats, tx_mac_mc_packets)},
147 {"tx_mac_broadcast_packets",
148 offsetof(struct ecore_eth_stats, tx_mac_bc_packets)},
150 {"lro_coalesced_packets",
151 offsetof(struct ecore_eth_stats, tpa_coalesced_pkts)},
152 {"lro_coalesced_events",
153 offsetof(struct ecore_eth_stats, tpa_coalesced_events)},
155 offsetof(struct ecore_eth_stats, tpa_aborts_num)},
156 {"lro_not_coalesced_packets",
157 offsetof(struct ecore_eth_stats, tpa_not_coalesced_pkts)},
158 {"lro_coalesced_bytes",
159 offsetof(struct ecore_eth_stats, tpa_coalesced_bytes)},
162 static void qede_interrupt_action(struct ecore_hwfn *p_hwfn)
164 ecore_int_sp_dpc((osal_int_ptr_t)(p_hwfn));
168 qede_interrupt_handler(__rte_unused struct rte_intr_handle *handle, void *param)
170 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
171 struct qede_dev *qdev = eth_dev->data->dev_private;
172 struct ecore_dev *edev = &qdev->edev;
174 qede_interrupt_action(ECORE_LEADING_HWFN(edev));
175 if (rte_intr_enable(ð_dev->pci_dev->intr_handle))
176 DP_ERR(edev, "rte_intr_enable failed\n");
180 qede_alloc_etherdev(struct qede_dev *qdev, struct qed_dev_eth_info *info)
182 rte_memcpy(&qdev->dev_info, info, sizeof(*info));
183 qdev->num_tc = qdev->dev_info.num_tc;
187 static void qede_print_adapter_info(struct qede_dev *qdev)
189 struct ecore_dev *edev = &qdev->edev;
190 struct qed_dev_info *info = &qdev->dev_info.common;
191 static char ver_str[QED_DRV_VER_STR_SIZE];
193 DP_INFO(edev, "*********************************\n");
194 DP_INFO(edev, " Chip details : %s%d\n",
195 ECORE_IS_BB(edev) ? "BB" : "AH",
196 CHIP_REV_IS_A0(edev) ? 0 : 1);
198 sprintf(ver_str, "%s %s_%d.%d.%d.%d", QEDE_PMD_VER_PREFIX,
199 edev->ver_str, QEDE_PMD_VERSION_MAJOR, QEDE_PMD_VERSION_MINOR,
200 QEDE_PMD_VERSION_REVISION, QEDE_PMD_VERSION_PATCH);
201 strcpy(qdev->drv_ver, ver_str);
202 DP_INFO(edev, " Driver version : %s\n", ver_str);
204 sprintf(ver_str, "%d.%d.%d.%d", info->fw_major, info->fw_minor,
205 info->fw_rev, info->fw_eng);
206 DP_INFO(edev, " Firmware version : %s\n", ver_str);
208 sprintf(ver_str, "%d.%d.%d.%d",
209 (info->mfw_rev >> 24) & 0xff,
210 (info->mfw_rev >> 16) & 0xff,
211 (info->mfw_rev >> 8) & 0xff, (info->mfw_rev) & 0xff);
212 DP_INFO(edev, " Management firmware version : %s\n", ver_str);
214 DP_INFO(edev, " Firmware file : %s\n", fw_file);
216 DP_INFO(edev, "*********************************\n");
220 qede_set_ucast_rx_mac(struct qede_dev *qdev,
221 enum qed_filter_xcast_params_type opcode,
222 uint8_t mac[ETHER_ADDR_LEN])
224 struct ecore_dev *edev = &qdev->edev;
225 struct qed_filter_params filter_cmd;
227 memset(&filter_cmd, 0, sizeof(filter_cmd));
228 filter_cmd.type = QED_FILTER_TYPE_UCAST;
229 filter_cmd.filter.ucast.type = opcode;
230 filter_cmd.filter.ucast.mac_valid = 1;
231 rte_memcpy(&filter_cmd.filter.ucast.mac[0], &mac[0], ETHER_ADDR_LEN);
232 return qdev->ops->filter_config(edev, &filter_cmd);
236 qede_mac_addr_add(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr,
237 uint32_t index, __rte_unused uint32_t pool)
239 struct qede_dev *qdev = eth_dev->data->dev_private;
240 struct ecore_dev *edev = &qdev->edev;
243 PMD_INIT_FUNC_TRACE(edev);
245 if (index >= qdev->dev_info.num_mac_addrs) {
246 DP_ERR(edev, "Index %u is above MAC filter limit %u\n",
247 index, qdev->dev_info.num_mac_addrs);
251 /* Adding macaddr even though promiscuous mode is set */
252 if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
253 DP_INFO(edev, "Port is in promisc mode, yet adding it\n");
255 /* Add MAC filters according to the unicast secondary macs */
256 rc = qede_set_ucast_rx_mac(qdev, QED_FILTER_XCAST_TYPE_ADD,
257 mac_addr->addr_bytes);
259 DP_ERR(edev, "Unable to add macaddr rc=%d\n", rc);
263 qede_mac_addr_remove(struct rte_eth_dev *eth_dev, uint32_t index)
265 struct qede_dev *qdev = eth_dev->data->dev_private;
266 struct ecore_dev *edev = &qdev->edev;
267 struct ether_addr mac_addr;
270 PMD_INIT_FUNC_TRACE(edev);
272 if (index >= qdev->dev_info.num_mac_addrs) {
273 DP_ERR(edev, "Index %u is above MAC filter limit %u\n",
274 index, qdev->dev_info.num_mac_addrs);
278 /* Use the index maintained by rte */
279 ether_addr_copy(ð_dev->data->mac_addrs[index], &mac_addr);
280 rc = qede_set_ucast_rx_mac(qdev, QED_FILTER_XCAST_TYPE_DEL,
281 mac_addr.addr_bytes);
283 DP_ERR(edev, "Unable to remove macaddr rc=%d\n", rc);
287 qede_mac_addr_set(struct rte_eth_dev *eth_dev, struct ether_addr *mac_addr)
289 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
290 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
293 if (IS_VF(edev) && !ecore_vf_check_mac(ECORE_LEADING_HWFN(edev),
294 mac_addr->addr_bytes)) {
295 DP_ERR(edev, "Setting MAC address is not allowed\n");
296 ether_addr_copy(&qdev->primary_mac,
297 ð_dev->data->mac_addrs[0]);
301 /* First remove the primary mac */
302 rc = qede_set_ucast_rx_mac(qdev, QED_FILTER_XCAST_TYPE_DEL,
303 qdev->primary_mac.addr_bytes);
306 DP_ERR(edev, "Unable to remove current macaddr"
307 " Reverting to previous default mac\n");
308 ether_addr_copy(&qdev->primary_mac,
309 ð_dev->data->mac_addrs[0]);
314 rc = qede_set_ucast_rx_mac(qdev, QED_FILTER_XCAST_TYPE_ADD,
315 mac_addr->addr_bytes);
318 DP_ERR(edev, "Unable to add new default mac\n");
320 ether_addr_copy(mac_addr, &qdev->primary_mac);
326 static void qede_config_accept_any_vlan(struct qede_dev *qdev, bool action)
328 struct ecore_dev *edev = &qdev->edev;
329 struct qed_update_vport_params params = {
331 .accept_any_vlan = action,
332 .update_accept_any_vlan_flg = 1,
336 /* Proceed only if action actually needs to be performed */
337 if (qdev->accept_any_vlan == action)
340 rc = qdev->ops->vport_update(edev, ¶ms);
342 DP_ERR(edev, "Failed to %s accept-any-vlan\n",
343 action ? "enable" : "disable");
345 DP_INFO(edev, "%s accept-any-vlan\n",
346 action ? "enabled" : "disabled");
347 qdev->accept_any_vlan = action;
351 static int qede_vlan_stripping(struct rte_eth_dev *eth_dev, bool set_stripping)
353 struct qed_update_vport_params vport_update_params;
354 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
355 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
358 memset(&vport_update_params, 0, sizeof(vport_update_params));
359 vport_update_params.vport_id = 0;
360 vport_update_params.update_inner_vlan_removal_flg = 1;
361 vport_update_params.inner_vlan_removal_flg = set_stripping;
362 rc = qdev->ops->vport_update(edev, &vport_update_params);
364 DP_ERR(edev, "Update V-PORT failed %d\n", rc);
371 static void qede_vlan_offload_set(struct rte_eth_dev *eth_dev, int mask)
373 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
374 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
376 if (mask & ETH_VLAN_STRIP_MASK) {
377 if (eth_dev->data->dev_conf.rxmode.hw_vlan_strip)
378 (void)qede_vlan_stripping(eth_dev, 1);
380 (void)qede_vlan_stripping(eth_dev, 0);
383 DP_INFO(edev, "vlan offload mask %d vlan-strip %d\n",
384 mask, eth_dev->data->dev_conf.rxmode.hw_vlan_strip);
387 static int qede_set_ucast_rx_vlan(struct qede_dev *qdev,
388 enum qed_filter_xcast_params_type opcode,
391 struct qed_filter_params filter_cmd;
392 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
394 memset(&filter_cmd, 0, sizeof(filter_cmd));
395 filter_cmd.type = QED_FILTER_TYPE_UCAST;
396 filter_cmd.filter.ucast.type = opcode;
397 filter_cmd.filter.ucast.vlan_valid = 1;
398 filter_cmd.filter.ucast.vlan = vid;
400 return qdev->ops->filter_config(edev, &filter_cmd);
403 static int qede_vlan_filter_set(struct rte_eth_dev *eth_dev,
404 uint16_t vlan_id, int on)
406 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
407 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
408 struct qed_dev_eth_info *dev_info = &qdev->dev_info;
412 qdev->configured_vlans == dev_info->num_vlan_filters) {
413 DP_NOTICE(edev, false, "Reached max VLAN filter limit"
414 " enabling accept_any_vlan\n");
415 qede_config_accept_any_vlan(qdev, true);
420 rc = qede_set_ucast_rx_vlan(qdev, QED_FILTER_XCAST_TYPE_ADD,
423 DP_ERR(edev, "Failed to add VLAN %u rc %d\n", vlan_id,
427 qdev->configured_vlans++;
429 rc = qede_set_ucast_rx_vlan(qdev, QED_FILTER_XCAST_TYPE_DEL,
432 DP_ERR(edev, "Failed to delete VLAN %u rc %d\n",
436 qdev->configured_vlans--;
439 DP_INFO(edev, "vlan_id %u on %u rc %d configured_vlans %u\n",
440 vlan_id, on, rc, qdev->configured_vlans);
445 static int qede_init_vport(struct qede_dev *qdev)
447 struct ecore_dev *edev = &qdev->edev;
448 struct qed_start_vport_params start = {0};
451 start.remove_inner_vlan = 1;
452 start.gro_enable = 0;
453 start.mtu = ETHER_MTU + QEDE_ETH_OVERHEAD;
455 start.drop_ttl0 = false;
456 start.clear_stats = 1;
457 start.handle_ptp_pkts = 0;
459 rc = qdev->ops->vport_start(edev, &start);
461 DP_ERR(edev, "Start V-PORT failed %d\n", rc);
466 "Start vport ramrod passed, vport_id = %d, MTU = %u\n",
467 start.vport_id, ETHER_MTU);
472 static int qede_dev_configure(struct rte_eth_dev *eth_dev)
474 struct qede_dev *qdev = eth_dev->data->dev_private;
475 struct ecore_dev *edev = &qdev->edev;
476 struct rte_eth_rxmode *rxmode = ð_dev->data->dev_conf.rxmode;
479 PMD_INIT_FUNC_TRACE(edev);
481 /* Check requirements for 100G mode */
482 if (edev->num_hwfns > 1) {
483 if (eth_dev->data->nb_rx_queues < 2 ||
484 eth_dev->data->nb_tx_queues < 2) {
485 DP_NOTICE(edev, false,
486 "100G mode needs min. 2 RX/TX queues\n");
490 if ((eth_dev->data->nb_rx_queues % 2 != 0) ||
491 (eth_dev->data->nb_tx_queues % 2 != 0)) {
492 DP_NOTICE(edev, false,
493 "100G mode needs even no. of RX/TX queues\n");
498 qdev->fp_num_tx = eth_dev->data->nb_tx_queues;
499 qdev->fp_num_rx = eth_dev->data->nb_rx_queues;
500 qdev->num_queues = qdev->fp_num_tx + qdev->fp_num_rx;
502 /* Sanity checks and throw warnings */
503 if (rxmode->enable_scatter == 1) {
504 DP_ERR(edev, "RX scatter packets is not supported\n");
508 if (rxmode->enable_lro == 1) {
509 DP_INFO(edev, "LRO is not supported\n");
513 if (!rxmode->hw_strip_crc)
514 DP_INFO(edev, "L2 CRC stripping is always enabled in hw\n");
516 if (!rxmode->hw_ip_checksum)
517 DP_INFO(edev, "IP/UDP/TCP checksum offload is always enabled "
520 /* Check for the port restart case */
521 if (qdev->state != QEDE_DEV_INIT) {
522 rc = qdev->ops->vport_stop(edev, 0);
525 qede_dealloc_fp_resc(eth_dev);
528 /* Fastpath status block should be initialized before sending
529 * VPORT-START in the case of VF. Anyway, do it for both VF/PF.
531 rc = qede_alloc_fp_resc(qdev);
535 /* Issue VPORT-START with default config values to allow
536 * other port configurations early on.
538 rc = qede_init_vport(qdev);
542 /* Add primary mac for PF */
544 qede_mac_addr_set(eth_dev, &qdev->primary_mac);
546 qdev->state = QEDE_DEV_CONFIG;
551 /* Info about HW descriptor ring limitations */
552 static const struct rte_eth_desc_lim qede_rx_desc_lim = {
553 .nb_max = NUM_RX_BDS_MAX,
555 .nb_align = 128 /* lowest common multiple */
558 static const struct rte_eth_desc_lim qede_tx_desc_lim = {
559 .nb_max = NUM_TX_BDS_MAX,
565 qede_dev_info_get(struct rte_eth_dev *eth_dev,
566 struct rte_eth_dev_info *dev_info)
568 struct qede_dev *qdev = eth_dev->data->dev_private;
569 struct ecore_dev *edev = &qdev->edev;
571 PMD_INIT_FUNC_TRACE(edev);
573 dev_info->min_rx_bufsize = (uint32_t)(ETHER_MIN_MTU +
575 dev_info->max_rx_pktlen = (uint32_t)ETH_TX_MAX_NON_LSO_PKT_LEN;
576 dev_info->rx_desc_lim = qede_rx_desc_lim;
577 dev_info->tx_desc_lim = qede_tx_desc_lim;
578 dev_info->max_rx_queues = (uint16_t)QEDE_MAX_RSS_CNT(qdev);
579 dev_info->max_tx_queues = dev_info->max_rx_queues;
580 dev_info->max_mac_addrs = qdev->dev_info.num_mac_addrs;
582 dev_info->max_vfs = 0;
584 dev_info->max_vfs = (uint16_t)NUM_OF_VFS(&qdev->edev);
585 dev_info->driver_name = qdev->drv_ver;
586 dev_info->reta_size = ECORE_RSS_IND_TABLE_SIZE;
587 dev_info->flow_type_rss_offloads = (uint64_t)QEDE_RSS_OFFLOAD_ALL;
589 dev_info->default_txconf = (struct rte_eth_txconf) {
590 .txq_flags = QEDE_TXQ_FLAGS,
593 dev_info->rx_offload_capa = (DEV_RX_OFFLOAD_VLAN_STRIP |
594 DEV_RX_OFFLOAD_IPV4_CKSUM |
595 DEV_RX_OFFLOAD_UDP_CKSUM |
596 DEV_RX_OFFLOAD_TCP_CKSUM);
597 dev_info->tx_offload_capa = (DEV_TX_OFFLOAD_VLAN_INSERT |
598 DEV_TX_OFFLOAD_IPV4_CKSUM |
599 DEV_TX_OFFLOAD_UDP_CKSUM |
600 DEV_TX_OFFLOAD_TCP_CKSUM);
602 dev_info->speed_capa = ETH_LINK_SPEED_25G | ETH_LINK_SPEED_40G |
606 /* return 0 means link status changed, -1 means not changed */
608 qede_link_update(struct rte_eth_dev *eth_dev, __rte_unused int wait_to_complete)
610 struct qede_dev *qdev = eth_dev->data->dev_private;
611 struct ecore_dev *edev = &qdev->edev;
612 uint16_t link_duplex;
613 struct qed_link_output link;
614 struct rte_eth_link *curr = ð_dev->data->dev_link;
616 memset(&link, 0, sizeof(struct qed_link_output));
617 qdev->ops->common->get_link(edev, &link);
620 curr->link_speed = link.speed;
623 switch (link.duplex) {
624 case QEDE_DUPLEX_HALF:
625 link_duplex = ETH_LINK_HALF_DUPLEX;
627 case QEDE_DUPLEX_FULL:
628 link_duplex = ETH_LINK_FULL_DUPLEX;
630 case QEDE_DUPLEX_UNKNOWN:
634 curr->link_duplex = link_duplex;
637 curr->link_status = (link.link_up) ? ETH_LINK_UP : ETH_LINK_DOWN;
640 curr->link_autoneg = (link.supported_caps & QEDE_SUPPORTED_AUTONEG) ?
641 ETH_LINK_AUTONEG : ETH_LINK_FIXED;
643 DP_INFO(edev, "Link - Speed %u Mode %u AN %u Status %u\n",
644 curr->link_speed, curr->link_duplex,
645 curr->link_autoneg, curr->link_status);
647 /* return 0 means link status changed, -1 means not changed */
648 return ((curr->link_status == link.link_up) ? -1 : 0);
652 qede_rx_mode_setting(struct rte_eth_dev *eth_dev,
653 enum qed_filter_rx_mode_type accept_flags)
655 struct qede_dev *qdev = eth_dev->data->dev_private;
656 struct ecore_dev *edev = &qdev->edev;
657 struct qed_filter_params rx_mode;
659 DP_INFO(edev, "%s mode %u\n", __func__, accept_flags);
661 memset(&rx_mode, 0, sizeof(struct qed_filter_params));
662 rx_mode.type = QED_FILTER_TYPE_RX_MODE;
663 rx_mode.filter.accept_flags = accept_flags;
664 qdev->ops->filter_config(edev, &rx_mode);
667 static void qede_promiscuous_enable(struct rte_eth_dev *eth_dev)
669 struct qede_dev *qdev = eth_dev->data->dev_private;
670 struct ecore_dev *edev = &qdev->edev;
672 PMD_INIT_FUNC_TRACE(edev);
674 enum qed_filter_rx_mode_type type = QED_FILTER_RX_MODE_TYPE_PROMISC;
676 if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
677 type |= QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
679 qede_rx_mode_setting(eth_dev, type);
682 static void qede_promiscuous_disable(struct rte_eth_dev *eth_dev)
684 struct qede_dev *qdev = eth_dev->data->dev_private;
685 struct ecore_dev *edev = &qdev->edev;
687 PMD_INIT_FUNC_TRACE(edev);
689 if (rte_eth_allmulticast_get(eth_dev->data->port_id) == 1)
690 qede_rx_mode_setting(eth_dev,
691 QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC);
693 qede_rx_mode_setting(eth_dev, QED_FILTER_RX_MODE_TYPE_REGULAR);
696 static void qede_poll_sp_sb_cb(void *param)
698 struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
699 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
700 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
703 qede_interrupt_action(ECORE_LEADING_HWFN(edev));
704 qede_interrupt_action(&edev->hwfns[1]);
706 rc = rte_eal_alarm_set(timer_period * US_PER_S,
710 DP_ERR(edev, "Unable to start periodic"
711 " timer rc %d\n", rc);
712 assert(false && "Unable to start periodic timer");
716 static void qede_dev_close(struct rte_eth_dev *eth_dev)
718 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
719 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
722 PMD_INIT_FUNC_TRACE(edev);
724 /* dev_stop() shall cleanup fp resources in hw but without releasing
725 * dma memories and sw structures so that dev_start() can be called
726 * by the app without reconfiguration. However, in dev_close() we
727 * can release all the resources and device can be brought up newly
729 if (qdev->state != QEDE_DEV_STOP)
730 qede_dev_stop(eth_dev);
732 DP_INFO(edev, "Device is already stopped\n");
734 rc = qdev->ops->vport_stop(edev, 0);
736 DP_ERR(edev, "Failed to stop VPORT\n");
738 qede_dealloc_fp_resc(eth_dev);
740 qdev->ops->common->slowpath_stop(edev);
742 qdev->ops->common->remove(edev);
744 rte_intr_disable(ð_dev->pci_dev->intr_handle);
746 rte_intr_callback_unregister(ð_dev->pci_dev->intr_handle,
747 qede_interrupt_handler, (void *)eth_dev);
749 if (edev->num_hwfns > 1)
750 rte_eal_alarm_cancel(qede_poll_sp_sb_cb, (void *)eth_dev);
752 qdev->state = QEDE_DEV_INIT; /* Go back to init state */
756 qede_get_stats(struct rte_eth_dev *eth_dev, struct rte_eth_stats *eth_stats)
758 struct qede_dev *qdev = eth_dev->data->dev_private;
759 struct ecore_dev *edev = &qdev->edev;
760 struct ecore_eth_stats stats;
762 qdev->ops->get_vport_stats(edev, &stats);
765 eth_stats->ipackets = stats.rx_ucast_pkts +
766 stats.rx_mcast_pkts + stats.rx_bcast_pkts;
768 eth_stats->ibytes = stats.rx_ucast_bytes +
769 stats.rx_mcast_bytes + stats.rx_bcast_bytes;
771 eth_stats->ierrors = stats.rx_crc_errors +
772 stats.rx_align_errors +
773 stats.rx_carrier_errors +
774 stats.rx_oversize_packets +
775 stats.rx_jabbers + stats.rx_undersize_packets;
777 eth_stats->rx_nombuf = stats.no_buff_discards;
779 eth_stats->imissed = stats.mftag_filter_discards +
780 stats.mac_filter_discards +
781 stats.no_buff_discards + stats.brb_truncates + stats.brb_discards;
784 eth_stats->opackets = stats.tx_ucast_pkts +
785 stats.tx_mcast_pkts + stats.tx_bcast_pkts;
787 eth_stats->obytes = stats.tx_ucast_bytes +
788 stats.tx_mcast_bytes + stats.tx_bcast_bytes;
790 eth_stats->oerrors = stats.tx_err_drop_pkts;
794 qede_get_xstats_names(__rte_unused struct rte_eth_dev *dev,
795 struct rte_eth_xstat_name *xstats_names, unsigned limit)
797 unsigned int i, stat_cnt = RTE_DIM(qede_xstats_strings);
799 if (xstats_names != NULL)
800 for (i = 0; i < stat_cnt; i++)
801 snprintf(xstats_names[i].name,
802 sizeof(xstats_names[i].name),
804 qede_xstats_strings[i].name);
810 qede_get_xstats(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
813 struct qede_dev *qdev = dev->data->dev_private;
814 struct ecore_dev *edev = &qdev->edev;
815 struct ecore_eth_stats stats;
816 unsigned int num = RTE_DIM(qede_xstats_strings);
821 qdev->ops->get_vport_stats(edev, &stats);
823 for (num = 0; num < n; num++)
824 xstats[num].value = *(u64 *)(((char *)&stats) +
825 qede_xstats_strings[num].offset);
831 qede_reset_xstats(struct rte_eth_dev *dev)
833 struct qede_dev *qdev = dev->data->dev_private;
834 struct ecore_dev *edev = &qdev->edev;
836 ecore_reset_vport_stats(edev);
839 int qede_dev_set_link_state(struct rte_eth_dev *eth_dev, bool link_up)
841 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
842 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
843 struct qed_link_params link_params;
846 DP_INFO(edev, "setting link state %d\n", link_up);
847 memset(&link_params, 0, sizeof(link_params));
848 link_params.link_up = link_up;
849 rc = qdev->ops->common->set_link(edev, &link_params);
850 if (rc != ECORE_SUCCESS)
851 DP_ERR(edev, "Unable to set link state %d\n", link_up);
856 static int qede_dev_set_link_up(struct rte_eth_dev *eth_dev)
858 return qede_dev_set_link_state(eth_dev, true);
861 static int qede_dev_set_link_down(struct rte_eth_dev *eth_dev)
863 return qede_dev_set_link_state(eth_dev, false);
866 static void qede_reset_stats(struct rte_eth_dev *eth_dev)
868 struct qede_dev *qdev = eth_dev->data->dev_private;
869 struct ecore_dev *edev = &qdev->edev;
871 ecore_reset_vport_stats(edev);
874 static void qede_allmulticast_enable(struct rte_eth_dev *eth_dev)
876 enum qed_filter_rx_mode_type type =
877 QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC;
879 if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
880 type |= QED_FILTER_RX_MODE_TYPE_PROMISC;
882 qede_rx_mode_setting(eth_dev, type);
885 static void qede_allmulticast_disable(struct rte_eth_dev *eth_dev)
887 if (rte_eth_promiscuous_get(eth_dev->data->port_id) == 1)
888 qede_rx_mode_setting(eth_dev, QED_FILTER_RX_MODE_TYPE_PROMISC);
890 qede_rx_mode_setting(eth_dev, QED_FILTER_RX_MODE_TYPE_REGULAR);
893 static int qede_flow_ctrl_set(struct rte_eth_dev *eth_dev,
894 struct rte_eth_fc_conf *fc_conf)
896 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
897 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
898 struct qed_link_output current_link;
899 struct qed_link_params params;
901 memset(¤t_link, 0, sizeof(current_link));
902 qdev->ops->common->get_link(edev, ¤t_link);
904 memset(¶ms, 0, sizeof(params));
905 params.override_flags |= QED_LINK_OVERRIDE_PAUSE_CONFIG;
906 if (fc_conf->autoneg) {
907 if (!(current_link.supported_caps & QEDE_SUPPORTED_AUTONEG)) {
908 DP_ERR(edev, "Autoneg not supported\n");
911 params.pause_config |= QED_LINK_PAUSE_AUTONEG_ENABLE;
914 /* Pause is assumed to be supported (SUPPORTED_Pause) */
915 if (fc_conf->mode == RTE_FC_FULL)
916 params.pause_config |= (QED_LINK_PAUSE_TX_ENABLE |
917 QED_LINK_PAUSE_RX_ENABLE);
918 if (fc_conf->mode == RTE_FC_TX_PAUSE)
919 params.pause_config |= QED_LINK_PAUSE_TX_ENABLE;
920 if (fc_conf->mode == RTE_FC_RX_PAUSE)
921 params.pause_config |= QED_LINK_PAUSE_RX_ENABLE;
923 params.link_up = true;
924 (void)qdev->ops->common->set_link(edev, ¶ms);
929 static int qede_flow_ctrl_get(struct rte_eth_dev *eth_dev,
930 struct rte_eth_fc_conf *fc_conf)
932 struct qede_dev *qdev = QEDE_INIT_QDEV(eth_dev);
933 struct ecore_dev *edev = QEDE_INIT_EDEV(qdev);
934 struct qed_link_output current_link;
936 memset(¤t_link, 0, sizeof(current_link));
937 qdev->ops->common->get_link(edev, ¤t_link);
939 if (current_link.pause_config & QED_LINK_PAUSE_AUTONEG_ENABLE)
940 fc_conf->autoneg = true;
942 if (current_link.pause_config & (QED_LINK_PAUSE_RX_ENABLE |
943 QED_LINK_PAUSE_TX_ENABLE))
944 fc_conf->mode = RTE_FC_FULL;
945 else if (current_link.pause_config & QED_LINK_PAUSE_RX_ENABLE)
946 fc_conf->mode = RTE_FC_RX_PAUSE;
947 else if (current_link.pause_config & QED_LINK_PAUSE_TX_ENABLE)
948 fc_conf->mode = RTE_FC_TX_PAUSE;
950 fc_conf->mode = RTE_FC_NONE;
955 static const uint32_t *
956 qede_dev_supported_ptypes_get(struct rte_eth_dev *eth_dev)
958 static const uint32_t ptypes[] = {
964 if (eth_dev->rx_pkt_burst == qede_recv_pkts)
970 int qede_rss_hash_update(struct rte_eth_dev *eth_dev,
971 struct rte_eth_rss_conf *rss_conf)
973 struct qed_update_vport_params vport_update_params;
974 struct qede_dev *qdev = eth_dev->data->dev_private;
975 struct ecore_dev *edev = &qdev->edev;
977 uint32_t *key = (uint32_t *)rss_conf->rss_key;
978 uint64_t hf = rss_conf->rss_hf;
982 DP_ERR(edev, "hash function 0 will disable RSS\n");
985 rss_caps |= (hf & ETH_RSS_IPV4) ? ECORE_RSS_IPV4 : 0;
986 rss_caps |= (hf & ETH_RSS_IPV6) ? ECORE_RSS_IPV6 : 0;
987 rss_caps |= (hf & ETH_RSS_IPV6_EX) ? ECORE_RSS_IPV6 : 0;
988 rss_caps |= (hf & ETH_RSS_NONFRAG_IPV4_TCP) ? ECORE_RSS_IPV4_TCP : 0;
989 rss_caps |= (hf & ETH_RSS_NONFRAG_IPV6_TCP) ? ECORE_RSS_IPV6_TCP : 0;
990 rss_caps |= (hf & ETH_RSS_IPV6_TCP_EX) ? ECORE_RSS_IPV6_TCP : 0;
992 /* If the mapping doesn't fit any supported, return */
993 if (rss_caps == 0 && hf != 0)
996 memset(&vport_update_params, 0, sizeof(vport_update_params));
999 memcpy(qdev->rss_params.rss_key, rss_conf->rss_key,
1000 rss_conf->rss_key_len);
1002 qdev->rss_params.rss_caps = rss_caps;
1003 memcpy(&vport_update_params.rss_params, &qdev->rss_params,
1004 sizeof(vport_update_params.rss_params));
1005 vport_update_params.update_rss_flg = 1;
1006 vport_update_params.vport_id = 0;
1008 return qdev->ops->vport_update(edev, &vport_update_params);
1011 int qede_rss_hash_conf_get(struct rte_eth_dev *eth_dev,
1012 struct rte_eth_rss_conf *rss_conf)
1014 struct qede_dev *qdev = eth_dev->data->dev_private;
1017 if (rss_conf->rss_key_len < sizeof(qdev->rss_params.rss_key))
1020 if (rss_conf->rss_key)
1021 memcpy(rss_conf->rss_key, qdev->rss_params.rss_key,
1022 sizeof(qdev->rss_params.rss_key));
1025 hf |= (qdev->rss_params.rss_caps & ECORE_RSS_IPV4) ?
1027 hf |= (qdev->rss_params.rss_caps & ECORE_RSS_IPV6) ?
1029 hf |= (qdev->rss_params.rss_caps & ECORE_RSS_IPV6) ?
1030 ETH_RSS_IPV6_EX : 0;
1031 hf |= (qdev->rss_params.rss_caps & ECORE_RSS_IPV4_TCP) ?
1032 ETH_RSS_NONFRAG_IPV4_TCP : 0;
1033 hf |= (qdev->rss_params.rss_caps & ECORE_RSS_IPV6_TCP) ?
1034 ETH_RSS_NONFRAG_IPV6_TCP : 0;
1035 hf |= (qdev->rss_params.rss_caps & ECORE_RSS_IPV6_TCP) ?
1036 ETH_RSS_IPV6_TCP_EX : 0;
1038 rss_conf->rss_hf = hf;
1043 int qede_rss_reta_update(struct rte_eth_dev *eth_dev,
1044 struct rte_eth_rss_reta_entry64 *reta_conf,
1047 struct qed_update_vport_params vport_update_params;
1048 struct qede_dev *qdev = eth_dev->data->dev_private;
1049 struct ecore_dev *edev = &qdev->edev;
1050 uint16_t i, idx, shift;
1052 if (reta_size > ETH_RSS_RETA_SIZE_128) {
1053 DP_ERR(edev, "reta_size %d is not supported by hardware\n",
1058 memset(&vport_update_params, 0, sizeof(vport_update_params));
1059 memcpy(&vport_update_params.rss_params, &qdev->rss_params,
1060 sizeof(vport_update_params.rss_params));
1062 for (i = 0; i < reta_size; i++) {
1063 idx = i / RTE_RETA_GROUP_SIZE;
1064 shift = i % RTE_RETA_GROUP_SIZE;
1065 if (reta_conf[idx].mask & (1ULL << shift)) {
1066 uint8_t entry = reta_conf[idx].reta[shift];
1067 qdev->rss_params.rss_ind_table[i] = entry;
1071 vport_update_params.update_rss_flg = 1;
1072 vport_update_params.vport_id = 0;
1074 return qdev->ops->vport_update(edev, &vport_update_params);
1077 int qede_rss_reta_query(struct rte_eth_dev *eth_dev,
1078 struct rte_eth_rss_reta_entry64 *reta_conf,
1081 struct qede_dev *qdev = eth_dev->data->dev_private;
1082 uint16_t i, idx, shift;
1084 if (reta_size > ETH_RSS_RETA_SIZE_128) {
1085 struct ecore_dev *edev = &qdev->edev;
1086 DP_ERR(edev, "reta_size %d is not supported\n",
1090 for (i = 0; i < reta_size; i++) {
1091 idx = i / RTE_RETA_GROUP_SIZE;
1092 shift = i % RTE_RETA_GROUP_SIZE;
1093 if (reta_conf[idx].mask & (1ULL << shift)) {
1094 uint8_t entry = qdev->rss_params.rss_ind_table[i];
1095 reta_conf[idx].reta[shift] = entry;
1102 int qede_set_mtu(struct rte_eth_dev *dev, uint16_t mtu)
1104 uint32_t frame_size;
1105 struct qede_dev *qdev = dev->data->dev_private;
1106 struct rte_eth_dev_info dev_info = {0};
1108 qede_dev_info_get(dev, &dev_info);
1111 frame_size = mtu + ETHER_HDR_LEN + ETHER_CRC_LEN + 4;
1113 if ((mtu < ETHER_MIN_MTU) || (frame_size > dev_info.max_rx_pktlen))
1116 if (!dev->data->scattered_rx &&
1117 frame_size > dev->data->min_rx_buf_size - RTE_PKTMBUF_HEADROOM)
1120 if (frame_size > ETHER_MAX_LEN)
1121 dev->data->dev_conf.rxmode.jumbo_frame = 1;
1123 dev->data->dev_conf.rxmode.jumbo_frame = 0;
1125 /* update max frame size */
1126 dev->data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
1129 qede_dev_start(dev);
1134 static const struct eth_dev_ops qede_eth_dev_ops = {
1135 .dev_configure = qede_dev_configure,
1136 .dev_infos_get = qede_dev_info_get,
1137 .rx_queue_setup = qede_rx_queue_setup,
1138 .rx_queue_release = qede_rx_queue_release,
1139 .tx_queue_setup = qede_tx_queue_setup,
1140 .tx_queue_release = qede_tx_queue_release,
1141 .dev_start = qede_dev_start,
1142 .dev_set_link_up = qede_dev_set_link_up,
1143 .dev_set_link_down = qede_dev_set_link_down,
1144 .link_update = qede_link_update,
1145 .promiscuous_enable = qede_promiscuous_enable,
1146 .promiscuous_disable = qede_promiscuous_disable,
1147 .allmulticast_enable = qede_allmulticast_enable,
1148 .allmulticast_disable = qede_allmulticast_disable,
1149 .dev_stop = qede_dev_stop,
1150 .dev_close = qede_dev_close,
1151 .stats_get = qede_get_stats,
1152 .stats_reset = qede_reset_stats,
1153 .xstats_get = qede_get_xstats,
1154 .xstats_reset = qede_reset_xstats,
1155 .xstats_get_names = qede_get_xstats_names,
1156 .mac_addr_add = qede_mac_addr_add,
1157 .mac_addr_remove = qede_mac_addr_remove,
1158 .mac_addr_set = qede_mac_addr_set,
1159 .vlan_offload_set = qede_vlan_offload_set,
1160 .vlan_filter_set = qede_vlan_filter_set,
1161 .flow_ctrl_set = qede_flow_ctrl_set,
1162 .flow_ctrl_get = qede_flow_ctrl_get,
1163 .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
1164 .rss_hash_update = qede_rss_hash_update,
1165 .rss_hash_conf_get = qede_rss_hash_conf_get,
1166 .reta_update = qede_rss_reta_update,
1167 .reta_query = qede_rss_reta_query,
1168 .mtu_set = qede_set_mtu,
1171 static const struct eth_dev_ops qede_eth_vf_dev_ops = {
1172 .dev_configure = qede_dev_configure,
1173 .dev_infos_get = qede_dev_info_get,
1174 .rx_queue_setup = qede_rx_queue_setup,
1175 .rx_queue_release = qede_rx_queue_release,
1176 .tx_queue_setup = qede_tx_queue_setup,
1177 .tx_queue_release = qede_tx_queue_release,
1178 .dev_start = qede_dev_start,
1179 .dev_set_link_up = qede_dev_set_link_up,
1180 .dev_set_link_down = qede_dev_set_link_down,
1181 .link_update = qede_link_update,
1182 .promiscuous_enable = qede_promiscuous_enable,
1183 .promiscuous_disable = qede_promiscuous_disable,
1184 .allmulticast_enable = qede_allmulticast_enable,
1185 .allmulticast_disable = qede_allmulticast_disable,
1186 .dev_stop = qede_dev_stop,
1187 .dev_close = qede_dev_close,
1188 .stats_get = qede_get_stats,
1189 .stats_reset = qede_reset_stats,
1190 .xstats_get = qede_get_xstats,
1191 .xstats_reset = qede_reset_xstats,
1192 .xstats_get_names = qede_get_xstats_names,
1193 .vlan_offload_set = qede_vlan_offload_set,
1194 .vlan_filter_set = qede_vlan_filter_set,
1195 .dev_supported_ptypes_get = qede_dev_supported_ptypes_get,
1196 .rss_hash_update = qede_rss_hash_update,
1197 .rss_hash_conf_get = qede_rss_hash_conf_get,
1198 .reta_update = qede_rss_reta_update,
1199 .reta_query = qede_rss_reta_query,
1200 .mtu_set = qede_set_mtu,
1203 static void qede_update_pf_params(struct ecore_dev *edev)
1205 struct ecore_pf_params pf_params;
1207 memset(&pf_params, 0, sizeof(struct ecore_pf_params));
1208 pf_params.eth_pf_params.num_cons = 64;
1209 qed_ops->common->update_pf_params(edev, &pf_params);
1212 static int qede_common_dev_init(struct rte_eth_dev *eth_dev, bool is_vf)
1214 struct rte_pci_device *pci_dev;
1215 struct rte_pci_addr pci_addr;
1216 struct qede_dev *adapter;
1217 struct ecore_dev *edev;
1218 struct qed_dev_eth_info dev_info;
1219 struct qed_slowpath_params params;
1221 static bool do_once = true;
1222 uint8_t bulletin_change;
1223 uint8_t vf_mac[ETHER_ADDR_LEN];
1224 uint8_t is_mac_forced;
1226 /* Fix up ecore debug level */
1227 uint32_t dp_module = ~0 & ~ECORE_MSG_HW;
1228 uint8_t dp_level = ECORE_LEVEL_VERBOSE;
1229 uint32_t max_mac_addrs;
1232 /* Extract key data structures */
1233 adapter = eth_dev->data->dev_private;
1234 edev = &adapter->edev;
1235 pci_addr = eth_dev->pci_dev->addr;
1237 PMD_INIT_FUNC_TRACE(edev);
1239 snprintf(edev->name, NAME_SIZE, PCI_SHORT_PRI_FMT ":dpdk-port-%u",
1240 pci_addr.bus, pci_addr.devid, pci_addr.function,
1241 eth_dev->data->port_id);
1243 eth_dev->rx_pkt_burst = qede_recv_pkts;
1244 eth_dev->tx_pkt_burst = qede_xmit_pkts;
1246 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1247 DP_NOTICE(edev, false,
1248 "Skipping device init from secondary process\n");
1252 pci_dev = eth_dev->pci_dev;
1254 rte_eth_copy_pci_info(eth_dev, pci_dev);
1256 qed_ver = qed_get_protocol_version(QED_PROTOCOL_ETH);
1258 qed_ops = qed_get_eth_ops();
1260 DP_ERR(edev, "Failed to get qed_eth_ops_pass\n");
1264 DP_INFO(edev, "Starting qede probe\n");
1266 rc = qed_ops->common->probe(edev, pci_dev, QED_PROTOCOL_ETH,
1267 dp_module, dp_level, is_vf);
1270 DP_ERR(edev, "qede probe failed rc %d\n", rc);
1274 qede_update_pf_params(edev);
1276 rte_intr_callback_register(ð_dev->pci_dev->intr_handle,
1277 qede_interrupt_handler, (void *)eth_dev);
1279 if (rte_intr_enable(ð_dev->pci_dev->intr_handle)) {
1280 DP_ERR(edev, "rte_intr_enable() failed\n");
1284 /* Start the Slowpath-process */
1285 memset(¶ms, 0, sizeof(struct qed_slowpath_params));
1286 params.int_mode = ECORE_INT_MODE_MSIX;
1287 params.drv_major = QEDE_MAJOR_VERSION;
1288 params.drv_minor = QEDE_MINOR_VERSION;
1289 params.drv_rev = QEDE_REVISION_VERSION;
1290 params.drv_eng = QEDE_ENGINEERING_VERSION;
1291 strncpy((char *)params.name, "qede LAN", QED_DRV_VER_STR_SIZE);
1293 /* For CMT mode device do periodic polling for slowpath events.
1294 * This is required since uio device uses only one MSI-x
1295 * interrupt vector but we need one for each engine.
1297 if (edev->num_hwfns > 1) {
1298 rc = rte_eal_alarm_set(timer_period * US_PER_S,
1302 DP_ERR(edev, "Unable to start periodic"
1303 " timer rc %d\n", rc);
1308 rc = qed_ops->common->slowpath_start(edev, ¶ms);
1310 DP_ERR(edev, "Cannot start slowpath rc = %d\n", rc);
1311 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
1316 rc = qed_ops->fill_dev_info(edev, &dev_info);
1318 DP_ERR(edev, "Cannot get device_info rc %d\n", rc);
1319 qed_ops->common->slowpath_stop(edev);
1320 qed_ops->common->remove(edev);
1321 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
1326 qede_alloc_etherdev(adapter, &dev_info);
1328 adapter->ops->common->set_id(edev, edev->name, QEDE_DRV_MODULE_VERSION);
1331 adapter->dev_info.num_mac_addrs =
1332 (uint32_t)RESC_NUM(ECORE_LEADING_HWFN(edev),
1335 ecore_vf_get_num_mac_filters(ECORE_LEADING_HWFN(edev),
1336 &adapter->dev_info.num_mac_addrs);
1338 /* Allocate memory for storing MAC addr */
1339 eth_dev->data->mac_addrs = rte_zmalloc(edev->name,
1341 adapter->dev_info.num_mac_addrs),
1342 RTE_CACHE_LINE_SIZE);
1344 if (eth_dev->data->mac_addrs == NULL) {
1345 DP_ERR(edev, "Failed to allocate MAC address\n");
1346 qed_ops->common->slowpath_stop(edev);
1347 qed_ops->common->remove(edev);
1348 rte_eal_alarm_cancel(qede_poll_sp_sb_cb,
1354 ether_addr_copy((struct ether_addr *)edev->hwfns[0].
1355 hw_info.hw_mac_addr,
1356 ð_dev->data->mac_addrs[0]);
1357 ether_addr_copy(ð_dev->data->mac_addrs[0],
1358 &adapter->primary_mac);
1360 ecore_vf_read_bulletin(ECORE_LEADING_HWFN(edev),
1362 if (bulletin_change) {
1364 ecore_vf_bulletin_get_forced_mac(
1365 ECORE_LEADING_HWFN(edev),
1368 if (is_mac_exist && is_mac_forced) {
1369 DP_INFO(edev, "VF macaddr received from PF\n");
1370 ether_addr_copy((struct ether_addr *)&vf_mac,
1371 ð_dev->data->mac_addrs[0]);
1372 ether_addr_copy(ð_dev->data->mac_addrs[0],
1373 &adapter->primary_mac);
1375 DP_NOTICE(edev, false,
1376 "No VF macaddr assigned\n");
1381 eth_dev->dev_ops = (is_vf) ? &qede_eth_vf_dev_ops : &qede_eth_dev_ops;
1384 qede_print_adapter_info(adapter);
1388 adapter->state = QEDE_DEV_INIT;
1390 DP_NOTICE(edev, false, "MAC address : %02x:%02x:%02x:%02x:%02x:%02x\n",
1391 adapter->primary_mac.addr_bytes[0],
1392 adapter->primary_mac.addr_bytes[1],
1393 adapter->primary_mac.addr_bytes[2],
1394 adapter->primary_mac.addr_bytes[3],
1395 adapter->primary_mac.addr_bytes[4],
1396 adapter->primary_mac.addr_bytes[5]);
1401 static int qedevf_eth_dev_init(struct rte_eth_dev *eth_dev)
1403 return qede_common_dev_init(eth_dev, 1);
1406 static int qede_eth_dev_init(struct rte_eth_dev *eth_dev)
1408 return qede_common_dev_init(eth_dev, 0);
1411 static int qede_dev_common_uninit(struct rte_eth_dev *eth_dev)
1413 /* only uninitialize in the primary process */
1414 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1417 /* safe to close dev here */
1418 qede_dev_close(eth_dev);
1420 eth_dev->dev_ops = NULL;
1421 eth_dev->rx_pkt_burst = NULL;
1422 eth_dev->tx_pkt_burst = NULL;
1424 if (eth_dev->data->mac_addrs)
1425 rte_free(eth_dev->data->mac_addrs);
1427 eth_dev->data->mac_addrs = NULL;
1432 static int qede_eth_dev_uninit(struct rte_eth_dev *eth_dev)
1434 return qede_dev_common_uninit(eth_dev);
1437 static int qedevf_eth_dev_uninit(struct rte_eth_dev *eth_dev)
1439 return qede_dev_common_uninit(eth_dev);
1442 static struct rte_pci_id pci_id_qedevf_map[] = {
1443 #define QEDEVF_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
1445 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_NX2_VF)
1448 QEDEVF_RTE_PCI_DEVICE(PCI_DEVICE_ID_57980S_IOV)
1453 static struct rte_pci_id pci_id_qede_map[] = {
1454 #define QEDE_RTE_PCI_DEVICE(dev) RTE_PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, dev)
1456 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_NX2_57980E)
1459 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_NX2_57980S)
1462 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_57980S_40)
1465 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_57980S_25)
1468 QEDE_RTE_PCI_DEVICE(PCI_DEVICE_ID_57980S_100)
1473 static struct eth_driver rte_qedevf_pmd = {
1475 .id_table = pci_id_qedevf_map,
1477 RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1478 .probe = rte_eth_dev_pci_probe,
1479 .remove = rte_eth_dev_pci_remove,
1481 .eth_dev_init = qedevf_eth_dev_init,
1482 .eth_dev_uninit = qedevf_eth_dev_uninit,
1483 .dev_private_size = sizeof(struct qede_dev),
1486 static struct eth_driver rte_qede_pmd = {
1488 .id_table = pci_id_qede_map,
1490 RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1491 .probe = rte_eth_dev_pci_probe,
1492 .remove = rte_eth_dev_pci_remove,
1494 .eth_dev_init = qede_eth_dev_init,
1495 .eth_dev_uninit = qede_eth_dev_uninit,
1496 .dev_private_size = sizeof(struct qede_dev),
1499 RTE_PMD_REGISTER_PCI(net_qede, rte_qede_pmd.pci_drv);
1500 RTE_PMD_REGISTER_PCI_TABLE(net_qede, pci_id_qede_map);
1501 RTE_PMD_REGISTER_PCI(net_qede_vf, rte_qedevf_pmd.pci_drv);
1502 RTE_PMD_REGISTER_PCI_TABLE(net_qede_vf, pci_id_qedevf_map);