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