net/ice: fix link status recovery
[dpdk.git] / drivers / net / ice / ice_ethdev.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4
5 #include <rte_string_fns.h>
6 #include <rte_ethdev_pci.h>
7
8 #include <stdio.h>
9 #include <sys/types.h>
10 #include <sys/stat.h>
11 #include <unistd.h>
12
13 #include "base/ice_sched.h"
14 #include "base/ice_flow.h"
15 #include "base/ice_dcb.h"
16 #include "base/ice_common.h"
17
18 #include "rte_pmd_ice.h"
19 #include "ice_ethdev.h"
20 #include "ice_rxtx.h"
21 #include "ice_generic_flow.h"
22
23 /* devargs */
24 #define ICE_SAFE_MODE_SUPPORT_ARG "safe-mode-support"
25 #define ICE_PIPELINE_MODE_SUPPORT_ARG  "pipeline-mode-support"
26 #define ICE_PROTO_XTR_ARG         "proto_xtr"
27
28 static const char * const ice_valid_args[] = {
29         ICE_SAFE_MODE_SUPPORT_ARG,
30         ICE_PIPELINE_MODE_SUPPORT_ARG,
31         ICE_PROTO_XTR_ARG,
32         NULL
33 };
34
35 static const struct rte_mbuf_dynfield ice_proto_xtr_metadata_param = {
36         .name = "ice_dynfield_proto_xtr_metadata",
37         .size = sizeof(uint32_t),
38         .align = __alignof__(uint32_t),
39         .flags = 0,
40 };
41
42 struct proto_xtr_ol_flag {
43         const struct rte_mbuf_dynflag param;
44         uint64_t *ol_flag;
45         bool required;
46 };
47
48 static struct proto_xtr_ol_flag ice_proto_xtr_ol_flag_params[] = {
49         [PROTO_XTR_VLAN] = {
50                 .param = { .name = "ice_dynflag_proto_xtr_vlan" },
51                 .ol_flag = &rte_net_ice_dynflag_proto_xtr_vlan_mask },
52         [PROTO_XTR_IPV4] = {
53                 .param = { .name = "ice_dynflag_proto_xtr_ipv4" },
54                 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ipv4_mask },
55         [PROTO_XTR_IPV6] = {
56                 .param = { .name = "ice_dynflag_proto_xtr_ipv6" },
57                 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ipv6_mask },
58         [PROTO_XTR_IPV6_FLOW] = {
59                 .param = { .name = "ice_dynflag_proto_xtr_ipv6_flow" },
60                 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ipv6_flow_mask },
61         [PROTO_XTR_TCP] = {
62                 .param = { .name = "ice_dynflag_proto_xtr_tcp" },
63                 .ol_flag = &rte_net_ice_dynflag_proto_xtr_tcp_mask },
64 };
65
66 #define ICE_DFLT_OUTER_TAG_TYPE ICE_AQ_VSI_OUTER_TAG_VLAN_9100
67
68 /* DDP package search path */
69 #define ICE_PKG_FILE_DEFAULT "/lib/firmware/intel/ice/ddp/ice.pkg"
70 #define ICE_PKG_FILE_UPDATES "/lib/firmware/updates/intel/ice/ddp/ice.pkg"
71 #define ICE_PKG_FILE_SEARCH_PATH_DEFAULT "/lib/firmware/intel/ice/ddp/"
72 #define ICE_PKG_FILE_SEARCH_PATH_UPDATES "/lib/firmware/updates/intel/ice/ddp/"
73
74 #define ICE_OS_DEFAULT_PKG_NAME         "ICE OS Default Package"
75 #define ICE_COMMS_PKG_NAME                      "ICE COMMS Package"
76 #define ICE_MAX_PKG_FILENAME_SIZE   256
77 #define ICE_MAX_RES_DESC_NUM        1024
78
79 int ice_logtype_init;
80 int ice_logtype_driver;
81 #ifdef RTE_LIBRTE_ICE_DEBUG_RX
82 int ice_logtype_rx;
83 #endif
84 #ifdef RTE_LIBRTE_ICE_DEBUG_TX
85 int ice_logtype_tx;
86 #endif
87 #ifdef RTE_LIBRTE_ICE_DEBUG_TX_FREE
88 int ice_logtype_tx_free;
89 #endif
90
91 static int ice_dev_configure(struct rte_eth_dev *dev);
92 static int ice_dev_start(struct rte_eth_dev *dev);
93 static void ice_dev_stop(struct rte_eth_dev *dev);
94 static void ice_dev_close(struct rte_eth_dev *dev);
95 static int ice_dev_reset(struct rte_eth_dev *dev);
96 static int ice_dev_info_get(struct rte_eth_dev *dev,
97                             struct rte_eth_dev_info *dev_info);
98 static int ice_link_update(struct rte_eth_dev *dev,
99                            int wait_to_complete);
100 static int ice_dev_set_link_up(struct rte_eth_dev *dev);
101 static int ice_dev_set_link_down(struct rte_eth_dev *dev);
102
103 static int ice_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
104 static int ice_vlan_offload_set(struct rte_eth_dev *dev, int mask);
105 static int ice_rss_reta_update(struct rte_eth_dev *dev,
106                                struct rte_eth_rss_reta_entry64 *reta_conf,
107                                uint16_t reta_size);
108 static int ice_rss_reta_query(struct rte_eth_dev *dev,
109                               struct rte_eth_rss_reta_entry64 *reta_conf,
110                               uint16_t reta_size);
111 static int ice_rss_hash_update(struct rte_eth_dev *dev,
112                                struct rte_eth_rss_conf *rss_conf);
113 static int ice_rss_hash_conf_get(struct rte_eth_dev *dev,
114                                  struct rte_eth_rss_conf *rss_conf);
115 static int ice_promisc_enable(struct rte_eth_dev *dev);
116 static int ice_promisc_disable(struct rte_eth_dev *dev);
117 static int ice_allmulti_enable(struct rte_eth_dev *dev);
118 static int ice_allmulti_disable(struct rte_eth_dev *dev);
119 static int ice_vlan_filter_set(struct rte_eth_dev *dev,
120                                uint16_t vlan_id,
121                                int on);
122 static int ice_macaddr_set(struct rte_eth_dev *dev,
123                            struct rte_ether_addr *mac_addr);
124 static int ice_macaddr_add(struct rte_eth_dev *dev,
125                            struct rte_ether_addr *mac_addr,
126                            __rte_unused uint32_t index,
127                            uint32_t pool);
128 static void ice_macaddr_remove(struct rte_eth_dev *dev, uint32_t index);
129 static int ice_rx_queue_intr_enable(struct rte_eth_dev *dev,
130                                     uint16_t queue_id);
131 static int ice_rx_queue_intr_disable(struct rte_eth_dev *dev,
132                                      uint16_t queue_id);
133 static int ice_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
134                               size_t fw_size);
135 static int ice_vlan_pvid_set(struct rte_eth_dev *dev,
136                              uint16_t pvid, int on);
137 static int ice_get_eeprom_length(struct rte_eth_dev *dev);
138 static int ice_get_eeprom(struct rte_eth_dev *dev,
139                           struct rte_dev_eeprom_info *eeprom);
140 static int ice_stats_get(struct rte_eth_dev *dev,
141                          struct rte_eth_stats *stats);
142 static int ice_stats_reset(struct rte_eth_dev *dev);
143 static int ice_xstats_get(struct rte_eth_dev *dev,
144                           struct rte_eth_xstat *xstats, unsigned int n);
145 static int ice_xstats_get_names(struct rte_eth_dev *dev,
146                                 struct rte_eth_xstat_name *xstats_names,
147                                 unsigned int limit);
148 static int ice_dev_filter_ctrl(struct rte_eth_dev *dev,
149                         enum rte_filter_type filter_type,
150                         enum rte_filter_op filter_op,
151                         void *arg);
152 static int ice_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
153                         struct rte_eth_udp_tunnel *udp_tunnel);
154 static int ice_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
155                         struct rte_eth_udp_tunnel *udp_tunnel);
156
157 static const struct rte_pci_id pci_id_ice_map[] = {
158         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_BACKPLANE) },
159         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_QSFP) },
160         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_SFP) },
161         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810_XXV_BACKPLANE) },
162         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810_XXV_QSFP) },
163         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810_XXV_SFP) },
164         { .vendor_id = 0, /* sentinel */ },
165 };
166
167 static const struct eth_dev_ops ice_eth_dev_ops = {
168         .dev_configure                = ice_dev_configure,
169         .dev_start                    = ice_dev_start,
170         .dev_stop                     = ice_dev_stop,
171         .dev_close                    = ice_dev_close,
172         .dev_reset                    = ice_dev_reset,
173         .dev_set_link_up              = ice_dev_set_link_up,
174         .dev_set_link_down            = ice_dev_set_link_down,
175         .rx_queue_start               = ice_rx_queue_start,
176         .rx_queue_stop                = ice_rx_queue_stop,
177         .tx_queue_start               = ice_tx_queue_start,
178         .tx_queue_stop                = ice_tx_queue_stop,
179         .rx_queue_setup               = ice_rx_queue_setup,
180         .rx_queue_release             = ice_rx_queue_release,
181         .tx_queue_setup               = ice_tx_queue_setup,
182         .tx_queue_release             = ice_tx_queue_release,
183         .dev_infos_get                = ice_dev_info_get,
184         .dev_supported_ptypes_get     = ice_dev_supported_ptypes_get,
185         .link_update                  = ice_link_update,
186         .mtu_set                      = ice_mtu_set,
187         .mac_addr_set                 = ice_macaddr_set,
188         .mac_addr_add                 = ice_macaddr_add,
189         .mac_addr_remove              = ice_macaddr_remove,
190         .vlan_filter_set              = ice_vlan_filter_set,
191         .vlan_offload_set             = ice_vlan_offload_set,
192         .reta_update                  = ice_rss_reta_update,
193         .reta_query                   = ice_rss_reta_query,
194         .rss_hash_update              = ice_rss_hash_update,
195         .rss_hash_conf_get            = ice_rss_hash_conf_get,
196         .promiscuous_enable           = ice_promisc_enable,
197         .promiscuous_disable          = ice_promisc_disable,
198         .allmulticast_enable          = ice_allmulti_enable,
199         .allmulticast_disable         = ice_allmulti_disable,
200         .rx_queue_intr_enable         = ice_rx_queue_intr_enable,
201         .rx_queue_intr_disable        = ice_rx_queue_intr_disable,
202         .fw_version_get               = ice_fw_version_get,
203         .vlan_pvid_set                = ice_vlan_pvid_set,
204         .rxq_info_get                 = ice_rxq_info_get,
205         .txq_info_get                 = ice_txq_info_get,
206         .rx_burst_mode_get            = ice_rx_burst_mode_get,
207         .tx_burst_mode_get            = ice_tx_burst_mode_get,
208         .get_eeprom_length            = ice_get_eeprom_length,
209         .get_eeprom                   = ice_get_eeprom,
210         .rx_queue_count               = ice_rx_queue_count,
211         .rx_descriptor_status         = ice_rx_descriptor_status,
212         .tx_descriptor_status         = ice_tx_descriptor_status,
213         .stats_get                    = ice_stats_get,
214         .stats_reset                  = ice_stats_reset,
215         .xstats_get                   = ice_xstats_get,
216         .xstats_get_names             = ice_xstats_get_names,
217         .xstats_reset                 = ice_stats_reset,
218         .filter_ctrl                  = ice_dev_filter_ctrl,
219         .udp_tunnel_port_add          = ice_dev_udp_tunnel_port_add,
220         .udp_tunnel_port_del          = ice_dev_udp_tunnel_port_del,
221 };
222
223 /* store statistics names and its offset in stats structure */
224 struct ice_xstats_name_off {
225         char name[RTE_ETH_XSTATS_NAME_SIZE];
226         unsigned int offset;
227 };
228
229 static const struct ice_xstats_name_off ice_stats_strings[] = {
230         {"rx_unicast_packets", offsetof(struct ice_eth_stats, rx_unicast)},
231         {"rx_multicast_packets", offsetof(struct ice_eth_stats, rx_multicast)},
232         {"rx_broadcast_packets", offsetof(struct ice_eth_stats, rx_broadcast)},
233         {"rx_dropped_packets", offsetof(struct ice_eth_stats, rx_discards)},
234         {"rx_unknown_protocol_packets", offsetof(struct ice_eth_stats,
235                 rx_unknown_protocol)},
236         {"tx_unicast_packets", offsetof(struct ice_eth_stats, tx_unicast)},
237         {"tx_multicast_packets", offsetof(struct ice_eth_stats, tx_multicast)},
238         {"tx_broadcast_packets", offsetof(struct ice_eth_stats, tx_broadcast)},
239         {"tx_dropped_packets", offsetof(struct ice_eth_stats, tx_discards)},
240 };
241
242 #define ICE_NB_ETH_XSTATS (sizeof(ice_stats_strings) / \
243                 sizeof(ice_stats_strings[0]))
244
245 static const struct ice_xstats_name_off ice_hw_port_strings[] = {
246         {"tx_link_down_dropped", offsetof(struct ice_hw_port_stats,
247                 tx_dropped_link_down)},
248         {"rx_crc_errors", offsetof(struct ice_hw_port_stats, crc_errors)},
249         {"rx_illegal_byte_errors", offsetof(struct ice_hw_port_stats,
250                 illegal_bytes)},
251         {"rx_error_bytes", offsetof(struct ice_hw_port_stats, error_bytes)},
252         {"mac_local_errors", offsetof(struct ice_hw_port_stats,
253                 mac_local_faults)},
254         {"mac_remote_errors", offsetof(struct ice_hw_port_stats,
255                 mac_remote_faults)},
256         {"rx_len_errors", offsetof(struct ice_hw_port_stats,
257                 rx_len_errors)},
258         {"tx_xon_packets", offsetof(struct ice_hw_port_stats, link_xon_tx)},
259         {"rx_xon_packets", offsetof(struct ice_hw_port_stats, link_xon_rx)},
260         {"tx_xoff_packets", offsetof(struct ice_hw_port_stats, link_xoff_tx)},
261         {"rx_xoff_packets", offsetof(struct ice_hw_port_stats, link_xoff_rx)},
262         {"rx_size_64_packets", offsetof(struct ice_hw_port_stats, rx_size_64)},
263         {"rx_size_65_to_127_packets", offsetof(struct ice_hw_port_stats,
264                 rx_size_127)},
265         {"rx_size_128_to_255_packets", offsetof(struct ice_hw_port_stats,
266                 rx_size_255)},
267         {"rx_size_256_to_511_packets", offsetof(struct ice_hw_port_stats,
268                 rx_size_511)},
269         {"rx_size_512_to_1023_packets", offsetof(struct ice_hw_port_stats,
270                 rx_size_1023)},
271         {"rx_size_1024_to_1522_packets", offsetof(struct ice_hw_port_stats,
272                 rx_size_1522)},
273         {"rx_size_1523_to_max_packets", offsetof(struct ice_hw_port_stats,
274                 rx_size_big)},
275         {"rx_undersized_errors", offsetof(struct ice_hw_port_stats,
276                 rx_undersize)},
277         {"rx_oversize_errors", offsetof(struct ice_hw_port_stats,
278                 rx_oversize)},
279         {"rx_mac_short_pkt_dropped", offsetof(struct ice_hw_port_stats,
280                 mac_short_pkt_dropped)},
281         {"rx_fragmented_errors", offsetof(struct ice_hw_port_stats,
282                 rx_fragments)},
283         {"rx_jabber_errors", offsetof(struct ice_hw_port_stats, rx_jabber)},
284         {"tx_size_64_packets", offsetof(struct ice_hw_port_stats, tx_size_64)},
285         {"tx_size_65_to_127_packets", offsetof(struct ice_hw_port_stats,
286                 tx_size_127)},
287         {"tx_size_128_to_255_packets", offsetof(struct ice_hw_port_stats,
288                 tx_size_255)},
289         {"tx_size_256_to_511_packets", offsetof(struct ice_hw_port_stats,
290                 tx_size_511)},
291         {"tx_size_512_to_1023_packets", offsetof(struct ice_hw_port_stats,
292                 tx_size_1023)},
293         {"tx_size_1024_to_1522_packets", offsetof(struct ice_hw_port_stats,
294                 tx_size_1522)},
295         {"tx_size_1523_to_max_packets", offsetof(struct ice_hw_port_stats,
296                 tx_size_big)},
297 };
298
299 #define ICE_NB_HW_PORT_XSTATS (sizeof(ice_hw_port_strings) / \
300                 sizeof(ice_hw_port_strings[0]))
301
302 static void
303 ice_init_controlq_parameter(struct ice_hw *hw)
304 {
305         /* fields for adminq */
306         hw->adminq.num_rq_entries = ICE_ADMINQ_LEN;
307         hw->adminq.num_sq_entries = ICE_ADMINQ_LEN;
308         hw->adminq.rq_buf_size = ICE_ADMINQ_BUF_SZ;
309         hw->adminq.sq_buf_size = ICE_ADMINQ_BUF_SZ;
310
311         /* fields for mailboxq, DPDK used as PF host */
312         hw->mailboxq.num_rq_entries = ICE_MAILBOXQ_LEN;
313         hw->mailboxq.num_sq_entries = ICE_MAILBOXQ_LEN;
314         hw->mailboxq.rq_buf_size = ICE_MAILBOXQ_BUF_SZ;
315         hw->mailboxq.sq_buf_size = ICE_MAILBOXQ_BUF_SZ;
316 }
317
318 static int
319 lookup_proto_xtr_type(const char *xtr_name)
320 {
321         static struct {
322                 const char *name;
323                 enum proto_xtr_type type;
324         } xtr_type_map[] = {
325                 { "vlan",      PROTO_XTR_VLAN      },
326                 { "ipv4",      PROTO_XTR_IPV4      },
327                 { "ipv6",      PROTO_XTR_IPV6      },
328                 { "ipv6_flow", PROTO_XTR_IPV6_FLOW },
329                 { "tcp",       PROTO_XTR_TCP       },
330         };
331         uint32_t i;
332
333         for (i = 0; i < RTE_DIM(xtr_type_map); i++) {
334                 if (strcmp(xtr_name, xtr_type_map[i].name) == 0)
335                         return xtr_type_map[i].type;
336         }
337
338         return -1;
339 }
340
341 /*
342  * Parse elem, the elem could be single number/range or '(' ')' group
343  * 1) A single number elem, it's just a simple digit. e.g. 9
344  * 2) A single range elem, two digits with a '-' between. e.g. 2-6
345  * 3) A group elem, combines multiple 1) or 2) with '( )'. e.g (0,2-4,6)
346  *    Within group elem, '-' used for a range separator;
347  *                       ',' used for a single number.
348  */
349 static int
350 parse_queue_set(const char *input, int xtr_type, struct ice_devargs *devargs)
351 {
352         const char *str = input;
353         char *end = NULL;
354         uint32_t min, max;
355         uint32_t idx;
356
357         while (isblank(*str))
358                 str++;
359
360         if (!isdigit(*str) && *str != '(')
361                 return -1;
362
363         /* process single number or single range of number */
364         if (*str != '(') {
365                 errno = 0;
366                 idx = strtoul(str, &end, 10);
367                 if (errno || end == NULL || idx >= ICE_MAX_QUEUE_NUM)
368                         return -1;
369
370                 while (isblank(*end))
371                         end++;
372
373                 min = idx;
374                 max = idx;
375
376                 /* process single <number>-<number> */
377                 if (*end == '-') {
378                         end++;
379                         while (isblank(*end))
380                                 end++;
381                         if (!isdigit(*end))
382                                 return -1;
383
384                         errno = 0;
385                         idx = strtoul(end, &end, 10);
386                         if (errno || end == NULL || idx >= ICE_MAX_QUEUE_NUM)
387                                 return -1;
388
389                         max = idx;
390                         while (isblank(*end))
391                                 end++;
392                 }
393
394                 if (*end != ':')
395                         return -1;
396
397                 for (idx = RTE_MIN(min, max);
398                      idx <= RTE_MAX(min, max); idx++)
399                         devargs->proto_xtr[idx] = xtr_type;
400
401                 return 0;
402         }
403
404         /* process set within bracket */
405         str++;
406         while (isblank(*str))
407                 str++;
408         if (*str == '\0')
409                 return -1;
410
411         min = ICE_MAX_QUEUE_NUM;
412         do {
413                 /* go ahead to the first digit */
414                 while (isblank(*str))
415                         str++;
416                 if (!isdigit(*str))
417                         return -1;
418
419                 /* get the digit value */
420                 errno = 0;
421                 idx = strtoul(str, &end, 10);
422                 if (errno || end == NULL || idx >= ICE_MAX_QUEUE_NUM)
423                         return -1;
424
425                 /* go ahead to separator '-',',' and ')' */
426                 while (isblank(*end))
427                         end++;
428                 if (*end == '-') {
429                         if (min == ICE_MAX_QUEUE_NUM)
430                                 min = idx;
431                         else /* avoid continuous '-' */
432                                 return -1;
433                 } else if (*end == ',' || *end == ')') {
434                         max = idx;
435                         if (min == ICE_MAX_QUEUE_NUM)
436                                 min = idx;
437
438                         for (idx = RTE_MIN(min, max);
439                              idx <= RTE_MAX(min, max); idx++)
440                                 devargs->proto_xtr[idx] = xtr_type;
441
442                         min = ICE_MAX_QUEUE_NUM;
443                 } else {
444                         return -1;
445                 }
446
447                 str = end + 1;
448         } while (*end != ')' && *end != '\0');
449
450         return 0;
451 }
452
453 static int
454 parse_queue_proto_xtr(const char *queues, struct ice_devargs *devargs)
455 {
456         const char *queue_start;
457         uint32_t idx;
458         int xtr_type;
459         char xtr_name[32];
460
461         while (isblank(*queues))
462                 queues++;
463
464         if (*queues != '[') {
465                 xtr_type = lookup_proto_xtr_type(queues);
466                 if (xtr_type < 0)
467                         return -1;
468
469                 devargs->proto_xtr_dflt = xtr_type;
470
471                 return 0;
472         }
473
474         queues++;
475         do {
476                 while (isblank(*queues))
477                         queues++;
478                 if (*queues == '\0')
479                         return -1;
480
481                 queue_start = queues;
482
483                 /* go across a complete bracket */
484                 if (*queue_start == '(') {
485                         queues += strcspn(queues, ")");
486                         if (*queues != ')')
487                                 return -1;
488                 }
489
490                 /* scan the separator ':' */
491                 queues += strcspn(queues, ":");
492                 if (*queues++ != ':')
493                         return -1;
494                 while (isblank(*queues))
495                         queues++;
496
497                 for (idx = 0; ; idx++) {
498                         if (isblank(queues[idx]) ||
499                             queues[idx] == ',' ||
500                             queues[idx] == ']' ||
501                             queues[idx] == '\0')
502                                 break;
503
504                         if (idx > sizeof(xtr_name) - 2)
505                                 return -1;
506
507                         xtr_name[idx] = queues[idx];
508                 }
509                 xtr_name[idx] = '\0';
510                 xtr_type = lookup_proto_xtr_type(xtr_name);
511                 if (xtr_type < 0)
512                         return -1;
513
514                 queues += idx;
515
516                 while (isblank(*queues) || *queues == ',' || *queues == ']')
517                         queues++;
518
519                 if (parse_queue_set(queue_start, xtr_type, devargs) < 0)
520                         return -1;
521         } while (*queues != '\0');
522
523         return 0;
524 }
525
526 static int
527 handle_proto_xtr_arg(__rte_unused const char *key, const char *value,
528                      void *extra_args)
529 {
530         struct ice_devargs *devargs = extra_args;
531
532         if (value == NULL || extra_args == NULL)
533                 return -EINVAL;
534
535         if (parse_queue_proto_xtr(value, devargs) < 0) {
536                 PMD_DRV_LOG(ERR,
537                             "The protocol extraction parameter is wrong : '%s'",
538                             value);
539                 return -1;
540         }
541
542         return 0;
543 }
544
545 static bool
546 ice_proto_xtr_support(struct ice_hw *hw)
547 {
548 #define FLX_REG(val, fld, idx) \
549         (((val) & GLFLXP_RXDID_FLX_WRD_##idx##_##fld##_M) >> \
550          GLFLXP_RXDID_FLX_WRD_##idx##_##fld##_S)
551         static struct {
552                 uint32_t rxdid;
553                 uint16_t protid_0;
554                 uint16_t protid_1;
555         } xtr_sets[] = {
556                 { ICE_RXDID_COMMS_AUX_VLAN, ICE_PROT_EVLAN_O, ICE_PROT_VLAN_O },
557                 { ICE_RXDID_COMMS_AUX_IPV4, ICE_PROT_IPV4_OF_OR_S,
558                   ICE_PROT_IPV4_OF_OR_S },
559                 { ICE_RXDID_COMMS_AUX_IPV6, ICE_PROT_IPV6_OF_OR_S,
560                   ICE_PROT_IPV6_OF_OR_S },
561                 { ICE_RXDID_COMMS_AUX_IPV6_FLOW, ICE_PROT_IPV6_OF_OR_S,
562                   ICE_PROT_IPV6_OF_OR_S },
563                 { ICE_RXDID_COMMS_AUX_TCP, ICE_PROT_TCP_IL, ICE_PROT_ID_INVAL },
564         };
565         uint32_t i;
566
567         for (i = 0; i < RTE_DIM(xtr_sets); i++) {
568                 uint32_t rxdid = xtr_sets[i].rxdid;
569                 uint32_t v;
570
571                 if (xtr_sets[i].protid_0 != ICE_PROT_ID_INVAL) {
572                         v = ICE_READ_REG(hw, GLFLXP_RXDID_FLX_WRD_4(rxdid));
573
574                         if (FLX_REG(v, PROT_MDID, 4) != xtr_sets[i].protid_0 ||
575                             FLX_REG(v, RXDID_OPCODE, 4) != ICE_RX_OPC_EXTRACT)
576                                 return false;
577                 }
578
579                 if (xtr_sets[i].protid_1 != ICE_PROT_ID_INVAL) {
580                         v = ICE_READ_REG(hw, GLFLXP_RXDID_FLX_WRD_5(rxdid));
581
582                         if (FLX_REG(v, PROT_MDID, 5) != xtr_sets[i].protid_1 ||
583                             FLX_REG(v, RXDID_OPCODE, 5) != ICE_RX_OPC_EXTRACT)
584                                 return false;
585                 }
586         }
587
588         return true;
589 }
590
591 static int
592 ice_res_pool_init(struct ice_res_pool_info *pool, uint32_t base,
593                   uint32_t num)
594 {
595         struct pool_entry *entry;
596
597         if (!pool || !num)
598                 return -EINVAL;
599
600         entry = rte_zmalloc(NULL, sizeof(*entry), 0);
601         if (!entry) {
602                 PMD_INIT_LOG(ERR,
603                              "Failed to allocate memory for resource pool");
604                 return -ENOMEM;
605         }
606
607         /* queue heap initialize */
608         pool->num_free = num;
609         pool->num_alloc = 0;
610         pool->base = base;
611         LIST_INIT(&pool->alloc_list);
612         LIST_INIT(&pool->free_list);
613
614         /* Initialize element  */
615         entry->base = 0;
616         entry->len = num;
617
618         LIST_INSERT_HEAD(&pool->free_list, entry, next);
619         return 0;
620 }
621
622 static int
623 ice_res_pool_alloc(struct ice_res_pool_info *pool,
624                    uint16_t num)
625 {
626         struct pool_entry *entry, *valid_entry;
627
628         if (!pool || !num) {
629                 PMD_INIT_LOG(ERR, "Invalid parameter");
630                 return -EINVAL;
631         }
632
633         if (pool->num_free < num) {
634                 PMD_INIT_LOG(ERR, "No resource. ask:%u, available:%u",
635                              num, pool->num_free);
636                 return -ENOMEM;
637         }
638
639         valid_entry = NULL;
640         /* Lookup  in free list and find most fit one */
641         LIST_FOREACH(entry, &pool->free_list, next) {
642                 if (entry->len >= num) {
643                         /* Find best one */
644                         if (entry->len == num) {
645                                 valid_entry = entry;
646                                 break;
647                         }
648                         if (!valid_entry ||
649                             valid_entry->len > entry->len)
650                                 valid_entry = entry;
651                 }
652         }
653
654         /* Not find one to satisfy the request, return */
655         if (!valid_entry) {
656                 PMD_INIT_LOG(ERR, "No valid entry found");
657                 return -ENOMEM;
658         }
659         /**
660          * The entry have equal queue number as requested,
661          * remove it from alloc_list.
662          */
663         if (valid_entry->len == num) {
664                 LIST_REMOVE(valid_entry, next);
665         } else {
666                 /**
667                  * The entry have more numbers than requested,
668                  * create a new entry for alloc_list and minus its
669                  * queue base and number in free_list.
670                  */
671                 entry = rte_zmalloc(NULL, sizeof(*entry), 0);
672                 if (!entry) {
673                         PMD_INIT_LOG(ERR,
674                                      "Failed to allocate memory for "
675                                      "resource pool");
676                         return -ENOMEM;
677                 }
678                 entry->base = valid_entry->base;
679                 entry->len = num;
680                 valid_entry->base += num;
681                 valid_entry->len -= num;
682                 valid_entry = entry;
683         }
684
685         /* Insert it into alloc list, not sorted */
686         LIST_INSERT_HEAD(&pool->alloc_list, valid_entry, next);
687
688         pool->num_free -= valid_entry->len;
689         pool->num_alloc += valid_entry->len;
690
691         return valid_entry->base + pool->base;
692 }
693
694 static void
695 ice_res_pool_destroy(struct ice_res_pool_info *pool)
696 {
697         struct pool_entry *entry, *next_entry;
698
699         if (!pool)
700                 return;
701
702         for (entry = LIST_FIRST(&pool->alloc_list);
703              entry && (next_entry = LIST_NEXT(entry, next), 1);
704              entry = next_entry) {
705                 LIST_REMOVE(entry, next);
706                 rte_free(entry);
707         }
708
709         for (entry = LIST_FIRST(&pool->free_list);
710              entry && (next_entry = LIST_NEXT(entry, next), 1);
711              entry = next_entry) {
712                 LIST_REMOVE(entry, next);
713                 rte_free(entry);
714         }
715
716         pool->num_free = 0;
717         pool->num_alloc = 0;
718         pool->base = 0;
719         LIST_INIT(&pool->alloc_list);
720         LIST_INIT(&pool->free_list);
721 }
722
723 static void
724 ice_vsi_config_default_rss(struct ice_aqc_vsi_props *info)
725 {
726         /* Set VSI LUT selection */
727         info->q_opt_rss = ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI &
728                           ICE_AQ_VSI_Q_OPT_RSS_LUT_M;
729         /* Set Hash scheme */
730         info->q_opt_rss |= ICE_AQ_VSI_Q_OPT_RSS_TPLZ &
731                            ICE_AQ_VSI_Q_OPT_RSS_HASH_M;
732         /* enable TC */
733         info->q_opt_tc = ICE_AQ_VSI_Q_OPT_TC_OVR_M;
734 }
735
736 static enum ice_status
737 ice_vsi_config_tc_queue_mapping(struct ice_vsi *vsi,
738                                 struct ice_aqc_vsi_props *info,
739                                 uint8_t enabled_tcmap)
740 {
741         uint16_t bsf, qp_idx;
742
743         /* default tc 0 now. Multi-TC supporting need to be done later.
744          * Configure TC and queue mapping parameters, for enabled TC,
745          * allocate qpnum_per_tc queues to this traffic.
746          */
747         if (enabled_tcmap != 0x01) {
748                 PMD_INIT_LOG(ERR, "only TC0 is supported");
749                 return -ENOTSUP;
750         }
751
752         vsi->nb_qps = RTE_MIN(vsi->nb_qps, ICE_MAX_Q_PER_TC);
753         bsf = rte_bsf32(vsi->nb_qps);
754         /* Adjust the queue number to actual queues that can be applied */
755         vsi->nb_qps = 0x1 << bsf;
756
757         qp_idx = 0;
758         /* Set tc and queue mapping with VSI */
759         info->tc_mapping[0] = rte_cpu_to_le_16((qp_idx <<
760                                                 ICE_AQ_VSI_TC_Q_OFFSET_S) |
761                                                (bsf << ICE_AQ_VSI_TC_Q_NUM_S));
762
763         /* Associate queue number with VSI */
764         info->mapping_flags |= rte_cpu_to_le_16(ICE_AQ_VSI_Q_MAP_CONTIG);
765         info->q_mapping[0] = rte_cpu_to_le_16(vsi->base_queue);
766         info->q_mapping[1] = rte_cpu_to_le_16(vsi->nb_qps);
767         info->valid_sections |=
768                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
769         /* Set the info.ingress_table and info.egress_table
770          * for UP translate table. Now just set it to 1:1 map by default
771          * -- 0b 111 110 101 100 011 010 001 000 == 0xFAC688
772          */
773 #define ICE_TC_QUEUE_TABLE_DFLT 0x00FAC688
774         info->ingress_table  = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
775         info->egress_table   = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
776         info->outer_up_table = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
777         return 0;
778 }
779
780 static int
781 ice_init_mac_address(struct rte_eth_dev *dev)
782 {
783         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
784
785         if (!rte_is_unicast_ether_addr
786                 ((struct rte_ether_addr *)hw->port_info[0].mac.lan_addr)) {
787                 PMD_INIT_LOG(ERR, "Invalid MAC address");
788                 return -EINVAL;
789         }
790
791         rte_ether_addr_copy(
792                 (struct rte_ether_addr *)hw->port_info[0].mac.lan_addr,
793                 (struct rte_ether_addr *)hw->port_info[0].mac.perm_addr);
794
795         dev->data->mac_addrs =
796                 rte_zmalloc(NULL, sizeof(struct rte_ether_addr), 0);
797         if (!dev->data->mac_addrs) {
798                 PMD_INIT_LOG(ERR,
799                              "Failed to allocate memory to store mac address");
800                 return -ENOMEM;
801         }
802         /* store it to dev data */
803         rte_ether_addr_copy(
804                 (struct rte_ether_addr *)hw->port_info[0].mac.perm_addr,
805                 &dev->data->mac_addrs[0]);
806         return 0;
807 }
808
809 /* Find out specific MAC filter */
810 static struct ice_mac_filter *
811 ice_find_mac_filter(struct ice_vsi *vsi, struct rte_ether_addr *macaddr)
812 {
813         struct ice_mac_filter *f;
814
815         TAILQ_FOREACH(f, &vsi->mac_list, next) {
816                 if (rte_is_same_ether_addr(macaddr, &f->mac_info.mac_addr))
817                         return f;
818         }
819
820         return NULL;
821 }
822
823 static int
824 ice_add_mac_filter(struct ice_vsi *vsi, struct rte_ether_addr *mac_addr)
825 {
826         struct ice_fltr_list_entry *m_list_itr = NULL;
827         struct ice_mac_filter *f;
828         struct LIST_HEAD_TYPE list_head;
829         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
830         int ret = 0;
831
832         /* If it's added and configured, return */
833         f = ice_find_mac_filter(vsi, mac_addr);
834         if (f) {
835                 PMD_DRV_LOG(INFO, "This MAC filter already exists.");
836                 return 0;
837         }
838
839         INIT_LIST_HEAD(&list_head);
840
841         m_list_itr = (struct ice_fltr_list_entry *)
842                 ice_malloc(hw, sizeof(*m_list_itr));
843         if (!m_list_itr) {
844                 ret = -ENOMEM;
845                 goto DONE;
846         }
847         ice_memcpy(m_list_itr->fltr_info.l_data.mac.mac_addr,
848                    mac_addr, ETH_ALEN, ICE_NONDMA_TO_NONDMA);
849         m_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
850         m_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
851         m_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_MAC;
852         m_list_itr->fltr_info.flag = ICE_FLTR_TX;
853         m_list_itr->fltr_info.vsi_handle = vsi->idx;
854
855         LIST_ADD(&m_list_itr->list_entry, &list_head);
856
857         /* Add the mac */
858         ret = ice_add_mac(hw, &list_head);
859         if (ret != ICE_SUCCESS) {
860                 PMD_DRV_LOG(ERR, "Failed to add MAC filter");
861                 ret = -EINVAL;
862                 goto DONE;
863         }
864         /* Add the mac addr into mac list */
865         f = rte_zmalloc(NULL, sizeof(*f), 0);
866         if (!f) {
867                 PMD_DRV_LOG(ERR, "failed to allocate memory");
868                 ret = -ENOMEM;
869                 goto DONE;
870         }
871         rte_memcpy(&f->mac_info.mac_addr, mac_addr, ETH_ADDR_LEN);
872         TAILQ_INSERT_TAIL(&vsi->mac_list, f, next);
873         vsi->mac_num++;
874
875         ret = 0;
876
877 DONE:
878         rte_free(m_list_itr);
879         return ret;
880 }
881
882 static int
883 ice_remove_mac_filter(struct ice_vsi *vsi, struct rte_ether_addr *mac_addr)
884 {
885         struct ice_fltr_list_entry *m_list_itr = NULL;
886         struct ice_mac_filter *f;
887         struct LIST_HEAD_TYPE list_head;
888         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
889         int ret = 0;
890
891         /* Can't find it, return an error */
892         f = ice_find_mac_filter(vsi, mac_addr);
893         if (!f)
894                 return -EINVAL;
895
896         INIT_LIST_HEAD(&list_head);
897
898         m_list_itr = (struct ice_fltr_list_entry *)
899                 ice_malloc(hw, sizeof(*m_list_itr));
900         if (!m_list_itr) {
901                 ret = -ENOMEM;
902                 goto DONE;
903         }
904         ice_memcpy(m_list_itr->fltr_info.l_data.mac.mac_addr,
905                    mac_addr, ETH_ALEN, ICE_NONDMA_TO_NONDMA);
906         m_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
907         m_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
908         m_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_MAC;
909         m_list_itr->fltr_info.flag = ICE_FLTR_TX;
910         m_list_itr->fltr_info.vsi_handle = vsi->idx;
911
912         LIST_ADD(&m_list_itr->list_entry, &list_head);
913
914         /* remove the mac filter */
915         ret = ice_remove_mac(hw, &list_head);
916         if (ret != ICE_SUCCESS) {
917                 PMD_DRV_LOG(ERR, "Failed to remove MAC filter");
918                 ret = -EINVAL;
919                 goto DONE;
920         }
921
922         /* Remove the mac addr from mac list */
923         TAILQ_REMOVE(&vsi->mac_list, f, next);
924         rte_free(f);
925         vsi->mac_num--;
926
927         ret = 0;
928 DONE:
929         rte_free(m_list_itr);
930         return ret;
931 }
932
933 /* Find out specific VLAN filter */
934 static struct ice_vlan_filter *
935 ice_find_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
936 {
937         struct ice_vlan_filter *f;
938
939         TAILQ_FOREACH(f, &vsi->vlan_list, next) {
940                 if (vlan_id == f->vlan_info.vlan_id)
941                         return f;
942         }
943
944         return NULL;
945 }
946
947 static int
948 ice_add_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
949 {
950         struct ice_fltr_list_entry *v_list_itr = NULL;
951         struct ice_vlan_filter *f;
952         struct LIST_HEAD_TYPE list_head;
953         struct ice_hw *hw;
954         int ret = 0;
955
956         if (!vsi || vlan_id > RTE_ETHER_MAX_VLAN_ID)
957                 return -EINVAL;
958
959         hw = ICE_VSI_TO_HW(vsi);
960
961         /* If it's added and configured, return. */
962         f = ice_find_vlan_filter(vsi, vlan_id);
963         if (f) {
964                 PMD_DRV_LOG(INFO, "This VLAN filter already exists.");
965                 return 0;
966         }
967
968         if (!vsi->vlan_anti_spoof_on && !vsi->vlan_filter_on)
969                 return 0;
970
971         INIT_LIST_HEAD(&list_head);
972
973         v_list_itr = (struct ice_fltr_list_entry *)
974                       ice_malloc(hw, sizeof(*v_list_itr));
975         if (!v_list_itr) {
976                 ret = -ENOMEM;
977                 goto DONE;
978         }
979         v_list_itr->fltr_info.l_data.vlan.vlan_id = vlan_id;
980         v_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
981         v_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
982         v_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_VLAN;
983         v_list_itr->fltr_info.flag = ICE_FLTR_TX;
984         v_list_itr->fltr_info.vsi_handle = vsi->idx;
985
986         LIST_ADD(&v_list_itr->list_entry, &list_head);
987
988         /* Add the vlan */
989         ret = ice_add_vlan(hw, &list_head);
990         if (ret != ICE_SUCCESS) {
991                 PMD_DRV_LOG(ERR, "Failed to add VLAN filter");
992                 ret = -EINVAL;
993                 goto DONE;
994         }
995
996         /* Add vlan into vlan list */
997         f = rte_zmalloc(NULL, sizeof(*f), 0);
998         if (!f) {
999                 PMD_DRV_LOG(ERR, "failed to allocate memory");
1000                 ret = -ENOMEM;
1001                 goto DONE;
1002         }
1003         f->vlan_info.vlan_id = vlan_id;
1004         TAILQ_INSERT_TAIL(&vsi->vlan_list, f, next);
1005         vsi->vlan_num++;
1006
1007         ret = 0;
1008
1009 DONE:
1010         rte_free(v_list_itr);
1011         return ret;
1012 }
1013
1014 static int
1015 ice_remove_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
1016 {
1017         struct ice_fltr_list_entry *v_list_itr = NULL;
1018         struct ice_vlan_filter *f;
1019         struct LIST_HEAD_TYPE list_head;
1020         struct ice_hw *hw;
1021         int ret = 0;
1022
1023         /**
1024          * Vlan 0 is the generic filter for untagged packets
1025          * and can't be removed.
1026          */
1027         if (!vsi || vlan_id == 0 || vlan_id > RTE_ETHER_MAX_VLAN_ID)
1028                 return -EINVAL;
1029
1030         hw = ICE_VSI_TO_HW(vsi);
1031
1032         /* Can't find it, return an error */
1033         f = ice_find_vlan_filter(vsi, vlan_id);
1034         if (!f)
1035                 return -EINVAL;
1036
1037         INIT_LIST_HEAD(&list_head);
1038
1039         v_list_itr = (struct ice_fltr_list_entry *)
1040                       ice_malloc(hw, sizeof(*v_list_itr));
1041         if (!v_list_itr) {
1042                 ret = -ENOMEM;
1043                 goto DONE;
1044         }
1045
1046         v_list_itr->fltr_info.l_data.vlan.vlan_id = vlan_id;
1047         v_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
1048         v_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
1049         v_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_VLAN;
1050         v_list_itr->fltr_info.flag = ICE_FLTR_TX;
1051         v_list_itr->fltr_info.vsi_handle = vsi->idx;
1052
1053         LIST_ADD(&v_list_itr->list_entry, &list_head);
1054
1055         /* remove the vlan filter */
1056         ret = ice_remove_vlan(hw, &list_head);
1057         if (ret != ICE_SUCCESS) {
1058                 PMD_DRV_LOG(ERR, "Failed to remove VLAN filter");
1059                 ret = -EINVAL;
1060                 goto DONE;
1061         }
1062
1063         /* Remove the vlan id from vlan list */
1064         TAILQ_REMOVE(&vsi->vlan_list, f, next);
1065         rte_free(f);
1066         vsi->vlan_num--;
1067
1068         ret = 0;
1069 DONE:
1070         rte_free(v_list_itr);
1071         return ret;
1072 }
1073
1074 static int
1075 ice_remove_all_mac_vlan_filters(struct ice_vsi *vsi)
1076 {
1077         struct ice_mac_filter *m_f;
1078         struct ice_vlan_filter *v_f;
1079         int ret = 0;
1080
1081         if (!vsi || !vsi->mac_num)
1082                 return -EINVAL;
1083
1084         TAILQ_FOREACH(m_f, &vsi->mac_list, next) {
1085                 ret = ice_remove_mac_filter(vsi, &m_f->mac_info.mac_addr);
1086                 if (ret != ICE_SUCCESS) {
1087                         ret = -EINVAL;
1088                         goto DONE;
1089                 }
1090         }
1091
1092         if (vsi->vlan_num == 0)
1093                 return 0;
1094
1095         TAILQ_FOREACH(v_f, &vsi->vlan_list, next) {
1096                 ret = ice_remove_vlan_filter(vsi, v_f->vlan_info.vlan_id);
1097                 if (ret != ICE_SUCCESS) {
1098                         ret = -EINVAL;
1099                         goto DONE;
1100                 }
1101         }
1102
1103 DONE:
1104         return ret;
1105 }
1106
1107 static int
1108 ice_vsi_config_qinq_insertion(struct ice_vsi *vsi, bool on)
1109 {
1110         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1111         struct ice_vsi_ctx ctxt;
1112         uint8_t qinq_flags;
1113         int ret = 0;
1114
1115         /* Check if it has been already on or off */
1116         if (vsi->info.valid_sections &
1117                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID)) {
1118                 if (on) {
1119                         if ((vsi->info.outer_tag_flags &
1120                              ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST) ==
1121                             ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST)
1122                                 return 0; /* already on */
1123                 } else {
1124                         if (!(vsi->info.outer_tag_flags &
1125                               ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST))
1126                                 return 0; /* already off */
1127                 }
1128         }
1129
1130         if (on)
1131                 qinq_flags = ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST;
1132         else
1133                 qinq_flags = 0;
1134         /* clear global insertion and use per packet insertion */
1135         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_INSERT);
1136         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST);
1137         vsi->info.outer_tag_flags |= qinq_flags;
1138         /* use default vlan type 0x8100 */
1139         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_TYPE_M);
1140         vsi->info.outer_tag_flags |= ICE_DFLT_OUTER_TAG_TYPE <<
1141                                      ICE_AQ_VSI_OUTER_TAG_TYPE_S;
1142         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1143         ctxt.info.valid_sections =
1144                         rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1145         ctxt.vsi_num = vsi->vsi_id;
1146         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
1147         if (ret) {
1148                 PMD_DRV_LOG(INFO,
1149                             "Update VSI failed to %s qinq stripping",
1150                             on ? "enable" : "disable");
1151                 return -EINVAL;
1152         }
1153
1154         vsi->info.valid_sections |=
1155                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1156
1157         return ret;
1158 }
1159
1160 static int
1161 ice_vsi_config_qinq_stripping(struct ice_vsi *vsi, bool on)
1162 {
1163         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1164         struct ice_vsi_ctx ctxt;
1165         uint8_t qinq_flags;
1166         int ret = 0;
1167
1168         /* Check if it has been already on or off */
1169         if (vsi->info.valid_sections &
1170                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID)) {
1171                 if (on) {
1172                         if ((vsi->info.outer_tag_flags &
1173                              ICE_AQ_VSI_OUTER_TAG_MODE_M) ==
1174                             ICE_AQ_VSI_OUTER_TAG_COPY)
1175                                 return 0; /* already on */
1176                 } else {
1177                         if ((vsi->info.outer_tag_flags &
1178                              ICE_AQ_VSI_OUTER_TAG_MODE_M) ==
1179                             ICE_AQ_VSI_OUTER_TAG_NOTHING)
1180                                 return 0; /* already off */
1181                 }
1182         }
1183
1184         if (on)
1185                 qinq_flags = ICE_AQ_VSI_OUTER_TAG_COPY;
1186         else
1187                 qinq_flags = ICE_AQ_VSI_OUTER_TAG_NOTHING;
1188         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_MODE_M);
1189         vsi->info.outer_tag_flags |= qinq_flags;
1190         /* use default vlan type 0x8100 */
1191         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_TYPE_M);
1192         vsi->info.outer_tag_flags |= ICE_DFLT_OUTER_TAG_TYPE <<
1193                                      ICE_AQ_VSI_OUTER_TAG_TYPE_S;
1194         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1195         ctxt.info.valid_sections =
1196                         rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1197         ctxt.vsi_num = vsi->vsi_id;
1198         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
1199         if (ret) {
1200                 PMD_DRV_LOG(INFO,
1201                             "Update VSI failed to %s qinq stripping",
1202                             on ? "enable" : "disable");
1203                 return -EINVAL;
1204         }
1205
1206         vsi->info.valid_sections |=
1207                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1208
1209         return ret;
1210 }
1211
1212 static int
1213 ice_vsi_config_double_vlan(struct ice_vsi *vsi, int on)
1214 {
1215         int ret;
1216
1217         ret = ice_vsi_config_qinq_stripping(vsi, on);
1218         if (ret)
1219                 PMD_DRV_LOG(ERR, "Fail to set qinq stripping - %d", ret);
1220
1221         ret = ice_vsi_config_qinq_insertion(vsi, on);
1222         if (ret)
1223                 PMD_DRV_LOG(ERR, "Fail to set qinq insertion - %d", ret);
1224
1225         return ret;
1226 }
1227
1228 /* Enable IRQ0 */
1229 static void
1230 ice_pf_enable_irq0(struct ice_hw *hw)
1231 {
1232         /* reset the registers */
1233         ICE_WRITE_REG(hw, PFINT_OICR_ENA, 0);
1234         ICE_READ_REG(hw, PFINT_OICR);
1235
1236 #ifdef ICE_LSE_SPT
1237         ICE_WRITE_REG(hw, PFINT_OICR_ENA,
1238                       (uint32_t)(PFINT_OICR_ENA_INT_ENA_M &
1239                                  (~PFINT_OICR_LINK_STAT_CHANGE_M)));
1240
1241         ICE_WRITE_REG(hw, PFINT_OICR_CTL,
1242                       (0 & PFINT_OICR_CTL_MSIX_INDX_M) |
1243                       ((0 << PFINT_OICR_CTL_ITR_INDX_S) &
1244                        PFINT_OICR_CTL_ITR_INDX_M) |
1245                       PFINT_OICR_CTL_CAUSE_ENA_M);
1246
1247         ICE_WRITE_REG(hw, PFINT_FW_CTL,
1248                       (0 & PFINT_FW_CTL_MSIX_INDX_M) |
1249                       ((0 << PFINT_FW_CTL_ITR_INDX_S) &
1250                        PFINT_FW_CTL_ITR_INDX_M) |
1251                       PFINT_FW_CTL_CAUSE_ENA_M);
1252 #else
1253         ICE_WRITE_REG(hw, PFINT_OICR_ENA, PFINT_OICR_ENA_INT_ENA_M);
1254 #endif
1255
1256         ICE_WRITE_REG(hw, GLINT_DYN_CTL(0),
1257                       GLINT_DYN_CTL_INTENA_M |
1258                       GLINT_DYN_CTL_CLEARPBA_M |
1259                       GLINT_DYN_CTL_ITR_INDX_M);
1260
1261         ice_flush(hw);
1262 }
1263
1264 /* Disable IRQ0 */
1265 static void
1266 ice_pf_disable_irq0(struct ice_hw *hw)
1267 {
1268         /* Disable all interrupt types */
1269         ICE_WRITE_REG(hw, GLINT_DYN_CTL(0), GLINT_DYN_CTL_WB_ON_ITR_M);
1270         ice_flush(hw);
1271 }
1272
1273 #ifdef ICE_LSE_SPT
1274 static void
1275 ice_handle_aq_msg(struct rte_eth_dev *dev)
1276 {
1277         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1278         struct ice_ctl_q_info *cq = &hw->adminq;
1279         struct ice_rq_event_info event;
1280         uint16_t pending, opcode;
1281         int ret;
1282
1283         event.buf_len = ICE_AQ_MAX_BUF_LEN;
1284         event.msg_buf = rte_zmalloc(NULL, event.buf_len, 0);
1285         if (!event.msg_buf) {
1286                 PMD_DRV_LOG(ERR, "Failed to allocate mem");
1287                 return;
1288         }
1289
1290         pending = 1;
1291         while (pending) {
1292                 ret = ice_clean_rq_elem(hw, cq, &event, &pending);
1293
1294                 if (ret != ICE_SUCCESS) {
1295                         PMD_DRV_LOG(INFO,
1296                                     "Failed to read msg from AdminQ, "
1297                                     "adminq_err: %u",
1298                                     hw->adminq.sq_last_status);
1299                         break;
1300                 }
1301                 opcode = rte_le_to_cpu_16(event.desc.opcode);
1302
1303                 switch (opcode) {
1304                 case ice_aqc_opc_get_link_status:
1305                         ret = ice_link_update(dev, 0);
1306                         if (!ret)
1307                                 _rte_eth_dev_callback_process
1308                                         (dev, RTE_ETH_EVENT_INTR_LSC, NULL);
1309                         break;
1310                 default:
1311                         PMD_DRV_LOG(DEBUG, "Request %u is not supported yet",
1312                                     opcode);
1313                         break;
1314                 }
1315         }
1316         rte_free(event.msg_buf);
1317 }
1318 #endif
1319
1320 /**
1321  * Interrupt handler triggered by NIC for handling
1322  * specific interrupt.
1323  *
1324  * @param handle
1325  *  Pointer to interrupt handle.
1326  * @param param
1327  *  The address of parameter (struct rte_eth_dev *) regsitered before.
1328  *
1329  * @return
1330  *  void
1331  */
1332 static void
1333 ice_interrupt_handler(void *param)
1334 {
1335         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1336         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1337         uint32_t oicr;
1338         uint32_t reg;
1339         uint8_t pf_num;
1340         uint8_t event;
1341         uint16_t queue;
1342         int ret;
1343 #ifdef ICE_LSE_SPT
1344         uint32_t int_fw_ctl;
1345 #endif
1346
1347         /* Disable interrupt */
1348         ice_pf_disable_irq0(hw);
1349
1350         /* read out interrupt causes */
1351         oicr = ICE_READ_REG(hw, PFINT_OICR);
1352 #ifdef ICE_LSE_SPT
1353         int_fw_ctl = ICE_READ_REG(hw, PFINT_FW_CTL);
1354 #endif
1355
1356         /* No interrupt event indicated */
1357         if (!(oicr & PFINT_OICR_INTEVENT_M)) {
1358                 PMD_DRV_LOG(INFO, "No interrupt event");
1359                 goto done;
1360         }
1361
1362 #ifdef ICE_LSE_SPT
1363         if (int_fw_ctl & PFINT_FW_CTL_INTEVENT_M) {
1364                 PMD_DRV_LOG(INFO, "FW_CTL: link state change event");
1365                 ice_handle_aq_msg(dev);
1366         }
1367 #else
1368         if (oicr & PFINT_OICR_LINK_STAT_CHANGE_M) {
1369                 PMD_DRV_LOG(INFO, "OICR: link state change event");
1370                 ret = ice_link_update(dev, 0);
1371                 if (!ret)
1372                         _rte_eth_dev_callback_process
1373                                 (dev, RTE_ETH_EVENT_INTR_LSC, NULL);
1374         }
1375 #endif
1376
1377         if (oicr & PFINT_OICR_MAL_DETECT_M) {
1378                 PMD_DRV_LOG(WARNING, "OICR: MDD event");
1379                 reg = ICE_READ_REG(hw, GL_MDET_TX_PQM);
1380                 if (reg & GL_MDET_TX_PQM_VALID_M) {
1381                         pf_num = (reg & GL_MDET_TX_PQM_PF_NUM_M) >>
1382                                  GL_MDET_TX_PQM_PF_NUM_S;
1383                         event = (reg & GL_MDET_TX_PQM_MAL_TYPE_M) >>
1384                                 GL_MDET_TX_PQM_MAL_TYPE_S;
1385                         queue = (reg & GL_MDET_TX_PQM_QNUM_M) >>
1386                                 GL_MDET_TX_PQM_QNUM_S;
1387
1388                         PMD_DRV_LOG(WARNING, "Malicious Driver Detection event "
1389                                     "%d by PQM on TX queue %d PF# %d",
1390                                     event, queue, pf_num);
1391                 }
1392
1393                 reg = ICE_READ_REG(hw, GL_MDET_TX_TCLAN);
1394                 if (reg & GL_MDET_TX_TCLAN_VALID_M) {
1395                         pf_num = (reg & GL_MDET_TX_TCLAN_PF_NUM_M) >>
1396                                  GL_MDET_TX_TCLAN_PF_NUM_S;
1397                         event = (reg & GL_MDET_TX_TCLAN_MAL_TYPE_M) >>
1398                                 GL_MDET_TX_TCLAN_MAL_TYPE_S;
1399                         queue = (reg & GL_MDET_TX_TCLAN_QNUM_M) >>
1400                                 GL_MDET_TX_TCLAN_QNUM_S;
1401
1402                         PMD_DRV_LOG(WARNING, "Malicious Driver Detection event "
1403                                     "%d by TCLAN on TX queue %d PF# %d",
1404                                     event, queue, pf_num);
1405                 }
1406         }
1407 done:
1408         /* Enable interrupt */
1409         ice_pf_enable_irq0(hw);
1410         rte_intr_ack(dev->intr_handle);
1411 }
1412
1413 static void
1414 ice_init_proto_xtr(struct rte_eth_dev *dev)
1415 {
1416         struct ice_adapter *ad =
1417                         ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1418         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1419         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1420         const struct proto_xtr_ol_flag *ol_flag;
1421         bool proto_xtr_enable = false;
1422         int offset;
1423         uint16_t i;
1424
1425         if (!ice_proto_xtr_support(hw)) {
1426                 PMD_DRV_LOG(NOTICE, "Protocol extraction is not supported");
1427                 return;
1428         }
1429
1430         pf->proto_xtr = rte_zmalloc(NULL, pf->lan_nb_qps, 0);
1431         if (unlikely(pf->proto_xtr == NULL)) {
1432                 PMD_DRV_LOG(ERR, "No memory for setting up protocol extraction table");
1433                 return;
1434         }
1435
1436         for (i = 0; i < pf->lan_nb_qps; i++) {
1437                 pf->proto_xtr[i] = ad->devargs.proto_xtr[i] != PROTO_XTR_NONE ?
1438                                    ad->devargs.proto_xtr[i] :
1439                                    ad->devargs.proto_xtr_dflt;
1440
1441                 if (pf->proto_xtr[i] != PROTO_XTR_NONE) {
1442                         uint8_t type = pf->proto_xtr[i];
1443
1444                         ice_proto_xtr_ol_flag_params[type].required = true;
1445                         proto_xtr_enable = true;
1446                 }
1447         }
1448
1449         if (likely(!proto_xtr_enable))
1450                 return;
1451
1452         offset = rte_mbuf_dynfield_register(&ice_proto_xtr_metadata_param);
1453         if (unlikely(offset == -1)) {
1454                 PMD_DRV_LOG(ERR,
1455                             "Protocol extraction metadata is disabled in mbuf with error %d",
1456                             -rte_errno);
1457                 return;
1458         }
1459
1460         PMD_DRV_LOG(DEBUG,
1461                     "Protocol extraction metadata offset in mbuf is : %d",
1462                     offset);
1463         rte_net_ice_dynfield_proto_xtr_metadata_offs = offset;
1464
1465         for (i = 0; i < RTE_DIM(ice_proto_xtr_ol_flag_params); i++) {
1466                 ol_flag = &ice_proto_xtr_ol_flag_params[i];
1467
1468                 if (!ol_flag->required)
1469                         continue;
1470
1471                 offset = rte_mbuf_dynflag_register(&ol_flag->param);
1472                 if (unlikely(offset == -1)) {
1473                         PMD_DRV_LOG(ERR,
1474                                     "Protocol extraction offload '%s' failed to register with error %d",
1475                                     ol_flag->param.name, -rte_errno);
1476
1477                         rte_net_ice_dynfield_proto_xtr_metadata_offs = -1;
1478                         break;
1479                 }
1480
1481                 PMD_DRV_LOG(DEBUG,
1482                             "Protocol extraction offload '%s' offset in mbuf is : %d",
1483                             ol_flag->param.name, offset);
1484                 *ol_flag->ol_flag = 1ULL << offset;
1485         }
1486 }
1487
1488 /*  Initialize SW parameters of PF */
1489 static int
1490 ice_pf_sw_init(struct rte_eth_dev *dev)
1491 {
1492         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1493         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1494
1495         pf->lan_nb_qp_max =
1496                 (uint16_t)RTE_MIN(hw->func_caps.common_cap.num_txq,
1497                                   hw->func_caps.common_cap.num_rxq);
1498
1499         pf->lan_nb_qps = pf->lan_nb_qp_max;
1500
1501         ice_init_proto_xtr(dev);
1502
1503         if (hw->func_caps.fd_fltr_guar > 0 ||
1504             hw->func_caps.fd_fltr_best_effort > 0) {
1505                 pf->flags |= ICE_FLAG_FDIR;
1506                 pf->fdir_nb_qps = ICE_DEFAULT_QP_NUM_FDIR;
1507                 pf->lan_nb_qps = pf->lan_nb_qp_max - pf->fdir_nb_qps;
1508         } else {
1509                 pf->fdir_nb_qps = 0;
1510         }
1511         pf->fdir_qp_offset = 0;
1512
1513         return 0;
1514 }
1515
1516 struct ice_vsi *
1517 ice_setup_vsi(struct ice_pf *pf, enum ice_vsi_type type)
1518 {
1519         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1520         struct ice_vsi *vsi = NULL;
1521         struct ice_vsi_ctx vsi_ctx;
1522         int ret;
1523         struct rte_ether_addr broadcast = {
1524                 .addr_bytes = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff} };
1525         struct rte_ether_addr mac_addr;
1526         uint16_t max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
1527         uint8_t tc_bitmap = 0x1;
1528         uint16_t cfg;
1529
1530         /* hw->num_lports = 1 in NIC mode */
1531         vsi = rte_zmalloc(NULL, sizeof(struct ice_vsi), 0);
1532         if (!vsi)
1533                 return NULL;
1534
1535         vsi->idx = pf->next_vsi_idx;
1536         pf->next_vsi_idx++;
1537         vsi->type = type;
1538         vsi->adapter = ICE_PF_TO_ADAPTER(pf);
1539         vsi->max_macaddrs = ICE_NUM_MACADDR_MAX;
1540         vsi->vlan_anti_spoof_on = 0;
1541         vsi->vlan_filter_on = 1;
1542         TAILQ_INIT(&vsi->mac_list);
1543         TAILQ_INIT(&vsi->vlan_list);
1544
1545         /* Be sync with ETH_RSS_RETA_SIZE_x maximum value definition */
1546         pf->hash_lut_size = hw->func_caps.common_cap.rss_table_size >
1547                         ETH_RSS_RETA_SIZE_512 ? ETH_RSS_RETA_SIZE_512 :
1548                         hw->func_caps.common_cap.rss_table_size;
1549         pf->flags |= ICE_FLAG_RSS_AQ_CAPABLE;
1550
1551         memset(&vsi_ctx, 0, sizeof(vsi_ctx));
1552         switch (type) {
1553         case ICE_VSI_PF:
1554                 vsi->nb_qps = pf->lan_nb_qps;
1555                 vsi->base_queue = 1;
1556                 ice_vsi_config_default_rss(&vsi_ctx.info);
1557                 vsi_ctx.alloc_from_pool = true;
1558                 vsi_ctx.flags = ICE_AQ_VSI_TYPE_PF;
1559                 /* switch_id is queried by get_switch_config aq, which is done
1560                  * by ice_init_hw
1561                  */
1562                 vsi_ctx.info.sw_id = hw->port_info->sw_id;
1563                 vsi_ctx.info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
1564                 /* Allow all untagged or tagged packets */
1565                 vsi_ctx.info.vlan_flags = ICE_AQ_VSI_VLAN_MODE_ALL;
1566                 vsi_ctx.info.vlan_flags |= ICE_AQ_VSI_VLAN_EMOD_NOTHING;
1567                 vsi_ctx.info.q_opt_rss = ICE_AQ_VSI_Q_OPT_RSS_LUT_PF |
1568                                          ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
1569
1570                 /* FDIR */
1571                 cfg = ICE_AQ_VSI_PROP_SECURITY_VALID |
1572                         ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
1573                 vsi_ctx.info.valid_sections |= rte_cpu_to_le_16(cfg);
1574                 cfg = ICE_AQ_VSI_FD_ENABLE | ICE_AQ_VSI_FD_PROG_ENABLE;
1575                 vsi_ctx.info.fd_options = rte_cpu_to_le_16(cfg);
1576                 vsi_ctx.info.max_fd_fltr_dedicated =
1577                         rte_cpu_to_le_16(hw->func_caps.fd_fltr_guar);
1578                 vsi_ctx.info.max_fd_fltr_shared =
1579                         rte_cpu_to_le_16(hw->func_caps.fd_fltr_best_effort);
1580
1581                 /* Enable VLAN/UP trip */
1582                 ret = ice_vsi_config_tc_queue_mapping(vsi,
1583                                                       &vsi_ctx.info,
1584                                                       ICE_DEFAULT_TCMAP);
1585                 if (ret) {
1586                         PMD_INIT_LOG(ERR,
1587                                      "tc queue mapping with vsi failed, "
1588                                      "err = %d",
1589                                      ret);
1590                         goto fail_mem;
1591                 }
1592
1593                 break;
1594         case ICE_VSI_CTRL:
1595                 vsi->nb_qps = pf->fdir_nb_qps;
1596                 vsi->base_queue = ICE_FDIR_QUEUE_ID;
1597                 vsi_ctx.alloc_from_pool = true;
1598                 vsi_ctx.flags = ICE_AQ_VSI_TYPE_PF;
1599
1600                 cfg = ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
1601                 vsi_ctx.info.valid_sections |= rte_cpu_to_le_16(cfg);
1602                 cfg = ICE_AQ_VSI_FD_ENABLE | ICE_AQ_VSI_FD_PROG_ENABLE;
1603                 vsi_ctx.info.fd_options = rte_cpu_to_le_16(cfg);
1604                 vsi_ctx.info.sw_id = hw->port_info->sw_id;
1605                 ret = ice_vsi_config_tc_queue_mapping(vsi,
1606                                                       &vsi_ctx.info,
1607                                                       ICE_DEFAULT_TCMAP);
1608                 if (ret) {
1609                         PMD_INIT_LOG(ERR,
1610                                      "tc queue mapping with vsi failed, "
1611                                      "err = %d",
1612                                      ret);
1613                         goto fail_mem;
1614                 }
1615                 break;
1616         default:
1617                 /* for other types of VSI */
1618                 PMD_INIT_LOG(ERR, "other types of VSI not supported");
1619                 goto fail_mem;
1620         }
1621
1622         /* VF has MSIX interrupt in VF range, don't allocate here */
1623         if (type == ICE_VSI_PF) {
1624                 ret = ice_res_pool_alloc(&pf->msix_pool,
1625                                          RTE_MIN(vsi->nb_qps,
1626                                                  RTE_MAX_RXTX_INTR_VEC_ID));
1627                 if (ret < 0) {
1628                         PMD_INIT_LOG(ERR, "VSI MAIN %d get heap failed %d",
1629                                      vsi->vsi_id, ret);
1630                 }
1631                 vsi->msix_intr = ret;
1632                 vsi->nb_msix = RTE_MIN(vsi->nb_qps, RTE_MAX_RXTX_INTR_VEC_ID);
1633         } else if (type == ICE_VSI_CTRL) {
1634                 ret = ice_res_pool_alloc(&pf->msix_pool, 1);
1635                 if (ret < 0) {
1636                         PMD_DRV_LOG(ERR, "VSI %d get heap failed %d",
1637                                     vsi->vsi_id, ret);
1638                 }
1639                 vsi->msix_intr = ret;
1640                 vsi->nb_msix = 1;
1641         } else {
1642                 vsi->msix_intr = 0;
1643                 vsi->nb_msix = 0;
1644         }
1645         ret = ice_add_vsi(hw, vsi->idx, &vsi_ctx, NULL);
1646         if (ret != ICE_SUCCESS) {
1647                 PMD_INIT_LOG(ERR, "add vsi failed, err = %d", ret);
1648                 goto fail_mem;
1649         }
1650         /* store vsi information is SW structure */
1651         vsi->vsi_id = vsi_ctx.vsi_num;
1652         vsi->info = vsi_ctx.info;
1653         pf->vsis_allocated = vsi_ctx.vsis_allocd;
1654         pf->vsis_unallocated = vsi_ctx.vsis_unallocated;
1655
1656         if (type == ICE_VSI_PF) {
1657                 /* MAC configuration */
1658                 rte_memcpy(pf->dev_addr.addr_bytes,
1659                            hw->port_info->mac.perm_addr,
1660                            ETH_ADDR_LEN);
1661
1662                 rte_memcpy(&mac_addr, &pf->dev_addr, RTE_ETHER_ADDR_LEN);
1663                 ret = ice_add_mac_filter(vsi, &mac_addr);
1664                 if (ret != ICE_SUCCESS)
1665                         PMD_INIT_LOG(ERR, "Failed to add dflt MAC filter");
1666
1667                 rte_memcpy(&mac_addr, &broadcast, RTE_ETHER_ADDR_LEN);
1668                 ret = ice_add_mac_filter(vsi, &mac_addr);
1669                 if (ret != ICE_SUCCESS)
1670                         PMD_INIT_LOG(ERR, "Failed to add MAC filter");
1671         }
1672
1673         /* At the beginning, only TC0. */
1674         /* What we need here is the maximam number of the TX queues.
1675          * Currently vsi->nb_qps means it.
1676          * Correct it if any change.
1677          */
1678         max_txqs[0] = vsi->nb_qps;
1679         ret = ice_cfg_vsi_lan(hw->port_info, vsi->idx,
1680                               tc_bitmap, max_txqs);
1681         if (ret != ICE_SUCCESS)
1682                 PMD_INIT_LOG(ERR, "Failed to config vsi sched");
1683
1684         return vsi;
1685 fail_mem:
1686         rte_free(vsi);
1687         pf->next_vsi_idx--;
1688         return NULL;
1689 }
1690
1691 static int
1692 ice_send_driver_ver(struct ice_hw *hw)
1693 {
1694         struct ice_driver_ver dv;
1695
1696         /* we don't have driver version use 0 for dummy */
1697         dv.major_ver = 0;
1698         dv.minor_ver = 0;
1699         dv.build_ver = 0;
1700         dv.subbuild_ver = 0;
1701         strncpy((char *)dv.driver_string, "dpdk", sizeof(dv.driver_string));
1702
1703         return ice_aq_send_driver_ver(hw, &dv, NULL);
1704 }
1705
1706 static int
1707 ice_pf_setup(struct ice_pf *pf)
1708 {
1709         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1710         struct ice_vsi *vsi;
1711         uint16_t unused;
1712
1713         /* Clear all stats counters */
1714         pf->offset_loaded = FALSE;
1715         memset(&pf->stats, 0, sizeof(struct ice_hw_port_stats));
1716         memset(&pf->stats_offset, 0, sizeof(struct ice_hw_port_stats));
1717         memset(&pf->internal_stats, 0, sizeof(struct ice_eth_stats));
1718         memset(&pf->internal_stats_offset, 0, sizeof(struct ice_eth_stats));
1719
1720         /* force guaranteed filter pool for PF */
1721         ice_alloc_fd_guar_item(hw, &unused,
1722                                hw->func_caps.fd_fltr_guar);
1723         /* force shared filter pool for PF */
1724         ice_alloc_fd_shrd_item(hw, &unused,
1725                                hw->func_caps.fd_fltr_best_effort);
1726
1727         vsi = ice_setup_vsi(pf, ICE_VSI_PF);
1728         if (!vsi) {
1729                 PMD_INIT_LOG(ERR, "Failed to add vsi for PF");
1730                 return -EINVAL;
1731         }
1732
1733         pf->main_vsi = vsi;
1734
1735         return 0;
1736 }
1737
1738 /* PCIe configuration space setting */
1739 #define PCI_CFG_SPACE_SIZE          256
1740 #define PCI_CFG_SPACE_EXP_SIZE      4096
1741 #define PCI_EXT_CAP_ID(header)      (int)((header) & 0x0000ffff)
1742 #define PCI_EXT_CAP_NEXT(header)    (((header) >> 20) & 0xffc)
1743 #define PCI_EXT_CAP_ID_DSN          0x03
1744
1745 static int
1746 ice_pci_find_next_ext_capability(struct rte_pci_device *dev, int cap)
1747 {
1748         uint32_t header;
1749         int ttl;
1750         int pos = PCI_CFG_SPACE_SIZE;
1751
1752         /* minimum 8 bytes per capability */
1753         ttl = (PCI_CFG_SPACE_EXP_SIZE - PCI_CFG_SPACE_SIZE) / 8;
1754
1755         if (rte_pci_read_config(dev, &header, 4, pos) < 0) {
1756                 PMD_INIT_LOG(ERR, "ice error reading extended capabilities\n");
1757                 return -1;
1758         }
1759
1760         /*
1761          * If we have no capabilities, this is indicated by cap ID,
1762          * cap version and next pointer all being 0.
1763          */
1764         if (header == 0)
1765                 return 0;
1766
1767         while (ttl-- > 0) {
1768                 if (PCI_EXT_CAP_ID(header) == cap)
1769                         return pos;
1770
1771                 pos = PCI_EXT_CAP_NEXT(header);
1772
1773                 if (pos < PCI_CFG_SPACE_SIZE)
1774                         break;
1775
1776                 if (rte_pci_read_config(dev, &header, 4, pos) < 0) {
1777                         PMD_INIT_LOG(ERR, "ice error reading extended capabilities\n");
1778                         return -1;
1779                 }
1780         }
1781
1782         return 0;
1783 }
1784
1785 /*
1786  * Extract device serial number from PCIe Configuration Space and
1787  * determine the pkg file path according to the DSN.
1788  */
1789 static int
1790 ice_pkg_file_search_path(struct rte_pci_device *pci_dev, char *pkg_file)
1791 {
1792         int pos;
1793         char opt_ddp_filename[ICE_MAX_PKG_FILENAME_SIZE];
1794         uint32_t dsn_low, dsn_high;
1795         memset(opt_ddp_filename, 0, ICE_MAX_PKG_FILENAME_SIZE);
1796
1797         pos = ice_pci_find_next_ext_capability(pci_dev, PCI_EXT_CAP_ID_DSN);
1798
1799         if (pos) {
1800                 rte_pci_read_config(pci_dev, &dsn_low, 4, pos + 4);
1801                 rte_pci_read_config(pci_dev, &dsn_high, 4, pos + 8);
1802                 snprintf(opt_ddp_filename, ICE_MAX_PKG_FILENAME_SIZE,
1803                          "ice-%08x%08x.pkg", dsn_high, dsn_low);
1804         } else {
1805                 PMD_INIT_LOG(ERR, "Failed to read device serial number\n");
1806                 goto fail_dsn;
1807         }
1808
1809         strncpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_UPDATES,
1810                 ICE_MAX_PKG_FILENAME_SIZE);
1811         if (!access(strcat(pkg_file, opt_ddp_filename), 0))
1812                 return 0;
1813
1814         strncpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_DEFAULT,
1815                 ICE_MAX_PKG_FILENAME_SIZE);
1816         if (!access(strcat(pkg_file, opt_ddp_filename), 0))
1817                 return 0;
1818
1819 fail_dsn:
1820         strncpy(pkg_file, ICE_PKG_FILE_UPDATES, ICE_MAX_PKG_FILENAME_SIZE);
1821         if (!access(pkg_file, 0))
1822                 return 0;
1823         strncpy(pkg_file, ICE_PKG_FILE_DEFAULT, ICE_MAX_PKG_FILENAME_SIZE);
1824         return 0;
1825 }
1826
1827 static enum ice_pkg_type
1828 ice_load_pkg_type(struct ice_hw *hw)
1829 {
1830         enum ice_pkg_type package_type;
1831
1832         /* store the activated package type (OS default or Comms) */
1833         if (!strncmp((char *)hw->active_pkg_name, ICE_OS_DEFAULT_PKG_NAME,
1834                 ICE_PKG_NAME_SIZE))
1835                 package_type = ICE_PKG_TYPE_OS_DEFAULT;
1836         else if (!strncmp((char *)hw->active_pkg_name, ICE_COMMS_PKG_NAME,
1837                 ICE_PKG_NAME_SIZE))
1838                 package_type = ICE_PKG_TYPE_COMMS;
1839         else
1840                 package_type = ICE_PKG_TYPE_UNKNOWN;
1841
1842         PMD_INIT_LOG(NOTICE, "Active package is: %d.%d.%d.%d, %s",
1843                 hw->active_pkg_ver.major, hw->active_pkg_ver.minor,
1844                 hw->active_pkg_ver.update, hw->active_pkg_ver.draft,
1845                 hw->active_pkg_name);
1846
1847         return package_type;
1848 }
1849
1850 static int ice_load_pkg(struct rte_eth_dev *dev)
1851 {
1852         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1853         char pkg_file[ICE_MAX_PKG_FILENAME_SIZE];
1854         int err;
1855         uint8_t *buf;
1856         int buf_len;
1857         FILE *file;
1858         struct stat fstat;
1859         struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
1860         struct ice_adapter *ad =
1861                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1862
1863         ice_pkg_file_search_path(pci_dev, pkg_file);
1864
1865         file = fopen(pkg_file, "rb");
1866         if (!file)  {
1867                 PMD_INIT_LOG(ERR, "failed to open file: %s\n", pkg_file);
1868                 return -1;
1869         }
1870
1871         err = stat(pkg_file, &fstat);
1872         if (err) {
1873                 PMD_INIT_LOG(ERR, "failed to get file stats\n");
1874                 fclose(file);
1875                 return err;
1876         }
1877
1878         buf_len = fstat.st_size;
1879         buf = rte_malloc(NULL, buf_len, 0);
1880
1881         if (!buf) {
1882                 PMD_INIT_LOG(ERR, "failed to allocate buf of size %d for package\n",
1883                                 buf_len);
1884                 fclose(file);
1885                 return -1;
1886         }
1887
1888         err = fread(buf, buf_len, 1, file);
1889         if (err != 1) {
1890                 PMD_INIT_LOG(ERR, "failed to read package data\n");
1891                 fclose(file);
1892                 err = -1;
1893                 goto fail_exit;
1894         }
1895
1896         fclose(file);
1897
1898         err = ice_copy_and_init_pkg(hw, buf, buf_len);
1899         if (err) {
1900                 PMD_INIT_LOG(ERR, "ice_copy_and_init_hw failed: %d\n", err);
1901                 goto fail_exit;
1902         }
1903
1904         /* store the loaded pkg type info */
1905         ad->active_pkg_type = ice_load_pkg_type(hw);
1906
1907         err = ice_init_hw_tbls(hw);
1908         if (err) {
1909                 PMD_INIT_LOG(ERR, "ice_init_hw_tbls failed: %d\n", err);
1910                 goto fail_init_tbls;
1911         }
1912
1913         return 0;
1914
1915 fail_init_tbls:
1916         rte_free(hw->pkg_copy);
1917 fail_exit:
1918         rte_free(buf);
1919         return err;
1920 }
1921
1922 static void
1923 ice_base_queue_get(struct ice_pf *pf)
1924 {
1925         uint32_t reg;
1926         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1927
1928         reg = ICE_READ_REG(hw, PFLAN_RX_QALLOC);
1929         if (reg & PFLAN_RX_QALLOC_VALID_M) {
1930                 pf->base_queue = reg & PFLAN_RX_QALLOC_FIRSTQ_M;
1931         } else {
1932                 PMD_INIT_LOG(WARNING, "Failed to get Rx base queue"
1933                                         " index");
1934         }
1935 }
1936
1937 static int
1938 parse_bool(const char *key, const char *value, void *args)
1939 {
1940         int *i = (int *)args;
1941         char *end;
1942         int num;
1943
1944         num = strtoul(value, &end, 10);
1945
1946         if (num != 0 && num != 1) {
1947                 PMD_DRV_LOG(WARNING, "invalid value:\"%s\" for key:\"%s\", "
1948                         "value must be 0 or 1",
1949                         value, key);
1950                 return -1;
1951         }
1952
1953         *i = num;
1954         return 0;
1955 }
1956
1957 static int ice_parse_devargs(struct rte_eth_dev *dev)
1958 {
1959         struct ice_adapter *ad =
1960                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1961         struct rte_devargs *devargs = dev->device->devargs;
1962         struct rte_kvargs *kvlist;
1963         int ret;
1964
1965         if (devargs == NULL)
1966                 return 0;
1967
1968         kvlist = rte_kvargs_parse(devargs->args, ice_valid_args);
1969         if (kvlist == NULL) {
1970                 PMD_INIT_LOG(ERR, "Invalid kvargs key\n");
1971                 return -EINVAL;
1972         }
1973
1974         ad->devargs.proto_xtr_dflt = PROTO_XTR_NONE;
1975         memset(ad->devargs.proto_xtr, PROTO_XTR_NONE,
1976                sizeof(ad->devargs.proto_xtr));
1977
1978         ret = rte_kvargs_process(kvlist, ICE_PROTO_XTR_ARG,
1979                                  &handle_proto_xtr_arg, &ad->devargs);
1980         if (ret)
1981                 goto bail;
1982
1983         ret = rte_kvargs_process(kvlist, ICE_SAFE_MODE_SUPPORT_ARG,
1984                                  &parse_bool, &ad->devargs.safe_mode_support);
1985         if (ret)
1986                 goto bail;
1987
1988         ret = rte_kvargs_process(kvlist, ICE_PIPELINE_MODE_SUPPORT_ARG,
1989                                  &parse_bool, &ad->devargs.pipe_mode_support);
1990
1991 bail:
1992         rte_kvargs_free(kvlist);
1993         return ret;
1994 }
1995
1996 /* Forward LLDP packets to default VSI by set switch rules */
1997 static int
1998 ice_vsi_config_sw_lldp(struct ice_vsi *vsi,  bool on)
1999 {
2000         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2001         struct ice_fltr_list_entry *s_list_itr = NULL;
2002         struct LIST_HEAD_TYPE list_head;
2003         int ret = 0;
2004
2005         INIT_LIST_HEAD(&list_head);
2006
2007         s_list_itr = (struct ice_fltr_list_entry *)
2008                         ice_malloc(hw, sizeof(*s_list_itr));
2009         if (!s_list_itr)
2010                 return -ENOMEM;
2011         s_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_ETHERTYPE;
2012         s_list_itr->fltr_info.vsi_handle = vsi->idx;
2013         s_list_itr->fltr_info.l_data.ethertype_mac.ethertype =
2014                         RTE_ETHER_TYPE_LLDP;
2015         s_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
2016         s_list_itr->fltr_info.flag = ICE_FLTR_RX;
2017         s_list_itr->fltr_info.src_id = ICE_SRC_ID_LPORT;
2018         LIST_ADD(&s_list_itr->list_entry, &list_head);
2019         if (on)
2020                 ret = ice_add_eth_mac(hw, &list_head);
2021         else
2022                 ret = ice_remove_eth_mac(hw, &list_head);
2023
2024         rte_free(s_list_itr);
2025         return ret;
2026 }
2027
2028 static enum ice_status
2029 ice_get_hw_res(struct ice_hw *hw, uint16_t res_type,
2030                 uint16_t num, uint16_t desc_id,
2031                 uint16_t *prof_buf, uint16_t *num_prof)
2032 {
2033         struct ice_aqc_get_allocd_res_desc_resp *resp_buf;
2034         int ret;
2035         uint16_t buf_len;
2036         bool res_shared = 1;
2037         struct ice_aq_desc aq_desc;
2038         struct ice_sq_cd *cd = NULL;
2039         struct ice_aqc_get_allocd_res_desc *cmd =
2040                         &aq_desc.params.get_res_desc;
2041
2042         buf_len = sizeof(resp_buf->elem) * num;
2043         resp_buf = ice_malloc(hw, buf_len);
2044         if (!resp_buf)
2045                 return -ENOMEM;
2046
2047         ice_fill_dflt_direct_cmd_desc(&aq_desc,
2048                         ice_aqc_opc_get_allocd_res_desc);
2049
2050         cmd->ops.cmd.res = CPU_TO_LE16(((res_type << ICE_AQC_RES_TYPE_S) &
2051                                 ICE_AQC_RES_TYPE_M) | (res_shared ?
2052                                 ICE_AQC_RES_TYPE_FLAG_SHARED : 0));
2053         cmd->ops.cmd.first_desc = CPU_TO_LE16(desc_id);
2054
2055         ret = ice_aq_send_cmd(hw, &aq_desc, resp_buf, buf_len, cd);
2056         if (!ret)
2057                 *num_prof = LE16_TO_CPU(cmd->ops.resp.num_desc);
2058         else
2059                 goto exit;
2060
2061         ice_memcpy(prof_buf, resp_buf->elem, sizeof(resp_buf->elem) *
2062                         (*num_prof), ICE_NONDMA_TO_NONDMA);
2063
2064 exit:
2065         rte_free(resp_buf);
2066         return ret;
2067 }
2068 static int
2069 ice_cleanup_resource(struct ice_hw *hw, uint16_t res_type)
2070 {
2071         int ret;
2072         uint16_t prof_id;
2073         uint16_t prof_buf[ICE_MAX_RES_DESC_NUM];
2074         uint16_t first_desc = 1;
2075         uint16_t num_prof = 0;
2076
2077         ret = ice_get_hw_res(hw, res_type, ICE_MAX_RES_DESC_NUM,
2078                         first_desc, prof_buf, &num_prof);
2079         if (ret) {
2080                 PMD_INIT_LOG(ERR, "Failed to get fxp resource");
2081                 return ret;
2082         }
2083
2084         for (prof_id = 0; prof_id < num_prof; prof_id++) {
2085                 ret = ice_free_hw_res(hw, res_type, 1, &prof_buf[prof_id]);
2086                 if (ret) {
2087                         PMD_INIT_LOG(ERR, "Failed to free fxp resource");
2088                         return ret;
2089                 }
2090         }
2091         return 0;
2092 }
2093
2094 static int
2095 ice_reset_fxp_resource(struct ice_hw *hw)
2096 {
2097         int ret;
2098
2099         ret = ice_cleanup_resource(hw, ICE_AQC_RES_TYPE_FD_PROF_BLDR_PROFID);
2100         if (ret) {
2101                 PMD_INIT_LOG(ERR, "Failed to clearup fdir resource");
2102                 return ret;
2103         }
2104
2105         ret = ice_cleanup_resource(hw, ICE_AQC_RES_TYPE_HASH_PROF_BLDR_PROFID);
2106         if (ret) {
2107                 PMD_INIT_LOG(ERR, "Failed to clearup rss resource");
2108                 return ret;
2109         }
2110
2111         return 0;
2112 }
2113
2114 static int
2115 ice_dev_init(struct rte_eth_dev *dev)
2116 {
2117         struct rte_pci_device *pci_dev;
2118         struct rte_intr_handle *intr_handle;
2119         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2120         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2121         struct ice_adapter *ad =
2122                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2123         struct ice_vsi *vsi;
2124         int ret;
2125
2126         dev->dev_ops = &ice_eth_dev_ops;
2127         dev->rx_pkt_burst = ice_recv_pkts;
2128         dev->tx_pkt_burst = ice_xmit_pkts;
2129         dev->tx_pkt_prepare = ice_prep_pkts;
2130
2131         /* for secondary processes, we don't initialise any further as primary
2132          * has already done this work.
2133          */
2134         if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2135                 ice_set_rx_function(dev);
2136                 ice_set_tx_function(dev);
2137                 return 0;
2138         }
2139
2140         ice_set_default_ptype_table(dev);
2141         pci_dev = RTE_DEV_TO_PCI(dev->device);
2142         intr_handle = &pci_dev->intr_handle;
2143
2144         pf->adapter = ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2145         pf->adapter->eth_dev = dev;
2146         pf->dev_data = dev->data;
2147         hw->back = pf->adapter;
2148         hw->hw_addr = (uint8_t *)pci_dev->mem_resource[0].addr;
2149         hw->vendor_id = pci_dev->id.vendor_id;
2150         hw->device_id = pci_dev->id.device_id;
2151         hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
2152         hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
2153         hw->bus.device = pci_dev->addr.devid;
2154         hw->bus.func = pci_dev->addr.function;
2155
2156         ret = ice_parse_devargs(dev);
2157         if (ret) {
2158                 PMD_INIT_LOG(ERR, "Failed to parse devargs");
2159                 return -EINVAL;
2160         }
2161
2162         ice_init_controlq_parameter(hw);
2163
2164         ret = ice_init_hw(hw);
2165         if (ret) {
2166                 PMD_INIT_LOG(ERR, "Failed to initialize HW");
2167                 return -EINVAL;
2168         }
2169
2170         ret = ice_load_pkg(dev);
2171         if (ret) {
2172                 if (ad->devargs.safe_mode_support == 0) {
2173                         PMD_INIT_LOG(ERR, "Failed to load the DDP package,"
2174                                         "Use safe-mode-support=1 to enter Safe Mode");
2175                         return ret;
2176                 }
2177
2178                 PMD_INIT_LOG(WARNING, "Failed to load the DDP package,"
2179                                         "Entering Safe Mode");
2180                 ad->is_safe_mode = 1;
2181         }
2182
2183         PMD_INIT_LOG(INFO, "FW %d.%d.%05d API %d.%d",
2184                      hw->fw_maj_ver, hw->fw_min_ver, hw->fw_build,
2185                      hw->api_maj_ver, hw->api_min_ver);
2186
2187         ice_pf_sw_init(dev);
2188         ret = ice_init_mac_address(dev);
2189         if (ret) {
2190                 PMD_INIT_LOG(ERR, "Failed to initialize mac address");
2191                 goto err_init_mac;
2192         }
2193
2194         /* Pass the information to the rte_eth_dev_close() that it should also
2195          * release the private port resources.
2196          */
2197         dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
2198
2199         ret = ice_res_pool_init(&pf->msix_pool, 1,
2200                                 hw->func_caps.common_cap.num_msix_vectors - 1);
2201         if (ret) {
2202                 PMD_INIT_LOG(ERR, "Failed to init MSIX pool");
2203                 goto err_msix_pool_init;
2204         }
2205
2206         ret = ice_pf_setup(pf);
2207         if (ret) {
2208                 PMD_INIT_LOG(ERR, "Failed to setup PF");
2209                 goto err_pf_setup;
2210         }
2211
2212         ret = ice_send_driver_ver(hw);
2213         if (ret) {
2214                 PMD_INIT_LOG(ERR, "Failed to send driver version");
2215                 goto err_pf_setup;
2216         }
2217
2218         vsi = pf->main_vsi;
2219
2220         /* Disable double vlan by default */
2221         ice_vsi_config_double_vlan(vsi, FALSE);
2222
2223         ret = ice_aq_stop_lldp(hw, TRUE, FALSE, NULL);
2224         if (ret != ICE_SUCCESS)
2225                 PMD_INIT_LOG(DEBUG, "lldp has already stopped\n");
2226         ret = ice_init_dcb(hw, TRUE);
2227         if (ret != ICE_SUCCESS)
2228                 PMD_INIT_LOG(DEBUG, "Failed to init DCB\n");
2229         /* Forward LLDP packets to default VSI */
2230         ret = ice_vsi_config_sw_lldp(vsi, TRUE);
2231         if (ret != ICE_SUCCESS)
2232                 PMD_INIT_LOG(DEBUG, "Failed to cfg lldp\n");
2233         /* register callback func to eal lib */
2234         rte_intr_callback_register(intr_handle,
2235                                    ice_interrupt_handler, dev);
2236
2237         ice_pf_enable_irq0(hw);
2238
2239         /* enable uio intr after callback register */
2240         rte_intr_enable(intr_handle);
2241
2242         /* get base queue pairs index  in the device */
2243         ice_base_queue_get(pf);
2244
2245         ret = ice_flow_init(ad);
2246         if (ret) {
2247                 PMD_INIT_LOG(ERR, "Failed to initialize flow");
2248                 return ret;
2249         }
2250
2251         ret = ice_reset_fxp_resource(hw);
2252         if (ret) {
2253                 PMD_INIT_LOG(ERR, "Failed to reset fxp resource");
2254                 return ret;
2255         }
2256
2257         return 0;
2258
2259 err_pf_setup:
2260         ice_res_pool_destroy(&pf->msix_pool);
2261 err_msix_pool_init:
2262         rte_free(dev->data->mac_addrs);
2263         dev->data->mac_addrs = NULL;
2264 err_init_mac:
2265         ice_sched_cleanup_all(hw);
2266         rte_free(hw->port_info);
2267         ice_shutdown_all_ctrlq(hw);
2268         rte_free(pf->proto_xtr);
2269
2270         return ret;
2271 }
2272
2273 int
2274 ice_release_vsi(struct ice_vsi *vsi)
2275 {
2276         struct ice_hw *hw;
2277         struct ice_vsi_ctx vsi_ctx;
2278         enum ice_status ret;
2279
2280         if (!vsi)
2281                 return 0;
2282
2283         hw = ICE_VSI_TO_HW(vsi);
2284
2285         ice_remove_all_mac_vlan_filters(vsi);
2286
2287         memset(&vsi_ctx, 0, sizeof(vsi_ctx));
2288
2289         vsi_ctx.vsi_num = vsi->vsi_id;
2290         vsi_ctx.info = vsi->info;
2291         ret = ice_free_vsi(hw, vsi->idx, &vsi_ctx, false, NULL);
2292         if (ret != ICE_SUCCESS) {
2293                 PMD_INIT_LOG(ERR, "Failed to free vsi by aq, %u", vsi->vsi_id);
2294                 rte_free(vsi);
2295                 return -1;
2296         }
2297
2298         rte_free(vsi);
2299         return 0;
2300 }
2301
2302 static void
2303 ice_vsi_disable_queues_intr(struct ice_vsi *vsi)
2304 {
2305         struct rte_eth_dev *dev = vsi->adapter->eth_dev;
2306         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2307         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2308         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2309         uint16_t msix_intr, i;
2310
2311         /* disable interrupt and also clear all the exist config */
2312         for (i = 0; i < vsi->nb_qps; i++) {
2313                 ICE_WRITE_REG(hw, QINT_TQCTL(vsi->base_queue + i), 0);
2314                 ICE_WRITE_REG(hw, QINT_RQCTL(vsi->base_queue + i), 0);
2315                 rte_wmb();
2316         }
2317
2318         if (rte_intr_allow_others(intr_handle))
2319                 /* vfio-pci */
2320                 for (i = 0; i < vsi->nb_msix; i++) {
2321                         msix_intr = vsi->msix_intr + i;
2322                         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr),
2323                                       GLINT_DYN_CTL_WB_ON_ITR_M);
2324                 }
2325         else
2326                 /* igb_uio */
2327                 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0), GLINT_DYN_CTL_WB_ON_ITR_M);
2328 }
2329
2330 static void
2331 ice_dev_stop(struct rte_eth_dev *dev)
2332 {
2333         struct rte_eth_dev_data *data = dev->data;
2334         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2335         struct ice_vsi *main_vsi = pf->main_vsi;
2336         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2337         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2338         uint16_t i;
2339
2340         /* avoid stopping again */
2341         if (pf->adapter_stopped)
2342                 return;
2343
2344         /* stop and clear all Rx queues */
2345         for (i = 0; i < data->nb_rx_queues; i++)
2346                 ice_rx_queue_stop(dev, i);
2347
2348         /* stop and clear all Tx queues */
2349         for (i = 0; i < data->nb_tx_queues; i++)
2350                 ice_tx_queue_stop(dev, i);
2351
2352         /* disable all queue interrupts */
2353         ice_vsi_disable_queues_intr(main_vsi);
2354
2355         if (pf->fdir.fdir_vsi)
2356                 ice_vsi_disable_queues_intr(pf->fdir.fdir_vsi);
2357
2358         /* Clear all queues and release mbufs */
2359         ice_clear_queues(dev);
2360
2361         if (pf->init_link_up)
2362                 ice_dev_set_link_up(dev);
2363         else
2364                 ice_dev_set_link_down(dev);
2365
2366         /* Clean datapath event and queue/vec mapping */
2367         rte_intr_efd_disable(intr_handle);
2368         if (intr_handle->intr_vec) {
2369                 rte_free(intr_handle->intr_vec);
2370                 intr_handle->intr_vec = NULL;
2371         }
2372
2373         pf->adapter_stopped = true;
2374 }
2375
2376 static void
2377 ice_dev_close(struct rte_eth_dev *dev)
2378 {
2379         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2380         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2381         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2382         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2383         struct ice_adapter *ad =
2384                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2385
2386         /* Since stop will make link down, then the link event will be
2387          * triggered, disable the irq firstly to avoid the port_infoe etc
2388          * resources deallocation causing the interrupt service thread
2389          * crash.
2390          */
2391         ice_pf_disable_irq0(hw);
2392
2393         ice_dev_stop(dev);
2394
2395         ice_flow_uninit(ad);
2396
2397         /* release all queue resource */
2398         ice_free_queues(dev);
2399
2400         ice_res_pool_destroy(&pf->msix_pool);
2401         ice_release_vsi(pf->main_vsi);
2402         ice_sched_cleanup_all(hw);
2403         ice_free_hw_tbls(hw);
2404         rte_free(hw->port_info);
2405         hw->port_info = NULL;
2406         ice_shutdown_all_ctrlq(hw);
2407         rte_free(pf->proto_xtr);
2408         pf->proto_xtr = NULL;
2409
2410         dev->dev_ops = NULL;
2411         dev->rx_pkt_burst = NULL;
2412         dev->tx_pkt_burst = NULL;
2413
2414         rte_free(dev->data->mac_addrs);
2415         dev->data->mac_addrs = NULL;
2416
2417         /* disable uio intr before callback unregister */
2418         rte_intr_disable(intr_handle);
2419
2420         /* unregister callback func from eal lib */
2421         rte_intr_callback_unregister(intr_handle,
2422                                      ice_interrupt_handler, dev);
2423 }
2424
2425 static int
2426 ice_dev_uninit(struct rte_eth_dev *dev)
2427 {
2428         ice_dev_close(dev);
2429
2430         return 0;
2431 }
2432
2433 static int
2434 ice_dev_configure(struct rte_eth_dev *dev)
2435 {
2436         struct ice_adapter *ad =
2437                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2438
2439         /* Initialize to TRUE. If any of Rx queues doesn't meet the
2440          * bulk allocation or vector Rx preconditions we will reset it.
2441          */
2442         ad->rx_bulk_alloc_allowed = true;
2443         ad->tx_simple_allowed = true;
2444
2445         dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
2446
2447         return 0;
2448 }
2449
2450 static int ice_init_rss(struct ice_pf *pf)
2451 {
2452         struct ice_hw *hw = ICE_PF_TO_HW(pf);
2453         struct ice_vsi *vsi = pf->main_vsi;
2454         struct rte_eth_dev *dev = pf->adapter->eth_dev;
2455         struct rte_eth_rss_conf *rss_conf;
2456         struct ice_aqc_get_set_rss_keys key;
2457         uint16_t i, nb_q;
2458         int ret = 0;
2459         bool is_safe_mode = pf->adapter->is_safe_mode;
2460         uint32_t reg;
2461
2462         rss_conf = &dev->data->dev_conf.rx_adv_conf.rss_conf;
2463         nb_q = dev->data->nb_rx_queues;
2464         vsi->rss_key_size = ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE;
2465         vsi->rss_lut_size = pf->hash_lut_size;
2466
2467         if (is_safe_mode) {
2468                 PMD_DRV_LOG(WARNING, "RSS is not supported in safe mode\n");
2469                 return 0;
2470         }
2471
2472         if (!vsi->rss_key)
2473                 vsi->rss_key = rte_zmalloc(NULL,
2474                                            vsi->rss_key_size, 0);
2475         if (!vsi->rss_lut)
2476                 vsi->rss_lut = rte_zmalloc(NULL,
2477                                            vsi->rss_lut_size, 0);
2478
2479         /* configure RSS key */
2480         if (!rss_conf->rss_key) {
2481                 /* Calculate the default hash key */
2482                 for (i = 0; i <= vsi->rss_key_size; i++)
2483                         vsi->rss_key[i] = (uint8_t)rte_rand();
2484         } else {
2485                 rte_memcpy(vsi->rss_key, rss_conf->rss_key,
2486                            RTE_MIN(rss_conf->rss_key_len,
2487                                    vsi->rss_key_size));
2488         }
2489         rte_memcpy(key.standard_rss_key, vsi->rss_key, vsi->rss_key_size);
2490         ret = ice_aq_set_rss_key(hw, vsi->idx, &key);
2491         if (ret)
2492                 return -EINVAL;
2493
2494         /* init RSS LUT table */
2495         for (i = 0; i < vsi->rss_lut_size; i++)
2496                 vsi->rss_lut[i] = i % nb_q;
2497
2498         ret = ice_aq_set_rss_lut(hw, vsi->idx,
2499                                  ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF,
2500                                  vsi->rss_lut, vsi->rss_lut_size);
2501         if (ret)
2502                 return -EINVAL;
2503
2504         /* Enable registers for symmetric_toeplitz function. */
2505         reg = ICE_READ_REG(hw, VSIQF_HASH_CTL(vsi->vsi_id));
2506         reg = (reg & (~VSIQF_HASH_CTL_HASH_SCHEME_M)) |
2507                 (1 << VSIQF_HASH_CTL_HASH_SCHEME_S);
2508         ICE_WRITE_REG(hw, VSIQF_HASH_CTL(vsi->vsi_id), reg);
2509
2510         /* configure RSS for IPv4 with input set IPv4 src/dst */
2511         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_FLOW_HASH_IPV4,
2512                               ICE_FLOW_SEG_HDR_IPV4, 0);
2513         if (ret)
2514                 PMD_DRV_LOG(ERR, "%s IPV4 rss flow fail %d", __func__, ret);
2515
2516         /* configure RSS for IPv6 with input set IPv6 src/dst */
2517         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_FLOW_HASH_IPV6,
2518                               ICE_FLOW_SEG_HDR_IPV6, 0);
2519         if (ret)
2520                 PMD_DRV_LOG(ERR, "%s IPV6 rss flow fail %d", __func__, ret);
2521
2522         /* configure RSS for tcp6 with input set IPv6 src/dst, TCP src/dst */
2523         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_HASH_TCP_IPV6,
2524                               ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV6, 0);
2525         if (ret)
2526                 PMD_DRV_LOG(ERR, "%s TCP_IPV6 rss flow fail %d", __func__, ret);
2527
2528         /* configure RSS for udp6 with input set IPv6 src/dst, UDP src/dst */
2529         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_HASH_UDP_IPV6,
2530                               ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV6, 0);
2531         if (ret)
2532                 PMD_DRV_LOG(ERR, "%s UDP_IPV6 rss flow fail %d", __func__, ret);
2533
2534         /* configure RSS for sctp6 with input set IPv6 src/dst */
2535         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_FLOW_HASH_IPV6,
2536                               ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV6, 0);
2537         if (ret)
2538                 PMD_DRV_LOG(ERR, "%s SCTP_IPV6 rss flow fail %d",
2539                                 __func__, ret);
2540
2541         /* configure RSS for tcp4 with input set IP src/dst, TCP src/dst */
2542         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_HASH_TCP_IPV4,
2543                               ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV4, 0);
2544         if (ret)
2545                 PMD_DRV_LOG(ERR, "%s TCP_IPV4 rss flow fail %d", __func__, ret);
2546
2547         /* configure RSS for udp4 with input set IP src/dst, UDP src/dst */
2548         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_HASH_UDP_IPV4,
2549                               ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV4, 0);
2550         if (ret)
2551                 PMD_DRV_LOG(ERR, "%s UDP_IPV4 rss flow fail %d", __func__, ret);
2552
2553         /* configure RSS for sctp4 with input set IP src/dst */
2554         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_FLOW_HASH_IPV4,
2555                               ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV4, 0);
2556         if (ret)
2557                 PMD_DRV_LOG(ERR, "%s SCTP_IPV4 rss flow fail %d",
2558                                 __func__, ret);
2559
2560         /* configure RSS for gtpu with input set TEID */
2561         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_FLOW_HASH_GTP_U_IPV4_TEID,
2562                                 ICE_FLOW_SEG_HDR_GTPU_IP, 0);
2563         if (ret)
2564                 PMD_DRV_LOG(ERR, "%s GTPU_TEID rss flow fail %d",
2565                                 __func__, ret);
2566
2567         /**
2568          * configure RSS for pppoe/pppod with input set
2569          * Source MAC and Session ID
2570          */
2571         ret = ice_add_rss_cfg(hw, vsi->idx, ICE_FLOW_HASH_PPPOE_SESS_ID_ETH,
2572                                 ICE_FLOW_SEG_HDR_PPPOE, 0);
2573         if (ret)
2574                 PMD_DRV_LOG(ERR, "%s PPPoE/PPPoD_SessionID rss flow fail %d",
2575                                 __func__, ret);
2576
2577         return 0;
2578 }
2579
2580 static void
2581 __vsi_queues_bind_intr(struct ice_vsi *vsi, uint16_t msix_vect,
2582                        int base_queue, int nb_queue)
2583 {
2584         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2585         uint32_t val, val_tx;
2586         int i;
2587
2588         for (i = 0; i < nb_queue; i++) {
2589                 /*do actual bind*/
2590                 val = (msix_vect & QINT_RQCTL_MSIX_INDX_M) |
2591                       (0 < QINT_RQCTL_ITR_INDX_S) | QINT_RQCTL_CAUSE_ENA_M;
2592                 val_tx = (msix_vect & QINT_TQCTL_MSIX_INDX_M) |
2593                          (0 < QINT_TQCTL_ITR_INDX_S) | QINT_TQCTL_CAUSE_ENA_M;
2594
2595                 PMD_DRV_LOG(INFO, "queue %d is binding to vect %d",
2596                             base_queue + i, msix_vect);
2597                 /* set ITR0 value */
2598                 ICE_WRITE_REG(hw, GLINT_ITR(0, msix_vect), 0x10);
2599                 ICE_WRITE_REG(hw, QINT_RQCTL(base_queue + i), val);
2600                 ICE_WRITE_REG(hw, QINT_TQCTL(base_queue + i), val_tx);
2601         }
2602 }
2603
2604 static void
2605 ice_vsi_queues_bind_intr(struct ice_vsi *vsi)
2606 {
2607         struct rte_eth_dev *dev = vsi->adapter->eth_dev;
2608         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2609         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2610         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2611         uint16_t msix_vect = vsi->msix_intr;
2612         uint16_t nb_msix = RTE_MIN(vsi->nb_msix, intr_handle->nb_efd);
2613         uint16_t queue_idx = 0;
2614         int record = 0;
2615         int i;
2616
2617         /* clear Rx/Tx queue interrupt */
2618         for (i = 0; i < vsi->nb_used_qps; i++) {
2619                 ICE_WRITE_REG(hw, QINT_TQCTL(vsi->base_queue + i), 0);
2620                 ICE_WRITE_REG(hw, QINT_RQCTL(vsi->base_queue + i), 0);
2621         }
2622
2623         /* PF bind interrupt */
2624         if (rte_intr_dp_is_en(intr_handle)) {
2625                 queue_idx = 0;
2626                 record = 1;
2627         }
2628
2629         for (i = 0; i < vsi->nb_used_qps; i++) {
2630                 if (nb_msix <= 1) {
2631                         if (!rte_intr_allow_others(intr_handle))
2632                                 msix_vect = ICE_MISC_VEC_ID;
2633
2634                         /* uio mapping all queue to one msix_vect */
2635                         __vsi_queues_bind_intr(vsi, msix_vect,
2636                                                vsi->base_queue + i,
2637                                                vsi->nb_used_qps - i);
2638
2639                         for (; !!record && i < vsi->nb_used_qps; i++)
2640                                 intr_handle->intr_vec[queue_idx + i] =
2641                                         msix_vect;
2642                         break;
2643                 }
2644
2645                 /* vfio 1:1 queue/msix_vect mapping */
2646                 __vsi_queues_bind_intr(vsi, msix_vect,
2647                                        vsi->base_queue + i, 1);
2648
2649                 if (!!record)
2650                         intr_handle->intr_vec[queue_idx + i] = msix_vect;
2651
2652                 msix_vect++;
2653                 nb_msix--;
2654         }
2655 }
2656
2657 static void
2658 ice_vsi_enable_queues_intr(struct ice_vsi *vsi)
2659 {
2660         struct rte_eth_dev *dev = vsi->adapter->eth_dev;
2661         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2662         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2663         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2664         uint16_t msix_intr, i;
2665
2666         if (rte_intr_allow_others(intr_handle))
2667                 for (i = 0; i < vsi->nb_used_qps; i++) {
2668                         msix_intr = vsi->msix_intr + i;
2669                         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr),
2670                                       GLINT_DYN_CTL_INTENA_M |
2671                                       GLINT_DYN_CTL_CLEARPBA_M |
2672                                       GLINT_DYN_CTL_ITR_INDX_M |
2673                                       GLINT_DYN_CTL_WB_ON_ITR_M);
2674                 }
2675         else
2676                 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0),
2677                               GLINT_DYN_CTL_INTENA_M |
2678                               GLINT_DYN_CTL_CLEARPBA_M |
2679                               GLINT_DYN_CTL_ITR_INDX_M |
2680                               GLINT_DYN_CTL_WB_ON_ITR_M);
2681 }
2682
2683 static int
2684 ice_rxq_intr_setup(struct rte_eth_dev *dev)
2685 {
2686         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2687         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2688         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2689         struct ice_vsi *vsi = pf->main_vsi;
2690         uint32_t intr_vector = 0;
2691
2692         rte_intr_disable(intr_handle);
2693
2694         /* check and configure queue intr-vector mapping */
2695         if ((rte_intr_cap_multiple(intr_handle) ||
2696              !RTE_ETH_DEV_SRIOV(dev).active) &&
2697             dev->data->dev_conf.intr_conf.rxq != 0) {
2698                 intr_vector = dev->data->nb_rx_queues;
2699                 if (intr_vector > ICE_MAX_INTR_QUEUE_NUM) {
2700                         PMD_DRV_LOG(ERR, "At most %d intr queues supported",
2701                                     ICE_MAX_INTR_QUEUE_NUM);
2702                         return -ENOTSUP;
2703                 }
2704                 if (rte_intr_efd_enable(intr_handle, intr_vector))
2705                         return -1;
2706         }
2707
2708         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
2709                 intr_handle->intr_vec =
2710                 rte_zmalloc(NULL, dev->data->nb_rx_queues * sizeof(int),
2711                             0);
2712                 if (!intr_handle->intr_vec) {
2713                         PMD_DRV_LOG(ERR,
2714                                     "Failed to allocate %d rx_queues intr_vec",
2715                                     dev->data->nb_rx_queues);
2716                         return -ENOMEM;
2717                 }
2718         }
2719
2720         /* Map queues with MSIX interrupt */
2721         vsi->nb_used_qps = dev->data->nb_rx_queues;
2722         ice_vsi_queues_bind_intr(vsi);
2723
2724         /* Enable interrupts for all the queues */
2725         ice_vsi_enable_queues_intr(vsi);
2726
2727         /* Enable FDIR MSIX interrupt */
2728         if (pf->fdir.fdir_vsi) {
2729                 ice_vsi_queues_bind_intr(pf->fdir.fdir_vsi);
2730                 ice_vsi_enable_queues_intr(pf->fdir.fdir_vsi);
2731         }
2732
2733         rte_intr_enable(intr_handle);
2734
2735         return 0;
2736 }
2737
2738 static void
2739 ice_get_init_link_status(struct rte_eth_dev *dev)
2740 {
2741         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2742         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2743         bool enable_lse = dev->data->dev_conf.intr_conf.lsc ? true : false;
2744         struct ice_link_status link_status;
2745         int ret;
2746
2747         ret = ice_aq_get_link_info(hw->port_info, enable_lse,
2748                                    &link_status, NULL);
2749         if (ret != ICE_SUCCESS) {
2750                 PMD_DRV_LOG(ERR, "Failed to get link info");
2751                 pf->init_link_up = false;
2752                 return;
2753         }
2754
2755         if (link_status.link_info & ICE_AQ_LINK_UP)
2756                 pf->init_link_up = true;
2757 }
2758
2759 static int
2760 ice_dev_start(struct rte_eth_dev *dev)
2761 {
2762         struct rte_eth_dev_data *data = dev->data;
2763         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2764         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2765         struct ice_vsi *vsi = pf->main_vsi;
2766         uint16_t nb_rxq = 0;
2767         uint16_t nb_txq, i;
2768         uint16_t max_frame_size;
2769         int mask, ret;
2770
2771         /* program Tx queues' context in hardware */
2772         for (nb_txq = 0; nb_txq < data->nb_tx_queues; nb_txq++) {
2773                 ret = ice_tx_queue_start(dev, nb_txq);
2774                 if (ret) {
2775                         PMD_DRV_LOG(ERR, "fail to start Tx queue %u", nb_txq);
2776                         goto tx_err;
2777                 }
2778         }
2779
2780         /* program Rx queues' context in hardware*/
2781         for (nb_rxq = 0; nb_rxq < data->nb_rx_queues; nb_rxq++) {
2782                 ret = ice_rx_queue_start(dev, nb_rxq);
2783                 if (ret) {
2784                         PMD_DRV_LOG(ERR, "fail to start Rx queue %u", nb_rxq);
2785                         goto rx_err;
2786                 }
2787         }
2788
2789         ret = ice_init_rss(pf);
2790         if (ret) {
2791                 PMD_DRV_LOG(ERR, "Failed to enable rss for PF");
2792                 goto rx_err;
2793         }
2794
2795         ice_set_rx_function(dev);
2796         ice_set_tx_function(dev);
2797
2798         mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
2799                         ETH_VLAN_EXTEND_MASK;
2800         ret = ice_vlan_offload_set(dev, mask);
2801         if (ret) {
2802                 PMD_INIT_LOG(ERR, "Unable to set VLAN offload");
2803                 goto rx_err;
2804         }
2805
2806         /* enable Rx interrput and mapping Rx queue to interrupt vector */
2807         if (ice_rxq_intr_setup(dev))
2808                 return -EIO;
2809
2810         /* Enable receiving broadcast packets and transmitting packets */
2811         ret = ice_set_vsi_promisc(hw, vsi->idx,
2812                                   ICE_PROMISC_BCAST_RX | ICE_PROMISC_BCAST_TX |
2813                                   ICE_PROMISC_UCAST_TX | ICE_PROMISC_MCAST_TX,
2814                                   0);
2815         if (ret != ICE_SUCCESS)
2816                 PMD_DRV_LOG(INFO, "fail to set vsi broadcast");
2817
2818         ret = ice_aq_set_event_mask(hw, hw->port_info->lport,
2819                                     ((u16)(ICE_AQ_LINK_EVENT_LINK_FAULT |
2820                                      ICE_AQ_LINK_EVENT_PHY_TEMP_ALARM |
2821                                      ICE_AQ_LINK_EVENT_EXCESSIVE_ERRORS |
2822                                      ICE_AQ_LINK_EVENT_SIGNAL_DETECT |
2823                                      ICE_AQ_LINK_EVENT_AN_COMPLETED |
2824                                      ICE_AQ_LINK_EVENT_PORT_TX_SUSPENDED)),
2825                                      NULL);
2826         if (ret != ICE_SUCCESS)
2827                 PMD_DRV_LOG(WARNING, "Fail to set phy mask");
2828
2829         ice_get_init_link_status(dev);
2830
2831         ice_dev_set_link_up(dev);
2832
2833         /* Call get_link_info aq commond to enable/disable LSE */
2834         ice_link_update(dev, 0);
2835
2836         pf->adapter_stopped = false;
2837
2838         /* Set the max frame size to default value*/
2839         max_frame_size = pf->dev_data->dev_conf.rxmode.max_rx_pkt_len ?
2840                 pf->dev_data->dev_conf.rxmode.max_rx_pkt_len :
2841                 ICE_FRAME_SIZE_MAX;
2842
2843         /* Set the max frame size to HW*/
2844         ice_aq_set_mac_cfg(hw, max_frame_size, NULL);
2845
2846         return 0;
2847
2848         /* stop the started queues if failed to start all queues */
2849 rx_err:
2850         for (i = 0; i < nb_rxq; i++)
2851                 ice_rx_queue_stop(dev, i);
2852 tx_err:
2853         for (i = 0; i < nb_txq; i++)
2854                 ice_tx_queue_stop(dev, i);
2855
2856         return -EIO;
2857 }
2858
2859 static int
2860 ice_dev_reset(struct rte_eth_dev *dev)
2861 {
2862         int ret;
2863
2864         if (dev->data->sriov.active)
2865                 return -ENOTSUP;
2866
2867         ret = ice_dev_uninit(dev);
2868         if (ret) {
2869                 PMD_INIT_LOG(ERR, "failed to uninit device, status = %d", ret);
2870                 return -ENXIO;
2871         }
2872
2873         ret = ice_dev_init(dev);
2874         if (ret) {
2875                 PMD_INIT_LOG(ERR, "failed to init device, status = %d", ret);
2876                 return -ENXIO;
2877         }
2878
2879         return 0;
2880 }
2881
2882 static int
2883 ice_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
2884 {
2885         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2886         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2887         struct ice_vsi *vsi = pf->main_vsi;
2888         struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
2889         bool is_safe_mode = pf->adapter->is_safe_mode;
2890         u64 phy_type_low;
2891         u64 phy_type_high;
2892
2893         dev_info->min_rx_bufsize = ICE_BUF_SIZE_MIN;
2894         dev_info->max_rx_pktlen = ICE_FRAME_SIZE_MAX;
2895         dev_info->max_rx_queues = vsi->nb_qps;
2896         dev_info->max_tx_queues = vsi->nb_qps;
2897         dev_info->max_mac_addrs = vsi->max_macaddrs;
2898         dev_info->max_vfs = pci_dev->max_vfs;
2899         dev_info->max_mtu = dev_info->max_rx_pktlen - ICE_ETH_OVERHEAD;
2900         dev_info->min_mtu = RTE_ETHER_MIN_MTU;
2901
2902         dev_info->rx_offload_capa =
2903                 DEV_RX_OFFLOAD_VLAN_STRIP |
2904                 DEV_RX_OFFLOAD_JUMBO_FRAME |
2905                 DEV_RX_OFFLOAD_KEEP_CRC |
2906                 DEV_RX_OFFLOAD_SCATTER |
2907                 DEV_RX_OFFLOAD_VLAN_FILTER;
2908         dev_info->tx_offload_capa =
2909                 DEV_TX_OFFLOAD_VLAN_INSERT |
2910                 DEV_TX_OFFLOAD_TCP_TSO |
2911                 DEV_TX_OFFLOAD_MULTI_SEGS |
2912                 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
2913         dev_info->flow_type_rss_offloads = 0;
2914
2915         if (!is_safe_mode) {
2916                 dev_info->rx_offload_capa |=
2917                         DEV_RX_OFFLOAD_IPV4_CKSUM |
2918                         DEV_RX_OFFLOAD_UDP_CKSUM |
2919                         DEV_RX_OFFLOAD_TCP_CKSUM |
2920                         DEV_RX_OFFLOAD_QINQ_STRIP |
2921                         DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
2922                         DEV_RX_OFFLOAD_VLAN_EXTEND |
2923                         DEV_RX_OFFLOAD_RSS_HASH;
2924                 dev_info->tx_offload_capa |=
2925                         DEV_TX_OFFLOAD_QINQ_INSERT |
2926                         DEV_TX_OFFLOAD_IPV4_CKSUM |
2927                         DEV_TX_OFFLOAD_UDP_CKSUM |
2928                         DEV_TX_OFFLOAD_TCP_CKSUM |
2929                         DEV_TX_OFFLOAD_SCTP_CKSUM |
2930                         DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
2931                         DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
2932                 dev_info->flow_type_rss_offloads |= ICE_RSS_OFFLOAD_ALL;
2933         }
2934
2935         dev_info->rx_queue_offload_capa = 0;
2936         dev_info->tx_queue_offload_capa = 0;
2937
2938         dev_info->reta_size = pf->hash_lut_size;
2939         dev_info->hash_key_size = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2940
2941         dev_info->default_rxconf = (struct rte_eth_rxconf) {
2942                 .rx_thresh = {
2943                         .pthresh = ICE_DEFAULT_RX_PTHRESH,
2944                         .hthresh = ICE_DEFAULT_RX_HTHRESH,
2945                         .wthresh = ICE_DEFAULT_RX_WTHRESH,
2946                 },
2947                 .rx_free_thresh = ICE_DEFAULT_RX_FREE_THRESH,
2948                 .rx_drop_en = 0,
2949                 .offloads = 0,
2950         };
2951
2952         dev_info->default_txconf = (struct rte_eth_txconf) {
2953                 .tx_thresh = {
2954                         .pthresh = ICE_DEFAULT_TX_PTHRESH,
2955                         .hthresh = ICE_DEFAULT_TX_HTHRESH,
2956                         .wthresh = ICE_DEFAULT_TX_WTHRESH,
2957                 },
2958                 .tx_free_thresh = ICE_DEFAULT_TX_FREE_THRESH,
2959                 .tx_rs_thresh = ICE_DEFAULT_TX_RSBIT_THRESH,
2960                 .offloads = 0,
2961         };
2962
2963         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
2964                 .nb_max = ICE_MAX_RING_DESC,
2965                 .nb_min = ICE_MIN_RING_DESC,
2966                 .nb_align = ICE_ALIGN_RING_DESC,
2967         };
2968
2969         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
2970                 .nb_max = ICE_MAX_RING_DESC,
2971                 .nb_min = ICE_MIN_RING_DESC,
2972                 .nb_align = ICE_ALIGN_RING_DESC,
2973         };
2974
2975         dev_info->speed_capa = ETH_LINK_SPEED_10M |
2976                                ETH_LINK_SPEED_100M |
2977                                ETH_LINK_SPEED_1G |
2978                                ETH_LINK_SPEED_2_5G |
2979                                ETH_LINK_SPEED_5G |
2980                                ETH_LINK_SPEED_10G |
2981                                ETH_LINK_SPEED_20G |
2982                                ETH_LINK_SPEED_25G;
2983
2984         phy_type_low = hw->port_info->phy.phy_type_low;
2985         phy_type_high = hw->port_info->phy.phy_type_high;
2986
2987         if (ICE_PHY_TYPE_SUPPORT_50G(phy_type_low))
2988                 dev_info->speed_capa |= ETH_LINK_SPEED_50G;
2989
2990         if (ICE_PHY_TYPE_SUPPORT_100G_LOW(phy_type_low) ||
2991                         ICE_PHY_TYPE_SUPPORT_100G_HIGH(phy_type_high))
2992                 dev_info->speed_capa |= ETH_LINK_SPEED_100G;
2993
2994         dev_info->nb_rx_queues = dev->data->nb_rx_queues;
2995         dev_info->nb_tx_queues = dev->data->nb_tx_queues;
2996
2997         dev_info->default_rxportconf.burst_size = ICE_RX_MAX_BURST;
2998         dev_info->default_txportconf.burst_size = ICE_TX_MAX_BURST;
2999         dev_info->default_rxportconf.nb_queues = 1;
3000         dev_info->default_txportconf.nb_queues = 1;
3001         dev_info->default_rxportconf.ring_size = ICE_BUF_SIZE_MIN;
3002         dev_info->default_txportconf.ring_size = ICE_BUF_SIZE_MIN;
3003
3004         return 0;
3005 }
3006
3007 static inline int
3008 ice_atomic_read_link_status(struct rte_eth_dev *dev,
3009                             struct rte_eth_link *link)
3010 {
3011         struct rte_eth_link *dst = link;
3012         struct rte_eth_link *src = &dev->data->dev_link;
3013
3014         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
3015                                 *(uint64_t *)src) == 0)
3016                 return -1;
3017
3018         return 0;
3019 }
3020
3021 static inline int
3022 ice_atomic_write_link_status(struct rte_eth_dev *dev,
3023                              struct rte_eth_link *link)
3024 {
3025         struct rte_eth_link *dst = &dev->data->dev_link;
3026         struct rte_eth_link *src = link;
3027
3028         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
3029                                 *(uint64_t *)src) == 0)
3030                 return -1;
3031
3032         return 0;
3033 }
3034
3035 static int
3036 ice_link_update(struct rte_eth_dev *dev, int wait_to_complete)
3037 {
3038 #define CHECK_INTERVAL 100  /* 100ms */
3039 #define MAX_REPEAT_TIME 10  /* 1s (10 * 100ms) in total */
3040         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3041         struct ice_link_status link_status;
3042         struct rte_eth_link link, old;
3043         int status;
3044         unsigned int rep_cnt = MAX_REPEAT_TIME;
3045         bool enable_lse = dev->data->dev_conf.intr_conf.lsc ? true : false;
3046
3047         memset(&link, 0, sizeof(link));
3048         memset(&old, 0, sizeof(old));
3049         memset(&link_status, 0, sizeof(link_status));
3050         ice_atomic_read_link_status(dev, &old);
3051
3052         do {
3053                 /* Get link status information from hardware */
3054                 status = ice_aq_get_link_info(hw->port_info, enable_lse,
3055                                               &link_status, NULL);
3056                 if (status != ICE_SUCCESS) {
3057                         link.link_speed = ETH_SPEED_NUM_100M;
3058                         link.link_duplex = ETH_LINK_FULL_DUPLEX;
3059                         PMD_DRV_LOG(ERR, "Failed to get link info");
3060                         goto out;
3061                 }
3062
3063                 link.link_status = link_status.link_info & ICE_AQ_LINK_UP;
3064                 if (!wait_to_complete || link.link_status)
3065                         break;
3066
3067                 rte_delay_ms(CHECK_INTERVAL);
3068         } while (--rep_cnt);
3069
3070         if (!link.link_status)
3071                 goto out;
3072
3073         /* Full-duplex operation at all supported speeds */
3074         link.link_duplex = ETH_LINK_FULL_DUPLEX;
3075
3076         /* Parse the link status */
3077         switch (link_status.link_speed) {
3078         case ICE_AQ_LINK_SPEED_10MB:
3079                 link.link_speed = ETH_SPEED_NUM_10M;
3080                 break;
3081         case ICE_AQ_LINK_SPEED_100MB:
3082                 link.link_speed = ETH_SPEED_NUM_100M;
3083                 break;
3084         case ICE_AQ_LINK_SPEED_1000MB:
3085                 link.link_speed = ETH_SPEED_NUM_1G;
3086                 break;
3087         case ICE_AQ_LINK_SPEED_2500MB:
3088                 link.link_speed = ETH_SPEED_NUM_2_5G;
3089                 break;
3090         case ICE_AQ_LINK_SPEED_5GB:
3091                 link.link_speed = ETH_SPEED_NUM_5G;
3092                 break;
3093         case ICE_AQ_LINK_SPEED_10GB:
3094                 link.link_speed = ETH_SPEED_NUM_10G;
3095                 break;
3096         case ICE_AQ_LINK_SPEED_20GB:
3097                 link.link_speed = ETH_SPEED_NUM_20G;
3098                 break;
3099         case ICE_AQ_LINK_SPEED_25GB:
3100                 link.link_speed = ETH_SPEED_NUM_25G;
3101                 break;
3102         case ICE_AQ_LINK_SPEED_40GB:
3103                 link.link_speed = ETH_SPEED_NUM_40G;
3104                 break;
3105         case ICE_AQ_LINK_SPEED_50GB:
3106                 link.link_speed = ETH_SPEED_NUM_50G;
3107                 break;
3108         case ICE_AQ_LINK_SPEED_100GB:
3109                 link.link_speed = ETH_SPEED_NUM_100G;
3110                 break;
3111         case ICE_AQ_LINK_SPEED_UNKNOWN:
3112         default:
3113                 PMD_DRV_LOG(ERR, "Unknown link speed");
3114                 link.link_speed = ETH_SPEED_NUM_NONE;
3115                 break;
3116         }
3117
3118         link.link_autoneg = !(dev->data->dev_conf.link_speeds &
3119                               ETH_LINK_SPEED_FIXED);
3120
3121 out:
3122         ice_atomic_write_link_status(dev, &link);
3123         if (link.link_status == old.link_status)
3124                 return -1;
3125
3126         return 0;
3127 }
3128
3129 /* Force the physical link state by getting the current PHY capabilities from
3130  * hardware and setting the PHY config based on the determined capabilities. If
3131  * link changes, link event will be triggered because both the Enable Automatic
3132  * Link Update and LESM Enable bits are set when setting the PHY capabilities.
3133  */
3134 static enum ice_status
3135 ice_force_phys_link_state(struct ice_hw *hw, bool link_up)
3136 {
3137         struct ice_aqc_set_phy_cfg_data cfg = { 0 };
3138         struct ice_aqc_get_phy_caps_data *pcaps;
3139         struct ice_port_info *pi;
3140         enum ice_status status;
3141
3142         if (!hw || !hw->port_info)
3143                 return ICE_ERR_PARAM;
3144
3145         pi = hw->port_info;
3146
3147         pcaps = (struct ice_aqc_get_phy_caps_data *)
3148                 ice_malloc(hw, sizeof(*pcaps));
3149         if (!pcaps)
3150                 return ICE_ERR_NO_MEMORY;
3151
3152         status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_SW_CFG, pcaps,
3153                                      NULL);
3154         if (status)
3155                 goto out;
3156
3157         /* No change in link */
3158         if (link_up == !!(pcaps->caps & ICE_AQC_PHY_EN_LINK) &&
3159             link_up == !!(pi->phy.link_info.link_info & ICE_AQ_LINK_UP))
3160                 goto out;
3161
3162         cfg.phy_type_low = pcaps->phy_type_low;
3163         cfg.phy_type_high = pcaps->phy_type_high;
3164         cfg.caps = pcaps->caps | ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
3165         cfg.low_power_ctrl = pcaps->low_power_ctrl;
3166         cfg.eee_cap = pcaps->eee_cap;
3167         cfg.eeer_value = pcaps->eeer_value;
3168         cfg.link_fec_opt = pcaps->link_fec_options;
3169         if (link_up)
3170                 cfg.caps |= ICE_AQ_PHY_ENA_LINK;
3171         else
3172                 cfg.caps &= ~ICE_AQ_PHY_ENA_LINK;
3173
3174         status = ice_aq_set_phy_cfg(hw, pi, &cfg, NULL);
3175
3176 out:
3177         ice_free(hw, pcaps);
3178         return status;
3179 }
3180
3181 static int
3182 ice_dev_set_link_up(struct rte_eth_dev *dev)
3183 {
3184         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3185
3186         return ice_force_phys_link_state(hw, true);
3187 }
3188
3189 static int
3190 ice_dev_set_link_down(struct rte_eth_dev *dev)
3191 {
3192         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3193
3194         return ice_force_phys_link_state(hw, false);
3195 }
3196
3197 static int
3198 ice_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
3199 {
3200         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3201         struct rte_eth_dev_data *dev_data = pf->dev_data;
3202         uint32_t frame_size = mtu + ICE_ETH_OVERHEAD;
3203
3204         /* check if mtu is within the allowed range */
3205         if (mtu < RTE_ETHER_MIN_MTU || frame_size > ICE_FRAME_SIZE_MAX)
3206                 return -EINVAL;
3207
3208         /* mtu setting is forbidden if port is start */
3209         if (dev_data->dev_started) {
3210                 PMD_DRV_LOG(ERR,
3211                             "port %d must be stopped before configuration",
3212                             dev_data->port_id);
3213                 return -EBUSY;
3214         }
3215
3216         if (frame_size > RTE_ETHER_MAX_LEN)
3217                 dev_data->dev_conf.rxmode.offloads |=
3218                         DEV_RX_OFFLOAD_JUMBO_FRAME;
3219         else
3220                 dev_data->dev_conf.rxmode.offloads &=
3221                         ~DEV_RX_OFFLOAD_JUMBO_FRAME;
3222
3223         dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
3224
3225         return 0;
3226 }
3227
3228 static int ice_macaddr_set(struct rte_eth_dev *dev,
3229                            struct rte_ether_addr *mac_addr)
3230 {
3231         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3232         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3233         struct ice_vsi *vsi = pf->main_vsi;
3234         struct ice_mac_filter *f;
3235         uint8_t flags = 0;
3236         int ret;
3237
3238         if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
3239                 PMD_DRV_LOG(ERR, "Tried to set invalid MAC address.");
3240                 return -EINVAL;
3241         }
3242
3243         TAILQ_FOREACH(f, &vsi->mac_list, next) {
3244                 if (rte_is_same_ether_addr(&pf->dev_addr, &f->mac_info.mac_addr))
3245                         break;
3246         }
3247
3248         if (!f) {
3249                 PMD_DRV_LOG(ERR, "Failed to find filter for default mac");
3250                 return -EIO;
3251         }
3252
3253         ret = ice_remove_mac_filter(vsi, &f->mac_info.mac_addr);
3254         if (ret != ICE_SUCCESS) {
3255                 PMD_DRV_LOG(ERR, "Failed to delete mac filter");
3256                 return -EIO;
3257         }
3258         ret = ice_add_mac_filter(vsi, mac_addr);
3259         if (ret != ICE_SUCCESS) {
3260                 PMD_DRV_LOG(ERR, "Failed to add mac filter");
3261                 return -EIO;
3262         }
3263         memcpy(&pf->dev_addr, mac_addr, ETH_ADDR_LEN);
3264
3265         flags = ICE_AQC_MAN_MAC_UPDATE_LAA_WOL;
3266         ret = ice_aq_manage_mac_write(hw, mac_addr->addr_bytes, flags, NULL);
3267         if (ret != ICE_SUCCESS)
3268                 PMD_DRV_LOG(ERR, "Failed to set manage mac");
3269
3270         return 0;
3271 }
3272
3273 /* Add a MAC address, and update filters */
3274 static int
3275 ice_macaddr_add(struct rte_eth_dev *dev,
3276                 struct rte_ether_addr *mac_addr,
3277                 __rte_unused uint32_t index,
3278                 __rte_unused uint32_t pool)
3279 {
3280         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3281         struct ice_vsi *vsi = pf->main_vsi;
3282         int ret;
3283
3284         ret = ice_add_mac_filter(vsi, mac_addr);
3285         if (ret != ICE_SUCCESS) {
3286                 PMD_DRV_LOG(ERR, "Failed to add MAC filter");
3287                 return -EINVAL;
3288         }
3289
3290         return ICE_SUCCESS;
3291 }
3292
3293 /* Remove a MAC address, and update filters */
3294 static void
3295 ice_macaddr_remove(struct rte_eth_dev *dev, uint32_t index)
3296 {
3297         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3298         struct ice_vsi *vsi = pf->main_vsi;
3299         struct rte_eth_dev_data *data = dev->data;
3300         struct rte_ether_addr *macaddr;
3301         int ret;
3302
3303         macaddr = &data->mac_addrs[index];
3304         ret = ice_remove_mac_filter(vsi, macaddr);
3305         if (ret) {
3306                 PMD_DRV_LOG(ERR, "Failed to remove MAC filter");
3307                 return;
3308         }
3309 }
3310
3311 static int
3312 ice_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
3313 {
3314         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3315         struct ice_vsi *vsi = pf->main_vsi;
3316         int ret;
3317
3318         PMD_INIT_FUNC_TRACE();
3319
3320         if (on) {
3321                 ret = ice_add_vlan_filter(vsi, vlan_id);
3322                 if (ret < 0) {
3323                         PMD_DRV_LOG(ERR, "Failed to add vlan filter");
3324                         return -EINVAL;
3325                 }
3326         } else {
3327                 ret = ice_remove_vlan_filter(vsi, vlan_id);
3328                 if (ret < 0) {
3329                         PMD_DRV_LOG(ERR, "Failed to remove vlan filter");
3330                         return -EINVAL;
3331                 }
3332         }
3333
3334         return 0;
3335 }
3336
3337 /* Configure vlan filter on or off */
3338 static int
3339 ice_vsi_config_vlan_filter(struct ice_vsi *vsi, bool on)
3340 {
3341         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3342         struct ice_vsi_ctx ctxt;
3343         uint8_t sec_flags, sw_flags2;
3344         int ret = 0;
3345
3346         sec_flags = ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
3347                     ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S;
3348         sw_flags2 = ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
3349
3350         if (on) {
3351                 vsi->info.sec_flags |= sec_flags;
3352                 vsi->info.sw_flags2 |= sw_flags2;
3353         } else {
3354                 vsi->info.sec_flags &= ~sec_flags;
3355                 vsi->info.sw_flags2 &= ~sw_flags2;
3356         }
3357         vsi->info.sw_id = hw->port_info->sw_id;
3358         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
3359         ctxt.info.valid_sections =
3360                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_SW_VALID |
3361                                  ICE_AQ_VSI_PROP_SECURITY_VALID);
3362         ctxt.vsi_num = vsi->vsi_id;
3363
3364         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
3365         if (ret) {
3366                 PMD_DRV_LOG(INFO, "Update VSI failed to %s vlan rx pruning",
3367                             on ? "enable" : "disable");
3368                 return -EINVAL;
3369         } else {
3370                 vsi->info.valid_sections |=
3371                         rte_cpu_to_le_16(ICE_AQ_VSI_PROP_SW_VALID |
3372                                          ICE_AQ_VSI_PROP_SECURITY_VALID);
3373         }
3374
3375         /* consist with other drivers, allow untagged packet when vlan filter on */
3376         if (on)
3377                 ret = ice_add_vlan_filter(vsi, 0);
3378         else
3379                 ret = ice_remove_vlan_filter(vsi, 0);
3380
3381         return 0;
3382 }
3383
3384 static int
3385 ice_vsi_config_vlan_stripping(struct ice_vsi *vsi, bool on)
3386 {
3387         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3388         struct ice_vsi_ctx ctxt;
3389         uint8_t vlan_flags;
3390         int ret = 0;
3391
3392         /* Check if it has been already on or off */
3393         if (vsi->info.valid_sections &
3394                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID)) {
3395                 if (on) {
3396                         if ((vsi->info.vlan_flags &
3397                              ICE_AQ_VSI_VLAN_EMOD_M) ==
3398                             ICE_AQ_VSI_VLAN_EMOD_STR_BOTH)
3399                                 return 0; /* already on */
3400                 } else {
3401                         if ((vsi->info.vlan_flags &
3402                              ICE_AQ_VSI_VLAN_EMOD_M) ==
3403                             ICE_AQ_VSI_VLAN_EMOD_NOTHING)
3404                                 return 0; /* already off */
3405                 }
3406         }
3407
3408         if (on)
3409                 vlan_flags = ICE_AQ_VSI_VLAN_EMOD_STR_BOTH;
3410         else
3411                 vlan_flags = ICE_AQ_VSI_VLAN_EMOD_NOTHING;
3412         vsi->info.vlan_flags &= ~(ICE_AQ_VSI_VLAN_EMOD_M);
3413         vsi->info.vlan_flags |= vlan_flags;
3414         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
3415         ctxt.info.valid_sections =
3416                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
3417         ctxt.vsi_num = vsi->vsi_id;
3418         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
3419         if (ret) {
3420                 PMD_DRV_LOG(INFO, "Update VSI failed to %s vlan stripping",
3421                             on ? "enable" : "disable");
3422                 return -EINVAL;
3423         }
3424
3425         vsi->info.valid_sections |=
3426                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
3427
3428         return ret;
3429 }
3430
3431 static int
3432 ice_vlan_offload_set(struct rte_eth_dev *dev, int mask)
3433 {
3434         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3435         struct ice_vsi *vsi = pf->main_vsi;
3436         struct rte_eth_rxmode *rxmode;
3437
3438         rxmode = &dev->data->dev_conf.rxmode;
3439         if (mask & ETH_VLAN_FILTER_MASK) {
3440                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
3441                         ice_vsi_config_vlan_filter(vsi, TRUE);
3442                 else
3443                         ice_vsi_config_vlan_filter(vsi, FALSE);
3444         }
3445
3446         if (mask & ETH_VLAN_STRIP_MASK) {
3447                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
3448                         ice_vsi_config_vlan_stripping(vsi, TRUE);
3449                 else
3450                         ice_vsi_config_vlan_stripping(vsi, FALSE);
3451         }
3452
3453         if (mask & ETH_VLAN_EXTEND_MASK) {
3454                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
3455                         ice_vsi_config_double_vlan(vsi, TRUE);
3456                 else
3457                         ice_vsi_config_double_vlan(vsi, FALSE);
3458         }
3459
3460         return 0;
3461 }
3462
3463 static int
3464 ice_get_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
3465 {
3466         struct ice_pf *pf = ICE_VSI_TO_PF(vsi);
3467         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3468         int ret;
3469
3470         if (!lut)
3471                 return -EINVAL;
3472
3473         if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
3474                 ret = ice_aq_get_rss_lut(hw, vsi->idx,
3475                         ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF, lut, lut_size);
3476                 if (ret) {
3477                         PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
3478                         return -EINVAL;
3479                 }
3480         } else {
3481                 uint64_t *lut_dw = (uint64_t *)lut;
3482                 uint16_t i, lut_size_dw = lut_size / 4;
3483
3484                 for (i = 0; i < lut_size_dw; i++)
3485                         lut_dw[i] = ICE_READ_REG(hw, PFQF_HLUT(i));
3486         }
3487
3488         return 0;
3489 }
3490
3491 static int
3492 ice_set_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
3493 {
3494         struct ice_pf *pf;
3495         struct ice_hw *hw;
3496         int ret;
3497
3498         if (!vsi || !lut)
3499                 return -EINVAL;
3500
3501         pf = ICE_VSI_TO_PF(vsi);
3502         hw = ICE_VSI_TO_HW(vsi);
3503
3504         if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
3505                 ret = ice_aq_set_rss_lut(hw, vsi->idx,
3506                         ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF, lut, lut_size);
3507                 if (ret) {
3508                         PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
3509                         return -EINVAL;
3510                 }
3511         } else {
3512                 uint64_t *lut_dw = (uint64_t *)lut;
3513                 uint16_t i, lut_size_dw = lut_size / 4;
3514
3515                 for (i = 0; i < lut_size_dw; i++)
3516                         ICE_WRITE_REG(hw, PFQF_HLUT(i), lut_dw[i]);
3517
3518                 ice_flush(hw);
3519         }
3520
3521         return 0;
3522 }
3523
3524 static int
3525 ice_rss_reta_update(struct rte_eth_dev *dev,
3526                     struct rte_eth_rss_reta_entry64 *reta_conf,
3527                     uint16_t reta_size)
3528 {
3529         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3530         uint16_t i, lut_size = pf->hash_lut_size;
3531         uint16_t idx, shift;
3532         uint8_t *lut;
3533         int ret;
3534
3535         if (reta_size != ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_128 &&
3536             reta_size != ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_512 &&
3537             reta_size != ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_2K) {
3538                 PMD_DRV_LOG(ERR,
3539                             "The size of hash lookup table configured (%d)"
3540                             "doesn't match the number hardware can "
3541                             "supported (128, 512, 2048)",
3542                             reta_size);
3543                 return -EINVAL;
3544         }
3545
3546         /* It MUST use the current LUT size to get the RSS lookup table,
3547          * otherwise if will fail with -100 error code.
3548          */
3549         lut = rte_zmalloc(NULL,  RTE_MAX(reta_size, lut_size), 0);
3550         if (!lut) {
3551                 PMD_DRV_LOG(ERR, "No memory can be allocated");
3552                 return -ENOMEM;
3553         }
3554         ret = ice_get_rss_lut(pf->main_vsi, lut, lut_size);
3555         if (ret)
3556                 goto out;
3557
3558         for (i = 0; i < reta_size; i++) {
3559                 idx = i / RTE_RETA_GROUP_SIZE;
3560                 shift = i % RTE_RETA_GROUP_SIZE;
3561                 if (reta_conf[idx].mask & (1ULL << shift))
3562                         lut[i] = reta_conf[idx].reta[shift];
3563         }
3564         ret = ice_set_rss_lut(pf->main_vsi, lut, reta_size);
3565         if (ret == 0 && lut_size != reta_size) {
3566                 PMD_DRV_LOG(INFO,
3567                             "The size of hash lookup table is changed from (%d) to (%d)",
3568                             lut_size, reta_size);
3569                 pf->hash_lut_size = reta_size;
3570         }
3571
3572 out:
3573         rte_free(lut);
3574
3575         return ret;
3576 }
3577
3578 static int
3579 ice_rss_reta_query(struct rte_eth_dev *dev,
3580                    struct rte_eth_rss_reta_entry64 *reta_conf,
3581                    uint16_t reta_size)
3582 {
3583         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3584         uint16_t i, lut_size = pf->hash_lut_size;
3585         uint16_t idx, shift;
3586         uint8_t *lut;
3587         int ret;
3588
3589         if (reta_size != lut_size) {
3590                 PMD_DRV_LOG(ERR,
3591                             "The size of hash lookup table configured (%d)"
3592                             "doesn't match the number hardware can "
3593                             "supported (%d)",
3594                             reta_size, lut_size);
3595                 return -EINVAL;
3596         }
3597
3598         lut = rte_zmalloc(NULL, reta_size, 0);
3599         if (!lut) {
3600                 PMD_DRV_LOG(ERR, "No memory can be allocated");
3601                 return -ENOMEM;
3602         }
3603
3604         ret = ice_get_rss_lut(pf->main_vsi, lut, reta_size);
3605         if (ret)
3606                 goto out;
3607
3608         for (i = 0; i < reta_size; i++) {
3609                 idx = i / RTE_RETA_GROUP_SIZE;
3610                 shift = i % RTE_RETA_GROUP_SIZE;
3611                 if (reta_conf[idx].mask & (1ULL << shift))
3612                         reta_conf[idx].reta[shift] = lut[i];
3613         }
3614
3615 out:
3616         rte_free(lut);
3617
3618         return ret;
3619 }
3620
3621 static int
3622 ice_set_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t key_len)
3623 {
3624         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3625         int ret = 0;
3626
3627         if (!key || key_len == 0) {
3628                 PMD_DRV_LOG(DEBUG, "No key to be configured");
3629                 return 0;
3630         } else if (key_len != (VSIQF_HKEY_MAX_INDEX + 1) *
3631                    sizeof(uint32_t)) {
3632                 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
3633                 return -EINVAL;
3634         }
3635
3636         struct ice_aqc_get_set_rss_keys *key_dw =
3637                 (struct ice_aqc_get_set_rss_keys *)key;
3638
3639         ret = ice_aq_set_rss_key(hw, vsi->idx, key_dw);
3640         if (ret) {
3641                 PMD_DRV_LOG(ERR, "Failed to configure RSS key via AQ");
3642                 ret = -EINVAL;
3643         }
3644
3645         return ret;
3646 }
3647
3648 static int
3649 ice_get_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t *key_len)
3650 {
3651         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3652         int ret;
3653
3654         if (!key || !key_len)
3655                 return -EINVAL;
3656
3657         ret = ice_aq_get_rss_key
3658                 (hw, vsi->idx,
3659                  (struct ice_aqc_get_set_rss_keys *)key);
3660         if (ret) {
3661                 PMD_DRV_LOG(ERR, "Failed to get RSS key via AQ");
3662                 return -EINVAL;
3663         }
3664         *key_len = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
3665
3666         return 0;
3667 }
3668
3669 static int
3670 ice_rss_hash_update(struct rte_eth_dev *dev,
3671                     struct rte_eth_rss_conf *rss_conf)
3672 {
3673         enum ice_status status = ICE_SUCCESS;
3674         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3675         struct ice_vsi *vsi = pf->main_vsi;
3676
3677         /* set hash key */
3678         status = ice_set_rss_key(vsi, rss_conf->rss_key, rss_conf->rss_key_len);
3679         if (status)
3680                 return status;
3681
3682         /* TODO: hash enable config, ice_add_rss_cfg */
3683         return 0;
3684 }
3685
3686 static int
3687 ice_rss_hash_conf_get(struct rte_eth_dev *dev,
3688                       struct rte_eth_rss_conf *rss_conf)
3689 {
3690         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3691         struct ice_vsi *vsi = pf->main_vsi;
3692
3693         ice_get_rss_key(vsi, rss_conf->rss_key,
3694                         &rss_conf->rss_key_len);
3695
3696         /* TODO: default set to 0 as hf config is not supported now */
3697         rss_conf->rss_hf = 0;
3698         return 0;
3699 }
3700
3701 static int
3702 ice_promisc_enable(struct rte_eth_dev *dev)
3703 {
3704         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3705         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3706         struct ice_vsi *vsi = pf->main_vsi;
3707         enum ice_status status;
3708         uint8_t pmask;
3709         int ret = 0;
3710
3711         pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
3712                 ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
3713
3714         status = ice_set_vsi_promisc(hw, vsi->idx, pmask, 0);
3715         switch (status) {
3716         case ICE_ERR_ALREADY_EXISTS:
3717                 PMD_DRV_LOG(DEBUG, "Promisc mode has already been enabled");
3718         case ICE_SUCCESS:
3719                 break;
3720         default:
3721                 PMD_DRV_LOG(ERR, "Failed to enable promisc, err=%d", status);
3722                 ret = -EAGAIN;
3723         }
3724
3725         return ret;
3726 }
3727
3728 static int
3729 ice_promisc_disable(struct rte_eth_dev *dev)
3730 {
3731         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3732         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3733         struct ice_vsi *vsi = pf->main_vsi;
3734         enum ice_status status;
3735         uint8_t pmask;
3736         int ret = 0;
3737
3738         pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
3739                 ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
3740
3741         status = ice_clear_vsi_promisc(hw, vsi->idx, pmask, 0);
3742         if (status != ICE_SUCCESS) {
3743                 PMD_DRV_LOG(ERR, "Failed to clear promisc, err=%d", status);
3744                 ret = -EAGAIN;
3745         }
3746
3747         return ret;
3748 }
3749
3750 static int
3751 ice_allmulti_enable(struct rte_eth_dev *dev)
3752 {
3753         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3754         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3755         struct ice_vsi *vsi = pf->main_vsi;
3756         enum ice_status status;
3757         uint8_t pmask;
3758         int ret = 0;
3759
3760         pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
3761
3762         status = ice_set_vsi_promisc(hw, vsi->idx, pmask, 0);
3763
3764         switch (status) {
3765         case ICE_ERR_ALREADY_EXISTS:
3766                 PMD_DRV_LOG(DEBUG, "Allmulti has already been enabled");
3767         case ICE_SUCCESS:
3768                 break;
3769         default:
3770                 PMD_DRV_LOG(ERR, "Failed to enable allmulti, err=%d", status);
3771                 ret = -EAGAIN;
3772         }
3773
3774         return ret;
3775 }
3776
3777 static int
3778 ice_allmulti_disable(struct rte_eth_dev *dev)
3779 {
3780         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3781         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3782         struct ice_vsi *vsi = pf->main_vsi;
3783         enum ice_status status;
3784         uint8_t pmask;
3785         int ret = 0;
3786
3787         if (dev->data->promiscuous == 1)
3788                 return 0; /* must remain in all_multicast mode */
3789
3790         pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
3791
3792         status = ice_clear_vsi_promisc(hw, vsi->idx, pmask, 0);
3793         if (status != ICE_SUCCESS) {
3794                 PMD_DRV_LOG(ERR, "Failed to clear allmulti, err=%d", status);
3795                 ret = -EAGAIN;
3796         }
3797
3798         return ret;
3799 }
3800
3801 static int ice_rx_queue_intr_enable(struct rte_eth_dev *dev,
3802                                     uint16_t queue_id)
3803 {
3804         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
3805         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3806         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3807         uint32_t val;
3808         uint16_t msix_intr;
3809
3810         msix_intr = intr_handle->intr_vec[queue_id];
3811
3812         val = GLINT_DYN_CTL_INTENA_M | GLINT_DYN_CTL_CLEARPBA_M |
3813               GLINT_DYN_CTL_ITR_INDX_M;
3814         val &= ~GLINT_DYN_CTL_WB_ON_ITR_M;
3815
3816         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr), val);
3817         rte_intr_ack(&pci_dev->intr_handle);
3818
3819         return 0;
3820 }
3821
3822 static int ice_rx_queue_intr_disable(struct rte_eth_dev *dev,
3823                                      uint16_t queue_id)
3824 {
3825         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
3826         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3827         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3828         uint16_t msix_intr;
3829
3830         msix_intr = intr_handle->intr_vec[queue_id];
3831
3832         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr), GLINT_DYN_CTL_WB_ON_ITR_M);
3833
3834         return 0;
3835 }
3836
3837 static int
3838 ice_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
3839 {
3840         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3841         u32 full_ver;
3842         u8 ver, patch;
3843         u16 build;
3844         int ret;
3845
3846         full_ver = hw->nvm.oem_ver;
3847         ver = (u8)(full_ver >> 24);
3848         build = (u16)((full_ver >> 8) & 0xffff);
3849         patch = (u8)(full_ver & 0xff);
3850
3851         ret = snprintf(fw_version, fw_size,
3852                         "%d.%d%d 0x%08x %d.%d.%d",
3853                         ((hw->nvm.ver >> 12) & 0xf),
3854                         ((hw->nvm.ver >> 4) & 0xff),
3855                         (hw->nvm.ver & 0xf), hw->nvm.eetrack,
3856                         ver, build, patch);
3857
3858         /* add the size of '\0' */
3859         ret += 1;
3860         if (fw_size < (u32)ret)
3861                 return ret;
3862         else
3863                 return 0;
3864 }
3865
3866 static int
3867 ice_vsi_vlan_pvid_set(struct ice_vsi *vsi, struct ice_vsi_vlan_pvid_info *info)
3868 {
3869         struct ice_hw *hw;
3870         struct ice_vsi_ctx ctxt;
3871         uint8_t vlan_flags = 0;
3872         int ret;
3873
3874         if (!vsi || !info) {
3875                 PMD_DRV_LOG(ERR, "invalid parameters");
3876                 return -EINVAL;
3877         }
3878
3879         if (info->on) {
3880                 vsi->info.pvid = info->config.pvid;
3881                 /**
3882                  * If insert pvid is enabled, only tagged pkts are
3883                  * allowed to be sent out.
3884                  */
3885                 vlan_flags = ICE_AQ_VSI_PVLAN_INSERT_PVID |
3886                              ICE_AQ_VSI_VLAN_MODE_UNTAGGED;
3887         } else {
3888                 vsi->info.pvid = 0;
3889                 if (info->config.reject.tagged == 0)
3890                         vlan_flags |= ICE_AQ_VSI_VLAN_MODE_TAGGED;
3891
3892                 if (info->config.reject.untagged == 0)
3893                         vlan_flags |= ICE_AQ_VSI_VLAN_MODE_UNTAGGED;
3894         }
3895         vsi->info.vlan_flags &= ~(ICE_AQ_VSI_PVLAN_INSERT_PVID |
3896                                   ICE_AQ_VSI_VLAN_MODE_M);
3897         vsi->info.vlan_flags |= vlan_flags;
3898         memset(&ctxt, 0, sizeof(ctxt));
3899         rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
3900         ctxt.info.valid_sections =
3901                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
3902         ctxt.vsi_num = vsi->vsi_id;
3903
3904         hw = ICE_VSI_TO_HW(vsi);
3905         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
3906         if (ret != ICE_SUCCESS) {
3907                 PMD_DRV_LOG(ERR,
3908                             "update VSI for VLAN insert failed, err %d",
3909                             ret);
3910                 return -EINVAL;
3911         }
3912
3913         vsi->info.valid_sections |=
3914                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
3915
3916         return ret;
3917 }
3918
3919 static int
3920 ice_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid, int on)
3921 {
3922         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3923         struct ice_vsi *vsi = pf->main_vsi;
3924         struct rte_eth_dev_data *data = pf->dev_data;
3925         struct ice_vsi_vlan_pvid_info info;
3926         int ret;
3927
3928         memset(&info, 0, sizeof(info));
3929         info.on = on;
3930         if (info.on) {
3931                 info.config.pvid = pvid;
3932         } else {
3933                 info.config.reject.tagged =
3934                         data->dev_conf.txmode.hw_vlan_reject_tagged;
3935                 info.config.reject.untagged =
3936                         data->dev_conf.txmode.hw_vlan_reject_untagged;
3937         }
3938
3939         ret = ice_vsi_vlan_pvid_set(vsi, &info);
3940         if (ret < 0) {
3941                 PMD_DRV_LOG(ERR, "Failed to set pvid.");
3942                 return -EINVAL;
3943         }
3944
3945         return 0;
3946 }
3947
3948 static int
3949 ice_get_eeprom_length(struct rte_eth_dev *dev)
3950 {
3951         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3952
3953         /* Convert word count to byte count */
3954         return hw->nvm.sr_words << 1;
3955 }
3956
3957 static int
3958 ice_get_eeprom(struct rte_eth_dev *dev,
3959                struct rte_dev_eeprom_info *eeprom)
3960 {
3961         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3962         uint16_t *data = eeprom->data;
3963         uint16_t first_word, last_word, nwords;
3964         enum ice_status status = ICE_SUCCESS;
3965
3966         first_word = eeprom->offset >> 1;
3967         last_word = (eeprom->offset + eeprom->length - 1) >> 1;
3968         nwords = last_word - first_word + 1;
3969
3970         if (first_word >= hw->nvm.sr_words ||
3971             last_word >= hw->nvm.sr_words) {
3972                 PMD_DRV_LOG(ERR, "Requested EEPROM bytes out of range.");
3973                 return -EINVAL;
3974         }
3975
3976         eeprom->magic = hw->vendor_id | (hw->device_id << 16);
3977
3978         status = ice_read_sr_buf(hw, first_word, &nwords, data);
3979         if (status) {
3980                 PMD_DRV_LOG(ERR, "EEPROM read failed.");
3981                 eeprom->length = sizeof(uint16_t) * nwords;
3982                 return -EIO;
3983         }
3984
3985         return 0;
3986 }
3987
3988 static void
3989 ice_stat_update_32(struct ice_hw *hw,
3990                    uint32_t reg,
3991                    bool offset_loaded,
3992                    uint64_t *offset,
3993                    uint64_t *stat)
3994 {
3995         uint64_t new_data;
3996
3997         new_data = (uint64_t)ICE_READ_REG(hw, reg);
3998         if (!offset_loaded)
3999                 *offset = new_data;
4000
4001         if (new_data >= *offset)
4002                 *stat = (uint64_t)(new_data - *offset);
4003         else
4004                 *stat = (uint64_t)((new_data +
4005                                     ((uint64_t)1 << ICE_32_BIT_WIDTH))
4006                                    - *offset);
4007 }
4008
4009 static void
4010 ice_stat_update_40(struct ice_hw *hw,
4011                    uint32_t hireg,
4012                    uint32_t loreg,
4013                    bool offset_loaded,
4014                    uint64_t *offset,
4015                    uint64_t *stat)
4016 {
4017         uint64_t new_data;
4018
4019         new_data = (uint64_t)ICE_READ_REG(hw, loreg);
4020         new_data |= (uint64_t)(ICE_READ_REG(hw, hireg) & ICE_8_BIT_MASK) <<
4021                     ICE_32_BIT_WIDTH;
4022
4023         if (!offset_loaded)
4024                 *offset = new_data;
4025
4026         if (new_data >= *offset)
4027                 *stat = new_data - *offset;
4028         else
4029                 *stat = (uint64_t)((new_data +
4030                                     ((uint64_t)1 << ICE_40_BIT_WIDTH)) -
4031                                    *offset);
4032
4033         *stat &= ICE_40_BIT_MASK;
4034 }
4035
4036 /* Get all the statistics of a VSI */
4037 static void
4038 ice_update_vsi_stats(struct ice_vsi *vsi)
4039 {
4040         struct ice_eth_stats *oes = &vsi->eth_stats_offset;
4041         struct ice_eth_stats *nes = &vsi->eth_stats;
4042         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4043         int idx = rte_le_to_cpu_16(vsi->vsi_id);
4044
4045         ice_stat_update_40(hw, GLV_GORCH(idx), GLV_GORCL(idx),
4046                            vsi->offset_loaded, &oes->rx_bytes,
4047                            &nes->rx_bytes);
4048         ice_stat_update_40(hw, GLV_UPRCH(idx), GLV_UPRCL(idx),
4049                            vsi->offset_loaded, &oes->rx_unicast,
4050                            &nes->rx_unicast);
4051         ice_stat_update_40(hw, GLV_MPRCH(idx), GLV_MPRCL(idx),
4052                            vsi->offset_loaded, &oes->rx_multicast,
4053                            &nes->rx_multicast);
4054         ice_stat_update_40(hw, GLV_BPRCH(idx), GLV_BPRCL(idx),
4055                            vsi->offset_loaded, &oes->rx_broadcast,
4056                            &nes->rx_broadcast);
4057         /* exclude CRC bytes */
4058         nes->rx_bytes -= (nes->rx_unicast + nes->rx_multicast +
4059                           nes->rx_broadcast) * RTE_ETHER_CRC_LEN;
4060
4061         ice_stat_update_32(hw, GLV_RDPC(idx), vsi->offset_loaded,
4062                            &oes->rx_discards, &nes->rx_discards);
4063         /* GLV_REPC not supported */
4064         /* GLV_RMPC not supported */
4065         ice_stat_update_32(hw, GLSWID_RUPP(idx), vsi->offset_loaded,
4066                            &oes->rx_unknown_protocol,
4067                            &nes->rx_unknown_protocol);
4068         ice_stat_update_40(hw, GLV_GOTCH(idx), GLV_GOTCL(idx),
4069                            vsi->offset_loaded, &oes->tx_bytes,
4070                            &nes->tx_bytes);
4071         ice_stat_update_40(hw, GLV_UPTCH(idx), GLV_UPTCL(idx),
4072                            vsi->offset_loaded, &oes->tx_unicast,
4073                            &nes->tx_unicast);
4074         ice_stat_update_40(hw, GLV_MPTCH(idx), GLV_MPTCL(idx),
4075                            vsi->offset_loaded, &oes->tx_multicast,
4076                            &nes->tx_multicast);
4077         ice_stat_update_40(hw, GLV_BPTCH(idx), GLV_BPTCL(idx),
4078                            vsi->offset_loaded,  &oes->tx_broadcast,
4079                            &nes->tx_broadcast);
4080         /* GLV_TDPC not supported */
4081         ice_stat_update_32(hw, GLV_TEPC(idx), vsi->offset_loaded,
4082                            &oes->tx_errors, &nes->tx_errors);
4083         vsi->offset_loaded = true;
4084
4085         PMD_DRV_LOG(DEBUG, "************** VSI[%u] stats start **************",
4086                     vsi->vsi_id);
4087         PMD_DRV_LOG(DEBUG, "rx_bytes:            %"PRIu64"", nes->rx_bytes);
4088         PMD_DRV_LOG(DEBUG, "rx_unicast:          %"PRIu64"", nes->rx_unicast);
4089         PMD_DRV_LOG(DEBUG, "rx_multicast:        %"PRIu64"", nes->rx_multicast);
4090         PMD_DRV_LOG(DEBUG, "rx_broadcast:        %"PRIu64"", nes->rx_broadcast);
4091         PMD_DRV_LOG(DEBUG, "rx_discards:         %"PRIu64"", nes->rx_discards);
4092         PMD_DRV_LOG(DEBUG, "rx_unknown_protocol: %"PRIu64"",
4093                     nes->rx_unknown_protocol);
4094         PMD_DRV_LOG(DEBUG, "tx_bytes:            %"PRIu64"", nes->tx_bytes);
4095         PMD_DRV_LOG(DEBUG, "tx_unicast:          %"PRIu64"", nes->tx_unicast);
4096         PMD_DRV_LOG(DEBUG, "tx_multicast:        %"PRIu64"", nes->tx_multicast);
4097         PMD_DRV_LOG(DEBUG, "tx_broadcast:        %"PRIu64"", nes->tx_broadcast);
4098         PMD_DRV_LOG(DEBUG, "tx_discards:         %"PRIu64"", nes->tx_discards);
4099         PMD_DRV_LOG(DEBUG, "tx_errors:           %"PRIu64"", nes->tx_errors);
4100         PMD_DRV_LOG(DEBUG, "************** VSI[%u] stats end ****************",
4101                     vsi->vsi_id);
4102 }
4103
4104 static void
4105 ice_read_stats_registers(struct ice_pf *pf, struct ice_hw *hw)
4106 {
4107         struct ice_hw_port_stats *ns = &pf->stats; /* new stats */
4108         struct ice_hw_port_stats *os = &pf->stats_offset; /* old stats */
4109
4110         /* Get statistics of struct ice_eth_stats */
4111         ice_stat_update_40(hw, GLPRT_GORCH(hw->port_info->lport),
4112                            GLPRT_GORCL(hw->port_info->lport),
4113                            pf->offset_loaded, &os->eth.rx_bytes,
4114                            &ns->eth.rx_bytes);
4115         ice_stat_update_40(hw, GLPRT_UPRCH(hw->port_info->lport),
4116                            GLPRT_UPRCL(hw->port_info->lport),
4117                            pf->offset_loaded, &os->eth.rx_unicast,
4118                            &ns->eth.rx_unicast);
4119         ice_stat_update_40(hw, GLPRT_MPRCH(hw->port_info->lport),
4120                            GLPRT_MPRCL(hw->port_info->lport),
4121                            pf->offset_loaded, &os->eth.rx_multicast,
4122                            &ns->eth.rx_multicast);
4123         ice_stat_update_40(hw, GLPRT_BPRCH(hw->port_info->lport),
4124                            GLPRT_BPRCL(hw->port_info->lport),
4125                            pf->offset_loaded, &os->eth.rx_broadcast,
4126                            &ns->eth.rx_broadcast);
4127         ice_stat_update_32(hw, PRTRPB_RDPC,
4128                            pf->offset_loaded, &os->eth.rx_discards,
4129                            &ns->eth.rx_discards);
4130
4131         /* Workaround: CRC size should not be included in byte statistics,
4132          * so subtract RTE_ETHER_CRC_LEN from the byte counter for each rx
4133          * packet.
4134          */
4135         ns->eth.rx_bytes -= (ns->eth.rx_unicast + ns->eth.rx_multicast +
4136                              ns->eth.rx_broadcast) * RTE_ETHER_CRC_LEN;
4137
4138         /* GLPRT_REPC not supported */
4139         /* GLPRT_RMPC not supported */
4140         ice_stat_update_32(hw, GLSWID_RUPP(hw->port_info->lport),
4141                            pf->offset_loaded,
4142                            &os->eth.rx_unknown_protocol,
4143                            &ns->eth.rx_unknown_protocol);
4144         ice_stat_update_40(hw, GLPRT_GOTCH(hw->port_info->lport),
4145                            GLPRT_GOTCL(hw->port_info->lport),
4146                            pf->offset_loaded, &os->eth.tx_bytes,
4147                            &ns->eth.tx_bytes);
4148         ice_stat_update_40(hw, GLPRT_UPTCH(hw->port_info->lport),
4149                            GLPRT_UPTCL(hw->port_info->lport),
4150                            pf->offset_loaded, &os->eth.tx_unicast,
4151                            &ns->eth.tx_unicast);
4152         ice_stat_update_40(hw, GLPRT_MPTCH(hw->port_info->lport),
4153                            GLPRT_MPTCL(hw->port_info->lport),
4154                            pf->offset_loaded, &os->eth.tx_multicast,
4155                            &ns->eth.tx_multicast);
4156         ice_stat_update_40(hw, GLPRT_BPTCH(hw->port_info->lport),
4157                            GLPRT_BPTCL(hw->port_info->lport),
4158                            pf->offset_loaded, &os->eth.tx_broadcast,
4159                            &ns->eth.tx_broadcast);
4160         ns->eth.tx_bytes -= (ns->eth.tx_unicast + ns->eth.tx_multicast +
4161                              ns->eth.tx_broadcast) * RTE_ETHER_CRC_LEN;
4162
4163         /* GLPRT_TEPC not supported */
4164
4165         /* additional port specific stats */
4166         ice_stat_update_32(hw, GLPRT_TDOLD(hw->port_info->lport),
4167                            pf->offset_loaded, &os->tx_dropped_link_down,
4168                            &ns->tx_dropped_link_down);
4169         ice_stat_update_32(hw, GLPRT_CRCERRS(hw->port_info->lport),
4170                            pf->offset_loaded, &os->crc_errors,
4171                            &ns->crc_errors);
4172         ice_stat_update_32(hw, GLPRT_ILLERRC(hw->port_info->lport),
4173                            pf->offset_loaded, &os->illegal_bytes,
4174                            &ns->illegal_bytes);
4175         /* GLPRT_ERRBC not supported */
4176         ice_stat_update_32(hw, GLPRT_MLFC(hw->port_info->lport),
4177                            pf->offset_loaded, &os->mac_local_faults,
4178                            &ns->mac_local_faults);
4179         ice_stat_update_32(hw, GLPRT_MRFC(hw->port_info->lport),
4180                            pf->offset_loaded, &os->mac_remote_faults,
4181                            &ns->mac_remote_faults);
4182
4183         ice_stat_update_32(hw, GLPRT_RLEC(hw->port_info->lport),
4184                            pf->offset_loaded, &os->rx_len_errors,
4185                            &ns->rx_len_errors);
4186
4187         ice_stat_update_32(hw, GLPRT_LXONRXC(hw->port_info->lport),
4188                            pf->offset_loaded, &os->link_xon_rx,
4189                            &ns->link_xon_rx);
4190         ice_stat_update_32(hw, GLPRT_LXOFFRXC(hw->port_info->lport),
4191                            pf->offset_loaded, &os->link_xoff_rx,
4192                            &ns->link_xoff_rx);
4193         ice_stat_update_32(hw, GLPRT_LXONTXC(hw->port_info->lport),
4194                            pf->offset_loaded, &os->link_xon_tx,
4195                            &ns->link_xon_tx);
4196         ice_stat_update_32(hw, GLPRT_LXOFFTXC(hw->port_info->lport),
4197                            pf->offset_loaded, &os->link_xoff_tx,
4198                            &ns->link_xoff_tx);
4199         ice_stat_update_40(hw, GLPRT_PRC64H(hw->port_info->lport),
4200                            GLPRT_PRC64L(hw->port_info->lport),
4201                            pf->offset_loaded, &os->rx_size_64,
4202                            &ns->rx_size_64);
4203         ice_stat_update_40(hw, GLPRT_PRC127H(hw->port_info->lport),
4204                            GLPRT_PRC127L(hw->port_info->lport),
4205                            pf->offset_loaded, &os->rx_size_127,
4206                            &ns->rx_size_127);
4207         ice_stat_update_40(hw, GLPRT_PRC255H(hw->port_info->lport),
4208                            GLPRT_PRC255L(hw->port_info->lport),
4209                            pf->offset_loaded, &os->rx_size_255,
4210                            &ns->rx_size_255);
4211         ice_stat_update_40(hw, GLPRT_PRC511H(hw->port_info->lport),
4212                            GLPRT_PRC511L(hw->port_info->lport),
4213                            pf->offset_loaded, &os->rx_size_511,
4214                            &ns->rx_size_511);
4215         ice_stat_update_40(hw, GLPRT_PRC1023H(hw->port_info->lport),
4216                            GLPRT_PRC1023L(hw->port_info->lport),
4217                            pf->offset_loaded, &os->rx_size_1023,
4218                            &ns->rx_size_1023);
4219         ice_stat_update_40(hw, GLPRT_PRC1522H(hw->port_info->lport),
4220                            GLPRT_PRC1522L(hw->port_info->lport),
4221                            pf->offset_loaded, &os->rx_size_1522,
4222                            &ns->rx_size_1522);
4223         ice_stat_update_40(hw, GLPRT_PRC9522H(hw->port_info->lport),
4224                            GLPRT_PRC9522L(hw->port_info->lport),
4225                            pf->offset_loaded, &os->rx_size_big,
4226                            &ns->rx_size_big);
4227         ice_stat_update_32(hw, GLPRT_RUC(hw->port_info->lport),
4228                            pf->offset_loaded, &os->rx_undersize,
4229                            &ns->rx_undersize);
4230         ice_stat_update_32(hw, GLPRT_RFC(hw->port_info->lport),
4231                            pf->offset_loaded, &os->rx_fragments,
4232                            &ns->rx_fragments);
4233         ice_stat_update_32(hw, GLPRT_ROC(hw->port_info->lport),
4234                            pf->offset_loaded, &os->rx_oversize,
4235                            &ns->rx_oversize);
4236         ice_stat_update_32(hw, GLPRT_RJC(hw->port_info->lport),
4237                            pf->offset_loaded, &os->rx_jabber,
4238                            &ns->rx_jabber);
4239         ice_stat_update_40(hw, GLPRT_PTC64H(hw->port_info->lport),
4240                            GLPRT_PTC64L(hw->port_info->lport),
4241                            pf->offset_loaded, &os->tx_size_64,
4242                            &ns->tx_size_64);
4243         ice_stat_update_40(hw, GLPRT_PTC127H(hw->port_info->lport),
4244                            GLPRT_PTC127L(hw->port_info->lport),
4245                            pf->offset_loaded, &os->tx_size_127,
4246                            &ns->tx_size_127);
4247         ice_stat_update_40(hw, GLPRT_PTC255H(hw->port_info->lport),
4248                            GLPRT_PTC255L(hw->port_info->lport),
4249                            pf->offset_loaded, &os->tx_size_255,
4250                            &ns->tx_size_255);
4251         ice_stat_update_40(hw, GLPRT_PTC511H(hw->port_info->lport),
4252                            GLPRT_PTC511L(hw->port_info->lport),
4253                            pf->offset_loaded, &os->tx_size_511,
4254                            &ns->tx_size_511);
4255         ice_stat_update_40(hw, GLPRT_PTC1023H(hw->port_info->lport),
4256                            GLPRT_PTC1023L(hw->port_info->lport),
4257                            pf->offset_loaded, &os->tx_size_1023,
4258                            &ns->tx_size_1023);
4259         ice_stat_update_40(hw, GLPRT_PTC1522H(hw->port_info->lport),
4260                            GLPRT_PTC1522L(hw->port_info->lport),
4261                            pf->offset_loaded, &os->tx_size_1522,
4262                            &ns->tx_size_1522);
4263         ice_stat_update_40(hw, GLPRT_PTC9522H(hw->port_info->lport),
4264                            GLPRT_PTC9522L(hw->port_info->lport),
4265                            pf->offset_loaded, &os->tx_size_big,
4266                            &ns->tx_size_big);
4267
4268         /* GLPRT_MSPDC not supported */
4269         /* GLPRT_XEC not supported */
4270
4271         pf->offset_loaded = true;
4272
4273         if (pf->main_vsi)
4274                 ice_update_vsi_stats(pf->main_vsi);
4275 }
4276
4277 /* Get all statistics of a port */
4278 static int
4279 ice_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
4280 {
4281         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4282         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4283         struct ice_hw_port_stats *ns = &pf->stats; /* new stats */
4284
4285         /* call read registers - updates values, now write them to struct */
4286         ice_read_stats_registers(pf, hw);
4287
4288         stats->ipackets = pf->main_vsi->eth_stats.rx_unicast +
4289                           pf->main_vsi->eth_stats.rx_multicast +
4290                           pf->main_vsi->eth_stats.rx_broadcast -
4291                           pf->main_vsi->eth_stats.rx_discards;
4292         stats->opackets = ns->eth.tx_unicast +
4293                           ns->eth.tx_multicast +
4294                           ns->eth.tx_broadcast;
4295         stats->ibytes   = pf->main_vsi->eth_stats.rx_bytes;
4296         stats->obytes   = ns->eth.tx_bytes;
4297         stats->oerrors  = ns->eth.tx_errors +
4298                           pf->main_vsi->eth_stats.tx_errors;
4299
4300         /* Rx Errors */
4301         stats->imissed  = ns->eth.rx_discards +
4302                           pf->main_vsi->eth_stats.rx_discards;
4303         stats->ierrors  = ns->crc_errors +
4304                           ns->rx_undersize +
4305                           ns->rx_oversize + ns->rx_fragments + ns->rx_jabber;
4306
4307         PMD_DRV_LOG(DEBUG, "*************** PF stats start *****************");
4308         PMD_DRV_LOG(DEBUG, "rx_bytes:   %"PRIu64"", ns->eth.rx_bytes);
4309         PMD_DRV_LOG(DEBUG, "rx_unicast: %"PRIu64"", ns->eth.rx_unicast);
4310         PMD_DRV_LOG(DEBUG, "rx_multicast:%"PRIu64"", ns->eth.rx_multicast);
4311         PMD_DRV_LOG(DEBUG, "rx_broadcast:%"PRIu64"", ns->eth.rx_broadcast);
4312         PMD_DRV_LOG(DEBUG, "rx_discards:%"PRIu64"", ns->eth.rx_discards);
4313         PMD_DRV_LOG(DEBUG, "vsi rx_discards:%"PRIu64"",
4314                     pf->main_vsi->eth_stats.rx_discards);
4315         PMD_DRV_LOG(DEBUG, "rx_unknown_protocol:  %"PRIu64"",
4316                     ns->eth.rx_unknown_protocol);
4317         PMD_DRV_LOG(DEBUG, "tx_bytes:   %"PRIu64"", ns->eth.tx_bytes);
4318         PMD_DRV_LOG(DEBUG, "tx_unicast: %"PRIu64"", ns->eth.tx_unicast);
4319         PMD_DRV_LOG(DEBUG, "tx_multicast:%"PRIu64"", ns->eth.tx_multicast);
4320         PMD_DRV_LOG(DEBUG, "tx_broadcast:%"PRIu64"", ns->eth.tx_broadcast);
4321         PMD_DRV_LOG(DEBUG, "tx_discards:%"PRIu64"", ns->eth.tx_discards);
4322         PMD_DRV_LOG(DEBUG, "vsi tx_discards:%"PRIu64"",
4323                     pf->main_vsi->eth_stats.tx_discards);
4324         PMD_DRV_LOG(DEBUG, "tx_errors:          %"PRIu64"", ns->eth.tx_errors);
4325
4326         PMD_DRV_LOG(DEBUG, "tx_dropped_link_down:       %"PRIu64"",
4327                     ns->tx_dropped_link_down);
4328         PMD_DRV_LOG(DEBUG, "crc_errors: %"PRIu64"", ns->crc_errors);
4329         PMD_DRV_LOG(DEBUG, "illegal_bytes:      %"PRIu64"",
4330                     ns->illegal_bytes);
4331         PMD_DRV_LOG(DEBUG, "error_bytes:        %"PRIu64"", ns->error_bytes);
4332         PMD_DRV_LOG(DEBUG, "mac_local_faults:   %"PRIu64"",
4333                     ns->mac_local_faults);
4334         PMD_DRV_LOG(DEBUG, "mac_remote_faults:  %"PRIu64"",
4335                     ns->mac_remote_faults);
4336         PMD_DRV_LOG(DEBUG, "link_xon_rx:        %"PRIu64"", ns->link_xon_rx);
4337         PMD_DRV_LOG(DEBUG, "link_xoff_rx:       %"PRIu64"", ns->link_xoff_rx);
4338         PMD_DRV_LOG(DEBUG, "link_xon_tx:        %"PRIu64"", ns->link_xon_tx);
4339         PMD_DRV_LOG(DEBUG, "link_xoff_tx:       %"PRIu64"", ns->link_xoff_tx);
4340         PMD_DRV_LOG(DEBUG, "rx_size_64:         %"PRIu64"", ns->rx_size_64);
4341         PMD_DRV_LOG(DEBUG, "rx_size_127:        %"PRIu64"", ns->rx_size_127);
4342         PMD_DRV_LOG(DEBUG, "rx_size_255:        %"PRIu64"", ns->rx_size_255);
4343         PMD_DRV_LOG(DEBUG, "rx_size_511:        %"PRIu64"", ns->rx_size_511);
4344         PMD_DRV_LOG(DEBUG, "rx_size_1023:       %"PRIu64"", ns->rx_size_1023);
4345         PMD_DRV_LOG(DEBUG, "rx_size_1522:       %"PRIu64"", ns->rx_size_1522);
4346         PMD_DRV_LOG(DEBUG, "rx_size_big:        %"PRIu64"", ns->rx_size_big);
4347         PMD_DRV_LOG(DEBUG, "rx_undersize:       %"PRIu64"", ns->rx_undersize);
4348         PMD_DRV_LOG(DEBUG, "rx_fragments:       %"PRIu64"", ns->rx_fragments);
4349         PMD_DRV_LOG(DEBUG, "rx_oversize:        %"PRIu64"", ns->rx_oversize);
4350         PMD_DRV_LOG(DEBUG, "rx_jabber:          %"PRIu64"", ns->rx_jabber);
4351         PMD_DRV_LOG(DEBUG, "tx_size_64:         %"PRIu64"", ns->tx_size_64);
4352         PMD_DRV_LOG(DEBUG, "tx_size_127:        %"PRIu64"", ns->tx_size_127);
4353         PMD_DRV_LOG(DEBUG, "tx_size_255:        %"PRIu64"", ns->tx_size_255);
4354         PMD_DRV_LOG(DEBUG, "tx_size_511:        %"PRIu64"", ns->tx_size_511);
4355         PMD_DRV_LOG(DEBUG, "tx_size_1023:       %"PRIu64"", ns->tx_size_1023);
4356         PMD_DRV_LOG(DEBUG, "tx_size_1522:       %"PRIu64"", ns->tx_size_1522);
4357         PMD_DRV_LOG(DEBUG, "tx_size_big:        %"PRIu64"", ns->tx_size_big);
4358         PMD_DRV_LOG(DEBUG, "rx_len_errors:      %"PRIu64"", ns->rx_len_errors);
4359         PMD_DRV_LOG(DEBUG, "************* PF stats end ****************");
4360         return 0;
4361 }
4362
4363 /* Reset the statistics */
4364 static int
4365 ice_stats_reset(struct rte_eth_dev *dev)
4366 {
4367         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4368         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4369
4370         /* Mark PF and VSI stats to update the offset, aka "reset" */
4371         pf->offset_loaded = false;
4372         if (pf->main_vsi)
4373                 pf->main_vsi->offset_loaded = false;
4374
4375         /* read the stats, reading current register values into offset */
4376         ice_read_stats_registers(pf, hw);
4377
4378         return 0;
4379 }
4380
4381 static uint32_t
4382 ice_xstats_calc_num(void)
4383 {
4384         uint32_t num;
4385
4386         num = ICE_NB_ETH_XSTATS + ICE_NB_HW_PORT_XSTATS;
4387
4388         return num;
4389 }
4390
4391 static int
4392 ice_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
4393                unsigned int n)
4394 {
4395         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4396         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4397         unsigned int i;
4398         unsigned int count;
4399         struct ice_hw_port_stats *hw_stats = &pf->stats;
4400
4401         count = ice_xstats_calc_num();
4402         if (n < count)
4403                 return count;
4404
4405         ice_read_stats_registers(pf, hw);
4406
4407         if (!xstats)
4408                 return 0;
4409
4410         count = 0;
4411
4412         /* Get stats from ice_eth_stats struct */
4413         for (i = 0; i < ICE_NB_ETH_XSTATS; i++) {
4414                 xstats[count].value =
4415                         *(uint64_t *)((char *)&hw_stats->eth +
4416                                       ice_stats_strings[i].offset);
4417                 xstats[count].id = count;
4418                 count++;
4419         }
4420
4421         /* Get individiual stats from ice_hw_port struct */
4422         for (i = 0; i < ICE_NB_HW_PORT_XSTATS; i++) {
4423                 xstats[count].value =
4424                         *(uint64_t *)((char *)hw_stats +
4425                                       ice_hw_port_strings[i].offset);
4426                 xstats[count].id = count;
4427                 count++;
4428         }
4429
4430         return count;
4431 }
4432
4433 static int ice_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
4434                                 struct rte_eth_xstat_name *xstats_names,
4435                                 __rte_unused unsigned int limit)
4436 {
4437         unsigned int count = 0;
4438         unsigned int i;
4439
4440         if (!xstats_names)
4441                 return ice_xstats_calc_num();
4442
4443         /* Note: limit checked in rte_eth_xstats_names() */
4444
4445         /* Get stats from ice_eth_stats struct */
4446         for (i = 0; i < ICE_NB_ETH_XSTATS; i++) {
4447                 strlcpy(xstats_names[count].name, ice_stats_strings[i].name,
4448                         sizeof(xstats_names[count].name));
4449                 count++;
4450         }
4451
4452         /* Get individiual stats from ice_hw_port struct */
4453         for (i = 0; i < ICE_NB_HW_PORT_XSTATS; i++) {
4454                 strlcpy(xstats_names[count].name, ice_hw_port_strings[i].name,
4455                         sizeof(xstats_names[count].name));
4456                 count++;
4457         }
4458
4459         return count;
4460 }
4461
4462 static int
4463 ice_dev_filter_ctrl(struct rte_eth_dev *dev,
4464                      enum rte_filter_type filter_type,
4465                      enum rte_filter_op filter_op,
4466                      void *arg)
4467 {
4468         int ret = 0;
4469
4470         if (!dev)
4471                 return -EINVAL;
4472
4473         switch (filter_type) {
4474         case RTE_ETH_FILTER_GENERIC:
4475                 if (filter_op != RTE_ETH_FILTER_GET)
4476                         return -EINVAL;
4477                 *(const void **)arg = &ice_flow_ops;
4478                 break;
4479         default:
4480                 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
4481                                         filter_type);
4482                 ret = -EINVAL;
4483                 break;
4484         }
4485
4486         return ret;
4487 }
4488
4489 /* Add UDP tunneling port */
4490 static int
4491 ice_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
4492                              struct rte_eth_udp_tunnel *udp_tunnel)
4493 {
4494         int ret = 0;
4495         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4496
4497         if (udp_tunnel == NULL)
4498                 return -EINVAL;
4499
4500         switch (udp_tunnel->prot_type) {
4501         case RTE_TUNNEL_TYPE_VXLAN:
4502                 ret = ice_create_tunnel(hw, TNL_VXLAN, udp_tunnel->udp_port);
4503                 break;
4504         default:
4505                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
4506                 ret = -EINVAL;
4507                 break;
4508         }
4509
4510         return ret;
4511 }
4512
4513 /* Delete UDP tunneling port */
4514 static int
4515 ice_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
4516                              struct rte_eth_udp_tunnel *udp_tunnel)
4517 {
4518         int ret = 0;
4519         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4520
4521         if (udp_tunnel == NULL)
4522                 return -EINVAL;
4523
4524         switch (udp_tunnel->prot_type) {
4525         case RTE_TUNNEL_TYPE_VXLAN:
4526                 ret = ice_destroy_tunnel(hw, udp_tunnel->udp_port, 0);
4527                 break;
4528         default:
4529                 PMD_DRV_LOG(ERR, "Invalid tunnel type");
4530                 ret = -EINVAL;
4531                 break;
4532         }
4533
4534         return ret;
4535 }
4536
4537 static int
4538 ice_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
4539               struct rte_pci_device *pci_dev)
4540 {
4541         return rte_eth_dev_pci_generic_probe(pci_dev,
4542                                              sizeof(struct ice_adapter),
4543                                              ice_dev_init);
4544 }
4545
4546 static int
4547 ice_pci_remove(struct rte_pci_device *pci_dev)
4548 {
4549         return rte_eth_dev_pci_generic_remove(pci_dev, ice_dev_uninit);
4550 }
4551
4552 static struct rte_pci_driver rte_ice_pmd = {
4553         .id_table = pci_id_ice_map,
4554         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
4555         .probe = ice_pci_probe,
4556         .remove = ice_pci_remove,
4557 };
4558
4559 /**
4560  * Driver initialization routine.
4561  * Invoked once at EAL init time.
4562  * Register itself as the [Poll Mode] Driver of PCI devices.
4563  */
4564 RTE_PMD_REGISTER_PCI(net_ice, rte_ice_pmd);
4565 RTE_PMD_REGISTER_PCI_TABLE(net_ice, pci_id_ice_map);
4566 RTE_PMD_REGISTER_KMOD_DEP(net_ice, "* igb_uio | uio_pci_generic | vfio-pci");
4567 RTE_PMD_REGISTER_PARAM_STRING(net_ice,
4568                               ICE_PROTO_XTR_ARG "=[queue:]<vlan|ipv4|ipv6|ipv6_flow|tcp>"
4569                               ICE_SAFE_MODE_SUPPORT_ARG "=<0|1>"
4570                               ICE_PIPELINE_MODE_SUPPORT_ARG "=<0|1>");
4571
4572 RTE_INIT(ice_init_log)
4573 {
4574         ice_logtype_init = rte_log_register("pmd.net.ice.init");
4575         if (ice_logtype_init >= 0)
4576                 rte_log_set_level(ice_logtype_init, RTE_LOG_NOTICE);
4577         ice_logtype_driver = rte_log_register("pmd.net.ice.driver");
4578         if (ice_logtype_driver >= 0)
4579                 rte_log_set_level(ice_logtype_driver, RTE_LOG_NOTICE);
4580
4581 #ifdef RTE_LIBRTE_ICE_DEBUG_RX
4582         ice_logtype_rx = rte_log_register("pmd.net.ice.rx");
4583         if (ice_logtype_rx >= 0)
4584                 rte_log_set_level(ice_logtype_rx, RTE_LOG_DEBUG);
4585 #endif
4586
4587 #ifdef RTE_LIBRTE_ICE_DEBUG_TX
4588         ice_logtype_tx = rte_log_register("pmd.net.ice.tx");
4589         if (ice_logtype_tx >= 0)
4590                 rte_log_set_level(ice_logtype_tx, RTE_LOG_DEBUG);
4591 #endif
4592
4593 #ifdef RTE_LIBRTE_ICE_DEBUG_TX_FREE
4594         ice_logtype_tx_free = rte_log_register("pmd.net.ice.tx_free");
4595         if (ice_logtype_tx_free >= 0)
4596                 rte_log_set_level(ice_logtype_tx_free, RTE_LOG_DEBUG);
4597 #endif
4598 }