385ebedcd3330b5adf24b642c28748a6e252b38b
[dpdk.git] / drivers / net / i40e / i40e_ethdev_vf.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #include <sys/queue.h>
6 #include <stdio.h>
7 #include <errno.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <stdarg.h>
12 #include <inttypes.h>
13 #include <rte_byteorder.h>
14 #include <rte_common.h>
15 #include <rte_cycles.h>
16
17 #include <rte_interrupts.h>
18 #include <rte_log.h>
19 #include <rte_debug.h>
20 #include <rte_pci.h>
21 #include <rte_bus_pci.h>
22 #include <rte_atomic.h>
23 #include <rte_branch_prediction.h>
24 #include <rte_memory.h>
25 #include <rte_eal.h>
26 #include <rte_alarm.h>
27 #include <rte_ether.h>
28 #include <ethdev_driver.h>
29 #include <ethdev_pci.h>
30 #include <rte_malloc.h>
31 #include <rte_dev.h>
32
33 #include "i40e_logs.h"
34 #include "base/i40e_prototype.h"
35 #include "base/i40e_adminq_cmd.h"
36 #include "base/i40e_type.h"
37
38 #include "i40e_rxtx.h"
39 #include "i40e_ethdev.h"
40 #include "i40e_pf.h"
41
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
46
47 #define I40EVF_ALARM_INTERVAL 50000 /* us */
48
49 struct i40evf_arq_msg_info {
50         enum virtchnl_ops ops;
51         enum i40e_status_code result;
52         uint16_t buf_len;
53         uint16_t msg_len;
54         uint8_t *msg;
55 };
56
57 struct vf_cmd_info {
58         enum virtchnl_ops ops;
59         uint8_t *in_args;
60         uint32_t in_args_size;
61         uint8_t *out_buffer;
62         /* Input & output type. pass in buffer size and pass out
63          * actual return result
64          */
65         uint32_t out_size;
66 };
67
68 enum i40evf_aq_result {
69         I40EVF_MSG_ERR = -1, /* Meet error when accessing admin queue */
70         I40EVF_MSG_NON,      /* Read nothing from admin queue */
71         I40EVF_MSG_SYS,      /* Read system msg from admin queue */
72         I40EVF_MSG_CMD,      /* Read async command result */
73 };
74
75 static int i40evf_dev_configure(struct rte_eth_dev *dev);
76 static int i40evf_dev_start(struct rte_eth_dev *dev);
77 static int i40evf_dev_stop(struct rte_eth_dev *dev);
78 static int i40evf_dev_info_get(struct rte_eth_dev *dev,
79                                struct rte_eth_dev_info *dev_info);
80 static int i40evf_dev_link_update(struct rte_eth_dev *dev,
81                                   int wait_to_complete);
82 static int i40evf_dev_stats_get(struct rte_eth_dev *dev,
83                                 struct rte_eth_stats *stats);
84 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
85                                  struct rte_eth_xstat *xstats, unsigned n);
86 static int i40evf_dev_xstats_get_names(struct rte_eth_dev *dev,
87                                        struct rte_eth_xstat_name *xstats_names,
88                                        unsigned limit);
89 static int i40evf_dev_xstats_reset(struct rte_eth_dev *dev);
90 static int i40evf_vlan_filter_set(struct rte_eth_dev *dev,
91                                   uint16_t vlan_id, int on);
92 static int i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
93 static int i40evf_dev_close(struct rte_eth_dev *dev);
94 static int i40evf_dev_reset(struct rte_eth_dev *dev);
95 static int i40evf_check_vf_reset_done(struct rte_eth_dev *dev);
96 static int i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev);
97 static int i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev);
98 static int i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev);
99 static int i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev);
100 static int i40evf_init_vlan(struct rte_eth_dev *dev);
101 static int i40evf_dev_rx_queue_start(struct rte_eth_dev *dev,
102                                      uint16_t rx_queue_id);
103 static int i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev,
104                                     uint16_t rx_queue_id);
105 static int i40evf_dev_tx_queue_start(struct rte_eth_dev *dev,
106                                      uint16_t tx_queue_id);
107 static int i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev,
108                                     uint16_t tx_queue_id);
109 static int i40evf_add_del_eth_addr(struct rte_eth_dev *dev,
110                                    struct rte_ether_addr *addr,
111                                    bool add, uint8_t type);
112 static int i40evf_add_mac_addr(struct rte_eth_dev *dev,
113                                struct rte_ether_addr *addr,
114                                uint32_t index,
115                                uint32_t pool);
116 static void i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index);
117 static int i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
118                         struct rte_eth_rss_reta_entry64 *reta_conf,
119                         uint16_t reta_size);
120 static int i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
121                         struct rte_eth_rss_reta_entry64 *reta_conf,
122                         uint16_t reta_size);
123 static int i40evf_config_rss(struct i40e_vf *vf);
124 static int i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
125                                       struct rte_eth_rss_conf *rss_conf);
126 static int i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
127                                         struct rte_eth_rss_conf *rss_conf);
128 static int i40evf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
129 static int i40evf_set_default_mac_addr(struct rte_eth_dev *dev,
130                                         struct rte_ether_addr *mac_addr);
131 static int
132 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id);
133 static int
134 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id);
135 static void i40evf_handle_pf_event(struct rte_eth_dev *dev,
136                                    uint8_t *msg,
137                                    uint16_t msglen);
138
139 static int
140 i40evf_add_del_mc_addr_list(struct rte_eth_dev *dev,
141                         struct rte_ether_addr *mc_addr_set,
142                         uint32_t nb_mc_addr, bool add);
143 static int
144 i40evf_set_mc_addr_list(struct rte_eth_dev *dev,
145                         struct rte_ether_addr *mc_addr_set,
146                         uint32_t nb_mc_addr);
147 static void
148 i40evf_dev_alarm_handler(void *param);
149
150 /* Default hash key buffer for RSS */
151 static uint32_t rss_key_default[I40E_VFQF_HKEY_MAX_INDEX + 1];
152
153 struct rte_i40evf_xstats_name_off {
154         char name[RTE_ETH_XSTATS_NAME_SIZE];
155         unsigned offset;
156 };
157
158 static const struct rte_i40evf_xstats_name_off rte_i40evf_stats_strings[] = {
159         {"rx_bytes", offsetof(struct i40e_eth_stats, rx_bytes)},
160         {"rx_unicast_packets", offsetof(struct i40e_eth_stats, rx_unicast)},
161         {"rx_multicast_packets", offsetof(struct i40e_eth_stats, rx_multicast)},
162         {"rx_broadcast_packets", offsetof(struct i40e_eth_stats, rx_broadcast)},
163         {"rx_dropped_packets", offsetof(struct i40e_eth_stats, rx_discards)},
164         {"rx_unknown_protocol_packets", offsetof(struct i40e_eth_stats,
165                 rx_unknown_protocol)},
166         {"tx_bytes", offsetof(struct i40e_eth_stats, tx_bytes)},
167         {"tx_unicast_packets", offsetof(struct i40e_eth_stats, tx_unicast)},
168         {"tx_multicast_packets", offsetof(struct i40e_eth_stats, tx_multicast)},
169         {"tx_broadcast_packets", offsetof(struct i40e_eth_stats, tx_broadcast)},
170         {"tx_dropped_packets", offsetof(struct i40e_eth_stats, tx_discards)},
171         {"tx_error_packets", offsetof(struct i40e_eth_stats, tx_errors)},
172 };
173
174 #define I40EVF_NB_XSTATS (sizeof(rte_i40evf_stats_strings) / \
175                 sizeof(rte_i40evf_stats_strings[0]))
176
177 static const struct eth_dev_ops i40evf_eth_dev_ops = {
178         .dev_configure        = i40evf_dev_configure,
179         .dev_start            = i40evf_dev_start,
180         .dev_stop             = i40evf_dev_stop,
181         .promiscuous_enable   = i40evf_dev_promiscuous_enable,
182         .promiscuous_disable  = i40evf_dev_promiscuous_disable,
183         .allmulticast_enable  = i40evf_dev_allmulticast_enable,
184         .allmulticast_disable = i40evf_dev_allmulticast_disable,
185         .link_update          = i40evf_dev_link_update,
186         .stats_get            = i40evf_dev_stats_get,
187         .stats_reset          = i40evf_dev_xstats_reset,
188         .xstats_get           = i40evf_dev_xstats_get,
189         .xstats_get_names     = i40evf_dev_xstats_get_names,
190         .xstats_reset         = i40evf_dev_xstats_reset,
191         .dev_close            = i40evf_dev_close,
192         .dev_reset            = i40evf_dev_reset,
193         .dev_infos_get        = i40evf_dev_info_get,
194         .dev_supported_ptypes_get = i40e_dev_supported_ptypes_get,
195         .vlan_filter_set      = i40evf_vlan_filter_set,
196         .vlan_offload_set     = i40evf_vlan_offload_set,
197         .rx_queue_start       = i40evf_dev_rx_queue_start,
198         .rx_queue_stop        = i40evf_dev_rx_queue_stop,
199         .tx_queue_start       = i40evf_dev_tx_queue_start,
200         .tx_queue_stop        = i40evf_dev_tx_queue_stop,
201         .rx_queue_setup       = i40e_dev_rx_queue_setup,
202         .rx_queue_release     = i40e_dev_rx_queue_release,
203         .rx_queue_intr_enable = i40evf_dev_rx_queue_intr_enable,
204         .rx_queue_intr_disable = i40evf_dev_rx_queue_intr_disable,
205         .tx_queue_setup       = i40e_dev_tx_queue_setup,
206         .tx_queue_release     = i40e_dev_tx_queue_release,
207         .rxq_info_get         = i40e_rxq_info_get,
208         .txq_info_get         = i40e_txq_info_get,
209         .mac_addr_add         = i40evf_add_mac_addr,
210         .mac_addr_remove      = i40evf_del_mac_addr,
211         .set_mc_addr_list     = i40evf_set_mc_addr_list,
212         .reta_update          = i40evf_dev_rss_reta_update,
213         .reta_query           = i40evf_dev_rss_reta_query,
214         .rss_hash_update      = i40evf_dev_rss_hash_update,
215         .rss_hash_conf_get    = i40evf_dev_rss_hash_conf_get,
216         .mtu_set              = i40evf_dev_mtu_set,
217         .mac_addr_set         = i40evf_set_default_mac_addr,
218         .tx_done_cleanup      = i40e_tx_done_cleanup,
219         .get_monitor_addr     = i40e_get_monitor_addr
220 };
221
222 /*
223  * Read data in admin queue to get msg from pf driver
224  */
225 static enum i40evf_aq_result
226 i40evf_read_pfmsg(struct rte_eth_dev *dev, struct i40evf_arq_msg_info *data)
227 {
228         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
229         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
230         struct i40e_arq_event_info event;
231         enum virtchnl_ops opcode;
232         enum i40e_status_code retval;
233         int ret;
234         enum i40evf_aq_result result = I40EVF_MSG_NON;
235
236         event.buf_len = data->buf_len;
237         event.msg_buf = data->msg;
238         ret = i40e_clean_arq_element(hw, &event, NULL);
239         /* Can't read any msg from adminQ */
240         if (ret) {
241                 if (ret != I40E_ERR_ADMIN_QUEUE_NO_WORK)
242                         result = I40EVF_MSG_ERR;
243                 return result;
244         }
245
246         opcode = (enum virtchnl_ops)rte_le_to_cpu_32(event.desc.cookie_high);
247         retval = (enum i40e_status_code)rte_le_to_cpu_32(event.desc.cookie_low);
248         /* pf sys event */
249         if (opcode == VIRTCHNL_OP_EVENT) {
250                 struct virtchnl_pf_event *vpe =
251                         (struct virtchnl_pf_event *)event.msg_buf;
252
253                 result = I40EVF_MSG_SYS;
254                 switch (vpe->event) {
255                 case VIRTCHNL_EVENT_LINK_CHANGE:
256                         vf->link_up =
257                                 vpe->event_data.link_event.link_status;
258                         vf->link_speed =
259                                 vpe->event_data.link_event.link_speed;
260                         vf->pend_msg |= PFMSG_LINK_CHANGE;
261                         PMD_DRV_LOG(INFO, "Link status update:%s",
262                                     vf->link_up ? "up" : "down");
263                         break;
264                 case VIRTCHNL_EVENT_RESET_IMPENDING:
265                         vf->vf_reset = true;
266                         vf->pend_msg |= PFMSG_RESET_IMPENDING;
267                         PMD_DRV_LOG(INFO, "VF is resetting");
268                         break;
269                 case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
270                         vf->dev_closed = true;
271                         vf->pend_msg |= PFMSG_DRIVER_CLOSE;
272                         PMD_DRV_LOG(INFO, "PF driver closed");
273                         break;
274                 default:
275                         PMD_DRV_LOG(ERR, "%s: Unknown event %d from pf",
276                                     __func__, vpe->event);
277                 }
278         } else {
279                 /* async reply msg on command issued by vf previously */
280                 result = I40EVF_MSG_CMD;
281                 /* Actual data length read from PF */
282                 data->msg_len = event.msg_len;
283         }
284
285         data->result = retval;
286         data->ops = opcode;
287
288         return result;
289 }
290
291 /**
292  * clear current command. Only call in case execute
293  * _atomic_set_cmd successfully.
294  */
295 static inline void
296 _clear_cmd(struct i40e_vf *vf)
297 {
298         rte_wmb();
299         vf->pend_cmd = VIRTCHNL_OP_UNKNOWN;
300 }
301
302 /*
303  * Check there is pending cmd in execution. If none, set new command.
304  */
305 static inline int
306 _atomic_set_cmd(struct i40e_vf *vf, enum virtchnl_ops ops)
307 {
308         int ret = rte_atomic32_cmpset(&vf->pend_cmd,
309                         VIRTCHNL_OP_UNKNOWN, ops);
310
311         if (!ret)
312                 PMD_DRV_LOG(ERR, "There is incomplete cmd %d", vf->pend_cmd);
313
314         return !ret;
315 }
316
317 #define MAX_TRY_TIMES 200
318 #define ASQ_DELAY_MS  10
319
320 static int
321 _i40evf_execute_vf_cmd(struct rte_eth_dev *dev, struct vf_cmd_info *args)
322 {
323         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
324         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
325         struct i40evf_arq_msg_info info;
326         enum i40evf_aq_result ret;
327         int err, i = 0;
328
329         if (_atomic_set_cmd(vf, args->ops))
330                 return -1;
331
332         info.msg = args->out_buffer;
333         info.buf_len = args->out_size;
334         info.ops = VIRTCHNL_OP_UNKNOWN;
335         info.result = I40E_SUCCESS;
336
337         err = i40e_aq_send_msg_to_pf(hw, args->ops, I40E_SUCCESS,
338                      args->in_args, args->in_args_size, NULL);
339         if (err) {
340                 PMD_DRV_LOG(ERR, "fail to send cmd %d", args->ops);
341                 _clear_cmd(vf);
342                 return err;
343         }
344
345         switch (args->ops) {
346         case VIRTCHNL_OP_RESET_VF:
347                 /*no need to process in this function */
348                 err = 0;
349                 break;
350         case VIRTCHNL_OP_VERSION:
351         case VIRTCHNL_OP_GET_VF_RESOURCES:
352                 /* for init adminq commands, need to poll the response */
353                 err = -1;
354                 do {
355                         ret = i40evf_read_pfmsg(dev, &info);
356                         vf->cmd_retval = info.result;
357                         if (ret == I40EVF_MSG_CMD) {
358                                 err = 0;
359                                 break;
360                         } else if (ret == I40EVF_MSG_ERR)
361                                 break;
362                         rte_delay_ms(ASQ_DELAY_MS);
363                         /* If don't read msg or read sys event, continue */
364                 } while (i++ < MAX_TRY_TIMES);
365                 _clear_cmd(vf);
366                 break;
367         case VIRTCHNL_OP_REQUEST_QUEUES:
368                 /**
369                  * ignore async reply, only wait for system message,
370                  * vf_reset = true if get VIRTCHNL_EVENT_RESET_IMPENDING,
371                  * if not, means request queues failed.
372                  */
373                 err = -1;
374                 do {
375                         ret = i40evf_read_pfmsg(dev, &info);
376                         vf->cmd_retval = info.result;
377                         if (ret == I40EVF_MSG_SYS && vf->vf_reset) {
378                                 err = 0;
379                                 break;
380                         } else if (ret == I40EVF_MSG_ERR ||
381                                            ret == I40EVF_MSG_CMD) {
382                                 break;
383                         }
384                         rte_delay_ms(ASQ_DELAY_MS);
385                         /* If don't read msg or read sys event, continue */
386                 } while (i++ < MAX_TRY_TIMES);
387                 _clear_cmd(vf);
388                 break;
389
390         default:
391                 /* for other adminq in running time, waiting the cmd done flag */
392                 err = -1;
393                 do {
394                         if (vf->pend_cmd == VIRTCHNL_OP_UNKNOWN) {
395                                 err = 0;
396                                 break;
397                         }
398                         rte_delay_ms(ASQ_DELAY_MS);
399                         /* If don't read msg or read sys event, continue */
400                 } while (i++ < MAX_TRY_TIMES);
401                 /* If there's no response is received, clear command */
402                 if (i >= MAX_TRY_TIMES) {
403                         PMD_DRV_LOG(WARNING, "No response for %d", args->ops);
404                         _clear_cmd(vf);
405                 }
406                 break;
407         }
408
409         return err | vf->cmd_retval;
410 }
411
412 static int
413 i40evf_execute_vf_cmd(struct rte_eth_dev *dev, struct vf_cmd_info *args)
414 {
415         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
416         int err;
417
418         while (!rte_spinlock_trylock(&vf->cmd_send_lock))
419                 rte_delay_us_sleep(50);
420         err = _i40evf_execute_vf_cmd(dev, args);
421         rte_spinlock_unlock(&vf->cmd_send_lock);
422         return err;
423 }
424
425 /*
426  * Check API version with sync wait until version read or fail from admin queue
427  */
428 static int
429 i40evf_check_api_version(struct rte_eth_dev *dev)
430 {
431         struct virtchnl_version_info version, *pver;
432         int err;
433         struct vf_cmd_info args;
434         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
435
436         version.major = VIRTCHNL_VERSION_MAJOR;
437         version.minor = VIRTCHNL_VERSION_MINOR;
438
439         args.ops = VIRTCHNL_OP_VERSION;
440         args.in_args = (uint8_t *)&version;
441         args.in_args_size = sizeof(version);
442         args.out_buffer = vf->aq_resp;
443         args.out_size = I40E_AQ_BUF_SZ;
444
445         err = i40evf_execute_vf_cmd(dev, &args);
446         if (err) {
447                 PMD_INIT_LOG(ERR, "fail to execute command OP_VERSION");
448                 return err;
449         }
450
451         pver = (struct virtchnl_version_info *)args.out_buffer;
452         vf->version_major = pver->major;
453         vf->version_minor = pver->minor;
454         if ((vf->version_major == VIRTCHNL_VERSION_MAJOR) &&
455                 (vf->version_minor <= VIRTCHNL_VERSION_MINOR))
456                 PMD_DRV_LOG(INFO, "Peer is Linux PF host");
457         else {
458                 PMD_INIT_LOG(ERR, "PF/VF API version mismatch:(%u.%u)-(%u.%u)",
459                                         vf->version_major, vf->version_minor,
460                                                 VIRTCHNL_VERSION_MAJOR,
461                                                 VIRTCHNL_VERSION_MINOR);
462                 return -1;
463         }
464
465         return 0;
466 }
467
468 static int
469 i40evf_get_vf_resource(struct rte_eth_dev *dev)
470 {
471         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
472         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
473         int err;
474         struct vf_cmd_info args;
475         uint32_t caps, len;
476
477         args.ops = VIRTCHNL_OP_GET_VF_RESOURCES;
478         args.out_buffer = vf->aq_resp;
479         args.out_size = I40E_AQ_BUF_SZ;
480         if (PF_IS_V11(vf)) {
481                 caps = VIRTCHNL_VF_OFFLOAD_L2 |
482                        VIRTCHNL_VF_OFFLOAD_RSS_AQ |
483                        VIRTCHNL_VF_OFFLOAD_RSS_REG |
484                        VIRTCHNL_VF_OFFLOAD_VLAN |
485                        VIRTCHNL_VF_OFFLOAD_RX_POLLING |
486                        VIRTCHNL_VF_CAP_ADV_LINK_SPEED;
487                 args.in_args = (uint8_t *)&caps;
488                 args.in_args_size = sizeof(caps);
489         } else {
490                 args.in_args = NULL;
491                 args.in_args_size = 0;
492         }
493         err = i40evf_execute_vf_cmd(dev, &args);
494
495         if (err) {
496                 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_VF_RESOURCE");
497                 return err;
498         }
499
500         len =  sizeof(struct virtchnl_vf_resource) +
501                 I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource);
502
503         rte_memcpy(vf->vf_res, args.out_buffer,
504                         RTE_MIN(args.out_size, len));
505         i40e_vf_parse_hw_config(hw, vf->vf_res);
506
507         return 0;
508 }
509
510 static int
511 i40evf_config_promisc(struct rte_eth_dev *dev,
512                       bool enable_unicast,
513                       bool enable_multicast)
514 {
515         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
516         int err;
517         struct vf_cmd_info args;
518         struct virtchnl_promisc_info promisc;
519
520         promisc.flags = 0;
521         promisc.vsi_id = vf->vsi_res->vsi_id;
522
523         if (enable_unicast)
524                 promisc.flags |= FLAG_VF_UNICAST_PROMISC;
525
526         if (enable_multicast)
527                 promisc.flags |= FLAG_VF_MULTICAST_PROMISC;
528
529         args.ops = VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE;
530         args.in_args = (uint8_t *)&promisc;
531         args.in_args_size = sizeof(promisc);
532         args.out_buffer = vf->aq_resp;
533         args.out_size = I40E_AQ_BUF_SZ;
534
535         err = i40evf_execute_vf_cmd(dev, &args);
536
537         if (err) {
538                 PMD_DRV_LOG(ERR, "fail to execute command "
539                             "CONFIG_PROMISCUOUS_MODE");
540
541                 if (err == I40E_NOT_SUPPORTED)
542                         return -ENOTSUP;
543
544                 return -EAGAIN;
545         }
546
547         vf->promisc_unicast_enabled = enable_unicast;
548         vf->promisc_multicast_enabled = enable_multicast;
549         return 0;
550 }
551
552 static int
553 i40evf_enable_vlan_strip(struct rte_eth_dev *dev)
554 {
555         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
556         struct vf_cmd_info args;
557         int ret;
558
559         memset(&args, 0, sizeof(args));
560         args.ops = VIRTCHNL_OP_ENABLE_VLAN_STRIPPING;
561         args.in_args = NULL;
562         args.in_args_size = 0;
563         args.out_buffer = vf->aq_resp;
564         args.out_size = I40E_AQ_BUF_SZ;
565         ret = i40evf_execute_vf_cmd(dev, &args);
566         if (ret)
567                 PMD_DRV_LOG(ERR, "Failed to execute command of "
568                             "VIRTCHNL_OP_ENABLE_VLAN_STRIPPING");
569
570         return ret;
571 }
572
573 static int
574 i40evf_disable_vlan_strip(struct rte_eth_dev *dev)
575 {
576         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
577         struct vf_cmd_info args;
578         int ret;
579
580         memset(&args, 0, sizeof(args));
581         args.ops = VIRTCHNL_OP_DISABLE_VLAN_STRIPPING;
582         args.in_args = NULL;
583         args.in_args_size = 0;
584         args.out_buffer = vf->aq_resp;
585         args.out_size = I40E_AQ_BUF_SZ;
586         ret = i40evf_execute_vf_cmd(dev, &args);
587         if (ret)
588                 PMD_DRV_LOG(ERR, "Failed to execute command of "
589                             "VIRTCHNL_OP_DISABLE_VLAN_STRIPPING");
590
591         return ret;
592 }
593
594 static void
595 i40evf_fill_virtchnl_vsi_txq_info(struct virtchnl_txq_info *txq_info,
596                                   uint16_t vsi_id,
597                                   uint16_t queue_id,
598                                   uint16_t nb_txq,
599                                   struct i40e_tx_queue *txq)
600 {
601         txq_info->vsi_id = vsi_id;
602         txq_info->queue_id = queue_id;
603         if (queue_id < nb_txq && txq) {
604                 txq_info->ring_len = txq->nb_tx_desc;
605                 txq_info->dma_ring_addr = txq->tx_ring_phys_addr;
606         }
607 }
608
609 static void
610 i40evf_fill_virtchnl_vsi_rxq_info(struct virtchnl_rxq_info *rxq_info,
611                                   uint16_t vsi_id,
612                                   uint16_t queue_id,
613                                   uint16_t nb_rxq,
614                                   uint32_t max_pkt_size,
615                                   struct i40e_rx_queue *rxq)
616 {
617         rxq_info->vsi_id = vsi_id;
618         rxq_info->queue_id = queue_id;
619         rxq_info->max_pkt_size = max_pkt_size;
620         if (queue_id < nb_rxq && rxq) {
621                 rxq_info->ring_len = rxq->nb_rx_desc;
622                 rxq_info->dma_ring_addr = rxq->rx_ring_phys_addr;
623                 rxq_info->databuffer_size =
624                         (rte_pktmbuf_data_room_size(rxq->mp) -
625                                 RTE_PKTMBUF_HEADROOM);
626         }
627 }
628
629 static int
630 i40evf_configure_vsi_queues(struct rte_eth_dev *dev)
631 {
632         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
633         struct i40e_rx_queue **rxq =
634                 (struct i40e_rx_queue **)dev->data->rx_queues;
635         struct i40e_tx_queue **txq =
636                 (struct i40e_tx_queue **)dev->data->tx_queues;
637         struct virtchnl_vsi_queue_config_info *vc_vqci;
638         struct virtchnl_queue_pair_info *vc_qpi;
639         struct vf_cmd_info args;
640         uint16_t i, nb_qp = vf->num_queue_pairs;
641         const uint32_t size =
642                 I40E_VIRTCHNL_CONFIG_VSI_QUEUES_SIZE(vc_vqci, nb_qp);
643         uint8_t buff[size];
644         int ret;
645
646         memset(buff, 0, sizeof(buff));
647         vc_vqci = (struct virtchnl_vsi_queue_config_info *)buff;
648         vc_vqci->vsi_id = vf->vsi_res->vsi_id;
649         vc_vqci->num_queue_pairs = nb_qp;
650
651         for (i = 0, vc_qpi = vc_vqci->qpair; i < nb_qp; i++, vc_qpi++) {
652                 i40evf_fill_virtchnl_vsi_txq_info(&vc_qpi->txq,
653                         vc_vqci->vsi_id, i, dev->data->nb_tx_queues,
654                         txq ? txq[i] : NULL);
655                 i40evf_fill_virtchnl_vsi_rxq_info(&vc_qpi->rxq,
656                         vc_vqci->vsi_id, i, dev->data->nb_rx_queues,
657                         vf->max_pkt_len, rxq ? rxq[i] : NULL);
658         }
659         memset(&args, 0, sizeof(args));
660         args.ops = VIRTCHNL_OP_CONFIG_VSI_QUEUES;
661         args.in_args = (uint8_t *)vc_vqci;
662         args.in_args_size = size;
663         args.out_buffer = vf->aq_resp;
664         args.out_size = I40E_AQ_BUF_SZ;
665         ret = i40evf_execute_vf_cmd(dev, &args);
666         if (ret)
667                 PMD_DRV_LOG(ERR, "Failed to execute command of "
668                         "VIRTCHNL_OP_CONFIG_VSI_QUEUES");
669
670         return ret;
671 }
672
673 static int
674 i40evf_config_irq_map(struct rte_eth_dev *dev)
675 {
676         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
677         struct vf_cmd_info args;
678         uint8_t *cmd_buffer = NULL;
679         struct virtchnl_irq_map_info *map_info;
680         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
681         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
682         uint32_t vec, cmd_buffer_size, max_vectors, nb_msix, msix_base, i;
683         uint16_t rxq_map[vf->vf_res->max_vectors];
684         int err;
685
686         memset(rxq_map, 0, sizeof(rxq_map));
687         if (dev->data->dev_conf.intr_conf.rxq != 0 &&
688                 rte_intr_allow_others(intr_handle)) {
689                 msix_base = I40E_RX_VEC_START;
690                 /* For interrupt mode, available vector id is from 1. */
691                 max_vectors = vf->vf_res->max_vectors - 1;
692                 nb_msix = RTE_MIN(max_vectors, intr_handle->nb_efd);
693
694                 vec = msix_base;
695                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
696                         rxq_map[vec] |= 1 << i;
697                         intr_handle->intr_vec[i] = vec++;
698                         if (vec >= vf->vf_res->max_vectors)
699                                 vec = msix_base;
700                 }
701         } else {
702                 msix_base = I40E_MISC_VEC_ID;
703                 nb_msix = 1;
704
705                 for (i = 0; i < dev->data->nb_rx_queues; i++) {
706                         rxq_map[msix_base] |= 1 << i;
707                         if (rte_intr_dp_is_en(intr_handle))
708                                 intr_handle->intr_vec[i] = msix_base;
709                 }
710         }
711
712         cmd_buffer_size = sizeof(struct virtchnl_irq_map_info) +
713                         sizeof(struct virtchnl_vector_map) * nb_msix;
714         cmd_buffer = rte_zmalloc("i40e", cmd_buffer_size, 0);
715         if (!cmd_buffer) {
716                 PMD_DRV_LOG(ERR, "Failed to allocate memory");
717                 return I40E_ERR_NO_MEMORY;
718         }
719
720         map_info = (struct virtchnl_irq_map_info *)cmd_buffer;
721         map_info->num_vectors = nb_msix;
722         for (i = 0; i < nb_msix; i++) {
723                 map_info->vecmap[i].rxitr_idx = I40E_ITR_INDEX_DEFAULT;
724                 map_info->vecmap[i].vsi_id = vf->vsi_res->vsi_id;
725                 map_info->vecmap[i].vector_id = msix_base + i;
726                 map_info->vecmap[i].txq_map = 0;
727                 map_info->vecmap[i].rxq_map = rxq_map[msix_base + i];
728         }
729
730         args.ops = VIRTCHNL_OP_CONFIG_IRQ_MAP;
731         args.in_args = (u8 *)cmd_buffer;
732         args.in_args_size = cmd_buffer_size;
733         args.out_buffer = vf->aq_resp;
734         args.out_size = I40E_AQ_BUF_SZ;
735         err = i40evf_execute_vf_cmd(dev, &args);
736         if (err)
737                 PMD_DRV_LOG(ERR, "fail to execute command OP_ENABLE_QUEUES");
738
739         rte_free(cmd_buffer);
740
741         return err;
742 }
743
744 static int
745 i40evf_switch_queue(struct rte_eth_dev *dev, bool isrx, uint16_t qid,
746                                 bool on)
747 {
748         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
749         struct virtchnl_queue_select queue_select;
750         int err;
751         struct vf_cmd_info args;
752         memset(&queue_select, 0, sizeof(queue_select));
753         queue_select.vsi_id = vf->vsi_res->vsi_id;
754
755         if (isrx)
756                 queue_select.rx_queues |= 1 << qid;
757         else
758                 queue_select.tx_queues |= 1 << qid;
759
760         if (on)
761                 args.ops = VIRTCHNL_OP_ENABLE_QUEUES;
762         else
763                 args.ops = VIRTCHNL_OP_DISABLE_QUEUES;
764         args.in_args = (u8 *)&queue_select;
765         args.in_args_size = sizeof(queue_select);
766         args.out_buffer = vf->aq_resp;
767         args.out_size = I40E_AQ_BUF_SZ;
768         err = i40evf_execute_vf_cmd(dev, &args);
769         if (err)
770                 PMD_DRV_LOG(ERR, "fail to switch %s %u %s",
771                             isrx ? "RX" : "TX", qid, on ? "on" : "off");
772
773         return err;
774 }
775
776 static int
777 i40evf_start_queues(struct rte_eth_dev *dev)
778 {
779         struct rte_eth_dev_data *dev_data = dev->data;
780         int i;
781         struct i40e_rx_queue *rxq;
782         struct i40e_tx_queue *txq;
783
784         for (i = 0; i < dev->data->nb_rx_queues; i++) {
785                 rxq = dev_data->rx_queues[i];
786                 if (rxq->rx_deferred_start)
787                         continue;
788                 if (i40evf_dev_rx_queue_start(dev, i) != 0) {
789                         PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
790                         return -1;
791                 }
792         }
793
794         for (i = 0; i < dev->data->nb_tx_queues; i++) {
795                 txq = dev_data->tx_queues[i];
796                 if (txq->tx_deferred_start)
797                         continue;
798                 if (i40evf_dev_tx_queue_start(dev, i) != 0) {
799                         PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
800                         return -1;
801                 }
802         }
803
804         return 0;
805 }
806
807 static int
808 i40evf_stop_queues(struct rte_eth_dev *dev)
809 {
810         int i;
811
812         /* Stop TX queues first */
813         for (i = 0; i < dev->data->nb_tx_queues; i++) {
814                 if (i40evf_dev_tx_queue_stop(dev, i) != 0) {
815                         PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
816                 }
817         }
818
819         /* Then stop RX queues */
820         for (i = 0; i < dev->data->nb_rx_queues; i++) {
821                 if (i40evf_dev_rx_queue_stop(dev, i) != 0) {
822                         PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
823                 }
824         }
825
826         return 0;
827 }
828
829 static int
830 i40evf_add_del_eth_addr(struct rte_eth_dev *dev,
831                         struct rte_ether_addr *addr,
832                         bool add, uint8_t type)
833 {
834         struct virtchnl_ether_addr_list *list;
835         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
836         uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) + \
837                         sizeof(struct virtchnl_ether_addr)];
838         int err;
839         struct vf_cmd_info args;
840
841         list = (struct virtchnl_ether_addr_list *)cmd_buffer;
842         list->vsi_id = vf->vsi_res->vsi_id;
843         list->num_elements = 1;
844         list->list[0].type = type;
845         rte_memcpy(list->list[0].addr, addr->addr_bytes,
846                                         sizeof(addr->addr_bytes));
847
848         args.ops = add ? VIRTCHNL_OP_ADD_ETH_ADDR : VIRTCHNL_OP_DEL_ETH_ADDR;
849         args.in_args = cmd_buffer;
850         args.in_args_size = sizeof(cmd_buffer);
851         args.out_buffer = vf->aq_resp;
852         args.out_size = I40E_AQ_BUF_SZ;
853         err = i40evf_execute_vf_cmd(dev, &args);
854         if (err)
855                 PMD_DRV_LOG(ERR, "fail to execute command %s",
856                             add ? "OP_ADD_ETH_ADDR" :  "OP_DEL_ETH_ADDR");
857         return err;
858 }
859
860 static int
861 i40evf_add_mac_addr(struct rte_eth_dev *dev,
862                     struct rte_ether_addr *addr,
863                     __rte_unused uint32_t index,
864                     __rte_unused uint32_t pool)
865 {
866         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
867         int err;
868
869         if (rte_is_zero_ether_addr(addr)) {
870                 PMD_DRV_LOG(ERR, "Invalid mac:%x:%x:%x:%x:%x:%x",
871                             addr->addr_bytes[0], addr->addr_bytes[1],
872                             addr->addr_bytes[2], addr->addr_bytes[3],
873                             addr->addr_bytes[4], addr->addr_bytes[5]);
874                 return I40E_ERR_INVALID_MAC_ADDR;
875         }
876
877         err = i40evf_add_del_eth_addr(dev, addr, TRUE, VIRTCHNL_ETHER_ADDR_EXTRA);
878
879         if (err)
880                 PMD_DRV_LOG(ERR, "fail to add MAC address");
881         else
882                 vf->vsi.mac_num++;
883
884         return err;
885 }
886
887 static void
888 i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index)
889 {
890         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
891         struct rte_eth_dev_data *data = dev->data;
892         struct rte_ether_addr *addr;
893         int err;
894
895         addr = &data->mac_addrs[index];
896
897         err = i40evf_add_del_eth_addr(dev, addr, FALSE, VIRTCHNL_ETHER_ADDR_EXTRA);
898
899         if (err)
900                 PMD_DRV_LOG(ERR, "fail to delete MAC address");
901         else
902                 vf->vsi.mac_num--;
903
904         return;
905 }
906
907 static int
908 i40evf_query_stats(struct rte_eth_dev *dev, struct i40e_eth_stats **pstats)
909 {
910         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
911         struct virtchnl_queue_select q_stats;
912         int err;
913         struct vf_cmd_info args;
914
915         memset(&q_stats, 0, sizeof(q_stats));
916         q_stats.vsi_id = vf->vsi_res->vsi_id;
917         args.ops = VIRTCHNL_OP_GET_STATS;
918         args.in_args = (u8 *)&q_stats;
919         args.in_args_size = sizeof(q_stats);
920         args.out_buffer = vf->aq_resp;
921         args.out_size = I40E_AQ_BUF_SZ;
922
923         err = i40evf_execute_vf_cmd(dev, &args);
924         if (err) {
925                 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_STATS");
926                 *pstats = NULL;
927                 return err;
928         }
929         *pstats = (struct i40e_eth_stats *)args.out_buffer;
930         return 0;
931 }
932
933 static void
934 i40evf_stat_update_48(uint64_t *offset,
935                    uint64_t *stat)
936 {
937         if (*stat >= *offset)
938                 *stat = *stat - *offset;
939         else
940                 *stat = (uint64_t)((*stat +
941                         ((uint64_t)1 << I40E_48_BIT_WIDTH)) - *offset);
942
943         *stat &= I40E_48_BIT_MASK;
944 }
945
946 static void
947 i40evf_stat_update_32(uint64_t *offset,
948                    uint64_t *stat)
949 {
950         if (*stat >= *offset)
951                 *stat = (uint64_t)(*stat - *offset);
952         else
953                 *stat = (uint64_t)((*stat +
954                         ((uint64_t)1 << I40E_32_BIT_WIDTH)) - *offset);
955 }
956
957 static void
958 i40evf_update_stats(struct i40e_vsi *vsi,
959                                         struct i40e_eth_stats *nes)
960 {
961         struct i40e_eth_stats *oes = &vsi->eth_stats_offset;
962
963         i40evf_stat_update_48(&oes->rx_bytes,
964                             &nes->rx_bytes);
965         i40evf_stat_update_48(&oes->rx_unicast,
966                             &nes->rx_unicast);
967         i40evf_stat_update_48(&oes->rx_multicast,
968                             &nes->rx_multicast);
969         i40evf_stat_update_48(&oes->rx_broadcast,
970                             &nes->rx_broadcast);
971         i40evf_stat_update_32(&oes->rx_discards,
972                                 &nes->rx_discards);
973         i40evf_stat_update_32(&oes->rx_unknown_protocol,
974                             &nes->rx_unknown_protocol);
975         i40evf_stat_update_48(&oes->tx_bytes,
976                             &nes->tx_bytes);
977         i40evf_stat_update_48(&oes->tx_unicast,
978                             &nes->tx_unicast);
979         i40evf_stat_update_48(&oes->tx_multicast,
980                             &nes->tx_multicast);
981         i40evf_stat_update_48(&oes->tx_broadcast,
982                             &nes->tx_broadcast);
983         i40evf_stat_update_32(&oes->tx_errors, &nes->tx_errors);
984         i40evf_stat_update_32(&oes->tx_discards, &nes->tx_discards);
985 }
986
987 static int
988 i40evf_dev_xstats_reset(struct rte_eth_dev *dev)
989 {
990         int ret;
991         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
992         struct i40e_eth_stats *pstats = NULL;
993
994         /* read stat values to clear hardware registers */
995         ret = i40evf_query_stats(dev, &pstats);
996
997         /* set stats offset base on current values */
998         if (ret == 0)
999                 vf->vsi.eth_stats_offset = *pstats;
1000
1001         return ret;
1002 }
1003
1004 static int i40evf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
1005                                       struct rte_eth_xstat_name *xstats_names,
1006                                       __rte_unused unsigned limit)
1007 {
1008         unsigned i;
1009
1010         if (xstats_names != NULL)
1011                 for (i = 0; i < I40EVF_NB_XSTATS; i++) {
1012                         snprintf(xstats_names[i].name,
1013                                 sizeof(xstats_names[i].name),
1014                                 "%s", rte_i40evf_stats_strings[i].name);
1015                 }
1016         return I40EVF_NB_XSTATS;
1017 }
1018
1019 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
1020                                  struct rte_eth_xstat *xstats, unsigned n)
1021 {
1022         int ret;
1023         unsigned i;
1024         struct i40e_eth_stats *pstats = NULL;
1025         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1026         struct i40e_vsi *vsi = &vf->vsi;
1027
1028         if (n < I40EVF_NB_XSTATS)
1029                 return I40EVF_NB_XSTATS;
1030
1031         ret = i40evf_query_stats(dev, &pstats);
1032         if (ret != 0)
1033                 return 0;
1034
1035         if (!xstats)
1036                 return 0;
1037
1038         i40evf_update_stats(vsi, pstats);
1039
1040         /* loop over xstats array and values from pstats */
1041         for (i = 0; i < I40EVF_NB_XSTATS; i++) {
1042                 xstats[i].id = i;
1043                 xstats[i].value = *(uint64_t *)(((char *)pstats) +
1044                         rte_i40evf_stats_strings[i].offset);
1045         }
1046
1047         return I40EVF_NB_XSTATS;
1048 }
1049
1050 static int
1051 i40evf_add_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
1052 {
1053         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1054         struct virtchnl_vlan_filter_list *vlan_list;
1055         uint8_t cmd_buffer[sizeof(struct virtchnl_vlan_filter_list) +
1056                                                         sizeof(uint16_t)];
1057         int err;
1058         struct vf_cmd_info args;
1059
1060         vlan_list = (struct virtchnl_vlan_filter_list *)cmd_buffer;
1061         vlan_list->vsi_id = vf->vsi_res->vsi_id;
1062         vlan_list->num_elements = 1;
1063         vlan_list->vlan_id[0] = vlanid;
1064
1065         args.ops = VIRTCHNL_OP_ADD_VLAN;
1066         args.in_args = (u8 *)&cmd_buffer;
1067         args.in_args_size = sizeof(cmd_buffer);
1068         args.out_buffer = vf->aq_resp;
1069         args.out_size = I40E_AQ_BUF_SZ;
1070         err = i40evf_execute_vf_cmd(dev, &args);
1071         if (err) {
1072                 PMD_DRV_LOG(ERR, "fail to execute command OP_ADD_VLAN");
1073                 return err;
1074         }
1075         /**
1076          * In linux kernel driver on receiving ADD_VLAN it enables
1077          * VLAN_STRIP by default. So reconfigure the vlan_offload
1078          * as it was done by the app earlier.
1079          */
1080         err = i40evf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1081         if (err)
1082                 PMD_DRV_LOG(ERR, "fail to set vlan_strip");
1083
1084         return err;
1085 }
1086
1087 static int
1088 i40evf_request_queues(struct rte_eth_dev *dev, uint16_t num)
1089 {
1090         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1091         struct virtchnl_vf_res_request vfres;
1092         struct vf_cmd_info args;
1093         int err;
1094
1095         vfres.num_queue_pairs = num;
1096
1097         args.ops = VIRTCHNL_OP_REQUEST_QUEUES;
1098         args.in_args = (u8 *)&vfres;
1099         args.in_args_size = sizeof(vfres);
1100         args.out_buffer = vf->aq_resp;
1101         args.out_size = I40E_AQ_BUF_SZ;
1102
1103         rte_eal_alarm_cancel(i40evf_dev_alarm_handler, dev);
1104
1105         err = i40evf_execute_vf_cmd(dev, &args);
1106
1107         rte_eal_alarm_set(I40EVF_ALARM_INTERVAL, i40evf_dev_alarm_handler, dev);
1108
1109         if (err != I40E_SUCCESS) {
1110                 PMD_DRV_LOG(ERR, "fail to execute command OP_REQUEST_QUEUES");
1111                 return err;
1112         }
1113
1114         /* The PF will issue a reset to the VF when change the number of
1115          * queues. The PF will set I40E_VFGEN_RSTAT to COMPLETE first, then
1116          * wait 10ms and set it to ACTIVE. In this duration, vf may not catch
1117          * the moment that COMPLETE is set. So, for vf, we'll try to wait a
1118          * long time.
1119          */
1120         rte_delay_ms(100);
1121
1122         err = i40evf_check_vf_reset_done(dev);
1123         if (err)
1124                 PMD_DRV_LOG(ERR, "VF is still resetting");
1125
1126         return err;
1127 }
1128
1129 static int
1130 i40evf_del_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
1131 {
1132         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1133         struct virtchnl_vlan_filter_list *vlan_list;
1134         uint8_t cmd_buffer[sizeof(struct virtchnl_vlan_filter_list) +
1135                                                         sizeof(uint16_t)];
1136         int err;
1137         struct vf_cmd_info args;
1138
1139         vlan_list = (struct virtchnl_vlan_filter_list *)cmd_buffer;
1140         vlan_list->vsi_id = vf->vsi_res->vsi_id;
1141         vlan_list->num_elements = 1;
1142         vlan_list->vlan_id[0] = vlanid;
1143
1144         args.ops = VIRTCHNL_OP_DEL_VLAN;
1145         args.in_args = (u8 *)&cmd_buffer;
1146         args.in_args_size = sizeof(cmd_buffer);
1147         args.out_buffer = vf->aq_resp;
1148         args.out_size = I40E_AQ_BUF_SZ;
1149         err = i40evf_execute_vf_cmd(dev, &args);
1150         if (err)
1151                 PMD_DRV_LOG(ERR, "fail to execute command OP_DEL_VLAN");
1152
1153         return err;
1154 }
1155
1156 static const struct rte_pci_id pci_id_i40evf_map[] = {
1157         { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF) },
1158         { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_VF_HV) },
1159         { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_A0_VF) },
1160         { RTE_PCI_DEVICE(I40E_INTEL_VENDOR_ID, I40E_DEV_ID_X722_VF) },
1161         { .vendor_id = 0, /* sentinel */ },
1162 };
1163
1164 /* Disable IRQ0 */
1165 static inline void
1166 i40evf_disable_irq0(struct i40e_hw *hw)
1167 {
1168         /* Disable all interrupt types */
1169         I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, 0);
1170         I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1171                        I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1172         I40EVF_WRITE_FLUSH(hw);
1173 }
1174
1175 /* Enable IRQ0 */
1176 static inline void
1177 i40evf_enable_irq0(struct i40e_hw *hw)
1178 {
1179         /* Enable admin queue interrupt trigger */
1180         uint32_t val;
1181
1182         i40evf_disable_irq0(hw);
1183         val = I40E_READ_REG(hw, I40E_VFINT_ICR0_ENA1);
1184         val |= I40E_VFINT_ICR0_ENA1_ADMINQ_MASK |
1185                 I40E_VFINT_ICR0_ENA1_LINK_STAT_CHANGE_MASK;
1186         I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, val);
1187
1188         I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1189                 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1190                 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1191                 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1192
1193         I40EVF_WRITE_FLUSH(hw);
1194 }
1195
1196 static int
1197 i40evf_check_vf_reset_done(struct rte_eth_dev *dev)
1198 {
1199         int i, reset;
1200         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1201         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1202
1203         for (i = 0; i < MAX_RESET_WAIT_CNT; i++) {
1204                 reset = I40E_READ_REG(hw, I40E_VFGEN_RSTAT) &
1205                         I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1206                 reset = reset >> I40E_VFGEN_RSTAT_VFR_STATE_SHIFT;
1207                 if (reset == VIRTCHNL_VFR_VFACTIVE ||
1208                     reset == VIRTCHNL_VFR_COMPLETED)
1209                         break;
1210                 rte_delay_ms(50);
1211         }
1212
1213         if (i >= MAX_RESET_WAIT_CNT)
1214                 return -1;
1215
1216         vf->pend_msg &= ~PFMSG_RESET_IMPENDING;
1217
1218         return 0;
1219 }
1220 static int
1221 i40evf_reset_vf(struct rte_eth_dev *dev)
1222 {
1223         int ret;
1224         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1225
1226         if (i40e_vf_reset(hw) != I40E_SUCCESS) {
1227                 PMD_INIT_LOG(ERR, "Reset VF NIC failed");
1228                 return -1;
1229         }
1230         /**
1231           * After issuing vf reset command to pf, pf won't necessarily
1232           * reset vf, it depends on what state it exactly is. If it's not
1233           * initialized yet, it won't have vf reset since it's in a certain
1234           * state. If not, it will try to reset. Even vf is reset, pf will
1235           * set I40E_VFGEN_RSTAT to COMPLETE first, then wait 10ms and set
1236           * it to ACTIVE. In this duration, vf may not catch the moment that
1237           * COMPLETE is set. So, for vf, we'll try to wait a long time.
1238           */
1239         rte_delay_ms(500);
1240
1241         ret = i40evf_check_vf_reset_done(dev);
1242         if (ret) {
1243                 PMD_INIT_LOG(ERR, "VF is still resetting");
1244                 return ret;
1245         }
1246
1247         return 0;
1248 }
1249
1250 static int
1251 i40evf_init_vf(struct rte_eth_dev *dev)
1252 {
1253         int i, err, bufsz;
1254         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1255         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1256         uint16_t interval =
1257                 i40e_calc_itr_interval(0, 0);
1258
1259         vf->adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1260         vf->dev_data = dev->data;
1261         rte_spinlock_init(&vf->cmd_send_lock);
1262         err = i40e_set_mac_type(hw);
1263         if (err) {
1264                 PMD_INIT_LOG(ERR, "set_mac_type failed: %d", err);
1265                 goto err;
1266         }
1267
1268         err = i40evf_check_vf_reset_done(dev);
1269         if (err)
1270                 goto err;
1271
1272         i40e_init_adminq_parameter(hw);
1273         err = i40e_init_adminq(hw);
1274         if (err) {
1275                 PMD_INIT_LOG(ERR, "init_adminq failed: %d", err);
1276                 goto err;
1277         }
1278
1279         /* Reset VF and wait until it's complete */
1280         if (i40evf_reset_vf(dev)) {
1281                 PMD_INIT_LOG(ERR, "reset NIC failed");
1282                 goto err_aq;
1283         }
1284
1285         /* VF reset, shutdown admin queue and initialize again */
1286         if (i40e_shutdown_adminq(hw) != I40E_SUCCESS) {
1287                 PMD_INIT_LOG(ERR, "i40e_shutdown_adminq failed");
1288                 goto err;
1289         }
1290
1291         i40e_init_adminq_parameter(hw);
1292         if (i40e_init_adminq(hw) != I40E_SUCCESS) {
1293                 PMD_INIT_LOG(ERR, "init_adminq failed");
1294                 goto err;
1295         }
1296
1297         vf->aq_resp = rte_zmalloc("vf_aq_resp", I40E_AQ_BUF_SZ, 0);
1298         if (!vf->aq_resp) {
1299                 PMD_INIT_LOG(ERR, "unable to allocate vf_aq_resp memory");
1300                 goto err_aq;
1301         }
1302         if (i40evf_check_api_version(dev) != 0) {
1303                 PMD_INIT_LOG(ERR, "check_api version failed");
1304                 goto err_api;
1305         }
1306         bufsz = sizeof(struct virtchnl_vf_resource) +
1307                 (I40E_MAX_VF_VSI * sizeof(struct virtchnl_vsi_resource));
1308         vf->vf_res = rte_zmalloc("vf_res", bufsz, 0);
1309         if (!vf->vf_res) {
1310                 PMD_INIT_LOG(ERR, "unable to allocate vf_res memory");
1311                 goto err_api;
1312         }
1313
1314         if (i40evf_get_vf_resource(dev) != 0) {
1315                 PMD_INIT_LOG(ERR, "i40evf_get_vf_config failed");
1316                 goto err_alloc;
1317         }
1318
1319         /* got VF config message back from PF, now we can parse it */
1320         for (i = 0; i < vf->vf_res->num_vsis; i++) {
1321                 if (vf->vf_res->vsi_res[i].vsi_type == VIRTCHNL_VSI_SRIOV)
1322                         vf->vsi_res = &vf->vf_res->vsi_res[i];
1323         }
1324
1325         if (!vf->vsi_res) {
1326                 PMD_INIT_LOG(ERR, "no LAN VSI found");
1327                 goto err_alloc;
1328         }
1329
1330         if (hw->mac.type == I40E_MAC_X722_VF)
1331                 vf->flags = I40E_FLAG_RSS_AQ_CAPABLE;
1332         vf->vsi.vsi_id = vf->vsi_res->vsi_id;
1333
1334         switch (vf->vsi_res->vsi_type) {
1335         case VIRTCHNL_VSI_SRIOV:
1336                 vf->vsi.type = I40E_VSI_SRIOV;
1337                 break;
1338         default:
1339                 vf->vsi.type = I40E_VSI_TYPE_UNKNOWN;
1340                 break;
1341         }
1342         vf->vsi.nb_qps = vf->vsi_res->num_queue_pairs;
1343         vf->vsi.adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1344
1345         /* Store the MAC address configured by host, or generate random one */
1346         if (!rte_is_valid_assigned_ether_addr(
1347                         (struct rte_ether_addr *)hw->mac.addr))
1348                 rte_eth_random_addr(hw->mac.addr); /* Generate a random one */
1349
1350         I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1351                        (I40E_ITR_INDEX_DEFAULT <<
1352                         I40E_VFINT_DYN_CTL0_ITR_INDX_SHIFT) |
1353                        (interval <<
1354                         I40E_VFINT_DYN_CTL0_INTERVAL_SHIFT));
1355         I40EVF_WRITE_FLUSH(hw);
1356
1357         return 0;
1358
1359 err_alloc:
1360         rte_free(vf->vf_res);
1361         vf->vsi_res = NULL;
1362 err_api:
1363         rte_free(vf->aq_resp);
1364 err_aq:
1365         i40e_shutdown_adminq(hw); /* ignore error */
1366 err:
1367         return -1;
1368 }
1369
1370 static int
1371 i40evf_uninit_vf(struct rte_eth_dev *dev)
1372 {
1373         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1374
1375         PMD_INIT_FUNC_TRACE();
1376
1377         if (hw->adapter_closed == 0)
1378                 i40evf_dev_close(dev);
1379
1380         return 0;
1381 }
1382
1383 static void
1384 i40evf_handle_pf_event(struct rte_eth_dev *dev, uint8_t *msg,
1385                 __rte_unused uint16_t msglen)
1386 {
1387         struct virtchnl_pf_event *pf_msg =
1388                         (struct virtchnl_pf_event *)msg;
1389         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1390
1391         switch (pf_msg->event) {
1392         case VIRTCHNL_EVENT_RESET_IMPENDING:
1393                 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_RESET_IMPENDING event");
1394                 vf->vf_reset = true;
1395                 rte_eth_dev_callback_process(dev,
1396                                 RTE_ETH_EVENT_INTR_RESET, NULL);
1397                 break;
1398         case VIRTCHNL_EVENT_LINK_CHANGE:
1399                 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_LINK_CHANGE event");
1400
1401                 if (vf->vf_res->vf_cap_flags & VIRTCHNL_VF_CAP_ADV_LINK_SPEED) {
1402                         vf->link_up =
1403                                 pf_msg->event_data.link_event_adv.link_status;
1404
1405                         switch (pf_msg->event_data.link_event_adv.link_speed) {
1406                         case ETH_SPEED_NUM_100M:
1407                                 vf->link_speed = VIRTCHNL_LINK_SPEED_100MB;
1408                                 break;
1409                         case ETH_SPEED_NUM_1G:
1410                                 vf->link_speed = VIRTCHNL_LINK_SPEED_1GB;
1411                                 break;
1412                         case ETH_SPEED_NUM_2_5G:
1413                                 vf->link_speed = VIRTCHNL_LINK_SPEED_2_5GB;
1414                                 break;
1415                         case ETH_SPEED_NUM_5G:
1416                                 vf->link_speed = VIRTCHNL_LINK_SPEED_5GB;
1417                                 break;
1418                         case ETH_SPEED_NUM_10G:
1419                                 vf->link_speed = VIRTCHNL_LINK_SPEED_10GB;
1420                                 break;
1421                         case ETH_SPEED_NUM_20G:
1422                                 vf->link_speed = VIRTCHNL_LINK_SPEED_20GB;
1423                                 break;
1424                         case ETH_SPEED_NUM_25G:
1425                                 vf->link_speed = VIRTCHNL_LINK_SPEED_25GB;
1426                                 break;
1427                         case ETH_SPEED_NUM_40G:
1428                                 vf->link_speed = VIRTCHNL_LINK_SPEED_40GB;
1429                                 break;
1430                         default:
1431                                 vf->link_speed = VIRTCHNL_LINK_SPEED_UNKNOWN;
1432                                 break;
1433                         }
1434                 } else {
1435                         vf->link_up =
1436                                 pf_msg->event_data.link_event.link_status;
1437                         vf->link_speed =
1438                                 pf_msg->event_data.link_event.link_speed;
1439                 }
1440
1441                 i40evf_dev_link_update(dev, 0);
1442                 rte_eth_dev_callback_process(dev,
1443                                 RTE_ETH_EVENT_INTR_LSC, NULL);
1444                 break;
1445         case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
1446                 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_PF_DRIVER_CLOSE event");
1447                 break;
1448         default:
1449                 PMD_DRV_LOG(ERR, " unknown event received %u", pf_msg->event);
1450                 break;
1451         }
1452 }
1453
1454 static void
1455 i40evf_handle_aq_msg(struct rte_eth_dev *dev)
1456 {
1457         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1458         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1459         struct i40e_arq_event_info info;
1460         uint16_t pending, aq_opc;
1461         enum virtchnl_ops msg_opc;
1462         enum i40e_status_code msg_ret;
1463         int ret;
1464
1465         info.buf_len = I40E_AQ_BUF_SZ;
1466         if (!vf->aq_resp) {
1467                 PMD_DRV_LOG(ERR, "Buffer for adminq resp should not be NULL");
1468                 return;
1469         }
1470         info.msg_buf = vf->aq_resp;
1471
1472         pending = 1;
1473         while (pending) {
1474                 ret = i40e_clean_arq_element(hw, &info, &pending);
1475
1476                 if (ret != I40E_SUCCESS) {
1477                         PMD_DRV_LOG(INFO, "Failed to read msg from AdminQ,"
1478                                     "ret: %d", ret);
1479                         break;
1480                 }
1481                 aq_opc = rte_le_to_cpu_16(info.desc.opcode);
1482                 /* For the message sent from pf to vf, opcode is stored in
1483                  * cookie_high of struct i40e_aq_desc, while return error code
1484                  * are stored in cookie_low, Which is done by
1485                  * i40e_aq_send_msg_to_vf in PF driver.*/
1486                 msg_opc = (enum virtchnl_ops)rte_le_to_cpu_32(
1487                                                   info.desc.cookie_high);
1488                 msg_ret = (enum i40e_status_code)rte_le_to_cpu_32(
1489                                                   info.desc.cookie_low);
1490                 switch (aq_opc) {
1491                 case i40e_aqc_opc_send_msg_to_vf:
1492                         if (msg_opc == VIRTCHNL_OP_EVENT)
1493                                 /* process event*/
1494                                 i40evf_handle_pf_event(dev, info.msg_buf,
1495                                                        info.msg_len);
1496                         else {
1497                                 /* read message and it's expected one */
1498                                 if ((volatile uint32_t)msg_opc ==
1499                                     vf->pend_cmd) {
1500                                         vf->cmd_retval = msg_ret;
1501                                         /* prevent compiler reordering */
1502                                         rte_compiler_barrier();
1503                                         _clear_cmd(vf);
1504                                 } else
1505                                         PMD_DRV_LOG(ERR, "command mismatch,"
1506                                                 "expect %u, get %u",
1507                                                 vf->pend_cmd, msg_opc);
1508                                 PMD_DRV_LOG(DEBUG, "adminq response is received,"
1509                                              " opcode = %d", msg_opc);
1510                         }
1511                         break;
1512                 default:
1513                         PMD_DRV_LOG(DEBUG, "Request %u is not supported yet",
1514                                     aq_opc);
1515                         break;
1516                 }
1517         }
1518 }
1519
1520 /**
1521  * Interrupt handler triggered by NIC  for handling
1522  * specific interrupt. Only adminq interrupt is processed in VF.
1523  *
1524  * @param handle
1525  *  Pointer to interrupt handle.
1526  * @param param
1527  *  The address of parameter (struct rte_eth_dev *) regsitered before.
1528  *
1529  * @return
1530  *  void
1531  */
1532 static void
1533 i40evf_dev_alarm_handler(void *param)
1534 {
1535         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1536         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1537         uint32_t icr0;
1538
1539         i40evf_disable_irq0(hw);
1540
1541         /* read out interrupt causes */
1542         icr0 = I40E_READ_REG(hw, I40E_VFINT_ICR01);
1543
1544         /* No interrupt event indicated */
1545         if (!(icr0 & I40E_VFINT_ICR01_INTEVENT_MASK))
1546                 goto done;
1547
1548         if (icr0 & I40E_VFINT_ICR01_ADMINQ_MASK) {
1549                 PMD_DRV_LOG(DEBUG, "ICR01_ADMINQ is reported");
1550                 i40evf_handle_aq_msg(dev);
1551         }
1552
1553         /* Link Status Change interrupt */
1554         if (icr0 & I40E_VFINT_ICR01_LINK_STAT_CHANGE_MASK)
1555                 PMD_DRV_LOG(DEBUG, "LINK_STAT_CHANGE is reported,"
1556                                    " do nothing");
1557
1558 done:
1559         i40evf_enable_irq0(hw);
1560         rte_eal_alarm_set(I40EVF_ALARM_INTERVAL,
1561                           i40evf_dev_alarm_handler, dev);
1562 }
1563
1564 static int
1565 i40evf_dev_init(struct rte_eth_dev *eth_dev)
1566 {
1567         struct i40e_hw *hw
1568                 = I40E_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
1569         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
1570
1571         PMD_INIT_FUNC_TRACE();
1572
1573         /* assign ops func pointer */
1574         eth_dev->dev_ops = &i40evf_eth_dev_ops;
1575         eth_dev->rx_queue_count       = i40e_dev_rx_queue_count;
1576         eth_dev->rx_descriptor_done   = i40e_dev_rx_descriptor_done;
1577         eth_dev->rx_descriptor_status = i40e_dev_rx_descriptor_status;
1578         eth_dev->tx_descriptor_status = i40e_dev_tx_descriptor_status;
1579         eth_dev->rx_pkt_burst = &i40e_recv_pkts;
1580         eth_dev->tx_pkt_burst = &i40e_xmit_pkts;
1581
1582         /*
1583          * For secondary processes, we don't initialise any further as primary
1584          * has already done this work.
1585          */
1586         if (rte_eal_process_type() != RTE_PROC_PRIMARY){
1587                 i40e_set_rx_function(eth_dev);
1588                 i40e_set_tx_function(eth_dev);
1589                 return 0;
1590         }
1591         i40e_set_default_ptype_table(eth_dev);
1592         rte_eth_copy_pci_info(eth_dev, pci_dev);
1593         eth_dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
1594
1595         hw->vendor_id = pci_dev->id.vendor_id;
1596         hw->device_id = pci_dev->id.device_id;
1597         hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
1598         hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
1599         hw->bus.device = pci_dev->addr.devid;
1600         hw->bus.func = pci_dev->addr.function;
1601         hw->hw_addr = (void *)pci_dev->mem_resource[0].addr;
1602         hw->adapter_stopped = 1;
1603         hw->adapter_closed = 0;
1604
1605         if(i40evf_init_vf(eth_dev) != 0) {
1606                 PMD_INIT_LOG(ERR, "Init vf failed");
1607                 return -1;
1608         }
1609
1610         i40e_set_default_pctype_table(eth_dev);
1611         rte_eal_alarm_set(I40EVF_ALARM_INTERVAL,
1612                           i40evf_dev_alarm_handler, eth_dev);
1613
1614         /* configure and enable device interrupt */
1615         i40evf_enable_irq0(hw);
1616
1617         /* copy mac addr */
1618         eth_dev->data->mac_addrs = rte_zmalloc("i40evf_mac",
1619                                 RTE_ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX,
1620                                 0);
1621         if (eth_dev->data->mac_addrs == NULL) {
1622                 PMD_INIT_LOG(ERR, "Failed to allocate %d bytes needed to"
1623                                 " store MAC addresses",
1624                                 RTE_ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX);
1625                 return -ENOMEM;
1626         }
1627         rte_ether_addr_copy((struct rte_ether_addr *)hw->mac.addr,
1628                         &eth_dev->data->mac_addrs[0]);
1629
1630         return 0;
1631 }
1632
1633 static int
1634 i40evf_dev_uninit(struct rte_eth_dev *eth_dev)
1635 {
1636         PMD_INIT_FUNC_TRACE();
1637
1638         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1639                 return -EPERM;
1640
1641         if (i40evf_uninit_vf(eth_dev) != 0) {
1642                 PMD_INIT_LOG(ERR, "i40evf_uninit_vf failed");
1643                 return -1;
1644         }
1645
1646         return 0;
1647 }
1648
1649 static int
1650 i40evf_check_driver_handler(__rte_unused const char *key,
1651                             const char *value, __rte_unused void *opaque)
1652 {
1653         if (strcmp(value, "i40evf"))
1654                 return -1;
1655
1656         return 0;
1657 }
1658
1659 static int
1660 i40evf_driver_selected(struct rte_devargs *devargs)
1661 {
1662         struct rte_kvargs *kvlist;
1663         const char *key = "driver";
1664         int ret = 0;
1665
1666         if (devargs == NULL)
1667                 return 0;
1668
1669         kvlist = rte_kvargs_parse(devargs->args, NULL);
1670         if (kvlist == NULL)
1671                 return 0;
1672
1673         if (!rte_kvargs_count(kvlist, key))
1674                 goto exit;
1675
1676         /* i40evf driver selected when there's a key-value pair:
1677          * driver=i40evf
1678          */
1679         if (rte_kvargs_process(kvlist, key,
1680                                i40evf_check_driver_handler, NULL) < 0)
1681                 goto exit;
1682
1683         ret = 1;
1684
1685 exit:
1686         rte_kvargs_free(kvlist);
1687         return ret;
1688 }
1689
1690 static int eth_i40evf_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
1691         struct rte_pci_device *pci_dev)
1692 {
1693         if (!i40evf_driver_selected(pci_dev->device.devargs))
1694                 return 1;
1695
1696         return rte_eth_dev_pci_generic_probe(pci_dev,
1697                 sizeof(struct i40e_adapter), i40evf_dev_init);
1698 }
1699
1700 static int eth_i40evf_pci_remove(struct rte_pci_device *pci_dev)
1701 {
1702         return rte_eth_dev_pci_generic_remove(pci_dev, i40evf_dev_uninit);
1703 }
1704
1705 /*
1706  * virtual function driver struct
1707  */
1708 static struct rte_pci_driver rte_i40evf_pmd = {
1709         .id_table = pci_id_i40evf_map,
1710         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
1711         .probe = eth_i40evf_pci_probe,
1712         .remove = eth_i40evf_pci_remove,
1713 };
1714
1715 RTE_PMD_REGISTER_PCI(net_i40e_vf, rte_i40evf_pmd);
1716 RTE_PMD_REGISTER_PCI_TABLE(net_i40e_vf, pci_id_i40evf_map);
1717 RTE_PMD_REGISTER_KMOD_DEP(net_i40e_vf, "* igb_uio | vfio-pci");
1718 RTE_PMD_REGISTER_PARAM_STRING(net_i40e_vf, "driver=i40evf");
1719
1720 static int
1721 i40evf_dev_configure(struct rte_eth_dev *dev)
1722 {
1723         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1724         struct i40e_adapter *ad =
1725                 I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1726         uint16_t num_queue_pairs = RTE_MAX(dev->data->nb_rx_queues,
1727                                 dev->data->nb_tx_queues);
1728
1729         /* Initialize to TRUE. If any of Rx queues doesn't meet the bulk
1730          * allocation or vector Rx preconditions we will reset it.
1731          */
1732         ad->rx_bulk_alloc_allowed = true;
1733         ad->rx_vec_allowed = true;
1734         ad->tx_simple_allowed = true;
1735         ad->tx_vec_allowed = true;
1736
1737         dev->data->dev_conf.intr_conf.lsc =
1738                 !!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC);
1739
1740         if (num_queue_pairs > vf->vsi_res->num_queue_pairs) {
1741                 struct i40e_hw *hw;
1742                 int ret;
1743
1744                 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
1745                         PMD_DRV_LOG(ERR,
1746                                     "For secondary processes, change queue pairs is not supported!");
1747                         return -ENOTSUP;
1748                 }
1749
1750                 hw  = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1751                 if (!hw->adapter_stopped) {
1752                         PMD_DRV_LOG(ERR, "Device must be stopped first!");
1753                         return -EBUSY;
1754                 }
1755
1756                 PMD_DRV_LOG(INFO, "change queue pairs from %u to %u",
1757                             vf->vsi_res->num_queue_pairs, num_queue_pairs);
1758                 ret = i40evf_request_queues(dev, num_queue_pairs);
1759                 if (ret != 0)
1760                         return ret;
1761
1762                 ret = i40evf_dev_reset(dev);
1763                 if (ret != 0)
1764                         return ret;
1765         }
1766
1767         return i40evf_init_vlan(dev);
1768 }
1769
1770 static int
1771 i40evf_init_vlan(struct rte_eth_dev *dev)
1772 {
1773         /* Apply vlan offload setting */
1774         i40evf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1775
1776         return 0;
1777 }
1778
1779 static int
1780 i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1781 {
1782         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1783         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1784
1785         if (!(vf->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_VLAN))
1786                 return -ENOTSUP;
1787
1788         /* Vlan stripping setting */
1789         if (mask & ETH_VLAN_STRIP_MASK) {
1790                 /* Enable or disable VLAN stripping */
1791                 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
1792                         i40evf_enable_vlan_strip(dev);
1793                 else
1794                         i40evf_disable_vlan_strip(dev);
1795         }
1796
1797         return 0;
1798 }
1799
1800 static int
1801 i40evf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1802 {
1803         struct i40e_rx_queue *rxq;
1804         int err;
1805         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1806
1807         PMD_INIT_FUNC_TRACE();
1808
1809         rxq = dev->data->rx_queues[rx_queue_id];
1810
1811         err = i40e_alloc_rx_queue_mbufs(rxq);
1812         if (err) {
1813                 PMD_DRV_LOG(ERR, "Failed to allocate RX queue mbuf");
1814                 return err;
1815         }
1816
1817         rte_wmb();
1818
1819         /* Init the RX tail register. */
1820         I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1821         I40EVF_WRITE_FLUSH(hw);
1822
1823         /* Ready to switch the queue on */
1824         err = i40evf_switch_queue(dev, TRUE, rx_queue_id, TRUE);
1825         if (err) {
1826                 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on",
1827                             rx_queue_id);
1828                 return err;
1829         }
1830         dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1831
1832         return 0;
1833 }
1834
1835 static int
1836 i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1837 {
1838         struct i40e_rx_queue *rxq;
1839         int err;
1840
1841         rxq = dev->data->rx_queues[rx_queue_id];
1842
1843         err = i40evf_switch_queue(dev, TRUE, rx_queue_id, FALSE);
1844         if (err) {
1845                 PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off",
1846                             rx_queue_id);
1847                 return err;
1848         }
1849
1850         i40e_rx_queue_release_mbufs(rxq);
1851         i40e_reset_rx_queue(rxq);
1852         dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1853
1854         return 0;
1855 }
1856
1857 static int
1858 i40evf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1859 {
1860         int err;
1861
1862         PMD_INIT_FUNC_TRACE();
1863
1864         /* Ready to switch the queue on */
1865         err = i40evf_switch_queue(dev, FALSE, tx_queue_id, TRUE);
1866         if (err) {
1867                 PMD_DRV_LOG(ERR, "Failed to switch TX queue %u on",
1868                             tx_queue_id);
1869                 return err;
1870         }
1871         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1872
1873         return 0;
1874 }
1875
1876 static int
1877 i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1878 {
1879         struct i40e_tx_queue *txq;
1880         int err;
1881
1882         txq = dev->data->tx_queues[tx_queue_id];
1883
1884         err = i40evf_switch_queue(dev, FALSE, tx_queue_id, FALSE);
1885         if (err) {
1886                 PMD_DRV_LOG(ERR, "Failed to switch TX queue %u off",
1887                             tx_queue_id);
1888                 return err;
1889         }
1890
1891         i40e_tx_queue_release_mbufs(txq);
1892         i40e_reset_tx_queue(txq);
1893         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1894
1895         return 0;
1896 }
1897
1898 static int
1899 i40evf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1900 {
1901         int ret;
1902
1903         if (on)
1904                 ret = i40evf_add_vlan(dev, vlan_id);
1905         else
1906                 ret = i40evf_del_vlan(dev,vlan_id);
1907
1908         return ret;
1909 }
1910
1911 static int
1912 i40evf_rxq_init(struct rte_eth_dev *dev, struct i40e_rx_queue *rxq)
1913 {
1914         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1915         struct rte_eth_dev_data *dev_data = dev->data;
1916         struct rte_pktmbuf_pool_private *mbp_priv;
1917         uint16_t buf_size, len;
1918
1919         rxq->qrx_tail = hw->hw_addr + I40E_QRX_TAIL1(rxq->queue_id);
1920         I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1921         I40EVF_WRITE_FLUSH(hw);
1922
1923         /* Calculate the maximum packet length allowed */
1924         mbp_priv = rte_mempool_get_priv(rxq->mp);
1925         buf_size = (uint16_t)(mbp_priv->mbuf_data_room_size -
1926                                         RTE_PKTMBUF_HEADROOM);
1927         rxq->hs_mode = i40e_header_split_none;
1928         rxq->rx_hdr_len = 0;
1929         rxq->rx_buf_len = RTE_ALIGN(buf_size, (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
1930         len = rxq->rx_buf_len * I40E_MAX_CHAINED_RX_BUFFERS;
1931         rxq->max_pkt_len = RTE_MIN(len,
1932                 dev_data->dev_conf.rxmode.max_rx_pkt_len);
1933
1934         /**
1935          * Check if the jumbo frame and maximum packet length are set correctly
1936          */
1937         if (dev_data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
1938                 if (rxq->max_pkt_len <= I40E_ETH_MAX_LEN ||
1939                     rxq->max_pkt_len > I40E_FRAME_SIZE_MAX) {
1940                         PMD_DRV_LOG(ERR, "maximum packet length must be "
1941                                 "larger than %u and smaller than %u, as jumbo "
1942                                 "frame is enabled", (uint32_t)I40E_ETH_MAX_LEN,
1943                                         (uint32_t)I40E_FRAME_SIZE_MAX);
1944                         return I40E_ERR_CONFIG;
1945                 }
1946         } else {
1947                 if (rxq->max_pkt_len < RTE_ETHER_MIN_LEN ||
1948                     rxq->max_pkt_len > I40E_ETH_MAX_LEN) {
1949                         PMD_DRV_LOG(ERR, "maximum packet length must be "
1950                                 "larger than %u and smaller than %u, as jumbo "
1951                                 "frame is disabled",
1952                                 (uint32_t)RTE_ETHER_MIN_LEN,
1953                                 (uint32_t)I40E_ETH_MAX_LEN);
1954                         return I40E_ERR_CONFIG;
1955                 }
1956         }
1957
1958         if ((dev_data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_SCATTER) ||
1959             rxq->max_pkt_len > buf_size)
1960                 dev_data->scattered_rx = 1;
1961
1962         return 0;
1963 }
1964
1965 static int
1966 i40evf_rx_init(struct rte_eth_dev *dev)
1967 {
1968         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1969         uint16_t i;
1970         int ret = I40E_SUCCESS;
1971         struct i40e_rx_queue **rxq =
1972                 (struct i40e_rx_queue **)dev->data->rx_queues;
1973
1974         i40evf_config_rss(vf);
1975         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1976                 if (!rxq[i] || !rxq[i]->q_set)
1977                         continue;
1978                 ret = i40evf_rxq_init(dev, rxq[i]);
1979                 if (ret != I40E_SUCCESS)
1980                         break;
1981         }
1982         if (ret == I40E_SUCCESS)
1983                 i40e_set_rx_function(dev);
1984
1985         return ret;
1986 }
1987
1988 static void
1989 i40evf_tx_init(struct rte_eth_dev *dev)
1990 {
1991         uint16_t i;
1992         struct i40e_tx_queue **txq =
1993                 (struct i40e_tx_queue **)dev->data->tx_queues;
1994         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1995
1996         for (i = 0; i < dev->data->nb_tx_queues; i++)
1997                 txq[i]->qtx_tail = hw->hw_addr + I40E_QTX_TAIL1(i);
1998
1999         i40e_set_tx_function(dev);
2000 }
2001
2002 static inline void
2003 i40evf_enable_queues_intr(struct rte_eth_dev *dev)
2004 {
2005         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2006         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2007         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2008
2009         if (!rte_intr_allow_others(intr_handle)) {
2010                 I40E_WRITE_REG(hw,
2011                                I40E_VFINT_DYN_CTL01,
2012                                I40E_VFINT_DYN_CTL01_INTENA_MASK |
2013                                I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
2014                                I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
2015                 I40EVF_WRITE_FLUSH(hw);
2016                 return;
2017         }
2018
2019         I40EVF_WRITE_FLUSH(hw);
2020 }
2021
2022 static inline void
2023 i40evf_disable_queues_intr(struct rte_eth_dev *dev)
2024 {
2025         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2026         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2027         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2028
2029         if (!rte_intr_allow_others(intr_handle)) {
2030                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
2031                                I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
2032                 I40EVF_WRITE_FLUSH(hw);
2033                 return;
2034         }
2035
2036         I40EVF_WRITE_FLUSH(hw);
2037 }
2038
2039 static int
2040 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
2041 {
2042         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2043         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2044         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2045         uint16_t interval =
2046                 i40e_calc_itr_interval(0, 0);
2047         uint16_t msix_intr;
2048
2049         msix_intr = intr_handle->intr_vec[queue_id];
2050         if (msix_intr == I40E_MISC_VEC_ID)
2051                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
2052                                I40E_VFINT_DYN_CTL01_INTENA_MASK |
2053                                I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
2054                                (0 << I40E_VFINT_DYN_CTL01_ITR_INDX_SHIFT) |
2055                                (interval <<
2056                                 I40E_VFINT_DYN_CTL01_INTERVAL_SHIFT));
2057         else
2058                 I40E_WRITE_REG(hw,
2059                                I40E_VFINT_DYN_CTLN1(msix_intr -
2060                                                     I40E_RX_VEC_START),
2061                                I40E_VFINT_DYN_CTLN1_INTENA_MASK |
2062                                I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK |
2063                                (0 << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) |
2064                                (interval <<
2065                                 I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT));
2066
2067         I40EVF_WRITE_FLUSH(hw);
2068
2069         return 0;
2070 }
2071
2072 static int
2073 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
2074 {
2075         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2076         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2077         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2078         uint16_t msix_intr;
2079
2080         msix_intr = intr_handle->intr_vec[queue_id];
2081         if (msix_intr == I40E_MISC_VEC_ID)
2082                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01, 0);
2083         else
2084                 I40E_WRITE_REG(hw,
2085                                I40E_VFINT_DYN_CTLN1(msix_intr -
2086                                                     I40E_RX_VEC_START),
2087                                0);
2088
2089         I40EVF_WRITE_FLUSH(hw);
2090
2091         return 0;
2092 }
2093
2094 static void
2095 i40evf_add_del_all_mac_addr(struct rte_eth_dev *dev, bool add)
2096 {
2097         struct virtchnl_ether_addr_list *list;
2098         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2099         int err, i, j;
2100         int next_begin = 0;
2101         int begin = 0;
2102         uint32_t len;
2103         struct rte_ether_addr *addr;
2104         struct vf_cmd_info args;
2105
2106         do {
2107                 j = 0;
2108                 len = sizeof(struct virtchnl_ether_addr_list);
2109                 for (i = begin; i < I40E_NUM_MACADDR_MAX; i++, next_begin++) {
2110                         if (rte_is_zero_ether_addr(&dev->data->mac_addrs[i]))
2111                                 continue;
2112                         len += sizeof(struct virtchnl_ether_addr);
2113                         if (len >= I40E_AQ_BUF_SZ) {
2114                                 next_begin = i + 1;
2115                                 break;
2116                         }
2117                 }
2118
2119                 list = rte_zmalloc("i40evf_del_mac_buffer", len, 0);
2120                 if (!list) {
2121                         PMD_DRV_LOG(ERR, "fail to allocate memory");
2122                         return;
2123                 }
2124
2125                 for (i = begin; i < next_begin; i++) {
2126                         addr = &dev->data->mac_addrs[i];
2127                         if (rte_is_zero_ether_addr(addr))
2128                                 continue;
2129                         rte_memcpy(list->list[j].addr, addr->addr_bytes,
2130                                          sizeof(addr->addr_bytes));
2131                         list->list[j].type = (j == 0 ?
2132                                               VIRTCHNL_ETHER_ADDR_PRIMARY :
2133                                               VIRTCHNL_ETHER_ADDR_EXTRA);
2134                         PMD_DRV_LOG(DEBUG, "add/rm mac:%x:%x:%x:%x:%x:%x",
2135                                     addr->addr_bytes[0], addr->addr_bytes[1],
2136                                     addr->addr_bytes[2], addr->addr_bytes[3],
2137                                     addr->addr_bytes[4], addr->addr_bytes[5]);
2138                         j++;
2139                 }
2140                 list->vsi_id = vf->vsi_res->vsi_id;
2141                 list->num_elements = j;
2142                 args.ops = add ? VIRTCHNL_OP_ADD_ETH_ADDR :
2143                            VIRTCHNL_OP_DEL_ETH_ADDR;
2144                 args.in_args = (uint8_t *)list;
2145                 args.in_args_size = len;
2146                 args.out_buffer = vf->aq_resp;
2147                 args.out_size = I40E_AQ_BUF_SZ;
2148                 err = i40evf_execute_vf_cmd(dev, &args);
2149                 if (err) {
2150                         PMD_DRV_LOG(ERR, "fail to execute command %s",
2151                                     add ? "OP_ADD_ETHER_ADDRESS" :
2152                                     "OP_DEL_ETHER_ADDRESS");
2153                 } else {
2154                         if (add)
2155                                 vf->vsi.mac_num++;
2156                         else
2157                                 vf->vsi.mac_num--;
2158                 }
2159                 rte_free(list);
2160                 begin = next_begin;
2161         } while (begin < I40E_NUM_MACADDR_MAX);
2162 }
2163
2164 static int
2165 i40evf_dev_start(struct rte_eth_dev *dev)
2166 {
2167         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2168         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2169         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2170         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2171         uint32_t intr_vector = 0;
2172
2173         PMD_INIT_FUNC_TRACE();
2174
2175         hw->adapter_stopped = 0;
2176
2177         vf->max_pkt_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
2178         vf->num_queue_pairs = RTE_MAX(dev->data->nb_rx_queues,
2179                                         dev->data->nb_tx_queues);
2180
2181         /* check and configure queue intr-vector mapping */
2182         if (rte_intr_cap_multiple(intr_handle) &&
2183             dev->data->dev_conf.intr_conf.rxq) {
2184                 intr_vector = dev->data->nb_rx_queues;
2185                 if (rte_intr_efd_enable(intr_handle, intr_vector))
2186                         return -1;
2187         }
2188
2189         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2190                 intr_handle->intr_vec =
2191                         rte_zmalloc("intr_vec",
2192                                     dev->data->nb_rx_queues * sizeof(int), 0);
2193                 if (!intr_handle->intr_vec) {
2194                         PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2195                                      " intr_vec", dev->data->nb_rx_queues);
2196                         return -ENOMEM;
2197                 }
2198         }
2199
2200         if (i40evf_rx_init(dev) != 0){
2201                 PMD_DRV_LOG(ERR, "failed to do RX init");
2202                 return -1;
2203         }
2204
2205         i40evf_tx_init(dev);
2206
2207         if (i40evf_configure_vsi_queues(dev) != 0) {
2208                 PMD_DRV_LOG(ERR, "configure queues failed");
2209                 goto err_queue;
2210         }
2211         if (i40evf_config_irq_map(dev)) {
2212                 PMD_DRV_LOG(ERR, "config_irq_map failed");
2213                 goto err_queue;
2214         }
2215
2216         /* Set all mac addrs */
2217         i40evf_add_del_all_mac_addr(dev, TRUE);
2218         /* Set all multicast addresses */
2219         i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2220                                 TRUE);
2221
2222         if (i40evf_start_queues(dev) != 0) {
2223                 PMD_DRV_LOG(ERR, "enable queues failed");
2224                 goto err_mac;
2225         }
2226
2227         /* only enable interrupt in rx interrupt mode */
2228         if (dev->data->dev_conf.intr_conf.rxq != 0)
2229                 rte_intr_enable(intr_handle);
2230
2231         i40evf_enable_queues_intr(dev);
2232
2233         return 0;
2234
2235 err_mac:
2236         i40evf_add_del_all_mac_addr(dev, FALSE);
2237         i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2238                                 FALSE);
2239 err_queue:
2240         return -1;
2241 }
2242
2243 static int
2244 i40evf_dev_stop(struct rte_eth_dev *dev)
2245 {
2246         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2247         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2248         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2249         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2250
2251         PMD_INIT_FUNC_TRACE();
2252
2253         if (dev->data->dev_conf.intr_conf.rxq != 0)
2254                 rte_intr_disable(intr_handle);
2255
2256         if (hw->adapter_stopped == 1)
2257                 return 0;
2258         i40evf_stop_queues(dev);
2259         i40evf_disable_queues_intr(dev);
2260         i40e_dev_clear_queues(dev);
2261
2262         /* Clean datapath event and queue/vec mapping */
2263         rte_intr_efd_disable(intr_handle);
2264         if (intr_handle->intr_vec) {
2265                 rte_free(intr_handle->intr_vec);
2266                 intr_handle->intr_vec = NULL;
2267         }
2268         /* remove all mac addrs */
2269         i40evf_add_del_all_mac_addr(dev, FALSE);
2270         /* remove all multicast addresses */
2271         i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2272                                 FALSE);
2273         hw->adapter_stopped = 1;
2274         dev->data->dev_started = 0;
2275
2276         return 0;
2277 }
2278
2279 static int
2280 i40evf_dev_link_update(struct rte_eth_dev *dev,
2281                        __rte_unused int wait_to_complete)
2282 {
2283         struct rte_eth_link new_link;
2284         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2285         /*
2286          * DPDK pf host provide interfacet to acquire link status
2287          * while Linux driver does not
2288          */
2289
2290         memset(&new_link, 0, sizeof(new_link));
2291         /* Linux driver PF host */
2292         switch (vf->link_speed) {
2293         case I40E_LINK_SPEED_100MB:
2294                 new_link.link_speed = ETH_SPEED_NUM_100M;
2295                 break;
2296         case I40E_LINK_SPEED_1GB:
2297                 new_link.link_speed = ETH_SPEED_NUM_1G;
2298                 break;
2299         case I40E_LINK_SPEED_10GB:
2300                 new_link.link_speed = ETH_SPEED_NUM_10G;
2301                 break;
2302         case I40E_LINK_SPEED_20GB:
2303                 new_link.link_speed = ETH_SPEED_NUM_20G;
2304                 break;
2305         case I40E_LINK_SPEED_25GB:
2306                 new_link.link_speed = ETH_SPEED_NUM_25G;
2307                 break;
2308         case I40E_LINK_SPEED_40GB:
2309                 new_link.link_speed = ETH_SPEED_NUM_40G;
2310                 break;
2311         default:
2312                 if (vf->link_up)
2313                         new_link.link_speed = ETH_SPEED_NUM_UNKNOWN;
2314                 else
2315                         new_link.link_speed = ETH_SPEED_NUM_NONE;
2316                 break;
2317         }
2318         /* full duplex only */
2319         new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
2320         new_link.link_status = vf->link_up ? ETH_LINK_UP : ETH_LINK_DOWN;
2321         new_link.link_autoneg =
2322                 !(dev->data->dev_conf.link_speeds & ETH_LINK_SPEED_FIXED);
2323
2324         return rte_eth_linkstatus_set(dev, &new_link);
2325 }
2326
2327 static int
2328 i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev)
2329 {
2330         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2331
2332         return i40evf_config_promisc(dev, true, vf->promisc_multicast_enabled);
2333 }
2334
2335 static int
2336 i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev)
2337 {
2338         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2339
2340         return i40evf_config_promisc(dev, false, vf->promisc_multicast_enabled);
2341 }
2342
2343 static int
2344 i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev)
2345 {
2346         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2347
2348         return i40evf_config_promisc(dev, vf->promisc_unicast_enabled, true);
2349 }
2350
2351 static int
2352 i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev)
2353 {
2354         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2355
2356         return i40evf_config_promisc(dev, vf->promisc_unicast_enabled, false);
2357 }
2358
2359 static int
2360 i40evf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2361 {
2362         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2363
2364         dev_info->max_rx_queues = I40E_MAX_QP_NUM_PER_VF;
2365         dev_info->max_tx_queues = I40E_MAX_QP_NUM_PER_VF;
2366         dev_info->min_rx_bufsize = I40E_BUF_SIZE_MIN;
2367         dev_info->max_rx_pktlen = I40E_FRAME_SIZE_MAX;
2368         dev_info->max_mtu = dev_info->max_rx_pktlen - I40E_ETH_OVERHEAD;
2369         dev_info->min_mtu = RTE_ETHER_MIN_MTU;
2370         dev_info->hash_key_size = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2371         dev_info->reta_size = ETH_RSS_RETA_SIZE_64;
2372         dev_info->flow_type_rss_offloads = vf->adapter->flow_types_mask;
2373         dev_info->max_mac_addrs = I40E_NUM_MACADDR_MAX;
2374         dev_info->rx_queue_offload_capa = 0;
2375         dev_info->rx_offload_capa =
2376                 DEV_RX_OFFLOAD_VLAN_STRIP |
2377                 DEV_RX_OFFLOAD_QINQ_STRIP |
2378                 DEV_RX_OFFLOAD_IPV4_CKSUM |
2379                 DEV_RX_OFFLOAD_UDP_CKSUM |
2380                 DEV_RX_OFFLOAD_TCP_CKSUM |
2381                 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
2382                 DEV_RX_OFFLOAD_SCATTER |
2383                 DEV_RX_OFFLOAD_JUMBO_FRAME |
2384                 DEV_RX_OFFLOAD_VLAN_FILTER;
2385
2386         dev_info->tx_queue_offload_capa = 0;
2387         dev_info->tx_offload_capa =
2388                 DEV_TX_OFFLOAD_VLAN_INSERT |
2389                 DEV_TX_OFFLOAD_QINQ_INSERT |
2390                 DEV_TX_OFFLOAD_IPV4_CKSUM |
2391                 DEV_TX_OFFLOAD_UDP_CKSUM |
2392                 DEV_TX_OFFLOAD_TCP_CKSUM |
2393                 DEV_TX_OFFLOAD_SCTP_CKSUM |
2394                 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
2395                 DEV_TX_OFFLOAD_TCP_TSO |
2396                 DEV_TX_OFFLOAD_VXLAN_TNL_TSO |
2397                 DEV_TX_OFFLOAD_GRE_TNL_TSO |
2398                 DEV_TX_OFFLOAD_IPIP_TNL_TSO |
2399                 DEV_TX_OFFLOAD_GENEVE_TNL_TSO |
2400                 DEV_TX_OFFLOAD_MULTI_SEGS;
2401
2402         dev_info->default_rxconf = (struct rte_eth_rxconf) {
2403                 .rx_thresh = {
2404                         .pthresh = I40E_DEFAULT_RX_PTHRESH,
2405                         .hthresh = I40E_DEFAULT_RX_HTHRESH,
2406                         .wthresh = I40E_DEFAULT_RX_WTHRESH,
2407                 },
2408                 .rx_free_thresh = I40E_DEFAULT_RX_FREE_THRESH,
2409                 .rx_drop_en = 0,
2410                 .offloads = 0,
2411         };
2412
2413         dev_info->default_txconf = (struct rte_eth_txconf) {
2414                 .tx_thresh = {
2415                         .pthresh = I40E_DEFAULT_TX_PTHRESH,
2416                         .hthresh = I40E_DEFAULT_TX_HTHRESH,
2417                         .wthresh = I40E_DEFAULT_TX_WTHRESH,
2418                 },
2419                 .tx_free_thresh = I40E_DEFAULT_TX_FREE_THRESH,
2420                 .tx_rs_thresh = I40E_DEFAULT_TX_RSBIT_THRESH,
2421                 .offloads = 0,
2422         };
2423
2424         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
2425                 .nb_max = I40E_MAX_RING_DESC,
2426                 .nb_min = I40E_MIN_RING_DESC,
2427                 .nb_align = I40E_ALIGN_RING_DESC,
2428         };
2429
2430         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
2431                 .nb_max = I40E_MAX_RING_DESC,
2432                 .nb_min = I40E_MIN_RING_DESC,
2433                 .nb_align = I40E_ALIGN_RING_DESC,
2434         };
2435
2436         return 0;
2437 }
2438
2439 static int
2440 i40evf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2441 {
2442         int ret;
2443         struct i40e_eth_stats *pstats = NULL;
2444         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2445         struct i40e_vsi *vsi = &vf->vsi;
2446
2447         ret = i40evf_query_stats(dev, &pstats);
2448         if (ret == 0) {
2449                 i40evf_update_stats(vsi, pstats);
2450
2451                 stats->ipackets = pstats->rx_unicast + pstats->rx_multicast +
2452                                                 pstats->rx_broadcast;
2453                 stats->opackets = pstats->tx_broadcast + pstats->tx_multicast +
2454                                                 pstats->tx_unicast;
2455                 stats->imissed = pstats->rx_discards;
2456                 stats->oerrors = pstats->tx_errors + pstats->tx_discards;
2457                 stats->ibytes = pstats->rx_bytes;
2458                 stats->ibytes -= stats->ipackets * RTE_ETHER_CRC_LEN;
2459                 stats->obytes = pstats->tx_bytes;
2460         } else {
2461                 PMD_DRV_LOG(ERR, "Get statistics failed");
2462         }
2463         return ret;
2464 }
2465
2466 static int
2467 i40evf_dev_close(struct rte_eth_dev *dev)
2468 {
2469         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2470         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2471         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2472         int ret;
2473
2474         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2475                 return 0;
2476
2477         ret = i40evf_dev_stop(dev);
2478
2479         i40e_dev_free_queues(dev);
2480         /*
2481          * disable promiscuous mode before reset vf
2482          * it is a workaround solution when work with kernel driver
2483          * and it is not the normal way
2484          */
2485         if (vf->promisc_unicast_enabled || vf->promisc_multicast_enabled)
2486                 i40evf_config_promisc(dev, false, false);
2487
2488         rte_eal_alarm_cancel(i40evf_dev_alarm_handler, dev);
2489
2490         i40evf_reset_vf(dev);
2491         i40e_shutdown_adminq(hw);
2492         i40evf_disable_irq0(hw);
2493
2494         /*
2495          * If the VF is reset via VFLR, the device will be knocked out of bus
2496          * master mode, and the driver will fail to recover from the reset. Fix
2497          * this by enabling bus mastering after every reset. In a non-VFLR case,
2498          * the bus master bit will not be disabled, and this call will have no
2499          * effect.
2500          */
2501         if (vf->vf_reset && !rte_pci_set_bus_master(pci_dev, true))
2502                 vf->vf_reset = false;
2503
2504         rte_free(vf->vf_res);
2505         vf->vf_res = NULL;
2506         rte_free(vf->aq_resp);
2507         vf->aq_resp = NULL;
2508
2509         hw->adapter_closed = 1;
2510         return ret;
2511 }
2512
2513 /*
2514  * Reset VF device only to re-initialize resources in PMD layer
2515  */
2516 static int
2517 i40evf_dev_reset(struct rte_eth_dev *dev)
2518 {
2519         int ret;
2520
2521         ret = i40evf_dev_uninit(dev);
2522         if (ret)
2523                 return ret;
2524
2525         ret = i40evf_dev_init(dev);
2526
2527         return ret;
2528 }
2529
2530 static int
2531 i40evf_get_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2532 {
2533         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2534         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2535         int ret;
2536
2537         if (!lut)
2538                 return -EINVAL;
2539
2540         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2541                 ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, FALSE,
2542                                           lut, lut_size);
2543                 if (ret) {
2544                         PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
2545                         return ret;
2546                 }
2547         } else {
2548                 uint32_t *lut_dw = (uint32_t *)lut;
2549                 uint16_t i, lut_size_dw = lut_size / 4;
2550
2551                 for (i = 0; i < lut_size_dw; i++)
2552                         lut_dw[i] = I40E_READ_REG(hw, I40E_VFQF_HLUT(i));
2553         }
2554
2555         return 0;
2556 }
2557
2558 static int
2559 i40evf_set_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2560 {
2561         struct i40e_vf *vf;
2562         struct i40e_hw *hw;
2563         int ret;
2564
2565         if (!vsi || !lut)
2566                 return -EINVAL;
2567
2568         vf = I40E_VSI_TO_VF(vsi);
2569         hw = I40E_VSI_TO_HW(vsi);
2570
2571         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2572                 ret = i40e_aq_set_rss_lut(hw, vsi->vsi_id, FALSE,
2573                                           lut, lut_size);
2574                 if (ret) {
2575                         PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
2576                         return ret;
2577                 }
2578         } else {
2579                 uint32_t *lut_dw = (uint32_t *)lut;
2580                 uint16_t i, lut_size_dw = lut_size / 4;
2581
2582                 for (i = 0; i < lut_size_dw; i++)
2583                         I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i), lut_dw[i]);
2584                 I40EVF_WRITE_FLUSH(hw);
2585         }
2586
2587         return 0;
2588 }
2589
2590 static int
2591 i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
2592                            struct rte_eth_rss_reta_entry64 *reta_conf,
2593                            uint16_t reta_size)
2594 {
2595         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2596         uint8_t *lut;
2597         uint16_t i, idx, shift;
2598         int ret;
2599
2600         if (reta_size != ETH_RSS_RETA_SIZE_64) {
2601                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2602                         "(%d) doesn't match the number of hardware can "
2603                         "support (%d)", reta_size, ETH_RSS_RETA_SIZE_64);
2604                 return -EINVAL;
2605         }
2606
2607         lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2608         if (!lut) {
2609                 PMD_DRV_LOG(ERR, "No memory can be allocated");
2610                 return -ENOMEM;
2611         }
2612         ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2613         if (ret)
2614                 goto out;
2615         for (i = 0; i < reta_size; i++) {
2616                 idx = i / RTE_RETA_GROUP_SIZE;
2617                 shift = i % RTE_RETA_GROUP_SIZE;
2618                 if (reta_conf[idx].mask & (1ULL << shift))
2619                         lut[i] = reta_conf[idx].reta[shift];
2620         }
2621         ret = i40evf_set_rss_lut(&vf->vsi, lut, reta_size);
2622
2623 out:
2624         rte_free(lut);
2625
2626         return ret;
2627 }
2628
2629 static int
2630 i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
2631                           struct rte_eth_rss_reta_entry64 *reta_conf,
2632                           uint16_t reta_size)
2633 {
2634         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2635         uint16_t i, idx, shift;
2636         uint8_t *lut;
2637         int ret;
2638
2639         if (reta_size != ETH_RSS_RETA_SIZE_64) {
2640                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2641                         "(%d) doesn't match the number of hardware can "
2642                         "support (%d)", reta_size, ETH_RSS_RETA_SIZE_64);
2643                 return -EINVAL;
2644         }
2645
2646         lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2647         if (!lut) {
2648                 PMD_DRV_LOG(ERR, "No memory can be allocated");
2649                 return -ENOMEM;
2650         }
2651
2652         ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2653         if (ret)
2654                 goto out;
2655         for (i = 0; i < reta_size; i++) {
2656                 idx = i / RTE_RETA_GROUP_SIZE;
2657                 shift = i % RTE_RETA_GROUP_SIZE;
2658                 if (reta_conf[idx].mask & (1ULL << shift))
2659                         reta_conf[idx].reta[shift] = lut[i];
2660         }
2661
2662 out:
2663         rte_free(lut);
2664
2665         return ret;
2666 }
2667
2668 static int
2669 i40evf_set_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t key_len)
2670 {
2671         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2672         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2673         int ret = 0;
2674
2675         if (!key || key_len == 0) {
2676                 PMD_DRV_LOG(DEBUG, "No key to be configured");
2677                 return 0;
2678         } else if (key_len != (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2679                 sizeof(uint32_t)) {
2680                 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
2681                 return -EINVAL;
2682         }
2683
2684         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2685                 struct i40e_aqc_get_set_rss_key_data *key_dw =
2686                         (struct i40e_aqc_get_set_rss_key_data *)key;
2687
2688                 ret = i40e_aq_set_rss_key(hw, vsi->vsi_id, key_dw);
2689                 if (ret)
2690                         PMD_INIT_LOG(ERR, "Failed to configure RSS key "
2691                                      "via AQ");
2692         } else {
2693                 uint32_t *hash_key = (uint32_t *)key;
2694                 uint16_t i;
2695
2696                 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2697                         i40e_write_rx_ctl(hw, I40E_VFQF_HKEY(i), hash_key[i]);
2698                 I40EVF_WRITE_FLUSH(hw);
2699         }
2700
2701         return ret;
2702 }
2703
2704 static int
2705 i40evf_get_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t *key_len)
2706 {
2707         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2708         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2709         int ret;
2710
2711         if (!key || !key_len)
2712                 return -EINVAL;
2713
2714         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2715                 ret = i40e_aq_get_rss_key(hw, vsi->vsi_id,
2716                         (struct i40e_aqc_get_set_rss_key_data *)key);
2717                 if (ret) {
2718                         PMD_INIT_LOG(ERR, "Failed to get RSS key via AQ");
2719                         return ret;
2720                 }
2721         } else {
2722                 uint32_t *key_dw = (uint32_t *)key;
2723                 uint16_t i;
2724
2725                 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2726                         key_dw[i] = i40e_read_rx_ctl(hw, I40E_VFQF_HKEY(i));
2727         }
2728         *key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2729
2730         return 0;
2731 }
2732
2733 static int
2734 i40evf_hw_rss_hash_set(struct i40e_vf *vf, struct rte_eth_rss_conf *rss_conf)
2735 {
2736         struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2737         uint64_t hena;
2738         int ret;
2739
2740         ret = i40evf_set_rss_key(&vf->vsi, rss_conf->rss_key,
2741                                  rss_conf->rss_key_len);
2742         if (ret)
2743                 return ret;
2744
2745         hena = i40e_config_hena(vf->adapter, rss_conf->rss_hf);
2746         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), (uint32_t)hena);
2747         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), (uint32_t)(hena >> 32));
2748         I40EVF_WRITE_FLUSH(hw);
2749
2750         return 0;
2751 }
2752
2753 static void
2754 i40evf_disable_rss(struct i40e_vf *vf)
2755 {
2756         struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2757
2758         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), 0);
2759         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), 0);
2760         I40EVF_WRITE_FLUSH(hw);
2761 }
2762
2763 static int
2764 i40evf_config_rss(struct i40e_vf *vf)
2765 {
2766         struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2767         struct rte_eth_rss_conf rss_conf;
2768         uint32_t i, j, lut = 0, nb_q = (I40E_VFQF_HLUT_MAX_INDEX + 1) * 4;
2769         uint32_t rss_lut_size = (I40E_VFQF_HLUT1_MAX_INDEX + 1) * 4;
2770         uint16_t num;
2771         uint8_t *lut_info;
2772         int ret;
2773
2774         if (vf->dev_data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS) {
2775                 i40evf_disable_rss(vf);
2776                 PMD_DRV_LOG(DEBUG, "RSS not configured");
2777                 return 0;
2778         }
2779
2780         num = RTE_MIN(vf->dev_data->nb_rx_queues, I40E_MAX_QP_NUM_PER_VF);
2781         /* Fill out the look up table */
2782         if (!(vf->flags & I40E_FLAG_RSS_AQ_CAPABLE)) {
2783                 for (i = 0, j = 0; i < nb_q; i++, j++) {
2784                         if (j >= num)
2785                                 j = 0;
2786                         lut = (lut << 8) | j;
2787                         if ((i & 3) == 3)
2788                                 I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i >> 2), lut);
2789                 }
2790         } else {
2791                 lut_info = rte_zmalloc("i40e_rss_lut", rss_lut_size, 0);
2792                 if (!lut_info) {
2793                         PMD_DRV_LOG(ERR, "No memory can be allocated");
2794                         return -ENOMEM;
2795                 }
2796
2797                 for (i = 0; i < rss_lut_size; i++)
2798                         lut_info[i] = i % num;
2799
2800                 ret = i40evf_set_rss_lut(&vf->vsi, lut_info,
2801                                          rss_lut_size);
2802                 rte_free(lut_info);
2803                 if (ret)
2804                         return ret;
2805         }
2806
2807         rss_conf = vf->dev_data->dev_conf.rx_adv_conf.rss_conf;
2808         if ((rss_conf.rss_hf & vf->adapter->flow_types_mask) == 0) {
2809                 i40evf_disable_rss(vf);
2810                 PMD_DRV_LOG(DEBUG, "No hash flag is set");
2811                 return 0;
2812         }
2813
2814         if (rss_conf.rss_key == NULL || rss_conf.rss_key_len <
2815                 (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t)) {
2816                 /* Calculate the default hash key */
2817                 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2818                         rss_key_default[i] = (uint32_t)rte_rand();
2819                 rss_conf.rss_key = (uint8_t *)rss_key_default;
2820                 rss_conf.rss_key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2821                         sizeof(uint32_t);
2822         }
2823
2824         return i40evf_hw_rss_hash_set(vf, &rss_conf);
2825 }
2826
2827 static int
2828 i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
2829                            struct rte_eth_rss_conf *rss_conf)
2830 {
2831         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2832         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2833         uint64_t rss_hf = rss_conf->rss_hf & vf->adapter->flow_types_mask;
2834         uint64_t hena;
2835
2836         hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2837         hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2838
2839         if (!(hena & vf->adapter->pctypes_mask)) { /* RSS disabled */
2840                 if (rss_hf != 0) /* Enable RSS */
2841                         return -EINVAL;
2842                 return 0;
2843         }
2844
2845         /* RSS enabled */
2846         if (rss_hf == 0) /* Disable RSS */
2847                 return -EINVAL;
2848
2849         return i40evf_hw_rss_hash_set(vf, rss_conf);
2850 }
2851
2852 static int
2853 i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2854                              struct rte_eth_rss_conf *rss_conf)
2855 {
2856         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2857         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2858         uint64_t hena;
2859
2860         i40evf_get_rss_key(&vf->vsi, rss_conf->rss_key,
2861                            &rss_conf->rss_key_len);
2862
2863         hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2864         hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2865         rss_conf->rss_hf = i40e_parse_hena(vf->adapter, hena);
2866
2867         return 0;
2868 }
2869
2870 static int
2871 i40evf_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
2872 {
2873         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2874         struct rte_eth_dev_data *dev_data = vf->dev_data;
2875         uint32_t frame_size = mtu + I40E_ETH_OVERHEAD;
2876         int ret = 0;
2877
2878         /* check if mtu is within the allowed range */
2879         if (mtu < RTE_ETHER_MIN_MTU || frame_size > I40E_FRAME_SIZE_MAX)
2880                 return -EINVAL;
2881
2882         /* mtu setting is forbidden if port is start */
2883         if (dev_data->dev_started) {
2884                 PMD_DRV_LOG(ERR, "port %d must be stopped before configuration",
2885                             dev_data->port_id);
2886                 return -EBUSY;
2887         }
2888
2889         if (frame_size > I40E_ETH_MAX_LEN)
2890                 dev_data->dev_conf.rxmode.offloads |=
2891                         DEV_RX_OFFLOAD_JUMBO_FRAME;
2892         else
2893                 dev_data->dev_conf.rxmode.offloads &=
2894                         ~DEV_RX_OFFLOAD_JUMBO_FRAME;
2895         dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
2896
2897         return ret;
2898 }
2899
2900 static int
2901 i40evf_set_default_mac_addr(struct rte_eth_dev *dev,
2902                             struct rte_ether_addr *mac_addr)
2903 {
2904         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2905         struct rte_ether_addr *old_addr;
2906         int ret;
2907
2908         old_addr = (struct rte_ether_addr *)hw->mac.addr;
2909
2910         if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
2911                 PMD_DRV_LOG(ERR, "Tried to set invalid MAC address.");
2912                 return -EINVAL;
2913         }
2914
2915         if (rte_is_same_ether_addr(old_addr, mac_addr))
2916                 return 0;
2917
2918         i40evf_add_del_eth_addr(dev, old_addr, FALSE, VIRTCHNL_ETHER_ADDR_PRIMARY);
2919
2920         ret = i40evf_add_del_eth_addr(dev, mac_addr, TRUE, VIRTCHNL_ETHER_ADDR_PRIMARY);
2921         if (ret)
2922                 return -EIO;
2923
2924         rte_ether_addr_copy(mac_addr, (struct rte_ether_addr *)hw->mac.addr);
2925         return 0;
2926 }
2927
2928 static int
2929 i40evf_add_del_mc_addr_list(struct rte_eth_dev *dev,
2930                         struct rte_ether_addr *mc_addrs,
2931                         uint32_t mc_addrs_num, bool add)
2932 {
2933         struct virtchnl_ether_addr_list *list;
2934         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2935         uint8_t cmd_buffer[sizeof(struct virtchnl_ether_addr_list) +
2936                 (I40E_NUM_MACADDR_MAX * sizeof(struct virtchnl_ether_addr))];
2937         uint32_t i;
2938         int err;
2939         struct vf_cmd_info args;
2940
2941         if (mc_addrs == NULL || mc_addrs_num == 0)
2942                 return 0;
2943
2944         if (mc_addrs_num > I40E_NUM_MACADDR_MAX)
2945                 return -EINVAL;
2946
2947         list = (struct virtchnl_ether_addr_list *)cmd_buffer;
2948         list->vsi_id = vf->vsi_res->vsi_id;
2949         list->num_elements = mc_addrs_num;
2950
2951         for (i = 0; i < mc_addrs_num; i++) {
2952                 if (!I40E_IS_MULTICAST(mc_addrs[i].addr_bytes)) {
2953                         PMD_DRV_LOG(ERR, "Invalid mac:%x:%x:%x:%x:%x:%x",
2954                                     mc_addrs[i].addr_bytes[0],
2955                                     mc_addrs[i].addr_bytes[1],
2956                                     mc_addrs[i].addr_bytes[2],
2957                                     mc_addrs[i].addr_bytes[3],
2958                                     mc_addrs[i].addr_bytes[4],
2959                                     mc_addrs[i].addr_bytes[5]);
2960                         return -EINVAL;
2961                 }
2962
2963                 memcpy(list->list[i].addr, mc_addrs[i].addr_bytes,
2964                         sizeof(list->list[i].addr));
2965                 list->list[i].type = VIRTCHNL_ETHER_ADDR_EXTRA;
2966         }
2967
2968         args.ops = add ? VIRTCHNL_OP_ADD_ETH_ADDR : VIRTCHNL_OP_DEL_ETH_ADDR;
2969         args.in_args = cmd_buffer;
2970         args.in_args_size = sizeof(struct virtchnl_ether_addr_list) +
2971                 i * sizeof(struct virtchnl_ether_addr);
2972         args.out_buffer = vf->aq_resp;
2973         args.out_size = I40E_AQ_BUF_SZ;
2974         err = i40evf_execute_vf_cmd(dev, &args);
2975         if (err) {
2976                 PMD_DRV_LOG(ERR, "fail to execute command %s",
2977                         add ? "OP_ADD_ETH_ADDR" : "OP_DEL_ETH_ADDR");
2978                 return err;
2979         }
2980
2981         return 0;
2982 }
2983
2984 static int
2985 i40evf_set_mc_addr_list(struct rte_eth_dev *dev,
2986                         struct rte_ether_addr *mc_addrs,
2987                         uint32_t mc_addrs_num)
2988 {
2989         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2990         int err;
2991
2992         /* flush previous addresses */
2993         err = i40evf_add_del_mc_addr_list(dev, vf->mc_addrs, vf->mc_addrs_num,
2994                                 FALSE);
2995         if (err)
2996                 return err;
2997
2998         vf->mc_addrs_num = 0;
2999
3000         /* add new ones */
3001         err = i40evf_add_del_mc_addr_list(dev, mc_addrs, mc_addrs_num,
3002                                         TRUE);
3003         if (err)
3004                 return err;
3005
3006         vf->mc_addrs_num = mc_addrs_num;
3007         memcpy(vf->mc_addrs, mc_addrs, mc_addrs_num * sizeof(*mc_addrs));
3008
3009         return 0;
3010 }
3011
3012 bool
3013 is_i40evf_supported(struct rte_eth_dev *dev)
3014 {
3015         return is_device_supported(dev, &rte_i40evf_pmd);
3016 }