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