1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2016 Intel Corporation
13 #include <rte_byteorder.h>
14 #include <rte_common.h>
15 #include <rte_cycles.h>
17 #include <rte_interrupts.h>
19 #include <rte_debug.h>
21 #include <rte_bus_pci.h>
22 #include <rte_atomic.h>
23 #include <rte_branch_prediction.h>
24 #include <rte_memory.h>
26 #include <rte_alarm.h>
27 #include <rte_ether.h>
28 #include <rte_ethdev_driver.h>
29 #include <rte_ethdev_pci.h>
30 #include <rte_malloc.h>
33 #include "i40e_logs.h"
34 #include "base/i40e_prototype.h"
35 #include "base/i40e_adminq_cmd.h"
36 #include "base/i40e_type.h"
38 #include "i40e_rxtx.h"
39 #include "i40e_ethdev.h"
42 /* busy wait delay in msec */
43 #define I40EVF_BUSY_WAIT_DELAY 10
44 #define I40EVF_BUSY_WAIT_COUNT 50
45 #define MAX_RESET_WAIT_CNT 20
47 struct i40evf_arq_msg_info {
48 enum virtchnl_ops ops;
49 enum i40e_status_code result;
56 enum virtchnl_ops ops;
58 uint32_t in_args_size;
60 /* Input & output type. pass in buffer size and pass out
61 * actual return result
66 enum i40evf_aq_result {
67 I40EVF_MSG_ERR = -1, /* Meet error when accessing admin queue */
68 I40EVF_MSG_NON, /* Read nothing from admin queue */
69 I40EVF_MSG_SYS, /* Read system msg from admin queue */
70 I40EVF_MSG_CMD, /* Read async command result */
73 static int i40evf_dev_configure(struct rte_eth_dev *dev);
74 static int i40evf_dev_start(struct rte_eth_dev *dev);
75 static void i40evf_dev_stop(struct rte_eth_dev *dev);
76 static void i40evf_dev_info_get(struct rte_eth_dev *dev,
77 struct rte_eth_dev_info *dev_info);
78 static int i40evf_dev_link_update(struct rte_eth_dev *dev,
79 int wait_to_complete);
80 static int i40evf_dev_stats_get(struct rte_eth_dev *dev,
81 struct rte_eth_stats *stats);
82 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
83 struct rte_eth_xstat *xstats, unsigned n);
84 static int i40evf_dev_xstats_get_names(struct rte_eth_dev *dev,
85 struct rte_eth_xstat_name *xstats_names,
87 static void i40evf_dev_xstats_reset(struct rte_eth_dev *dev);
88 static int i40evf_vlan_filter_set(struct rte_eth_dev *dev,
89 uint16_t vlan_id, int on);
90 static int i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
91 static void i40evf_dev_close(struct rte_eth_dev *dev);
92 static int i40evf_dev_reset(struct rte_eth_dev *dev);
93 static void i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev);
94 static void i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev);
95 static void i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev);
96 static void i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev);
97 static int i40evf_init_vlan(struct rte_eth_dev *dev);
98 static int i40evf_dev_rx_queue_start(struct rte_eth_dev *dev,
99 uint16_t rx_queue_id);
100 static int i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev,
101 uint16_t rx_queue_id);
102 static int i40evf_dev_tx_queue_start(struct rte_eth_dev *dev,
103 uint16_t tx_queue_id);
104 static int i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev,
105 uint16_t tx_queue_id);
106 static int i40evf_add_mac_addr(struct rte_eth_dev *dev,
107 struct ether_addr *addr,
110 static void i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index);
111 static int i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
112 struct rte_eth_rss_reta_entry64 *reta_conf,
114 static int i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
115 struct rte_eth_rss_reta_entry64 *reta_conf,
117 static int i40evf_config_rss(struct i40e_vf *vf);
118 static int i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
119 struct rte_eth_rss_conf *rss_conf);
120 static int i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
121 struct rte_eth_rss_conf *rss_conf);
122 static int i40evf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
123 static void i40evf_set_default_mac_addr(struct rte_eth_dev *dev,
124 struct ether_addr *mac_addr);
126 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id);
128 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id);
129 static void i40evf_handle_pf_event(struct rte_eth_dev *dev,
133 /* Default hash key buffer for RSS */
134 static uint32_t rss_key_default[I40E_VFQF_HKEY_MAX_INDEX + 1];
136 struct rte_i40evf_xstats_name_off {
137 char name[RTE_ETH_XSTATS_NAME_SIZE];
141 static const struct rte_i40evf_xstats_name_off rte_i40evf_stats_strings[] = {
142 {"rx_bytes", offsetof(struct i40e_eth_stats, rx_bytes)},
143 {"rx_unicast_packets", offsetof(struct i40e_eth_stats, rx_unicast)},
144 {"rx_multicast_packets", offsetof(struct i40e_eth_stats, rx_multicast)},
145 {"rx_broadcast_packets", offsetof(struct i40e_eth_stats, rx_broadcast)},
146 {"rx_dropped_packets", offsetof(struct i40e_eth_stats, rx_discards)},
147 {"rx_unknown_protocol_packets", offsetof(struct i40e_eth_stats,
148 rx_unknown_protocol)},
149 {"tx_bytes", offsetof(struct i40e_eth_stats, tx_bytes)},
150 {"tx_unicast_packets", offsetof(struct i40e_eth_stats, tx_unicast)},
151 {"tx_multicast_packets", offsetof(struct i40e_eth_stats, tx_multicast)},
152 {"tx_broadcast_packets", offsetof(struct i40e_eth_stats, tx_broadcast)},
153 {"tx_dropped_packets", offsetof(struct i40e_eth_stats, tx_discards)},
154 {"tx_error_packets", offsetof(struct i40e_eth_stats, tx_errors)},
157 #define I40EVF_NB_XSTATS (sizeof(rte_i40evf_stats_strings) / \
158 sizeof(rte_i40evf_stats_strings[0]))
160 static const struct eth_dev_ops i40evf_eth_dev_ops = {
161 .dev_configure = i40evf_dev_configure,
162 .dev_start = i40evf_dev_start,
163 .dev_stop = i40evf_dev_stop,
164 .promiscuous_enable = i40evf_dev_promiscuous_enable,
165 .promiscuous_disable = i40evf_dev_promiscuous_disable,
166 .allmulticast_enable = i40evf_dev_allmulticast_enable,
167 .allmulticast_disable = i40evf_dev_allmulticast_disable,
168 .link_update = i40evf_dev_link_update,
169 .stats_get = i40evf_dev_stats_get,
170 .stats_reset = i40evf_dev_xstats_reset,
171 .xstats_get = i40evf_dev_xstats_get,
172 .xstats_get_names = i40evf_dev_xstats_get_names,
173 .xstats_reset = i40evf_dev_xstats_reset,
174 .dev_close = i40evf_dev_close,
175 .dev_reset = i40evf_dev_reset,
176 .dev_infos_get = i40evf_dev_info_get,
177 .dev_supported_ptypes_get = i40e_dev_supported_ptypes_get,
178 .vlan_filter_set = i40evf_vlan_filter_set,
179 .vlan_offload_set = i40evf_vlan_offload_set,
180 .rx_queue_start = i40evf_dev_rx_queue_start,
181 .rx_queue_stop = i40evf_dev_rx_queue_stop,
182 .tx_queue_start = i40evf_dev_tx_queue_start,
183 .tx_queue_stop = i40evf_dev_tx_queue_stop,
184 .rx_queue_setup = i40e_dev_rx_queue_setup,
185 .rx_queue_release = i40e_dev_rx_queue_release,
186 .rx_queue_intr_enable = i40evf_dev_rx_queue_intr_enable,
187 .rx_queue_intr_disable = i40evf_dev_rx_queue_intr_disable,
188 .rx_descriptor_done = i40e_dev_rx_descriptor_done,
189 .rx_descriptor_status = i40e_dev_rx_descriptor_status,
190 .tx_descriptor_status = i40e_dev_tx_descriptor_status,
191 .tx_queue_setup = i40e_dev_tx_queue_setup,
192 .tx_queue_release = i40e_dev_tx_queue_release,
193 .rx_queue_count = i40e_dev_rx_queue_count,
194 .rxq_info_get = i40e_rxq_info_get,
195 .txq_info_get = i40e_txq_info_get,
196 .mac_addr_add = i40evf_add_mac_addr,
197 .mac_addr_remove = i40evf_del_mac_addr,
198 .reta_update = i40evf_dev_rss_reta_update,
199 .reta_query = i40evf_dev_rss_reta_query,
200 .rss_hash_update = i40evf_dev_rss_hash_update,
201 .rss_hash_conf_get = i40evf_dev_rss_hash_conf_get,
202 .mtu_set = i40evf_dev_mtu_set,
203 .mac_addr_set = i40evf_set_default_mac_addr,
207 * Read data in admin queue to get msg from pf driver
209 static enum i40evf_aq_result
210 i40evf_read_pfmsg(struct rte_eth_dev *dev, struct i40evf_arq_msg_info *data)
212 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
213 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
214 struct i40e_arq_event_info event;
215 enum virtchnl_ops opcode;
216 enum i40e_status_code retval;
218 enum i40evf_aq_result result = I40EVF_MSG_NON;
220 event.buf_len = data->buf_len;
221 event.msg_buf = data->msg;
222 ret = i40e_clean_arq_element(hw, &event, NULL);
223 /* Can't read any msg from adminQ */
225 if (ret != I40E_ERR_ADMIN_QUEUE_NO_WORK)
226 result = I40EVF_MSG_ERR;
230 opcode = (enum virtchnl_ops)rte_le_to_cpu_32(event.desc.cookie_high);
231 retval = (enum i40e_status_code)rte_le_to_cpu_32(event.desc.cookie_low);
233 if (opcode == VIRTCHNL_OP_EVENT) {
234 struct virtchnl_pf_event *vpe =
235 (struct virtchnl_pf_event *)event.msg_buf;
237 result = I40EVF_MSG_SYS;
238 switch (vpe->event) {
239 case VIRTCHNL_EVENT_LINK_CHANGE:
241 vpe->event_data.link_event.link_status;
243 vpe->event_data.link_event.link_speed;
244 vf->pend_msg |= PFMSG_LINK_CHANGE;
245 PMD_DRV_LOG(INFO, "Link status update:%s",
246 vf->link_up ? "up" : "down");
248 case VIRTCHNL_EVENT_RESET_IMPENDING:
250 vf->pend_msg |= PFMSG_RESET_IMPENDING;
251 PMD_DRV_LOG(INFO, "vf is reseting");
253 case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
254 vf->dev_closed = true;
255 vf->pend_msg |= PFMSG_DRIVER_CLOSE;
256 PMD_DRV_LOG(INFO, "PF driver closed");
259 PMD_DRV_LOG(ERR, "%s: Unknown event %d from pf",
260 __func__, vpe->event);
263 /* async reply msg on command issued by vf previously */
264 result = I40EVF_MSG_CMD;
265 /* Actual data length read from PF */
266 data->msg_len = event.msg_len;
269 data->result = retval;
276 * clear current command. Only call in case execute
277 * _atomic_set_cmd successfully.
280 _clear_cmd(struct i40e_vf *vf)
283 vf->pend_cmd = VIRTCHNL_OP_UNKNOWN;
287 * Check there is pending cmd in execution. If none, set new command.
290 _atomic_set_cmd(struct i40e_vf *vf, enum virtchnl_ops ops)
292 int ret = rte_atomic32_cmpset(&vf->pend_cmd,
293 VIRTCHNL_OP_UNKNOWN, ops);
296 PMD_DRV_LOG(ERR, "There is incomplete cmd %d", vf->pend_cmd);
301 #define MAX_TRY_TIMES 200
302 #define ASQ_DELAY_MS 10
305 i40evf_execute_vf_cmd(struct rte_eth_dev *dev, struct vf_cmd_info *args)
307 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
308 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
309 struct i40evf_arq_msg_info info;
310 enum i40evf_aq_result ret;
313 if (_atomic_set_cmd(vf, args->ops))
316 info.msg = args->out_buffer;
317 info.buf_len = args->out_size;
318 info.ops = VIRTCHNL_OP_UNKNOWN;
319 info.result = I40E_SUCCESS;
321 err = i40e_aq_send_msg_to_pf(hw, args->ops, I40E_SUCCESS,
322 args->in_args, args->in_args_size, NULL);
324 PMD_DRV_LOG(ERR, "fail to send cmd %d", args->ops);
330 case VIRTCHNL_OP_RESET_VF:
331 /*no need to process in this function */
334 case VIRTCHNL_OP_VERSION:
335 case VIRTCHNL_OP_GET_VF_RESOURCES:
336 /* for init adminq commands, need to poll the response */
339 ret = i40evf_read_pfmsg(dev, &info);
340 vf->cmd_retval = info.result;
341 if (ret == I40EVF_MSG_CMD) {
344 } else if (ret == I40EVF_MSG_ERR)
346 rte_delay_ms(ASQ_DELAY_MS);
347 /* If don't read msg or read sys event, continue */
348 } while (i++ < MAX_TRY_TIMES);
353 /* for other adminq in running time, waiting the cmd done flag */
356 if (vf->pend_cmd == VIRTCHNL_OP_UNKNOWN) {
360 rte_delay_ms(ASQ_DELAY_MS);
361 /* If don't read msg or read sys event, continue */
362 } while (i++ < MAX_TRY_TIMES);
363 /* If there's no response is received, clear command */
364 if (i >= MAX_TRY_TIMES) {
365 PMD_DRV_LOG(WARNING, "No response for %d", args->ops);
371 return err | vf->cmd_retval;
375 * Check API version with sync wait until version read or fail from admin queue
378 i40evf_check_api_version(struct rte_eth_dev *dev)
380 struct virtchnl_version_info version, *pver;
382 struct vf_cmd_info args;
383 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
385 version.major = VIRTCHNL_VERSION_MAJOR;
386 version.minor = VIRTCHNL_VERSION_MINOR;
388 args.ops = VIRTCHNL_OP_VERSION;
389 args.in_args = (uint8_t *)&version;
390 args.in_args_size = sizeof(version);
391 args.out_buffer = vf->aq_resp;
392 args.out_size = I40E_AQ_BUF_SZ;
394 err = i40evf_execute_vf_cmd(dev, &args);
396 PMD_INIT_LOG(ERR, "fail to execute command OP_VERSION");
400 pver = (struct virtchnl_version_info *)args.out_buffer;
401 vf->version_major = pver->major;
402 vf->version_minor = pver->minor;
403 if ((vf->version_major == VIRTCHNL_VERSION_MAJOR) &&
404 (vf->version_minor <= VIRTCHNL_VERSION_MINOR))
405 PMD_DRV_LOG(INFO, "Peer is Linux PF host");
407 PMD_INIT_LOG(ERR, "PF/VF API version mismatch:(%u.%u)-(%u.%u)",
408 vf->version_major, vf->version_minor,
409 VIRTCHNL_VERSION_MAJOR,
410 VIRTCHNL_VERSION_MINOR);
418 i40evf_get_vf_resource(struct rte_eth_dev *dev)
420 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
421 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
423 struct vf_cmd_info args;
426 args.ops = VIRTCHNL_OP_GET_VF_RESOURCES;
427 args.out_buffer = vf->aq_resp;
428 args.out_size = I40E_AQ_BUF_SZ;
430 caps = VIRTCHNL_VF_OFFLOAD_L2 |
431 VIRTCHNL_VF_OFFLOAD_RSS_AQ |
432 VIRTCHNL_VF_OFFLOAD_RSS_REG |
433 VIRTCHNL_VF_OFFLOAD_VLAN |
434 VIRTCHNL_VF_OFFLOAD_RX_POLLING;
435 args.in_args = (uint8_t *)∩︀
436 args.in_args_size = sizeof(caps);
439 args.in_args_size = 0;
441 err = i40evf_execute_vf_cmd(dev, &args);
444 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_VF_RESOURCE");
448 len = sizeof(struct virtchnl_vf_resource) +
449 I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource);
451 rte_memcpy(vf->vf_res, args.out_buffer,
452 RTE_MIN(args.out_size, len));
453 i40e_vf_parse_hw_config(hw, vf->vf_res);
459 i40evf_config_promisc(struct rte_eth_dev *dev,
461 bool enable_multicast)
463 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
465 struct vf_cmd_info args;
466 struct virtchnl_promisc_info promisc;
469 promisc.vsi_id = vf->vsi_res->vsi_id;
472 promisc.flags |= FLAG_VF_UNICAST_PROMISC;
474 if (enable_multicast)
475 promisc.flags |= FLAG_VF_MULTICAST_PROMISC;
477 args.ops = VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE;
478 args.in_args = (uint8_t *)&promisc;
479 args.in_args_size = sizeof(promisc);
480 args.out_buffer = vf->aq_resp;
481 args.out_size = I40E_AQ_BUF_SZ;
483 err = i40evf_execute_vf_cmd(dev, &args);
486 PMD_DRV_LOG(ERR, "fail to execute command "
487 "CONFIG_PROMISCUOUS_MODE");
492 i40evf_enable_vlan_strip(struct rte_eth_dev *dev)
494 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
495 struct vf_cmd_info args;
498 memset(&args, 0, sizeof(args));
499 args.ops = VIRTCHNL_OP_ENABLE_VLAN_STRIPPING;
501 args.in_args_size = 0;
502 args.out_buffer = vf->aq_resp;
503 args.out_size = I40E_AQ_BUF_SZ;
504 ret = i40evf_execute_vf_cmd(dev, &args);
506 PMD_DRV_LOG(ERR, "Failed to execute command of "
507 "VIRTCHNL_OP_ENABLE_VLAN_STRIPPING");
513 i40evf_disable_vlan_strip(struct rte_eth_dev *dev)
515 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
516 struct vf_cmd_info args;
519 memset(&args, 0, sizeof(args));
520 args.ops = VIRTCHNL_OP_DISABLE_VLAN_STRIPPING;
522 args.in_args_size = 0;
523 args.out_buffer = vf->aq_resp;
524 args.out_size = I40E_AQ_BUF_SZ;
525 ret = i40evf_execute_vf_cmd(dev, &args);
527 PMD_DRV_LOG(ERR, "Failed to execute command of "
528 "VIRTCHNL_OP_DISABLE_VLAN_STRIPPING");
534 i40evf_fill_virtchnl_vsi_txq_info(struct virtchnl_txq_info *txq_info,
538 struct i40e_tx_queue *txq)
540 txq_info->vsi_id = vsi_id;
541 txq_info->queue_id = queue_id;
542 if (queue_id < nb_txq) {
543 txq_info->ring_len = txq->nb_tx_desc;
544 txq_info->dma_ring_addr = txq->tx_ring_phys_addr;
549 i40evf_fill_virtchnl_vsi_rxq_info(struct virtchnl_rxq_info *rxq_info,
553 uint32_t max_pkt_size,
554 struct i40e_rx_queue *rxq)
556 rxq_info->vsi_id = vsi_id;
557 rxq_info->queue_id = queue_id;
558 rxq_info->max_pkt_size = max_pkt_size;
559 if (queue_id < nb_rxq) {
560 rxq_info->ring_len = rxq->nb_rx_desc;
561 rxq_info->dma_ring_addr = rxq->rx_ring_phys_addr;
562 rxq_info->databuffer_size =
563 (rte_pktmbuf_data_room_size(rxq->mp) -
564 RTE_PKTMBUF_HEADROOM);
569 i40evf_configure_vsi_queues(struct rte_eth_dev *dev)
571 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
572 struct i40e_rx_queue **rxq =
573 (struct i40e_rx_queue **)dev->data->rx_queues;
574 struct i40e_tx_queue **txq =
575 (struct i40e_tx_queue **)dev->data->tx_queues;
576 struct virtchnl_vsi_queue_config_info *vc_vqci;
577 struct virtchnl_queue_pair_info *vc_qpi;
578 struct vf_cmd_info args;
579 uint16_t i, nb_qp = vf->num_queue_pairs;
580 const uint32_t size =
581 I40E_VIRTCHNL_CONFIG_VSI_QUEUES_SIZE(vc_vqci, nb_qp);
585 memset(buff, 0, sizeof(buff));
586 vc_vqci = (struct virtchnl_vsi_queue_config_info *)buff;
587 vc_vqci->vsi_id = vf->vsi_res->vsi_id;
588 vc_vqci->num_queue_pairs = nb_qp;
590 for (i = 0, vc_qpi = vc_vqci->qpair; i < nb_qp; i++, vc_qpi++) {
591 i40evf_fill_virtchnl_vsi_txq_info(&vc_qpi->txq,
592 vc_vqci->vsi_id, i, dev->data->nb_tx_queues, txq[i]);
593 i40evf_fill_virtchnl_vsi_rxq_info(&vc_qpi->rxq,
594 vc_vqci->vsi_id, i, dev->data->nb_rx_queues,
595 vf->max_pkt_len, rxq[i]);
597 memset(&args, 0, sizeof(args));
598 args.ops = VIRTCHNL_OP_CONFIG_VSI_QUEUES;
599 args.in_args = (uint8_t *)vc_vqci;
600 args.in_args_size = size;
601 args.out_buffer = vf->aq_resp;
602 args.out_size = I40E_AQ_BUF_SZ;
603 ret = i40evf_execute_vf_cmd(dev, &args);
605 PMD_DRV_LOG(ERR, "Failed to execute command of "
606 "VIRTCHNL_OP_CONFIG_VSI_QUEUES");
612 i40evf_config_irq_map(struct rte_eth_dev *dev)
614 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
615 struct vf_cmd_info args;
616 uint8_t cmd_buffer[sizeof(struct virtchnl_irq_map_info) + \
617 sizeof(struct virtchnl_vector_map)];
618 struct virtchnl_irq_map_info *map_info;
619 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
620 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
624 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
625 rte_intr_allow_others(intr_handle))
626 vector_id = I40E_RX_VEC_START;
628 vector_id = I40E_MISC_VEC_ID;
630 map_info = (struct virtchnl_irq_map_info *)cmd_buffer;
631 map_info->num_vectors = 1;
632 map_info->vecmap[0].rxitr_idx = I40E_ITR_INDEX_DEFAULT;
633 map_info->vecmap[0].vsi_id = vf->vsi_res->vsi_id;
634 /* Alway use default dynamic MSIX interrupt */
635 map_info->vecmap[0].vector_id = vector_id;
636 /* Don't map any tx queue */
637 map_info->vecmap[0].txq_map = 0;
638 map_info->vecmap[0].rxq_map = 0;
639 for (i = 0; i < dev->data->nb_rx_queues; i++) {
640 map_info->vecmap[0].rxq_map |= 1 << i;
641 if (rte_intr_dp_is_en(intr_handle))
642 intr_handle->intr_vec[i] = vector_id;
645 args.ops = VIRTCHNL_OP_CONFIG_IRQ_MAP;
646 args.in_args = (u8 *)cmd_buffer;
647 args.in_args_size = sizeof(cmd_buffer);
648 args.out_buffer = vf->aq_resp;
649 args.out_size = I40E_AQ_BUF_SZ;
650 err = i40evf_execute_vf_cmd(dev, &args);
652 PMD_DRV_LOG(ERR, "fail to execute command OP_ENABLE_QUEUES");
658 i40evf_switch_queue(struct rte_eth_dev *dev, bool isrx, uint16_t qid,
661 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
662 struct virtchnl_queue_select queue_select;
664 struct vf_cmd_info args;
665 memset(&queue_select, 0, sizeof(queue_select));
666 queue_select.vsi_id = vf->vsi_res->vsi_id;
669 queue_select.rx_queues |= 1 << qid;
671 queue_select.tx_queues |= 1 << qid;
674 args.ops = VIRTCHNL_OP_ENABLE_QUEUES;
676 args.ops = VIRTCHNL_OP_DISABLE_QUEUES;
677 args.in_args = (u8 *)&queue_select;
678 args.in_args_size = sizeof(queue_select);
679 args.out_buffer = vf->aq_resp;
680 args.out_size = I40E_AQ_BUF_SZ;
681 err = i40evf_execute_vf_cmd(dev, &args);
683 PMD_DRV_LOG(ERR, "fail to switch %s %u %s",
684 isrx ? "RX" : "TX", qid, on ? "on" : "off");
690 i40evf_start_queues(struct rte_eth_dev *dev)
692 struct rte_eth_dev_data *dev_data = dev->data;
694 struct i40e_rx_queue *rxq;
695 struct i40e_tx_queue *txq;
697 for (i = 0; i < dev->data->nb_rx_queues; i++) {
698 rxq = dev_data->rx_queues[i];
699 if (rxq->rx_deferred_start)
701 if (i40evf_dev_rx_queue_start(dev, i) != 0) {
702 PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
707 for (i = 0; i < dev->data->nb_tx_queues; i++) {
708 txq = dev_data->tx_queues[i];
709 if (txq->tx_deferred_start)
711 if (i40evf_dev_tx_queue_start(dev, i) != 0) {
712 PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
721 i40evf_stop_queues(struct rte_eth_dev *dev)
725 /* Stop TX queues first */
726 for (i = 0; i < dev->data->nb_tx_queues; i++) {
727 if (i40evf_dev_tx_queue_stop(dev, i) != 0) {
728 PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
733 /* Then stop RX queues */
734 for (i = 0; i < dev->data->nb_rx_queues; i++) {
735 if (i40evf_dev_rx_queue_stop(dev, i) != 0) {
736 PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
745 i40evf_add_mac_addr(struct rte_eth_dev *dev,
746 struct ether_addr *addr,
747 __rte_unused uint32_t index,
748 __rte_unused uint32_t pool)
750 struct virtchnl_ether_addr_list *list;
751 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
752 uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) + \
753 sizeof(struct virtchnl_ether_addr)];
755 struct vf_cmd_info args;
757 if (is_zero_ether_addr(addr)) {
758 PMD_DRV_LOG(ERR, "Invalid mac:%x:%x:%x:%x:%x:%x",
759 addr->addr_bytes[0], addr->addr_bytes[1],
760 addr->addr_bytes[2], addr->addr_bytes[3],
761 addr->addr_bytes[4], addr->addr_bytes[5]);
762 return I40E_ERR_INVALID_MAC_ADDR;
765 list = (struct virtchnl_ether_addr_list *)cmd_buffer;
766 list->vsi_id = vf->vsi_res->vsi_id;
767 list->num_elements = 1;
768 rte_memcpy(list->list[0].addr, addr->addr_bytes,
769 sizeof(addr->addr_bytes));
771 args.ops = VIRTCHNL_OP_ADD_ETH_ADDR;
772 args.in_args = cmd_buffer;
773 args.in_args_size = sizeof(cmd_buffer);
774 args.out_buffer = vf->aq_resp;
775 args.out_size = I40E_AQ_BUF_SZ;
776 err = i40evf_execute_vf_cmd(dev, &args);
778 PMD_DRV_LOG(ERR, "fail to execute command "
779 "OP_ADD_ETHER_ADDRESS");
787 i40evf_del_mac_addr_by_addr(struct rte_eth_dev *dev,
788 struct ether_addr *addr)
790 struct virtchnl_ether_addr_list *list;
791 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
792 uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) + \
793 sizeof(struct virtchnl_ether_addr)];
795 struct vf_cmd_info args;
797 if (i40e_validate_mac_addr(addr->addr_bytes) != I40E_SUCCESS) {
798 PMD_DRV_LOG(ERR, "Invalid mac:%x-%x-%x-%x-%x-%x",
799 addr->addr_bytes[0], addr->addr_bytes[1],
800 addr->addr_bytes[2], addr->addr_bytes[3],
801 addr->addr_bytes[4], addr->addr_bytes[5]);
805 list = (struct virtchnl_ether_addr_list *)cmd_buffer;
806 list->vsi_id = vf->vsi_res->vsi_id;
807 list->num_elements = 1;
808 rte_memcpy(list->list[0].addr, addr->addr_bytes,
809 sizeof(addr->addr_bytes));
811 args.ops = VIRTCHNL_OP_DEL_ETH_ADDR;
812 args.in_args = cmd_buffer;
813 args.in_args_size = sizeof(cmd_buffer);
814 args.out_buffer = vf->aq_resp;
815 args.out_size = I40E_AQ_BUF_SZ;
816 err = i40evf_execute_vf_cmd(dev, &args);
818 PMD_DRV_LOG(ERR, "fail to execute command "
819 "OP_DEL_ETHER_ADDRESS");
826 i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index)
828 struct rte_eth_dev_data *data = dev->data;
829 struct ether_addr *addr;
831 addr = &data->mac_addrs[index];
833 i40evf_del_mac_addr_by_addr(dev, addr);
837 i40evf_query_stats(struct rte_eth_dev *dev, struct i40e_eth_stats **pstats)
839 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
840 struct virtchnl_queue_select q_stats;
842 struct vf_cmd_info args;
844 memset(&q_stats, 0, sizeof(q_stats));
845 q_stats.vsi_id = vf->vsi_res->vsi_id;
846 args.ops = VIRTCHNL_OP_GET_STATS;
847 args.in_args = (u8 *)&q_stats;
848 args.in_args_size = sizeof(q_stats);
849 args.out_buffer = vf->aq_resp;
850 args.out_size = I40E_AQ_BUF_SZ;
852 err = i40evf_execute_vf_cmd(dev, &args);
854 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_STATS");
858 *pstats = (struct i40e_eth_stats *)args.out_buffer;
863 i40evf_stat_update_48(uint64_t *offset,
866 if (*stat >= *offset)
867 *stat = *stat - *offset;
869 *stat = (uint64_t)((*stat +
870 ((uint64_t)1 << I40E_48_BIT_WIDTH)) - *offset);
872 *stat &= I40E_48_BIT_MASK;
876 i40evf_stat_update_32(uint64_t *offset,
879 if (*stat >= *offset)
880 *stat = (uint64_t)(*stat - *offset);
882 *stat = (uint64_t)((*stat +
883 ((uint64_t)1 << I40E_32_BIT_WIDTH)) - *offset);
887 i40evf_update_stats(struct i40e_vsi *vsi,
888 struct i40e_eth_stats *nes)
890 struct i40e_eth_stats *oes = &vsi->eth_stats_offset;
892 i40evf_stat_update_48(&oes->rx_bytes,
894 i40evf_stat_update_48(&oes->rx_unicast,
896 i40evf_stat_update_48(&oes->rx_multicast,
898 i40evf_stat_update_48(&oes->rx_broadcast,
900 i40evf_stat_update_32(&oes->rx_discards,
902 i40evf_stat_update_32(&oes->rx_unknown_protocol,
903 &nes->rx_unknown_protocol);
904 i40evf_stat_update_48(&oes->tx_bytes,
906 i40evf_stat_update_48(&oes->tx_unicast,
908 i40evf_stat_update_48(&oes->tx_multicast,
910 i40evf_stat_update_48(&oes->tx_broadcast,
912 i40evf_stat_update_32(&oes->tx_errors, &nes->tx_errors);
913 i40evf_stat_update_32(&oes->tx_discards, &nes->tx_discards);
917 i40evf_dev_xstats_reset(struct rte_eth_dev *dev)
920 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
921 struct i40e_eth_stats *pstats = NULL;
923 /* read stat values to clear hardware registers */
924 ret = i40evf_query_stats(dev, &pstats);
926 /* set stats offset base on current values */
928 vf->vsi.eth_stats_offset = *pstats;
931 static int i40evf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
932 struct rte_eth_xstat_name *xstats_names,
933 __rte_unused unsigned limit)
937 if (xstats_names != NULL)
938 for (i = 0; i < I40EVF_NB_XSTATS; i++) {
939 snprintf(xstats_names[i].name,
940 sizeof(xstats_names[i].name),
941 "%s", rte_i40evf_stats_strings[i].name);
943 return I40EVF_NB_XSTATS;
946 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
947 struct rte_eth_xstat *xstats, unsigned n)
951 struct i40e_eth_stats *pstats = NULL;
952 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
953 struct i40e_vsi *vsi = &vf->vsi;
955 if (n < I40EVF_NB_XSTATS)
956 return I40EVF_NB_XSTATS;
958 ret = i40evf_query_stats(dev, &pstats);
965 i40evf_update_stats(vsi, pstats);
967 /* loop over xstats array and values from pstats */
968 for (i = 0; i < I40EVF_NB_XSTATS; i++) {
970 xstats[i].value = *(uint64_t *)(((char *)pstats) +
971 rte_i40evf_stats_strings[i].offset);
974 return I40EVF_NB_XSTATS;
978 i40evf_add_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
980 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
981 struct virtchnl_vlan_filter_list *vlan_list;
982 uint8_t cmd_buffer[sizeof(struct virtchnl_vlan_filter_list) +
985 struct vf_cmd_info args;
987 vlan_list = (struct virtchnl_vlan_filter_list *)cmd_buffer;
988 vlan_list->vsi_id = vf->vsi_res->vsi_id;
989 vlan_list->num_elements = 1;
990 vlan_list->vlan_id[0] = vlanid;
992 args.ops = VIRTCHNL_OP_ADD_VLAN;
993 args.in_args = (u8 *)&cmd_buffer;
994 args.in_args_size = sizeof(cmd_buffer);
995 args.out_buffer = vf->aq_resp;
996 args.out_size = I40E_AQ_BUF_SZ;
997 err = i40evf_execute_vf_cmd(dev, &args);
999 PMD_DRV_LOG(ERR, "fail to execute command OP_ADD_VLAN");
1005 i40evf_del_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
1007 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1008 struct virtchnl_vlan_filter_list *vlan_list;
1009 uint8_t cmd_buffer[sizeof(struct virtchnl_vlan_filter_list) +
1012 struct vf_cmd_info args;
1014 vlan_list = (struct virtchnl_vlan_filter_list *)cmd_buffer;
1015 vlan_list->vsi_id = vf->vsi_res->vsi_id;
1016 vlan_list->num_elements = 1;
1017 vlan_list->vlan_id[0] = vlanid;
1019 args.ops = VIRTCHNL_OP_DEL_VLAN;
1020 args.in_args = (u8 *)&cmd_buffer;
1021 args.in_args_size = sizeof(cmd_buffer);
1022 args.out_buffer = vf->aq_resp;
1023 args.out_size = I40E_AQ_BUF_SZ;
1024 err = i40evf_execute_vf_cmd(dev, &args);
1026 PMD_DRV_LOG(ERR, "fail to execute command OP_DEL_VLAN");
1031 static const struct rte_pci_id pci_id_i40evf_map[] = {
1032 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF) },
1033 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF_HV) },
1034 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_A0_VF) },
1035 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_VF) },
1036 { .vendor_id = 0, /* sentinel */ },
1040 i40evf_dev_atomic_write_link_status(struct rte_eth_dev *dev,
1041 struct rte_eth_link *link)
1043 struct rte_eth_link *dst = &(dev->data->dev_link);
1044 struct rte_eth_link *src = link;
1046 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
1047 *(uint64_t *)src) == 0)
1055 i40evf_disable_irq0(struct i40e_hw *hw)
1057 /* Disable all interrupt types */
1058 I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, 0);
1059 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1060 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1061 I40EVF_WRITE_FLUSH(hw);
1066 i40evf_enable_irq0(struct i40e_hw *hw)
1068 /* Enable admin queue interrupt trigger */
1071 i40evf_disable_irq0(hw);
1072 val = I40E_READ_REG(hw, I40E_VFINT_ICR0_ENA1);
1073 val |= I40E_VFINT_ICR0_ENA1_ADMINQ_MASK |
1074 I40E_VFINT_ICR0_ENA1_LINK_STAT_CHANGE_MASK;
1075 I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, val);
1077 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1078 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1079 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1080 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1082 I40EVF_WRITE_FLUSH(hw);
1086 i40evf_check_vf_reset_done(struct i40e_hw *hw)
1090 for (i = 0; i < MAX_RESET_WAIT_CNT; i++) {
1091 reset = I40E_READ_REG(hw, I40E_VFGEN_RSTAT) &
1092 I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1093 reset = reset >> I40E_VFGEN_RSTAT_VFR_STATE_SHIFT;
1094 if (reset == VIRTCHNL_VFR_VFACTIVE ||
1095 reset == VIRTCHNL_VFR_COMPLETED)
1100 if (i >= MAX_RESET_WAIT_CNT)
1106 i40evf_reset_vf(struct i40e_hw *hw)
1110 if (i40e_vf_reset(hw) != I40E_SUCCESS) {
1111 PMD_INIT_LOG(ERR, "Reset VF NIC failed");
1115 * After issuing vf reset command to pf, pf won't necessarily
1116 * reset vf, it depends on what state it exactly is. If it's not
1117 * initialized yet, it won't have vf reset since it's in a certain
1118 * state. If not, it will try to reset. Even vf is reset, pf will
1119 * set I40E_VFGEN_RSTAT to COMPLETE first, then wait 10ms and set
1120 * it to ACTIVE. In this duration, vf may not catch the moment that
1121 * COMPLETE is set. So, for vf, we'll try to wait a long time.
1125 ret = i40evf_check_vf_reset_done(hw);
1127 PMD_INIT_LOG(ERR, "VF is still resetting");
1135 i40evf_init_vf(struct rte_eth_dev *dev)
1138 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1139 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1141 i40e_calc_itr_interval(RTE_LIBRTE_I40E_ITR_INTERVAL, 0);
1143 vf->adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1144 vf->dev_data = dev->data;
1145 err = i40e_set_mac_type(hw);
1147 PMD_INIT_LOG(ERR, "set_mac_type failed: %d", err);
1151 err = i40evf_check_vf_reset_done(hw);
1155 i40e_init_adminq_parameter(hw);
1156 err = i40e_init_adminq(hw);
1158 PMD_INIT_LOG(ERR, "init_adminq failed: %d", err);
1162 /* Reset VF and wait until it's complete */
1163 if (i40evf_reset_vf(hw)) {
1164 PMD_INIT_LOG(ERR, "reset NIC failed");
1168 /* VF reset, shutdown admin queue and initialize again */
1169 if (i40e_shutdown_adminq(hw) != I40E_SUCCESS) {
1170 PMD_INIT_LOG(ERR, "i40e_shutdown_adminq failed");
1174 i40e_init_adminq_parameter(hw);
1175 if (i40e_init_adminq(hw) != I40E_SUCCESS) {
1176 PMD_INIT_LOG(ERR, "init_adminq failed");
1180 vf->aq_resp = rte_zmalloc("vf_aq_resp", I40E_AQ_BUF_SZ, 0);
1182 PMD_INIT_LOG(ERR, "unable to allocate vf_aq_resp memory");
1185 if (i40evf_check_api_version(dev) != 0) {
1186 PMD_INIT_LOG(ERR, "check_api version failed");
1189 bufsz = sizeof(struct virtchnl_vf_resource) +
1190 (I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource));
1191 vf->vf_res = rte_zmalloc("vf_res", bufsz, 0);
1193 PMD_INIT_LOG(ERR, "unable to allocate vf_res memory");
1197 if (i40evf_get_vf_resource(dev) != 0) {
1198 PMD_INIT_LOG(ERR, "i40evf_get_vf_config failed");
1202 /* got VF config message back from PF, now we can parse it */
1203 for (i = 0; i < vf->vf_res->num_vsis; i++) {
1204 if (vf->vf_res->vsi_res[i].vsi_type == VIRTCHNL_VSI_SRIOV)
1205 vf->vsi_res = &vf->vf_res->vsi_res[i];
1209 PMD_INIT_LOG(ERR, "no LAN VSI found");
1213 if (hw->mac.type == I40E_MAC_X722_VF)
1214 vf->flags = I40E_FLAG_RSS_AQ_CAPABLE;
1215 vf->vsi.vsi_id = vf->vsi_res->vsi_id;
1217 switch (vf->vsi_res->vsi_type) {
1218 case VIRTCHNL_VSI_SRIOV:
1219 vf->vsi.type = I40E_VSI_SRIOV;
1222 vf->vsi.type = I40E_VSI_TYPE_UNKNOWN;
1225 vf->vsi.nb_qps = vf->vsi_res->num_queue_pairs;
1226 vf->vsi.adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1228 /* Store the MAC address configured by host, or generate random one */
1229 if (is_valid_assigned_ether_addr((struct ether_addr *)hw->mac.addr))
1230 vf->flags |= I40E_FLAG_VF_MAC_BY_PF;
1232 eth_random_addr(hw->mac.addr); /* Generate a random one */
1234 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1235 (I40E_ITR_INDEX_DEFAULT <<
1236 I40E_VFINT_DYN_CTL0_ITR_INDX_SHIFT) |
1238 I40E_VFINT_DYN_CTL0_INTERVAL_SHIFT));
1239 I40EVF_WRITE_FLUSH(hw);
1244 rte_free(vf->vf_res);
1247 rte_free(vf->aq_resp);
1249 i40e_shutdown_adminq(hw); /* ignore error */
1255 i40evf_uninit_vf(struct rte_eth_dev *dev)
1257 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1258 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1260 PMD_INIT_FUNC_TRACE();
1262 if (hw->adapter_stopped == 0)
1263 i40evf_dev_close(dev);
1264 rte_free(vf->vf_res);
1266 rte_free(vf->aq_resp);
1273 i40evf_handle_pf_event(struct rte_eth_dev *dev, uint8_t *msg,
1274 __rte_unused uint16_t msglen)
1276 struct virtchnl_pf_event *pf_msg =
1277 (struct virtchnl_pf_event *)msg;
1278 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1280 switch (pf_msg->event) {
1281 case VIRTCHNL_EVENT_RESET_IMPENDING:
1282 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_RESET_IMPENDING event");
1283 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
1286 case VIRTCHNL_EVENT_LINK_CHANGE:
1287 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_LINK_CHANGE event");
1288 vf->link_up = pf_msg->event_data.link_event.link_status;
1289 vf->link_speed = pf_msg->event_data.link_event.link_speed;
1291 case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
1292 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_PF_DRIVER_CLOSE event");
1295 PMD_DRV_LOG(ERR, " unknown event received %u", pf_msg->event);
1301 i40evf_handle_aq_msg(struct rte_eth_dev *dev)
1303 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1304 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1305 struct i40e_arq_event_info info;
1306 uint16_t pending, aq_opc;
1307 enum virtchnl_ops msg_opc;
1308 enum i40e_status_code msg_ret;
1311 info.buf_len = I40E_AQ_BUF_SZ;
1313 PMD_DRV_LOG(ERR, "Buffer for adminq resp should not be NULL");
1316 info.msg_buf = vf->aq_resp;
1320 ret = i40e_clean_arq_element(hw, &info, &pending);
1322 if (ret != I40E_SUCCESS) {
1323 PMD_DRV_LOG(INFO, "Failed to read msg from AdminQ,"
1327 aq_opc = rte_le_to_cpu_16(info.desc.opcode);
1328 /* For the message sent from pf to vf, opcode is stored in
1329 * cookie_high of struct i40e_aq_desc, while return error code
1330 * are stored in cookie_low, Which is done by
1331 * i40e_aq_send_msg_to_vf in PF driver.*/
1332 msg_opc = (enum virtchnl_ops)rte_le_to_cpu_32(
1333 info.desc.cookie_high);
1334 msg_ret = (enum i40e_status_code)rte_le_to_cpu_32(
1335 info.desc.cookie_low);
1337 case i40e_aqc_opc_send_msg_to_vf:
1338 if (msg_opc == VIRTCHNL_OP_EVENT)
1340 i40evf_handle_pf_event(dev, info.msg_buf,
1343 /* read message and it's expected one */
1344 if (msg_opc == vf->pend_cmd) {
1345 vf->cmd_retval = msg_ret;
1346 /* prevent compiler reordering */
1347 rte_compiler_barrier();
1350 PMD_DRV_LOG(ERR, "command mismatch,"
1351 "expect %u, get %u",
1352 vf->pend_cmd, msg_opc);
1353 PMD_DRV_LOG(DEBUG, "adminq response is received,"
1354 " opcode = %d", msg_opc);
1358 PMD_DRV_LOG(ERR, "Request %u is not supported yet",
1366 * Interrupt handler triggered by NIC for handling
1367 * specific interrupt. Only adminq interrupt is processed in VF.
1370 * Pointer to interrupt handle.
1372 * The address of parameter (struct rte_eth_dev *) regsitered before.
1378 i40evf_dev_interrupt_handler(void *param)
1380 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1381 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1384 i40evf_disable_irq0(hw);
1386 /* read out interrupt causes */
1387 icr0 = I40E_READ_REG(hw, I40E_VFINT_ICR01);
1389 /* No interrupt event indicated */
1390 if (!(icr0 & I40E_VFINT_ICR01_INTEVENT_MASK)) {
1391 PMD_DRV_LOG(DEBUG, "No interrupt event, nothing to do");
1395 if (icr0 & I40E_VFINT_ICR01_ADMINQ_MASK) {
1396 PMD_DRV_LOG(DEBUG, "ICR01_ADMINQ is reported");
1397 i40evf_handle_aq_msg(dev);
1400 /* Link Status Change interrupt */
1401 if (icr0 & I40E_VFINT_ICR01_LINK_STAT_CHANGE_MASK)
1402 PMD_DRV_LOG(DEBUG, "LINK_STAT_CHANGE is reported,"
1406 i40evf_enable_irq0(hw);
1410 i40evf_dev_init(struct rte_eth_dev *eth_dev)
1413 = I40E_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1414 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1416 PMD_INIT_FUNC_TRACE();
1418 /* assign ops func pointer */
1419 eth_dev->dev_ops = &i40evf_eth_dev_ops;
1420 eth_dev->rx_pkt_burst = &i40e_recv_pkts;
1421 eth_dev->tx_pkt_burst = &i40e_xmit_pkts;
1424 * For secondary processes, we don't initialise any further as primary
1425 * has already done this work.
1427 if (rte_eal_process_type() != RTE_PROC_PRIMARY){
1428 i40e_set_rx_function(eth_dev);
1429 i40e_set_tx_function(eth_dev);
1432 i40e_set_default_ptype_table(eth_dev);
1433 i40e_set_default_pctype_table(eth_dev);
1434 rte_eth_copy_pci_info(eth_dev, pci_dev);
1436 hw->vendor_id = pci_dev->id.vendor_id;
1437 hw->device_id = pci_dev->id.device_id;
1438 hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
1439 hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
1440 hw->bus.device = pci_dev->addr.devid;
1441 hw->bus.func = pci_dev->addr.function;
1442 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1443 hw->adapter_stopped = 0;
1445 if(i40evf_init_vf(eth_dev) != 0) {
1446 PMD_INIT_LOG(ERR, "Init vf failed");
1450 /* register callback func to eal lib */
1451 rte_intr_callback_register(&pci_dev->intr_handle,
1452 i40evf_dev_interrupt_handler, (void *)eth_dev);
1454 /* enable uio intr after callback register */
1455 rte_intr_enable(&pci_dev->intr_handle);
1457 /* configure and enable device interrupt */
1458 i40evf_enable_irq0(hw);
1461 eth_dev->data->mac_addrs = rte_zmalloc("i40evf_mac",
1462 ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX,
1464 if (eth_dev->data->mac_addrs == NULL) {
1465 PMD_INIT_LOG(ERR, "Failed to allocate %d bytes needed to"
1466 " store MAC addresses",
1467 ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX);
1470 ether_addr_copy((struct ether_addr *)hw->mac.addr,
1471 ð_dev->data->mac_addrs[0]);
1477 i40evf_dev_uninit(struct rte_eth_dev *eth_dev)
1479 PMD_INIT_FUNC_TRACE();
1481 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1484 eth_dev->dev_ops = NULL;
1485 eth_dev->rx_pkt_burst = NULL;
1486 eth_dev->tx_pkt_burst = NULL;
1488 if (i40evf_uninit_vf(eth_dev) != 0) {
1489 PMD_INIT_LOG(ERR, "i40evf_uninit_vf failed");
1493 rte_free(eth_dev->data->mac_addrs);
1494 eth_dev->data->mac_addrs = NULL;
1499 static int eth_i40evf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1500 struct rte_pci_device *pci_dev)
1502 return rte_eth_dev_pci_generic_probe(pci_dev,
1503 sizeof(struct i40e_adapter), i40evf_dev_init);
1506 static int eth_i40evf_pci_remove(struct rte_pci_device *pci_dev)
1508 return rte_eth_dev_pci_generic_remove(pci_dev, i40evf_dev_uninit);
1512 * virtual function driver struct
1514 static struct rte_pci_driver rte_i40evf_pmd = {
1515 .id_table = pci_id_i40evf_map,
1516 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_IOVA_AS_VA,
1517 .probe = eth_i40evf_pci_probe,
1518 .remove = eth_i40evf_pci_remove,
1521 RTE_PMD_REGISTER_PCI(net_i40e_vf, rte_i40evf_pmd);
1522 RTE_PMD_REGISTER_PCI_TABLE(net_i40e_vf, pci_id_i40evf_map);
1523 RTE_PMD_REGISTER_KMOD_DEP(net_i40e_vf, "* igb_uio | vfio-pci");
1526 i40evf_dev_configure(struct rte_eth_dev *dev)
1528 struct i40e_adapter *ad =
1529 I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1530 struct rte_eth_conf *conf = &dev->data->dev_conf;
1533 /* Initialize to TRUE. If any of Rx queues doesn't meet the bulk
1534 * allocation or vector Rx preconditions we will reset it.
1536 ad->rx_bulk_alloc_allowed = true;
1537 ad->rx_vec_allowed = true;
1538 ad->tx_simple_allowed = true;
1539 ad->tx_vec_allowed = true;
1541 /* For non-DPDK PF drivers, VF has no ability to disable HW
1542 * CRC strip, and is implicitly enabled by the PF.
1544 if (!conf->rxmode.hw_strip_crc) {
1545 vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1546 if ((vf->version_major == VIRTCHNL_VERSION_MAJOR) &&
1547 (vf->version_minor <= VIRTCHNL_VERSION_MINOR)) {
1548 /* Peer is running non-DPDK PF driver. */
1549 PMD_INIT_LOG(ERR, "VF can't disable HW CRC Strip");
1554 return i40evf_init_vlan(dev);
1558 i40evf_init_vlan(struct rte_eth_dev *dev)
1560 /* Apply vlan offload setting */
1561 i40evf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1567 i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1569 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1570 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1572 if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
1575 /* Vlan stripping setting */
1576 if (mask & ETH_VLAN_STRIP_MASK) {
1577 /* Enable or disable VLAN stripping */
1578 if (dev_conf->rxmode.hw_vlan_strip)
1579 i40evf_enable_vlan_strip(dev);
1581 i40evf_disable_vlan_strip(dev);
1588 i40evf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1590 struct i40e_rx_queue *rxq;
1592 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1594 PMD_INIT_FUNC_TRACE();
1596 if (rx_queue_id < dev->data->nb_rx_queues) {
1597 rxq = dev->data->rx_queues[rx_queue_id];
1599 err = i40e_alloc_rx_queue_mbufs(rxq);
1601 PMD_DRV_LOG(ERR, "Failed to allocate RX queue mbuf");
1607 /* Init the RX tail register. */
1608 I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1609 I40EVF_WRITE_FLUSH(hw);
1611 /* Ready to switch the queue on */
1612 err = i40evf_switch_queue(dev, TRUE, rx_queue_id, TRUE);
1615 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on",
1618 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1625 i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1627 struct i40e_rx_queue *rxq;
1630 if (rx_queue_id < dev->data->nb_rx_queues) {
1631 rxq = dev->data->rx_queues[rx_queue_id];
1633 err = i40evf_switch_queue(dev, TRUE, rx_queue_id, FALSE);
1636 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off",
1641 i40e_rx_queue_release_mbufs(rxq);
1642 i40e_reset_rx_queue(rxq);
1643 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1650 i40evf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1654 PMD_INIT_FUNC_TRACE();
1656 if (tx_queue_id < dev->data->nb_tx_queues) {
1658 /* Ready to switch the queue on */
1659 err = i40evf_switch_queue(dev, FALSE, tx_queue_id, TRUE);
1662 PMD_DRV_LOG(ERR, "Failed to switch TX queue %u on",
1665 dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1672 i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1674 struct i40e_tx_queue *txq;
1677 if (tx_queue_id < dev->data->nb_tx_queues) {
1678 txq = dev->data->tx_queues[tx_queue_id];
1680 err = i40evf_switch_queue(dev, FALSE, tx_queue_id, FALSE);
1683 PMD_DRV_LOG(ERR, "Failed to switch TX queue %u off",
1688 i40e_tx_queue_release_mbufs(txq);
1689 i40e_reset_tx_queue(txq);
1690 dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1697 i40evf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1702 ret = i40evf_add_vlan(dev, vlan_id);
1704 ret = i40evf_del_vlan(dev,vlan_id);
1710 i40evf_rxq_init(struct rte_eth_dev *dev, struct i40e_rx_queue *rxq)
1712 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1713 struct rte_eth_dev_data *dev_data = dev->data;
1714 struct rte_pktmbuf_pool_private *mbp_priv;
1715 uint16_t buf_size, len;
1717 rxq->qrx_tail = hw->hw_addr + I40E_QRX_TAIL1(rxq->queue_id);
1718 I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1719 I40EVF_WRITE_FLUSH(hw);
1721 /* Calculate the maximum packet length allowed */
1722 mbp_priv = rte_mempool_get_priv(rxq->mp);
1723 buf_size = (uint16_t)(mbp_priv->mbuf_data_room_size -
1724 RTE_PKTMBUF_HEADROOM);
1725 rxq->hs_mode = i40e_header_split_none;
1726 rxq->rx_hdr_len = 0;
1727 rxq->rx_buf_len = RTE_ALIGN(buf_size, (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
1728 len = rxq->rx_buf_len * I40E_MAX_CHAINED_RX_BUFFERS;
1729 rxq->max_pkt_len = RTE_MIN(len,
1730 dev_data->dev_conf.rxmode.max_rx_pkt_len);
1733 * Check if the jumbo frame and maximum packet length are set correctly
1735 if (dev_data->dev_conf.rxmode.jumbo_frame == 1) {
1736 if (rxq->max_pkt_len <= ETHER_MAX_LEN ||
1737 rxq->max_pkt_len > I40E_FRAME_SIZE_MAX) {
1738 PMD_DRV_LOG(ERR, "maximum packet length must be "
1739 "larger than %u and smaller than %u, as jumbo "
1740 "frame is enabled", (uint32_t)ETHER_MAX_LEN,
1741 (uint32_t)I40E_FRAME_SIZE_MAX);
1742 return I40E_ERR_CONFIG;
1745 if (rxq->max_pkt_len < ETHER_MIN_LEN ||
1746 rxq->max_pkt_len > ETHER_MAX_LEN) {
1747 PMD_DRV_LOG(ERR, "maximum packet length must be "
1748 "larger than %u and smaller than %u, as jumbo "
1749 "frame is disabled", (uint32_t)ETHER_MIN_LEN,
1750 (uint32_t)ETHER_MAX_LEN);
1751 return I40E_ERR_CONFIG;
1755 if (dev_data->dev_conf.rxmode.enable_scatter ||
1756 (rxq->max_pkt_len + 2 * I40E_VLAN_TAG_SIZE) > buf_size) {
1757 dev_data->scattered_rx = 1;
1764 i40evf_rx_init(struct rte_eth_dev *dev)
1766 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1768 int ret = I40E_SUCCESS;
1769 struct i40e_rx_queue **rxq =
1770 (struct i40e_rx_queue **)dev->data->rx_queues;
1772 i40evf_config_rss(vf);
1773 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1774 if (!rxq[i] || !rxq[i]->q_set)
1776 ret = i40evf_rxq_init(dev, rxq[i]);
1777 if (ret != I40E_SUCCESS)
1780 if (ret == I40E_SUCCESS)
1781 i40e_set_rx_function(dev);
1787 i40evf_tx_init(struct rte_eth_dev *dev)
1790 struct i40e_tx_queue **txq =
1791 (struct i40e_tx_queue **)dev->data->tx_queues;
1792 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1794 for (i = 0; i < dev->data->nb_tx_queues; i++)
1795 txq[i]->qtx_tail = hw->hw_addr + I40E_QTX_TAIL1(i);
1797 i40e_set_tx_function(dev);
1801 i40evf_enable_queues_intr(struct rte_eth_dev *dev)
1803 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1804 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1805 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1807 if (!rte_intr_allow_others(intr_handle)) {
1809 I40E_VFINT_DYN_CTL01,
1810 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1811 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1812 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1813 I40EVF_WRITE_FLUSH(hw);
1817 I40EVF_WRITE_FLUSH(hw);
1821 i40evf_disable_queues_intr(struct rte_eth_dev *dev)
1823 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1824 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1825 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1827 if (!rte_intr_allow_others(intr_handle)) {
1828 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1829 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1830 I40EVF_WRITE_FLUSH(hw);
1834 I40EVF_WRITE_FLUSH(hw);
1838 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
1840 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1841 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1842 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1844 i40e_calc_itr_interval(RTE_LIBRTE_I40E_ITR_INTERVAL, 0);
1847 msix_intr = intr_handle->intr_vec[queue_id];
1848 if (msix_intr == I40E_MISC_VEC_ID)
1849 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1850 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1851 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1852 (0 << I40E_VFINT_DYN_CTL01_ITR_INDX_SHIFT) |
1854 I40E_VFINT_DYN_CTL01_INTERVAL_SHIFT));
1857 I40E_VFINT_DYN_CTLN1(msix_intr -
1859 I40E_VFINT_DYN_CTLN1_INTENA_MASK |
1860 I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK |
1861 (0 << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) |
1863 I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT));
1865 I40EVF_WRITE_FLUSH(hw);
1867 rte_intr_enable(&pci_dev->intr_handle);
1873 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
1875 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1876 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1877 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1880 msix_intr = intr_handle->intr_vec[queue_id];
1881 if (msix_intr == I40E_MISC_VEC_ID)
1882 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01, 0);
1885 I40E_VFINT_DYN_CTLN1(msix_intr -
1889 I40EVF_WRITE_FLUSH(hw);
1895 i40evf_add_del_all_mac_addr(struct rte_eth_dev *dev, bool add)
1897 struct virtchnl_ether_addr_list *list;
1898 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1903 struct ether_addr *addr;
1904 struct vf_cmd_info args;
1908 len = sizeof(struct virtchnl_ether_addr_list);
1909 for (i = begin; i < I40E_NUM_MACADDR_MAX; i++, next_begin++) {
1910 if (is_zero_ether_addr(&dev->data->mac_addrs[i]))
1912 len += sizeof(struct virtchnl_ether_addr);
1913 if (len >= I40E_AQ_BUF_SZ) {
1919 list = rte_zmalloc("i40evf_del_mac_buffer", len, 0);
1921 PMD_DRV_LOG(ERR, "fail to allocate memory");
1925 for (i = begin; i < next_begin; i++) {
1926 addr = &dev->data->mac_addrs[i];
1927 if (is_zero_ether_addr(addr))
1929 rte_memcpy(list->list[j].addr, addr->addr_bytes,
1930 sizeof(addr->addr_bytes));
1931 PMD_DRV_LOG(DEBUG, "add/rm mac:%x:%x:%x:%x:%x:%x",
1932 addr->addr_bytes[0], addr->addr_bytes[1],
1933 addr->addr_bytes[2], addr->addr_bytes[3],
1934 addr->addr_bytes[4], addr->addr_bytes[5]);
1937 list->vsi_id = vf->vsi_res->vsi_id;
1938 list->num_elements = j;
1939 args.ops = add ? VIRTCHNL_OP_ADD_ETH_ADDR :
1940 VIRTCHNL_OP_DEL_ETH_ADDR;
1941 args.in_args = (uint8_t *)list;
1942 args.in_args_size = len;
1943 args.out_buffer = vf->aq_resp;
1944 args.out_size = I40E_AQ_BUF_SZ;
1945 err = i40evf_execute_vf_cmd(dev, &args);
1947 PMD_DRV_LOG(ERR, "fail to execute command %s",
1948 add ? "OP_ADD_ETHER_ADDRESS" :
1949 "OP_DEL_ETHER_ADDRESS");
1958 } while (begin < I40E_NUM_MACADDR_MAX);
1962 i40evf_dev_start(struct rte_eth_dev *dev)
1964 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1965 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1966 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1967 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1968 uint32_t intr_vector = 0;
1970 PMD_INIT_FUNC_TRACE();
1972 hw->adapter_stopped = 0;
1974 vf->max_pkt_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
1975 vf->num_queue_pairs = RTE_MAX(dev->data->nb_rx_queues,
1976 dev->data->nb_tx_queues);
1978 /* check and configure queue intr-vector mapping */
1979 if (dev->data->dev_conf.intr_conf.rxq != 0) {
1980 intr_vector = dev->data->nb_rx_queues;
1981 if (rte_intr_efd_enable(intr_handle, intr_vector))
1985 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
1986 intr_handle->intr_vec =
1987 rte_zmalloc("intr_vec",
1988 dev->data->nb_rx_queues * sizeof(int), 0);
1989 if (!intr_handle->intr_vec) {
1990 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
1991 " intr_vec", dev->data->nb_rx_queues);
1996 if (i40evf_rx_init(dev) != 0){
1997 PMD_DRV_LOG(ERR, "failed to do RX init");
2001 i40evf_tx_init(dev);
2003 if (i40evf_configure_vsi_queues(dev) != 0) {
2004 PMD_DRV_LOG(ERR, "configure queues failed");
2007 if (i40evf_config_irq_map(dev)) {
2008 PMD_DRV_LOG(ERR, "config_irq_map failed");
2012 /* Set all mac addrs */
2013 i40evf_add_del_all_mac_addr(dev, TRUE);
2015 if (i40evf_start_queues(dev) != 0) {
2016 PMD_DRV_LOG(ERR, "enable queues failed");
2020 /* When a VF port is bound to VFIO-PCI, only miscellaneous interrupt
2021 * is mapped to VFIO vector 0 in i40evf_dev_init( ).
2022 * If previous VFIO interrupt mapping set in i40evf_dev_init( ) is
2023 * not cleared, it will fail when rte_intr_enable( ) tries to map Rx
2024 * queue interrupt to other VFIO vectors.
2025 * So clear uio/vfio intr/evevnfd first to avoid failure.
2027 if (dev->data->dev_conf.intr_conf.rxq != 0) {
2028 rte_intr_disable(intr_handle);
2029 rte_intr_enable(intr_handle);
2032 i40evf_enable_queues_intr(dev);
2037 i40evf_add_del_all_mac_addr(dev, FALSE);
2043 i40evf_dev_stop(struct rte_eth_dev *dev)
2045 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2046 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2047 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2049 PMD_INIT_FUNC_TRACE();
2051 if (hw->adapter_stopped == 1)
2053 i40evf_stop_queues(dev);
2054 i40evf_disable_queues_intr(dev);
2055 i40e_dev_clear_queues(dev);
2057 /* Clean datapath event and queue/vec mapping */
2058 rte_intr_efd_disable(intr_handle);
2059 if (intr_handle->intr_vec) {
2060 rte_free(intr_handle->intr_vec);
2061 intr_handle->intr_vec = NULL;
2063 /* remove all mac addrs */
2064 i40evf_add_del_all_mac_addr(dev, FALSE);
2065 hw->adapter_stopped = 1;
2070 i40evf_dev_link_update(struct rte_eth_dev *dev,
2071 __rte_unused int wait_to_complete)
2073 struct rte_eth_link new_link;
2074 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2076 * DPDK pf host provide interfacet to acquire link status
2077 * while Linux driver does not
2080 /* Linux driver PF host */
2081 switch (vf->link_speed) {
2082 case I40E_LINK_SPEED_100MB:
2083 new_link.link_speed = ETH_SPEED_NUM_100M;
2085 case I40E_LINK_SPEED_1GB:
2086 new_link.link_speed = ETH_SPEED_NUM_1G;
2088 case I40E_LINK_SPEED_10GB:
2089 new_link.link_speed = ETH_SPEED_NUM_10G;
2091 case I40E_LINK_SPEED_20GB:
2092 new_link.link_speed = ETH_SPEED_NUM_20G;
2094 case I40E_LINK_SPEED_25GB:
2095 new_link.link_speed = ETH_SPEED_NUM_25G;
2097 case I40E_LINK_SPEED_40GB:
2098 new_link.link_speed = ETH_SPEED_NUM_40G;
2101 new_link.link_speed = ETH_SPEED_NUM_100M;
2104 /* full duplex only */
2105 new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
2106 new_link.link_status = vf->link_up ? ETH_LINK_UP :
2108 new_link.link_autoneg =
2109 dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED;
2111 i40evf_dev_atomic_write_link_status(dev, &new_link);
2117 i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev)
2119 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2122 /* If enabled, just return */
2123 if (vf->promisc_unicast_enabled)
2126 ret = i40evf_config_promisc(dev, 1, vf->promisc_multicast_enabled);
2128 vf->promisc_unicast_enabled = TRUE;
2132 i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev)
2134 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2137 /* If disabled, just return */
2138 if (!vf->promisc_unicast_enabled)
2141 ret = i40evf_config_promisc(dev, 0, vf->promisc_multicast_enabled);
2143 vf->promisc_unicast_enabled = FALSE;
2147 i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev)
2149 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2152 /* If enabled, just return */
2153 if (vf->promisc_multicast_enabled)
2156 ret = i40evf_config_promisc(dev, vf->promisc_unicast_enabled, 1);
2158 vf->promisc_multicast_enabled = TRUE;
2162 i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev)
2164 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2167 /* If enabled, just return */
2168 if (!vf->promisc_multicast_enabled)
2171 ret = i40evf_config_promisc(dev, vf->promisc_unicast_enabled, 0);
2173 vf->promisc_multicast_enabled = FALSE;
2177 i40evf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2179 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2181 memset(dev_info, 0, sizeof(*dev_info));
2182 dev_info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2183 dev_info->max_rx_queues = vf->vsi_res->num_queue_pairs;
2184 dev_info->max_tx_queues = vf->vsi_res->num_queue_pairs;
2185 dev_info->min_rx_bufsize = I40E_BUF_SIZE_MIN;
2186 dev_info->max_rx_pktlen = I40E_FRAME_SIZE_MAX;
2187 dev_info->hash_key_size = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2188 dev_info->reta_size = ETH_RSS_RETA_SIZE_64;
2189 dev_info->flow_type_rss_offloads = vf->adapter->flow_types_mask;
2190 dev_info->max_mac_addrs = I40E_NUM_MACADDR_MAX;
2191 dev_info->rx_offload_capa =
2192 DEV_RX_OFFLOAD_VLAN_STRIP |
2193 DEV_RX_OFFLOAD_QINQ_STRIP |
2194 DEV_RX_OFFLOAD_IPV4_CKSUM |
2195 DEV_RX_OFFLOAD_UDP_CKSUM |
2196 DEV_RX_OFFLOAD_TCP_CKSUM;
2197 dev_info->tx_offload_capa =
2198 DEV_TX_OFFLOAD_VLAN_INSERT |
2199 DEV_TX_OFFLOAD_QINQ_INSERT |
2200 DEV_TX_OFFLOAD_IPV4_CKSUM |
2201 DEV_TX_OFFLOAD_UDP_CKSUM |
2202 DEV_TX_OFFLOAD_TCP_CKSUM |
2203 DEV_TX_OFFLOAD_SCTP_CKSUM |
2204 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
2205 DEV_TX_OFFLOAD_TCP_TSO |
2206 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
2207 DEV_TX_OFFLOAD_GRE_TNL_TSO |
2208 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
2209 DEV_TX_OFFLOAD_GENEVE_TNL_TSO;
2211 dev_info->default_rxconf = (struct rte_eth_rxconf) {
2213 .pthresh = I40E_DEFAULT_RX_PTHRESH,
2214 .hthresh = I40E_DEFAULT_RX_HTHRESH,
2215 .wthresh = I40E_DEFAULT_RX_WTHRESH,
2217 .rx_free_thresh = I40E_DEFAULT_RX_FREE_THRESH,
2221 dev_info->default_txconf = (struct rte_eth_txconf) {
2223 .pthresh = I40E_DEFAULT_TX_PTHRESH,
2224 .hthresh = I40E_DEFAULT_TX_HTHRESH,
2225 .wthresh = I40E_DEFAULT_TX_WTHRESH,
2227 .tx_free_thresh = I40E_DEFAULT_TX_FREE_THRESH,
2228 .tx_rs_thresh = I40E_DEFAULT_TX_RSBIT_THRESH,
2229 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2230 ETH_TXQ_FLAGS_NOOFFLOADS,
2233 dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
2234 .nb_max = I40E_MAX_RING_DESC,
2235 .nb_min = I40E_MIN_RING_DESC,
2236 .nb_align = I40E_ALIGN_RING_DESC,
2239 dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
2240 .nb_max = I40E_MAX_RING_DESC,
2241 .nb_min = I40E_MIN_RING_DESC,
2242 .nb_align = I40E_ALIGN_RING_DESC,
2247 i40evf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2250 struct i40e_eth_stats *pstats = NULL;
2251 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2252 struct i40e_vsi *vsi = &vf->vsi;
2254 ret = i40evf_query_stats(dev, &pstats);
2256 i40evf_update_stats(vsi, pstats);
2258 stats->ipackets = pstats->rx_unicast + pstats->rx_multicast +
2259 pstats->rx_broadcast;
2260 stats->opackets = pstats->tx_broadcast + pstats->tx_multicast +
2262 stats->imissed = pstats->rx_discards;
2263 stats->oerrors = pstats->tx_errors + pstats->tx_discards;
2264 stats->ibytes = pstats->rx_bytes;
2265 stats->obytes = pstats->tx_bytes;
2267 PMD_DRV_LOG(ERR, "Get statistics failed");
2273 i40evf_dev_close(struct rte_eth_dev *dev)
2275 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2276 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2277 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2279 i40evf_dev_stop(dev);
2280 i40e_dev_free_queues(dev);
2281 i40evf_reset_vf(hw);
2282 i40e_shutdown_adminq(hw);
2283 /* disable uio intr before callback unregister */
2284 rte_intr_disable(intr_handle);
2286 /* unregister callback func from eal lib */
2287 rte_intr_callback_unregister(intr_handle,
2288 i40evf_dev_interrupt_handler, dev);
2289 i40evf_disable_irq0(hw);
2293 * Reset VF device only to re-initialize resources in PMD layer
2296 i40evf_dev_reset(struct rte_eth_dev *dev)
2300 ret = i40evf_dev_uninit(dev);
2304 ret = i40evf_dev_init(dev);
2310 i40evf_get_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2312 struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2313 struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2319 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2320 ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, FALSE,
2323 PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
2327 uint32_t *lut_dw = (uint32_t *)lut;
2328 uint16_t i, lut_size_dw = lut_size / 4;
2330 for (i = 0; i < lut_size_dw; i++)
2331 lut_dw[i] = I40E_READ_REG(hw, I40E_VFQF_HLUT(i));
2338 i40evf_set_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2347 vf = I40E_VSI_TO_VF(vsi);
2348 hw = I40E_VSI_TO_HW(vsi);
2350 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2351 ret = i40e_aq_set_rss_lut(hw, vsi->vsi_id, FALSE,
2354 PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
2358 uint32_t *lut_dw = (uint32_t *)lut;
2359 uint16_t i, lut_size_dw = lut_size / 4;
2361 for (i = 0; i < lut_size_dw; i++)
2362 I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i), lut_dw[i]);
2363 I40EVF_WRITE_FLUSH(hw);
2370 i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
2371 struct rte_eth_rss_reta_entry64 *reta_conf,
2374 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2376 uint16_t i, idx, shift;
2379 if (reta_size != ETH_RSS_RETA_SIZE_64) {
2380 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2381 "(%d) doesn't match the number of hardware can "
2382 "support (%d)", reta_size, ETH_RSS_RETA_SIZE_64);
2386 lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2388 PMD_DRV_LOG(ERR, "No memory can be allocated");
2391 ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2394 for (i = 0; i < reta_size; i++) {
2395 idx = i / RTE_RETA_GROUP_SIZE;
2396 shift = i % RTE_RETA_GROUP_SIZE;
2397 if (reta_conf[idx].mask & (1ULL << shift))
2398 lut[i] = reta_conf[idx].reta[shift];
2400 ret = i40evf_set_rss_lut(&vf->vsi, lut, reta_size);
2409 i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
2410 struct rte_eth_rss_reta_entry64 *reta_conf,
2413 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2414 uint16_t i, idx, shift;
2418 if (reta_size != ETH_RSS_RETA_SIZE_64) {
2419 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2420 "(%d) doesn't match the number of hardware can "
2421 "support (%d)", reta_size, ETH_RSS_RETA_SIZE_64);
2425 lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2427 PMD_DRV_LOG(ERR, "No memory can be allocated");
2431 ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2434 for (i = 0; i < reta_size; i++) {
2435 idx = i / RTE_RETA_GROUP_SIZE;
2436 shift = i % RTE_RETA_GROUP_SIZE;
2437 if (reta_conf[idx].mask & (1ULL << shift))
2438 reta_conf[idx].reta[shift] = lut[i];
2448 i40evf_set_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t key_len)
2450 struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2451 struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2454 if (!key || key_len == 0) {
2455 PMD_DRV_LOG(DEBUG, "No key to be configured");
2457 } else if (key_len != (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2459 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
2463 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2464 struct i40e_aqc_get_set_rss_key_data *key_dw =
2465 (struct i40e_aqc_get_set_rss_key_data *)key;
2467 ret = i40e_aq_set_rss_key(hw, vsi->vsi_id, key_dw);
2469 PMD_INIT_LOG(ERR, "Failed to configure RSS key "
2472 uint32_t *hash_key = (uint32_t *)key;
2475 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2476 i40e_write_rx_ctl(hw, I40E_VFQF_HKEY(i), hash_key[i]);
2477 I40EVF_WRITE_FLUSH(hw);
2484 i40evf_get_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t *key_len)
2486 struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2487 struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2490 if (!key || !key_len)
2493 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2494 ret = i40e_aq_get_rss_key(hw, vsi->vsi_id,
2495 (struct i40e_aqc_get_set_rss_key_data *)key);
2497 PMD_INIT_LOG(ERR, "Failed to get RSS key via AQ");
2501 uint32_t *key_dw = (uint32_t *)key;
2504 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2505 key_dw[i] = i40e_read_rx_ctl(hw, I40E_VFQF_HKEY(i));
2507 *key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2513 i40evf_hw_rss_hash_set(struct i40e_vf *vf, struct rte_eth_rss_conf *rss_conf)
2515 struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2519 ret = i40evf_set_rss_key(&vf->vsi, rss_conf->rss_key,
2520 rss_conf->rss_key_len);
2524 hena = i40e_config_hena(vf->adapter, rss_conf->rss_hf);
2525 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), (uint32_t)hena);
2526 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), (uint32_t)(hena >> 32));
2527 I40EVF_WRITE_FLUSH(hw);
2533 i40evf_disable_rss(struct i40e_vf *vf)
2535 struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2537 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), 0);
2538 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), 0);
2539 I40EVF_WRITE_FLUSH(hw);
2543 i40evf_config_rss(struct i40e_vf *vf)
2545 struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2546 struct rte_eth_rss_conf rss_conf;
2547 uint32_t i, j, lut = 0, nb_q = (I40E_VFQF_HLUT_MAX_INDEX + 1) * 4;
2550 if (vf->dev_data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS) {
2551 i40evf_disable_rss(vf);
2552 PMD_DRV_LOG(DEBUG, "RSS not configured");
2556 num = RTE_MIN(vf->dev_data->nb_rx_queues, I40E_MAX_QP_NUM_PER_VF);
2557 /* Fill out the look up table */
2558 for (i = 0, j = 0; i < nb_q; i++, j++) {
2561 lut = (lut << 8) | j;
2563 I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i >> 2), lut);
2566 rss_conf = vf->dev_data->dev_conf.rx_adv_conf.rss_conf;
2567 if ((rss_conf.rss_hf & vf->adapter->flow_types_mask) == 0) {
2568 i40evf_disable_rss(vf);
2569 PMD_DRV_LOG(DEBUG, "No hash flag is set");
2573 if (rss_conf.rss_key == NULL || rss_conf.rss_key_len <
2574 (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t)) {
2575 /* Calculate the default hash key */
2576 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2577 rss_key_default[i] = (uint32_t)rte_rand();
2578 rss_conf.rss_key = (uint8_t *)rss_key_default;
2579 rss_conf.rss_key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2583 return i40evf_hw_rss_hash_set(vf, &rss_conf);
2587 i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
2588 struct rte_eth_rss_conf *rss_conf)
2590 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2591 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2592 uint64_t rss_hf = rss_conf->rss_hf & vf->adapter->flow_types_mask;
2595 hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2596 hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2598 if (!(hena & vf->adapter->pctypes_mask)) { /* RSS disabled */
2599 if (rss_hf != 0) /* Enable RSS */
2605 if (rss_hf == 0) /* Disable RSS */
2608 return i40evf_hw_rss_hash_set(vf, rss_conf);
2612 i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2613 struct rte_eth_rss_conf *rss_conf)
2615 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2616 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2619 i40evf_get_rss_key(&vf->vsi, rss_conf->rss_key,
2620 &rss_conf->rss_key_len);
2622 hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2623 hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2624 rss_conf->rss_hf = i40e_parse_hena(vf->adapter, hena);
2630 i40evf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
2632 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2633 struct rte_eth_dev_data *dev_data = vf->dev_data;
2634 uint32_t frame_size = mtu + I40E_ETH_OVERHEAD;
2637 /* check if mtu is within the allowed range */
2638 if ((mtu < ETHER_MIN_MTU) || (frame_size > I40E_FRAME_SIZE_MAX))
2641 /* mtu setting is forbidden if port is start */
2642 if (dev_data->dev_started) {
2643 PMD_DRV_LOG(ERR, "port %d must be stopped before configuration",
2648 if (frame_size > ETHER_MAX_LEN)
2649 dev_data->dev_conf.rxmode.jumbo_frame = 1;
2651 dev_data->dev_conf.rxmode.jumbo_frame = 0;
2653 dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
2659 i40evf_set_default_mac_addr(struct rte_eth_dev *dev,
2660 struct ether_addr *mac_addr)
2662 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2663 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2665 if (!is_valid_assigned_ether_addr(mac_addr)) {
2666 PMD_DRV_LOG(ERR, "Tried to set invalid MAC address.");
2670 if (vf->flags & I40E_FLAG_VF_MAC_BY_PF)
2673 i40evf_del_mac_addr_by_addr(dev, (struct ether_addr *)hw->mac.addr);
2675 i40evf_add_mac_addr(dev, mac_addr, 0, 0);
2677 ether_addr_copy(mac_addr, (struct ether_addr *)hw->mac.addr);