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,
134 i40evf_add_del_mc_addr_list(struct rte_eth_dev *dev,
135 struct ether_addr *mc_addr_set,
136 uint32_t nb_mc_addr, bool add);
138 i40evf_set_mc_addr_list(struct rte_eth_dev *dev, struct ether_addr *mc_addr_set,
139 uint32_t nb_mc_addr);
141 /* Default hash key buffer for RSS */
142 static uint32_t rss_key_default[I40E_VFQF_HKEY_MAX_INDEX + 1];
144 struct rte_i40evf_xstats_name_off {
145 char name[RTE_ETH_XSTATS_NAME_SIZE];
149 static const struct rte_i40evf_xstats_name_off rte_i40evf_stats_strings[] = {
150 {"rx_bytes", offsetof(struct i40e_eth_stats, rx_bytes)},
151 {"rx_unicast_packets", offsetof(struct i40e_eth_stats, rx_unicast)},
152 {"rx_multicast_packets", offsetof(struct i40e_eth_stats, rx_multicast)},
153 {"rx_broadcast_packets", offsetof(struct i40e_eth_stats, rx_broadcast)},
154 {"rx_dropped_packets", offsetof(struct i40e_eth_stats, rx_discards)},
155 {"rx_unknown_protocol_packets", offsetof(struct i40e_eth_stats,
156 rx_unknown_protocol)},
157 {"tx_bytes", offsetof(struct i40e_eth_stats, tx_bytes)},
158 {"tx_unicast_packets", offsetof(struct i40e_eth_stats, tx_unicast)},
159 {"tx_multicast_packets", offsetof(struct i40e_eth_stats, tx_multicast)},
160 {"tx_broadcast_packets", offsetof(struct i40e_eth_stats, tx_broadcast)},
161 {"tx_dropped_packets", offsetof(struct i40e_eth_stats, tx_discards)},
162 {"tx_error_packets", offsetof(struct i40e_eth_stats, tx_errors)},
165 #define I40EVF_NB_XSTATS (sizeof(rte_i40evf_stats_strings) / \
166 sizeof(rte_i40evf_stats_strings[0]))
168 static const struct eth_dev_ops i40evf_eth_dev_ops = {
169 .dev_configure = i40evf_dev_configure,
170 .dev_start = i40evf_dev_start,
171 .dev_stop = i40evf_dev_stop,
172 .promiscuous_enable = i40evf_dev_promiscuous_enable,
173 .promiscuous_disable = i40evf_dev_promiscuous_disable,
174 .allmulticast_enable = i40evf_dev_allmulticast_enable,
175 .allmulticast_disable = i40evf_dev_allmulticast_disable,
176 .link_update = i40evf_dev_link_update,
177 .stats_get = i40evf_dev_stats_get,
178 .stats_reset = i40evf_dev_xstats_reset,
179 .xstats_get = i40evf_dev_xstats_get,
180 .xstats_get_names = i40evf_dev_xstats_get_names,
181 .xstats_reset = i40evf_dev_xstats_reset,
182 .dev_close = i40evf_dev_close,
183 .dev_reset = i40evf_dev_reset,
184 .dev_infos_get = i40evf_dev_info_get,
185 .dev_supported_ptypes_get = i40e_dev_supported_ptypes_get,
186 .vlan_filter_set = i40evf_vlan_filter_set,
187 .vlan_offload_set = i40evf_vlan_offload_set,
188 .rx_queue_start = i40evf_dev_rx_queue_start,
189 .rx_queue_stop = i40evf_dev_rx_queue_stop,
190 .tx_queue_start = i40evf_dev_tx_queue_start,
191 .tx_queue_stop = i40evf_dev_tx_queue_stop,
192 .rx_queue_setup = i40e_dev_rx_queue_setup,
193 .rx_queue_release = i40e_dev_rx_queue_release,
194 .rx_queue_intr_enable = i40evf_dev_rx_queue_intr_enable,
195 .rx_queue_intr_disable = i40evf_dev_rx_queue_intr_disable,
196 .rx_descriptor_done = i40e_dev_rx_descriptor_done,
197 .rx_descriptor_status = i40e_dev_rx_descriptor_status,
198 .tx_descriptor_status = i40e_dev_tx_descriptor_status,
199 .tx_queue_setup = i40e_dev_tx_queue_setup,
200 .tx_queue_release = i40e_dev_tx_queue_release,
201 .rx_queue_count = i40e_dev_rx_queue_count,
202 .rxq_info_get = i40e_rxq_info_get,
203 .txq_info_get = i40e_txq_info_get,
204 .mac_addr_add = i40evf_add_mac_addr,
205 .mac_addr_remove = i40evf_del_mac_addr,
206 .set_mc_addr_list = i40evf_set_mc_addr_list,
207 .reta_update = i40evf_dev_rss_reta_update,
208 .reta_query = i40evf_dev_rss_reta_query,
209 .rss_hash_update = i40evf_dev_rss_hash_update,
210 .rss_hash_conf_get = i40evf_dev_rss_hash_conf_get,
211 .mtu_set = i40evf_dev_mtu_set,
212 .mac_addr_set = i40evf_set_default_mac_addr,
216 * Read data in admin queue to get msg from pf driver
218 static enum i40evf_aq_result
219 i40evf_read_pfmsg(struct rte_eth_dev *dev, struct i40evf_arq_msg_info *data)
221 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
222 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
223 struct i40e_arq_event_info event;
224 enum virtchnl_ops opcode;
225 enum i40e_status_code retval;
227 enum i40evf_aq_result result = I40EVF_MSG_NON;
229 event.buf_len = data->buf_len;
230 event.msg_buf = data->msg;
231 ret = i40e_clean_arq_element(hw, &event, NULL);
232 /* Can't read any msg from adminQ */
234 if (ret != I40E_ERR_ADMIN_QUEUE_NO_WORK)
235 result = I40EVF_MSG_ERR;
239 opcode = (enum virtchnl_ops)rte_le_to_cpu_32(event.desc.cookie_high);
240 retval = (enum i40e_status_code)rte_le_to_cpu_32(event.desc.cookie_low);
242 if (opcode == VIRTCHNL_OP_EVENT) {
243 struct virtchnl_pf_event *vpe =
244 (struct virtchnl_pf_event *)event.msg_buf;
246 result = I40EVF_MSG_SYS;
247 switch (vpe->event) {
248 case VIRTCHNL_EVENT_LINK_CHANGE:
250 vpe->event_data.link_event.link_status;
252 vpe->event_data.link_event.link_speed;
253 vf->pend_msg |= PFMSG_LINK_CHANGE;
254 PMD_DRV_LOG(INFO, "Link status update:%s",
255 vf->link_up ? "up" : "down");
257 case VIRTCHNL_EVENT_RESET_IMPENDING:
259 vf->pend_msg |= PFMSG_RESET_IMPENDING;
260 PMD_DRV_LOG(INFO, "vf is reseting");
262 case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
263 vf->dev_closed = true;
264 vf->pend_msg |= PFMSG_DRIVER_CLOSE;
265 PMD_DRV_LOG(INFO, "PF driver closed");
268 PMD_DRV_LOG(ERR, "%s: Unknown event %d from pf",
269 __func__, vpe->event);
272 /* async reply msg on command issued by vf previously */
273 result = I40EVF_MSG_CMD;
274 /* Actual data length read from PF */
275 data->msg_len = event.msg_len;
278 data->result = retval;
285 * clear current command. Only call in case execute
286 * _atomic_set_cmd successfully.
289 _clear_cmd(struct i40e_vf *vf)
292 vf->pend_cmd = VIRTCHNL_OP_UNKNOWN;
296 * Check there is pending cmd in execution. If none, set new command.
299 _atomic_set_cmd(struct i40e_vf *vf, enum virtchnl_ops ops)
301 int ret = rte_atomic32_cmpset(&vf->pend_cmd,
302 VIRTCHNL_OP_UNKNOWN, ops);
305 PMD_DRV_LOG(ERR, "There is incomplete cmd %d", vf->pend_cmd);
310 #define MAX_TRY_TIMES 200
311 #define ASQ_DELAY_MS 10
314 i40evf_execute_vf_cmd(struct rte_eth_dev *dev, struct vf_cmd_info *args)
316 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
317 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
318 struct i40evf_arq_msg_info info;
319 enum i40evf_aq_result ret;
322 if (_atomic_set_cmd(vf, args->ops))
325 info.msg = args->out_buffer;
326 info.buf_len = args->out_size;
327 info.ops = VIRTCHNL_OP_UNKNOWN;
328 info.result = I40E_SUCCESS;
330 err = i40e_aq_send_msg_to_pf(hw, args->ops, I40E_SUCCESS,
331 args->in_args, args->in_args_size, NULL);
333 PMD_DRV_LOG(ERR, "fail to send cmd %d", args->ops);
339 case VIRTCHNL_OP_RESET_VF:
340 /*no need to process in this function */
343 case VIRTCHNL_OP_VERSION:
344 case VIRTCHNL_OP_GET_VF_RESOURCES:
345 /* for init adminq commands, need to poll the response */
348 ret = i40evf_read_pfmsg(dev, &info);
349 vf->cmd_retval = info.result;
350 if (ret == I40EVF_MSG_CMD) {
353 } else if (ret == I40EVF_MSG_ERR)
355 rte_delay_ms(ASQ_DELAY_MS);
356 /* If don't read msg or read sys event, continue */
357 } while (i++ < MAX_TRY_TIMES);
362 /* for other adminq in running time, waiting the cmd done flag */
365 if (vf->pend_cmd == VIRTCHNL_OP_UNKNOWN) {
369 rte_delay_ms(ASQ_DELAY_MS);
370 /* If don't read msg or read sys event, continue */
371 } while (i++ < MAX_TRY_TIMES);
372 /* If there's no response is received, clear command */
373 if (i >= MAX_TRY_TIMES) {
374 PMD_DRV_LOG(WARNING, "No response for %d", args->ops);
380 return err | vf->cmd_retval;
384 * Check API version with sync wait until version read or fail from admin queue
387 i40evf_check_api_version(struct rte_eth_dev *dev)
389 struct virtchnl_version_info version, *pver;
391 struct vf_cmd_info args;
392 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
394 version.major = VIRTCHNL_VERSION_MAJOR;
395 version.minor = VIRTCHNL_VERSION_MINOR;
397 args.ops = VIRTCHNL_OP_VERSION;
398 args.in_args = (uint8_t *)&version;
399 args.in_args_size = sizeof(version);
400 args.out_buffer = vf->aq_resp;
401 args.out_size = I40E_AQ_BUF_SZ;
403 err = i40evf_execute_vf_cmd(dev, &args);
405 PMD_INIT_LOG(ERR, "fail to execute command OP_VERSION");
409 pver = (struct virtchnl_version_info *)args.out_buffer;
410 vf->version_major = pver->major;
411 vf->version_minor = pver->minor;
412 if ((vf->version_major == VIRTCHNL_VERSION_MAJOR) &&
413 (vf->version_minor <= VIRTCHNL_VERSION_MINOR))
414 PMD_DRV_LOG(INFO, "Peer is Linux PF host");
416 PMD_INIT_LOG(ERR, "PF/VF API version mismatch:(%u.%u)-(%u.%u)",
417 vf->version_major, vf->version_minor,
418 VIRTCHNL_VERSION_MAJOR,
419 VIRTCHNL_VERSION_MINOR);
427 i40evf_get_vf_resource(struct rte_eth_dev *dev)
429 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
430 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
432 struct vf_cmd_info args;
435 args.ops = VIRTCHNL_OP_GET_VF_RESOURCES;
436 args.out_buffer = vf->aq_resp;
437 args.out_size = I40E_AQ_BUF_SZ;
439 caps = VIRTCHNL_VF_OFFLOAD_L2 |
440 VIRTCHNL_VF_OFFLOAD_RSS_AQ |
441 VIRTCHNL_VF_OFFLOAD_RSS_REG |
442 VIRTCHNL_VF_OFFLOAD_VLAN |
443 VIRTCHNL_VF_OFFLOAD_RX_POLLING;
444 args.in_args = (uint8_t *)∩︀
445 args.in_args_size = sizeof(caps);
448 args.in_args_size = 0;
450 err = i40evf_execute_vf_cmd(dev, &args);
453 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_VF_RESOURCE");
457 len = sizeof(struct virtchnl_vf_resource) +
458 I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource);
460 rte_memcpy(vf->vf_res, args.out_buffer,
461 RTE_MIN(args.out_size, len));
462 i40e_vf_parse_hw_config(hw, vf->vf_res);
468 i40evf_config_promisc(struct rte_eth_dev *dev,
470 bool enable_multicast)
472 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
474 struct vf_cmd_info args;
475 struct virtchnl_promisc_info promisc;
478 promisc.vsi_id = vf->vsi_res->vsi_id;
481 promisc.flags |= FLAG_VF_UNICAST_PROMISC;
483 if (enable_multicast)
484 promisc.flags |= FLAG_VF_MULTICAST_PROMISC;
486 args.ops = VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE;
487 args.in_args = (uint8_t *)&promisc;
488 args.in_args_size = sizeof(promisc);
489 args.out_buffer = vf->aq_resp;
490 args.out_size = I40E_AQ_BUF_SZ;
492 err = i40evf_execute_vf_cmd(dev, &args);
495 PMD_DRV_LOG(ERR, "fail to execute command "
496 "CONFIG_PROMISCUOUS_MODE");
501 i40evf_enable_vlan_strip(struct rte_eth_dev *dev)
503 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
504 struct vf_cmd_info args;
507 memset(&args, 0, sizeof(args));
508 args.ops = VIRTCHNL_OP_ENABLE_VLAN_STRIPPING;
510 args.in_args_size = 0;
511 args.out_buffer = vf->aq_resp;
512 args.out_size = I40E_AQ_BUF_SZ;
513 ret = i40evf_execute_vf_cmd(dev, &args);
515 PMD_DRV_LOG(ERR, "Failed to execute command of "
516 "VIRTCHNL_OP_ENABLE_VLAN_STRIPPING");
522 i40evf_disable_vlan_strip(struct rte_eth_dev *dev)
524 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
525 struct vf_cmd_info args;
528 memset(&args, 0, sizeof(args));
529 args.ops = VIRTCHNL_OP_DISABLE_VLAN_STRIPPING;
531 args.in_args_size = 0;
532 args.out_buffer = vf->aq_resp;
533 args.out_size = I40E_AQ_BUF_SZ;
534 ret = i40evf_execute_vf_cmd(dev, &args);
536 PMD_DRV_LOG(ERR, "Failed to execute command of "
537 "VIRTCHNL_OP_DISABLE_VLAN_STRIPPING");
543 i40evf_fill_virtchnl_vsi_txq_info(struct virtchnl_txq_info *txq_info,
547 struct i40e_tx_queue *txq)
549 txq_info->vsi_id = vsi_id;
550 txq_info->queue_id = queue_id;
551 if (queue_id < nb_txq) {
552 txq_info->ring_len = txq->nb_tx_desc;
553 txq_info->dma_ring_addr = txq->tx_ring_phys_addr;
558 i40evf_fill_virtchnl_vsi_rxq_info(struct virtchnl_rxq_info *rxq_info,
562 uint32_t max_pkt_size,
563 struct i40e_rx_queue *rxq)
565 rxq_info->vsi_id = vsi_id;
566 rxq_info->queue_id = queue_id;
567 rxq_info->max_pkt_size = max_pkt_size;
568 if (queue_id < nb_rxq) {
569 rxq_info->ring_len = rxq->nb_rx_desc;
570 rxq_info->dma_ring_addr = rxq->rx_ring_phys_addr;
571 rxq_info->databuffer_size =
572 (rte_pktmbuf_data_room_size(rxq->mp) -
573 RTE_PKTMBUF_HEADROOM);
578 i40evf_configure_vsi_queues(struct rte_eth_dev *dev)
580 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
581 struct i40e_rx_queue **rxq =
582 (struct i40e_rx_queue **)dev->data->rx_queues;
583 struct i40e_tx_queue **txq =
584 (struct i40e_tx_queue **)dev->data->tx_queues;
585 struct virtchnl_vsi_queue_config_info *vc_vqci;
586 struct virtchnl_queue_pair_info *vc_qpi;
587 struct vf_cmd_info args;
588 uint16_t i, nb_qp = vf->num_queue_pairs;
589 const uint32_t size =
590 I40E_VIRTCHNL_CONFIG_VSI_QUEUES_SIZE(vc_vqci, nb_qp);
594 memset(buff, 0, sizeof(buff));
595 vc_vqci = (struct virtchnl_vsi_queue_config_info *)buff;
596 vc_vqci->vsi_id = vf->vsi_res->vsi_id;
597 vc_vqci->num_queue_pairs = nb_qp;
599 for (i = 0, vc_qpi = vc_vqci->qpair; i < nb_qp; i++, vc_qpi++) {
600 i40evf_fill_virtchnl_vsi_txq_info(&vc_qpi->txq,
601 vc_vqci->vsi_id, i, dev->data->nb_tx_queues, txq[i]);
602 i40evf_fill_virtchnl_vsi_rxq_info(&vc_qpi->rxq,
603 vc_vqci->vsi_id, i, dev->data->nb_rx_queues,
604 vf->max_pkt_len, rxq[i]);
606 memset(&args, 0, sizeof(args));
607 args.ops = VIRTCHNL_OP_CONFIG_VSI_QUEUES;
608 args.in_args = (uint8_t *)vc_vqci;
609 args.in_args_size = size;
610 args.out_buffer = vf->aq_resp;
611 args.out_size = I40E_AQ_BUF_SZ;
612 ret = i40evf_execute_vf_cmd(dev, &args);
614 PMD_DRV_LOG(ERR, "Failed to execute command of "
615 "VIRTCHNL_OP_CONFIG_VSI_QUEUES");
621 i40evf_config_irq_map(struct rte_eth_dev *dev)
623 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
624 struct vf_cmd_info args;
625 uint8_t cmd_buffer[sizeof(struct virtchnl_irq_map_info) + \
626 sizeof(struct virtchnl_vector_map)];
627 struct virtchnl_irq_map_info *map_info;
628 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
629 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
633 if (dev->data->dev_conf.intr_conf.rxq != 0 &&
634 rte_intr_allow_others(intr_handle))
635 vector_id = I40E_RX_VEC_START;
637 vector_id = I40E_MISC_VEC_ID;
639 map_info = (struct virtchnl_irq_map_info *)cmd_buffer;
640 map_info->num_vectors = 1;
641 map_info->vecmap[0].rxitr_idx = I40E_ITR_INDEX_DEFAULT;
642 map_info->vecmap[0].vsi_id = vf->vsi_res->vsi_id;
643 /* Alway use default dynamic MSIX interrupt */
644 map_info->vecmap[0].vector_id = vector_id;
645 /* Don't map any tx queue */
646 map_info->vecmap[0].txq_map = 0;
647 map_info->vecmap[0].rxq_map = 0;
648 for (i = 0; i < dev->data->nb_rx_queues; i++) {
649 map_info->vecmap[0].rxq_map |= 1 << i;
650 if (rte_intr_dp_is_en(intr_handle))
651 intr_handle->intr_vec[i] = vector_id;
654 args.ops = VIRTCHNL_OP_CONFIG_IRQ_MAP;
655 args.in_args = (u8 *)cmd_buffer;
656 args.in_args_size = sizeof(cmd_buffer);
657 args.out_buffer = vf->aq_resp;
658 args.out_size = I40E_AQ_BUF_SZ;
659 err = i40evf_execute_vf_cmd(dev, &args);
661 PMD_DRV_LOG(ERR, "fail to execute command OP_ENABLE_QUEUES");
667 i40evf_switch_queue(struct rte_eth_dev *dev, bool isrx, uint16_t qid,
670 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
671 struct virtchnl_queue_select queue_select;
673 struct vf_cmd_info args;
674 memset(&queue_select, 0, sizeof(queue_select));
675 queue_select.vsi_id = vf->vsi_res->vsi_id;
678 queue_select.rx_queues |= 1 << qid;
680 queue_select.tx_queues |= 1 << qid;
683 args.ops = VIRTCHNL_OP_ENABLE_QUEUES;
685 args.ops = VIRTCHNL_OP_DISABLE_QUEUES;
686 args.in_args = (u8 *)&queue_select;
687 args.in_args_size = sizeof(queue_select);
688 args.out_buffer = vf->aq_resp;
689 args.out_size = I40E_AQ_BUF_SZ;
690 err = i40evf_execute_vf_cmd(dev, &args);
692 PMD_DRV_LOG(ERR, "fail to switch %s %u %s",
693 isrx ? "RX" : "TX", qid, on ? "on" : "off");
699 i40evf_start_queues(struct rte_eth_dev *dev)
701 struct rte_eth_dev_data *dev_data = dev->data;
703 struct i40e_rx_queue *rxq;
704 struct i40e_tx_queue *txq;
706 for (i = 0; i < dev->data->nb_rx_queues; i++) {
707 rxq = dev_data->rx_queues[i];
708 if (rxq->rx_deferred_start)
710 if (i40evf_dev_rx_queue_start(dev, i) != 0) {
711 PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
716 for (i = 0; i < dev->data->nb_tx_queues; i++) {
717 txq = dev_data->tx_queues[i];
718 if (txq->tx_deferred_start)
720 if (i40evf_dev_tx_queue_start(dev, i) != 0) {
721 PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
730 i40evf_stop_queues(struct rte_eth_dev *dev)
734 /* Stop TX queues first */
735 for (i = 0; i < dev->data->nb_tx_queues; i++) {
736 if (i40evf_dev_tx_queue_stop(dev, i) != 0) {
737 PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
742 /* Then stop RX queues */
743 for (i = 0; i < dev->data->nb_rx_queues; i++) {
744 if (i40evf_dev_rx_queue_stop(dev, i) != 0) {
745 PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
754 i40evf_add_mac_addr(struct rte_eth_dev *dev,
755 struct ether_addr *addr,
756 __rte_unused uint32_t index,
757 __rte_unused uint32_t pool)
759 struct virtchnl_ether_addr_list *list;
760 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
761 uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) + \
762 sizeof(struct virtchnl_ether_addr)];
764 struct vf_cmd_info args;
766 if (is_zero_ether_addr(addr)) {
767 PMD_DRV_LOG(ERR, "Invalid mac:%x:%x:%x:%x:%x:%x",
768 addr->addr_bytes[0], addr->addr_bytes[1],
769 addr->addr_bytes[2], addr->addr_bytes[3],
770 addr->addr_bytes[4], addr->addr_bytes[5]);
771 return I40E_ERR_INVALID_MAC_ADDR;
774 list = (struct virtchnl_ether_addr_list *)cmd_buffer;
775 list->vsi_id = vf->vsi_res->vsi_id;
776 list->num_elements = 1;
777 rte_memcpy(list->list[0].addr, addr->addr_bytes,
778 sizeof(addr->addr_bytes));
780 args.ops = VIRTCHNL_OP_ADD_ETH_ADDR;
781 args.in_args = cmd_buffer;
782 args.in_args_size = sizeof(cmd_buffer);
783 args.out_buffer = vf->aq_resp;
784 args.out_size = I40E_AQ_BUF_SZ;
785 err = i40evf_execute_vf_cmd(dev, &args);
787 PMD_DRV_LOG(ERR, "fail to execute command "
788 "OP_ADD_ETHER_ADDRESS");
796 i40evf_del_mac_addr_by_addr(struct rte_eth_dev *dev,
797 struct ether_addr *addr)
799 struct virtchnl_ether_addr_list *list;
800 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
801 uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) + \
802 sizeof(struct virtchnl_ether_addr)];
804 struct vf_cmd_info args;
806 if (i40e_validate_mac_addr(addr->addr_bytes) != I40E_SUCCESS) {
807 PMD_DRV_LOG(ERR, "Invalid mac:%x-%x-%x-%x-%x-%x",
808 addr->addr_bytes[0], addr->addr_bytes[1],
809 addr->addr_bytes[2], addr->addr_bytes[3],
810 addr->addr_bytes[4], addr->addr_bytes[5]);
814 list = (struct virtchnl_ether_addr_list *)cmd_buffer;
815 list->vsi_id = vf->vsi_res->vsi_id;
816 list->num_elements = 1;
817 rte_memcpy(list->list[0].addr, addr->addr_bytes,
818 sizeof(addr->addr_bytes));
820 args.ops = VIRTCHNL_OP_DEL_ETH_ADDR;
821 args.in_args = cmd_buffer;
822 args.in_args_size = sizeof(cmd_buffer);
823 args.out_buffer = vf->aq_resp;
824 args.out_size = I40E_AQ_BUF_SZ;
825 err = i40evf_execute_vf_cmd(dev, &args);
827 PMD_DRV_LOG(ERR, "fail to execute command "
828 "OP_DEL_ETHER_ADDRESS");
835 i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index)
837 struct rte_eth_dev_data *data = dev->data;
838 struct ether_addr *addr;
840 addr = &data->mac_addrs[index];
842 i40evf_del_mac_addr_by_addr(dev, addr);
846 i40evf_query_stats(struct rte_eth_dev *dev, struct i40e_eth_stats **pstats)
848 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
849 struct virtchnl_queue_select q_stats;
851 struct vf_cmd_info args;
853 memset(&q_stats, 0, sizeof(q_stats));
854 q_stats.vsi_id = vf->vsi_res->vsi_id;
855 args.ops = VIRTCHNL_OP_GET_STATS;
856 args.in_args = (u8 *)&q_stats;
857 args.in_args_size = sizeof(q_stats);
858 args.out_buffer = vf->aq_resp;
859 args.out_size = I40E_AQ_BUF_SZ;
861 err = i40evf_execute_vf_cmd(dev, &args);
863 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_STATS");
867 *pstats = (struct i40e_eth_stats *)args.out_buffer;
872 i40evf_stat_update_48(uint64_t *offset,
875 if (*stat >= *offset)
876 *stat = *stat - *offset;
878 *stat = (uint64_t)((*stat +
879 ((uint64_t)1 << I40E_48_BIT_WIDTH)) - *offset);
881 *stat &= I40E_48_BIT_MASK;
885 i40evf_stat_update_32(uint64_t *offset,
888 if (*stat >= *offset)
889 *stat = (uint64_t)(*stat - *offset);
891 *stat = (uint64_t)((*stat +
892 ((uint64_t)1 << I40E_32_BIT_WIDTH)) - *offset);
896 i40evf_update_stats(struct i40e_vsi *vsi,
897 struct i40e_eth_stats *nes)
899 struct i40e_eth_stats *oes = &vsi->eth_stats_offset;
901 i40evf_stat_update_48(&oes->rx_bytes,
903 i40evf_stat_update_48(&oes->rx_unicast,
905 i40evf_stat_update_48(&oes->rx_multicast,
907 i40evf_stat_update_48(&oes->rx_broadcast,
909 i40evf_stat_update_32(&oes->rx_discards,
911 i40evf_stat_update_32(&oes->rx_unknown_protocol,
912 &nes->rx_unknown_protocol);
913 i40evf_stat_update_48(&oes->tx_bytes,
915 i40evf_stat_update_48(&oes->tx_unicast,
917 i40evf_stat_update_48(&oes->tx_multicast,
919 i40evf_stat_update_48(&oes->tx_broadcast,
921 i40evf_stat_update_32(&oes->tx_errors, &nes->tx_errors);
922 i40evf_stat_update_32(&oes->tx_discards, &nes->tx_discards);
926 i40evf_dev_xstats_reset(struct rte_eth_dev *dev)
929 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
930 struct i40e_eth_stats *pstats = NULL;
932 /* read stat values to clear hardware registers */
933 ret = i40evf_query_stats(dev, &pstats);
935 /* set stats offset base on current values */
937 vf->vsi.eth_stats_offset = *pstats;
940 static int i40evf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
941 struct rte_eth_xstat_name *xstats_names,
942 __rte_unused unsigned limit)
946 if (xstats_names != NULL)
947 for (i = 0; i < I40EVF_NB_XSTATS; i++) {
948 snprintf(xstats_names[i].name,
949 sizeof(xstats_names[i].name),
950 "%s", rte_i40evf_stats_strings[i].name);
952 return I40EVF_NB_XSTATS;
955 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
956 struct rte_eth_xstat *xstats, unsigned n)
960 struct i40e_eth_stats *pstats = NULL;
961 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
962 struct i40e_vsi *vsi = &vf->vsi;
964 if (n < I40EVF_NB_XSTATS)
965 return I40EVF_NB_XSTATS;
967 ret = i40evf_query_stats(dev, &pstats);
974 i40evf_update_stats(vsi, pstats);
976 /* loop over xstats array and values from pstats */
977 for (i = 0; i < I40EVF_NB_XSTATS; i++) {
979 xstats[i].value = *(uint64_t *)(((char *)pstats) +
980 rte_i40evf_stats_strings[i].offset);
983 return I40EVF_NB_XSTATS;
987 i40evf_add_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
989 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
990 struct virtchnl_vlan_filter_list *vlan_list;
991 uint8_t cmd_buffer[sizeof(struct virtchnl_vlan_filter_list) +
994 struct vf_cmd_info args;
996 vlan_list = (struct virtchnl_vlan_filter_list *)cmd_buffer;
997 vlan_list->vsi_id = vf->vsi_res->vsi_id;
998 vlan_list->num_elements = 1;
999 vlan_list->vlan_id[0] = vlanid;
1001 args.ops = VIRTCHNL_OP_ADD_VLAN;
1002 args.in_args = (u8 *)&cmd_buffer;
1003 args.in_args_size = sizeof(cmd_buffer);
1004 args.out_buffer = vf->aq_resp;
1005 args.out_size = I40E_AQ_BUF_SZ;
1006 err = i40evf_execute_vf_cmd(dev, &args);
1008 PMD_DRV_LOG(ERR, "fail to execute command OP_ADD_VLAN");
1014 i40evf_del_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
1016 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1017 struct virtchnl_vlan_filter_list *vlan_list;
1018 uint8_t cmd_buffer[sizeof(struct virtchnl_vlan_filter_list) +
1021 struct vf_cmd_info args;
1023 vlan_list = (struct virtchnl_vlan_filter_list *)cmd_buffer;
1024 vlan_list->vsi_id = vf->vsi_res->vsi_id;
1025 vlan_list->num_elements = 1;
1026 vlan_list->vlan_id[0] = vlanid;
1028 args.ops = VIRTCHNL_OP_DEL_VLAN;
1029 args.in_args = (u8 *)&cmd_buffer;
1030 args.in_args_size = sizeof(cmd_buffer);
1031 args.out_buffer = vf->aq_resp;
1032 args.out_size = I40E_AQ_BUF_SZ;
1033 err = i40evf_execute_vf_cmd(dev, &args);
1035 PMD_DRV_LOG(ERR, "fail to execute command OP_DEL_VLAN");
1040 static const struct rte_pci_id pci_id_i40evf_map[] = {
1041 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF) },
1042 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF_HV) },
1043 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_A0_VF) },
1044 { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_VF) },
1045 { .vendor_id = 0, /* sentinel */ },
1050 i40evf_disable_irq0(struct i40e_hw *hw)
1052 /* Disable all interrupt types */
1053 I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, 0);
1054 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1055 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1056 I40EVF_WRITE_FLUSH(hw);
1061 i40evf_enable_irq0(struct i40e_hw *hw)
1063 /* Enable admin queue interrupt trigger */
1066 i40evf_disable_irq0(hw);
1067 val = I40E_READ_REG(hw, I40E_VFINT_ICR0_ENA1);
1068 val |= I40E_VFINT_ICR0_ENA1_ADMINQ_MASK |
1069 I40E_VFINT_ICR0_ENA1_LINK_STAT_CHANGE_MASK;
1070 I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, val);
1072 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1073 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1074 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1075 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1077 I40EVF_WRITE_FLUSH(hw);
1081 i40evf_check_vf_reset_done(struct i40e_hw *hw)
1085 for (i = 0; i < MAX_RESET_WAIT_CNT; i++) {
1086 reset = I40E_READ_REG(hw, I40E_VFGEN_RSTAT) &
1087 I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1088 reset = reset >> I40E_VFGEN_RSTAT_VFR_STATE_SHIFT;
1089 if (reset == VIRTCHNL_VFR_VFACTIVE ||
1090 reset == VIRTCHNL_VFR_COMPLETED)
1095 if (i >= MAX_RESET_WAIT_CNT)
1101 i40evf_reset_vf(struct i40e_hw *hw)
1105 if (i40e_vf_reset(hw) != I40E_SUCCESS) {
1106 PMD_INIT_LOG(ERR, "Reset VF NIC failed");
1110 * After issuing vf reset command to pf, pf won't necessarily
1111 * reset vf, it depends on what state it exactly is. If it's not
1112 * initialized yet, it won't have vf reset since it's in a certain
1113 * state. If not, it will try to reset. Even vf is reset, pf will
1114 * set I40E_VFGEN_RSTAT to COMPLETE first, then wait 10ms and set
1115 * it to ACTIVE. In this duration, vf may not catch the moment that
1116 * COMPLETE is set. So, for vf, we'll try to wait a long time.
1120 ret = i40evf_check_vf_reset_done(hw);
1122 PMD_INIT_LOG(ERR, "VF is still resetting");
1130 i40evf_init_vf(struct rte_eth_dev *dev)
1133 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1134 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1136 i40e_calc_itr_interval(RTE_LIBRTE_I40E_ITR_INTERVAL, 0, 0);
1138 vf->adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1139 vf->dev_data = dev->data;
1140 err = i40e_set_mac_type(hw);
1142 PMD_INIT_LOG(ERR, "set_mac_type failed: %d", err);
1146 err = i40evf_check_vf_reset_done(hw);
1150 i40e_init_adminq_parameter(hw);
1151 err = i40e_init_adminq(hw);
1153 PMD_INIT_LOG(ERR, "init_adminq failed: %d", err);
1157 /* Reset VF and wait until it's complete */
1158 if (i40evf_reset_vf(hw)) {
1159 PMD_INIT_LOG(ERR, "reset NIC failed");
1163 /* VF reset, shutdown admin queue and initialize again */
1164 if (i40e_shutdown_adminq(hw) != I40E_SUCCESS) {
1165 PMD_INIT_LOG(ERR, "i40e_shutdown_adminq failed");
1169 i40e_init_adminq_parameter(hw);
1170 if (i40e_init_adminq(hw) != I40E_SUCCESS) {
1171 PMD_INIT_LOG(ERR, "init_adminq failed");
1175 vf->aq_resp = rte_zmalloc("vf_aq_resp", I40E_AQ_BUF_SZ, 0);
1177 PMD_INIT_LOG(ERR, "unable to allocate vf_aq_resp memory");
1180 if (i40evf_check_api_version(dev) != 0) {
1181 PMD_INIT_LOG(ERR, "check_api version failed");
1184 bufsz = sizeof(struct virtchnl_vf_resource) +
1185 (I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource));
1186 vf->vf_res = rte_zmalloc("vf_res", bufsz, 0);
1188 PMD_INIT_LOG(ERR, "unable to allocate vf_res memory");
1192 if (i40evf_get_vf_resource(dev) != 0) {
1193 PMD_INIT_LOG(ERR, "i40evf_get_vf_config failed");
1197 /* got VF config message back from PF, now we can parse it */
1198 for (i = 0; i < vf->vf_res->num_vsis; i++) {
1199 if (vf->vf_res->vsi_res[i].vsi_type == VIRTCHNL_VSI_SRIOV)
1200 vf->vsi_res = &vf->vf_res->vsi_res[i];
1204 PMD_INIT_LOG(ERR, "no LAN VSI found");
1208 if (hw->mac.type == I40E_MAC_X722_VF)
1209 vf->flags = I40E_FLAG_RSS_AQ_CAPABLE;
1210 vf->vsi.vsi_id = vf->vsi_res->vsi_id;
1212 switch (vf->vsi_res->vsi_type) {
1213 case VIRTCHNL_VSI_SRIOV:
1214 vf->vsi.type = I40E_VSI_SRIOV;
1217 vf->vsi.type = I40E_VSI_TYPE_UNKNOWN;
1220 vf->vsi.nb_qps = vf->vsi_res->num_queue_pairs;
1221 vf->vsi.adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1223 /* Store the MAC address configured by host, or generate random one */
1224 if (is_valid_assigned_ether_addr((struct ether_addr *)hw->mac.addr))
1225 vf->flags |= I40E_FLAG_VF_MAC_BY_PF;
1227 eth_random_addr(hw->mac.addr); /* Generate a random one */
1229 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1230 (I40E_ITR_INDEX_DEFAULT <<
1231 I40E_VFINT_DYN_CTL0_ITR_INDX_SHIFT) |
1233 I40E_VFINT_DYN_CTL0_INTERVAL_SHIFT));
1234 I40EVF_WRITE_FLUSH(hw);
1239 rte_free(vf->vf_res);
1242 rte_free(vf->aq_resp);
1244 i40e_shutdown_adminq(hw); /* ignore error */
1250 i40evf_uninit_vf(struct rte_eth_dev *dev)
1252 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1253 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1255 PMD_INIT_FUNC_TRACE();
1257 if (hw->adapter_stopped == 0)
1258 i40evf_dev_close(dev);
1259 rte_free(vf->vf_res);
1261 rte_free(vf->aq_resp);
1268 i40evf_handle_pf_event(struct rte_eth_dev *dev, uint8_t *msg,
1269 __rte_unused uint16_t msglen)
1271 struct virtchnl_pf_event *pf_msg =
1272 (struct virtchnl_pf_event *)msg;
1273 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1275 switch (pf_msg->event) {
1276 case VIRTCHNL_EVENT_RESET_IMPENDING:
1277 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_RESET_IMPENDING event");
1278 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET,
1281 case VIRTCHNL_EVENT_LINK_CHANGE:
1282 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_LINK_CHANGE event");
1283 vf->link_up = pf_msg->event_data.link_event.link_status;
1284 vf->link_speed = pf_msg->event_data.link_event.link_speed;
1286 case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
1287 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_PF_DRIVER_CLOSE event");
1290 PMD_DRV_LOG(ERR, " unknown event received %u", pf_msg->event);
1296 i40evf_handle_aq_msg(struct rte_eth_dev *dev)
1298 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1299 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1300 struct i40e_arq_event_info info;
1301 uint16_t pending, aq_opc;
1302 enum virtchnl_ops msg_opc;
1303 enum i40e_status_code msg_ret;
1306 info.buf_len = I40E_AQ_BUF_SZ;
1308 PMD_DRV_LOG(ERR, "Buffer for adminq resp should not be NULL");
1311 info.msg_buf = vf->aq_resp;
1315 ret = i40e_clean_arq_element(hw, &info, &pending);
1317 if (ret != I40E_SUCCESS) {
1318 PMD_DRV_LOG(INFO, "Failed to read msg from AdminQ,"
1322 aq_opc = rte_le_to_cpu_16(info.desc.opcode);
1323 /* For the message sent from pf to vf, opcode is stored in
1324 * cookie_high of struct i40e_aq_desc, while return error code
1325 * are stored in cookie_low, Which is done by
1326 * i40e_aq_send_msg_to_vf in PF driver.*/
1327 msg_opc = (enum virtchnl_ops)rte_le_to_cpu_32(
1328 info.desc.cookie_high);
1329 msg_ret = (enum i40e_status_code)rte_le_to_cpu_32(
1330 info.desc.cookie_low);
1332 case i40e_aqc_opc_send_msg_to_vf:
1333 if (msg_opc == VIRTCHNL_OP_EVENT)
1335 i40evf_handle_pf_event(dev, info.msg_buf,
1338 /* read message and it's expected one */
1339 if (msg_opc == vf->pend_cmd) {
1340 vf->cmd_retval = msg_ret;
1341 /* prevent compiler reordering */
1342 rte_compiler_barrier();
1345 PMD_DRV_LOG(ERR, "command mismatch,"
1346 "expect %u, get %u",
1347 vf->pend_cmd, msg_opc);
1348 PMD_DRV_LOG(DEBUG, "adminq response is received,"
1349 " opcode = %d", msg_opc);
1353 PMD_DRV_LOG(ERR, "Request %u is not supported yet",
1361 * Interrupt handler triggered by NIC for handling
1362 * specific interrupt. Only adminq interrupt is processed in VF.
1365 * Pointer to interrupt handle.
1367 * The address of parameter (struct rte_eth_dev *) regsitered before.
1373 i40evf_dev_interrupt_handler(void *param)
1375 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1376 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1379 i40evf_disable_irq0(hw);
1381 /* read out interrupt causes */
1382 icr0 = I40E_READ_REG(hw, I40E_VFINT_ICR01);
1384 /* No interrupt event indicated */
1385 if (!(icr0 & I40E_VFINT_ICR01_INTEVENT_MASK)) {
1386 PMD_DRV_LOG(DEBUG, "No interrupt event, nothing to do");
1390 if (icr0 & I40E_VFINT_ICR01_ADMINQ_MASK) {
1391 PMD_DRV_LOG(DEBUG, "ICR01_ADMINQ is reported");
1392 i40evf_handle_aq_msg(dev);
1395 /* Link Status Change interrupt */
1396 if (icr0 & I40E_VFINT_ICR01_LINK_STAT_CHANGE_MASK)
1397 PMD_DRV_LOG(DEBUG, "LINK_STAT_CHANGE is reported,"
1401 i40evf_enable_irq0(hw);
1405 i40evf_dev_init(struct rte_eth_dev *eth_dev)
1408 = I40E_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1409 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1411 PMD_INIT_FUNC_TRACE();
1413 /* assign ops func pointer */
1414 eth_dev->dev_ops = &i40evf_eth_dev_ops;
1415 eth_dev->rx_pkt_burst = &i40e_recv_pkts;
1416 eth_dev->tx_pkt_burst = &i40e_xmit_pkts;
1419 * For secondary processes, we don't initialise any further as primary
1420 * has already done this work.
1422 if (rte_eal_process_type() != RTE_PROC_PRIMARY){
1423 i40e_set_rx_function(eth_dev);
1424 i40e_set_tx_function(eth_dev);
1427 i40e_set_default_ptype_table(eth_dev);
1428 i40e_set_default_pctype_table(eth_dev);
1429 rte_eth_copy_pci_info(eth_dev, pci_dev);
1431 hw->vendor_id = pci_dev->id.vendor_id;
1432 hw->device_id = pci_dev->id.device_id;
1433 hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
1434 hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
1435 hw->bus.device = pci_dev->addr.devid;
1436 hw->bus.func = pci_dev->addr.function;
1437 hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1438 hw->adapter_stopped = 0;
1440 if(i40evf_init_vf(eth_dev) != 0) {
1441 PMD_INIT_LOG(ERR, "Init vf failed");
1445 /* register callback func to eal lib */
1446 rte_intr_callback_register(&pci_dev->intr_handle,
1447 i40evf_dev_interrupt_handler, (void *)eth_dev);
1449 /* enable uio intr after callback register */
1450 rte_intr_enable(&pci_dev->intr_handle);
1452 /* configure and enable device interrupt */
1453 i40evf_enable_irq0(hw);
1456 eth_dev->data->mac_addrs = rte_zmalloc("i40evf_mac",
1457 ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX,
1459 if (eth_dev->data->mac_addrs == NULL) {
1460 PMD_INIT_LOG(ERR, "Failed to allocate %d bytes needed to"
1461 " store MAC addresses",
1462 ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX);
1465 ether_addr_copy((struct ether_addr *)hw->mac.addr,
1466 ð_dev->data->mac_addrs[0]);
1472 i40evf_dev_uninit(struct rte_eth_dev *eth_dev)
1474 PMD_INIT_FUNC_TRACE();
1476 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1479 eth_dev->dev_ops = NULL;
1480 eth_dev->rx_pkt_burst = NULL;
1481 eth_dev->tx_pkt_burst = NULL;
1483 if (i40evf_uninit_vf(eth_dev) != 0) {
1484 PMD_INIT_LOG(ERR, "i40evf_uninit_vf failed");
1488 rte_free(eth_dev->data->mac_addrs);
1489 eth_dev->data->mac_addrs = NULL;
1494 static int eth_i40evf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1495 struct rte_pci_device *pci_dev)
1497 return rte_eth_dev_pci_generic_probe(pci_dev,
1498 sizeof(struct i40e_adapter), i40evf_dev_init);
1501 static int eth_i40evf_pci_remove(struct rte_pci_device *pci_dev)
1503 return rte_eth_dev_pci_generic_remove(pci_dev, i40evf_dev_uninit);
1507 * virtual function driver struct
1509 static struct rte_pci_driver rte_i40evf_pmd = {
1510 .id_table = pci_id_i40evf_map,
1511 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_IOVA_AS_VA,
1512 .probe = eth_i40evf_pci_probe,
1513 .remove = eth_i40evf_pci_remove,
1516 RTE_PMD_REGISTER_PCI(net_i40e_vf, rte_i40evf_pmd);
1517 RTE_PMD_REGISTER_PCI_TABLE(net_i40e_vf, pci_id_i40evf_map);
1518 RTE_PMD_REGISTER_KMOD_DEP(net_i40e_vf, "* igb_uio | vfio-pci");
1521 i40evf_dev_configure(struct rte_eth_dev *dev)
1523 struct i40e_adapter *ad =
1524 I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1525 struct rte_eth_conf *conf = &dev->data->dev_conf;
1528 /* Initialize to TRUE. If any of Rx queues doesn't meet the bulk
1529 * allocation or vector Rx preconditions we will reset it.
1531 ad->rx_bulk_alloc_allowed = true;
1532 ad->rx_vec_allowed = true;
1533 ad->tx_simple_allowed = true;
1534 ad->tx_vec_allowed = true;
1536 /* For non-DPDK PF drivers, VF has no ability to disable HW
1537 * CRC strip, and is implicitly enabled by the PF.
1539 if (!(conf->rxmode.offloads & DEV_RX_OFFLOAD_CRC_STRIP)) {
1540 vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1541 if ((vf->version_major == VIRTCHNL_VERSION_MAJOR) &&
1542 (vf->version_minor <= VIRTCHNL_VERSION_MINOR)) {
1543 /* Peer is running non-DPDK PF driver. */
1544 PMD_INIT_LOG(ERR, "VF can't disable HW CRC Strip");
1549 return i40evf_init_vlan(dev);
1553 i40evf_init_vlan(struct rte_eth_dev *dev)
1555 /* Apply vlan offload setting */
1556 i40evf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1562 i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1564 struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1565 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1567 if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
1570 /* Vlan stripping setting */
1571 if (mask & ETH_VLAN_STRIP_MASK) {
1572 /* Enable or disable VLAN stripping */
1573 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
1574 i40evf_enable_vlan_strip(dev);
1576 i40evf_disable_vlan_strip(dev);
1583 i40evf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1585 struct i40e_rx_queue *rxq;
1587 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1589 PMD_INIT_FUNC_TRACE();
1591 if (rx_queue_id < dev->data->nb_rx_queues) {
1592 rxq = dev->data->rx_queues[rx_queue_id];
1594 err = i40e_alloc_rx_queue_mbufs(rxq);
1596 PMD_DRV_LOG(ERR, "Failed to allocate RX queue mbuf");
1602 /* Init the RX tail register. */
1603 I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1604 I40EVF_WRITE_FLUSH(hw);
1606 /* Ready to switch the queue on */
1607 err = i40evf_switch_queue(dev, TRUE, rx_queue_id, TRUE);
1610 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on",
1613 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1620 i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1622 struct i40e_rx_queue *rxq;
1625 if (rx_queue_id < dev->data->nb_rx_queues) {
1626 rxq = dev->data->rx_queues[rx_queue_id];
1628 err = i40evf_switch_queue(dev, TRUE, rx_queue_id, FALSE);
1631 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off",
1636 i40e_rx_queue_release_mbufs(rxq);
1637 i40e_reset_rx_queue(rxq);
1638 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1645 i40evf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1649 PMD_INIT_FUNC_TRACE();
1651 if (tx_queue_id < dev->data->nb_tx_queues) {
1653 /* Ready to switch the queue on */
1654 err = i40evf_switch_queue(dev, FALSE, tx_queue_id, TRUE);
1657 PMD_DRV_LOG(ERR, "Failed to switch TX queue %u on",
1660 dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1667 i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1669 struct i40e_tx_queue *txq;
1672 if (tx_queue_id < dev->data->nb_tx_queues) {
1673 txq = dev->data->tx_queues[tx_queue_id];
1675 err = i40evf_switch_queue(dev, FALSE, tx_queue_id, FALSE);
1678 PMD_DRV_LOG(ERR, "Failed to switch TX queue %u off",
1683 i40e_tx_queue_release_mbufs(txq);
1684 i40e_reset_tx_queue(txq);
1685 dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1692 i40evf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1697 ret = i40evf_add_vlan(dev, vlan_id);
1699 ret = i40evf_del_vlan(dev,vlan_id);
1705 i40evf_rxq_init(struct rte_eth_dev *dev, struct i40e_rx_queue *rxq)
1707 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1708 struct rte_eth_dev_data *dev_data = dev->data;
1709 struct rte_pktmbuf_pool_private *mbp_priv;
1710 uint16_t buf_size, len;
1712 rxq->qrx_tail = hw->hw_addr + I40E_QRX_TAIL1(rxq->queue_id);
1713 I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1714 I40EVF_WRITE_FLUSH(hw);
1716 /* Calculate the maximum packet length allowed */
1717 mbp_priv = rte_mempool_get_priv(rxq->mp);
1718 buf_size = (uint16_t)(mbp_priv->mbuf_data_room_size -
1719 RTE_PKTMBUF_HEADROOM);
1720 rxq->hs_mode = i40e_header_split_none;
1721 rxq->rx_hdr_len = 0;
1722 rxq->rx_buf_len = RTE_ALIGN(buf_size, (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
1723 len = rxq->rx_buf_len * I40E_MAX_CHAINED_RX_BUFFERS;
1724 rxq->max_pkt_len = RTE_MIN(len,
1725 dev_data->dev_conf.rxmode.max_rx_pkt_len);
1728 * Check if the jumbo frame and maximum packet length are set correctly
1730 if (dev_data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
1731 if (rxq->max_pkt_len <= ETHER_MAX_LEN ||
1732 rxq->max_pkt_len > I40E_FRAME_SIZE_MAX) {
1733 PMD_DRV_LOG(ERR, "maximum packet length must be "
1734 "larger than %u and smaller than %u, as jumbo "
1735 "frame is enabled", (uint32_t)ETHER_MAX_LEN,
1736 (uint32_t)I40E_FRAME_SIZE_MAX);
1737 return I40E_ERR_CONFIG;
1740 if (rxq->max_pkt_len < ETHER_MIN_LEN ||
1741 rxq->max_pkt_len > ETHER_MAX_LEN) {
1742 PMD_DRV_LOG(ERR, "maximum packet length must be "
1743 "larger than %u and smaller than %u, as jumbo "
1744 "frame is disabled", (uint32_t)ETHER_MIN_LEN,
1745 (uint32_t)ETHER_MAX_LEN);
1746 return I40E_ERR_CONFIG;
1750 if ((dev_data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_SCATTER) ||
1751 (rxq->max_pkt_len + 2 * I40E_VLAN_TAG_SIZE) > buf_size) {
1752 dev_data->scattered_rx = 1;
1759 i40evf_rx_init(struct rte_eth_dev *dev)
1761 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1763 int ret = I40E_SUCCESS;
1764 struct i40e_rx_queue **rxq =
1765 (struct i40e_rx_queue **)dev->data->rx_queues;
1767 i40evf_config_rss(vf);
1768 for (i = 0; i < dev->data->nb_rx_queues; i++) {
1769 if (!rxq[i] || !rxq[i]->q_set)
1771 ret = i40evf_rxq_init(dev, rxq[i]);
1772 if (ret != I40E_SUCCESS)
1775 if (ret == I40E_SUCCESS)
1776 i40e_set_rx_function(dev);
1782 i40evf_tx_init(struct rte_eth_dev *dev)
1785 struct i40e_tx_queue **txq =
1786 (struct i40e_tx_queue **)dev->data->tx_queues;
1787 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1789 for (i = 0; i < dev->data->nb_tx_queues; i++)
1790 txq[i]->qtx_tail = hw->hw_addr + I40E_QTX_TAIL1(i);
1792 i40e_set_tx_function(dev);
1796 i40evf_enable_queues_intr(struct rte_eth_dev *dev)
1798 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1799 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1800 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1802 if (!rte_intr_allow_others(intr_handle)) {
1804 I40E_VFINT_DYN_CTL01,
1805 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1806 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1807 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1808 I40EVF_WRITE_FLUSH(hw);
1812 I40EVF_WRITE_FLUSH(hw);
1816 i40evf_disable_queues_intr(struct rte_eth_dev *dev)
1818 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1819 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1820 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1822 if (!rte_intr_allow_others(intr_handle)) {
1823 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1824 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1825 I40EVF_WRITE_FLUSH(hw);
1829 I40EVF_WRITE_FLUSH(hw);
1833 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
1835 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1836 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1837 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1839 i40e_calc_itr_interval(RTE_LIBRTE_I40E_ITR_INTERVAL, 0, 0);
1842 msix_intr = intr_handle->intr_vec[queue_id];
1843 if (msix_intr == I40E_MISC_VEC_ID)
1844 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1845 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1846 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1847 (0 << I40E_VFINT_DYN_CTL01_ITR_INDX_SHIFT) |
1849 I40E_VFINT_DYN_CTL01_INTERVAL_SHIFT));
1852 I40E_VFINT_DYN_CTLN1(msix_intr -
1854 I40E_VFINT_DYN_CTLN1_INTENA_MASK |
1855 I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK |
1856 (0 << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) |
1858 I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT));
1860 I40EVF_WRITE_FLUSH(hw);
1862 rte_intr_enable(&pci_dev->intr_handle);
1868 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
1870 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1871 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1872 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1875 msix_intr = intr_handle->intr_vec[queue_id];
1876 if (msix_intr == I40E_MISC_VEC_ID)
1877 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01, 0);
1880 I40E_VFINT_DYN_CTLN1(msix_intr -
1884 I40EVF_WRITE_FLUSH(hw);
1890 i40evf_add_del_all_mac_addr(struct rte_eth_dev *dev, bool add)
1892 struct virtchnl_ether_addr_list *list;
1893 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1898 struct ether_addr *addr;
1899 struct vf_cmd_info args;
1903 len = sizeof(struct virtchnl_ether_addr_list);
1904 for (i = begin; i < I40E_NUM_MACADDR_MAX; i++, next_begin++) {
1905 if (is_zero_ether_addr(&dev->data->mac_addrs[i]))
1907 len += sizeof(struct virtchnl_ether_addr);
1908 if (len >= I40E_AQ_BUF_SZ) {
1914 list = rte_zmalloc("i40evf_del_mac_buffer", len, 0);
1916 PMD_DRV_LOG(ERR, "fail to allocate memory");
1920 for (i = begin; i < next_begin; i++) {
1921 addr = &dev->data->mac_addrs[i];
1922 if (is_zero_ether_addr(addr))
1924 rte_memcpy(list->list[j].addr, addr->addr_bytes,
1925 sizeof(addr->addr_bytes));
1926 PMD_DRV_LOG(DEBUG, "add/rm mac:%x:%x:%x:%x:%x:%x",
1927 addr->addr_bytes[0], addr->addr_bytes[1],
1928 addr->addr_bytes[2], addr->addr_bytes[3],
1929 addr->addr_bytes[4], addr->addr_bytes[5]);
1932 list->vsi_id = vf->vsi_res->vsi_id;
1933 list->num_elements = j;
1934 args.ops = add ? VIRTCHNL_OP_ADD_ETH_ADDR :
1935 VIRTCHNL_OP_DEL_ETH_ADDR;
1936 args.in_args = (uint8_t *)list;
1937 args.in_args_size = len;
1938 args.out_buffer = vf->aq_resp;
1939 args.out_size = I40E_AQ_BUF_SZ;
1940 err = i40evf_execute_vf_cmd(dev, &args);
1942 PMD_DRV_LOG(ERR, "fail to execute command %s",
1943 add ? "OP_ADD_ETHER_ADDRESS" :
1944 "OP_DEL_ETHER_ADDRESS");
1953 } while (begin < I40E_NUM_MACADDR_MAX);
1957 i40evf_dev_start(struct rte_eth_dev *dev)
1959 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1960 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1961 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1962 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1963 uint32_t intr_vector = 0;
1965 PMD_INIT_FUNC_TRACE();
1967 hw->adapter_stopped = 0;
1969 vf->max_pkt_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
1970 vf->num_queue_pairs = RTE_MAX(dev->data->nb_rx_queues,
1971 dev->data->nb_tx_queues);
1973 /* check and configure queue intr-vector mapping */
1974 if (rte_intr_cap_multiple(intr_handle) &&
1975 dev->data->dev_conf.intr_conf.rxq) {
1976 intr_vector = dev->data->nb_rx_queues;
1977 if (rte_intr_efd_enable(intr_handle, intr_vector))
1981 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
1982 intr_handle->intr_vec =
1983 rte_zmalloc("intr_vec",
1984 dev->data->nb_rx_queues * sizeof(int), 0);
1985 if (!intr_handle->intr_vec) {
1986 PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
1987 " intr_vec", dev->data->nb_rx_queues);
1992 if (i40evf_rx_init(dev) != 0){
1993 PMD_DRV_LOG(ERR, "failed to do RX init");
1997 i40evf_tx_init(dev);
1999 if (i40evf_configure_vsi_queues(dev) != 0) {
2000 PMD_DRV_LOG(ERR, "configure queues failed");
2003 if (i40evf_config_irq_map(dev)) {
2004 PMD_DRV_LOG(ERR, "config_irq_map failed");
2008 /* Set all mac addrs */
2009 i40evf_add_del_all_mac_addr(dev, TRUE);
2010 /* Set all multicast addresses */
2011 i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2014 if (i40evf_start_queues(dev) != 0) {
2015 PMD_DRV_LOG(ERR, "enable queues failed");
2019 /* When a VF port is bound to VFIO-PCI, only miscellaneous interrupt
2020 * is mapped to VFIO vector 0 in i40evf_dev_init( ).
2021 * If previous VFIO interrupt mapping set in i40evf_dev_init( ) is
2022 * not cleared, it will fail when rte_intr_enable( ) tries to map Rx
2023 * queue interrupt to other VFIO vectors.
2024 * So clear uio/vfio intr/evevnfd first to avoid failure.
2026 if (dev->data->dev_conf.intr_conf.rxq != 0) {
2027 rte_intr_disable(intr_handle);
2028 rte_intr_enable(intr_handle);
2031 i40evf_enable_queues_intr(dev);
2036 i40evf_add_del_all_mac_addr(dev, FALSE);
2037 i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2044 i40evf_dev_stop(struct rte_eth_dev *dev)
2046 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2047 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2048 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2049 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2051 PMD_INIT_FUNC_TRACE();
2053 if (hw->adapter_stopped == 1)
2055 i40evf_stop_queues(dev);
2056 i40evf_disable_queues_intr(dev);
2057 i40e_dev_clear_queues(dev);
2059 /* Clean datapath event and queue/vec mapping */
2060 rte_intr_efd_disable(intr_handle);
2061 if (intr_handle->intr_vec) {
2062 rte_free(intr_handle->intr_vec);
2063 intr_handle->intr_vec = NULL;
2065 /* remove all mac addrs */
2066 i40evf_add_del_all_mac_addr(dev, FALSE);
2067 /* remove all multicast addresses */
2068 i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2070 hw->adapter_stopped = 1;
2075 i40evf_dev_link_update(struct rte_eth_dev *dev,
2076 __rte_unused int wait_to_complete)
2078 struct rte_eth_link new_link;
2079 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2081 * DPDK pf host provide interfacet to acquire link status
2082 * while Linux driver does not
2085 memset(&new_link, 0, sizeof(new_link));
2086 /* Linux driver PF host */
2087 switch (vf->link_speed) {
2088 case I40E_LINK_SPEED_100MB:
2089 new_link.link_speed = ETH_SPEED_NUM_100M;
2091 case I40E_LINK_SPEED_1GB:
2092 new_link.link_speed = ETH_SPEED_NUM_1G;
2094 case I40E_LINK_SPEED_10GB:
2095 new_link.link_speed = ETH_SPEED_NUM_10G;
2097 case I40E_LINK_SPEED_20GB:
2098 new_link.link_speed = ETH_SPEED_NUM_20G;
2100 case I40E_LINK_SPEED_25GB:
2101 new_link.link_speed = ETH_SPEED_NUM_25G;
2103 case I40E_LINK_SPEED_40GB:
2104 new_link.link_speed = ETH_SPEED_NUM_40G;
2107 new_link.link_speed = ETH_SPEED_NUM_100M;
2110 /* full duplex only */
2111 new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
2112 new_link.link_status = vf->link_up ? ETH_LINK_UP :
2114 new_link.link_autoneg =
2115 dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED;
2117 return rte_eth_linkstatus_set(dev, &new_link);
2121 i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev)
2123 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2126 /* If enabled, just return */
2127 if (vf->promisc_unicast_enabled)
2130 ret = i40evf_config_promisc(dev, 1, vf->promisc_multicast_enabled);
2132 vf->promisc_unicast_enabled = TRUE;
2136 i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev)
2138 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2141 /* If disabled, just return */
2142 if (!vf->promisc_unicast_enabled)
2145 ret = i40evf_config_promisc(dev, 0, vf->promisc_multicast_enabled);
2147 vf->promisc_unicast_enabled = FALSE;
2151 i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev)
2153 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2156 /* If enabled, just return */
2157 if (vf->promisc_multicast_enabled)
2160 ret = i40evf_config_promisc(dev, vf->promisc_unicast_enabled, 1);
2162 vf->promisc_multicast_enabled = TRUE;
2166 i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev)
2168 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2171 /* If enabled, just return */
2172 if (!vf->promisc_multicast_enabled)
2175 ret = i40evf_config_promisc(dev, vf->promisc_unicast_enabled, 0);
2177 vf->promisc_multicast_enabled = FALSE;
2181 i40evf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2183 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2185 memset(dev_info, 0, sizeof(*dev_info));
2186 dev_info->pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2187 dev_info->max_rx_queues = vf->vsi_res->num_queue_pairs;
2188 dev_info->max_tx_queues = vf->vsi_res->num_queue_pairs;
2189 dev_info->min_rx_bufsize = I40E_BUF_SIZE_MIN;
2190 dev_info->max_rx_pktlen = I40E_FRAME_SIZE_MAX;
2191 dev_info->hash_key_size = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2192 dev_info->reta_size = ETH_RSS_RETA_SIZE_64;
2193 dev_info->flow_type_rss_offloads = vf->adapter->flow_types_mask;
2194 dev_info->max_mac_addrs = I40E_NUM_MACADDR_MAX;
2195 dev_info->rx_queue_offload_capa = 0;
2196 dev_info->rx_offload_capa =
2197 DEV_RX_OFFLOAD_VLAN_STRIP |
2198 DEV_RX_OFFLOAD_QINQ_STRIP |
2199 DEV_RX_OFFLOAD_IPV4_CKSUM |
2200 DEV_RX_OFFLOAD_UDP_CKSUM |
2201 DEV_RX_OFFLOAD_TCP_CKSUM |
2202 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
2203 DEV_RX_OFFLOAD_CRC_STRIP |
2204 DEV_RX_OFFLOAD_SCATTER;
2206 dev_info->tx_queue_offload_capa = 0;
2207 dev_info->tx_offload_capa =
2208 DEV_TX_OFFLOAD_VLAN_INSERT |
2209 DEV_TX_OFFLOAD_QINQ_INSERT |
2210 DEV_TX_OFFLOAD_IPV4_CKSUM |
2211 DEV_TX_OFFLOAD_UDP_CKSUM |
2212 DEV_TX_OFFLOAD_TCP_CKSUM |
2213 DEV_TX_OFFLOAD_SCTP_CKSUM |
2214 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
2215 DEV_TX_OFFLOAD_TCP_TSO |
2216 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
2217 DEV_TX_OFFLOAD_GRE_TNL_TSO |
2218 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
2219 DEV_TX_OFFLOAD_GENEVE_TNL_TSO;
2221 dev_info->default_rxconf = (struct rte_eth_rxconf) {
2223 .pthresh = I40E_DEFAULT_RX_PTHRESH,
2224 .hthresh = I40E_DEFAULT_RX_HTHRESH,
2225 .wthresh = I40E_DEFAULT_RX_WTHRESH,
2227 .rx_free_thresh = I40E_DEFAULT_RX_FREE_THRESH,
2232 dev_info->default_txconf = (struct rte_eth_txconf) {
2234 .pthresh = I40E_DEFAULT_TX_PTHRESH,
2235 .hthresh = I40E_DEFAULT_TX_HTHRESH,
2236 .wthresh = I40E_DEFAULT_TX_WTHRESH,
2238 .tx_free_thresh = I40E_DEFAULT_TX_FREE_THRESH,
2239 .tx_rs_thresh = I40E_DEFAULT_TX_RSBIT_THRESH,
2240 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2241 ETH_TXQ_FLAGS_NOOFFLOADS,
2244 dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
2245 .nb_max = I40E_MAX_RING_DESC,
2246 .nb_min = I40E_MIN_RING_DESC,
2247 .nb_align = I40E_ALIGN_RING_DESC,
2250 dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
2251 .nb_max = I40E_MAX_RING_DESC,
2252 .nb_min = I40E_MIN_RING_DESC,
2253 .nb_align = I40E_ALIGN_RING_DESC,
2258 i40evf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2261 struct i40e_eth_stats *pstats = NULL;
2262 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2263 struct i40e_vsi *vsi = &vf->vsi;
2265 ret = i40evf_query_stats(dev, &pstats);
2267 i40evf_update_stats(vsi, pstats);
2269 stats->ipackets = pstats->rx_unicast + pstats->rx_multicast +
2270 pstats->rx_broadcast;
2271 stats->opackets = pstats->tx_broadcast + pstats->tx_multicast +
2273 stats->imissed = pstats->rx_discards;
2274 stats->oerrors = pstats->tx_errors + pstats->tx_discards;
2275 stats->ibytes = pstats->rx_bytes;
2276 stats->obytes = pstats->tx_bytes;
2278 PMD_DRV_LOG(ERR, "Get statistics failed");
2284 i40evf_dev_close(struct rte_eth_dev *dev)
2286 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2287 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2288 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2290 i40evf_dev_stop(dev);
2291 i40e_dev_free_queues(dev);
2292 i40evf_reset_vf(hw);
2293 i40e_shutdown_adminq(hw);
2294 /* disable uio intr before callback unregister */
2295 rte_intr_disable(intr_handle);
2297 /* unregister callback func from eal lib */
2298 rte_intr_callback_unregister(intr_handle,
2299 i40evf_dev_interrupt_handler, dev);
2300 i40evf_disable_irq0(hw);
2304 * Reset VF device only to re-initialize resources in PMD layer
2307 i40evf_dev_reset(struct rte_eth_dev *dev)
2311 ret = i40evf_dev_uninit(dev);
2315 ret = i40evf_dev_init(dev);
2321 i40evf_get_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2323 struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2324 struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2330 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2331 ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, FALSE,
2334 PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
2338 uint32_t *lut_dw = (uint32_t *)lut;
2339 uint16_t i, lut_size_dw = lut_size / 4;
2341 for (i = 0; i < lut_size_dw; i++)
2342 lut_dw[i] = I40E_READ_REG(hw, I40E_VFQF_HLUT(i));
2349 i40evf_set_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2358 vf = I40E_VSI_TO_VF(vsi);
2359 hw = I40E_VSI_TO_HW(vsi);
2361 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2362 ret = i40e_aq_set_rss_lut(hw, vsi->vsi_id, FALSE,
2365 PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
2369 uint32_t *lut_dw = (uint32_t *)lut;
2370 uint16_t i, lut_size_dw = lut_size / 4;
2372 for (i = 0; i < lut_size_dw; i++)
2373 I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i), lut_dw[i]);
2374 I40EVF_WRITE_FLUSH(hw);
2381 i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
2382 struct rte_eth_rss_reta_entry64 *reta_conf,
2385 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2387 uint16_t i, idx, shift;
2390 if (reta_size != ETH_RSS_RETA_SIZE_64) {
2391 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2392 "(%d) doesn't match the number of hardware can "
2393 "support (%d)", reta_size, ETH_RSS_RETA_SIZE_64);
2397 lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2399 PMD_DRV_LOG(ERR, "No memory can be allocated");
2402 ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2405 for (i = 0; i < reta_size; i++) {
2406 idx = i / RTE_RETA_GROUP_SIZE;
2407 shift = i % RTE_RETA_GROUP_SIZE;
2408 if (reta_conf[idx].mask & (1ULL << shift))
2409 lut[i] = reta_conf[idx].reta[shift];
2411 ret = i40evf_set_rss_lut(&vf->vsi, lut, reta_size);
2420 i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
2421 struct rte_eth_rss_reta_entry64 *reta_conf,
2424 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2425 uint16_t i, idx, shift;
2429 if (reta_size != ETH_RSS_RETA_SIZE_64) {
2430 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2431 "(%d) doesn't match the number of hardware can "
2432 "support (%d)", reta_size, ETH_RSS_RETA_SIZE_64);
2436 lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2438 PMD_DRV_LOG(ERR, "No memory can be allocated");
2442 ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2445 for (i = 0; i < reta_size; i++) {
2446 idx = i / RTE_RETA_GROUP_SIZE;
2447 shift = i % RTE_RETA_GROUP_SIZE;
2448 if (reta_conf[idx].mask & (1ULL << shift))
2449 reta_conf[idx].reta[shift] = lut[i];
2459 i40evf_set_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t key_len)
2461 struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2462 struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2465 if (!key || key_len == 0) {
2466 PMD_DRV_LOG(DEBUG, "No key to be configured");
2468 } else if (key_len != (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2470 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
2474 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2475 struct i40e_aqc_get_set_rss_key_data *key_dw =
2476 (struct i40e_aqc_get_set_rss_key_data *)key;
2478 ret = i40e_aq_set_rss_key(hw, vsi->vsi_id, key_dw);
2480 PMD_INIT_LOG(ERR, "Failed to configure RSS key "
2483 uint32_t *hash_key = (uint32_t *)key;
2486 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2487 i40e_write_rx_ctl(hw, I40E_VFQF_HKEY(i), hash_key[i]);
2488 I40EVF_WRITE_FLUSH(hw);
2495 i40evf_get_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t *key_len)
2497 struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2498 struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2501 if (!key || !key_len)
2504 if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2505 ret = i40e_aq_get_rss_key(hw, vsi->vsi_id,
2506 (struct i40e_aqc_get_set_rss_key_data *)key);
2508 PMD_INIT_LOG(ERR, "Failed to get RSS key via AQ");
2512 uint32_t *key_dw = (uint32_t *)key;
2515 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2516 key_dw[i] = i40e_read_rx_ctl(hw, I40E_VFQF_HKEY(i));
2518 *key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2524 i40evf_hw_rss_hash_set(struct i40e_vf *vf, struct rte_eth_rss_conf *rss_conf)
2526 struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2530 ret = i40evf_set_rss_key(&vf->vsi, rss_conf->rss_key,
2531 rss_conf->rss_key_len);
2535 hena = i40e_config_hena(vf->adapter, rss_conf->rss_hf);
2536 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), (uint32_t)hena);
2537 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), (uint32_t)(hena >> 32));
2538 I40EVF_WRITE_FLUSH(hw);
2544 i40evf_disable_rss(struct i40e_vf *vf)
2546 struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2548 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), 0);
2549 i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), 0);
2550 I40EVF_WRITE_FLUSH(hw);
2554 i40evf_config_rss(struct i40e_vf *vf)
2556 struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2557 struct rte_eth_rss_conf rss_conf;
2558 uint32_t i, j, lut = 0, nb_q = (I40E_VFQF_HLUT_MAX_INDEX + 1) * 4;
2561 if (vf->dev_data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS) {
2562 i40evf_disable_rss(vf);
2563 PMD_DRV_LOG(DEBUG, "RSS not configured");
2567 num = RTE_MIN(vf->dev_data->nb_rx_queues, I40E_MAX_QP_NUM_PER_VF);
2568 /* Fill out the look up table */
2569 for (i = 0, j = 0; i < nb_q; i++, j++) {
2572 lut = (lut << 8) | j;
2574 I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i >> 2), lut);
2577 rss_conf = vf->dev_data->dev_conf.rx_adv_conf.rss_conf;
2578 if ((rss_conf.rss_hf & vf->adapter->flow_types_mask) == 0) {
2579 i40evf_disable_rss(vf);
2580 PMD_DRV_LOG(DEBUG, "No hash flag is set");
2584 if (rss_conf.rss_key == NULL || rss_conf.rss_key_len <
2585 (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t)) {
2586 /* Calculate the default hash key */
2587 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2588 rss_key_default[i] = (uint32_t)rte_rand();
2589 rss_conf.rss_key = (uint8_t *)rss_key_default;
2590 rss_conf.rss_key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2594 return i40evf_hw_rss_hash_set(vf, &rss_conf);
2598 i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
2599 struct rte_eth_rss_conf *rss_conf)
2601 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2602 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2603 uint64_t rss_hf = rss_conf->rss_hf & vf->adapter->flow_types_mask;
2606 hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2607 hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2609 if (!(hena & vf->adapter->pctypes_mask)) { /* RSS disabled */
2610 if (rss_hf != 0) /* Enable RSS */
2616 if (rss_hf == 0) /* Disable RSS */
2619 return i40evf_hw_rss_hash_set(vf, rss_conf);
2623 i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2624 struct rte_eth_rss_conf *rss_conf)
2626 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2627 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2630 i40evf_get_rss_key(&vf->vsi, rss_conf->rss_key,
2631 &rss_conf->rss_key_len);
2633 hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2634 hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2635 rss_conf->rss_hf = i40e_parse_hena(vf->adapter, hena);
2641 i40evf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
2643 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2644 struct rte_eth_dev_data *dev_data = vf->dev_data;
2645 uint32_t frame_size = mtu + I40E_ETH_OVERHEAD;
2648 /* check if mtu is within the allowed range */
2649 if ((mtu < ETHER_MIN_MTU) || (frame_size > I40E_FRAME_SIZE_MAX))
2652 /* mtu setting is forbidden if port is start */
2653 if (dev_data->dev_started) {
2654 PMD_DRV_LOG(ERR, "port %d must be stopped before configuration",
2659 if (frame_size > ETHER_MAX_LEN)
2660 dev_data->dev_conf.rxmode.offloads |=
2661 DEV_RX_OFFLOAD_JUMBO_FRAME;
2663 dev_data->dev_conf.rxmode.offloads &=
2664 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
2665 dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
2671 i40evf_set_default_mac_addr(struct rte_eth_dev *dev,
2672 struct ether_addr *mac_addr)
2674 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2675 struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2677 if (!is_valid_assigned_ether_addr(mac_addr)) {
2678 PMD_DRV_LOG(ERR, "Tried to set invalid MAC address.");
2682 if (vf->flags & I40E_FLAG_VF_MAC_BY_PF)
2685 i40evf_del_mac_addr_by_addr(dev, (struct ether_addr *)hw->mac.addr);
2687 i40evf_add_mac_addr(dev, mac_addr, 0, 0);
2689 ether_addr_copy(mac_addr, (struct ether_addr *)hw->mac.addr);
2693 i40evf_add_del_mc_addr_list(struct rte_eth_dev *dev,
2694 struct ether_addr *mc_addrs,
2695 uint32_t mc_addrs_num, bool add)
2697 struct virtchnl_ether_addr_list *list;
2698 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2699 uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) +
2700 (I40E_NUM_MACADDR_MAX * sizeof(struct virtchnl_ether_addr))];
2703 struct vf_cmd_info args;
2705 if (mc_addrs == NULL || mc_addrs_num == 0)
2708 if (mc_addrs_num > I40E_NUM_MACADDR_MAX)
2711 list = (struct virtchnl_ether_addr_list *)cmd_buffer;
2712 list->vsi_id = vf->vsi_res->vsi_id;
2713 list->num_elements = mc_addrs_num;
2715 for (i = 0; i < mc_addrs_num; i++) {
2716 if (!I40E_IS_MULTICAST(mc_addrs[i].addr_bytes)) {
2717 PMD_DRV_LOG(ERR, "Invalid mac:%x:%x:%x:%x:%x:%x",
2718 mc_addrs[i].addr_bytes[0],
2719 mc_addrs[i].addr_bytes[1],
2720 mc_addrs[i].addr_bytes[2],
2721 mc_addrs[i].addr_bytes[3],
2722 mc_addrs[i].addr_bytes[4],
2723 mc_addrs[i].addr_bytes[5]);
2727 memcpy(list->list[i].addr, mc_addrs[i].addr_bytes,
2728 sizeof(list->list[i].addr));
2731 args.ops = add ? VIRTCHNL_OP_ADD_ETH_ADDR : VIRTCHNL_OP_DEL_ETH_ADDR;
2732 args.in_args = cmd_buffer;
2733 args.in_args_size = sizeof(struct virtchnl_ether_addr_list) +
2734 i * sizeof(struct virtchnl_ether_addr);
2735 args.out_buffer = vf->aq_resp;
2736 args.out_size = I40E_AQ_BUF_SZ;
2737 err = i40evf_execute_vf_cmd(dev, &args);
2739 PMD_DRV_LOG(ERR, "fail to execute command %s",
2740 add ? "OP_ADD_ETH_ADDR" : "OP_DEL_ETH_ADDR");
2748 i40evf_set_mc_addr_list(struct rte_eth_dev *dev, struct ether_addr *mc_addrs,
2749 uint32_t mc_addrs_num)
2751 struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2754 /* flush previous addresses */
2755 err = i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2760 vf->mc_addrs_num = 0;
2763 err = i40evf_add_del_mc_addr_list(dev, mc_addrs, mc_addrs_num,
2768 vf->mc_addrs_num = mc_addrs_num;
2769 memcpy(vf->mc_addrs, mc_addrs, mc_addrs_num * sizeof(*mc_addrs));