net/i40evf: fix return value if admin queue command fails
[dpdk.git] / drivers / net / i40e / i40e_ethdev_vf.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <sys/queue.h>
35 #include <stdio.h>
36 #include <errno.h>
37 #include <stdint.h>
38 #include <string.h>
39 #include <unistd.h>
40 #include <stdarg.h>
41 #include <inttypes.h>
42 #include <rte_byteorder.h>
43 #include <rte_common.h>
44 #include <rte_cycles.h>
45
46 #include <rte_interrupts.h>
47 #include <rte_log.h>
48 #include <rte_debug.h>
49 #include <rte_pci.h>
50 #include <rte_atomic.h>
51 #include <rte_branch_prediction.h>
52 #include <rte_memory.h>
53 #include <rte_memzone.h>
54 #include <rte_eal.h>
55 #include <rte_alarm.h>
56 #include <rte_ether.h>
57 #include <rte_ethdev.h>
58 #include <rte_atomic.h>
59 #include <rte_malloc.h>
60 #include <rte_dev.h>
61
62 #include "i40e_logs.h"
63 #include "base/i40e_prototype.h"
64 #include "base/i40e_adminq_cmd.h"
65 #include "base/i40e_type.h"
66
67 #include "i40e_rxtx.h"
68 #include "i40e_ethdev.h"
69 #include "i40e_pf.h"
70 #define I40EVF_VSI_DEFAULT_MSIX_INTR     1
71 #define I40EVF_VSI_DEFAULT_MSIX_INTR_LNX 0
72
73 /* busy wait delay in msec */
74 #define I40EVF_BUSY_WAIT_DELAY 10
75 #define I40EVF_BUSY_WAIT_COUNT 50
76 #define MAX_RESET_WAIT_CNT     20
77
78 struct i40evf_arq_msg_info {
79         enum i40e_virtchnl_ops ops;
80         enum i40e_status_code result;
81         uint16_t buf_len;
82         uint16_t msg_len;
83         uint8_t *msg;
84 };
85
86 struct vf_cmd_info {
87         enum i40e_virtchnl_ops ops;
88         uint8_t *in_args;
89         uint32_t in_args_size;
90         uint8_t *out_buffer;
91         /* Input & output type. pass in buffer size and pass out
92          * actual return result
93          */
94         uint32_t out_size;
95 };
96
97 enum i40evf_aq_result {
98         I40EVF_MSG_ERR = -1, /* Meet error when accessing admin queue */
99         I40EVF_MSG_NON,      /* Read nothing from admin queue */
100         I40EVF_MSG_SYS,      /* Read system msg from admin queue */
101         I40EVF_MSG_CMD,      /* Read async command result */
102 };
103
104 static int i40evf_dev_configure(struct rte_eth_dev *dev);
105 static int i40evf_dev_start(struct rte_eth_dev *dev);
106 static void i40evf_dev_stop(struct rte_eth_dev *dev);
107 static void i40evf_dev_info_get(struct rte_eth_dev *dev,
108                                 struct rte_eth_dev_info *dev_info);
109 static int i40evf_dev_link_update(struct rte_eth_dev *dev,
110                                   __rte_unused int wait_to_complete);
111 static void i40evf_dev_stats_get(struct rte_eth_dev *dev,
112                                 struct rte_eth_stats *stats);
113 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
114                                  struct rte_eth_xstat *xstats, unsigned n);
115 static int i40evf_dev_xstats_get_names(struct rte_eth_dev *dev,
116                                        struct rte_eth_xstat_name *xstats_names,
117                                        unsigned limit);
118 static void i40evf_dev_xstats_reset(struct rte_eth_dev *dev);
119 static int i40evf_vlan_filter_set(struct rte_eth_dev *dev,
120                                   uint16_t vlan_id, int on);
121 static void i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask);
122 static int i40evf_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid,
123                                 int on);
124 static void i40evf_dev_close(struct rte_eth_dev *dev);
125 static void i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev);
126 static void i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev);
127 static void i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev);
128 static void i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev);
129 static int i40evf_get_link_status(struct rte_eth_dev *dev,
130                                   struct rte_eth_link *link);
131 static int i40evf_init_vlan(struct rte_eth_dev *dev);
132 static int i40evf_dev_rx_queue_start(struct rte_eth_dev *dev,
133                                      uint16_t rx_queue_id);
134 static int i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev,
135                                     uint16_t rx_queue_id);
136 static int i40evf_dev_tx_queue_start(struct rte_eth_dev *dev,
137                                      uint16_t tx_queue_id);
138 static int i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev,
139                                     uint16_t tx_queue_id);
140 static void i40evf_add_mac_addr(struct rte_eth_dev *dev,
141                                 struct ether_addr *addr,
142                                 uint32_t index,
143                                 uint32_t pool);
144 static void i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index);
145 static int i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
146                         struct rte_eth_rss_reta_entry64 *reta_conf,
147                         uint16_t reta_size);
148 static int i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
149                         struct rte_eth_rss_reta_entry64 *reta_conf,
150                         uint16_t reta_size);
151 static int i40evf_config_rss(struct i40e_vf *vf);
152 static int i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
153                                       struct rte_eth_rss_conf *rss_conf);
154 static int i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
155                                         struct rte_eth_rss_conf *rss_conf);
156 static int
157 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id);
158 static int
159 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id);
160 static void i40evf_handle_pf_event(__rte_unused struct rte_eth_dev *dev,
161                                    uint8_t *msg,
162                                    uint16_t msglen);
163
164 /* Default hash key buffer for RSS */
165 static uint32_t rss_key_default[I40E_VFQF_HKEY_MAX_INDEX + 1];
166
167 struct rte_i40evf_xstats_name_off {
168         char name[RTE_ETH_XSTATS_NAME_SIZE];
169         unsigned offset;
170 };
171
172 static const struct rte_i40evf_xstats_name_off rte_i40evf_stats_strings[] = {
173         {"rx_bytes", offsetof(struct i40e_eth_stats, rx_bytes)},
174         {"rx_unicast_packets", offsetof(struct i40e_eth_stats, rx_unicast)},
175         {"rx_multicast_packets", offsetof(struct i40e_eth_stats, rx_multicast)},
176         {"rx_broadcast_packets", offsetof(struct i40e_eth_stats, rx_broadcast)},
177         {"rx_dropped_packets", offsetof(struct i40e_eth_stats, rx_discards)},
178         {"rx_unknown_protocol_packets", offsetof(struct i40e_eth_stats,
179                 rx_unknown_protocol)},
180         {"tx_bytes", offsetof(struct i40e_eth_stats, tx_bytes)},
181         {"tx_unicast_packets", offsetof(struct i40e_eth_stats, tx_bytes)},
182         {"tx_multicast_packets", offsetof(struct i40e_eth_stats, tx_bytes)},
183         {"tx_broadcast_packets", offsetof(struct i40e_eth_stats, tx_bytes)},
184         {"tx_dropped_packets", offsetof(struct i40e_eth_stats, tx_bytes)},
185         {"tx_error_packets", offsetof(struct i40e_eth_stats, tx_bytes)},
186 };
187
188 #define I40EVF_NB_XSTATS (sizeof(rte_i40evf_stats_strings) / \
189                 sizeof(rte_i40evf_stats_strings[0]))
190
191 static const struct eth_dev_ops i40evf_eth_dev_ops = {
192         .dev_configure        = i40evf_dev_configure,
193         .dev_start            = i40evf_dev_start,
194         .dev_stop             = i40evf_dev_stop,
195         .promiscuous_enable   = i40evf_dev_promiscuous_enable,
196         .promiscuous_disable  = i40evf_dev_promiscuous_disable,
197         .allmulticast_enable  = i40evf_dev_allmulticast_enable,
198         .allmulticast_disable = i40evf_dev_allmulticast_disable,
199         .link_update          = i40evf_dev_link_update,
200         .stats_get            = i40evf_dev_stats_get,
201         .xstats_get           = i40evf_dev_xstats_get,
202         .xstats_get_names     = i40evf_dev_xstats_get_names,
203         .xstats_reset         = i40evf_dev_xstats_reset,
204         .dev_close            = i40evf_dev_close,
205         .dev_infos_get        = i40evf_dev_info_get,
206         .dev_supported_ptypes_get = i40e_dev_supported_ptypes_get,
207         .vlan_filter_set      = i40evf_vlan_filter_set,
208         .vlan_offload_set     = i40evf_vlan_offload_set,
209         .vlan_pvid_set        = i40evf_vlan_pvid_set,
210         .rx_queue_start       = i40evf_dev_rx_queue_start,
211         .rx_queue_stop        = i40evf_dev_rx_queue_stop,
212         .tx_queue_start       = i40evf_dev_tx_queue_start,
213         .tx_queue_stop        = i40evf_dev_tx_queue_stop,
214         .rx_queue_setup       = i40e_dev_rx_queue_setup,
215         .rx_queue_release     = i40e_dev_rx_queue_release,
216         .rx_queue_intr_enable = i40evf_dev_rx_queue_intr_enable,
217         .rx_queue_intr_disable = i40evf_dev_rx_queue_intr_disable,
218         .rx_descriptor_done   = i40e_dev_rx_descriptor_done,
219         .tx_queue_setup       = i40e_dev_tx_queue_setup,
220         .tx_queue_release     = i40e_dev_tx_queue_release,
221         .rx_queue_count       = i40e_dev_rx_queue_count,
222         .rxq_info_get         = i40e_rxq_info_get,
223         .txq_info_get         = i40e_txq_info_get,
224         .mac_addr_add         = i40evf_add_mac_addr,
225         .mac_addr_remove      = i40evf_del_mac_addr,
226         .reta_update          = i40evf_dev_rss_reta_update,
227         .reta_query           = i40evf_dev_rss_reta_query,
228         .rss_hash_update      = i40evf_dev_rss_hash_update,
229         .rss_hash_conf_get    = i40evf_dev_rss_hash_conf_get,
230 };
231
232 /*
233  * Read data in admin queue to get msg from pf driver
234  */
235 static enum i40evf_aq_result
236 i40evf_read_pfmsg(struct rte_eth_dev *dev, struct i40evf_arq_msg_info *data)
237 {
238         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
239         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
240         struct i40e_arq_event_info event;
241         enum i40e_virtchnl_ops opcode;
242         enum i40e_status_code retval;
243         int ret;
244         enum i40evf_aq_result result = I40EVF_MSG_NON;
245
246         event.buf_len = data->buf_len;
247         event.msg_buf = data->msg;
248         ret = i40e_clean_arq_element(hw, &event, NULL);
249         /* Can't read any msg from adminQ */
250         if (ret) {
251                 if (ret != I40E_ERR_ADMIN_QUEUE_NO_WORK)
252                         result = I40EVF_MSG_ERR;
253                 return result;
254         }
255
256         opcode = (enum i40e_virtchnl_ops)rte_le_to_cpu_32(event.desc.cookie_high);
257         retval = (enum i40e_status_code)rte_le_to_cpu_32(event.desc.cookie_low);
258         /* pf sys event */
259         if (opcode == I40E_VIRTCHNL_OP_EVENT) {
260                 struct i40e_virtchnl_pf_event *vpe =
261                         (struct i40e_virtchnl_pf_event *)event.msg_buf;
262
263                 result = I40EVF_MSG_SYS;
264                 switch (vpe->event) {
265                 case I40E_VIRTCHNL_EVENT_LINK_CHANGE:
266                         vf->link_up =
267                                 vpe->event_data.link_event.link_status;
268                         vf->link_speed =
269                                 vpe->event_data.link_event.link_speed;
270                         vf->pend_msg |= PFMSG_LINK_CHANGE;
271                         PMD_DRV_LOG(INFO, "Link status update:%s",
272                                     vf->link_up ? "up" : "down");
273                         break;
274                 case I40E_VIRTCHNL_EVENT_RESET_IMPENDING:
275                         vf->vf_reset = true;
276                         vf->pend_msg |= PFMSG_RESET_IMPENDING;
277                         PMD_DRV_LOG(INFO, "vf is reseting");
278                         break;
279                 case I40E_VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
280                         vf->dev_closed = true;
281                         vf->pend_msg |= PFMSG_DRIVER_CLOSE;
282                         PMD_DRV_LOG(INFO, "PF driver closed");
283                         break;
284                 default:
285                         PMD_DRV_LOG(ERR, "%s: Unknown event %d from pf",
286                                     __func__, vpe->event);
287                 }
288         } else {
289                 /* async reply msg on command issued by vf previously */
290                 result = I40EVF_MSG_CMD;
291                 /* Actual data length read from PF */
292                 data->msg_len = event.msg_len;
293         }
294
295         data->result = retval;
296         data->ops = opcode;
297
298         return result;
299 }
300
301 /**
302  * clear current command. Only call in case execute
303  * _atomic_set_cmd successfully.
304  */
305 static inline void
306 _clear_cmd(struct i40e_vf *vf)
307 {
308         rte_wmb();
309         vf->pend_cmd = I40E_VIRTCHNL_OP_UNKNOWN;
310 }
311
312 /*
313  * Check there is pending cmd in execution. If none, set new command.
314  */
315 static inline int
316 _atomic_set_cmd(struct i40e_vf *vf, enum i40e_virtchnl_ops ops)
317 {
318         int ret = rte_atomic32_cmpset(&vf->pend_cmd,
319                         I40E_VIRTCHNL_OP_UNKNOWN, ops);
320
321         if (!ret)
322                 PMD_DRV_LOG(ERR, "There is incomplete cmd %d", vf->pend_cmd);
323
324         return !ret;
325 }
326
327 #define MAX_TRY_TIMES 200
328 #define ASQ_DELAY_MS  10
329
330 static int
331 i40evf_execute_vf_cmd(struct rte_eth_dev *dev, struct vf_cmd_info *args)
332 {
333         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
334         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
335         struct i40evf_arq_msg_info info;
336         enum i40evf_aq_result ret;
337         int err, i = 0;
338
339         if (_atomic_set_cmd(vf, args->ops))
340                 return -1;
341
342         info.msg = args->out_buffer;
343         info.buf_len = args->out_size;
344         info.ops = I40E_VIRTCHNL_OP_UNKNOWN;
345         info.result = I40E_SUCCESS;
346
347         err = i40e_aq_send_msg_to_pf(hw, args->ops, I40E_SUCCESS,
348                      args->in_args, args->in_args_size, NULL);
349         if (err) {
350                 PMD_DRV_LOG(ERR, "fail to send cmd %d", args->ops);
351                 _clear_cmd(vf);
352                 return err;
353         }
354
355         switch (args->ops) {
356         case I40E_VIRTCHNL_OP_RESET_VF:
357                 /*no need to process in this function */
358                 err = 0;
359                 break;
360         case I40E_VIRTCHNL_OP_VERSION:
361         case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
362                 /* for init adminq commands, need to poll the response */
363                 err = -1;
364                 do {
365                         ret = i40evf_read_pfmsg(dev, &info);
366                         if (ret == I40EVF_MSG_CMD) {
367                                 err = 0;
368                                 break;
369                         } else if (ret == I40EVF_MSG_ERR)
370                                 break;
371                         rte_delay_ms(ASQ_DELAY_MS);
372                         /* If don't read msg or read sys event, continue */
373                 } while (i++ < MAX_TRY_TIMES);
374                 _clear_cmd(vf);
375                 break;
376
377         default:
378                 /* for other adminq in running time, waiting the cmd done flag */
379                 err = -1;
380                 do {
381                         if (vf->pend_cmd == I40E_VIRTCHNL_OP_UNKNOWN) {
382                                 err = 0;
383                                 break;
384                         }
385                         rte_delay_ms(ASQ_DELAY_MS);
386                         /* If don't read msg or read sys event, continue */
387                 } while (i++ < MAX_TRY_TIMES);
388                 break;
389         }
390
391         return err | vf->cmd_retval;
392 }
393
394 /*
395  * Check API version with sync wait until version read or fail from admin queue
396  */
397 static int
398 i40evf_check_api_version(struct rte_eth_dev *dev)
399 {
400         struct i40e_virtchnl_version_info version, *pver;
401         int err;
402         struct vf_cmd_info args;
403         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
404
405         version.major = I40E_VIRTCHNL_VERSION_MAJOR;
406         version.minor = I40E_VIRTCHNL_VERSION_MINOR;
407
408         args.ops = I40E_VIRTCHNL_OP_VERSION;
409         args.in_args = (uint8_t *)&version;
410         args.in_args_size = sizeof(version);
411         args.out_buffer = vf->aq_resp;
412         args.out_size = I40E_AQ_BUF_SZ;
413
414         err = i40evf_execute_vf_cmd(dev, &args);
415         if (err) {
416                 PMD_INIT_LOG(ERR, "fail to execute command OP_VERSION");
417                 return err;
418         }
419
420         pver = (struct i40e_virtchnl_version_info *)args.out_buffer;
421         vf->version_major = pver->major;
422         vf->version_minor = pver->minor;
423         if (vf->version_major == I40E_DPDK_VERSION_MAJOR)
424                 PMD_DRV_LOG(INFO, "Peer is DPDK PF host");
425         else if ((vf->version_major == I40E_VIRTCHNL_VERSION_MAJOR) &&
426                 (vf->version_minor <= I40E_VIRTCHNL_VERSION_MINOR))
427                 PMD_DRV_LOG(INFO, "Peer is Linux PF host");
428         else {
429                 PMD_INIT_LOG(ERR, "PF/VF API version mismatch:(%u.%u)-(%u.%u)",
430                                         vf->version_major, vf->version_minor,
431                                                 I40E_VIRTCHNL_VERSION_MAJOR,
432                                                 I40E_VIRTCHNL_VERSION_MINOR);
433                 return -1;
434         }
435
436         return 0;
437 }
438
439 static int
440 i40evf_get_vf_resource(struct rte_eth_dev *dev)
441 {
442         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
443         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
444         int err;
445         struct vf_cmd_info args;
446         uint32_t caps, len;
447
448         args.ops = I40E_VIRTCHNL_OP_GET_VF_RESOURCES;
449         args.out_buffer = vf->aq_resp;
450         args.out_size = I40E_AQ_BUF_SZ;
451         if (PF_IS_V11(vf)) {
452                 caps = I40E_VIRTCHNL_VF_OFFLOAD_L2 |
453                        I40E_VIRTCHNL_VF_OFFLOAD_RSS_AQ |
454                        I40E_VIRTCHNL_VF_OFFLOAD_RSS_REG |
455                        I40E_VIRTCHNL_VF_OFFLOAD_VLAN |
456                        I40E_VIRTCHNL_VF_OFFLOAD_RX_POLLING;
457                 args.in_args = (uint8_t *)&caps;
458                 args.in_args_size = sizeof(caps);
459         } else {
460                 args.in_args = NULL;
461                 args.in_args_size = 0;
462         }
463         err = i40evf_execute_vf_cmd(dev, &args);
464
465         if (err) {
466                 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_VF_RESOURCE");
467                 return err;
468         }
469
470         len =  sizeof(struct i40e_virtchnl_vf_resource) +
471                 I40E_MAX_VF_VSI * sizeof(struct i40e_virtchnl_vsi_resource);
472
473         (void)rte_memcpy(vf->vf_res, args.out_buffer,
474                         RTE_MIN(args.out_size, len));
475         i40e_vf_parse_hw_config(hw, vf->vf_res);
476
477         return 0;
478 }
479
480 static int
481 i40evf_config_promisc(struct rte_eth_dev *dev,
482                       bool enable_unicast,
483                       bool enable_multicast)
484 {
485         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
486         int err;
487         struct vf_cmd_info args;
488         struct i40e_virtchnl_promisc_info promisc;
489
490         promisc.flags = 0;
491         promisc.vsi_id = vf->vsi_res->vsi_id;
492
493         if (enable_unicast)
494                 promisc.flags |= I40E_FLAG_VF_UNICAST_PROMISC;
495
496         if (enable_multicast)
497                 promisc.flags |= I40E_FLAG_VF_MULTICAST_PROMISC;
498
499         args.ops = I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE;
500         args.in_args = (uint8_t *)&promisc;
501         args.in_args_size = sizeof(promisc);
502         args.out_buffer = vf->aq_resp;
503         args.out_size = I40E_AQ_BUF_SZ;
504
505         err = i40evf_execute_vf_cmd(dev, &args);
506
507         if (err)
508                 PMD_DRV_LOG(ERR, "fail to execute command "
509                             "CONFIG_PROMISCUOUS_MODE");
510         return err;
511 }
512
513 /* Configure vlan and double vlan offload. Use flag to specify which part to configure */
514 static int
515 i40evf_config_vlan_offload(struct rte_eth_dev *dev,
516                                 bool enable_vlan_strip)
517 {
518         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
519         int err;
520         struct vf_cmd_info args;
521         struct i40e_virtchnl_vlan_offload_info offload;
522
523         offload.vsi_id = vf->vsi_res->vsi_id;
524         offload.enable_vlan_strip = enable_vlan_strip;
525
526         args.ops = (enum i40e_virtchnl_ops)I40E_VIRTCHNL_OP_CFG_VLAN_OFFLOAD;
527         args.in_args = (uint8_t *)&offload;
528         args.in_args_size = sizeof(offload);
529         args.out_buffer = vf->aq_resp;
530         args.out_size = I40E_AQ_BUF_SZ;
531
532         err = i40evf_execute_vf_cmd(dev, &args);
533         if (err)
534                 PMD_DRV_LOG(ERR, "fail to execute command CFG_VLAN_OFFLOAD");
535
536         return err;
537 }
538
539 static int
540 i40evf_config_vlan_pvid(struct rte_eth_dev *dev,
541                                 struct i40e_vsi_vlan_pvid_info *info)
542 {
543         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
544         int err;
545         struct vf_cmd_info args;
546         struct i40e_virtchnl_pvid_info tpid_info;
547
548         if (info == NULL) {
549                 PMD_DRV_LOG(ERR, "invalid parameters");
550                 return I40E_ERR_PARAM;
551         }
552
553         memset(&tpid_info, 0, sizeof(tpid_info));
554         tpid_info.vsi_id = vf->vsi_res->vsi_id;
555         (void)rte_memcpy(&tpid_info.info, info, sizeof(*info));
556
557         args.ops = (enum i40e_virtchnl_ops)I40E_VIRTCHNL_OP_CFG_VLAN_PVID;
558         args.in_args = (uint8_t *)&tpid_info;
559         args.in_args_size = sizeof(tpid_info);
560         args.out_buffer = vf->aq_resp;
561         args.out_size = I40E_AQ_BUF_SZ;
562
563         err = i40evf_execute_vf_cmd(dev, &args);
564         if (err)
565                 PMD_DRV_LOG(ERR, "fail to execute command CFG_VLAN_PVID");
566
567         return err;
568 }
569
570 static void
571 i40evf_fill_virtchnl_vsi_txq_info(struct i40e_virtchnl_txq_info *txq_info,
572                                   uint16_t vsi_id,
573                                   uint16_t queue_id,
574                                   uint16_t nb_txq,
575                                   struct i40e_tx_queue *txq)
576 {
577         txq_info->vsi_id = vsi_id;
578         txq_info->queue_id = queue_id;
579         if (queue_id < nb_txq) {
580                 txq_info->ring_len = txq->nb_tx_desc;
581                 txq_info->dma_ring_addr = txq->tx_ring_phys_addr;
582         }
583 }
584
585 static void
586 i40evf_fill_virtchnl_vsi_rxq_info(struct i40e_virtchnl_rxq_info *rxq_info,
587                                   uint16_t vsi_id,
588                                   uint16_t queue_id,
589                                   uint16_t nb_rxq,
590                                   uint32_t max_pkt_size,
591                                   struct i40e_rx_queue *rxq)
592 {
593         rxq_info->vsi_id = vsi_id;
594         rxq_info->queue_id = queue_id;
595         rxq_info->max_pkt_size = max_pkt_size;
596         if (queue_id < nb_rxq) {
597                 rxq_info->ring_len = rxq->nb_rx_desc;
598                 rxq_info->dma_ring_addr = rxq->rx_ring_phys_addr;
599                 rxq_info->databuffer_size =
600                         (rte_pktmbuf_data_room_size(rxq->mp) -
601                                 RTE_PKTMBUF_HEADROOM);
602         }
603 }
604
605 /* It configures VSI queues to co-work with Linux PF host */
606 static int
607 i40evf_configure_vsi_queues(struct rte_eth_dev *dev)
608 {
609         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
610         struct i40e_rx_queue **rxq =
611                 (struct i40e_rx_queue **)dev->data->rx_queues;
612         struct i40e_tx_queue **txq =
613                 (struct i40e_tx_queue **)dev->data->tx_queues;
614         struct i40e_virtchnl_vsi_queue_config_info *vc_vqci;
615         struct i40e_virtchnl_queue_pair_info *vc_qpi;
616         struct vf_cmd_info args;
617         uint16_t i, nb_qp = vf->num_queue_pairs;
618         const uint32_t size =
619                 I40E_VIRTCHNL_CONFIG_VSI_QUEUES_SIZE(vc_vqci, nb_qp);
620         uint8_t buff[size];
621         int ret;
622
623         memset(buff, 0, sizeof(buff));
624         vc_vqci = (struct i40e_virtchnl_vsi_queue_config_info *)buff;
625         vc_vqci->vsi_id = vf->vsi_res->vsi_id;
626         vc_vqci->num_queue_pairs = nb_qp;
627
628         for (i = 0, vc_qpi = vc_vqci->qpair; i < nb_qp; i++, vc_qpi++) {
629                 i40evf_fill_virtchnl_vsi_txq_info(&vc_qpi->txq,
630                         vc_vqci->vsi_id, i, dev->data->nb_tx_queues, txq[i]);
631                 i40evf_fill_virtchnl_vsi_rxq_info(&vc_qpi->rxq,
632                         vc_vqci->vsi_id, i, dev->data->nb_rx_queues,
633                                         vf->max_pkt_len, rxq[i]);
634         }
635         memset(&args, 0, sizeof(args));
636         args.ops = I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES;
637         args.in_args = (uint8_t *)vc_vqci;
638         args.in_args_size = size;
639         args.out_buffer = vf->aq_resp;
640         args.out_size = I40E_AQ_BUF_SZ;
641         ret = i40evf_execute_vf_cmd(dev, &args);
642         if (ret)
643                 PMD_DRV_LOG(ERR, "Failed to execute command of "
644                         "I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES\n");
645
646         return ret;
647 }
648
649 /* It configures VSI queues to co-work with DPDK PF host */
650 static int
651 i40evf_configure_vsi_queues_ext(struct rte_eth_dev *dev)
652 {
653         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
654         struct i40e_rx_queue **rxq =
655                 (struct i40e_rx_queue **)dev->data->rx_queues;
656         struct i40e_tx_queue **txq =
657                 (struct i40e_tx_queue **)dev->data->tx_queues;
658         struct i40e_virtchnl_vsi_queue_config_ext_info *vc_vqcei;
659         struct i40e_virtchnl_queue_pair_ext_info *vc_qpei;
660         struct vf_cmd_info args;
661         uint16_t i, nb_qp = vf->num_queue_pairs;
662         const uint32_t size =
663                 I40E_VIRTCHNL_CONFIG_VSI_QUEUES_SIZE(vc_vqcei, nb_qp);
664         uint8_t buff[size];
665         int ret;
666
667         memset(buff, 0, sizeof(buff));
668         vc_vqcei = (struct i40e_virtchnl_vsi_queue_config_ext_info *)buff;
669         vc_vqcei->vsi_id = vf->vsi_res->vsi_id;
670         vc_vqcei->num_queue_pairs = nb_qp;
671         vc_qpei = vc_vqcei->qpair;
672         for (i = 0; i < nb_qp; i++, vc_qpei++) {
673                 i40evf_fill_virtchnl_vsi_txq_info(&vc_qpei->txq,
674                         vc_vqcei->vsi_id, i, dev->data->nb_tx_queues, txq[i]);
675                 i40evf_fill_virtchnl_vsi_rxq_info(&vc_qpei->rxq,
676                         vc_vqcei->vsi_id, i, dev->data->nb_rx_queues,
677                                         vf->max_pkt_len, rxq[i]);
678                 if (i < dev->data->nb_rx_queues)
679                         /*
680                          * It adds extra info for configuring VSI queues, which
681                          * is needed to enable the configurable crc stripping
682                          * in VF.
683                          */
684                         vc_qpei->rxq_ext.crcstrip =
685                                 dev->data->dev_conf.rxmode.hw_strip_crc;
686         }
687         memset(&args, 0, sizeof(args));
688         args.ops =
689                 (enum i40e_virtchnl_ops)I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EXT;
690         args.in_args = (uint8_t *)vc_vqcei;
691         args.in_args_size = size;
692         args.out_buffer = vf->aq_resp;
693         args.out_size = I40E_AQ_BUF_SZ;
694         ret = i40evf_execute_vf_cmd(dev, &args);
695         if (ret)
696                 PMD_DRV_LOG(ERR, "Failed to execute command of "
697                         "I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES_EXT\n");
698
699         return ret;
700 }
701
702 static int
703 i40evf_configure_queues(struct rte_eth_dev *dev)
704 {
705         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
706
707         if (vf->version_major == I40E_DPDK_VERSION_MAJOR)
708                 /* To support DPDK PF host */
709                 return i40evf_configure_vsi_queues_ext(dev);
710         else
711                 /* To support Linux PF host */
712                 return i40evf_configure_vsi_queues(dev);
713 }
714
715 static int
716 i40evf_config_irq_map(struct rte_eth_dev *dev)
717 {
718         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
719         struct vf_cmd_info args;
720         uint8_t cmd_buffer[sizeof(struct i40e_virtchnl_irq_map_info) + \
721                 sizeof(struct i40e_virtchnl_vector_map)];
722         struct i40e_virtchnl_irq_map_info *map_info;
723         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
724         uint32_t vector_id;
725         int i, err;
726
727         if (rte_intr_allow_others(intr_handle)) {
728                 if (vf->version_major == I40E_DPDK_VERSION_MAJOR)
729                         vector_id = I40EVF_VSI_DEFAULT_MSIX_INTR;
730                 else
731                         vector_id = I40EVF_VSI_DEFAULT_MSIX_INTR_LNX;
732         } else {
733                 vector_id = I40E_MISC_VEC_ID;
734         }
735
736         map_info = (struct i40e_virtchnl_irq_map_info *)cmd_buffer;
737         map_info->num_vectors = 1;
738         map_info->vecmap[0].rxitr_idx = I40E_ITR_INDEX_DEFAULT;
739         map_info->vecmap[0].vsi_id = vf->vsi_res->vsi_id;
740         /* Alway use default dynamic MSIX interrupt */
741         map_info->vecmap[0].vector_id = vector_id;
742         /* Don't map any tx queue */
743         map_info->vecmap[0].txq_map = 0;
744         map_info->vecmap[0].rxq_map = 0;
745         for (i = 0; i < dev->data->nb_rx_queues; i++) {
746                 map_info->vecmap[0].rxq_map |= 1 << i;
747                 if (rte_intr_dp_is_en(intr_handle))
748                         intr_handle->intr_vec[i] = vector_id;
749         }
750
751         args.ops = I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP;
752         args.in_args = (u8 *)cmd_buffer;
753         args.in_args_size = sizeof(cmd_buffer);
754         args.out_buffer = vf->aq_resp;
755         args.out_size = I40E_AQ_BUF_SZ;
756         err = i40evf_execute_vf_cmd(dev, &args);
757         if (err)
758                 PMD_DRV_LOG(ERR, "fail to execute command OP_ENABLE_QUEUES");
759
760         return err;
761 }
762
763 static int
764 i40evf_switch_queue(struct rte_eth_dev *dev, bool isrx, uint16_t qid,
765                                 bool on)
766 {
767         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
768         struct i40e_virtchnl_queue_select queue_select;
769         int err;
770         struct vf_cmd_info args;
771         memset(&queue_select, 0, sizeof(queue_select));
772         queue_select.vsi_id = vf->vsi_res->vsi_id;
773
774         if (isrx)
775                 queue_select.rx_queues |= 1 << qid;
776         else
777                 queue_select.tx_queues |= 1 << qid;
778
779         if (on)
780                 args.ops = I40E_VIRTCHNL_OP_ENABLE_QUEUES;
781         else
782                 args.ops = I40E_VIRTCHNL_OP_DISABLE_QUEUES;
783         args.in_args = (u8 *)&queue_select;
784         args.in_args_size = sizeof(queue_select);
785         args.out_buffer = vf->aq_resp;
786         args.out_size = I40E_AQ_BUF_SZ;
787         err = i40evf_execute_vf_cmd(dev, &args);
788         if (err)
789                 PMD_DRV_LOG(ERR, "fail to switch %s %u %s",
790                             isrx ? "RX" : "TX", qid, on ? "on" : "off");
791
792         return err;
793 }
794
795 static int
796 i40evf_start_queues(struct rte_eth_dev *dev)
797 {
798         struct rte_eth_dev_data *dev_data = dev->data;
799         int i;
800         struct i40e_rx_queue *rxq;
801         struct i40e_tx_queue *txq;
802
803         for (i = 0; i < dev->data->nb_rx_queues; i++) {
804                 rxq = dev_data->rx_queues[i];
805                 if (rxq->rx_deferred_start)
806                         continue;
807                 if (i40evf_dev_rx_queue_start(dev, i) != 0) {
808                         PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
809                         return -1;
810                 }
811         }
812
813         for (i = 0; i < dev->data->nb_tx_queues; i++) {
814                 txq = dev_data->tx_queues[i];
815                 if (txq->tx_deferred_start)
816                         continue;
817                 if (i40evf_dev_tx_queue_start(dev, i) != 0) {
818                         PMD_DRV_LOG(ERR, "Fail to start queue %u", i);
819                         return -1;
820                 }
821         }
822
823         return 0;
824 }
825
826 static int
827 i40evf_stop_queues(struct rte_eth_dev *dev)
828 {
829         int i;
830
831         /* Stop TX queues first */
832         for (i = 0; i < dev->data->nb_tx_queues; i++) {
833                 if (i40evf_dev_tx_queue_stop(dev, i) != 0) {
834                         PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
835                         return -1;
836                 }
837         }
838
839         /* Then stop RX queues */
840         for (i = 0; i < dev->data->nb_rx_queues; i++) {
841                 if (i40evf_dev_rx_queue_stop(dev, i) != 0) {
842                         PMD_DRV_LOG(ERR, "Fail to stop queue %u", i);
843                         return -1;
844                 }
845         }
846
847         return 0;
848 }
849
850 static void
851 i40evf_add_mac_addr(struct rte_eth_dev *dev,
852                     struct ether_addr *addr,
853                     __rte_unused uint32_t index,
854                     __rte_unused uint32_t pool)
855 {
856         struct i40e_virtchnl_ether_addr_list *list;
857         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
858         uint8_t cmd_buffer[sizeof(struct i40e_virtchnl_ether_addr_list) + \
859                         sizeof(struct i40e_virtchnl_ether_addr)];
860         int err;
861         struct vf_cmd_info args;
862
863         if (i40e_validate_mac_addr(addr->addr_bytes) != I40E_SUCCESS) {
864                 PMD_DRV_LOG(ERR, "Invalid mac:%x:%x:%x:%x:%x:%x",
865                             addr->addr_bytes[0], addr->addr_bytes[1],
866                             addr->addr_bytes[2], addr->addr_bytes[3],
867                             addr->addr_bytes[4], addr->addr_bytes[5]);
868                 return;
869         }
870
871         list = (struct i40e_virtchnl_ether_addr_list *)cmd_buffer;
872         list->vsi_id = vf->vsi_res->vsi_id;
873         list->num_elements = 1;
874         (void)rte_memcpy(list->list[0].addr, addr->addr_bytes,
875                                         sizeof(addr->addr_bytes));
876
877         args.ops = I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS;
878         args.in_args = cmd_buffer;
879         args.in_args_size = sizeof(cmd_buffer);
880         args.out_buffer = vf->aq_resp;
881         args.out_size = I40E_AQ_BUF_SZ;
882         err = i40evf_execute_vf_cmd(dev, &args);
883         if (err)
884                 PMD_DRV_LOG(ERR, "fail to execute command "
885                             "OP_ADD_ETHER_ADDRESS");
886
887         return;
888 }
889
890 static void
891 i40evf_del_mac_addr(struct rte_eth_dev *dev, uint32_t index)
892 {
893         struct i40e_virtchnl_ether_addr_list *list;
894         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
895         struct rte_eth_dev_data *data = dev->data;
896         struct ether_addr *addr;
897         uint8_t cmd_buffer[sizeof(struct i40e_virtchnl_ether_addr_list) + \
898                         sizeof(struct i40e_virtchnl_ether_addr)];
899         int err;
900         struct vf_cmd_info args;
901
902         addr = &(data->mac_addrs[index]);
903
904         if (i40e_validate_mac_addr(addr->addr_bytes) != I40E_SUCCESS) {
905                 PMD_DRV_LOG(ERR, "Invalid mac:%x-%x-%x-%x-%x-%x",
906                             addr->addr_bytes[0], addr->addr_bytes[1],
907                             addr->addr_bytes[2], addr->addr_bytes[3],
908                             addr->addr_bytes[4], addr->addr_bytes[5]);
909                 return;
910         }
911
912         list = (struct i40e_virtchnl_ether_addr_list *)cmd_buffer;
913         list->vsi_id = vf->vsi_res->vsi_id;
914         list->num_elements = 1;
915         (void)rte_memcpy(list->list[0].addr, addr->addr_bytes,
916                         sizeof(addr->addr_bytes));
917
918         args.ops = I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS;
919         args.in_args = cmd_buffer;
920         args.in_args_size = sizeof(cmd_buffer);
921         args.out_buffer = vf->aq_resp;
922         args.out_size = I40E_AQ_BUF_SZ;
923         err = i40evf_execute_vf_cmd(dev, &args);
924         if (err)
925                 PMD_DRV_LOG(ERR, "fail to execute command "
926                             "OP_DEL_ETHER_ADDRESS");
927         return;
928 }
929
930 static int
931 i40evf_update_stats(struct rte_eth_dev *dev, struct i40e_eth_stats **pstats)
932 {
933         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
934         struct i40e_virtchnl_queue_select q_stats;
935         int err;
936         struct vf_cmd_info args;
937
938         memset(&q_stats, 0, sizeof(q_stats));
939         q_stats.vsi_id = vf->vsi_res->vsi_id;
940         args.ops = I40E_VIRTCHNL_OP_GET_STATS;
941         args.in_args = (u8 *)&q_stats;
942         args.in_args_size = sizeof(q_stats);
943         args.out_buffer = vf->aq_resp;
944         args.out_size = I40E_AQ_BUF_SZ;
945
946         err = i40evf_execute_vf_cmd(dev, &args);
947         if (err) {
948                 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_STATS");
949                 *pstats = NULL;
950                 return err;
951         }
952         *pstats = (struct i40e_eth_stats *)args.out_buffer;
953         return 0;
954 }
955
956 static int
957 i40evf_get_statics(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
958 {
959         int ret;
960         struct i40e_eth_stats *pstats = NULL;
961
962         ret = i40evf_update_stats(dev, &pstats);
963         if (ret != 0)
964                 return 0;
965
966         stats->ipackets = pstats->rx_unicast + pstats->rx_multicast +
967                                                 pstats->rx_broadcast;
968         stats->opackets = pstats->tx_broadcast + pstats->tx_multicast +
969                                                 pstats->tx_unicast;
970         stats->ierrors = pstats->rx_discards;
971         stats->oerrors = pstats->tx_errors + pstats->tx_discards;
972         stats->ibytes = pstats->rx_bytes;
973         stats->obytes = pstats->tx_bytes;
974
975         return 0;
976 }
977
978 static void
979 i40evf_dev_xstats_reset(struct rte_eth_dev *dev)
980 {
981         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
982         struct i40e_eth_stats *pstats = NULL;
983
984         /* read stat values to clear hardware registers */
985         i40evf_update_stats(dev, &pstats);
986
987         /* set stats offset base on current values */
988         vf->vsi.eth_stats_offset = vf->vsi.eth_stats;
989 }
990
991 static int i40evf_dev_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
992                                       struct rte_eth_xstat_name *xstats_names,
993                                       __rte_unused unsigned limit)
994 {
995         unsigned i;
996
997         if (xstats_names != NULL)
998                 for (i = 0; i < I40EVF_NB_XSTATS; i++) {
999                         snprintf(xstats_names[i].name,
1000                                 sizeof(xstats_names[i].name),
1001                                 "%s", rte_i40evf_stats_strings[i].name);
1002                         xstats_names[i].id = i;
1003                 }
1004         return I40EVF_NB_XSTATS;
1005 }
1006
1007 static int i40evf_dev_xstats_get(struct rte_eth_dev *dev,
1008                                  struct rte_eth_xstat *xstats, unsigned n)
1009 {
1010         int ret;
1011         unsigned i;
1012         struct i40e_eth_stats *pstats = NULL;
1013
1014         if (n < I40EVF_NB_XSTATS)
1015                 return I40EVF_NB_XSTATS;
1016
1017         ret = i40evf_update_stats(dev, &pstats);
1018         if (ret != 0)
1019                 return 0;
1020
1021         if (!xstats)
1022                 return 0;
1023
1024         /* loop over xstats array and values from pstats */
1025         for (i = 0; i < I40EVF_NB_XSTATS; i++) {
1026                 xstats[i].id = i;
1027                 xstats[i].value = *(uint64_t *)(((char *)pstats) +
1028                         rte_i40evf_stats_strings[i].offset);
1029         }
1030
1031         return I40EVF_NB_XSTATS;
1032 }
1033
1034 static int
1035 i40evf_add_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
1036 {
1037         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1038         struct i40e_virtchnl_vlan_filter_list *vlan_list;
1039         uint8_t cmd_buffer[sizeof(struct i40e_virtchnl_vlan_filter_list) +
1040                                                         sizeof(uint16_t)];
1041         int err;
1042         struct vf_cmd_info args;
1043
1044         vlan_list = (struct i40e_virtchnl_vlan_filter_list *)cmd_buffer;
1045         vlan_list->vsi_id = vf->vsi_res->vsi_id;
1046         vlan_list->num_elements = 1;
1047         vlan_list->vlan_id[0] = vlanid;
1048
1049         args.ops = I40E_VIRTCHNL_OP_ADD_VLAN;
1050         args.in_args = (u8 *)&cmd_buffer;
1051         args.in_args_size = sizeof(cmd_buffer);
1052         args.out_buffer = vf->aq_resp;
1053         args.out_size = I40E_AQ_BUF_SZ;
1054         err = i40evf_execute_vf_cmd(dev, &args);
1055         if (err)
1056                 PMD_DRV_LOG(ERR, "fail to execute command OP_ADD_VLAN");
1057
1058         return err;
1059 }
1060
1061 static int
1062 i40evf_del_vlan(struct rte_eth_dev *dev, uint16_t vlanid)
1063 {
1064         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1065         struct i40e_virtchnl_vlan_filter_list *vlan_list;
1066         uint8_t cmd_buffer[sizeof(struct i40e_virtchnl_vlan_filter_list) +
1067                                                         sizeof(uint16_t)];
1068         int err;
1069         struct vf_cmd_info args;
1070
1071         vlan_list = (struct i40e_virtchnl_vlan_filter_list *)cmd_buffer;
1072         vlan_list->vsi_id = vf->vsi_res->vsi_id;
1073         vlan_list->num_elements = 1;
1074         vlan_list->vlan_id[0] = vlanid;
1075
1076         args.ops = I40E_VIRTCHNL_OP_DEL_VLAN;
1077         args.in_args = (u8 *)&cmd_buffer;
1078         args.in_args_size = sizeof(cmd_buffer);
1079         args.out_buffer = vf->aq_resp;
1080         args.out_size = I40E_AQ_BUF_SZ;
1081         err = i40evf_execute_vf_cmd(dev, &args);
1082         if (err)
1083                 PMD_DRV_LOG(ERR, "fail to execute command OP_DEL_VLAN");
1084
1085         return err;
1086 }
1087
1088 static int
1089 i40evf_get_link_status(struct rte_eth_dev *dev, struct rte_eth_link *link)
1090 {
1091         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1092         int err;
1093         struct vf_cmd_info args;
1094         struct rte_eth_link *new_link;
1095
1096         args.ops = (enum i40e_virtchnl_ops)I40E_VIRTCHNL_OP_GET_LINK_STAT;
1097         args.in_args = NULL;
1098         args.in_args_size = 0;
1099         args.out_buffer = vf->aq_resp;
1100         args.out_size = I40E_AQ_BUF_SZ;
1101         err = i40evf_execute_vf_cmd(dev, &args);
1102         if (err) {
1103                 PMD_DRV_LOG(ERR, "fail to execute command OP_GET_LINK_STAT");
1104                 return err;
1105         }
1106
1107         new_link = (struct rte_eth_link *)args.out_buffer;
1108         (void)rte_memcpy(link, new_link, sizeof(*link));
1109
1110         return 0;
1111 }
1112
1113 static const struct rte_pci_id pci_id_i40evf_map[] = {
1114 #define RTE_PCI_DEV_ID_DECL_I40EVF(vend, dev) {RTE_PCI_DEVICE(vend, dev)},
1115 #include "rte_pci_dev_ids.h"
1116 { .vendor_id = 0, /* sentinel */ },
1117 };
1118
1119 static inline int
1120 i40evf_dev_atomic_write_link_status(struct rte_eth_dev *dev,
1121                                     struct rte_eth_link *link)
1122 {
1123         struct rte_eth_link *dst = &(dev->data->dev_link);
1124         struct rte_eth_link *src = link;
1125
1126         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
1127                                         *(uint64_t *)src) == 0)
1128                 return -1;
1129
1130         return 0;
1131 }
1132
1133 /* Disable IRQ0 */
1134 static inline void
1135 i40evf_disable_irq0(struct i40e_hw *hw)
1136 {
1137         /* Disable all interrupt types */
1138         I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, 0);
1139         I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1140                        I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1141         I40EVF_WRITE_FLUSH(hw);
1142 }
1143
1144 /* Enable IRQ0 */
1145 static inline void
1146 i40evf_enable_irq0(struct i40e_hw *hw)
1147 {
1148         /* Enable admin queue interrupt trigger */
1149         uint32_t val;
1150
1151         i40evf_disable_irq0(hw);
1152         val = I40E_READ_REG(hw, I40E_VFINT_ICR0_ENA1);
1153         val |= I40E_VFINT_ICR0_ENA1_ADMINQ_MASK |
1154                 I40E_VFINT_ICR0_ENA1_LINK_STAT_CHANGE_MASK;
1155         I40E_WRITE_REG(hw, I40E_VFINT_ICR0_ENA1, val);
1156
1157         I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1158                 I40E_VFINT_DYN_CTL01_INTENA_MASK |
1159                 I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1160                 I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1161
1162         I40EVF_WRITE_FLUSH(hw);
1163 }
1164
1165 static int
1166 i40evf_reset_vf(struct i40e_hw *hw)
1167 {
1168         int i, reset;
1169
1170         if (i40e_vf_reset(hw) != I40E_SUCCESS) {
1171                 PMD_INIT_LOG(ERR, "Reset VF NIC failed");
1172                 return -1;
1173         }
1174         /**
1175           * After issuing vf reset command to pf, pf won't necessarily
1176           * reset vf, it depends on what state it exactly is. If it's not
1177           * initialized yet, it won't have vf reset since it's in a certain
1178           * state. If not, it will try to reset. Even vf is reset, pf will
1179           * set I40E_VFGEN_RSTAT to COMPLETE first, then wait 10ms and set
1180           * it to ACTIVE. In this duration, vf may not catch the moment that
1181           * COMPLETE is set. So, for vf, we'll try to wait a long time.
1182           */
1183         rte_delay_ms(200);
1184
1185         for (i = 0; i < MAX_RESET_WAIT_CNT; i++) {
1186                 reset = rd32(hw, I40E_VFGEN_RSTAT) &
1187                         I40E_VFGEN_RSTAT_VFR_STATE_MASK;
1188                 reset = reset >> I40E_VFGEN_RSTAT_VFR_STATE_SHIFT;
1189                 if (I40E_VFR_COMPLETED == reset || I40E_VFR_VFACTIVE == reset)
1190                         break;
1191                 else
1192                         rte_delay_ms(50);
1193         }
1194
1195         if (i >= MAX_RESET_WAIT_CNT) {
1196                 PMD_INIT_LOG(ERR, "Reset VF NIC failed");
1197                 return -1;
1198         }
1199
1200         return 0;
1201 }
1202
1203 static int
1204 i40evf_init_vf(struct rte_eth_dev *dev)
1205 {
1206         int i, err, bufsz;
1207         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1208         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1209         struct ether_addr *p_mac_addr;
1210         uint16_t interval =
1211                 i40e_calc_itr_interval(I40E_QUEUE_ITR_INTERVAL_MAX);
1212
1213         vf->adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1214         vf->dev_data = dev->data;
1215         err = i40e_set_mac_type(hw);
1216         if (err) {
1217                 PMD_INIT_LOG(ERR, "set_mac_type failed: %d", err);
1218                 goto err;
1219         }
1220
1221         i40e_init_adminq_parameter(hw);
1222         err = i40e_init_adminq(hw);
1223         if (err) {
1224                 PMD_INIT_LOG(ERR, "init_adminq failed: %d", err);
1225                 goto err;
1226         }
1227
1228         /* Reset VF and wait until it's complete */
1229         if (i40evf_reset_vf(hw)) {
1230                 PMD_INIT_LOG(ERR, "reset NIC failed");
1231                 goto err_aq;
1232         }
1233
1234         /* VF reset, shutdown admin queue and initialize again */
1235         if (i40e_shutdown_adminq(hw) != I40E_SUCCESS) {
1236                 PMD_INIT_LOG(ERR, "i40e_shutdown_adminq failed");
1237                 return -1;
1238         }
1239
1240         i40e_init_adminq_parameter(hw);
1241         if (i40e_init_adminq(hw) != I40E_SUCCESS) {
1242                 PMD_INIT_LOG(ERR, "init_adminq failed");
1243                 return -1;
1244         }
1245         vf->aq_resp = rte_zmalloc("vf_aq_resp", I40E_AQ_BUF_SZ, 0);
1246         if (!vf->aq_resp) {
1247                 PMD_INIT_LOG(ERR, "unable to allocate vf_aq_resp memory");
1248                         goto err_aq;
1249         }
1250         if (i40evf_check_api_version(dev) != 0) {
1251                 PMD_INIT_LOG(ERR, "check_api version failed");
1252                 goto err_aq;
1253         }
1254         bufsz = sizeof(struct i40e_virtchnl_vf_resource) +
1255                 (I40E_MAX_VF_VSI * sizeof(struct i40e_virtchnl_vsi_resource));
1256         vf->vf_res = rte_zmalloc("vf_res", bufsz, 0);
1257         if (!vf->vf_res) {
1258                 PMD_INIT_LOG(ERR, "unable to allocate vf_res memory");
1259                         goto err_aq;
1260         }
1261
1262         if (i40evf_get_vf_resource(dev) != 0) {
1263                 PMD_INIT_LOG(ERR, "i40evf_get_vf_config failed");
1264                 goto err_alloc;
1265         }
1266
1267         /* got VF config message back from PF, now we can parse it */
1268         for (i = 0; i < vf->vf_res->num_vsis; i++) {
1269                 if (vf->vf_res->vsi_res[i].vsi_type == I40E_VSI_SRIOV)
1270                         vf->vsi_res = &vf->vf_res->vsi_res[i];
1271         }
1272
1273         if (!vf->vsi_res) {
1274                 PMD_INIT_LOG(ERR, "no LAN VSI found");
1275                 goto err_alloc;
1276         }
1277
1278         if (hw->mac.type == I40E_MAC_X722_VF)
1279                 vf->flags = I40E_FLAG_RSS_AQ_CAPABLE;
1280         vf->vsi.vsi_id = vf->vsi_res->vsi_id;
1281         vf->vsi.type = vf->vsi_res->vsi_type;
1282         vf->vsi.nb_qps = vf->vsi_res->num_queue_pairs;
1283         vf->vsi.adapter = I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1284
1285         /* Store the MAC address configured by host, or generate random one */
1286         p_mac_addr = (struct ether_addr *)(vf->vsi_res->default_mac_addr);
1287         if (is_valid_assigned_ether_addr(p_mac_addr)) /* Configured by host */
1288                 ether_addr_copy(p_mac_addr, (struct ether_addr *)hw->mac.addr);
1289         else
1290                 eth_random_addr(hw->mac.addr); /* Generate a random one */
1291
1292         /* If the PF host is not DPDK, set the interval of ITR0 to max*/
1293         if (vf->version_major != I40E_DPDK_VERSION_MAJOR) {
1294                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1295                                (I40E_ITR_INDEX_DEFAULT <<
1296                                 I40E_VFINT_DYN_CTL0_ITR_INDX_SHIFT) |
1297                                (interval <<
1298                                 I40E_VFINT_DYN_CTL0_INTERVAL_SHIFT));
1299                 I40EVF_WRITE_FLUSH(hw);
1300         }
1301
1302         return 0;
1303
1304 err_alloc:
1305         rte_free(vf->vf_res);
1306 err_aq:
1307         i40e_shutdown_adminq(hw); /* ignore error */
1308 err:
1309         return -1;
1310 }
1311
1312 static int
1313 i40evf_uninit_vf(struct rte_eth_dev *dev)
1314 {
1315         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1316         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1317
1318         PMD_INIT_FUNC_TRACE();
1319
1320         if (hw->adapter_stopped == 0)
1321                 i40evf_dev_close(dev);
1322         rte_free(vf->vf_res);
1323         vf->vf_res = NULL;
1324         rte_free(vf->aq_resp);
1325         vf->aq_resp = NULL;
1326
1327         return 0;
1328 }
1329
1330 static void
1331 i40evf_handle_pf_event(__rte_unused struct rte_eth_dev *dev,
1332                            uint8_t *msg,
1333                            __rte_unused uint16_t msglen)
1334 {
1335         struct i40e_virtchnl_pf_event *pf_msg =
1336                         (struct i40e_virtchnl_pf_event *)msg;
1337         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1338
1339         switch (pf_msg->event) {
1340         case I40E_VIRTCHNL_EVENT_RESET_IMPENDING:
1341                 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_RESET_IMPENDING event\n");
1342                 _rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_RESET);
1343                 break;
1344         case I40E_VIRTCHNL_EVENT_LINK_CHANGE:
1345                 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_LINK_CHANGE event\n");
1346                 vf->link_up = pf_msg->event_data.link_event.link_status;
1347                 vf->link_speed = pf_msg->event_data.link_event.link_speed;
1348                 break;
1349         case I40E_VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
1350                 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_PF_DRIVER_CLOSE event\n");
1351                 break;
1352         default:
1353                 PMD_DRV_LOG(ERR, " unknown event received %u", pf_msg->event);
1354                 break;
1355         }
1356 }
1357
1358 static void
1359 i40evf_handle_aq_msg(struct rte_eth_dev *dev)
1360 {
1361         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1362         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1363         struct i40e_arq_event_info info;
1364         struct i40e_virtchnl_msg *v_msg;
1365         uint16_t pending, opcode;
1366         int ret;
1367
1368         info.buf_len = I40E_AQ_BUF_SZ;
1369         if (!vf->aq_resp) {
1370                 PMD_DRV_LOG(ERR, "Buffer for adminq resp should not be NULL");
1371                 return;
1372         }
1373         info.msg_buf = vf->aq_resp;
1374         v_msg = (struct i40e_virtchnl_msg *)&info.desc;
1375
1376         pending = 1;
1377         while (pending) {
1378                 ret = i40e_clean_arq_element(hw, &info, &pending);
1379
1380                 if (ret != I40E_SUCCESS) {
1381                         PMD_DRV_LOG(INFO, "Failed to read msg from AdminQ,"
1382                                     "ret: %d", ret);
1383                         break;
1384                 }
1385                 opcode = rte_le_to_cpu_16(info.desc.opcode);
1386
1387                 switch (opcode) {
1388                 case i40e_aqc_opc_send_msg_to_vf:
1389                         if (v_msg->v_opcode == I40E_VIRTCHNL_OP_EVENT)
1390                                 /* process event*/
1391                                 i40evf_handle_pf_event(dev, info.msg_buf,
1392                                                        info.msg_len);
1393                         else {
1394                                 /* read message and it's expected one */
1395                                 if (v_msg->v_opcode == vf->pend_cmd) {
1396                                         vf->cmd_retval = v_msg->v_retval;
1397                                         /* prevent compiler reordering */
1398                                         rte_compiler_barrier();
1399                                         _clear_cmd(vf);
1400                                 } else
1401                                         PMD_DRV_LOG(ERR, "command mismatch,"
1402                                                 "expect %u, get %u",
1403                                                 vf->pend_cmd, v_msg->v_opcode);
1404                                 PMD_DRV_LOG(DEBUG, "adminq response is received,"
1405                                              " opcode = %d\n", v_msg->v_opcode);
1406                         }
1407                         break;
1408                 default:
1409                         PMD_DRV_LOG(ERR, "Request %u is not supported yet",
1410                                     opcode);
1411                         break;
1412                 }
1413         }
1414 }
1415
1416 /**
1417  * Interrupt handler triggered by NIC  for handling
1418  * specific interrupt. Only adminq interrupt is processed in VF.
1419  *
1420  * @param handle
1421  *  Pointer to interrupt handle.
1422  * @param param
1423  *  The address of parameter (struct rte_eth_dev *) regsitered before.
1424  *
1425  * @return
1426  *  void
1427  */
1428 static void
1429 i40evf_dev_interrupt_handler(__rte_unused struct rte_intr_handle *handle,
1430                              void *param)
1431 {
1432         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1433         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1434         uint32_t icr0;
1435
1436         i40evf_disable_irq0(hw);
1437
1438         /* read out interrupt causes */
1439         icr0 = I40E_READ_REG(hw, I40E_VFINT_ICR01);
1440
1441         /* No interrupt event indicated */
1442         if (!(icr0 & I40E_VFINT_ICR01_INTEVENT_MASK)) {
1443                 PMD_DRV_LOG(DEBUG, "No interrupt event, nothing to do\n");
1444                 goto done;
1445         }
1446
1447         if (icr0 & I40E_VFINT_ICR01_ADMINQ_MASK) {
1448                 PMD_DRV_LOG(DEBUG, "ICR01_ADMINQ is reported\n");
1449                 i40evf_handle_aq_msg(dev);
1450         }
1451
1452         /* Link Status Change interrupt */
1453         if (icr0 & I40E_VFINT_ICR01_LINK_STAT_CHANGE_MASK)
1454                 PMD_DRV_LOG(DEBUG, "LINK_STAT_CHANGE is reported,"
1455                                    " do nothing\n");
1456
1457 done:
1458         i40evf_enable_irq0(hw);
1459         rte_intr_enable(&dev->pci_dev->intr_handle);
1460 }
1461
1462 static int
1463 i40evf_dev_init(struct rte_eth_dev *eth_dev)
1464 {
1465         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(\
1466                         eth_dev->data->dev_private);
1467         struct rte_pci_device *pci_dev = eth_dev->pci_dev;
1468
1469         PMD_INIT_FUNC_TRACE();
1470
1471         /* assign ops func pointer */
1472         eth_dev->dev_ops = &i40evf_eth_dev_ops;
1473         eth_dev->rx_pkt_burst = &i40e_recv_pkts;
1474         eth_dev->tx_pkt_burst = &i40e_xmit_pkts;
1475
1476         /*
1477          * For secondary processes, we don't initialise any further as primary
1478          * has already done this work.
1479          */
1480         if (rte_eal_process_type() != RTE_PROC_PRIMARY){
1481                 i40e_set_rx_function(eth_dev);
1482                 i40e_set_tx_function(eth_dev);
1483                 return 0;
1484         }
1485
1486         rte_eth_copy_pci_info(eth_dev, eth_dev->pci_dev);
1487
1488         hw->vendor_id = eth_dev->pci_dev->id.vendor_id;
1489         hw->device_id = eth_dev->pci_dev->id.device_id;
1490         hw->subsystem_vendor_id = eth_dev->pci_dev->id.subsystem_vendor_id;
1491         hw->subsystem_device_id = eth_dev->pci_dev->id.subsystem_device_id;
1492         hw->bus.device = eth_dev->pci_dev->addr.devid;
1493         hw->bus.func = eth_dev->pci_dev->addr.function;
1494         hw->hw_addr = (void *)eth_dev->pci_dev->mem_resource[0].addr;
1495         hw->adapter_stopped = 0;
1496
1497         if(i40evf_init_vf(eth_dev) != 0) {
1498                 PMD_INIT_LOG(ERR, "Init vf failed");
1499                 return -1;
1500         }
1501
1502         /* register callback func to eal lib */
1503         rte_intr_callback_register(&pci_dev->intr_handle,
1504                 i40evf_dev_interrupt_handler, (void *)eth_dev);
1505
1506         /* enable uio intr after callback register */
1507         rte_intr_enable(&pci_dev->intr_handle);
1508
1509         /* configure and enable device interrupt */
1510         i40evf_enable_irq0(hw);
1511
1512         /* copy mac addr */
1513         eth_dev->data->mac_addrs = rte_zmalloc("i40evf_mac",
1514                                         ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX,
1515                                         0);
1516         if (eth_dev->data->mac_addrs == NULL) {
1517                 PMD_INIT_LOG(ERR, "Failed to allocate %d bytes needed to"
1518                                 " store MAC addresses",
1519                                 ETHER_ADDR_LEN * I40E_NUM_MACADDR_MAX);
1520                 return -ENOMEM;
1521         }
1522         ether_addr_copy((struct ether_addr *)hw->mac.addr,
1523                         &eth_dev->data->mac_addrs[0]);
1524
1525         return 0;
1526 }
1527
1528 static int
1529 i40evf_dev_uninit(struct rte_eth_dev *eth_dev)
1530 {
1531         PMD_INIT_FUNC_TRACE();
1532
1533         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
1534                 return -EPERM;
1535
1536         eth_dev->dev_ops = NULL;
1537         eth_dev->rx_pkt_burst = NULL;
1538         eth_dev->tx_pkt_burst = NULL;
1539
1540         if (i40evf_uninit_vf(eth_dev) != 0) {
1541                 PMD_INIT_LOG(ERR, "i40evf_uninit_vf failed");
1542                 return -1;
1543         }
1544
1545         rte_free(eth_dev->data->mac_addrs);
1546         eth_dev->data->mac_addrs = NULL;
1547
1548         return 0;
1549 }
1550 /*
1551  * virtual function driver struct
1552  */
1553 static struct eth_driver rte_i40evf_pmd = {
1554         .pci_drv = {
1555                 .name = "rte_i40evf_pmd",
1556                 .id_table = pci_id_i40evf_map,
1557                 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_DETACHABLE,
1558         },
1559         .eth_dev_init = i40evf_dev_init,
1560         .eth_dev_uninit = i40evf_dev_uninit,
1561         .dev_private_size = sizeof(struct i40e_adapter),
1562 };
1563
1564 /*
1565  * VF Driver initialization routine.
1566  * Invoked one at EAL init time.
1567  * Register itself as the [Virtual Poll Mode] Driver of PCI Fortville devices.
1568  */
1569 static int
1570 rte_i40evf_pmd_init(const char *name __rte_unused,
1571                     const char *params __rte_unused)
1572 {
1573         PMD_INIT_FUNC_TRACE();
1574
1575         rte_eth_driver_register(&rte_i40evf_pmd);
1576
1577         return 0;
1578 }
1579
1580 static struct rte_driver rte_i40evf_driver = {
1581         .type = PMD_PDEV,
1582         .init = rte_i40evf_pmd_init,
1583 };
1584
1585 PMD_REGISTER_DRIVER(rte_i40evf_driver);
1586
1587 static int
1588 i40evf_dev_configure(struct rte_eth_dev *dev)
1589 {
1590         struct i40e_adapter *ad =
1591                 I40E_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1592         struct rte_eth_conf *conf = &dev->data->dev_conf;
1593         struct i40e_vf *vf;
1594
1595         /* Initialize to TRUE. If any of Rx queues doesn't meet the bulk
1596          * allocation or vector Rx preconditions we will reset it.
1597          */
1598         ad->rx_bulk_alloc_allowed = true;
1599         ad->rx_vec_allowed = true;
1600         ad->tx_simple_allowed = true;
1601         ad->tx_vec_allowed = true;
1602
1603         /* For non-DPDK PF drivers, VF has no ability to disable HW
1604          * CRC strip, and is implicitly enabled by the PF.
1605          */
1606         if (!conf->rxmode.hw_strip_crc) {
1607                 vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1608                 if ((vf->version_major == I40E_VIRTCHNL_VERSION_MAJOR) &&
1609                     (vf->version_minor <= I40E_VIRTCHNL_VERSION_MINOR)) {
1610                         /* Peer is running non-DPDK PF driver. */
1611                         PMD_INIT_LOG(ERR, "VF can't disable HW CRC Strip");
1612                         return -EINVAL;
1613                 }
1614         }
1615
1616         return i40evf_init_vlan(dev);
1617 }
1618
1619 static int
1620 i40evf_init_vlan(struct rte_eth_dev *dev)
1621 {
1622         struct rte_eth_dev_data *data = dev->data;
1623         int ret;
1624
1625         /* Apply vlan offload setting */
1626         i40evf_vlan_offload_set(dev, ETH_VLAN_STRIP_MASK);
1627
1628         /* Apply pvid setting */
1629         ret = i40evf_vlan_pvid_set(dev, data->dev_conf.txmode.pvid,
1630                                 data->dev_conf.txmode.hw_vlan_insert_pvid);
1631         return ret;
1632 }
1633
1634 static void
1635 i40evf_vlan_offload_set(struct rte_eth_dev *dev, int mask)
1636 {
1637         bool enable_vlan_strip = 0;
1638         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1639         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1640
1641         /* Linux pf host doesn't support vlan offload yet */
1642         if (vf->version_major == I40E_DPDK_VERSION_MAJOR) {
1643                 /* Vlan stripping setting */
1644                 if (mask & ETH_VLAN_STRIP_MASK) {
1645                         /* Enable or disable VLAN stripping */
1646                         if (dev_conf->rxmode.hw_vlan_strip)
1647                                 enable_vlan_strip = 1;
1648                         else
1649                                 enable_vlan_strip = 0;
1650
1651                         i40evf_config_vlan_offload(dev, enable_vlan_strip);
1652                 }
1653         }
1654 }
1655
1656 static int
1657 i40evf_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid, int on)
1658 {
1659         struct rte_eth_conf *dev_conf = &dev->data->dev_conf;
1660         struct i40e_vsi_vlan_pvid_info info;
1661         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1662
1663         memset(&info, 0, sizeof(info));
1664         info.on = on;
1665
1666         /* Linux pf host don't support vlan offload yet */
1667         if (vf->version_major == I40E_DPDK_VERSION_MAJOR) {
1668                 if (info.on)
1669                         info.config.pvid = pvid;
1670                 else {
1671                         info.config.reject.tagged =
1672                                 dev_conf->txmode.hw_vlan_reject_tagged;
1673                         info.config.reject.untagged =
1674                                 dev_conf->txmode.hw_vlan_reject_untagged;
1675                 }
1676                 return i40evf_config_vlan_pvid(dev, &info);
1677         }
1678
1679         return 0;
1680 }
1681
1682 static int
1683 i40evf_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1684 {
1685         struct i40e_rx_queue *rxq;
1686         int err = 0;
1687         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1688
1689         PMD_INIT_FUNC_TRACE();
1690
1691         if (rx_queue_id < dev->data->nb_rx_queues) {
1692                 rxq = dev->data->rx_queues[rx_queue_id];
1693
1694                 err = i40e_alloc_rx_queue_mbufs(rxq);
1695                 if (err) {
1696                         PMD_DRV_LOG(ERR, "Failed to allocate RX queue mbuf");
1697                         return err;
1698                 }
1699
1700                 rte_wmb();
1701
1702                 /* Init the RX tail register. */
1703                 I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1704                 I40EVF_WRITE_FLUSH(hw);
1705
1706                 /* Ready to switch the queue on */
1707                 err = i40evf_switch_queue(dev, TRUE, rx_queue_id, TRUE);
1708
1709                 if (err)
1710                         PMD_DRV_LOG(ERR, "Failed to switch RX queue %u on",
1711                                     rx_queue_id);
1712                 else
1713                         dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1714         }
1715
1716         return err;
1717 }
1718
1719 static int
1720 i40evf_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id)
1721 {
1722         struct i40e_rx_queue *rxq;
1723         int err;
1724
1725         if (rx_queue_id < dev->data->nb_rx_queues) {
1726                 rxq = dev->data->rx_queues[rx_queue_id];
1727
1728                 err = i40evf_switch_queue(dev, TRUE, rx_queue_id, FALSE);
1729
1730                 if (err) {
1731                         PMD_DRV_LOG(ERR, "Failed to switch RX queue %u off",
1732                                     rx_queue_id);
1733                         return err;
1734                 }
1735
1736                 i40e_rx_queue_release_mbufs(rxq);
1737                 i40e_reset_rx_queue(rxq);
1738                 dev->data->rx_queue_state[rx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1739         }
1740
1741         return 0;
1742 }
1743
1744 static int
1745 i40evf_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1746 {
1747         int err = 0;
1748
1749         PMD_INIT_FUNC_TRACE();
1750
1751         if (tx_queue_id < dev->data->nb_tx_queues) {
1752
1753                 /* Ready to switch the queue on */
1754                 err = i40evf_switch_queue(dev, FALSE, tx_queue_id, TRUE);
1755
1756                 if (err)
1757                         PMD_DRV_LOG(ERR, "Failed to switch TX queue %u on",
1758                                     tx_queue_id);
1759                 else
1760                         dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STARTED;
1761         }
1762
1763         return err;
1764 }
1765
1766 static int
1767 i40evf_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id)
1768 {
1769         struct i40e_tx_queue *txq;
1770         int err;
1771
1772         if (tx_queue_id < dev->data->nb_tx_queues) {
1773                 txq = dev->data->tx_queues[tx_queue_id];
1774
1775                 err = i40evf_switch_queue(dev, FALSE, tx_queue_id, FALSE);
1776
1777                 if (err) {
1778                         PMD_DRV_LOG(ERR, "Failed to switch TX queue %u off",
1779                                     tx_queue_id);
1780                         return err;
1781                 }
1782
1783                 i40e_tx_queue_release_mbufs(txq);
1784                 i40e_reset_tx_queue(txq);
1785                 dev->data->tx_queue_state[tx_queue_id] = RTE_ETH_QUEUE_STATE_STOPPED;
1786         }
1787
1788         return 0;
1789 }
1790
1791 static int
1792 i40evf_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
1793 {
1794         int ret;
1795
1796         if (on)
1797                 ret = i40evf_add_vlan(dev, vlan_id);
1798         else
1799                 ret = i40evf_del_vlan(dev,vlan_id);
1800
1801         return ret;
1802 }
1803
1804 static int
1805 i40evf_rxq_init(struct rte_eth_dev *dev, struct i40e_rx_queue *rxq)
1806 {
1807         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1808         struct rte_eth_dev_data *dev_data = dev->data;
1809         struct rte_pktmbuf_pool_private *mbp_priv;
1810         uint16_t buf_size, len;
1811
1812         rxq->qrx_tail = hw->hw_addr + I40E_QRX_TAIL1(rxq->queue_id);
1813         I40E_PCI_REG_WRITE(rxq->qrx_tail, rxq->nb_rx_desc - 1);
1814         I40EVF_WRITE_FLUSH(hw);
1815
1816         /* Calculate the maximum packet length allowed */
1817         mbp_priv = rte_mempool_get_priv(rxq->mp);
1818         buf_size = (uint16_t)(mbp_priv->mbuf_data_room_size -
1819                                         RTE_PKTMBUF_HEADROOM);
1820         rxq->hs_mode = i40e_header_split_none;
1821         rxq->rx_hdr_len = 0;
1822         rxq->rx_buf_len = RTE_ALIGN(buf_size, (1 << I40E_RXQ_CTX_DBUFF_SHIFT));
1823         len = rxq->rx_buf_len * I40E_MAX_CHAINED_RX_BUFFERS;
1824         rxq->max_pkt_len = RTE_MIN(len,
1825                 dev_data->dev_conf.rxmode.max_rx_pkt_len);
1826
1827         /**
1828          * Check if the jumbo frame and maximum packet length are set correctly
1829          */
1830         if (dev_data->dev_conf.rxmode.jumbo_frame == 1) {
1831                 if (rxq->max_pkt_len <= ETHER_MAX_LEN ||
1832                     rxq->max_pkt_len > I40E_FRAME_SIZE_MAX) {
1833                         PMD_DRV_LOG(ERR, "maximum packet length must be "
1834                                 "larger than %u and smaller than %u, as jumbo "
1835                                 "frame is enabled", (uint32_t)ETHER_MAX_LEN,
1836                                         (uint32_t)I40E_FRAME_SIZE_MAX);
1837                         return I40E_ERR_CONFIG;
1838                 }
1839         } else {
1840                 if (rxq->max_pkt_len < ETHER_MIN_LEN ||
1841                     rxq->max_pkt_len > ETHER_MAX_LEN) {
1842                         PMD_DRV_LOG(ERR, "maximum packet length must be "
1843                                 "larger than %u and smaller than %u, as jumbo "
1844                                 "frame is disabled", (uint32_t)ETHER_MIN_LEN,
1845                                                 (uint32_t)ETHER_MAX_LEN);
1846                         return I40E_ERR_CONFIG;
1847                 }
1848         }
1849
1850         if (dev_data->dev_conf.rxmode.enable_scatter ||
1851             (rxq->max_pkt_len + 2 * I40E_VLAN_TAG_SIZE) > buf_size) {
1852                 dev_data->scattered_rx = 1;
1853         }
1854
1855         return 0;
1856 }
1857
1858 static int
1859 i40evf_rx_init(struct rte_eth_dev *dev)
1860 {
1861         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1862         uint16_t i;
1863         int ret = I40E_SUCCESS;
1864         struct i40e_rx_queue **rxq =
1865                 (struct i40e_rx_queue **)dev->data->rx_queues;
1866
1867         i40evf_config_rss(vf);
1868         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1869                 if (!rxq[i] || !rxq[i]->q_set)
1870                         continue;
1871                 ret = i40evf_rxq_init(dev, rxq[i]);
1872                 if (ret != I40E_SUCCESS)
1873                         break;
1874         }
1875         if (ret == I40E_SUCCESS)
1876                 i40e_set_rx_function(dev);
1877
1878         return ret;
1879 }
1880
1881 static void
1882 i40evf_tx_init(struct rte_eth_dev *dev)
1883 {
1884         uint16_t i;
1885         struct i40e_tx_queue **txq =
1886                 (struct i40e_tx_queue **)dev->data->tx_queues;
1887         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1888
1889         for (i = 0; i < dev->data->nb_tx_queues; i++)
1890                 txq[i]->qtx_tail = hw->hw_addr + I40E_QTX_TAIL1(i);
1891
1892         i40e_set_tx_function(dev);
1893 }
1894
1895 static inline void
1896 i40evf_enable_queues_intr(struct rte_eth_dev *dev)
1897 {
1898         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1899         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1900         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1901
1902         if (!rte_intr_allow_others(intr_handle)) {
1903                 I40E_WRITE_REG(hw,
1904                                I40E_VFINT_DYN_CTL01,
1905                                I40E_VFINT_DYN_CTL01_INTENA_MASK |
1906                                I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1907                                I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1908                 I40EVF_WRITE_FLUSH(hw);
1909                 return;
1910         }
1911
1912         if (vf->version_major == I40E_DPDK_VERSION_MAJOR)
1913                 /* To support DPDK PF host */
1914                 I40E_WRITE_REG(hw,
1915                         I40E_VFINT_DYN_CTLN1(I40EVF_VSI_DEFAULT_MSIX_INTR - 1),
1916                         I40E_VFINT_DYN_CTLN1_INTENA_MASK |
1917                         I40E_VFINT_DYN_CTLN_CLEARPBA_MASK);
1918         /* If host driver is kernel driver, do nothing.
1919          * Interrupt 0 is used for rx packets, but don't set
1920          * I40E_VFINT_DYN_CTL01,
1921          * because it is already done in i40evf_enable_irq0.
1922          */
1923
1924         I40EVF_WRITE_FLUSH(hw);
1925 }
1926
1927 static inline void
1928 i40evf_disable_queues_intr(struct rte_eth_dev *dev)
1929 {
1930         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
1931         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1932         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1933
1934         if (!rte_intr_allow_others(intr_handle)) {
1935                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1936                                I40E_VFINT_DYN_CTL01_ITR_INDX_MASK);
1937                 I40EVF_WRITE_FLUSH(hw);
1938                 return;
1939         }
1940
1941         if (vf->version_major == I40E_DPDK_VERSION_MAJOR)
1942                 I40E_WRITE_REG(hw,
1943                                I40E_VFINT_DYN_CTLN1(I40EVF_VSI_DEFAULT_MSIX_INTR
1944                                                     - 1),
1945                                0);
1946         /* If host driver is kernel driver, do nothing.
1947          * Interrupt 0 is used for rx packets, but don't zero
1948          * I40E_VFINT_DYN_CTL01,
1949          * because interrupt 0 is also used for adminq processing.
1950          */
1951
1952         I40EVF_WRITE_FLUSH(hw);
1953 }
1954
1955 static int
1956 i40evf_dev_rx_queue_intr_enable(struct rte_eth_dev *dev, uint16_t queue_id)
1957 {
1958         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1959         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1960         uint16_t interval =
1961                 i40e_calc_itr_interval(RTE_LIBRTE_I40E_ITR_INTERVAL);
1962         uint16_t msix_intr;
1963
1964         msix_intr = intr_handle->intr_vec[queue_id];
1965         if (msix_intr == I40E_MISC_VEC_ID)
1966                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01,
1967                                I40E_VFINT_DYN_CTL01_INTENA_MASK |
1968                                I40E_VFINT_DYN_CTL01_CLEARPBA_MASK |
1969                                (0 << I40E_VFINT_DYN_CTL01_ITR_INDX_SHIFT) |
1970                                (interval <<
1971                                 I40E_VFINT_DYN_CTL01_INTERVAL_SHIFT));
1972         else
1973                 I40E_WRITE_REG(hw,
1974                                I40E_VFINT_DYN_CTLN1(msix_intr -
1975                                                     I40E_RX_VEC_START),
1976                                I40E_VFINT_DYN_CTLN1_INTENA_MASK |
1977                                I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK |
1978                                (0 << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) |
1979                                (interval <<
1980                                 I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT));
1981
1982         I40EVF_WRITE_FLUSH(hw);
1983
1984         rte_intr_enable(&dev->pci_dev->intr_handle);
1985
1986         return 0;
1987 }
1988
1989 static int
1990 i40evf_dev_rx_queue_intr_disable(struct rte_eth_dev *dev, uint16_t queue_id)
1991 {
1992         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
1993         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1994         uint16_t msix_intr;
1995
1996         msix_intr = intr_handle->intr_vec[queue_id];
1997         if (msix_intr == I40E_MISC_VEC_ID)
1998                 I40E_WRITE_REG(hw, I40E_VFINT_DYN_CTL01, 0);
1999         else
2000                 I40E_WRITE_REG(hw,
2001                                I40E_VFINT_DYN_CTLN1(msix_intr -
2002                                                     I40E_RX_VEC_START),
2003                                0);
2004
2005         I40EVF_WRITE_FLUSH(hw);
2006
2007         return 0;
2008 }
2009
2010 static void
2011 i40evf_add_del_all_mac_addr(struct rte_eth_dev *dev, bool add)
2012 {
2013         struct i40e_virtchnl_ether_addr_list *list;
2014         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2015         int err, i, j;
2016         int next_begin = 0;
2017         int begin = 0;
2018         uint32_t len;
2019         struct ether_addr *addr;
2020         struct vf_cmd_info args;
2021
2022         do {
2023                 j = 0;
2024                 len = sizeof(struct i40e_virtchnl_ether_addr_list);
2025                 for (i = begin; i < I40E_NUM_MACADDR_MAX; i++, next_begin++) {
2026                         if (is_zero_ether_addr(&dev->data->mac_addrs[i]))
2027                                 continue;
2028                         len += sizeof(struct i40e_virtchnl_ether_addr);
2029                         if (len >= I40E_AQ_BUF_SZ) {
2030                                 next_begin = i + 1;
2031                                 break;
2032                         }
2033                 }
2034
2035                 list = rte_zmalloc("i40evf_del_mac_buffer", len, 0);
2036
2037                 for (i = begin; i < next_begin; i++) {
2038                         addr = &dev->data->mac_addrs[i];
2039                         if (is_zero_ether_addr(addr))
2040                                 continue;
2041                         (void)rte_memcpy(list->list[j].addr, addr->addr_bytes,
2042                                          sizeof(addr->addr_bytes));
2043                         PMD_DRV_LOG(DEBUG, "add/rm mac:%x:%x:%x:%x:%x:%x",
2044                                     addr->addr_bytes[0], addr->addr_bytes[1],
2045                                     addr->addr_bytes[2], addr->addr_bytes[3],
2046                                     addr->addr_bytes[4], addr->addr_bytes[5]);
2047                         j++;
2048                 }
2049                 list->vsi_id = vf->vsi_res->vsi_id;
2050                 list->num_elements = j;
2051                 args.ops = add ? I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS :
2052                            I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS;
2053                 args.in_args = (uint8_t *)list;
2054                 args.in_args_size = len;
2055                 args.out_buffer = vf->aq_resp;
2056                 args.out_size = I40E_AQ_BUF_SZ;
2057                 err = i40evf_execute_vf_cmd(dev, &args);
2058                 if (err)
2059                         PMD_DRV_LOG(ERR, "fail to execute command %s",
2060                                     add ? "OP_ADD_ETHER_ADDRESS" :
2061                                     "OP_DEL_ETHER_ADDRESS");
2062                 rte_free(list);
2063                 begin = next_begin;
2064         } while (begin < I40E_NUM_MACADDR_MAX);
2065 }
2066
2067 static int
2068 i40evf_dev_start(struct rte_eth_dev *dev)
2069 {
2070         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2071         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2072         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
2073         uint32_t intr_vector = 0;
2074
2075         PMD_INIT_FUNC_TRACE();
2076
2077         hw->adapter_stopped = 0;
2078
2079         vf->max_pkt_len = dev->data->dev_conf.rxmode.max_rx_pkt_len;
2080         vf->num_queue_pairs = RTE_MAX(dev->data->nb_rx_queues,
2081                                         dev->data->nb_tx_queues);
2082
2083         /* check and configure queue intr-vector mapping */
2084         if (dev->data->dev_conf.intr_conf.rxq != 0) {
2085                 intr_vector = dev->data->nb_rx_queues;
2086                 if (rte_intr_efd_enable(intr_handle, intr_vector))
2087                         return -1;
2088         }
2089
2090         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2091                 intr_handle->intr_vec =
2092                         rte_zmalloc("intr_vec",
2093                                     dev->data->nb_rx_queues * sizeof(int), 0);
2094                 if (!intr_handle->intr_vec) {
2095                         PMD_INIT_LOG(ERR, "Failed to allocate %d rx_queues"
2096                                      " intr_vec\n", dev->data->nb_rx_queues);
2097                         return -ENOMEM;
2098                 }
2099         }
2100
2101         if (i40evf_rx_init(dev) != 0){
2102                 PMD_DRV_LOG(ERR, "failed to do RX init");
2103                 return -1;
2104         }
2105
2106         i40evf_tx_init(dev);
2107
2108         if (i40evf_configure_queues(dev) != 0) {
2109                 PMD_DRV_LOG(ERR, "configure queues failed");
2110                 goto err_queue;
2111         }
2112         if (i40evf_config_irq_map(dev)) {
2113                 PMD_DRV_LOG(ERR, "config_irq_map failed");
2114                 goto err_queue;
2115         }
2116
2117         /* Set all mac addrs */
2118         i40evf_add_del_all_mac_addr(dev, TRUE);
2119
2120         if (i40evf_start_queues(dev) != 0) {
2121                 PMD_DRV_LOG(ERR, "enable queues failed");
2122                 goto err_mac;
2123         }
2124
2125         i40evf_enable_queues_intr(dev);
2126         return 0;
2127
2128 err_mac:
2129         i40evf_add_del_all_mac_addr(dev, FALSE);
2130 err_queue:
2131         return -1;
2132 }
2133
2134 static void
2135 i40evf_dev_stop(struct rte_eth_dev *dev)
2136 {
2137         struct rte_intr_handle *intr_handle = &dev->pci_dev->intr_handle;
2138
2139         PMD_INIT_FUNC_TRACE();
2140
2141         i40evf_stop_queues(dev);
2142         i40evf_disable_queues_intr(dev);
2143         i40e_dev_clear_queues(dev);
2144
2145         /* Clean datapath event and queue/vec mapping */
2146         rte_intr_efd_disable(intr_handle);
2147         if (intr_handle->intr_vec) {
2148                 rte_free(intr_handle->intr_vec);
2149                 intr_handle->intr_vec = NULL;
2150         }
2151         /* remove all mac addrs */
2152         i40evf_add_del_all_mac_addr(dev, FALSE);
2153
2154 }
2155
2156 static int
2157 i40evf_dev_link_update(struct rte_eth_dev *dev,
2158                        __rte_unused int wait_to_complete)
2159 {
2160         struct rte_eth_link new_link;
2161         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2162         /*
2163          * DPDK pf host provide interfacet to acquire link status
2164          * while Linux driver does not
2165          */
2166         if (vf->version_major == I40E_DPDK_VERSION_MAJOR)
2167                 i40evf_get_link_status(dev, &new_link);
2168         else {
2169                 /* Linux driver PF host */
2170                 switch (vf->link_speed) {
2171                 case I40E_LINK_SPEED_100MB:
2172                         new_link.link_speed = ETH_SPEED_NUM_100M;
2173                         break;
2174                 case I40E_LINK_SPEED_1GB:
2175                         new_link.link_speed = ETH_SPEED_NUM_1G;
2176                         break;
2177                 case I40E_LINK_SPEED_10GB:
2178                         new_link.link_speed = ETH_SPEED_NUM_10G;
2179                         break;
2180                 case I40E_LINK_SPEED_20GB:
2181                         new_link.link_speed = ETH_SPEED_NUM_20G;
2182                         break;
2183                 case I40E_LINK_SPEED_40GB:
2184                         new_link.link_speed = ETH_SPEED_NUM_40G;
2185                         break;
2186                 default:
2187                         new_link.link_speed = ETH_SPEED_NUM_100M;
2188                         break;
2189                 }
2190                 /* full duplex only */
2191                 new_link.link_duplex = ETH_LINK_FULL_DUPLEX;
2192                 new_link.link_status = vf->link_up ? ETH_LINK_UP :
2193                                                      ETH_LINK_DOWN;
2194         }
2195         i40evf_dev_atomic_write_link_status(dev, &new_link);
2196
2197         return 0;
2198 }
2199
2200 static void
2201 i40evf_dev_promiscuous_enable(struct rte_eth_dev *dev)
2202 {
2203         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2204         int ret;
2205
2206         /* If enabled, just return */
2207         if (vf->promisc_unicast_enabled)
2208                 return;
2209
2210         ret = i40evf_config_promisc(dev, 1, vf->promisc_multicast_enabled);
2211         if (ret == 0)
2212                 vf->promisc_unicast_enabled = TRUE;
2213 }
2214
2215 static void
2216 i40evf_dev_promiscuous_disable(struct rte_eth_dev *dev)
2217 {
2218         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2219         int ret;
2220
2221         /* If disabled, just return */
2222         if (!vf->promisc_unicast_enabled)
2223                 return;
2224
2225         ret = i40evf_config_promisc(dev, 0, vf->promisc_multicast_enabled);
2226         if (ret == 0)
2227                 vf->promisc_unicast_enabled = FALSE;
2228 }
2229
2230 static void
2231 i40evf_dev_allmulticast_enable(struct rte_eth_dev *dev)
2232 {
2233         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2234         int ret;
2235
2236         /* If enabled, just return */
2237         if (vf->promisc_multicast_enabled)
2238                 return;
2239
2240         ret = i40evf_config_promisc(dev, vf->promisc_unicast_enabled, 1);
2241         if (ret == 0)
2242                 vf->promisc_multicast_enabled = TRUE;
2243 }
2244
2245 static void
2246 i40evf_dev_allmulticast_disable(struct rte_eth_dev *dev)
2247 {
2248         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2249         int ret;
2250
2251         /* If enabled, just return */
2252         if (!vf->promisc_multicast_enabled)
2253                 return;
2254
2255         ret = i40evf_config_promisc(dev, vf->promisc_unicast_enabled, 0);
2256         if (ret == 0)
2257                 vf->promisc_multicast_enabled = FALSE;
2258 }
2259
2260 static void
2261 i40evf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2262 {
2263         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2264
2265         memset(dev_info, 0, sizeof(*dev_info));
2266         dev_info->max_rx_queues = vf->vsi_res->num_queue_pairs;
2267         dev_info->max_tx_queues = vf->vsi_res->num_queue_pairs;
2268         dev_info->min_rx_bufsize = I40E_BUF_SIZE_MIN;
2269         dev_info->max_rx_pktlen = I40E_FRAME_SIZE_MAX;
2270         dev_info->hash_key_size = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2271         dev_info->reta_size = ETH_RSS_RETA_SIZE_64;
2272         dev_info->flow_type_rss_offloads = I40E_RSS_OFFLOAD_ALL;
2273         dev_info->max_mac_addrs = I40E_NUM_MACADDR_MAX;
2274         dev_info->rx_offload_capa =
2275                 DEV_RX_OFFLOAD_VLAN_STRIP |
2276                 DEV_RX_OFFLOAD_QINQ_STRIP |
2277                 DEV_RX_OFFLOAD_IPV4_CKSUM |
2278                 DEV_RX_OFFLOAD_UDP_CKSUM |
2279                 DEV_RX_OFFLOAD_TCP_CKSUM;
2280         dev_info->tx_offload_capa =
2281                 DEV_TX_OFFLOAD_VLAN_INSERT |
2282                 DEV_TX_OFFLOAD_QINQ_INSERT |
2283                 DEV_TX_OFFLOAD_IPV4_CKSUM |
2284                 DEV_TX_OFFLOAD_UDP_CKSUM |
2285                 DEV_TX_OFFLOAD_TCP_CKSUM |
2286                 DEV_TX_OFFLOAD_SCTP_CKSUM;
2287
2288         dev_info->default_rxconf = (struct rte_eth_rxconf) {
2289                 .rx_thresh = {
2290                         .pthresh = I40E_DEFAULT_RX_PTHRESH,
2291                         .hthresh = I40E_DEFAULT_RX_HTHRESH,
2292                         .wthresh = I40E_DEFAULT_RX_WTHRESH,
2293                 },
2294                 .rx_free_thresh = I40E_DEFAULT_RX_FREE_THRESH,
2295                 .rx_drop_en = 0,
2296         };
2297
2298         dev_info->default_txconf = (struct rte_eth_txconf) {
2299                 .tx_thresh = {
2300                         .pthresh = I40E_DEFAULT_TX_PTHRESH,
2301                         .hthresh = I40E_DEFAULT_TX_HTHRESH,
2302                         .wthresh = I40E_DEFAULT_TX_WTHRESH,
2303                 },
2304                 .tx_free_thresh = I40E_DEFAULT_TX_FREE_THRESH,
2305                 .tx_rs_thresh = I40E_DEFAULT_TX_RSBIT_THRESH,
2306                 .txq_flags = ETH_TXQ_FLAGS_NOMULTSEGS |
2307                                 ETH_TXQ_FLAGS_NOOFFLOADS,
2308         };
2309
2310         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
2311                 .nb_max = I40E_MAX_RING_DESC,
2312                 .nb_min = I40E_MIN_RING_DESC,
2313                 .nb_align = I40E_ALIGN_RING_DESC,
2314         };
2315
2316         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
2317                 .nb_max = I40E_MAX_RING_DESC,
2318                 .nb_min = I40E_MIN_RING_DESC,
2319                 .nb_align = I40E_ALIGN_RING_DESC,
2320         };
2321 }
2322
2323 static void
2324 i40evf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
2325 {
2326         if (i40evf_get_statics(dev, stats))
2327                 PMD_DRV_LOG(ERR, "Get statics failed");
2328 }
2329
2330 static void
2331 i40evf_dev_close(struct rte_eth_dev *dev)
2332 {
2333         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2334         struct rte_pci_device *pci_dev = dev->pci_dev;
2335
2336         i40evf_dev_stop(dev);
2337         hw->adapter_stopped = 1;
2338         i40e_dev_free_queues(dev);
2339         i40evf_reset_vf(hw);
2340         i40e_shutdown_adminq(hw);
2341         /* disable uio intr before callback unregister */
2342         rte_intr_disable(&pci_dev->intr_handle);
2343
2344         /* unregister callback func from eal lib */
2345         rte_intr_callback_unregister(&pci_dev->intr_handle,
2346                 i40evf_dev_interrupt_handler, (void *)dev);
2347         i40evf_disable_irq0(hw);
2348 }
2349
2350 static int
2351 i40evf_get_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2352 {
2353         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2354         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2355         int ret;
2356
2357         if (!lut)
2358                 return -EINVAL;
2359
2360         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2361                 ret = i40e_aq_get_rss_lut(hw, vsi->vsi_id, FALSE,
2362                                           lut, lut_size);
2363                 if (ret) {
2364                         PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
2365                         return ret;
2366                 }
2367         } else {
2368                 uint32_t *lut_dw = (uint32_t *)lut;
2369                 uint16_t i, lut_size_dw = lut_size / 4;
2370
2371                 for (i = 0; i < lut_size_dw; i++)
2372                         lut_dw[i] = I40E_READ_REG(hw, I40E_VFQF_HLUT(i));
2373         }
2374
2375         return 0;
2376 }
2377
2378 static int
2379 i40evf_set_rss_lut(struct i40e_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2380 {
2381         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2382         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2383         int ret;
2384
2385         if (!vsi || !lut)
2386                 return -EINVAL;
2387
2388         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2389                 ret = i40e_aq_set_rss_lut(hw, vsi->vsi_id, FALSE,
2390                                           lut, lut_size);
2391                 if (ret) {
2392                         PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
2393                         return ret;
2394                 }
2395         } else {
2396                 uint32_t *lut_dw = (uint32_t *)lut;
2397                 uint16_t i, lut_size_dw = lut_size / 4;
2398
2399                 for (i = 0; i < lut_size_dw; i++)
2400                         I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i), lut_dw[i]);
2401                 I40EVF_WRITE_FLUSH(hw);
2402         }
2403
2404         return 0;
2405 }
2406
2407 static int
2408 i40evf_dev_rss_reta_update(struct rte_eth_dev *dev,
2409                            struct rte_eth_rss_reta_entry64 *reta_conf,
2410                            uint16_t reta_size)
2411 {
2412         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2413         uint8_t *lut;
2414         uint16_t i, idx, shift;
2415         int ret;
2416
2417         if (reta_size != ETH_RSS_RETA_SIZE_64) {
2418                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2419                         "(%d) doesn't match the number of hardware can "
2420                         "support (%d)\n", reta_size, ETH_RSS_RETA_SIZE_64);
2421                 return -EINVAL;
2422         }
2423
2424         lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2425         if (!lut) {
2426                 PMD_DRV_LOG(ERR, "No memory can be allocated");
2427                 return -ENOMEM;
2428         }
2429         ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2430         if (ret)
2431                 goto out;
2432         for (i = 0; i < reta_size; i++) {
2433                 idx = i / RTE_RETA_GROUP_SIZE;
2434                 shift = i % RTE_RETA_GROUP_SIZE;
2435                 if (reta_conf[idx].mask & (1ULL << shift))
2436                         lut[i] = reta_conf[idx].reta[shift];
2437         }
2438         ret = i40evf_set_rss_lut(&vf->vsi, lut, reta_size);
2439
2440 out:
2441         rte_free(lut);
2442
2443         return ret;
2444 }
2445
2446 static int
2447 i40evf_dev_rss_reta_query(struct rte_eth_dev *dev,
2448                           struct rte_eth_rss_reta_entry64 *reta_conf,
2449                           uint16_t reta_size)
2450 {
2451         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2452         uint16_t i, idx, shift;
2453         uint8_t *lut;
2454         int ret;
2455
2456         if (reta_size != ETH_RSS_RETA_SIZE_64) {
2457                 PMD_DRV_LOG(ERR, "The size of hash lookup table configured "
2458                         "(%d) doesn't match the number of hardware can "
2459                         "support (%d)\n", reta_size, ETH_RSS_RETA_SIZE_64);
2460                 return -EINVAL;
2461         }
2462
2463         lut = rte_zmalloc("i40e_rss_lut", reta_size, 0);
2464         if (!lut) {
2465                 PMD_DRV_LOG(ERR, "No memory can be allocated");
2466                 return -ENOMEM;
2467         }
2468
2469         ret = i40evf_get_rss_lut(&vf->vsi, lut, reta_size);
2470         if (ret)
2471                 goto out;
2472         for (i = 0; i < reta_size; i++) {
2473                 idx = i / RTE_RETA_GROUP_SIZE;
2474                 shift = i % RTE_RETA_GROUP_SIZE;
2475                 if (reta_conf[idx].mask & (1ULL << shift))
2476                         reta_conf[idx].reta[shift] = lut[i];
2477         }
2478
2479 out:
2480         rte_free(lut);
2481
2482         return ret;
2483 }
2484
2485 static int
2486 i40evf_set_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t key_len)
2487 {
2488         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2489         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2490         int ret = 0;
2491
2492         if (!key || key_len == 0) {
2493                 PMD_DRV_LOG(DEBUG, "No key to be configured");
2494                 return 0;
2495         } else if (key_len != (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2496                 sizeof(uint32_t)) {
2497                 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
2498                 return -EINVAL;
2499         }
2500
2501         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2502                 struct i40e_aqc_get_set_rss_key_data *key_dw =
2503                         (struct i40e_aqc_get_set_rss_key_data *)key;
2504
2505                 ret = i40e_aq_set_rss_key(hw, vsi->vsi_id, key_dw);
2506                 if (ret)
2507                         PMD_INIT_LOG(ERR, "Failed to configure RSS key "
2508                                      "via AQ");
2509         } else {
2510                 uint32_t *hash_key = (uint32_t *)key;
2511                 uint16_t i;
2512
2513                 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2514                         i40e_write_rx_ctl(hw, I40E_VFQF_HKEY(i), hash_key[i]);
2515                 I40EVF_WRITE_FLUSH(hw);
2516         }
2517
2518         return ret;
2519 }
2520
2521 static int
2522 i40evf_get_rss_key(struct i40e_vsi *vsi, uint8_t *key, uint8_t *key_len)
2523 {
2524         struct i40e_vf *vf = I40E_VSI_TO_VF(vsi);
2525         struct i40e_hw *hw = I40E_VSI_TO_HW(vsi);
2526         int ret;
2527
2528         if (!key || !key_len)
2529                 return -EINVAL;
2530
2531         if (vf->flags & I40E_FLAG_RSS_AQ_CAPABLE) {
2532                 ret = i40e_aq_get_rss_key(hw, vsi->vsi_id,
2533                         (struct i40e_aqc_get_set_rss_key_data *)key);
2534                 if (ret) {
2535                         PMD_INIT_LOG(ERR, "Failed to get RSS key via AQ");
2536                         return ret;
2537                 }
2538         } else {
2539                 uint32_t *key_dw = (uint32_t *)key;
2540                 uint16_t i;
2541
2542                 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2543                         key_dw[i] = i40e_read_rx_ctl(hw, I40E_VFQF_HKEY(i));
2544         }
2545         *key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2546
2547         return 0;
2548 }
2549
2550 static int
2551 i40evf_hw_rss_hash_set(struct i40e_vf *vf, struct rte_eth_rss_conf *rss_conf)
2552 {
2553         struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2554         uint64_t rss_hf, hena;
2555         int ret;
2556
2557         ret = i40evf_set_rss_key(&vf->vsi, rss_conf->rss_key,
2558                                  rss_conf->rss_key_len);
2559         if (ret)
2560                 return ret;
2561
2562         rss_hf = rss_conf->rss_hf;
2563         hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2564         hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2565         hena &= ~I40E_RSS_HENA_ALL;
2566         hena |= i40e_config_hena(rss_hf);
2567         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), (uint32_t)hena);
2568         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), (uint32_t)(hena >> 32));
2569         I40EVF_WRITE_FLUSH(hw);
2570
2571         return 0;
2572 }
2573
2574 static void
2575 i40evf_disable_rss(struct i40e_vf *vf)
2576 {
2577         struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2578         uint64_t hena;
2579
2580         hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2581         hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2582         hena &= ~I40E_RSS_HENA_ALL;
2583         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(0), (uint32_t)hena);
2584         i40e_write_rx_ctl(hw, I40E_VFQF_HENA(1), (uint32_t)(hena >> 32));
2585         I40EVF_WRITE_FLUSH(hw);
2586 }
2587
2588 static int
2589 i40evf_config_rss(struct i40e_vf *vf)
2590 {
2591         struct i40e_hw *hw = I40E_VF_TO_HW(vf);
2592         struct rte_eth_rss_conf rss_conf;
2593         uint32_t i, j, lut = 0, nb_q = (I40E_VFQF_HLUT_MAX_INDEX + 1) * 4;
2594         uint16_t num;
2595
2596         if (vf->dev_data->dev_conf.rxmode.mq_mode != ETH_MQ_RX_RSS) {
2597                 i40evf_disable_rss(vf);
2598                 PMD_DRV_LOG(DEBUG, "RSS not configured\n");
2599                 return 0;
2600         }
2601
2602         num = RTE_MIN(vf->dev_data->nb_rx_queues, I40E_MAX_QP_NUM_PER_VF);
2603         /* Fill out the look up table */
2604         for (i = 0, j = 0; i < nb_q; i++, j++) {
2605                 if (j >= num)
2606                         j = 0;
2607                 lut = (lut << 8) | j;
2608                 if ((i & 3) == 3)
2609                         I40E_WRITE_REG(hw, I40E_VFQF_HLUT(i >> 2), lut);
2610         }
2611
2612         rss_conf = vf->dev_data->dev_conf.rx_adv_conf.rss_conf;
2613         if ((rss_conf.rss_hf & I40E_RSS_OFFLOAD_ALL) == 0) {
2614                 i40evf_disable_rss(vf);
2615                 PMD_DRV_LOG(DEBUG, "No hash flag is set\n");
2616                 return 0;
2617         }
2618
2619         if (rss_conf.rss_key == NULL || rss_conf.rss_key_len <
2620                 (I40E_VFQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t)) {
2621                 /* Calculate the default hash key */
2622                 for (i = 0; i <= I40E_VFQF_HKEY_MAX_INDEX; i++)
2623                         rss_key_default[i] = (uint32_t)rte_rand();
2624                 rss_conf.rss_key = (uint8_t *)rss_key_default;
2625                 rss_conf.rss_key_len = (I40E_VFQF_HKEY_MAX_INDEX + 1) *
2626                         sizeof(uint32_t);
2627         }
2628
2629         return i40evf_hw_rss_hash_set(vf, &rss_conf);
2630 }
2631
2632 static int
2633 i40evf_dev_rss_hash_update(struct rte_eth_dev *dev,
2634                            struct rte_eth_rss_conf *rss_conf)
2635 {
2636         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2637         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2638         uint64_t rss_hf = rss_conf->rss_hf & I40E_RSS_OFFLOAD_ALL;
2639         uint64_t hena;
2640
2641         hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2642         hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2643         if (!(hena & I40E_RSS_HENA_ALL)) { /* RSS disabled */
2644                 if (rss_hf != 0) /* Enable RSS */
2645                         return -EINVAL;
2646                 return 0;
2647         }
2648
2649         /* RSS enabled */
2650         if (rss_hf == 0) /* Disable RSS */
2651                 return -EINVAL;
2652
2653         return i40evf_hw_rss_hash_set(vf, rss_conf);
2654 }
2655
2656 static int
2657 i40evf_dev_rss_hash_conf_get(struct rte_eth_dev *dev,
2658                              struct rte_eth_rss_conf *rss_conf)
2659 {
2660         struct i40e_vf *vf = I40EVF_DEV_PRIVATE_TO_VF(dev->data->dev_private);
2661         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2662         uint64_t hena;
2663
2664         i40evf_get_rss_key(&vf->vsi, rss_conf->rss_key,
2665                            &rss_conf->rss_key_len);
2666
2667         hena = (uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(0));
2668         hena |= ((uint64_t)i40e_read_rx_ctl(hw, I40E_VFQF_HENA(1))) << 32;
2669         rss_conf->rss_hf = i40e_parse_hena(hena);
2670
2671         return 0;
2672 }