net/ice: fix crash on device detach
[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_ethdev_pci.h>
6
7 #include "base/ice_sched.h"
8 #include "ice_ethdev.h"
9 #include "ice_rxtx.h"
10
11 #define ICE_MAX_QP_NUM "max_queue_pair_num"
12 #define ICE_DFLT_OUTER_TAG_TYPE ICE_AQ_VSI_OUTER_TAG_VLAN_9100
13
14 int ice_logtype_init;
15 int ice_logtype_driver;
16
17 static int ice_dev_configure(struct rte_eth_dev *dev);
18 static int ice_dev_start(struct rte_eth_dev *dev);
19 static void ice_dev_stop(struct rte_eth_dev *dev);
20 static void ice_dev_close(struct rte_eth_dev *dev);
21 static int ice_dev_reset(struct rte_eth_dev *dev);
22 static void ice_dev_info_get(struct rte_eth_dev *dev,
23                              struct rte_eth_dev_info *dev_info);
24 static int ice_link_update(struct rte_eth_dev *dev,
25                            int wait_to_complete);
26 static int ice_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
27 static int ice_vlan_offload_set(struct rte_eth_dev *dev, int mask);
28 static int ice_vlan_tpid_set(struct rte_eth_dev *dev,
29                              enum rte_vlan_type vlan_type,
30                              uint16_t tpid);
31 static int ice_rss_reta_update(struct rte_eth_dev *dev,
32                                struct rte_eth_rss_reta_entry64 *reta_conf,
33                                uint16_t reta_size);
34 static int ice_rss_reta_query(struct rte_eth_dev *dev,
35                               struct rte_eth_rss_reta_entry64 *reta_conf,
36                               uint16_t reta_size);
37 static int ice_rss_hash_update(struct rte_eth_dev *dev,
38                                struct rte_eth_rss_conf *rss_conf);
39 static int ice_rss_hash_conf_get(struct rte_eth_dev *dev,
40                                  struct rte_eth_rss_conf *rss_conf);
41 static void ice_promisc_enable(struct rte_eth_dev *dev);
42 static void ice_promisc_disable(struct rte_eth_dev *dev);
43 static void ice_allmulti_enable(struct rte_eth_dev *dev);
44 static void ice_allmulti_disable(struct rte_eth_dev *dev);
45 static int ice_vlan_filter_set(struct rte_eth_dev *dev,
46                                uint16_t vlan_id,
47                                int on);
48 static int ice_macaddr_set(struct rte_eth_dev *dev,
49                            struct ether_addr *mac_addr);
50 static int ice_macaddr_add(struct rte_eth_dev *dev,
51                            struct ether_addr *mac_addr,
52                            __rte_unused uint32_t index,
53                            uint32_t pool);
54 static void ice_macaddr_remove(struct rte_eth_dev *dev, uint32_t index);
55 static int ice_rx_queue_intr_enable(struct rte_eth_dev *dev,
56                                     uint16_t queue_id);
57 static int ice_rx_queue_intr_disable(struct rte_eth_dev *dev,
58                                      uint16_t queue_id);
59 static int ice_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
60                               size_t fw_size);
61 static int ice_vlan_pvid_set(struct rte_eth_dev *dev,
62                              uint16_t pvid, int on);
63 static int ice_get_eeprom_length(struct rte_eth_dev *dev);
64 static int ice_get_eeprom(struct rte_eth_dev *dev,
65                           struct rte_dev_eeprom_info *eeprom);
66 static int ice_stats_get(struct rte_eth_dev *dev,
67                          struct rte_eth_stats *stats);
68 static void ice_stats_reset(struct rte_eth_dev *dev);
69 static int ice_xstats_get(struct rte_eth_dev *dev,
70                           struct rte_eth_xstat *xstats, unsigned int n);
71 static int ice_xstats_get_names(struct rte_eth_dev *dev,
72                                 struct rte_eth_xstat_name *xstats_names,
73                                 unsigned int limit);
74
75 static const struct rte_pci_id pci_id_ice_map[] = {
76         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_BACKPLANE) },
77         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_QSFP) },
78         { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_SFP) },
79         { .vendor_id = 0, /* sentinel */ },
80 };
81
82 static const struct eth_dev_ops ice_eth_dev_ops = {
83         .dev_configure                = ice_dev_configure,
84         .dev_start                    = ice_dev_start,
85         .dev_stop                     = ice_dev_stop,
86         .dev_close                    = ice_dev_close,
87         .dev_reset                    = ice_dev_reset,
88         .rx_queue_start               = ice_rx_queue_start,
89         .rx_queue_stop                = ice_rx_queue_stop,
90         .tx_queue_start               = ice_tx_queue_start,
91         .tx_queue_stop                = ice_tx_queue_stop,
92         .rx_queue_setup               = ice_rx_queue_setup,
93         .rx_queue_release             = ice_rx_queue_release,
94         .tx_queue_setup               = ice_tx_queue_setup,
95         .tx_queue_release             = ice_tx_queue_release,
96         .dev_infos_get                = ice_dev_info_get,
97         .dev_supported_ptypes_get     = ice_dev_supported_ptypes_get,
98         .link_update                  = ice_link_update,
99         .mtu_set                      = ice_mtu_set,
100         .mac_addr_set                 = ice_macaddr_set,
101         .mac_addr_add                 = ice_macaddr_add,
102         .mac_addr_remove              = ice_macaddr_remove,
103         .vlan_filter_set              = ice_vlan_filter_set,
104         .vlan_offload_set             = ice_vlan_offload_set,
105         .vlan_tpid_set                = ice_vlan_tpid_set,
106         .reta_update                  = ice_rss_reta_update,
107         .reta_query                   = ice_rss_reta_query,
108         .rss_hash_update              = ice_rss_hash_update,
109         .rss_hash_conf_get            = ice_rss_hash_conf_get,
110         .promiscuous_enable           = ice_promisc_enable,
111         .promiscuous_disable          = ice_promisc_disable,
112         .allmulticast_enable          = ice_allmulti_enable,
113         .allmulticast_disable         = ice_allmulti_disable,
114         .rx_queue_intr_enable         = ice_rx_queue_intr_enable,
115         .rx_queue_intr_disable        = ice_rx_queue_intr_disable,
116         .fw_version_get               = ice_fw_version_get,
117         .vlan_pvid_set                = ice_vlan_pvid_set,
118         .rxq_info_get                 = ice_rxq_info_get,
119         .txq_info_get                 = ice_txq_info_get,
120         .get_eeprom_length            = ice_get_eeprom_length,
121         .get_eeprom                   = ice_get_eeprom,
122         .rx_queue_count               = ice_rx_queue_count,
123         .rx_descriptor_status         = ice_rx_descriptor_status,
124         .tx_descriptor_status         = ice_tx_descriptor_status,
125         .stats_get                    = ice_stats_get,
126         .stats_reset                  = ice_stats_reset,
127         .xstats_get                   = ice_xstats_get,
128         .xstats_get_names             = ice_xstats_get_names,
129         .xstats_reset                 = ice_stats_reset,
130 };
131
132 /* store statistics names and its offset in stats structure */
133 struct ice_xstats_name_off {
134         char name[RTE_ETH_XSTATS_NAME_SIZE];
135         unsigned int offset;
136 };
137
138 static const struct ice_xstats_name_off ice_stats_strings[] = {
139         {"rx_unicast_packets", offsetof(struct ice_eth_stats, rx_unicast)},
140         {"rx_multicast_packets", offsetof(struct ice_eth_stats, rx_multicast)},
141         {"rx_broadcast_packets", offsetof(struct ice_eth_stats, rx_broadcast)},
142         {"rx_dropped", offsetof(struct ice_eth_stats, rx_discards)},
143         {"rx_unknown_protocol_packets", offsetof(struct ice_eth_stats,
144                 rx_unknown_protocol)},
145         {"tx_unicast_packets", offsetof(struct ice_eth_stats, tx_unicast)},
146         {"tx_multicast_packets", offsetof(struct ice_eth_stats, tx_multicast)},
147         {"tx_broadcast_packets", offsetof(struct ice_eth_stats, tx_broadcast)},
148         {"tx_dropped", offsetof(struct ice_eth_stats, tx_discards)},
149 };
150
151 #define ICE_NB_ETH_XSTATS (sizeof(ice_stats_strings) / \
152                 sizeof(ice_stats_strings[0]))
153
154 static const struct ice_xstats_name_off ice_hw_port_strings[] = {
155         {"tx_link_down_dropped", offsetof(struct ice_hw_port_stats,
156                 tx_dropped_link_down)},
157         {"rx_crc_errors", offsetof(struct ice_hw_port_stats, crc_errors)},
158         {"rx_illegal_byte_errors", offsetof(struct ice_hw_port_stats,
159                 illegal_bytes)},
160         {"rx_error_bytes", offsetof(struct ice_hw_port_stats, error_bytes)},
161         {"mac_local_errors", offsetof(struct ice_hw_port_stats,
162                 mac_local_faults)},
163         {"mac_remote_errors", offsetof(struct ice_hw_port_stats,
164                 mac_remote_faults)},
165         {"rx_len_errors", offsetof(struct ice_hw_port_stats,
166                 rx_len_errors)},
167         {"tx_xon_packets", offsetof(struct ice_hw_port_stats, link_xon_tx)},
168         {"rx_xon_packets", offsetof(struct ice_hw_port_stats, link_xon_rx)},
169         {"tx_xoff_packets", offsetof(struct ice_hw_port_stats, link_xoff_tx)},
170         {"rx_xoff_packets", offsetof(struct ice_hw_port_stats, link_xoff_rx)},
171         {"rx_size_64_packets", offsetof(struct ice_hw_port_stats, rx_size_64)},
172         {"rx_size_65_to_127_packets", offsetof(struct ice_hw_port_stats,
173                 rx_size_127)},
174         {"rx_size_128_to_255_packets", offsetof(struct ice_hw_port_stats,
175                 rx_size_255)},
176         {"rx_size_256_to_511_packets", offsetof(struct ice_hw_port_stats,
177                 rx_size_511)},
178         {"rx_size_512_to_1023_packets", offsetof(struct ice_hw_port_stats,
179                 rx_size_1023)},
180         {"rx_size_1024_to_1522_packets", offsetof(struct ice_hw_port_stats,
181                 rx_size_1522)},
182         {"rx_size_1523_to_max_packets", offsetof(struct ice_hw_port_stats,
183                 rx_size_big)},
184         {"rx_undersized_errors", offsetof(struct ice_hw_port_stats,
185                 rx_undersize)},
186         {"rx_oversize_errors", offsetof(struct ice_hw_port_stats,
187                 rx_oversize)},
188         {"rx_mac_short_pkt_dropped", offsetof(struct ice_hw_port_stats,
189                 mac_short_pkt_dropped)},
190         {"rx_fragmented_errors", offsetof(struct ice_hw_port_stats,
191                 rx_fragments)},
192         {"rx_jabber_errors", offsetof(struct ice_hw_port_stats, rx_jabber)},
193         {"tx_size_64_packets", offsetof(struct ice_hw_port_stats, tx_size_64)},
194         {"tx_size_65_to_127_packets", offsetof(struct ice_hw_port_stats,
195                 tx_size_127)},
196         {"tx_size_128_to_255_packets", offsetof(struct ice_hw_port_stats,
197                 tx_size_255)},
198         {"tx_size_256_to_511_packets", offsetof(struct ice_hw_port_stats,
199                 tx_size_511)},
200         {"tx_size_512_to_1023_packets", offsetof(struct ice_hw_port_stats,
201                 tx_size_1023)},
202         {"tx_size_1024_to_1522_packets", offsetof(struct ice_hw_port_stats,
203                 tx_size_1522)},
204         {"tx_size_1523_to_max_packets", offsetof(struct ice_hw_port_stats,
205                 tx_size_big)},
206 };
207
208 #define ICE_NB_HW_PORT_XSTATS (sizeof(ice_hw_port_strings) / \
209                 sizeof(ice_hw_port_strings[0]))
210
211 static void
212 ice_init_controlq_parameter(struct ice_hw *hw)
213 {
214         /* fields for adminq */
215         hw->adminq.num_rq_entries = ICE_ADMINQ_LEN;
216         hw->adminq.num_sq_entries = ICE_ADMINQ_LEN;
217         hw->adminq.rq_buf_size = ICE_ADMINQ_BUF_SZ;
218         hw->adminq.sq_buf_size = ICE_ADMINQ_BUF_SZ;
219
220         /* fields for mailboxq, DPDK used as PF host */
221         hw->mailboxq.num_rq_entries = ICE_MAILBOXQ_LEN;
222         hw->mailboxq.num_sq_entries = ICE_MAILBOXQ_LEN;
223         hw->mailboxq.rq_buf_size = ICE_MAILBOXQ_BUF_SZ;
224         hw->mailboxq.sq_buf_size = ICE_MAILBOXQ_BUF_SZ;
225 }
226
227 static int
228 ice_check_qp_num(const char *key, const char *qp_value,
229                  __rte_unused void *opaque)
230 {
231         char *end = NULL;
232         int num = 0;
233
234         while (isblank(*qp_value))
235                 qp_value++;
236
237         num = strtoul(qp_value, &end, 10);
238
239         if (!num || (*end == '-') || errno) {
240                 PMD_DRV_LOG(WARNING, "invalid value:\"%s\" for key:\"%s\", "
241                             "value must be > 0",
242                             qp_value, key);
243                 return -1;
244         }
245
246         return num;
247 }
248
249 static int
250 ice_config_max_queue_pair_num(struct rte_devargs *devargs)
251 {
252         struct rte_kvargs *kvlist;
253         const char *queue_num_key = ICE_MAX_QP_NUM;
254         int ret;
255
256         if (!devargs)
257                 return 0;
258
259         kvlist = rte_kvargs_parse(devargs->args, NULL);
260         if (!kvlist)
261                 return 0;
262
263         if (!rte_kvargs_count(kvlist, queue_num_key)) {
264                 rte_kvargs_free(kvlist);
265                 return 0;
266         }
267
268         if (rte_kvargs_process(kvlist, queue_num_key,
269                                ice_check_qp_num, NULL) < 0) {
270                 rte_kvargs_free(kvlist);
271                 return 0;
272         }
273         ret = rte_kvargs_process(kvlist, queue_num_key,
274                                  ice_check_qp_num, NULL);
275         rte_kvargs_free(kvlist);
276
277         return ret;
278 }
279
280 static int
281 ice_res_pool_init(struct ice_res_pool_info *pool, uint32_t base,
282                   uint32_t num)
283 {
284         struct pool_entry *entry;
285
286         if (!pool || !num)
287                 return -EINVAL;
288
289         entry = rte_zmalloc(NULL, sizeof(*entry), 0);
290         if (!entry) {
291                 PMD_INIT_LOG(ERR,
292                              "Failed to allocate memory for resource pool");
293                 return -ENOMEM;
294         }
295
296         /* queue heap initialize */
297         pool->num_free = num;
298         pool->num_alloc = 0;
299         pool->base = base;
300         LIST_INIT(&pool->alloc_list);
301         LIST_INIT(&pool->free_list);
302
303         /* Initialize element  */
304         entry->base = 0;
305         entry->len = num;
306
307         LIST_INSERT_HEAD(&pool->free_list, entry, next);
308         return 0;
309 }
310
311 static int
312 ice_res_pool_alloc(struct ice_res_pool_info *pool,
313                    uint16_t num)
314 {
315         struct pool_entry *entry, *valid_entry;
316
317         if (!pool || !num) {
318                 PMD_INIT_LOG(ERR, "Invalid parameter");
319                 return -EINVAL;
320         }
321
322         if (pool->num_free < num) {
323                 PMD_INIT_LOG(ERR, "No resource. ask:%u, available:%u",
324                              num, pool->num_free);
325                 return -ENOMEM;
326         }
327
328         valid_entry = NULL;
329         /* Lookup  in free list and find most fit one */
330         LIST_FOREACH(entry, &pool->free_list, next) {
331                 if (entry->len >= num) {
332                         /* Find best one */
333                         if (entry->len == num) {
334                                 valid_entry = entry;
335                                 break;
336                         }
337                         if (!valid_entry ||
338                             valid_entry->len > entry->len)
339                                 valid_entry = entry;
340                 }
341         }
342
343         /* Not find one to satisfy the request, return */
344         if (!valid_entry) {
345                 PMD_INIT_LOG(ERR, "No valid entry found");
346                 return -ENOMEM;
347         }
348         /**
349          * The entry have equal queue number as requested,
350          * remove it from alloc_list.
351          */
352         if (valid_entry->len == num) {
353                 LIST_REMOVE(valid_entry, next);
354         } else {
355                 /**
356                  * The entry have more numbers than requested,
357                  * create a new entry for alloc_list and minus its
358                  * queue base and number in free_list.
359                  */
360                 entry = rte_zmalloc(NULL, sizeof(*entry), 0);
361                 if (!entry) {
362                         PMD_INIT_LOG(ERR,
363                                      "Failed to allocate memory for "
364                                      "resource pool");
365                         return -ENOMEM;
366                 }
367                 entry->base = valid_entry->base;
368                 entry->len = num;
369                 valid_entry->base += num;
370                 valid_entry->len -= num;
371                 valid_entry = entry;
372         }
373
374         /* Insert it into alloc list, not sorted */
375         LIST_INSERT_HEAD(&pool->alloc_list, valid_entry, next);
376
377         pool->num_free -= valid_entry->len;
378         pool->num_alloc += valid_entry->len;
379
380         return valid_entry->base + pool->base;
381 }
382
383 static void
384 ice_res_pool_destroy(struct ice_res_pool_info *pool)
385 {
386         struct pool_entry *entry, *next_entry;
387
388         if (!pool)
389                 return;
390
391         for (entry = LIST_FIRST(&pool->alloc_list);
392              entry && (next_entry = LIST_NEXT(entry, next), 1);
393              entry = next_entry) {
394                 LIST_REMOVE(entry, next);
395                 rte_free(entry);
396         }
397
398         for (entry = LIST_FIRST(&pool->free_list);
399              entry && (next_entry = LIST_NEXT(entry, next), 1);
400              entry = next_entry) {
401                 LIST_REMOVE(entry, next);
402                 rte_free(entry);
403         }
404
405         pool->num_free = 0;
406         pool->num_alloc = 0;
407         pool->base = 0;
408         LIST_INIT(&pool->alloc_list);
409         LIST_INIT(&pool->free_list);
410 }
411
412 static void
413 ice_vsi_config_default_rss(struct ice_aqc_vsi_props *info)
414 {
415         /* Set VSI LUT selection */
416         info->q_opt_rss = ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI &
417                           ICE_AQ_VSI_Q_OPT_RSS_LUT_M;
418         /* Set Hash scheme */
419         info->q_opt_rss |= ICE_AQ_VSI_Q_OPT_RSS_TPLZ &
420                            ICE_AQ_VSI_Q_OPT_RSS_HASH_M;
421         /* enable TC */
422         info->q_opt_tc = ICE_AQ_VSI_Q_OPT_TC_OVR_M;
423 }
424
425 static enum ice_status
426 ice_vsi_config_tc_queue_mapping(struct ice_vsi *vsi,
427                                 struct ice_aqc_vsi_props *info,
428                                 uint8_t enabled_tcmap)
429 {
430         uint16_t bsf, qp_idx;
431
432         /* default tc 0 now. Multi-TC supporting need to be done later.
433          * Configure TC and queue mapping parameters, for enabled TC,
434          * allocate qpnum_per_tc queues to this traffic.
435          */
436         if (enabled_tcmap != 0x01) {
437                 PMD_INIT_LOG(ERR, "only TC0 is supported");
438                 return -ENOTSUP;
439         }
440
441         vsi->nb_qps = RTE_MIN(vsi->nb_qps, ICE_MAX_Q_PER_TC);
442         bsf = rte_bsf32(vsi->nb_qps);
443         /* Adjust the queue number to actual queues that can be applied */
444         vsi->nb_qps = 0x1 << bsf;
445
446         qp_idx = 0;
447         /* Set tc and queue mapping with VSI */
448         info->tc_mapping[0] = rte_cpu_to_le_16((qp_idx <<
449                                                 ICE_AQ_VSI_TC_Q_OFFSET_S) |
450                                                (bsf << ICE_AQ_VSI_TC_Q_NUM_S));
451
452         /* Associate queue number with VSI */
453         info->mapping_flags |= rte_cpu_to_le_16(ICE_AQ_VSI_Q_MAP_CONTIG);
454         info->q_mapping[0] = rte_cpu_to_le_16(vsi->base_queue);
455         info->q_mapping[1] = rte_cpu_to_le_16(vsi->nb_qps);
456         info->valid_sections |=
457                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
458         /* Set the info.ingress_table and info.egress_table
459          * for UP translate table. Now just set it to 1:1 map by default
460          * -- 0b 111 110 101 100 011 010 001 000 == 0xFAC688
461          */
462 #define ICE_TC_QUEUE_TABLE_DFLT 0x00FAC688
463         info->ingress_table  = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
464         info->egress_table   = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
465         info->outer_up_table = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
466         return 0;
467 }
468
469 static int
470 ice_init_mac_address(struct rte_eth_dev *dev)
471 {
472         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
473
474         if (!is_unicast_ether_addr
475                 ((struct ether_addr *)hw->port_info[0].mac.lan_addr)) {
476                 PMD_INIT_LOG(ERR, "Invalid MAC address");
477                 return -EINVAL;
478         }
479
480         ether_addr_copy((struct ether_addr *)hw->port_info[0].mac.lan_addr,
481                         (struct ether_addr *)hw->port_info[0].mac.perm_addr);
482
483         dev->data->mac_addrs = rte_zmalloc(NULL, sizeof(struct ether_addr), 0);
484         if (!dev->data->mac_addrs) {
485                 PMD_INIT_LOG(ERR,
486                              "Failed to allocate memory to store mac address");
487                 return -ENOMEM;
488         }
489         /* store it to dev data */
490         ether_addr_copy((struct ether_addr *)hw->port_info[0].mac.perm_addr,
491                         &dev->data->mac_addrs[0]);
492         return 0;
493 }
494
495 /* Find out specific MAC filter */
496 static struct ice_mac_filter *
497 ice_find_mac_filter(struct ice_vsi *vsi, struct ether_addr *macaddr)
498 {
499         struct ice_mac_filter *f;
500
501         TAILQ_FOREACH(f, &vsi->mac_list, next) {
502                 if (is_same_ether_addr(macaddr, &f->mac_info.mac_addr))
503                         return f;
504         }
505
506         return NULL;
507 }
508
509 static int
510 ice_add_mac_filter(struct ice_vsi *vsi, struct ether_addr *mac_addr)
511 {
512         struct ice_fltr_list_entry *m_list_itr = NULL;
513         struct ice_mac_filter *f;
514         struct LIST_HEAD_TYPE list_head;
515         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
516         int ret = 0;
517
518         /* If it's added and configured, return */
519         f = ice_find_mac_filter(vsi, mac_addr);
520         if (f) {
521                 PMD_DRV_LOG(INFO, "This MAC filter already exists.");
522                 return 0;
523         }
524
525         INIT_LIST_HEAD(&list_head);
526
527         m_list_itr = (struct ice_fltr_list_entry *)
528                 ice_malloc(hw, sizeof(*m_list_itr));
529         if (!m_list_itr) {
530                 ret = -ENOMEM;
531                 goto DONE;
532         }
533         ice_memcpy(m_list_itr->fltr_info.l_data.mac.mac_addr,
534                    mac_addr, ETH_ALEN, ICE_NONDMA_TO_NONDMA);
535         m_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
536         m_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
537         m_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_MAC;
538         m_list_itr->fltr_info.flag = ICE_FLTR_TX;
539         m_list_itr->fltr_info.vsi_handle = vsi->idx;
540
541         LIST_ADD(&m_list_itr->list_entry, &list_head);
542
543         /* Add the mac */
544         ret = ice_add_mac(hw, &list_head);
545         if (ret != ICE_SUCCESS) {
546                 PMD_DRV_LOG(ERR, "Failed to add MAC filter");
547                 ret = -EINVAL;
548                 goto DONE;
549         }
550         /* Add the mac addr into mac list */
551         f = rte_zmalloc(NULL, sizeof(*f), 0);
552         if (!f) {
553                 PMD_DRV_LOG(ERR, "failed to allocate memory");
554                 ret = -ENOMEM;
555                 goto DONE;
556         }
557         rte_memcpy(&f->mac_info.mac_addr, mac_addr, ETH_ADDR_LEN);
558         TAILQ_INSERT_TAIL(&vsi->mac_list, f, next);
559         vsi->mac_num++;
560
561         ret = 0;
562
563 DONE:
564         rte_free(m_list_itr);
565         return ret;
566 }
567
568 static int
569 ice_remove_mac_filter(struct ice_vsi *vsi, struct ether_addr *mac_addr)
570 {
571         struct ice_fltr_list_entry *m_list_itr = NULL;
572         struct ice_mac_filter *f;
573         struct LIST_HEAD_TYPE list_head;
574         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
575         int ret = 0;
576
577         /* Can't find it, return an error */
578         f = ice_find_mac_filter(vsi, mac_addr);
579         if (!f)
580                 return -EINVAL;
581
582         INIT_LIST_HEAD(&list_head);
583
584         m_list_itr = (struct ice_fltr_list_entry *)
585                 ice_malloc(hw, sizeof(*m_list_itr));
586         if (!m_list_itr) {
587                 ret = -ENOMEM;
588                 goto DONE;
589         }
590         ice_memcpy(m_list_itr->fltr_info.l_data.mac.mac_addr,
591                    mac_addr, ETH_ALEN, ICE_NONDMA_TO_NONDMA);
592         m_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
593         m_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
594         m_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_MAC;
595         m_list_itr->fltr_info.flag = ICE_FLTR_TX;
596         m_list_itr->fltr_info.vsi_handle = vsi->idx;
597
598         LIST_ADD(&m_list_itr->list_entry, &list_head);
599
600         /* remove the mac filter */
601         ret = ice_remove_mac(hw, &list_head);
602         if (ret != ICE_SUCCESS) {
603                 PMD_DRV_LOG(ERR, "Failed to remove MAC filter");
604                 ret = -EINVAL;
605                 goto DONE;
606         }
607
608         /* Remove the mac addr from mac list */
609         TAILQ_REMOVE(&vsi->mac_list, f, next);
610         rte_free(f);
611         vsi->mac_num--;
612
613         ret = 0;
614 DONE:
615         rte_free(m_list_itr);
616         return ret;
617 }
618
619 /* Find out specific VLAN filter */
620 static struct ice_vlan_filter *
621 ice_find_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
622 {
623         struct ice_vlan_filter *f;
624
625         TAILQ_FOREACH(f, &vsi->vlan_list, next) {
626                 if (vlan_id == f->vlan_info.vlan_id)
627                         return f;
628         }
629
630         return NULL;
631 }
632
633 static int
634 ice_add_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
635 {
636         struct ice_fltr_list_entry *v_list_itr = NULL;
637         struct ice_vlan_filter *f;
638         struct LIST_HEAD_TYPE list_head;
639         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
640         int ret = 0;
641
642         if (!vsi || vlan_id > ETHER_MAX_VLAN_ID)
643                 return -EINVAL;
644
645         /* If it's added and configured, return. */
646         f = ice_find_vlan_filter(vsi, vlan_id);
647         if (f) {
648                 PMD_DRV_LOG(INFO, "This VLAN filter already exists.");
649                 return 0;
650         }
651
652         if (!vsi->vlan_anti_spoof_on && !vsi->vlan_filter_on)
653                 return 0;
654
655         INIT_LIST_HEAD(&list_head);
656
657         v_list_itr = (struct ice_fltr_list_entry *)
658                       ice_malloc(hw, sizeof(*v_list_itr));
659         if (!v_list_itr) {
660                 ret = -ENOMEM;
661                 goto DONE;
662         }
663         v_list_itr->fltr_info.l_data.vlan.vlan_id = vlan_id;
664         v_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
665         v_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
666         v_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_VLAN;
667         v_list_itr->fltr_info.flag = ICE_FLTR_TX;
668         v_list_itr->fltr_info.vsi_handle = vsi->idx;
669
670         LIST_ADD(&v_list_itr->list_entry, &list_head);
671
672         /* Add the vlan */
673         ret = ice_add_vlan(hw, &list_head);
674         if (ret != ICE_SUCCESS) {
675                 PMD_DRV_LOG(ERR, "Failed to add VLAN filter");
676                 ret = -EINVAL;
677                 goto DONE;
678         }
679
680         /* Add vlan into vlan list */
681         f = rte_zmalloc(NULL, sizeof(*f), 0);
682         if (!f) {
683                 PMD_DRV_LOG(ERR, "failed to allocate memory");
684                 ret = -ENOMEM;
685                 goto DONE;
686         }
687         f->vlan_info.vlan_id = vlan_id;
688         TAILQ_INSERT_TAIL(&vsi->vlan_list, f, next);
689         vsi->vlan_num++;
690
691         ret = 0;
692
693 DONE:
694         rte_free(v_list_itr);
695         return ret;
696 }
697
698 static int
699 ice_remove_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
700 {
701         struct ice_fltr_list_entry *v_list_itr = NULL;
702         struct ice_vlan_filter *f;
703         struct LIST_HEAD_TYPE list_head;
704         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
705         int ret = 0;
706
707         /**
708          * Vlan 0 is the generic filter for untagged packets
709          * and can't be removed.
710          */
711         if (!vsi || vlan_id == 0 || vlan_id > ETHER_MAX_VLAN_ID)
712                 return -EINVAL;
713
714         /* Can't find it, return an error */
715         f = ice_find_vlan_filter(vsi, vlan_id);
716         if (!f)
717                 return -EINVAL;
718
719         INIT_LIST_HEAD(&list_head);
720
721         v_list_itr = (struct ice_fltr_list_entry *)
722                       ice_malloc(hw, sizeof(*v_list_itr));
723         if (!v_list_itr) {
724                 ret = -ENOMEM;
725                 goto DONE;
726         }
727
728         v_list_itr->fltr_info.l_data.vlan.vlan_id = vlan_id;
729         v_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
730         v_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
731         v_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_VLAN;
732         v_list_itr->fltr_info.flag = ICE_FLTR_TX;
733         v_list_itr->fltr_info.vsi_handle = vsi->idx;
734
735         LIST_ADD(&v_list_itr->list_entry, &list_head);
736
737         /* remove the vlan filter */
738         ret = ice_remove_vlan(hw, &list_head);
739         if (ret != ICE_SUCCESS) {
740                 PMD_DRV_LOG(ERR, "Failed to remove VLAN filter");
741                 ret = -EINVAL;
742                 goto DONE;
743         }
744
745         /* Remove the vlan id from vlan list */
746         TAILQ_REMOVE(&vsi->vlan_list, f, next);
747         rte_free(f);
748         vsi->vlan_num--;
749
750         ret = 0;
751 DONE:
752         rte_free(v_list_itr);
753         return ret;
754 }
755
756 static int
757 ice_remove_all_mac_vlan_filters(struct ice_vsi *vsi)
758 {
759         struct ice_mac_filter *m_f;
760         struct ice_vlan_filter *v_f;
761         int ret = 0;
762
763         if (!vsi || !vsi->mac_num)
764                 return -EINVAL;
765
766         TAILQ_FOREACH(m_f, &vsi->mac_list, next) {
767                 ret = ice_remove_mac_filter(vsi, &m_f->mac_info.mac_addr);
768                 if (ret != ICE_SUCCESS) {
769                         ret = -EINVAL;
770                         goto DONE;
771                 }
772         }
773
774         if (vsi->vlan_num == 0)
775                 return 0;
776
777         TAILQ_FOREACH(v_f, &vsi->vlan_list, next) {
778                 ret = ice_remove_vlan_filter(vsi, v_f->vlan_info.vlan_id);
779                 if (ret != ICE_SUCCESS) {
780                         ret = -EINVAL;
781                         goto DONE;
782                 }
783         }
784
785 DONE:
786         return ret;
787 }
788
789 static int
790 ice_vsi_config_qinq_insertion(struct ice_vsi *vsi, bool on)
791 {
792         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
793         struct ice_vsi_ctx ctxt;
794         uint8_t qinq_flags;
795         int ret = 0;
796
797         /* Check if it has been already on or off */
798         if (vsi->info.valid_sections &
799                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID)) {
800                 if (on) {
801                         if ((vsi->info.outer_tag_flags &
802                              ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST) ==
803                             ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST)
804                                 return 0; /* already on */
805                 } else {
806                         if (!(vsi->info.outer_tag_flags &
807                               ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST))
808                                 return 0; /* already off */
809                 }
810         }
811
812         if (on)
813                 qinq_flags = ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST;
814         else
815                 qinq_flags = 0;
816         /* clear global insertion and use per packet insertion */
817         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_INSERT);
818         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_ACCEPT_HOST);
819         vsi->info.outer_tag_flags |= qinq_flags;
820         /* use default vlan type 0x8100 */
821         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_TYPE_M);
822         vsi->info.outer_tag_flags |= ICE_DFLT_OUTER_TAG_TYPE <<
823                                      ICE_AQ_VSI_OUTER_TAG_TYPE_S;
824         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
825         ctxt.info.valid_sections =
826                         rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
827         ctxt.vsi_num = vsi->vsi_id;
828         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
829         if (ret) {
830                 PMD_DRV_LOG(INFO,
831                             "Update VSI failed to %s qinq stripping",
832                             on ? "enable" : "disable");
833                 return -EINVAL;
834         }
835
836         vsi->info.valid_sections |=
837                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
838
839         return ret;
840 }
841
842 static int
843 ice_vsi_config_qinq_stripping(struct ice_vsi *vsi, bool on)
844 {
845         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
846         struct ice_vsi_ctx ctxt;
847         uint8_t qinq_flags;
848         int ret = 0;
849
850         /* Check if it has been already on or off */
851         if (vsi->info.valid_sections &
852                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID)) {
853                 if (on) {
854                         if ((vsi->info.outer_tag_flags &
855                              ICE_AQ_VSI_OUTER_TAG_MODE_M) ==
856                             ICE_AQ_VSI_OUTER_TAG_COPY)
857                                 return 0; /* already on */
858                 } else {
859                         if ((vsi->info.outer_tag_flags &
860                              ICE_AQ_VSI_OUTER_TAG_MODE_M) ==
861                             ICE_AQ_VSI_OUTER_TAG_NOTHING)
862                                 return 0; /* already off */
863                 }
864         }
865
866         if (on)
867                 qinq_flags = ICE_AQ_VSI_OUTER_TAG_COPY;
868         else
869                 qinq_flags = ICE_AQ_VSI_OUTER_TAG_NOTHING;
870         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_MODE_M);
871         vsi->info.outer_tag_flags |= qinq_flags;
872         /* use default vlan type 0x8100 */
873         vsi->info.outer_tag_flags &= ~(ICE_AQ_VSI_OUTER_TAG_TYPE_M);
874         vsi->info.outer_tag_flags |= ICE_DFLT_OUTER_TAG_TYPE <<
875                                      ICE_AQ_VSI_OUTER_TAG_TYPE_S;
876         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
877         ctxt.info.valid_sections =
878                         rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
879         ctxt.vsi_num = vsi->vsi_id;
880         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
881         if (ret) {
882                 PMD_DRV_LOG(INFO,
883                             "Update VSI failed to %s qinq stripping",
884                             on ? "enable" : "disable");
885                 return -EINVAL;
886         }
887
888         vsi->info.valid_sections |=
889                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
890
891         return ret;
892 }
893
894 static int
895 ice_vsi_config_double_vlan(struct ice_vsi *vsi, int on)
896 {
897         int ret;
898
899         ret = ice_vsi_config_qinq_stripping(vsi, on);
900         if (ret)
901                 PMD_DRV_LOG(ERR, "Fail to set qinq stripping - %d", ret);
902
903         ret = ice_vsi_config_qinq_insertion(vsi, on);
904         if (ret)
905                 PMD_DRV_LOG(ERR, "Fail to set qinq insertion - %d", ret);
906
907         return ret;
908 }
909
910 /* Enable IRQ0 */
911 static void
912 ice_pf_enable_irq0(struct ice_hw *hw)
913 {
914         /* reset the registers */
915         ICE_WRITE_REG(hw, PFINT_OICR_ENA, 0);
916         ICE_READ_REG(hw, PFINT_OICR);
917
918 #ifdef ICE_LSE_SPT
919         ICE_WRITE_REG(hw, PFINT_OICR_ENA,
920                       (uint32_t)(PFINT_OICR_ENA_INT_ENA_M &
921                                  (~PFINT_OICR_LINK_STAT_CHANGE_M)));
922
923         ICE_WRITE_REG(hw, PFINT_OICR_CTL,
924                       (0 & PFINT_OICR_CTL_MSIX_INDX_M) |
925                       ((0 << PFINT_OICR_CTL_ITR_INDX_S) &
926                        PFINT_OICR_CTL_ITR_INDX_M) |
927                       PFINT_OICR_CTL_CAUSE_ENA_M);
928
929         ICE_WRITE_REG(hw, PFINT_FW_CTL,
930                       (0 & PFINT_FW_CTL_MSIX_INDX_M) |
931                       ((0 << PFINT_FW_CTL_ITR_INDX_S) &
932                        PFINT_FW_CTL_ITR_INDX_M) |
933                       PFINT_FW_CTL_CAUSE_ENA_M);
934 #else
935         ICE_WRITE_REG(hw, PFINT_OICR_ENA, PFINT_OICR_ENA_INT_ENA_M);
936 #endif
937
938         ICE_WRITE_REG(hw, GLINT_DYN_CTL(0),
939                       GLINT_DYN_CTL_INTENA_M |
940                       GLINT_DYN_CTL_CLEARPBA_M |
941                       GLINT_DYN_CTL_ITR_INDX_M);
942
943         ice_flush(hw);
944 }
945
946 /* Disable IRQ0 */
947 static void
948 ice_pf_disable_irq0(struct ice_hw *hw)
949 {
950         /* Disable all interrupt types */
951         ICE_WRITE_REG(hw, GLINT_DYN_CTL(0), GLINT_DYN_CTL_WB_ON_ITR_M);
952         ice_flush(hw);
953 }
954
955 #ifdef ICE_LSE_SPT
956 static void
957 ice_handle_aq_msg(struct rte_eth_dev *dev)
958 {
959         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
960         struct ice_ctl_q_info *cq = &hw->adminq;
961         struct ice_rq_event_info event;
962         uint16_t pending, opcode;
963         int ret;
964
965         event.buf_len = ICE_AQ_MAX_BUF_LEN;
966         event.msg_buf = rte_zmalloc(NULL, event.buf_len, 0);
967         if (!event.msg_buf) {
968                 PMD_DRV_LOG(ERR, "Failed to allocate mem");
969                 return;
970         }
971
972         pending = 1;
973         while (pending) {
974                 ret = ice_clean_rq_elem(hw, cq, &event, &pending);
975
976                 if (ret != ICE_SUCCESS) {
977                         PMD_DRV_LOG(INFO,
978                                     "Failed to read msg from AdminQ, "
979                                     "adminq_err: %u",
980                                     hw->adminq.sq_last_status);
981                         break;
982                 }
983                 opcode = rte_le_to_cpu_16(event.desc.opcode);
984
985                 switch (opcode) {
986                 case ice_aqc_opc_get_link_status:
987                         ret = ice_link_update(dev, 0);
988                         if (!ret)
989                                 _rte_eth_dev_callback_process
990                                         (dev, RTE_ETH_EVENT_INTR_LSC, NULL);
991                         break;
992                 default:
993                         PMD_DRV_LOG(DEBUG, "Request %u is not supported yet",
994                                     opcode);
995                         break;
996                 }
997         }
998         rte_free(event.msg_buf);
999 }
1000 #endif
1001
1002 /**
1003  * Interrupt handler triggered by NIC for handling
1004  * specific interrupt.
1005  *
1006  * @param handle
1007  *  Pointer to interrupt handle.
1008  * @param param
1009  *  The address of parameter (struct rte_eth_dev *) regsitered before.
1010  *
1011  * @return
1012  *  void
1013  */
1014 static void
1015 ice_interrupt_handler(void *param)
1016 {
1017         struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1018         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1019         uint32_t oicr;
1020         uint32_t reg;
1021         uint8_t pf_num;
1022         uint8_t event;
1023         uint16_t queue;
1024 #ifdef ICE_LSE_SPT
1025         uint32_t int_fw_ctl;
1026 #endif
1027
1028         /* Disable interrupt */
1029         ice_pf_disable_irq0(hw);
1030
1031         /* read out interrupt causes */
1032         oicr = ICE_READ_REG(hw, PFINT_OICR);
1033 #ifdef ICE_LSE_SPT
1034         int_fw_ctl = ICE_READ_REG(hw, PFINT_FW_CTL);
1035 #endif
1036
1037         /* No interrupt event indicated */
1038         if (!(oicr & PFINT_OICR_INTEVENT_M)) {
1039                 PMD_DRV_LOG(INFO, "No interrupt event");
1040                 goto done;
1041         }
1042
1043 #ifdef ICE_LSE_SPT
1044         if (int_fw_ctl & PFINT_FW_CTL_INTEVENT_M) {
1045                 PMD_DRV_LOG(INFO, "FW_CTL: link state change event");
1046                 ice_handle_aq_msg(dev);
1047         }
1048 #else
1049         if (oicr & PFINT_OICR_LINK_STAT_CHANGE_M) {
1050                 PMD_DRV_LOG(INFO, "OICR: link state change event");
1051                 ice_link_update(dev, 0);
1052         }
1053 #endif
1054
1055         if (oicr & PFINT_OICR_MAL_DETECT_M) {
1056                 PMD_DRV_LOG(WARNING, "OICR: MDD event");
1057                 reg = ICE_READ_REG(hw, GL_MDET_TX_PQM);
1058                 if (reg & GL_MDET_TX_PQM_VALID_M) {
1059                         pf_num = (reg & GL_MDET_TX_PQM_PF_NUM_M) >>
1060                                  GL_MDET_TX_PQM_PF_NUM_S;
1061                         event = (reg & GL_MDET_TX_PQM_MAL_TYPE_M) >>
1062                                 GL_MDET_TX_PQM_MAL_TYPE_S;
1063                         queue = (reg & GL_MDET_TX_PQM_QNUM_M) >>
1064                                 GL_MDET_TX_PQM_QNUM_S;
1065
1066                         PMD_DRV_LOG(WARNING, "Malicious Driver Detection event "
1067                                     "%d by PQM on TX queue %d PF# %d",
1068                                     event, queue, pf_num);
1069                 }
1070
1071                 reg = ICE_READ_REG(hw, GL_MDET_TX_TCLAN);
1072                 if (reg & GL_MDET_TX_TCLAN_VALID_M) {
1073                         pf_num = (reg & GL_MDET_TX_TCLAN_PF_NUM_M) >>
1074                                  GL_MDET_TX_TCLAN_PF_NUM_S;
1075                         event = (reg & GL_MDET_TX_TCLAN_MAL_TYPE_M) >>
1076                                 GL_MDET_TX_TCLAN_MAL_TYPE_S;
1077                         queue = (reg & GL_MDET_TX_TCLAN_QNUM_M) >>
1078                                 GL_MDET_TX_TCLAN_QNUM_S;
1079
1080                         PMD_DRV_LOG(WARNING, "Malicious Driver Detection event "
1081                                     "%d by TCLAN on TX queue %d PF# %d",
1082                                     event, queue, pf_num);
1083                 }
1084         }
1085 done:
1086         /* Enable interrupt */
1087         ice_pf_enable_irq0(hw);
1088         rte_intr_enable(dev->intr_handle);
1089 }
1090
1091 /*  Initialize SW parameters of PF */
1092 static int
1093 ice_pf_sw_init(struct rte_eth_dev *dev)
1094 {
1095         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1096         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1097
1098         if (ice_config_max_queue_pair_num(dev->device->devargs) > 0)
1099                 pf->lan_nb_qp_max =
1100                         ice_config_max_queue_pair_num(dev->device->devargs);
1101         else
1102                 pf->lan_nb_qp_max =
1103                         (uint16_t)RTE_MIN(hw->func_caps.common_cap.num_txq,
1104                                           hw->func_caps.common_cap.num_rxq);
1105
1106         pf->lan_nb_qps = pf->lan_nb_qp_max;
1107
1108         return 0;
1109 }
1110
1111 static struct ice_vsi *
1112 ice_setup_vsi(struct ice_pf *pf, enum ice_vsi_type type)
1113 {
1114         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1115         struct ice_vsi *vsi = NULL;
1116         struct ice_vsi_ctx vsi_ctx;
1117         int ret;
1118         struct ether_addr broadcast = {
1119                 .addr_bytes = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff} };
1120         struct ether_addr mac_addr;
1121         uint16_t max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
1122         uint8_t tc_bitmap = 0x1;
1123
1124         /* hw->num_lports = 1 in NIC mode */
1125         vsi = rte_zmalloc(NULL, sizeof(struct ice_vsi), 0);
1126         if (!vsi)
1127                 return NULL;
1128
1129         vsi->idx = pf->next_vsi_idx;
1130         pf->next_vsi_idx++;
1131         vsi->type = type;
1132         vsi->adapter = ICE_PF_TO_ADAPTER(pf);
1133         vsi->max_macaddrs = ICE_NUM_MACADDR_MAX;
1134         vsi->vlan_anti_spoof_on = 0;
1135         vsi->vlan_filter_on = 1;
1136         TAILQ_INIT(&vsi->mac_list);
1137         TAILQ_INIT(&vsi->vlan_list);
1138
1139         memset(&vsi_ctx, 0, sizeof(vsi_ctx));
1140         /* base_queue in used in queue mapping of VSI add/update command.
1141          * Suppose vsi->base_queue is 0 now, don't consider SRIOV, VMDQ
1142          * cases in the first stage. Only Main VSI.
1143          */
1144         vsi->base_queue = 0;
1145         switch (type) {
1146         case ICE_VSI_PF:
1147                 vsi->nb_qps = pf->lan_nb_qps;
1148                 ice_vsi_config_default_rss(&vsi_ctx.info);
1149                 vsi_ctx.alloc_from_pool = true;
1150                 vsi_ctx.flags = ICE_AQ_VSI_TYPE_PF;
1151                 /* switch_id is queried by get_switch_config aq, which is done
1152                  * by ice_init_hw
1153                  */
1154                 vsi_ctx.info.sw_id = hw->port_info->sw_id;
1155                 vsi_ctx.info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
1156                 /* Allow all untagged or tagged packets */
1157                 vsi_ctx.info.vlan_flags = ICE_AQ_VSI_VLAN_MODE_ALL;
1158                 vsi_ctx.info.vlan_flags |= ICE_AQ_VSI_VLAN_EMOD_NOTHING;
1159                 vsi_ctx.info.q_opt_rss = ICE_AQ_VSI_Q_OPT_RSS_LUT_PF |
1160                                          ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
1161                 /* Enable VLAN/UP trip */
1162                 ret = ice_vsi_config_tc_queue_mapping(vsi,
1163                                                       &vsi_ctx.info,
1164                                                       ICE_DEFAULT_TCMAP);
1165                 if (ret) {
1166                         PMD_INIT_LOG(ERR,
1167                                      "tc queue mapping with vsi failed, "
1168                                      "err = %d",
1169                                      ret);
1170                         goto fail_mem;
1171                 }
1172
1173                 break;
1174         default:
1175                 /* for other types of VSI */
1176                 PMD_INIT_LOG(ERR, "other types of VSI not supported");
1177                 goto fail_mem;
1178         }
1179
1180         /* VF has MSIX interrupt in VF range, don't allocate here */
1181         if (type == ICE_VSI_PF) {
1182                 ret = ice_res_pool_alloc(&pf->msix_pool,
1183                                          RTE_MIN(vsi->nb_qps,
1184                                                  RTE_MAX_RXTX_INTR_VEC_ID));
1185                 if (ret < 0) {
1186                         PMD_INIT_LOG(ERR, "VSI MAIN %d get heap failed %d",
1187                                      vsi->vsi_id, ret);
1188                 }
1189                 vsi->msix_intr = ret;
1190                 vsi->nb_msix = RTE_MIN(vsi->nb_qps, RTE_MAX_RXTX_INTR_VEC_ID);
1191         } else {
1192                 vsi->msix_intr = 0;
1193                 vsi->nb_msix = 0;
1194         }
1195         ret = ice_add_vsi(hw, vsi->idx, &vsi_ctx, NULL);
1196         if (ret != ICE_SUCCESS) {
1197                 PMD_INIT_LOG(ERR, "add vsi failed, err = %d", ret);
1198                 goto fail_mem;
1199         }
1200         /* store vsi information is SW structure */
1201         vsi->vsi_id = vsi_ctx.vsi_num;
1202         vsi->info = vsi_ctx.info;
1203         pf->vsis_allocated = vsi_ctx.vsis_allocd;
1204         pf->vsis_unallocated = vsi_ctx.vsis_unallocated;
1205
1206         /* MAC configuration */
1207         rte_memcpy(pf->dev_addr.addr_bytes,
1208                    hw->port_info->mac.perm_addr,
1209                    ETH_ADDR_LEN);
1210
1211         rte_memcpy(&mac_addr, &pf->dev_addr, ETHER_ADDR_LEN);
1212         ret = ice_add_mac_filter(vsi, &mac_addr);
1213         if (ret != ICE_SUCCESS)
1214                 PMD_INIT_LOG(ERR, "Failed to add dflt MAC filter");
1215
1216         rte_memcpy(&mac_addr, &broadcast, ETHER_ADDR_LEN);
1217         ret = ice_add_mac_filter(vsi, &mac_addr);
1218         if (ret != ICE_SUCCESS)
1219                 PMD_INIT_LOG(ERR, "Failed to add MAC filter");
1220
1221         /* At the beginning, only TC0. */
1222         /* What we need here is the maximam number of the TX queues.
1223          * Currently vsi->nb_qps means it.
1224          * Correct it if any change.
1225          */
1226         max_txqs[0] = vsi->nb_qps;
1227         ret = ice_cfg_vsi_lan(hw->port_info, vsi->idx,
1228                               tc_bitmap, max_txqs);
1229         if (ret != ICE_SUCCESS)
1230                 PMD_INIT_LOG(ERR, "Failed to config vsi sched");
1231
1232         return vsi;
1233 fail_mem:
1234         rte_free(vsi);
1235         pf->next_vsi_idx--;
1236         return NULL;
1237 }
1238
1239 static int
1240 ice_pf_setup(struct ice_pf *pf)
1241 {
1242         struct ice_vsi *vsi;
1243
1244         /* Clear all stats counters */
1245         pf->offset_loaded = FALSE;
1246         memset(&pf->stats, 0, sizeof(struct ice_hw_port_stats));
1247         memset(&pf->stats_offset, 0, sizeof(struct ice_hw_port_stats));
1248         memset(&pf->internal_stats, 0, sizeof(struct ice_eth_stats));
1249         memset(&pf->internal_stats_offset, 0, sizeof(struct ice_eth_stats));
1250
1251         vsi = ice_setup_vsi(pf, ICE_VSI_PF);
1252         if (!vsi) {
1253                 PMD_INIT_LOG(ERR, "Failed to add vsi for PF");
1254                 return -EINVAL;
1255         }
1256
1257         pf->main_vsi = vsi;
1258
1259         return 0;
1260 }
1261
1262 static int
1263 ice_dev_init(struct rte_eth_dev *dev)
1264 {
1265         struct rte_pci_device *pci_dev;
1266         struct rte_intr_handle *intr_handle;
1267         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1268         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1269         struct ice_vsi *vsi;
1270         int ret;
1271
1272         dev->dev_ops = &ice_eth_dev_ops;
1273         dev->rx_pkt_burst = ice_recv_pkts;
1274         dev->tx_pkt_burst = ice_xmit_pkts;
1275         dev->tx_pkt_prepare = ice_prep_pkts;
1276
1277         ice_set_default_ptype_table(dev);
1278         pci_dev = RTE_DEV_TO_PCI(dev->device);
1279         intr_handle = &pci_dev->intr_handle;
1280
1281         pf->adapter = ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1282         pf->adapter->eth_dev = dev;
1283         pf->dev_data = dev->data;
1284         hw->back = pf->adapter;
1285         hw->hw_addr = (uint8_t *)pci_dev->mem_resource[0].addr;
1286         hw->vendor_id = pci_dev->id.vendor_id;
1287         hw->device_id = pci_dev->id.device_id;
1288         hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
1289         hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
1290         hw->bus.device = pci_dev->addr.devid;
1291         hw->bus.func = pci_dev->addr.function;
1292
1293         ice_init_controlq_parameter(hw);
1294
1295         ret = ice_init_hw(hw);
1296         if (ret) {
1297                 PMD_INIT_LOG(ERR, "Failed to initialize HW");
1298                 return -EINVAL;
1299         }
1300
1301         PMD_INIT_LOG(INFO, "FW %d.%d.%05d API %d.%d",
1302                      hw->fw_maj_ver, hw->fw_min_ver, hw->fw_build,
1303                      hw->api_maj_ver, hw->api_min_ver);
1304
1305         ice_pf_sw_init(dev);
1306         ret = ice_init_mac_address(dev);
1307         if (ret) {
1308                 PMD_INIT_LOG(ERR, "Failed to initialize mac address");
1309                 goto err_init_mac;
1310         }
1311
1312         ret = ice_res_pool_init(&pf->msix_pool, 1,
1313                                 hw->func_caps.common_cap.num_msix_vectors - 1);
1314         if (ret) {
1315                 PMD_INIT_LOG(ERR, "Failed to init MSIX pool");
1316                 goto err_msix_pool_init;
1317         }
1318
1319         ret = ice_pf_setup(pf);
1320         if (ret) {
1321                 PMD_INIT_LOG(ERR, "Failed to setup PF");
1322                 goto err_pf_setup;
1323         }
1324
1325         vsi = pf->main_vsi;
1326
1327         /* Disable double vlan by default */
1328         ice_vsi_config_double_vlan(vsi, FALSE);
1329
1330         /* register callback func to eal lib */
1331         rte_intr_callback_register(intr_handle,
1332                                    ice_interrupt_handler, dev);
1333
1334         ice_pf_enable_irq0(hw);
1335
1336         /* enable uio intr after callback register */
1337         rte_intr_enable(intr_handle);
1338
1339         return 0;
1340
1341 err_pf_setup:
1342         ice_res_pool_destroy(&pf->msix_pool);
1343 err_msix_pool_init:
1344         rte_free(dev->data->mac_addrs);
1345 err_init_mac:
1346         ice_sched_cleanup_all(hw);
1347         rte_free(hw->port_info);
1348         ice_shutdown_all_ctrlq(hw);
1349
1350         return ret;
1351 }
1352
1353 static int
1354 ice_release_vsi(struct ice_vsi *vsi)
1355 {
1356         struct ice_hw *hw;
1357         struct ice_vsi_ctx vsi_ctx;
1358         enum ice_status ret;
1359
1360         if (!vsi)
1361                 return 0;
1362
1363         hw = ICE_VSI_TO_HW(vsi);
1364
1365         ice_remove_all_mac_vlan_filters(vsi);
1366
1367         memset(&vsi_ctx, 0, sizeof(vsi_ctx));
1368
1369         vsi_ctx.vsi_num = vsi->vsi_id;
1370         vsi_ctx.info = vsi->info;
1371         ret = ice_free_vsi(hw, vsi->idx, &vsi_ctx, false, NULL);
1372         if (ret != ICE_SUCCESS) {
1373                 PMD_INIT_LOG(ERR, "Failed to free vsi by aq, %u", vsi->vsi_id);
1374                 rte_free(vsi);
1375                 return -1;
1376         }
1377
1378         rte_free(vsi);
1379         return 0;
1380 }
1381
1382 static void
1383 ice_vsi_disable_queues_intr(struct ice_vsi *vsi)
1384 {
1385         struct rte_eth_dev *dev = vsi->adapter->eth_dev;
1386         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
1387         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1388         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1389         uint16_t msix_intr, i;
1390
1391         /* disable interrupt and also clear all the exist config */
1392         for (i = 0; i < vsi->nb_qps; i++) {
1393                 ICE_WRITE_REG(hw, QINT_TQCTL(vsi->base_queue + i), 0);
1394                 ICE_WRITE_REG(hw, QINT_RQCTL(vsi->base_queue + i), 0);
1395                 rte_wmb();
1396         }
1397
1398         if (rte_intr_allow_others(intr_handle))
1399                 /* vfio-pci */
1400                 for (i = 0; i < vsi->nb_msix; i++) {
1401                         msix_intr = vsi->msix_intr + i;
1402                         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr),
1403                                       GLINT_DYN_CTL_WB_ON_ITR_M);
1404                 }
1405         else
1406                 /* igb_uio */
1407                 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0), GLINT_DYN_CTL_WB_ON_ITR_M);
1408 }
1409
1410 static void
1411 ice_dev_stop(struct rte_eth_dev *dev)
1412 {
1413         struct rte_eth_dev_data *data = dev->data;
1414         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1415         struct ice_vsi *main_vsi = pf->main_vsi;
1416         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
1417         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1418         uint16_t i;
1419
1420         /* avoid stopping again */
1421         if (pf->adapter_stopped)
1422                 return;
1423
1424         /* stop and clear all Rx queues */
1425         for (i = 0; i < data->nb_rx_queues; i++)
1426                 ice_rx_queue_stop(dev, i);
1427
1428         /* stop and clear all Tx queues */
1429         for (i = 0; i < data->nb_tx_queues; i++)
1430                 ice_tx_queue_stop(dev, i);
1431
1432         /* disable all queue interrupts */
1433         ice_vsi_disable_queues_intr(main_vsi);
1434
1435         /* Clear all queues and release mbufs */
1436         ice_clear_queues(dev);
1437
1438         /* Clean datapath event and queue/vec mapping */
1439         rte_intr_efd_disable(intr_handle);
1440         if (intr_handle->intr_vec) {
1441                 rte_free(intr_handle->intr_vec);
1442                 intr_handle->intr_vec = NULL;
1443         }
1444
1445         pf->adapter_stopped = true;
1446 }
1447
1448 static void
1449 ice_dev_close(struct rte_eth_dev *dev)
1450 {
1451         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1452         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1453
1454         ice_dev_stop(dev);
1455
1456         /* release all queue resource */
1457         ice_free_queues(dev);
1458
1459         ice_res_pool_destroy(&pf->msix_pool);
1460         ice_release_vsi(pf->main_vsi);
1461         ice_sched_cleanup_all(hw);
1462         rte_free(hw->port_info);
1463         ice_shutdown_all_ctrlq(hw);
1464 }
1465
1466 static int
1467 ice_dev_uninit(struct rte_eth_dev *dev)
1468 {
1469         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
1470         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1471
1472         ice_dev_close(dev);
1473
1474         dev->dev_ops = NULL;
1475         dev->rx_pkt_burst = NULL;
1476         dev->tx_pkt_burst = NULL;
1477
1478         rte_free(dev->data->mac_addrs);
1479         dev->data->mac_addrs = NULL;
1480
1481         /* disable uio intr before callback unregister */
1482         rte_intr_disable(intr_handle);
1483
1484         /* register callback func to eal lib */
1485         rte_intr_callback_unregister(intr_handle,
1486                                      ice_interrupt_handler, dev);
1487
1488         return 0;
1489 }
1490
1491 static int
1492 ice_dev_configure(__rte_unused struct rte_eth_dev *dev)
1493 {
1494         struct ice_adapter *ad =
1495                 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1496
1497         /* Initialize to TRUE. If any of Rx queues doesn't meet the
1498          * bulk allocation or vector Rx preconditions we will reset it.
1499          */
1500         ad->rx_bulk_alloc_allowed = true;
1501         ad->tx_simple_allowed = true;
1502
1503         return 0;
1504 }
1505
1506 static int ice_init_rss(struct ice_pf *pf)
1507 {
1508         struct ice_hw *hw = ICE_PF_TO_HW(pf);
1509         struct ice_vsi *vsi = pf->main_vsi;
1510         struct rte_eth_dev *dev = pf->adapter->eth_dev;
1511         struct rte_eth_rss_conf *rss_conf;
1512         struct ice_aqc_get_set_rss_keys key;
1513         uint16_t i, nb_q;
1514         int ret = 0;
1515
1516         rss_conf = &dev->data->dev_conf.rx_adv_conf.rss_conf;
1517         nb_q = dev->data->nb_rx_queues;
1518         vsi->rss_key_size = ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE;
1519         vsi->rss_lut_size = hw->func_caps.common_cap.rss_table_size;
1520
1521         if (!vsi->rss_key)
1522                 vsi->rss_key = rte_zmalloc(NULL,
1523                                            vsi->rss_key_size, 0);
1524         if (!vsi->rss_lut)
1525                 vsi->rss_lut = rte_zmalloc(NULL,
1526                                            vsi->rss_lut_size, 0);
1527
1528         /* configure RSS key */
1529         if (!rss_conf->rss_key) {
1530                 /* Calculate the default hash key */
1531                 for (i = 0; i <= vsi->rss_key_size; i++)
1532                         vsi->rss_key[i] = (uint8_t)rte_rand();
1533         } else {
1534                 rte_memcpy(vsi->rss_key, rss_conf->rss_key,
1535                            RTE_MIN(rss_conf->rss_key_len,
1536                                    vsi->rss_key_size));
1537         }
1538         rte_memcpy(key.standard_rss_key, vsi->rss_key, vsi->rss_key_size);
1539         ret = ice_aq_set_rss_key(hw, vsi->idx, &key);
1540         if (ret)
1541                 return -EINVAL;
1542
1543         /* init RSS LUT table */
1544         for (i = 0; i < vsi->rss_lut_size; i++)
1545                 vsi->rss_lut[i] = i % nb_q;
1546
1547         ret = ice_aq_set_rss_lut(hw, vsi->idx,
1548                                  ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF,
1549                                  vsi->rss_lut, vsi->rss_lut_size);
1550         if (ret)
1551                 return -EINVAL;
1552
1553         return 0;
1554 }
1555
1556 static void
1557 __vsi_queues_bind_intr(struct ice_vsi *vsi, uint16_t msix_vect,
1558                        int base_queue, int nb_queue)
1559 {
1560         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1561         uint32_t val, val_tx;
1562         int i;
1563
1564         for (i = 0; i < nb_queue; i++) {
1565                 /*do actual bind*/
1566                 val = (msix_vect & QINT_RQCTL_MSIX_INDX_M) |
1567                       (0 < QINT_RQCTL_ITR_INDX_S) | QINT_RQCTL_CAUSE_ENA_M;
1568                 val_tx = (msix_vect & QINT_TQCTL_MSIX_INDX_M) |
1569                          (0 < QINT_TQCTL_ITR_INDX_S) | QINT_TQCTL_CAUSE_ENA_M;
1570
1571                 PMD_DRV_LOG(INFO, "queue %d is binding to vect %d",
1572                             base_queue + i, msix_vect);
1573                 /* set ITR0 value */
1574                 ICE_WRITE_REG(hw, GLINT_ITR(0, msix_vect), 0x10);
1575                 ICE_WRITE_REG(hw, QINT_RQCTL(base_queue + i), val);
1576                 ICE_WRITE_REG(hw, QINT_TQCTL(base_queue + i), val_tx);
1577         }
1578 }
1579
1580 static void
1581 ice_vsi_queues_bind_intr(struct ice_vsi *vsi)
1582 {
1583         struct rte_eth_dev *dev = vsi->adapter->eth_dev;
1584         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
1585         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1586         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1587         uint16_t msix_vect = vsi->msix_intr;
1588         uint16_t nb_msix = RTE_MIN(vsi->nb_msix, intr_handle->nb_efd);
1589         uint16_t queue_idx = 0;
1590         int record = 0;
1591         int i;
1592
1593         /* clear Rx/Tx queue interrupt */
1594         for (i = 0; i < vsi->nb_used_qps; i++) {
1595                 ICE_WRITE_REG(hw, QINT_TQCTL(vsi->base_queue + i), 0);
1596                 ICE_WRITE_REG(hw, QINT_RQCTL(vsi->base_queue + i), 0);
1597         }
1598
1599         /* PF bind interrupt */
1600         if (rte_intr_dp_is_en(intr_handle)) {
1601                 queue_idx = 0;
1602                 record = 1;
1603         }
1604
1605         for (i = 0; i < vsi->nb_used_qps; i++) {
1606                 if (nb_msix <= 1) {
1607                         if (!rte_intr_allow_others(intr_handle))
1608                                 msix_vect = ICE_MISC_VEC_ID;
1609
1610                         /* uio mapping all queue to one msix_vect */
1611                         __vsi_queues_bind_intr(vsi, msix_vect,
1612                                                vsi->base_queue + i,
1613                                                vsi->nb_used_qps - i);
1614
1615                         for (; !!record && i < vsi->nb_used_qps; i++)
1616                                 intr_handle->intr_vec[queue_idx + i] =
1617                                         msix_vect;
1618                         break;
1619                 }
1620
1621                 /* vfio 1:1 queue/msix_vect mapping */
1622                 __vsi_queues_bind_intr(vsi, msix_vect,
1623                                        vsi->base_queue + i, 1);
1624
1625                 if (!!record)
1626                         intr_handle->intr_vec[queue_idx + i] = msix_vect;
1627
1628                 msix_vect++;
1629                 nb_msix--;
1630         }
1631 }
1632
1633 static void
1634 ice_vsi_enable_queues_intr(struct ice_vsi *vsi)
1635 {
1636         struct rte_eth_dev *dev = vsi->adapter->eth_dev;
1637         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
1638         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1639         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1640         uint16_t msix_intr, i;
1641
1642         if (rte_intr_allow_others(intr_handle))
1643                 for (i = 0; i < vsi->nb_used_qps; i++) {
1644                         msix_intr = vsi->msix_intr + i;
1645                         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr),
1646                                       GLINT_DYN_CTL_INTENA_M |
1647                                       GLINT_DYN_CTL_CLEARPBA_M |
1648                                       GLINT_DYN_CTL_ITR_INDX_M |
1649                                       GLINT_DYN_CTL_WB_ON_ITR_M);
1650                 }
1651         else
1652                 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0),
1653                               GLINT_DYN_CTL_INTENA_M |
1654                               GLINT_DYN_CTL_CLEARPBA_M |
1655                               GLINT_DYN_CTL_ITR_INDX_M |
1656                               GLINT_DYN_CTL_WB_ON_ITR_M);
1657 }
1658
1659 static int
1660 ice_rxq_intr_setup(struct rte_eth_dev *dev)
1661 {
1662         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1663         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
1664         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
1665         struct ice_vsi *vsi = pf->main_vsi;
1666         uint32_t intr_vector = 0;
1667
1668         rte_intr_disable(intr_handle);
1669
1670         /* check and configure queue intr-vector mapping */
1671         if ((rte_intr_cap_multiple(intr_handle) ||
1672              !RTE_ETH_DEV_SRIOV(dev).active) &&
1673             dev->data->dev_conf.intr_conf.rxq != 0) {
1674                 intr_vector = dev->data->nb_rx_queues;
1675                 if (intr_vector > ICE_MAX_INTR_QUEUE_NUM) {
1676                         PMD_DRV_LOG(ERR, "At most %d intr queues supported",
1677                                     ICE_MAX_INTR_QUEUE_NUM);
1678                         return -ENOTSUP;
1679                 }
1680                 if (rte_intr_efd_enable(intr_handle, intr_vector))
1681                         return -1;
1682         }
1683
1684         if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
1685                 intr_handle->intr_vec =
1686                 rte_zmalloc(NULL, dev->data->nb_rx_queues * sizeof(int),
1687                             0);
1688                 if (!intr_handle->intr_vec) {
1689                         PMD_DRV_LOG(ERR,
1690                                     "Failed to allocate %d rx_queues intr_vec",
1691                                     dev->data->nb_rx_queues);
1692                         return -ENOMEM;
1693                 }
1694         }
1695
1696         /* Map queues with MSIX interrupt */
1697         vsi->nb_used_qps = dev->data->nb_rx_queues;
1698         ice_vsi_queues_bind_intr(vsi);
1699
1700         /* Enable interrupts for all the queues */
1701         ice_vsi_enable_queues_intr(vsi);
1702
1703         rte_intr_enable(intr_handle);
1704
1705         return 0;
1706 }
1707
1708 static int
1709 ice_dev_start(struct rte_eth_dev *dev)
1710 {
1711         struct rte_eth_dev_data *data = dev->data;
1712         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1713         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1714         struct ice_vsi *vsi = pf->main_vsi;
1715         uint16_t nb_rxq = 0;
1716         uint16_t nb_txq, i;
1717         int ret;
1718
1719         /* program Tx queues' context in hardware */
1720         for (nb_txq = 0; nb_txq < data->nb_tx_queues; nb_txq++) {
1721                 ret = ice_tx_queue_start(dev, nb_txq);
1722                 if (ret) {
1723                         PMD_DRV_LOG(ERR, "fail to start Tx queue %u", nb_txq);
1724                         goto tx_err;
1725                 }
1726         }
1727
1728         /* program Rx queues' context in hardware*/
1729         for (nb_rxq = 0; nb_rxq < data->nb_rx_queues; nb_rxq++) {
1730                 ret = ice_rx_queue_start(dev, nb_rxq);
1731                 if (ret) {
1732                         PMD_DRV_LOG(ERR, "fail to start Rx queue %u", nb_rxq);
1733                         goto rx_err;
1734                 }
1735         }
1736
1737         ret = ice_init_rss(pf);
1738         if (ret) {
1739                 PMD_DRV_LOG(ERR, "Failed to enable rss for PF");
1740                 goto rx_err;
1741         }
1742
1743         ice_set_rx_function(dev);
1744
1745         /* enable Rx interrput and mapping Rx queue to interrupt vector */
1746         if (ice_rxq_intr_setup(dev))
1747                 return -EIO;
1748
1749         /* Enable receiving broadcast packets and transmitting packets */
1750         ret = ice_set_vsi_promisc(hw, vsi->idx,
1751                                   ICE_PROMISC_BCAST_RX | ICE_PROMISC_BCAST_TX |
1752                                   ICE_PROMISC_UCAST_TX | ICE_PROMISC_MCAST_TX,
1753                                   0);
1754         if (ret != ICE_SUCCESS)
1755                 PMD_DRV_LOG(INFO, "fail to set vsi broadcast");
1756
1757         ret = ice_aq_set_event_mask(hw, hw->port_info->lport,
1758                                     ((u16)(ICE_AQ_LINK_EVENT_LINK_FAULT |
1759                                      ICE_AQ_LINK_EVENT_PHY_TEMP_ALARM |
1760                                      ICE_AQ_LINK_EVENT_EXCESSIVE_ERRORS |
1761                                      ICE_AQ_LINK_EVENT_SIGNAL_DETECT |
1762                                      ICE_AQ_LINK_EVENT_AN_COMPLETED |
1763                                      ICE_AQ_LINK_EVENT_PORT_TX_SUSPENDED)),
1764                                      NULL);
1765         if (ret != ICE_SUCCESS)
1766                 PMD_DRV_LOG(WARNING, "Fail to set phy mask");
1767
1768         /* Call get_link_info aq commond to enable/disable LSE */
1769         ice_link_update(dev, 0);
1770
1771         pf->adapter_stopped = false;
1772
1773         return 0;
1774
1775         /* stop the started queues if failed to start all queues */
1776 rx_err:
1777         for (i = 0; i < nb_rxq; i++)
1778                 ice_rx_queue_stop(dev, i);
1779 tx_err:
1780         for (i = 0; i < nb_txq; i++)
1781                 ice_tx_queue_stop(dev, i);
1782
1783         return -EIO;
1784 }
1785
1786 static int
1787 ice_dev_reset(struct rte_eth_dev *dev)
1788 {
1789         int ret;
1790
1791         if (dev->data->sriov.active)
1792                 return -ENOTSUP;
1793
1794         ret = ice_dev_uninit(dev);
1795         if (ret) {
1796                 PMD_INIT_LOG(ERR, "failed to uninit device, status = %d", ret);
1797                 return -ENXIO;
1798         }
1799
1800         ret = ice_dev_init(dev);
1801         if (ret) {
1802                 PMD_INIT_LOG(ERR, "failed to init device, status = %d", ret);
1803                 return -ENXIO;
1804         }
1805
1806         return 0;
1807 }
1808
1809 static void
1810 ice_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
1811 {
1812         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1813         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1814         struct ice_vsi *vsi = pf->main_vsi;
1815         struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
1816
1817         dev_info->min_rx_bufsize = ICE_BUF_SIZE_MIN;
1818         dev_info->max_rx_pktlen = ICE_FRAME_SIZE_MAX;
1819         dev_info->max_rx_queues = vsi->nb_qps;
1820         dev_info->max_tx_queues = vsi->nb_qps;
1821         dev_info->max_mac_addrs = vsi->max_macaddrs;
1822         dev_info->max_vfs = pci_dev->max_vfs;
1823
1824         dev_info->rx_offload_capa =
1825                 DEV_RX_OFFLOAD_VLAN_STRIP |
1826                 DEV_RX_OFFLOAD_IPV4_CKSUM |
1827                 DEV_RX_OFFLOAD_UDP_CKSUM |
1828                 DEV_RX_OFFLOAD_TCP_CKSUM |
1829                 DEV_RX_OFFLOAD_QINQ_STRIP |
1830                 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
1831                 DEV_RX_OFFLOAD_VLAN_EXTEND |
1832                 DEV_RX_OFFLOAD_JUMBO_FRAME |
1833                 DEV_RX_OFFLOAD_KEEP_CRC |
1834                 DEV_RX_OFFLOAD_SCATTER |
1835                 DEV_RX_OFFLOAD_VLAN_FILTER;
1836         dev_info->tx_offload_capa =
1837                 DEV_TX_OFFLOAD_VLAN_INSERT |
1838                 DEV_TX_OFFLOAD_QINQ_INSERT |
1839                 DEV_TX_OFFLOAD_IPV4_CKSUM |
1840                 DEV_TX_OFFLOAD_UDP_CKSUM |
1841                 DEV_TX_OFFLOAD_TCP_CKSUM |
1842                 DEV_TX_OFFLOAD_SCTP_CKSUM |
1843                 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
1844                 DEV_TX_OFFLOAD_TCP_TSO |
1845                 DEV_TX_OFFLOAD_MULTI_SEGS |
1846                 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
1847         dev_info->rx_queue_offload_capa = 0;
1848         dev_info->tx_queue_offload_capa = 0;
1849
1850         dev_info->reta_size = hw->func_caps.common_cap.rss_table_size;
1851         dev_info->hash_key_size = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
1852         dev_info->flow_type_rss_offloads = ICE_RSS_OFFLOAD_ALL;
1853
1854         dev_info->default_rxconf = (struct rte_eth_rxconf) {
1855                 .rx_thresh = {
1856                         .pthresh = ICE_DEFAULT_RX_PTHRESH,
1857                         .hthresh = ICE_DEFAULT_RX_HTHRESH,
1858                         .wthresh = ICE_DEFAULT_RX_WTHRESH,
1859                 },
1860                 .rx_free_thresh = ICE_DEFAULT_RX_FREE_THRESH,
1861                 .rx_drop_en = 0,
1862                 .offloads = 0,
1863         };
1864
1865         dev_info->default_txconf = (struct rte_eth_txconf) {
1866                 .tx_thresh = {
1867                         .pthresh = ICE_DEFAULT_TX_PTHRESH,
1868                         .hthresh = ICE_DEFAULT_TX_HTHRESH,
1869                         .wthresh = ICE_DEFAULT_TX_WTHRESH,
1870                 },
1871                 .tx_free_thresh = ICE_DEFAULT_TX_FREE_THRESH,
1872                 .tx_rs_thresh = ICE_DEFAULT_TX_RSBIT_THRESH,
1873                 .offloads = 0,
1874         };
1875
1876         dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
1877                 .nb_max = ICE_MAX_RING_DESC,
1878                 .nb_min = ICE_MIN_RING_DESC,
1879                 .nb_align = ICE_ALIGN_RING_DESC,
1880         };
1881
1882         dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
1883                 .nb_max = ICE_MAX_RING_DESC,
1884                 .nb_min = ICE_MIN_RING_DESC,
1885                 .nb_align = ICE_ALIGN_RING_DESC,
1886         };
1887
1888         dev_info->speed_capa = ETH_LINK_SPEED_10M |
1889                                ETH_LINK_SPEED_100M |
1890                                ETH_LINK_SPEED_1G |
1891                                ETH_LINK_SPEED_2_5G |
1892                                ETH_LINK_SPEED_5G |
1893                                ETH_LINK_SPEED_10G |
1894                                ETH_LINK_SPEED_20G |
1895                                ETH_LINK_SPEED_25G |
1896                                ETH_LINK_SPEED_40G |
1897                                ETH_LINK_SPEED_50G |
1898                                ETH_LINK_SPEED_100G;
1899
1900         dev_info->nb_rx_queues = dev->data->nb_rx_queues;
1901         dev_info->nb_tx_queues = dev->data->nb_tx_queues;
1902
1903         dev_info->default_rxportconf.burst_size = ICE_RX_MAX_BURST;
1904         dev_info->default_txportconf.burst_size = ICE_TX_MAX_BURST;
1905         dev_info->default_rxportconf.nb_queues = 1;
1906         dev_info->default_txportconf.nb_queues = 1;
1907         dev_info->default_rxportconf.ring_size = ICE_BUF_SIZE_MIN;
1908         dev_info->default_txportconf.ring_size = ICE_BUF_SIZE_MIN;
1909 }
1910
1911 static inline int
1912 ice_atomic_read_link_status(struct rte_eth_dev *dev,
1913                             struct rte_eth_link *link)
1914 {
1915         struct rte_eth_link *dst = link;
1916         struct rte_eth_link *src = &dev->data->dev_link;
1917
1918         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
1919                                 *(uint64_t *)src) == 0)
1920                 return -1;
1921
1922         return 0;
1923 }
1924
1925 static inline int
1926 ice_atomic_write_link_status(struct rte_eth_dev *dev,
1927                              struct rte_eth_link *link)
1928 {
1929         struct rte_eth_link *dst = &dev->data->dev_link;
1930         struct rte_eth_link *src = link;
1931
1932         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
1933                                 *(uint64_t *)src) == 0)
1934                 return -1;
1935
1936         return 0;
1937 }
1938
1939 static int
1940 ice_link_update(struct rte_eth_dev *dev, __rte_unused int wait_to_complete)
1941 {
1942 #define CHECK_INTERVAL 100  /* 100ms */
1943 #define MAX_REPEAT_TIME 10  /* 1s (10 * 100ms) in total */
1944         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1945         struct ice_link_status link_status;
1946         struct rte_eth_link link, old;
1947         int status;
1948         unsigned int rep_cnt = MAX_REPEAT_TIME;
1949         bool enable_lse = dev->data->dev_conf.intr_conf.lsc ? true : false;
1950
1951         memset(&link, 0, sizeof(link));
1952         memset(&old, 0, sizeof(old));
1953         memset(&link_status, 0, sizeof(link_status));
1954         ice_atomic_read_link_status(dev, &old);
1955
1956         do {
1957                 /* Get link status information from hardware */
1958                 status = ice_aq_get_link_info(hw->port_info, enable_lse,
1959                                               &link_status, NULL);
1960                 if (status != ICE_SUCCESS) {
1961                         link.link_speed = ETH_SPEED_NUM_100M;
1962                         link.link_duplex = ETH_LINK_FULL_DUPLEX;
1963                         PMD_DRV_LOG(ERR, "Failed to get link info");
1964                         goto out;
1965                 }
1966
1967                 link.link_status = link_status.link_info & ICE_AQ_LINK_UP;
1968                 if (!wait_to_complete || link.link_status)
1969                         break;
1970
1971                 rte_delay_ms(CHECK_INTERVAL);
1972         } while (--rep_cnt);
1973
1974         if (!link.link_status)
1975                 goto out;
1976
1977         /* Full-duplex operation at all supported speeds */
1978         link.link_duplex = ETH_LINK_FULL_DUPLEX;
1979
1980         /* Parse the link status */
1981         switch (link_status.link_speed) {
1982         case ICE_AQ_LINK_SPEED_10MB:
1983                 link.link_speed = ETH_SPEED_NUM_10M;
1984                 break;
1985         case ICE_AQ_LINK_SPEED_100MB:
1986                 link.link_speed = ETH_SPEED_NUM_100M;
1987                 break;
1988         case ICE_AQ_LINK_SPEED_1000MB:
1989                 link.link_speed = ETH_SPEED_NUM_1G;
1990                 break;
1991         case ICE_AQ_LINK_SPEED_2500MB:
1992                 link.link_speed = ETH_SPEED_NUM_2_5G;
1993                 break;
1994         case ICE_AQ_LINK_SPEED_5GB:
1995                 link.link_speed = ETH_SPEED_NUM_5G;
1996                 break;
1997         case ICE_AQ_LINK_SPEED_10GB:
1998                 link.link_speed = ETH_SPEED_NUM_10G;
1999                 break;
2000         case ICE_AQ_LINK_SPEED_20GB:
2001                 link.link_speed = ETH_SPEED_NUM_20G;
2002                 break;
2003         case ICE_AQ_LINK_SPEED_25GB:
2004                 link.link_speed = ETH_SPEED_NUM_25G;
2005                 break;
2006         case ICE_AQ_LINK_SPEED_40GB:
2007                 link.link_speed = ETH_SPEED_NUM_40G;
2008                 break;
2009         case ICE_AQ_LINK_SPEED_50GB:
2010                 link.link_speed = ETH_SPEED_NUM_50G;
2011                 break;
2012         case ICE_AQ_LINK_SPEED_100GB:
2013                 link.link_speed = ETH_SPEED_NUM_100G;
2014                 break;
2015         case ICE_AQ_LINK_SPEED_UNKNOWN:
2016         default:
2017                 PMD_DRV_LOG(ERR, "Unknown link speed");
2018                 link.link_speed = ETH_SPEED_NUM_NONE;
2019                 break;
2020         }
2021
2022         link.link_autoneg = !(dev->data->dev_conf.link_speeds &
2023                               ETH_LINK_SPEED_FIXED);
2024
2025 out:
2026         ice_atomic_write_link_status(dev, &link);
2027         if (link.link_status == old.link_status)
2028                 return -1;
2029
2030         return 0;
2031 }
2032
2033 static int
2034 ice_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
2035 {
2036         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2037         struct rte_eth_dev_data *dev_data = pf->dev_data;
2038         uint32_t frame_size = mtu + ETHER_HDR_LEN
2039                               + ETHER_CRC_LEN + ICE_VLAN_TAG_SIZE;
2040
2041         /* check if mtu is within the allowed range */
2042         if (mtu < ETHER_MIN_MTU || frame_size > ICE_FRAME_SIZE_MAX)
2043                 return -EINVAL;
2044
2045         /* mtu setting is forbidden if port is start */
2046         if (dev_data->dev_started) {
2047                 PMD_DRV_LOG(ERR,
2048                             "port %d must be stopped before configuration",
2049                             dev_data->port_id);
2050                 return -EBUSY;
2051         }
2052
2053         if (frame_size > ETHER_MAX_LEN)
2054                 dev_data->dev_conf.rxmode.offloads |=
2055                         DEV_RX_OFFLOAD_JUMBO_FRAME;
2056         else
2057                 dev_data->dev_conf.rxmode.offloads &=
2058                         ~DEV_RX_OFFLOAD_JUMBO_FRAME;
2059
2060         dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
2061
2062         return 0;
2063 }
2064
2065 static int ice_macaddr_set(struct rte_eth_dev *dev,
2066                            struct ether_addr *mac_addr)
2067 {
2068         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2069         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2070         struct ice_vsi *vsi = pf->main_vsi;
2071         struct ice_mac_filter *f;
2072         uint8_t flags = 0;
2073         int ret;
2074
2075         if (!is_valid_assigned_ether_addr(mac_addr)) {
2076                 PMD_DRV_LOG(ERR, "Tried to set invalid MAC address.");
2077                 return -EINVAL;
2078         }
2079
2080         TAILQ_FOREACH(f, &vsi->mac_list, next) {
2081                 if (is_same_ether_addr(&pf->dev_addr, &f->mac_info.mac_addr))
2082                         break;
2083         }
2084
2085         if (!f) {
2086                 PMD_DRV_LOG(ERR, "Failed to find filter for default mac");
2087                 return -EIO;
2088         }
2089
2090         ret = ice_remove_mac_filter(vsi, &f->mac_info.mac_addr);
2091         if (ret != ICE_SUCCESS) {
2092                 PMD_DRV_LOG(ERR, "Failed to delete mac filter");
2093                 return -EIO;
2094         }
2095         ret = ice_add_mac_filter(vsi, mac_addr);
2096         if (ret != ICE_SUCCESS) {
2097                 PMD_DRV_LOG(ERR, "Failed to add mac filter");
2098                 return -EIO;
2099         }
2100         memcpy(&pf->dev_addr, mac_addr, ETH_ADDR_LEN);
2101
2102         flags = ICE_AQC_MAN_MAC_UPDATE_LAA_WOL;
2103         ret = ice_aq_manage_mac_write(hw, mac_addr->addr_bytes, flags, NULL);
2104         if (ret != ICE_SUCCESS)
2105                 PMD_DRV_LOG(ERR, "Failed to set manage mac");
2106
2107         return 0;
2108 }
2109
2110 /* Add a MAC address, and update filters */
2111 static int
2112 ice_macaddr_add(struct rte_eth_dev *dev,
2113                 struct ether_addr *mac_addr,
2114                 __rte_unused uint32_t index,
2115                 __rte_unused uint32_t pool)
2116 {
2117         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2118         struct ice_vsi *vsi = pf->main_vsi;
2119         int ret;
2120
2121         ret = ice_add_mac_filter(vsi, mac_addr);
2122         if (ret != ICE_SUCCESS) {
2123                 PMD_DRV_LOG(ERR, "Failed to add MAC filter");
2124                 return -EINVAL;
2125         }
2126
2127         return ICE_SUCCESS;
2128 }
2129
2130 /* Remove a MAC address, and update filters */
2131 static void
2132 ice_macaddr_remove(struct rte_eth_dev *dev, uint32_t index)
2133 {
2134         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2135         struct ice_vsi *vsi = pf->main_vsi;
2136         struct rte_eth_dev_data *data = dev->data;
2137         struct ether_addr *macaddr;
2138         int ret;
2139
2140         macaddr = &data->mac_addrs[index];
2141         ret = ice_remove_mac_filter(vsi, macaddr);
2142         if (ret) {
2143                 PMD_DRV_LOG(ERR, "Failed to remove MAC filter");
2144                 return;
2145         }
2146 }
2147
2148 static int
2149 ice_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
2150 {
2151         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2152         struct ice_vsi *vsi = pf->main_vsi;
2153         int ret;
2154
2155         PMD_INIT_FUNC_TRACE();
2156
2157         if (on) {
2158                 ret = ice_add_vlan_filter(vsi, vlan_id);
2159                 if (ret < 0) {
2160                         PMD_DRV_LOG(ERR, "Failed to add vlan filter");
2161                         return -EINVAL;
2162                 }
2163         } else {
2164                 ret = ice_remove_vlan_filter(vsi, vlan_id);
2165                 if (ret < 0) {
2166                         PMD_DRV_LOG(ERR, "Failed to remove vlan filter");
2167                         return -EINVAL;
2168                 }
2169         }
2170
2171         return 0;
2172 }
2173
2174 /* Configure vlan filter on or off */
2175 static int
2176 ice_vsi_config_vlan_filter(struct ice_vsi *vsi, bool on)
2177 {
2178         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2179         struct ice_vsi_ctx ctxt;
2180         uint8_t sec_flags, sw_flags2;
2181         int ret = 0;
2182
2183         sec_flags = ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
2184                     ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S;
2185         sw_flags2 = ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
2186
2187         if (on) {
2188                 vsi->info.sec_flags |= sec_flags;
2189                 vsi->info.sw_flags2 |= sw_flags2;
2190         } else {
2191                 vsi->info.sec_flags &= ~sec_flags;
2192                 vsi->info.sw_flags2 &= ~sw_flags2;
2193         }
2194         vsi->info.sw_id = hw->port_info->sw_id;
2195         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
2196         ctxt.info.valid_sections =
2197                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_SW_VALID |
2198                                  ICE_AQ_VSI_PROP_SECURITY_VALID);
2199         ctxt.vsi_num = vsi->vsi_id;
2200
2201         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
2202         if (ret) {
2203                 PMD_DRV_LOG(INFO, "Update VSI failed to %s vlan rx pruning",
2204                             on ? "enable" : "disable");
2205                 return -EINVAL;
2206         } else {
2207                 vsi->info.valid_sections |=
2208                         rte_cpu_to_le_16(ICE_AQ_VSI_PROP_SW_VALID |
2209                                          ICE_AQ_VSI_PROP_SECURITY_VALID);
2210         }
2211
2212         /* consist with other drivers, allow untagged packet when vlan filter on */
2213         if (on)
2214                 ret = ice_add_vlan_filter(vsi, 0);
2215         else
2216                 ret = ice_remove_vlan_filter(vsi, 0);
2217
2218         return 0;
2219 }
2220
2221 static int
2222 ice_vsi_config_vlan_stripping(struct ice_vsi *vsi, bool on)
2223 {
2224         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2225         struct ice_vsi_ctx ctxt;
2226         uint8_t vlan_flags;
2227         int ret = 0;
2228
2229         /* Check if it has been already on or off */
2230         if (vsi->info.valid_sections &
2231                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID)) {
2232                 if (on) {
2233                         if ((vsi->info.vlan_flags &
2234                              ICE_AQ_VSI_VLAN_EMOD_M) ==
2235                             ICE_AQ_VSI_VLAN_EMOD_STR_BOTH)
2236                                 return 0; /* already on */
2237                 } else {
2238                         if ((vsi->info.vlan_flags &
2239                              ICE_AQ_VSI_VLAN_EMOD_M) ==
2240                             ICE_AQ_VSI_VLAN_EMOD_NOTHING)
2241                                 return 0; /* already off */
2242                 }
2243         }
2244
2245         if (on)
2246                 vlan_flags = ICE_AQ_VSI_VLAN_EMOD_STR_BOTH;
2247         else
2248                 vlan_flags = ICE_AQ_VSI_VLAN_EMOD_NOTHING;
2249         vsi->info.vlan_flags &= ~(ICE_AQ_VSI_VLAN_EMOD_M);
2250         vsi->info.vlan_flags |= vlan_flags;
2251         (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
2252         ctxt.info.valid_sections =
2253                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
2254         ctxt.vsi_num = vsi->vsi_id;
2255         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
2256         if (ret) {
2257                 PMD_DRV_LOG(INFO, "Update VSI failed to %s vlan stripping",
2258                             on ? "enable" : "disable");
2259                 return -EINVAL;
2260         }
2261
2262         vsi->info.valid_sections |=
2263                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
2264
2265         return ret;
2266 }
2267
2268 static int
2269 ice_vlan_offload_set(struct rte_eth_dev *dev, int mask)
2270 {
2271         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2272         struct ice_vsi *vsi = pf->main_vsi;
2273         struct rte_eth_rxmode *rxmode;
2274
2275         rxmode = &dev->data->dev_conf.rxmode;
2276         if (mask & ETH_VLAN_FILTER_MASK) {
2277                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
2278                         ice_vsi_config_vlan_filter(vsi, TRUE);
2279                 else
2280                         ice_vsi_config_vlan_filter(vsi, FALSE);
2281         }
2282
2283         if (mask & ETH_VLAN_STRIP_MASK) {
2284                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
2285                         ice_vsi_config_vlan_stripping(vsi, TRUE);
2286                 else
2287                         ice_vsi_config_vlan_stripping(vsi, FALSE);
2288         }
2289
2290         if (mask & ETH_VLAN_EXTEND_MASK) {
2291                 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
2292                         ice_vsi_config_double_vlan(vsi, TRUE);
2293                 else
2294                         ice_vsi_config_double_vlan(vsi, FALSE);
2295         }
2296
2297         return 0;
2298 }
2299
2300 static int
2301 ice_vlan_tpid_set(struct rte_eth_dev *dev,
2302                   enum rte_vlan_type vlan_type,
2303                   uint16_t tpid)
2304 {
2305         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2306         uint64_t reg_r = 0, reg_w = 0;
2307         uint16_t reg_id = 0;
2308         int ret = 0;
2309         int qinq = dev->data->dev_conf.rxmode.offloads &
2310                    DEV_RX_OFFLOAD_VLAN_EXTEND;
2311
2312         switch (vlan_type) {
2313         case ETH_VLAN_TYPE_OUTER:
2314                 if (qinq)
2315                         reg_id = 3;
2316                 else
2317                         reg_id = 5;
2318         break;
2319         case ETH_VLAN_TYPE_INNER:
2320                 if (qinq) {
2321                         reg_id = 5;
2322                 } else {
2323                         PMD_DRV_LOG(ERR,
2324                                     "Unsupported vlan type in single vlan.");
2325                         return -EINVAL;
2326                 }
2327                 break;
2328         default:
2329                 PMD_DRV_LOG(ERR, "Unsupported vlan type %d", vlan_type);
2330                 return -EINVAL;
2331         }
2332         reg_r = ICE_READ_REG(hw, GL_SWT_L2TAGCTRL(reg_id));
2333         PMD_DRV_LOG(DEBUG, "Debug read from ICE GL_SWT_L2TAGCTRL[%d]: "
2334                     "0x%08"PRIx64"", reg_id, reg_r);
2335
2336         reg_w = reg_r & (~(GL_SWT_L2TAGCTRL_ETHERTYPE_M));
2337         reg_w |= ((uint64_t)tpid << GL_SWT_L2TAGCTRL_ETHERTYPE_S);
2338         if (reg_r == reg_w) {
2339                 PMD_DRV_LOG(DEBUG, "No need to write");
2340                 return 0;
2341         }
2342
2343         ICE_WRITE_REG(hw, GL_SWT_L2TAGCTRL(reg_id), reg_w);
2344         PMD_DRV_LOG(DEBUG, "Debug write 0x%08"PRIx64" to "
2345                     "ICE GL_SWT_L2TAGCTRL[%d]", reg_w, reg_id);
2346
2347         return ret;
2348 }
2349
2350 static int
2351 ice_get_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2352 {
2353         struct ice_pf *pf = ICE_VSI_TO_PF(vsi);
2354         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2355         int ret;
2356
2357         if (!lut)
2358                 return -EINVAL;
2359
2360         if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
2361                 ret = ice_aq_get_rss_lut(hw, vsi->idx, TRUE,
2362                                          lut, lut_size);
2363                 if (ret) {
2364                         PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
2365                         return -EINVAL;
2366                 }
2367         } else {
2368                 uint64_t *lut_dw = (uint64_t *)lut;
2369                 uint16_t i, lut_size_dw = lut_size / 4;
2370
2371                 for (i = 0; i < lut_size_dw; i++)
2372                         lut_dw[i] = ICE_READ_REG(hw, PFQF_HLUT(i));
2373         }
2374
2375         return 0;
2376 }
2377
2378 static int
2379 ice_set_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
2380 {
2381         struct ice_pf *pf = ICE_VSI_TO_PF(vsi);
2382         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2383         int ret;
2384
2385         if (!vsi || !lut)
2386                 return -EINVAL;
2387
2388         if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
2389                 ret = ice_aq_set_rss_lut(hw, vsi->idx, TRUE,
2390                                          lut, lut_size);
2391                 if (ret) {
2392                         PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
2393                         return -EINVAL;
2394                 }
2395         } else {
2396                 uint64_t *lut_dw = (uint64_t *)lut;
2397                 uint16_t i, lut_size_dw = lut_size / 4;
2398
2399                 for (i = 0; i < lut_size_dw; i++)
2400                         ICE_WRITE_REG(hw, PFQF_HLUT(i), lut_dw[i]);
2401
2402                 ice_flush(hw);
2403         }
2404
2405         return 0;
2406 }
2407
2408 static int
2409 ice_rss_reta_update(struct rte_eth_dev *dev,
2410                     struct rte_eth_rss_reta_entry64 *reta_conf,
2411                     uint16_t reta_size)
2412 {
2413         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2414         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2415         uint16_t i, lut_size = hw->func_caps.common_cap.rss_table_size;
2416         uint16_t idx, shift;
2417         uint8_t *lut;
2418         int ret;
2419
2420         if (reta_size != lut_size ||
2421             reta_size > ETH_RSS_RETA_SIZE_512) {
2422                 PMD_DRV_LOG(ERR,
2423                             "The size of hash lookup table configured (%d)"
2424                             "doesn't match the number hardware can "
2425                             "supported (%d)",
2426                             reta_size, lut_size);
2427                 return -EINVAL;
2428         }
2429
2430         lut = rte_zmalloc(NULL, reta_size, 0);
2431         if (!lut) {
2432                 PMD_DRV_LOG(ERR, "No memory can be allocated");
2433                 return -ENOMEM;
2434         }
2435         ret = ice_get_rss_lut(pf->main_vsi, lut, reta_size);
2436         if (ret)
2437                 goto out;
2438
2439         for (i = 0; i < reta_size; i++) {
2440                 idx = i / RTE_RETA_GROUP_SIZE;
2441                 shift = i % RTE_RETA_GROUP_SIZE;
2442                 if (reta_conf[idx].mask & (1ULL << shift))
2443                         lut[i] = reta_conf[idx].reta[shift];
2444         }
2445         ret = ice_set_rss_lut(pf->main_vsi, lut, reta_size);
2446
2447 out:
2448         rte_free(lut);
2449
2450         return ret;
2451 }
2452
2453 static int
2454 ice_rss_reta_query(struct rte_eth_dev *dev,
2455                    struct rte_eth_rss_reta_entry64 *reta_conf,
2456                    uint16_t reta_size)
2457 {
2458         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2459         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2460         uint16_t i, lut_size = hw->func_caps.common_cap.rss_table_size;
2461         uint16_t idx, shift;
2462         uint8_t *lut;
2463         int ret;
2464
2465         if (reta_size != lut_size ||
2466             reta_size > ETH_RSS_RETA_SIZE_512) {
2467                 PMD_DRV_LOG(ERR,
2468                             "The size of hash lookup table configured (%d)"
2469                             "doesn't match the number hardware can "
2470                             "supported (%d)",
2471                             reta_size, lut_size);
2472                 return -EINVAL;
2473         }
2474
2475         lut = rte_zmalloc(NULL, reta_size, 0);
2476         if (!lut) {
2477                 PMD_DRV_LOG(ERR, "No memory can be allocated");
2478                 return -ENOMEM;
2479         }
2480
2481         ret = ice_get_rss_lut(pf->main_vsi, lut, reta_size);
2482         if (ret)
2483                 goto out;
2484
2485         for (i = 0; i < reta_size; i++) {
2486                 idx = i / RTE_RETA_GROUP_SIZE;
2487                 shift = i % RTE_RETA_GROUP_SIZE;
2488                 if (reta_conf[idx].mask & (1ULL << shift))
2489                         reta_conf[idx].reta[shift] = lut[i];
2490         }
2491
2492 out:
2493         rte_free(lut);
2494
2495         return ret;
2496 }
2497
2498 static int
2499 ice_set_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t key_len)
2500 {
2501         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2502         int ret = 0;
2503
2504         if (!key || key_len == 0) {
2505                 PMD_DRV_LOG(DEBUG, "No key to be configured");
2506                 return 0;
2507         } else if (key_len != (VSIQF_HKEY_MAX_INDEX + 1) *
2508                    sizeof(uint32_t)) {
2509                 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
2510                 return -EINVAL;
2511         }
2512
2513         struct ice_aqc_get_set_rss_keys *key_dw =
2514                 (struct ice_aqc_get_set_rss_keys *)key;
2515
2516         ret = ice_aq_set_rss_key(hw, vsi->idx, key_dw);
2517         if (ret) {
2518                 PMD_DRV_LOG(ERR, "Failed to configure RSS key via AQ");
2519                 ret = -EINVAL;
2520         }
2521
2522         return ret;
2523 }
2524
2525 static int
2526 ice_get_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t *key_len)
2527 {
2528         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2529         int ret;
2530
2531         if (!key || !key_len)
2532                 return -EINVAL;
2533
2534         ret = ice_aq_get_rss_key
2535                 (hw, vsi->idx,
2536                  (struct ice_aqc_get_set_rss_keys *)key);
2537         if (ret) {
2538                 PMD_DRV_LOG(ERR, "Failed to get RSS key via AQ");
2539                 return -EINVAL;
2540         }
2541         *key_len = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
2542
2543         return 0;
2544 }
2545
2546 static int
2547 ice_rss_hash_update(struct rte_eth_dev *dev,
2548                     struct rte_eth_rss_conf *rss_conf)
2549 {
2550         enum ice_status status = ICE_SUCCESS;
2551         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2552         struct ice_vsi *vsi = pf->main_vsi;
2553
2554         /* set hash key */
2555         status = ice_set_rss_key(vsi, rss_conf->rss_key, rss_conf->rss_key_len);
2556         if (status)
2557                 return status;
2558
2559         /* TODO: hash enable config, ice_add_rss_cfg */
2560         return 0;
2561 }
2562
2563 static int
2564 ice_rss_hash_conf_get(struct rte_eth_dev *dev,
2565                       struct rte_eth_rss_conf *rss_conf)
2566 {
2567         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2568         struct ice_vsi *vsi = pf->main_vsi;
2569
2570         ice_get_rss_key(vsi, rss_conf->rss_key,
2571                         &rss_conf->rss_key_len);
2572
2573         /* TODO: default set to 0 as hf config is not supported now */
2574         rss_conf->rss_hf = 0;
2575         return 0;
2576 }
2577
2578 static void
2579 ice_promisc_enable(struct rte_eth_dev *dev)
2580 {
2581         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2582         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2583         struct ice_vsi *vsi = pf->main_vsi;
2584         uint8_t pmask;
2585         uint16_t status;
2586
2587         pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
2588                 ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
2589
2590         status = ice_set_vsi_promisc(hw, vsi->idx, pmask, 0);
2591         if (status != ICE_SUCCESS)
2592                 PMD_DRV_LOG(ERR, "Failed to enable promisc, err=%d", status);
2593 }
2594
2595 static void
2596 ice_promisc_disable(struct rte_eth_dev *dev)
2597 {
2598         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2599         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2600         struct ice_vsi *vsi = pf->main_vsi;
2601         uint16_t status;
2602         uint8_t pmask;
2603
2604         pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
2605                 ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
2606
2607         status = ice_clear_vsi_promisc(hw, vsi->idx, pmask, 0);
2608         if (status != ICE_SUCCESS)
2609                 PMD_DRV_LOG(ERR, "Failed to clear promisc, err=%d", status);
2610 }
2611
2612 static void
2613 ice_allmulti_enable(struct rte_eth_dev *dev)
2614 {
2615         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2616         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2617         struct ice_vsi *vsi = pf->main_vsi;
2618         uint8_t pmask;
2619         uint16_t status;
2620
2621         pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
2622
2623         status = ice_set_vsi_promisc(hw, vsi->idx, pmask, 0);
2624         if (status != ICE_SUCCESS)
2625                 PMD_DRV_LOG(ERR, "Failed to enable allmulti, err=%d", status);
2626 }
2627
2628 static void
2629 ice_allmulti_disable(struct rte_eth_dev *dev)
2630 {
2631         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2632         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2633         struct ice_vsi *vsi = pf->main_vsi;
2634         uint16_t status;
2635         uint8_t pmask;
2636
2637         if (dev->data->promiscuous == 1)
2638                 return; /* must remain in all_multicast mode */
2639
2640         pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
2641
2642         status = ice_clear_vsi_promisc(hw, vsi->idx, pmask, 0);
2643         if (status != ICE_SUCCESS)
2644                 PMD_DRV_LOG(ERR, "Failed to clear allmulti, err=%d", status);
2645 }
2646
2647 static int ice_rx_queue_intr_enable(struct rte_eth_dev *dev,
2648                                     uint16_t queue_id)
2649 {
2650         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2651         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2652         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2653         uint32_t val;
2654         uint16_t msix_intr;
2655
2656         msix_intr = intr_handle->intr_vec[queue_id];
2657
2658         val = GLINT_DYN_CTL_INTENA_M | GLINT_DYN_CTL_CLEARPBA_M |
2659               GLINT_DYN_CTL_ITR_INDX_M;
2660         val &= ~GLINT_DYN_CTL_WB_ON_ITR_M;
2661
2662         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr), val);
2663         rte_intr_enable(&pci_dev->intr_handle);
2664
2665         return 0;
2666 }
2667
2668 static int ice_rx_queue_intr_disable(struct rte_eth_dev *dev,
2669                                      uint16_t queue_id)
2670 {
2671         struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2672         struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2673         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2674         uint16_t msix_intr;
2675
2676         msix_intr = intr_handle->intr_vec[queue_id];
2677
2678         ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr), GLINT_DYN_CTL_WB_ON_ITR_M);
2679
2680         return 0;
2681 }
2682
2683 static int
2684 ice_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
2685 {
2686         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2687         u32 full_ver;
2688         u8 ver, patch;
2689         u16 build;
2690         int ret;
2691
2692         full_ver = hw->nvm.oem_ver;
2693         ver = (u8)(full_ver >> 24);
2694         build = (u16)((full_ver >> 8) & 0xffff);
2695         patch = (u8)(full_ver & 0xff);
2696
2697         ret = snprintf(fw_version, fw_size,
2698                         "%d.%d%d 0x%08x %d.%d.%d",
2699                         ((hw->nvm.ver >> 12) & 0xf),
2700                         ((hw->nvm.ver >> 4) & 0xff),
2701                         (hw->nvm.ver & 0xf), hw->nvm.eetrack,
2702                         ver, build, patch);
2703
2704         /* add the size of '\0' */
2705         ret += 1;
2706         if (fw_size < (u32)ret)
2707                 return ret;
2708         else
2709                 return 0;
2710 }
2711
2712 static int
2713 ice_vsi_vlan_pvid_set(struct ice_vsi *vsi, struct ice_vsi_vlan_pvid_info *info)
2714 {
2715         struct ice_hw *hw;
2716         struct ice_vsi_ctx ctxt;
2717         uint8_t vlan_flags = 0;
2718         int ret;
2719
2720         if (!vsi || !info) {
2721                 PMD_DRV_LOG(ERR, "invalid parameters");
2722                 return -EINVAL;
2723         }
2724
2725         if (info->on) {
2726                 vsi->info.pvid = info->config.pvid;
2727                 /**
2728                  * If insert pvid is enabled, only tagged pkts are
2729                  * allowed to be sent out.
2730                  */
2731                 vlan_flags = ICE_AQ_VSI_PVLAN_INSERT_PVID |
2732                              ICE_AQ_VSI_VLAN_MODE_UNTAGGED;
2733         } else {
2734                 vsi->info.pvid = 0;
2735                 if (info->config.reject.tagged == 0)
2736                         vlan_flags |= ICE_AQ_VSI_VLAN_MODE_TAGGED;
2737
2738                 if (info->config.reject.untagged == 0)
2739                         vlan_flags |= ICE_AQ_VSI_VLAN_MODE_UNTAGGED;
2740         }
2741         vsi->info.vlan_flags &= ~(ICE_AQ_VSI_PVLAN_INSERT_PVID |
2742                                   ICE_AQ_VSI_VLAN_MODE_M);
2743         vsi->info.vlan_flags |= vlan_flags;
2744         memset(&ctxt, 0, sizeof(ctxt));
2745         rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
2746         ctxt.info.valid_sections =
2747                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
2748         ctxt.vsi_num = vsi->vsi_id;
2749
2750         hw = ICE_VSI_TO_HW(vsi);
2751         ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
2752         if (ret != ICE_SUCCESS) {
2753                 PMD_DRV_LOG(ERR,
2754                             "update VSI for VLAN insert failed, err %d",
2755                             ret);
2756                 return -EINVAL;
2757         }
2758
2759         vsi->info.valid_sections |=
2760                 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
2761
2762         return ret;
2763 }
2764
2765 static int
2766 ice_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid, int on)
2767 {
2768         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2769         struct ice_vsi *vsi = pf->main_vsi;
2770         struct rte_eth_dev_data *data = pf->dev_data;
2771         struct ice_vsi_vlan_pvid_info info;
2772         int ret;
2773
2774         memset(&info, 0, sizeof(info));
2775         info.on = on;
2776         if (info.on) {
2777                 info.config.pvid = pvid;
2778         } else {
2779                 info.config.reject.tagged =
2780                         data->dev_conf.txmode.hw_vlan_reject_tagged;
2781                 info.config.reject.untagged =
2782                         data->dev_conf.txmode.hw_vlan_reject_untagged;
2783         }
2784
2785         ret = ice_vsi_vlan_pvid_set(vsi, &info);
2786         if (ret < 0) {
2787                 PMD_DRV_LOG(ERR, "Failed to set pvid.");
2788                 return -EINVAL;
2789         }
2790
2791         return 0;
2792 }
2793
2794 static int
2795 ice_get_eeprom_length(struct rte_eth_dev *dev)
2796 {
2797         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2798
2799         /* Convert word count to byte count */
2800         return hw->nvm.sr_words << 1;
2801 }
2802
2803 static int
2804 ice_get_eeprom(struct rte_eth_dev *dev,
2805                struct rte_dev_eeprom_info *eeprom)
2806 {
2807         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2808         uint16_t *data = eeprom->data;
2809         uint16_t offset, length, i;
2810         enum ice_status ret_code = ICE_SUCCESS;
2811
2812         offset = eeprom->offset >> 1;
2813         length = eeprom->length >> 1;
2814
2815         if (offset > hw->nvm.sr_words ||
2816             offset + length > hw->nvm.sr_words) {
2817                 PMD_DRV_LOG(ERR, "Requested EEPROM bytes out of range.");
2818                 return -EINVAL;
2819         }
2820
2821         eeprom->magic = hw->vendor_id | (hw->device_id << 16);
2822
2823         for (i = 0; i < length; i++) {
2824                 ret_code = ice_read_sr_word(hw, offset + i, &data[i]);
2825                 if (ret_code != ICE_SUCCESS) {
2826                         PMD_DRV_LOG(ERR, "EEPROM read failed.");
2827                         return -EIO;
2828                 }
2829         }
2830
2831         return 0;
2832 }
2833
2834 static void
2835 ice_stat_update_32(struct ice_hw *hw,
2836                    uint32_t reg,
2837                    bool offset_loaded,
2838                    uint64_t *offset,
2839                    uint64_t *stat)
2840 {
2841         uint64_t new_data;
2842
2843         new_data = (uint64_t)ICE_READ_REG(hw, reg);
2844         if (!offset_loaded)
2845                 *offset = new_data;
2846
2847         if (new_data >= *offset)
2848                 *stat = (uint64_t)(new_data - *offset);
2849         else
2850                 *stat = (uint64_t)((new_data +
2851                                     ((uint64_t)1 << ICE_32_BIT_WIDTH))
2852                                    - *offset);
2853 }
2854
2855 static void
2856 ice_stat_update_40(struct ice_hw *hw,
2857                    uint32_t hireg,
2858                    uint32_t loreg,
2859                    bool offset_loaded,
2860                    uint64_t *offset,
2861                    uint64_t *stat)
2862 {
2863         uint64_t new_data;
2864
2865         new_data = (uint64_t)ICE_READ_REG(hw, loreg);
2866         new_data |= (uint64_t)(ICE_READ_REG(hw, hireg) & ICE_8_BIT_MASK) <<
2867                     ICE_32_BIT_WIDTH;
2868
2869         if (!offset_loaded)
2870                 *offset = new_data;
2871
2872         if (new_data >= *offset)
2873                 *stat = new_data - *offset;
2874         else
2875                 *stat = (uint64_t)((new_data +
2876                                     ((uint64_t)1 << ICE_40_BIT_WIDTH)) -
2877                                    *offset);
2878
2879         *stat &= ICE_40_BIT_MASK;
2880 }
2881
2882 /* Get all the statistics of a VSI */
2883 static void
2884 ice_update_vsi_stats(struct ice_vsi *vsi)
2885 {
2886         struct ice_eth_stats *oes = &vsi->eth_stats_offset;
2887         struct ice_eth_stats *nes = &vsi->eth_stats;
2888         struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2889         int idx = rte_le_to_cpu_16(vsi->vsi_id);
2890
2891         ice_stat_update_40(hw, GLV_GORCH(idx), GLV_GORCL(idx),
2892                            vsi->offset_loaded, &oes->rx_bytes,
2893                            &nes->rx_bytes);
2894         ice_stat_update_40(hw, GLV_UPRCH(idx), GLV_UPRCL(idx),
2895                            vsi->offset_loaded, &oes->rx_unicast,
2896                            &nes->rx_unicast);
2897         ice_stat_update_40(hw, GLV_MPRCH(idx), GLV_MPRCL(idx),
2898                            vsi->offset_loaded, &oes->rx_multicast,
2899                            &nes->rx_multicast);
2900         ice_stat_update_40(hw, GLV_BPRCH(idx), GLV_BPRCL(idx),
2901                            vsi->offset_loaded, &oes->rx_broadcast,
2902                            &nes->rx_broadcast);
2903         /* exclude CRC bytes */
2904         nes->rx_bytes -= (nes->rx_unicast + nes->rx_multicast +
2905                           nes->rx_broadcast) * ETHER_CRC_LEN;
2906
2907         ice_stat_update_32(hw, GLV_RDPC(idx), vsi->offset_loaded,
2908                            &oes->rx_discards, &nes->rx_discards);
2909         /* GLV_REPC not supported */
2910         /* GLV_RMPC not supported */
2911         ice_stat_update_32(hw, GLSWID_RUPP(idx), vsi->offset_loaded,
2912                            &oes->rx_unknown_protocol,
2913                            &nes->rx_unknown_protocol);
2914         ice_stat_update_40(hw, GLV_GOTCH(idx), GLV_GOTCL(idx),
2915                            vsi->offset_loaded, &oes->tx_bytes,
2916                            &nes->tx_bytes);
2917         ice_stat_update_40(hw, GLV_UPTCH(idx), GLV_UPTCL(idx),
2918                            vsi->offset_loaded, &oes->tx_unicast,
2919                            &nes->tx_unicast);
2920         ice_stat_update_40(hw, GLV_MPTCH(idx), GLV_MPTCL(idx),
2921                            vsi->offset_loaded, &oes->tx_multicast,
2922                            &nes->tx_multicast);
2923         ice_stat_update_40(hw, GLV_BPTCH(idx), GLV_BPTCL(idx),
2924                            vsi->offset_loaded,  &oes->tx_broadcast,
2925                            &nes->tx_broadcast);
2926         /* GLV_TDPC not supported */
2927         ice_stat_update_32(hw, GLV_TEPC(idx), vsi->offset_loaded,
2928                            &oes->tx_errors, &nes->tx_errors);
2929         vsi->offset_loaded = true;
2930
2931         PMD_DRV_LOG(DEBUG, "************** VSI[%u] stats start **************",
2932                     vsi->vsi_id);
2933         PMD_DRV_LOG(DEBUG, "rx_bytes:            %"PRIu64"", nes->rx_bytes);
2934         PMD_DRV_LOG(DEBUG, "rx_unicast:          %"PRIu64"", nes->rx_unicast);
2935         PMD_DRV_LOG(DEBUG, "rx_multicast:        %"PRIu64"", nes->rx_multicast);
2936         PMD_DRV_LOG(DEBUG, "rx_broadcast:        %"PRIu64"", nes->rx_broadcast);
2937         PMD_DRV_LOG(DEBUG, "rx_discards:         %"PRIu64"", nes->rx_discards);
2938         PMD_DRV_LOG(DEBUG, "rx_unknown_protocol: %"PRIu64"",
2939                     nes->rx_unknown_protocol);
2940         PMD_DRV_LOG(DEBUG, "tx_bytes:            %"PRIu64"", nes->tx_bytes);
2941         PMD_DRV_LOG(DEBUG, "tx_unicast:          %"PRIu64"", nes->tx_unicast);
2942         PMD_DRV_LOG(DEBUG, "tx_multicast:        %"PRIu64"", nes->tx_multicast);
2943         PMD_DRV_LOG(DEBUG, "tx_broadcast:        %"PRIu64"", nes->tx_broadcast);
2944         PMD_DRV_LOG(DEBUG, "tx_discards:         %"PRIu64"", nes->tx_discards);
2945         PMD_DRV_LOG(DEBUG, "tx_errors:           %"PRIu64"", nes->tx_errors);
2946         PMD_DRV_LOG(DEBUG, "************** VSI[%u] stats end ****************",
2947                     vsi->vsi_id);
2948 }
2949
2950 static void
2951 ice_read_stats_registers(struct ice_pf *pf, struct ice_hw *hw)
2952 {
2953         struct ice_hw_port_stats *ns = &pf->stats; /* new stats */
2954         struct ice_hw_port_stats *os = &pf->stats_offset; /* old stats */
2955
2956         /* Get statistics of struct ice_eth_stats */
2957         ice_stat_update_40(hw, GLPRT_GORCH(hw->port_info->lport),
2958                            GLPRT_GORCL(hw->port_info->lport),
2959                            pf->offset_loaded, &os->eth.rx_bytes,
2960                            &ns->eth.rx_bytes);
2961         ice_stat_update_40(hw, GLPRT_UPRCH(hw->port_info->lport),
2962                            GLPRT_UPRCL(hw->port_info->lport),
2963                            pf->offset_loaded, &os->eth.rx_unicast,
2964                            &ns->eth.rx_unicast);
2965         ice_stat_update_40(hw, GLPRT_MPRCH(hw->port_info->lport),
2966                            GLPRT_MPRCL(hw->port_info->lport),
2967                            pf->offset_loaded, &os->eth.rx_multicast,
2968                            &ns->eth.rx_multicast);
2969         ice_stat_update_40(hw, GLPRT_BPRCH(hw->port_info->lport),
2970                            GLPRT_BPRCL(hw->port_info->lport),
2971                            pf->offset_loaded, &os->eth.rx_broadcast,
2972                            &ns->eth.rx_broadcast);
2973         ice_stat_update_32(hw, PRTRPB_RDPC,
2974                            pf->offset_loaded, &os->eth.rx_discards,
2975                            &ns->eth.rx_discards);
2976
2977         /* Workaround: CRC size should not be included in byte statistics,
2978          * so subtract ETHER_CRC_LEN from the byte counter for each rx packet.
2979          */
2980         ns->eth.rx_bytes -= (ns->eth.rx_unicast + ns->eth.rx_multicast +
2981                              ns->eth.rx_broadcast) * ETHER_CRC_LEN;
2982
2983         /* GLPRT_REPC not supported */
2984         /* GLPRT_RMPC not supported */
2985         ice_stat_update_32(hw, GLSWID_RUPP(hw->port_info->lport),
2986                            pf->offset_loaded,
2987                            &os->eth.rx_unknown_protocol,
2988                            &ns->eth.rx_unknown_protocol);
2989         ice_stat_update_40(hw, GLPRT_GOTCH(hw->port_info->lport),
2990                            GLPRT_GOTCL(hw->port_info->lport),
2991                            pf->offset_loaded, &os->eth.tx_bytes,
2992                            &ns->eth.tx_bytes);
2993         ice_stat_update_40(hw, GLPRT_UPTCH(hw->port_info->lport),
2994                            GLPRT_UPTCL(hw->port_info->lport),
2995                            pf->offset_loaded, &os->eth.tx_unicast,
2996                            &ns->eth.tx_unicast);
2997         ice_stat_update_40(hw, GLPRT_MPTCH(hw->port_info->lport),
2998                            GLPRT_MPTCL(hw->port_info->lport),
2999                            pf->offset_loaded, &os->eth.tx_multicast,
3000                            &ns->eth.tx_multicast);
3001         ice_stat_update_40(hw, GLPRT_BPTCH(hw->port_info->lport),
3002                            GLPRT_BPTCL(hw->port_info->lport),
3003                            pf->offset_loaded, &os->eth.tx_broadcast,
3004                            &ns->eth.tx_broadcast);
3005         ns->eth.tx_bytes -= (ns->eth.tx_unicast + ns->eth.tx_multicast +
3006                              ns->eth.tx_broadcast) * ETHER_CRC_LEN;
3007
3008         /* GLPRT_TEPC not supported */
3009
3010         /* additional port specific stats */
3011         ice_stat_update_32(hw, GLPRT_TDOLD(hw->port_info->lport),
3012                            pf->offset_loaded, &os->tx_dropped_link_down,
3013                            &ns->tx_dropped_link_down);
3014         ice_stat_update_32(hw, GLPRT_CRCERRS(hw->port_info->lport),
3015                            pf->offset_loaded, &os->crc_errors,
3016                            &ns->crc_errors);
3017         ice_stat_update_32(hw, GLPRT_ILLERRC(hw->port_info->lport),
3018                            pf->offset_loaded, &os->illegal_bytes,
3019                            &ns->illegal_bytes);
3020         /* GLPRT_ERRBC not supported */
3021         ice_stat_update_32(hw, GLPRT_MLFC(hw->port_info->lport),
3022                            pf->offset_loaded, &os->mac_local_faults,
3023                            &ns->mac_local_faults);
3024         ice_stat_update_32(hw, GLPRT_MRFC(hw->port_info->lport),
3025                            pf->offset_loaded, &os->mac_remote_faults,
3026                            &ns->mac_remote_faults);
3027
3028         ice_stat_update_32(hw, GLPRT_RLEC(hw->port_info->lport),
3029                            pf->offset_loaded, &os->rx_len_errors,
3030                            &ns->rx_len_errors);
3031
3032         ice_stat_update_32(hw, GLPRT_LXONRXC(hw->port_info->lport),
3033                            pf->offset_loaded, &os->link_xon_rx,
3034                            &ns->link_xon_rx);
3035         ice_stat_update_32(hw, GLPRT_LXOFFRXC(hw->port_info->lport),
3036                            pf->offset_loaded, &os->link_xoff_rx,
3037                            &ns->link_xoff_rx);
3038         ice_stat_update_32(hw, GLPRT_LXONTXC(hw->port_info->lport),
3039                            pf->offset_loaded, &os->link_xon_tx,
3040                            &ns->link_xon_tx);
3041         ice_stat_update_32(hw, GLPRT_LXOFFTXC(hw->port_info->lport),
3042                            pf->offset_loaded, &os->link_xoff_tx,
3043                            &ns->link_xoff_tx);
3044         ice_stat_update_40(hw, GLPRT_PRC64H(hw->port_info->lport),
3045                            GLPRT_PRC64L(hw->port_info->lport),
3046                            pf->offset_loaded, &os->rx_size_64,
3047                            &ns->rx_size_64);
3048         ice_stat_update_40(hw, GLPRT_PRC127H(hw->port_info->lport),
3049                            GLPRT_PRC127L(hw->port_info->lport),
3050                            pf->offset_loaded, &os->rx_size_127,
3051                            &ns->rx_size_127);
3052         ice_stat_update_40(hw, GLPRT_PRC255H(hw->port_info->lport),
3053                            GLPRT_PRC255L(hw->port_info->lport),
3054                            pf->offset_loaded, &os->rx_size_255,
3055                            &ns->rx_size_255);
3056         ice_stat_update_40(hw, GLPRT_PRC511H(hw->port_info->lport),
3057                            GLPRT_PRC511L(hw->port_info->lport),
3058                            pf->offset_loaded, &os->rx_size_511,
3059                            &ns->rx_size_511);
3060         ice_stat_update_40(hw, GLPRT_PRC1023H(hw->port_info->lport),
3061                            GLPRT_PRC1023L(hw->port_info->lport),
3062                            pf->offset_loaded, &os->rx_size_1023,
3063                            &ns->rx_size_1023);
3064         ice_stat_update_40(hw, GLPRT_PRC1522H(hw->port_info->lport),
3065                            GLPRT_PRC1522L(hw->port_info->lport),
3066                            pf->offset_loaded, &os->rx_size_1522,
3067                            &ns->rx_size_1522);
3068         ice_stat_update_40(hw, GLPRT_PRC9522H(hw->port_info->lport),
3069                            GLPRT_PRC9522L(hw->port_info->lport),
3070                            pf->offset_loaded, &os->rx_size_big,
3071                            &ns->rx_size_big);
3072         ice_stat_update_32(hw, GLPRT_RUC(hw->port_info->lport),
3073                            pf->offset_loaded, &os->rx_undersize,
3074                            &ns->rx_undersize);
3075         ice_stat_update_32(hw, GLPRT_RFC(hw->port_info->lport),
3076                            pf->offset_loaded, &os->rx_fragments,
3077                            &ns->rx_fragments);
3078         ice_stat_update_32(hw, GLPRT_ROC(hw->port_info->lport),
3079                            pf->offset_loaded, &os->rx_oversize,
3080                            &ns->rx_oversize);
3081         ice_stat_update_32(hw, GLPRT_RJC(hw->port_info->lport),
3082                            pf->offset_loaded, &os->rx_jabber,
3083                            &ns->rx_jabber);
3084         ice_stat_update_40(hw, GLPRT_PTC64H(hw->port_info->lport),
3085                            GLPRT_PTC64L(hw->port_info->lport),
3086                            pf->offset_loaded, &os->tx_size_64,
3087                            &ns->tx_size_64);
3088         ice_stat_update_40(hw, GLPRT_PTC127H(hw->port_info->lport),
3089                            GLPRT_PTC127L(hw->port_info->lport),
3090                            pf->offset_loaded, &os->tx_size_127,
3091                            &ns->tx_size_127);
3092         ice_stat_update_40(hw, GLPRT_PTC255H(hw->port_info->lport),
3093                            GLPRT_PTC255L(hw->port_info->lport),
3094                            pf->offset_loaded, &os->tx_size_255,
3095                            &ns->tx_size_255);
3096         ice_stat_update_40(hw, GLPRT_PTC511H(hw->port_info->lport),
3097                            GLPRT_PTC511L(hw->port_info->lport),
3098                            pf->offset_loaded, &os->tx_size_511,
3099                            &ns->tx_size_511);
3100         ice_stat_update_40(hw, GLPRT_PTC1023H(hw->port_info->lport),
3101                            GLPRT_PTC1023L(hw->port_info->lport),
3102                            pf->offset_loaded, &os->tx_size_1023,
3103                            &ns->tx_size_1023);
3104         ice_stat_update_40(hw, GLPRT_PTC1522H(hw->port_info->lport),
3105                            GLPRT_PTC1522L(hw->port_info->lport),
3106                            pf->offset_loaded, &os->tx_size_1522,
3107                            &ns->tx_size_1522);
3108         ice_stat_update_40(hw, GLPRT_PTC9522H(hw->port_info->lport),
3109                            GLPRT_PTC9522L(hw->port_info->lport),
3110                            pf->offset_loaded, &os->tx_size_big,
3111                            &ns->tx_size_big);
3112
3113         /* GLPRT_MSPDC not supported */
3114         /* GLPRT_XEC not supported */
3115
3116         pf->offset_loaded = true;
3117
3118         if (pf->main_vsi)
3119                 ice_update_vsi_stats(pf->main_vsi);
3120 }
3121
3122 /* Get all statistics of a port */
3123 static int
3124 ice_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
3125 {
3126         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3127         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3128         struct ice_hw_port_stats *ns = &pf->stats; /* new stats */
3129
3130         /* call read registers - updates values, now write them to struct */
3131         ice_read_stats_registers(pf, hw);
3132
3133         stats->ipackets = ns->eth.rx_unicast +
3134                           ns->eth.rx_multicast +
3135                           ns->eth.rx_broadcast -
3136                           ns->eth.rx_discards -
3137                           pf->main_vsi->eth_stats.rx_discards;
3138         stats->opackets = ns->eth.tx_unicast +
3139                           ns->eth.tx_multicast +
3140                           ns->eth.tx_broadcast;
3141         stats->ibytes   = ns->eth.rx_bytes;
3142         stats->obytes   = ns->eth.tx_bytes;
3143         stats->oerrors  = ns->eth.tx_errors +
3144                           pf->main_vsi->eth_stats.tx_errors;
3145
3146         /* Rx Errors */
3147         stats->imissed  = ns->eth.rx_discards +
3148                           pf->main_vsi->eth_stats.rx_discards;
3149         stats->ierrors  = ns->crc_errors +
3150                           ns->rx_undersize +
3151                           ns->rx_oversize + ns->rx_fragments + ns->rx_jabber;
3152
3153         PMD_DRV_LOG(DEBUG, "*************** PF stats start *****************");
3154         PMD_DRV_LOG(DEBUG, "rx_bytes:   %"PRIu64"", ns->eth.rx_bytes);
3155         PMD_DRV_LOG(DEBUG, "rx_unicast: %"PRIu64"", ns->eth.rx_unicast);
3156         PMD_DRV_LOG(DEBUG, "rx_multicast:%"PRIu64"", ns->eth.rx_multicast);
3157         PMD_DRV_LOG(DEBUG, "rx_broadcast:%"PRIu64"", ns->eth.rx_broadcast);
3158         PMD_DRV_LOG(DEBUG, "rx_discards:%"PRIu64"", ns->eth.rx_discards);
3159         PMD_DRV_LOG(DEBUG, "vsi rx_discards:%"PRIu64"",
3160                     pf->main_vsi->eth_stats.rx_discards);
3161         PMD_DRV_LOG(DEBUG, "rx_unknown_protocol:  %"PRIu64"",
3162                     ns->eth.rx_unknown_protocol);
3163         PMD_DRV_LOG(DEBUG, "tx_bytes:   %"PRIu64"", ns->eth.tx_bytes);
3164         PMD_DRV_LOG(DEBUG, "tx_unicast: %"PRIu64"", ns->eth.tx_unicast);
3165         PMD_DRV_LOG(DEBUG, "tx_multicast:%"PRIu64"", ns->eth.tx_multicast);
3166         PMD_DRV_LOG(DEBUG, "tx_broadcast:%"PRIu64"", ns->eth.tx_broadcast);
3167         PMD_DRV_LOG(DEBUG, "tx_discards:%"PRIu64"", ns->eth.tx_discards);
3168         PMD_DRV_LOG(DEBUG, "vsi tx_discards:%"PRIu64"",
3169                     pf->main_vsi->eth_stats.tx_discards);
3170         PMD_DRV_LOG(DEBUG, "tx_errors:          %"PRIu64"", ns->eth.tx_errors);
3171
3172         PMD_DRV_LOG(DEBUG, "tx_dropped_link_down:       %"PRIu64"",
3173                     ns->tx_dropped_link_down);
3174         PMD_DRV_LOG(DEBUG, "crc_errors: %"PRIu64"", ns->crc_errors);
3175         PMD_DRV_LOG(DEBUG, "illegal_bytes:      %"PRIu64"",
3176                     ns->illegal_bytes);
3177         PMD_DRV_LOG(DEBUG, "error_bytes:        %"PRIu64"", ns->error_bytes);
3178         PMD_DRV_LOG(DEBUG, "mac_local_faults:   %"PRIu64"",
3179                     ns->mac_local_faults);
3180         PMD_DRV_LOG(DEBUG, "mac_remote_faults:  %"PRIu64"",
3181                     ns->mac_remote_faults);
3182         PMD_DRV_LOG(DEBUG, "link_xon_rx:        %"PRIu64"", ns->link_xon_rx);
3183         PMD_DRV_LOG(DEBUG, "link_xoff_rx:       %"PRIu64"", ns->link_xoff_rx);
3184         PMD_DRV_LOG(DEBUG, "link_xon_tx:        %"PRIu64"", ns->link_xon_tx);
3185         PMD_DRV_LOG(DEBUG, "link_xoff_tx:       %"PRIu64"", ns->link_xoff_tx);
3186         PMD_DRV_LOG(DEBUG, "rx_size_64:         %"PRIu64"", ns->rx_size_64);
3187         PMD_DRV_LOG(DEBUG, "rx_size_127:        %"PRIu64"", ns->rx_size_127);
3188         PMD_DRV_LOG(DEBUG, "rx_size_255:        %"PRIu64"", ns->rx_size_255);
3189         PMD_DRV_LOG(DEBUG, "rx_size_511:        %"PRIu64"", ns->rx_size_511);
3190         PMD_DRV_LOG(DEBUG, "rx_size_1023:       %"PRIu64"", ns->rx_size_1023);
3191         PMD_DRV_LOG(DEBUG, "rx_size_1522:       %"PRIu64"", ns->rx_size_1522);
3192         PMD_DRV_LOG(DEBUG, "rx_size_big:        %"PRIu64"", ns->rx_size_big);
3193         PMD_DRV_LOG(DEBUG, "rx_undersize:       %"PRIu64"", ns->rx_undersize);
3194         PMD_DRV_LOG(DEBUG, "rx_fragments:       %"PRIu64"", ns->rx_fragments);
3195         PMD_DRV_LOG(DEBUG, "rx_oversize:        %"PRIu64"", ns->rx_oversize);
3196         PMD_DRV_LOG(DEBUG, "rx_jabber:          %"PRIu64"", ns->rx_jabber);
3197         PMD_DRV_LOG(DEBUG, "tx_size_64:         %"PRIu64"", ns->tx_size_64);
3198         PMD_DRV_LOG(DEBUG, "tx_size_127:        %"PRIu64"", ns->tx_size_127);
3199         PMD_DRV_LOG(DEBUG, "tx_size_255:        %"PRIu64"", ns->tx_size_255);
3200         PMD_DRV_LOG(DEBUG, "tx_size_511:        %"PRIu64"", ns->tx_size_511);
3201         PMD_DRV_LOG(DEBUG, "tx_size_1023:       %"PRIu64"", ns->tx_size_1023);
3202         PMD_DRV_LOG(DEBUG, "tx_size_1522:       %"PRIu64"", ns->tx_size_1522);
3203         PMD_DRV_LOG(DEBUG, "tx_size_big:        %"PRIu64"", ns->tx_size_big);
3204         PMD_DRV_LOG(DEBUG, "rx_len_errors:      %"PRIu64"", ns->rx_len_errors);
3205         PMD_DRV_LOG(DEBUG, "************* PF stats end ****************");
3206         return 0;
3207 }
3208
3209 /* Reset the statistics */
3210 static void
3211 ice_stats_reset(struct rte_eth_dev *dev)
3212 {
3213         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3214         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3215
3216         /* Mark PF and VSI stats to update the offset, aka "reset" */
3217         pf->offset_loaded = false;
3218         if (pf->main_vsi)
3219                 pf->main_vsi->offset_loaded = false;
3220
3221         /* read the stats, reading current register values into offset */
3222         ice_read_stats_registers(pf, hw);
3223 }
3224
3225 static uint32_t
3226 ice_xstats_calc_num(void)
3227 {
3228         uint32_t num;
3229
3230         num = ICE_NB_ETH_XSTATS + ICE_NB_HW_PORT_XSTATS;
3231
3232         return num;
3233 }
3234
3235 static int
3236 ice_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
3237                unsigned int n)
3238 {
3239         struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3240         struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3241         unsigned int i;
3242         unsigned int count;
3243         struct ice_hw_port_stats *hw_stats = &pf->stats;
3244
3245         count = ice_xstats_calc_num();
3246         if (n < count)
3247                 return count;
3248
3249         ice_read_stats_registers(pf, hw);
3250
3251         if (!xstats)
3252                 return 0;
3253
3254         count = 0;
3255
3256         /* Get stats from ice_eth_stats struct */
3257         for (i = 0; i < ICE_NB_ETH_XSTATS; i++) {
3258                 xstats[count].value =
3259                         *(uint64_t *)((char *)&hw_stats->eth +
3260                                       ice_stats_strings[i].offset);
3261                 xstats[count].id = count;
3262                 count++;
3263         }
3264
3265         /* Get individiual stats from ice_hw_port struct */
3266         for (i = 0; i < ICE_NB_HW_PORT_XSTATS; i++) {
3267                 xstats[count].value =
3268                         *(uint64_t *)((char *)hw_stats +
3269                                       ice_hw_port_strings[i].offset);
3270                 xstats[count].id = count;
3271                 count++;
3272         }
3273
3274         return count;
3275 }
3276
3277 static int ice_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
3278                                 struct rte_eth_xstat_name *xstats_names,
3279                                 __rte_unused unsigned int limit)
3280 {
3281         unsigned int count = 0;
3282         unsigned int i;
3283
3284         if (!xstats_names)
3285                 return ice_xstats_calc_num();
3286
3287         /* Note: limit checked in rte_eth_xstats_names() */
3288
3289         /* Get stats from ice_eth_stats struct */
3290         for (i = 0; i < ICE_NB_ETH_XSTATS; i++) {
3291                 snprintf(xstats_names[count].name,
3292                          sizeof(xstats_names[count].name),
3293                          "%s", ice_stats_strings[i].name);
3294                 count++;
3295         }
3296
3297         /* Get individiual stats from ice_hw_port struct */
3298         for (i = 0; i < ICE_NB_HW_PORT_XSTATS; i++) {
3299                 snprintf(xstats_names[count].name,
3300                          sizeof(xstats_names[count].name),
3301                          "%s", ice_hw_port_strings[i].name);
3302                 count++;
3303         }
3304
3305         return count;
3306 }
3307
3308 static int
3309 ice_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
3310               struct rte_pci_device *pci_dev)
3311 {
3312         return rte_eth_dev_pci_generic_probe(pci_dev,
3313                                              sizeof(struct ice_adapter),
3314                                              ice_dev_init);
3315 }
3316
3317 static int
3318 ice_pci_remove(struct rte_pci_device *pci_dev)
3319 {
3320         return rte_eth_dev_pci_generic_remove(pci_dev, ice_dev_uninit);
3321 }
3322
3323 static struct rte_pci_driver rte_ice_pmd = {
3324         .id_table = pci_id_ice_map,
3325         .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC |
3326                      RTE_PCI_DRV_IOVA_AS_VA,
3327         .probe = ice_pci_probe,
3328         .remove = ice_pci_remove,
3329 };
3330
3331 /**
3332  * Driver initialization routine.
3333  * Invoked once at EAL init time.
3334  * Register itself as the [Poll Mode] Driver of PCI devices.
3335  */
3336 RTE_PMD_REGISTER_PCI(net_ice, rte_ice_pmd);
3337 RTE_PMD_REGISTER_PCI_TABLE(net_ice, pci_id_ice_map);
3338 RTE_PMD_REGISTER_KMOD_DEP(net_ice, "* igb_uio | uio_pci_generic | vfio-pci");
3339 RTE_PMD_REGISTER_PARAM_STRING(net_ice,
3340                               ICE_MAX_QP_NUM "=<int>");
3341
3342 RTE_INIT(ice_init_log)
3343 {
3344         ice_logtype_init = rte_log_register("pmd.net.ice.init");
3345         if (ice_logtype_init >= 0)
3346                 rte_log_set_level(ice_logtype_init, RTE_LOG_NOTICE);
3347         ice_logtype_driver = rte_log_register("pmd.net.ice.driver");
3348         if (ice_logtype_driver >= 0)
3349                 rte_log_set_level(ice_logtype_driver, RTE_LOG_NOTICE);
3350 }