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