1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018 Intel Corporation
5 #include <rte_string_fns.h>
6 #include <rte_ethdev_pci.h>
13 #include "base/ice_sched.h"
14 #include "base/ice_flow.h"
15 #include "base/ice_dcb.h"
16 #include "base/ice_common.h"
18 #include "rte_pmd_ice.h"
19 #include "ice_ethdev.h"
21 #include "ice_generic_flow.h"
24 #define ICE_SAFE_MODE_SUPPORT_ARG "safe-mode-support"
25 #define ICE_PIPELINE_MODE_SUPPORT_ARG "pipeline-mode-support"
26 #define ICE_PROTO_XTR_ARG "proto_xtr"
28 static const char * const ice_valid_args[] = {
29 ICE_SAFE_MODE_SUPPORT_ARG,
30 ICE_PIPELINE_MODE_SUPPORT_ARG,
35 static const struct rte_mbuf_dynfield ice_proto_xtr_metadata_param = {
36 .name = "intel_pmd_dynfield_proto_xtr_metadata",
37 .size = sizeof(uint32_t),
38 .align = __alignof__(uint32_t),
42 struct proto_xtr_ol_flag {
43 const struct rte_mbuf_dynflag param;
48 static bool ice_proto_xtr_hw_support[PROTO_XTR_MAX];
50 static struct proto_xtr_ol_flag ice_proto_xtr_ol_flag_params[] = {
52 .param = { .name = "intel_pmd_dynflag_proto_xtr_vlan" },
53 .ol_flag = &rte_net_ice_dynflag_proto_xtr_vlan_mask },
55 .param = { .name = "intel_pmd_dynflag_proto_xtr_ipv4" },
56 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ipv4_mask },
58 .param = { .name = "intel_pmd_dynflag_proto_xtr_ipv6" },
59 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ipv6_mask },
60 [PROTO_XTR_IPV6_FLOW] = {
61 .param = { .name = "intel_pmd_dynflag_proto_xtr_ipv6_flow" },
62 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ipv6_flow_mask },
64 .param = { .name = "intel_pmd_dynflag_proto_xtr_tcp" },
65 .ol_flag = &rte_net_ice_dynflag_proto_xtr_tcp_mask },
66 [PROTO_XTR_IP_OFFSET] = {
67 .param = { .name = "intel_pmd_dynflag_proto_xtr_ip_offset" },
68 .ol_flag = &rte_net_ice_dynflag_proto_xtr_ip_offset_mask },
71 #define ICE_DFLT_OUTER_TAG_TYPE ICE_AQ_VSI_OUTER_TAG_VLAN_9100
73 #define ICE_OS_DEFAULT_PKG_NAME "ICE OS Default Package"
74 #define ICE_COMMS_PKG_NAME "ICE COMMS Package"
75 #define ICE_MAX_RES_DESC_NUM 1024
77 static int ice_dev_configure(struct rte_eth_dev *dev);
78 static int ice_dev_start(struct rte_eth_dev *dev);
79 static int ice_dev_stop(struct rte_eth_dev *dev);
80 static int ice_dev_close(struct rte_eth_dev *dev);
81 static int ice_dev_reset(struct rte_eth_dev *dev);
82 static int ice_dev_info_get(struct rte_eth_dev *dev,
83 struct rte_eth_dev_info *dev_info);
84 static int ice_link_update(struct rte_eth_dev *dev,
85 int wait_to_complete);
86 static int ice_dev_set_link_up(struct rte_eth_dev *dev);
87 static int ice_dev_set_link_down(struct rte_eth_dev *dev);
89 static int ice_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
90 static int ice_vlan_offload_set(struct rte_eth_dev *dev, int mask);
91 static int ice_rss_reta_update(struct rte_eth_dev *dev,
92 struct rte_eth_rss_reta_entry64 *reta_conf,
94 static int ice_rss_reta_query(struct rte_eth_dev *dev,
95 struct rte_eth_rss_reta_entry64 *reta_conf,
97 static int ice_rss_hash_update(struct rte_eth_dev *dev,
98 struct rte_eth_rss_conf *rss_conf);
99 static int ice_rss_hash_conf_get(struct rte_eth_dev *dev,
100 struct rte_eth_rss_conf *rss_conf);
101 static int ice_promisc_enable(struct rte_eth_dev *dev);
102 static int ice_promisc_disable(struct rte_eth_dev *dev);
103 static int ice_allmulti_enable(struct rte_eth_dev *dev);
104 static int ice_allmulti_disable(struct rte_eth_dev *dev);
105 static int ice_vlan_filter_set(struct rte_eth_dev *dev,
108 static int ice_macaddr_set(struct rte_eth_dev *dev,
109 struct rte_ether_addr *mac_addr);
110 static int ice_macaddr_add(struct rte_eth_dev *dev,
111 struct rte_ether_addr *mac_addr,
112 __rte_unused uint32_t index,
114 static void ice_macaddr_remove(struct rte_eth_dev *dev, uint32_t index);
115 static int ice_rx_queue_intr_enable(struct rte_eth_dev *dev,
117 static int ice_rx_queue_intr_disable(struct rte_eth_dev *dev,
119 static int ice_fw_version_get(struct rte_eth_dev *dev, char *fw_version,
121 static int ice_vlan_pvid_set(struct rte_eth_dev *dev,
122 uint16_t pvid, int on);
123 static int ice_get_eeprom_length(struct rte_eth_dev *dev);
124 static int ice_get_eeprom(struct rte_eth_dev *dev,
125 struct rte_dev_eeprom_info *eeprom);
126 static int ice_stats_get(struct rte_eth_dev *dev,
127 struct rte_eth_stats *stats);
128 static int ice_stats_reset(struct rte_eth_dev *dev);
129 static int ice_xstats_get(struct rte_eth_dev *dev,
130 struct rte_eth_xstat *xstats, unsigned int n);
131 static int ice_xstats_get_names(struct rte_eth_dev *dev,
132 struct rte_eth_xstat_name *xstats_names,
134 static int ice_dev_filter_ctrl(struct rte_eth_dev *dev,
135 enum rte_filter_type filter_type,
136 enum rte_filter_op filter_op,
138 static int ice_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
139 struct rte_eth_udp_tunnel *udp_tunnel);
140 static int ice_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
141 struct rte_eth_udp_tunnel *udp_tunnel);
143 static const struct rte_pci_id pci_id_ice_map[] = {
144 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E823L_BACKPLANE) },
145 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E823L_SFP) },
146 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E823L_10G_BASE_T) },
147 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E823L_1GBE) },
148 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E823L_QSFP) },
149 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_BACKPLANE) },
150 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_QSFP) },
151 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810C_SFP) },
152 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810_XXV_BACKPLANE) },
153 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810_XXV_QSFP) },
154 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E810_XXV_SFP) },
155 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822C_BACKPLANE) },
156 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822C_QSFP) },
157 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822C_SFP) },
158 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822C_10G_BASE_T) },
159 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822C_SGMII) },
160 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822L_BACKPLANE) },
161 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822L_SFP) },
162 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822L_10G_BASE_T) },
163 { RTE_PCI_DEVICE(ICE_INTEL_VENDOR_ID, ICE_DEV_ID_E822L_SGMII) },
164 { .vendor_id = 0, /* sentinel */ },
167 static const struct eth_dev_ops ice_eth_dev_ops = {
168 .dev_configure = ice_dev_configure,
169 .dev_start = ice_dev_start,
170 .dev_stop = ice_dev_stop,
171 .dev_close = ice_dev_close,
172 .dev_reset = ice_dev_reset,
173 .dev_set_link_up = ice_dev_set_link_up,
174 .dev_set_link_down = ice_dev_set_link_down,
175 .rx_queue_start = ice_rx_queue_start,
176 .rx_queue_stop = ice_rx_queue_stop,
177 .tx_queue_start = ice_tx_queue_start,
178 .tx_queue_stop = ice_tx_queue_stop,
179 .rx_queue_setup = ice_rx_queue_setup,
180 .rx_queue_release = ice_rx_queue_release,
181 .tx_queue_setup = ice_tx_queue_setup,
182 .tx_queue_release = ice_tx_queue_release,
183 .dev_infos_get = ice_dev_info_get,
184 .dev_supported_ptypes_get = ice_dev_supported_ptypes_get,
185 .link_update = ice_link_update,
186 .mtu_set = ice_mtu_set,
187 .mac_addr_set = ice_macaddr_set,
188 .mac_addr_add = ice_macaddr_add,
189 .mac_addr_remove = ice_macaddr_remove,
190 .vlan_filter_set = ice_vlan_filter_set,
191 .vlan_offload_set = ice_vlan_offload_set,
192 .reta_update = ice_rss_reta_update,
193 .reta_query = ice_rss_reta_query,
194 .rss_hash_update = ice_rss_hash_update,
195 .rss_hash_conf_get = ice_rss_hash_conf_get,
196 .promiscuous_enable = ice_promisc_enable,
197 .promiscuous_disable = ice_promisc_disable,
198 .allmulticast_enable = ice_allmulti_enable,
199 .allmulticast_disable = ice_allmulti_disable,
200 .rx_queue_intr_enable = ice_rx_queue_intr_enable,
201 .rx_queue_intr_disable = ice_rx_queue_intr_disable,
202 .fw_version_get = ice_fw_version_get,
203 .vlan_pvid_set = ice_vlan_pvid_set,
204 .rxq_info_get = ice_rxq_info_get,
205 .txq_info_get = ice_txq_info_get,
206 .rx_burst_mode_get = ice_rx_burst_mode_get,
207 .tx_burst_mode_get = ice_tx_burst_mode_get,
208 .get_eeprom_length = ice_get_eeprom_length,
209 .get_eeprom = ice_get_eeprom,
210 .stats_get = ice_stats_get,
211 .stats_reset = ice_stats_reset,
212 .xstats_get = ice_xstats_get,
213 .xstats_get_names = ice_xstats_get_names,
214 .xstats_reset = ice_stats_reset,
215 .filter_ctrl = ice_dev_filter_ctrl,
216 .udp_tunnel_port_add = ice_dev_udp_tunnel_port_add,
217 .udp_tunnel_port_del = ice_dev_udp_tunnel_port_del,
218 .tx_done_cleanup = ice_tx_done_cleanup,
221 /* store statistics names and its offset in stats structure */
222 struct ice_xstats_name_off {
223 char name[RTE_ETH_XSTATS_NAME_SIZE];
227 static const struct ice_xstats_name_off ice_stats_strings[] = {
228 {"rx_unicast_packets", offsetof(struct ice_eth_stats, rx_unicast)},
229 {"rx_multicast_packets", offsetof(struct ice_eth_stats, rx_multicast)},
230 {"rx_broadcast_packets", offsetof(struct ice_eth_stats, rx_broadcast)},
231 {"rx_dropped_packets", offsetof(struct ice_eth_stats, rx_discards)},
232 {"rx_unknown_protocol_packets", offsetof(struct ice_eth_stats,
233 rx_unknown_protocol)},
234 {"tx_unicast_packets", offsetof(struct ice_eth_stats, tx_unicast)},
235 {"tx_multicast_packets", offsetof(struct ice_eth_stats, tx_multicast)},
236 {"tx_broadcast_packets", offsetof(struct ice_eth_stats, tx_broadcast)},
237 {"tx_dropped_packets", offsetof(struct ice_eth_stats, tx_discards)},
240 #define ICE_NB_ETH_XSTATS (sizeof(ice_stats_strings) / \
241 sizeof(ice_stats_strings[0]))
243 static const struct ice_xstats_name_off ice_hw_port_strings[] = {
244 {"tx_link_down_dropped", offsetof(struct ice_hw_port_stats,
245 tx_dropped_link_down)},
246 {"rx_crc_errors", offsetof(struct ice_hw_port_stats, crc_errors)},
247 {"rx_illegal_byte_errors", offsetof(struct ice_hw_port_stats,
249 {"rx_error_bytes", offsetof(struct ice_hw_port_stats, error_bytes)},
250 {"mac_local_errors", offsetof(struct ice_hw_port_stats,
252 {"mac_remote_errors", offsetof(struct ice_hw_port_stats,
254 {"rx_len_errors", offsetof(struct ice_hw_port_stats,
256 {"tx_xon_packets", offsetof(struct ice_hw_port_stats, link_xon_tx)},
257 {"rx_xon_packets", offsetof(struct ice_hw_port_stats, link_xon_rx)},
258 {"tx_xoff_packets", offsetof(struct ice_hw_port_stats, link_xoff_tx)},
259 {"rx_xoff_packets", offsetof(struct ice_hw_port_stats, link_xoff_rx)},
260 {"rx_size_64_packets", offsetof(struct ice_hw_port_stats, rx_size_64)},
261 {"rx_size_65_to_127_packets", offsetof(struct ice_hw_port_stats,
263 {"rx_size_128_to_255_packets", offsetof(struct ice_hw_port_stats,
265 {"rx_size_256_to_511_packets", offsetof(struct ice_hw_port_stats,
267 {"rx_size_512_to_1023_packets", offsetof(struct ice_hw_port_stats,
269 {"rx_size_1024_to_1522_packets", offsetof(struct ice_hw_port_stats,
271 {"rx_size_1523_to_max_packets", offsetof(struct ice_hw_port_stats,
273 {"rx_undersized_errors", offsetof(struct ice_hw_port_stats,
275 {"rx_oversize_errors", offsetof(struct ice_hw_port_stats,
277 {"rx_mac_short_pkt_dropped", offsetof(struct ice_hw_port_stats,
278 mac_short_pkt_dropped)},
279 {"rx_fragmented_errors", offsetof(struct ice_hw_port_stats,
281 {"rx_jabber_errors", offsetof(struct ice_hw_port_stats, rx_jabber)},
282 {"tx_size_64_packets", offsetof(struct ice_hw_port_stats, tx_size_64)},
283 {"tx_size_65_to_127_packets", offsetof(struct ice_hw_port_stats,
285 {"tx_size_128_to_255_packets", offsetof(struct ice_hw_port_stats,
287 {"tx_size_256_to_511_packets", offsetof(struct ice_hw_port_stats,
289 {"tx_size_512_to_1023_packets", offsetof(struct ice_hw_port_stats,
291 {"tx_size_1024_to_1522_packets", offsetof(struct ice_hw_port_stats,
293 {"tx_size_1523_to_max_packets", offsetof(struct ice_hw_port_stats,
297 #define ICE_NB_HW_PORT_XSTATS (sizeof(ice_hw_port_strings) / \
298 sizeof(ice_hw_port_strings[0]))
301 ice_init_controlq_parameter(struct ice_hw *hw)
303 /* fields for adminq */
304 hw->adminq.num_rq_entries = ICE_ADMINQ_LEN;
305 hw->adminq.num_sq_entries = ICE_ADMINQ_LEN;
306 hw->adminq.rq_buf_size = ICE_ADMINQ_BUF_SZ;
307 hw->adminq.sq_buf_size = ICE_ADMINQ_BUF_SZ;
309 /* fields for mailboxq, DPDK used as PF host */
310 hw->mailboxq.num_rq_entries = ICE_MAILBOXQ_LEN;
311 hw->mailboxq.num_sq_entries = ICE_MAILBOXQ_LEN;
312 hw->mailboxq.rq_buf_size = ICE_MAILBOXQ_BUF_SZ;
313 hw->mailboxq.sq_buf_size = ICE_MAILBOXQ_BUF_SZ;
317 lookup_proto_xtr_type(const char *xtr_name)
321 enum proto_xtr_type type;
323 { "vlan", PROTO_XTR_VLAN },
324 { "ipv4", PROTO_XTR_IPV4 },
325 { "ipv6", PROTO_XTR_IPV6 },
326 { "ipv6_flow", PROTO_XTR_IPV6_FLOW },
327 { "tcp", PROTO_XTR_TCP },
328 { "ip_offset", PROTO_XTR_IP_OFFSET },
332 for (i = 0; i < RTE_DIM(xtr_type_map); i++) {
333 if (strcmp(xtr_name, xtr_type_map[i].name) == 0)
334 return xtr_type_map[i].type;
341 * Parse elem, the elem could be single number/range or '(' ')' group
342 * 1) A single number elem, it's just a simple digit. e.g. 9
343 * 2) A single range elem, two digits with a '-' between. e.g. 2-6
344 * 3) A group elem, combines multiple 1) or 2) with '( )'. e.g (0,2-4,6)
345 * Within group elem, '-' used for a range separator;
346 * ',' used for a single number.
349 parse_queue_set(const char *input, int xtr_type, struct ice_devargs *devargs)
351 const char *str = input;
356 while (isblank(*str))
359 if (!isdigit(*str) && *str != '(')
362 /* process single number or single range of number */
365 idx = strtoul(str, &end, 10);
366 if (errno || end == NULL || idx >= ICE_MAX_QUEUE_NUM)
369 while (isblank(*end))
375 /* process single <number>-<number> */
378 while (isblank(*end))
384 idx = strtoul(end, &end, 10);
385 if (errno || end == NULL || idx >= ICE_MAX_QUEUE_NUM)
389 while (isblank(*end))
396 for (idx = RTE_MIN(min, max);
397 idx <= RTE_MAX(min, max); idx++)
398 devargs->proto_xtr[idx] = xtr_type;
403 /* process set within bracket */
405 while (isblank(*str))
410 min = ICE_MAX_QUEUE_NUM;
412 /* go ahead to the first digit */
413 while (isblank(*str))
418 /* get the digit value */
420 idx = strtoul(str, &end, 10);
421 if (errno || end == NULL || idx >= ICE_MAX_QUEUE_NUM)
424 /* go ahead to separator '-',',' and ')' */
425 while (isblank(*end))
428 if (min == ICE_MAX_QUEUE_NUM)
430 else /* avoid continuous '-' */
432 } else if (*end == ',' || *end == ')') {
434 if (min == ICE_MAX_QUEUE_NUM)
437 for (idx = RTE_MIN(min, max);
438 idx <= RTE_MAX(min, max); idx++)
439 devargs->proto_xtr[idx] = xtr_type;
441 min = ICE_MAX_QUEUE_NUM;
447 } while (*end != ')' && *end != '\0');
453 parse_queue_proto_xtr(const char *queues, struct ice_devargs *devargs)
455 const char *queue_start;
460 while (isblank(*queues))
463 if (*queues != '[') {
464 xtr_type = lookup_proto_xtr_type(queues);
468 devargs->proto_xtr_dflt = xtr_type;
475 while (isblank(*queues))
480 queue_start = queues;
482 /* go across a complete bracket */
483 if (*queue_start == '(') {
484 queues += strcspn(queues, ")");
489 /* scan the separator ':' */
490 queues += strcspn(queues, ":");
491 if (*queues++ != ':')
493 while (isblank(*queues))
496 for (idx = 0; ; idx++) {
497 if (isblank(queues[idx]) ||
498 queues[idx] == ',' ||
499 queues[idx] == ']' ||
503 if (idx > sizeof(xtr_name) - 2)
506 xtr_name[idx] = queues[idx];
508 xtr_name[idx] = '\0';
509 xtr_type = lookup_proto_xtr_type(xtr_name);
515 while (isblank(*queues) || *queues == ',' || *queues == ']')
518 if (parse_queue_set(queue_start, xtr_type, devargs) < 0)
520 } while (*queues != '\0');
526 handle_proto_xtr_arg(__rte_unused const char *key, const char *value,
529 struct ice_devargs *devargs = extra_args;
531 if (value == NULL || extra_args == NULL)
534 if (parse_queue_proto_xtr(value, devargs) < 0) {
536 "The protocol extraction parameter is wrong : '%s'",
545 ice_check_proto_xtr_support(struct ice_hw *hw)
547 #define FLX_REG(val, fld, idx) \
548 (((val) & GLFLXP_RXDID_FLX_WRD_##idx##_##fld##_M) >> \
549 GLFLXP_RXDID_FLX_WRD_##idx##_##fld##_S)
556 [PROTO_XTR_VLAN] = { ICE_RXDID_COMMS_AUX_VLAN,
558 ICE_PROT_EVLAN_O, ICE_PROT_VLAN_O},
559 [PROTO_XTR_IPV4] = { ICE_RXDID_COMMS_AUX_IPV4,
561 ICE_PROT_IPV4_OF_OR_S,
562 ICE_PROT_IPV4_OF_OR_S },
563 [PROTO_XTR_IPV6] = { ICE_RXDID_COMMS_AUX_IPV6,
565 ICE_PROT_IPV6_OF_OR_S,
566 ICE_PROT_IPV6_OF_OR_S },
567 [PROTO_XTR_IPV6_FLOW] = { ICE_RXDID_COMMS_AUX_IPV6_FLOW,
569 ICE_PROT_IPV6_OF_OR_S,
570 ICE_PROT_IPV6_OF_OR_S },
571 [PROTO_XTR_TCP] = { ICE_RXDID_COMMS_AUX_TCP,
573 ICE_PROT_TCP_IL, ICE_PROT_ID_INVAL },
574 [PROTO_XTR_IP_OFFSET] = { ICE_RXDID_COMMS_AUX_IP_OFFSET,
576 ICE_PROT_IPV4_OF_OR_S,
577 ICE_PROT_IPV6_OF_OR_S },
581 for (i = 0; i < RTE_DIM(xtr_sets); i++) {
582 uint32_t rxdid = xtr_sets[i].rxdid;
585 if (xtr_sets[i].protid_0 != ICE_PROT_ID_INVAL) {
586 v = ICE_READ_REG(hw, GLFLXP_RXDID_FLX_WRD_4(rxdid));
588 if (FLX_REG(v, PROT_MDID, 4) == xtr_sets[i].protid_0 &&
589 FLX_REG(v, RXDID_OPCODE, 4) == xtr_sets[i].opcode)
590 ice_proto_xtr_hw_support[i] = true;
593 if (xtr_sets[i].protid_1 != ICE_PROT_ID_INVAL) {
594 v = ICE_READ_REG(hw, GLFLXP_RXDID_FLX_WRD_5(rxdid));
596 if (FLX_REG(v, PROT_MDID, 5) == xtr_sets[i].protid_1 &&
597 FLX_REG(v, RXDID_OPCODE, 5) == xtr_sets[i].opcode)
598 ice_proto_xtr_hw_support[i] = true;
604 ice_res_pool_init(struct ice_res_pool_info *pool, uint32_t base,
607 struct pool_entry *entry;
612 entry = rte_zmalloc(NULL, sizeof(*entry), 0);
615 "Failed to allocate memory for resource pool");
619 /* queue heap initialize */
620 pool->num_free = num;
623 LIST_INIT(&pool->alloc_list);
624 LIST_INIT(&pool->free_list);
626 /* Initialize element */
630 LIST_INSERT_HEAD(&pool->free_list, entry, next);
635 ice_res_pool_alloc(struct ice_res_pool_info *pool,
638 struct pool_entry *entry, *valid_entry;
641 PMD_INIT_LOG(ERR, "Invalid parameter");
645 if (pool->num_free < num) {
646 PMD_INIT_LOG(ERR, "No resource. ask:%u, available:%u",
647 num, pool->num_free);
652 /* Lookup in free list and find most fit one */
653 LIST_FOREACH(entry, &pool->free_list, next) {
654 if (entry->len >= num) {
656 if (entry->len == num) {
661 valid_entry->len > entry->len)
666 /* Not find one to satisfy the request, return */
668 PMD_INIT_LOG(ERR, "No valid entry found");
672 * The entry have equal queue number as requested,
673 * remove it from alloc_list.
675 if (valid_entry->len == num) {
676 LIST_REMOVE(valid_entry, next);
679 * The entry have more numbers than requested,
680 * create a new entry for alloc_list and minus its
681 * queue base and number in free_list.
683 entry = rte_zmalloc(NULL, sizeof(*entry), 0);
686 "Failed to allocate memory for "
690 entry->base = valid_entry->base;
692 valid_entry->base += num;
693 valid_entry->len -= num;
697 /* Insert it into alloc list, not sorted */
698 LIST_INSERT_HEAD(&pool->alloc_list, valid_entry, next);
700 pool->num_free -= valid_entry->len;
701 pool->num_alloc += valid_entry->len;
703 return valid_entry->base + pool->base;
707 ice_res_pool_destroy(struct ice_res_pool_info *pool)
709 struct pool_entry *entry, *next_entry;
714 for (entry = LIST_FIRST(&pool->alloc_list);
715 entry && (next_entry = LIST_NEXT(entry, next), 1);
716 entry = next_entry) {
717 LIST_REMOVE(entry, next);
721 for (entry = LIST_FIRST(&pool->free_list);
722 entry && (next_entry = LIST_NEXT(entry, next), 1);
723 entry = next_entry) {
724 LIST_REMOVE(entry, next);
731 LIST_INIT(&pool->alloc_list);
732 LIST_INIT(&pool->free_list);
736 ice_vsi_config_default_rss(struct ice_aqc_vsi_props *info)
738 /* Set VSI LUT selection */
739 info->q_opt_rss = ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI &
740 ICE_AQ_VSI_Q_OPT_RSS_LUT_M;
741 /* Set Hash scheme */
742 info->q_opt_rss |= ICE_AQ_VSI_Q_OPT_RSS_TPLZ &
743 ICE_AQ_VSI_Q_OPT_RSS_HASH_M;
745 info->q_opt_tc = ICE_AQ_VSI_Q_OPT_TC_OVR_M;
748 static enum ice_status
749 ice_vsi_config_tc_queue_mapping(struct ice_vsi *vsi,
750 struct ice_aqc_vsi_props *info,
751 uint8_t enabled_tcmap)
753 uint16_t bsf, qp_idx;
755 /* default tc 0 now. Multi-TC supporting need to be done later.
756 * Configure TC and queue mapping parameters, for enabled TC,
757 * allocate qpnum_per_tc queues to this traffic.
759 if (enabled_tcmap != 0x01) {
760 PMD_INIT_LOG(ERR, "only TC0 is supported");
764 vsi->nb_qps = RTE_MIN(vsi->nb_qps, ICE_MAX_Q_PER_TC);
765 bsf = rte_bsf32(vsi->nb_qps);
766 /* Adjust the queue number to actual queues that can be applied */
767 vsi->nb_qps = 0x1 << bsf;
770 /* Set tc and queue mapping with VSI */
771 info->tc_mapping[0] = rte_cpu_to_le_16((qp_idx <<
772 ICE_AQ_VSI_TC_Q_OFFSET_S) |
773 (bsf << ICE_AQ_VSI_TC_Q_NUM_S));
775 /* Associate queue number with VSI */
776 info->mapping_flags |= rte_cpu_to_le_16(ICE_AQ_VSI_Q_MAP_CONTIG);
777 info->q_mapping[0] = rte_cpu_to_le_16(vsi->base_queue);
778 info->q_mapping[1] = rte_cpu_to_le_16(vsi->nb_qps);
779 info->valid_sections |=
780 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
781 /* Set the info.ingress_table and info.egress_table
782 * for UP translate table. Now just set it to 1:1 map by default
783 * -- 0b 111 110 101 100 011 010 001 000 == 0xFAC688
785 #define ICE_TC_QUEUE_TABLE_DFLT 0x00FAC688
786 info->ingress_table = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
787 info->egress_table = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
788 info->outer_up_table = rte_cpu_to_le_32(ICE_TC_QUEUE_TABLE_DFLT);
793 ice_init_mac_address(struct rte_eth_dev *dev)
795 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
797 if (!rte_is_unicast_ether_addr
798 ((struct rte_ether_addr *)hw->port_info[0].mac.lan_addr)) {
799 PMD_INIT_LOG(ERR, "Invalid MAC address");
804 (struct rte_ether_addr *)hw->port_info[0].mac.lan_addr,
805 (struct rte_ether_addr *)hw->port_info[0].mac.perm_addr);
807 dev->data->mac_addrs =
808 rte_zmalloc(NULL, sizeof(struct rte_ether_addr), 0);
809 if (!dev->data->mac_addrs) {
811 "Failed to allocate memory to store mac address");
814 /* store it to dev data */
816 (struct rte_ether_addr *)hw->port_info[0].mac.perm_addr,
817 &dev->data->mac_addrs[0]);
821 /* Find out specific MAC filter */
822 static struct ice_mac_filter *
823 ice_find_mac_filter(struct ice_vsi *vsi, struct rte_ether_addr *macaddr)
825 struct ice_mac_filter *f;
827 TAILQ_FOREACH(f, &vsi->mac_list, next) {
828 if (rte_is_same_ether_addr(macaddr, &f->mac_info.mac_addr))
836 ice_add_mac_filter(struct ice_vsi *vsi, struct rte_ether_addr *mac_addr)
838 struct ice_fltr_list_entry *m_list_itr = NULL;
839 struct ice_mac_filter *f;
840 struct LIST_HEAD_TYPE list_head;
841 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
844 /* If it's added and configured, return */
845 f = ice_find_mac_filter(vsi, mac_addr);
847 PMD_DRV_LOG(INFO, "This MAC filter already exists.");
851 INIT_LIST_HEAD(&list_head);
853 m_list_itr = (struct ice_fltr_list_entry *)
854 ice_malloc(hw, sizeof(*m_list_itr));
859 ice_memcpy(m_list_itr->fltr_info.l_data.mac.mac_addr,
860 mac_addr, ETH_ALEN, ICE_NONDMA_TO_NONDMA);
861 m_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
862 m_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
863 m_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_MAC;
864 m_list_itr->fltr_info.flag = ICE_FLTR_TX;
865 m_list_itr->fltr_info.vsi_handle = vsi->idx;
867 LIST_ADD(&m_list_itr->list_entry, &list_head);
870 ret = ice_add_mac(hw, &list_head);
871 if (ret != ICE_SUCCESS) {
872 PMD_DRV_LOG(ERR, "Failed to add MAC filter");
876 /* Add the mac addr into mac list */
877 f = rte_zmalloc(NULL, sizeof(*f), 0);
879 PMD_DRV_LOG(ERR, "failed to allocate memory");
883 rte_ether_addr_copy(mac_addr, &f->mac_info.mac_addr);
884 TAILQ_INSERT_TAIL(&vsi->mac_list, f, next);
890 rte_free(m_list_itr);
895 ice_remove_mac_filter(struct ice_vsi *vsi, struct rte_ether_addr *mac_addr)
897 struct ice_fltr_list_entry *m_list_itr = NULL;
898 struct ice_mac_filter *f;
899 struct LIST_HEAD_TYPE list_head;
900 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
903 /* Can't find it, return an error */
904 f = ice_find_mac_filter(vsi, mac_addr);
908 INIT_LIST_HEAD(&list_head);
910 m_list_itr = (struct ice_fltr_list_entry *)
911 ice_malloc(hw, sizeof(*m_list_itr));
916 ice_memcpy(m_list_itr->fltr_info.l_data.mac.mac_addr,
917 mac_addr, ETH_ALEN, ICE_NONDMA_TO_NONDMA);
918 m_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
919 m_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
920 m_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_MAC;
921 m_list_itr->fltr_info.flag = ICE_FLTR_TX;
922 m_list_itr->fltr_info.vsi_handle = vsi->idx;
924 LIST_ADD(&m_list_itr->list_entry, &list_head);
926 /* remove the mac filter */
927 ret = ice_remove_mac(hw, &list_head);
928 if (ret != ICE_SUCCESS) {
929 PMD_DRV_LOG(ERR, "Failed to remove MAC filter");
934 /* Remove the mac addr from mac list */
935 TAILQ_REMOVE(&vsi->mac_list, f, next);
941 rte_free(m_list_itr);
945 /* Find out specific VLAN filter */
946 static struct ice_vlan_filter *
947 ice_find_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
949 struct ice_vlan_filter *f;
951 TAILQ_FOREACH(f, &vsi->vlan_list, next) {
952 if (vlan_id == f->vlan_info.vlan_id)
960 ice_add_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
962 struct ice_fltr_list_entry *v_list_itr = NULL;
963 struct ice_vlan_filter *f;
964 struct LIST_HEAD_TYPE list_head;
968 if (!vsi || vlan_id > RTE_ETHER_MAX_VLAN_ID)
971 hw = ICE_VSI_TO_HW(vsi);
973 /* If it's added and configured, return. */
974 f = ice_find_vlan_filter(vsi, vlan_id);
976 PMD_DRV_LOG(INFO, "This VLAN filter already exists.");
980 if (!vsi->vlan_anti_spoof_on && !vsi->vlan_filter_on)
983 INIT_LIST_HEAD(&list_head);
985 v_list_itr = (struct ice_fltr_list_entry *)
986 ice_malloc(hw, sizeof(*v_list_itr));
991 v_list_itr->fltr_info.l_data.vlan.vlan_id = vlan_id;
992 v_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
993 v_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
994 v_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_VLAN;
995 v_list_itr->fltr_info.flag = ICE_FLTR_TX;
996 v_list_itr->fltr_info.vsi_handle = vsi->idx;
998 LIST_ADD(&v_list_itr->list_entry, &list_head);
1001 ret = ice_add_vlan(hw, &list_head);
1002 if (ret != ICE_SUCCESS) {
1003 PMD_DRV_LOG(ERR, "Failed to add VLAN filter");
1008 /* Add vlan into vlan list */
1009 f = rte_zmalloc(NULL, sizeof(*f), 0);
1011 PMD_DRV_LOG(ERR, "failed to allocate memory");
1015 f->vlan_info.vlan_id = vlan_id;
1016 TAILQ_INSERT_TAIL(&vsi->vlan_list, f, next);
1022 rte_free(v_list_itr);
1027 ice_remove_vlan_filter(struct ice_vsi *vsi, uint16_t vlan_id)
1029 struct ice_fltr_list_entry *v_list_itr = NULL;
1030 struct ice_vlan_filter *f;
1031 struct LIST_HEAD_TYPE list_head;
1036 * Vlan 0 is the generic filter for untagged packets
1037 * and can't be removed.
1039 if (!vsi || vlan_id == 0 || vlan_id > RTE_ETHER_MAX_VLAN_ID)
1042 hw = ICE_VSI_TO_HW(vsi);
1044 /* Can't find it, return an error */
1045 f = ice_find_vlan_filter(vsi, vlan_id);
1049 INIT_LIST_HEAD(&list_head);
1051 v_list_itr = (struct ice_fltr_list_entry *)
1052 ice_malloc(hw, sizeof(*v_list_itr));
1058 v_list_itr->fltr_info.l_data.vlan.vlan_id = vlan_id;
1059 v_list_itr->fltr_info.src_id = ICE_SRC_ID_VSI;
1060 v_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
1061 v_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_VLAN;
1062 v_list_itr->fltr_info.flag = ICE_FLTR_TX;
1063 v_list_itr->fltr_info.vsi_handle = vsi->idx;
1065 LIST_ADD(&v_list_itr->list_entry, &list_head);
1067 /* remove the vlan filter */
1068 ret = ice_remove_vlan(hw, &list_head);
1069 if (ret != ICE_SUCCESS) {
1070 PMD_DRV_LOG(ERR, "Failed to remove VLAN filter");
1075 /* Remove the vlan id from vlan list */
1076 TAILQ_REMOVE(&vsi->vlan_list, f, next);
1082 rte_free(v_list_itr);
1087 ice_remove_all_mac_vlan_filters(struct ice_vsi *vsi)
1089 struct ice_mac_filter *m_f;
1090 struct ice_vlan_filter *v_f;
1093 if (!vsi || !vsi->mac_num)
1096 TAILQ_FOREACH(m_f, &vsi->mac_list, next) {
1097 ret = ice_remove_mac_filter(vsi, &m_f->mac_info.mac_addr);
1098 if (ret != ICE_SUCCESS) {
1104 if (vsi->vlan_num == 0)
1107 TAILQ_FOREACH(v_f, &vsi->vlan_list, next) {
1108 ret = ice_remove_vlan_filter(vsi, v_f->vlan_info.vlan_id);
1109 if (ret != ICE_SUCCESS) {
1120 ice_vsi_config_qinq_insertion(struct ice_vsi *vsi, bool on)
1122 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1123 struct ice_vsi_ctx ctxt;
1127 /* Check if it has been already on or off */
1128 if (vsi->info.valid_sections &
1129 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID)) {
1131 if ((vsi->info.outer_vlan_flags &
1132 ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_ACCEPT_HOST) ==
1133 ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_ACCEPT_HOST)
1134 return 0; /* already on */
1136 if (!(vsi->info.outer_vlan_flags &
1137 ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_ACCEPT_HOST))
1138 return 0; /* already off */
1143 qinq_flags = ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_ACCEPT_HOST;
1146 /* clear global insertion and use per packet insertion */
1147 vsi->info.outer_vlan_flags &= ~(ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_INSERT);
1148 vsi->info.outer_vlan_flags &= ~(ICE_AQ_VSI_OUTER_VLAN_PORT_BASED_ACCEPT_HOST);
1149 vsi->info.outer_vlan_flags |= qinq_flags;
1150 /* use default vlan type 0x8100 */
1151 vsi->info.outer_vlan_flags &= ~(ICE_AQ_VSI_OUTER_TAG_TYPE_M);
1152 vsi->info.outer_vlan_flags |= ICE_DFLT_OUTER_TAG_TYPE <<
1153 ICE_AQ_VSI_OUTER_TAG_TYPE_S;
1154 (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1155 ctxt.info.valid_sections =
1156 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1157 ctxt.vsi_num = vsi->vsi_id;
1158 ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
1161 "Update VSI failed to %s qinq stripping",
1162 on ? "enable" : "disable");
1166 vsi->info.valid_sections |=
1167 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1173 ice_vsi_config_qinq_stripping(struct ice_vsi *vsi, bool on)
1175 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1176 struct ice_vsi_ctx ctxt;
1180 /* Check if it has been already on or off */
1181 if (vsi->info.valid_sections &
1182 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID)) {
1184 if ((vsi->info.outer_vlan_flags &
1185 ICE_AQ_VSI_OUTER_VLAN_EMODE_M) ==
1186 ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW)
1187 return 0; /* already on */
1189 if ((vsi->info.outer_vlan_flags &
1190 ICE_AQ_VSI_OUTER_VLAN_EMODE_M) ==
1191 ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW_BOTH)
1192 return 0; /* already off */
1197 qinq_flags = ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW;
1199 qinq_flags = ICE_AQ_VSI_OUTER_VLAN_EMODE_SHOW_BOTH;
1200 vsi->info.outer_vlan_flags &= ~(ICE_AQ_VSI_OUTER_VLAN_EMODE_M);
1201 vsi->info.outer_vlan_flags |= qinq_flags;
1202 /* use default vlan type 0x8100 */
1203 vsi->info.outer_vlan_flags &= ~(ICE_AQ_VSI_OUTER_TAG_TYPE_M);
1204 vsi->info.outer_vlan_flags |= ICE_DFLT_OUTER_TAG_TYPE <<
1205 ICE_AQ_VSI_OUTER_TAG_TYPE_S;
1206 (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
1207 ctxt.info.valid_sections =
1208 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1209 ctxt.vsi_num = vsi->vsi_id;
1210 ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
1213 "Update VSI failed to %s qinq stripping",
1214 on ? "enable" : "disable");
1218 vsi->info.valid_sections |=
1219 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_OUTER_TAG_VALID);
1225 ice_vsi_config_double_vlan(struct ice_vsi *vsi, int on)
1229 ret = ice_vsi_config_qinq_stripping(vsi, on);
1231 PMD_DRV_LOG(ERR, "Fail to set qinq stripping - %d", ret);
1233 ret = ice_vsi_config_qinq_insertion(vsi, on);
1235 PMD_DRV_LOG(ERR, "Fail to set qinq insertion - %d", ret);
1242 ice_pf_enable_irq0(struct ice_hw *hw)
1244 /* reset the registers */
1245 ICE_WRITE_REG(hw, PFINT_OICR_ENA, 0);
1246 ICE_READ_REG(hw, PFINT_OICR);
1249 ICE_WRITE_REG(hw, PFINT_OICR_ENA,
1250 (uint32_t)(PFINT_OICR_ENA_INT_ENA_M &
1251 (~PFINT_OICR_LINK_STAT_CHANGE_M)));
1253 ICE_WRITE_REG(hw, PFINT_OICR_CTL,
1254 (0 & PFINT_OICR_CTL_MSIX_INDX_M) |
1255 ((0 << PFINT_OICR_CTL_ITR_INDX_S) &
1256 PFINT_OICR_CTL_ITR_INDX_M) |
1257 PFINT_OICR_CTL_CAUSE_ENA_M);
1259 ICE_WRITE_REG(hw, PFINT_FW_CTL,
1260 (0 & PFINT_FW_CTL_MSIX_INDX_M) |
1261 ((0 << PFINT_FW_CTL_ITR_INDX_S) &
1262 PFINT_FW_CTL_ITR_INDX_M) |
1263 PFINT_FW_CTL_CAUSE_ENA_M);
1265 ICE_WRITE_REG(hw, PFINT_OICR_ENA, PFINT_OICR_ENA_INT_ENA_M);
1268 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0),
1269 GLINT_DYN_CTL_INTENA_M |
1270 GLINT_DYN_CTL_CLEARPBA_M |
1271 GLINT_DYN_CTL_ITR_INDX_M);
1278 ice_pf_disable_irq0(struct ice_hw *hw)
1280 /* Disable all interrupt types */
1281 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0), GLINT_DYN_CTL_WB_ON_ITR_M);
1287 ice_handle_aq_msg(struct rte_eth_dev *dev)
1289 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1290 struct ice_ctl_q_info *cq = &hw->adminq;
1291 struct ice_rq_event_info event;
1292 uint16_t pending, opcode;
1295 event.buf_len = ICE_AQ_MAX_BUF_LEN;
1296 event.msg_buf = rte_zmalloc(NULL, event.buf_len, 0);
1297 if (!event.msg_buf) {
1298 PMD_DRV_LOG(ERR, "Failed to allocate mem");
1304 ret = ice_clean_rq_elem(hw, cq, &event, &pending);
1306 if (ret != ICE_SUCCESS) {
1308 "Failed to read msg from AdminQ, "
1310 hw->adminq.sq_last_status);
1313 opcode = rte_le_to_cpu_16(event.desc.opcode);
1316 case ice_aqc_opc_get_link_status:
1317 ret = ice_link_update(dev, 0);
1319 rte_eth_dev_callback_process
1320 (dev, RTE_ETH_EVENT_INTR_LSC, NULL);
1323 PMD_DRV_LOG(DEBUG, "Request %u is not supported yet",
1328 rte_free(event.msg_buf);
1333 * Interrupt handler triggered by NIC for handling
1334 * specific interrupt.
1337 * Pointer to interrupt handle.
1339 * The address of parameter (struct rte_eth_dev *) regsitered before.
1345 ice_interrupt_handler(void *param)
1347 struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
1348 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1356 uint32_t int_fw_ctl;
1359 /* Disable interrupt */
1360 ice_pf_disable_irq0(hw);
1362 /* read out interrupt causes */
1363 oicr = ICE_READ_REG(hw, PFINT_OICR);
1365 int_fw_ctl = ICE_READ_REG(hw, PFINT_FW_CTL);
1368 /* No interrupt event indicated */
1369 if (!(oicr & PFINT_OICR_INTEVENT_M)) {
1370 PMD_DRV_LOG(INFO, "No interrupt event");
1375 if (int_fw_ctl & PFINT_FW_CTL_INTEVENT_M) {
1376 PMD_DRV_LOG(INFO, "FW_CTL: link state change event");
1377 ice_handle_aq_msg(dev);
1380 if (oicr & PFINT_OICR_LINK_STAT_CHANGE_M) {
1381 PMD_DRV_LOG(INFO, "OICR: link state change event");
1382 ret = ice_link_update(dev, 0);
1384 rte_eth_dev_callback_process
1385 (dev, RTE_ETH_EVENT_INTR_LSC, NULL);
1389 if (oicr & PFINT_OICR_MAL_DETECT_M) {
1390 PMD_DRV_LOG(WARNING, "OICR: MDD event");
1391 reg = ICE_READ_REG(hw, GL_MDET_TX_PQM);
1392 if (reg & GL_MDET_TX_PQM_VALID_M) {
1393 pf_num = (reg & GL_MDET_TX_PQM_PF_NUM_M) >>
1394 GL_MDET_TX_PQM_PF_NUM_S;
1395 event = (reg & GL_MDET_TX_PQM_MAL_TYPE_M) >>
1396 GL_MDET_TX_PQM_MAL_TYPE_S;
1397 queue = (reg & GL_MDET_TX_PQM_QNUM_M) >>
1398 GL_MDET_TX_PQM_QNUM_S;
1400 PMD_DRV_LOG(WARNING, "Malicious Driver Detection event "
1401 "%d by PQM on TX queue %d PF# %d",
1402 event, queue, pf_num);
1405 reg = ICE_READ_REG(hw, GL_MDET_TX_TCLAN);
1406 if (reg & GL_MDET_TX_TCLAN_VALID_M) {
1407 pf_num = (reg & GL_MDET_TX_TCLAN_PF_NUM_M) >>
1408 GL_MDET_TX_TCLAN_PF_NUM_S;
1409 event = (reg & GL_MDET_TX_TCLAN_MAL_TYPE_M) >>
1410 GL_MDET_TX_TCLAN_MAL_TYPE_S;
1411 queue = (reg & GL_MDET_TX_TCLAN_QNUM_M) >>
1412 GL_MDET_TX_TCLAN_QNUM_S;
1414 PMD_DRV_LOG(WARNING, "Malicious Driver Detection event "
1415 "%d by TCLAN on TX queue %d PF# %d",
1416 event, queue, pf_num);
1420 /* Enable interrupt */
1421 ice_pf_enable_irq0(hw);
1422 rte_intr_ack(dev->intr_handle);
1426 ice_init_proto_xtr(struct rte_eth_dev *dev)
1428 struct ice_adapter *ad =
1429 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1430 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1431 struct ice_hw *hw = ICE_PF_TO_HW(pf);
1432 const struct proto_xtr_ol_flag *ol_flag;
1433 bool proto_xtr_enable = false;
1437 pf->proto_xtr = rte_zmalloc(NULL, pf->lan_nb_qps, 0);
1438 if (unlikely(pf->proto_xtr == NULL)) {
1439 PMD_DRV_LOG(ERR, "No memory for setting up protocol extraction table");
1443 for (i = 0; i < pf->lan_nb_qps; i++) {
1444 pf->proto_xtr[i] = ad->devargs.proto_xtr[i] != PROTO_XTR_NONE ?
1445 ad->devargs.proto_xtr[i] :
1446 ad->devargs.proto_xtr_dflt;
1448 if (pf->proto_xtr[i] != PROTO_XTR_NONE) {
1449 uint8_t type = pf->proto_xtr[i];
1451 ice_proto_xtr_ol_flag_params[type].required = true;
1452 proto_xtr_enable = true;
1456 if (likely(!proto_xtr_enable))
1459 ice_check_proto_xtr_support(hw);
1461 offset = rte_mbuf_dynfield_register(&ice_proto_xtr_metadata_param);
1462 if (unlikely(offset == -1)) {
1464 "Protocol extraction metadata is disabled in mbuf with error %d",
1470 "Protocol extraction metadata offset in mbuf is : %d",
1472 rte_net_ice_dynfield_proto_xtr_metadata_offs = offset;
1474 for (i = 0; i < RTE_DIM(ice_proto_xtr_ol_flag_params); i++) {
1475 ol_flag = &ice_proto_xtr_ol_flag_params[i];
1477 if (!ol_flag->required)
1480 if (!ice_proto_xtr_hw_support[i]) {
1482 "Protocol extraction type %u is not supported in hardware",
1484 rte_net_ice_dynfield_proto_xtr_metadata_offs = -1;
1488 offset = rte_mbuf_dynflag_register(&ol_flag->param);
1489 if (unlikely(offset == -1)) {
1491 "Protocol extraction offload '%s' failed to register with error %d",
1492 ol_flag->param.name, -rte_errno);
1494 rte_net_ice_dynfield_proto_xtr_metadata_offs = -1;
1499 "Protocol extraction offload '%s' offset in mbuf is : %d",
1500 ol_flag->param.name, offset);
1501 *ol_flag->ol_flag = 1ULL << offset;
1505 /* Initialize SW parameters of PF */
1507 ice_pf_sw_init(struct rte_eth_dev *dev)
1509 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1510 struct ice_hw *hw = ICE_PF_TO_HW(pf);
1513 (uint16_t)RTE_MIN(hw->func_caps.common_cap.num_txq,
1514 hw->func_caps.common_cap.num_rxq);
1516 pf->lan_nb_qps = pf->lan_nb_qp_max;
1518 ice_init_proto_xtr(dev);
1520 if (hw->func_caps.fd_fltr_guar > 0 ||
1521 hw->func_caps.fd_fltr_best_effort > 0) {
1522 pf->flags |= ICE_FLAG_FDIR;
1523 pf->fdir_nb_qps = ICE_DEFAULT_QP_NUM_FDIR;
1524 pf->lan_nb_qps = pf->lan_nb_qp_max - pf->fdir_nb_qps;
1526 pf->fdir_nb_qps = 0;
1528 pf->fdir_qp_offset = 0;
1534 ice_setup_vsi(struct ice_pf *pf, enum ice_vsi_type type)
1536 struct ice_hw *hw = ICE_PF_TO_HW(pf);
1537 struct ice_vsi *vsi = NULL;
1538 struct ice_vsi_ctx vsi_ctx;
1540 struct rte_ether_addr broadcast = {
1541 .addr_bytes = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff} };
1542 struct rte_ether_addr mac_addr;
1543 uint16_t max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
1544 uint8_t tc_bitmap = 0x1;
1547 /* hw->num_lports = 1 in NIC mode */
1548 vsi = rte_zmalloc(NULL, sizeof(struct ice_vsi), 0);
1552 vsi->idx = pf->next_vsi_idx;
1555 vsi->adapter = ICE_PF_TO_ADAPTER(pf);
1556 vsi->max_macaddrs = ICE_NUM_MACADDR_MAX;
1557 vsi->vlan_anti_spoof_on = 0;
1558 vsi->vlan_filter_on = 1;
1559 TAILQ_INIT(&vsi->mac_list);
1560 TAILQ_INIT(&vsi->vlan_list);
1562 /* Be sync with ETH_RSS_RETA_SIZE_x maximum value definition */
1563 pf->hash_lut_size = hw->func_caps.common_cap.rss_table_size >
1564 ETH_RSS_RETA_SIZE_512 ? ETH_RSS_RETA_SIZE_512 :
1565 hw->func_caps.common_cap.rss_table_size;
1566 pf->flags |= ICE_FLAG_RSS_AQ_CAPABLE;
1568 memset(&vsi_ctx, 0, sizeof(vsi_ctx));
1571 vsi->nb_qps = pf->lan_nb_qps;
1572 vsi->base_queue = 1;
1573 ice_vsi_config_default_rss(&vsi_ctx.info);
1574 vsi_ctx.alloc_from_pool = true;
1575 vsi_ctx.flags = ICE_AQ_VSI_TYPE_PF;
1576 /* switch_id is queried by get_switch_config aq, which is done
1579 vsi_ctx.info.sw_id = hw->port_info->sw_id;
1580 vsi_ctx.info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
1581 /* Allow all untagged or tagged packets */
1582 vsi_ctx.info.inner_vlan_flags = ICE_AQ_VSI_INNER_VLAN_TX_MODE_ALL;
1583 vsi_ctx.info.inner_vlan_flags |= ICE_AQ_VSI_INNER_VLAN_EMODE_NOTHING;
1584 vsi_ctx.info.q_opt_rss = ICE_AQ_VSI_Q_OPT_RSS_LUT_PF |
1585 ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
1588 cfg = ICE_AQ_VSI_PROP_SECURITY_VALID |
1589 ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
1590 vsi_ctx.info.valid_sections |= rte_cpu_to_le_16(cfg);
1591 cfg = ICE_AQ_VSI_FD_ENABLE;
1592 vsi_ctx.info.fd_options = rte_cpu_to_le_16(cfg);
1593 vsi_ctx.info.max_fd_fltr_dedicated =
1594 rte_cpu_to_le_16(hw->func_caps.fd_fltr_guar);
1595 vsi_ctx.info.max_fd_fltr_shared =
1596 rte_cpu_to_le_16(hw->func_caps.fd_fltr_best_effort);
1598 /* Enable VLAN/UP trip */
1599 ret = ice_vsi_config_tc_queue_mapping(vsi,
1604 "tc queue mapping with vsi failed, "
1612 vsi->nb_qps = pf->fdir_nb_qps;
1613 vsi->base_queue = ICE_FDIR_QUEUE_ID;
1614 vsi_ctx.alloc_from_pool = true;
1615 vsi_ctx.flags = ICE_AQ_VSI_TYPE_PF;
1617 cfg = ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
1618 vsi_ctx.info.valid_sections |= rte_cpu_to_le_16(cfg);
1619 cfg = ICE_AQ_VSI_FD_PROG_ENABLE;
1620 vsi_ctx.info.fd_options = rte_cpu_to_le_16(cfg);
1621 vsi_ctx.info.sw_id = hw->port_info->sw_id;
1622 vsi_ctx.info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
1623 ret = ice_vsi_config_tc_queue_mapping(vsi,
1628 "tc queue mapping with vsi failed, "
1635 /* for other types of VSI */
1636 PMD_INIT_LOG(ERR, "other types of VSI not supported");
1640 /* VF has MSIX interrupt in VF range, don't allocate here */
1641 if (type == ICE_VSI_PF) {
1642 ret = ice_res_pool_alloc(&pf->msix_pool,
1643 RTE_MIN(vsi->nb_qps,
1644 RTE_MAX_RXTX_INTR_VEC_ID));
1646 PMD_INIT_LOG(ERR, "VSI MAIN %d get heap failed %d",
1649 vsi->msix_intr = ret;
1650 vsi->nb_msix = RTE_MIN(vsi->nb_qps, RTE_MAX_RXTX_INTR_VEC_ID);
1651 } else if (type == ICE_VSI_CTRL) {
1652 ret = ice_res_pool_alloc(&pf->msix_pool, 1);
1654 PMD_DRV_LOG(ERR, "VSI %d get heap failed %d",
1657 vsi->msix_intr = ret;
1663 ret = ice_add_vsi(hw, vsi->idx, &vsi_ctx, NULL);
1664 if (ret != ICE_SUCCESS) {
1665 PMD_INIT_LOG(ERR, "add vsi failed, err = %d", ret);
1668 /* store vsi information is SW structure */
1669 vsi->vsi_id = vsi_ctx.vsi_num;
1670 vsi->info = vsi_ctx.info;
1671 pf->vsis_allocated = vsi_ctx.vsis_allocd;
1672 pf->vsis_unallocated = vsi_ctx.vsis_unallocated;
1674 if (type == ICE_VSI_PF) {
1675 /* MAC configuration */
1676 rte_ether_addr_copy((struct rte_ether_addr *)
1677 hw->port_info->mac.perm_addr,
1680 rte_ether_addr_copy(&pf->dev_addr, &mac_addr);
1681 ret = ice_add_mac_filter(vsi, &mac_addr);
1682 if (ret != ICE_SUCCESS)
1683 PMD_INIT_LOG(ERR, "Failed to add dflt MAC filter");
1685 rte_ether_addr_copy(&broadcast, &mac_addr);
1686 ret = ice_add_mac_filter(vsi, &mac_addr);
1687 if (ret != ICE_SUCCESS)
1688 PMD_INIT_LOG(ERR, "Failed to add MAC filter");
1691 /* At the beginning, only TC0. */
1692 /* What we need here is the maximam number of the TX queues.
1693 * Currently vsi->nb_qps means it.
1694 * Correct it if any change.
1696 max_txqs[0] = vsi->nb_qps;
1697 ret = ice_cfg_vsi_lan(hw->port_info, vsi->idx,
1698 tc_bitmap, max_txqs);
1699 if (ret != ICE_SUCCESS)
1700 PMD_INIT_LOG(ERR, "Failed to config vsi sched");
1710 ice_send_driver_ver(struct ice_hw *hw)
1712 struct ice_driver_ver dv;
1714 /* we don't have driver version use 0 for dummy */
1718 dv.subbuild_ver = 0;
1719 strncpy((char *)dv.driver_string, "dpdk", sizeof(dv.driver_string));
1721 return ice_aq_send_driver_ver(hw, &dv, NULL);
1725 ice_pf_setup(struct ice_pf *pf)
1727 struct ice_hw *hw = ICE_PF_TO_HW(pf);
1728 struct ice_vsi *vsi;
1731 /* Clear all stats counters */
1732 pf->offset_loaded = false;
1733 memset(&pf->stats, 0, sizeof(struct ice_hw_port_stats));
1734 memset(&pf->stats_offset, 0, sizeof(struct ice_hw_port_stats));
1735 memset(&pf->internal_stats, 0, sizeof(struct ice_eth_stats));
1736 memset(&pf->internal_stats_offset, 0, sizeof(struct ice_eth_stats));
1738 /* force guaranteed filter pool for PF */
1739 ice_alloc_fd_guar_item(hw, &unused,
1740 hw->func_caps.fd_fltr_guar);
1741 /* force shared filter pool for PF */
1742 ice_alloc_fd_shrd_item(hw, &unused,
1743 hw->func_caps.fd_fltr_best_effort);
1745 vsi = ice_setup_vsi(pf, ICE_VSI_PF);
1747 PMD_INIT_LOG(ERR, "Failed to add vsi for PF");
1757 * Extract device serial number from PCIe Configuration Space and
1758 * determine the pkg file path according to the DSN.
1761 ice_pkg_file_search_path(struct rte_pci_device *pci_dev, char *pkg_file)
1764 char opt_ddp_filename[ICE_MAX_PKG_FILENAME_SIZE];
1765 uint32_t dsn_low, dsn_high;
1766 memset(opt_ddp_filename, 0, ICE_MAX_PKG_FILENAME_SIZE);
1768 pos = rte_pci_find_ext_capability(pci_dev, RTE_PCI_EXT_CAP_ID_DSN);
1771 rte_pci_read_config(pci_dev, &dsn_low, 4, pos + 4);
1772 rte_pci_read_config(pci_dev, &dsn_high, 4, pos + 8);
1773 snprintf(opt_ddp_filename, ICE_MAX_PKG_FILENAME_SIZE,
1774 "ice-%08x%08x.pkg", dsn_high, dsn_low);
1776 PMD_INIT_LOG(ERR, "Failed to read device serial number\n");
1780 strncpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_UPDATES,
1781 ICE_MAX_PKG_FILENAME_SIZE);
1782 if (!access(strcat(pkg_file, opt_ddp_filename), 0))
1785 strncpy(pkg_file, ICE_PKG_FILE_SEARCH_PATH_DEFAULT,
1786 ICE_MAX_PKG_FILENAME_SIZE);
1787 if (!access(strcat(pkg_file, opt_ddp_filename), 0))
1791 strncpy(pkg_file, ICE_PKG_FILE_UPDATES, ICE_MAX_PKG_FILENAME_SIZE);
1792 if (!access(pkg_file, 0))
1794 strncpy(pkg_file, ICE_PKG_FILE_DEFAULT, ICE_MAX_PKG_FILENAME_SIZE);
1799 ice_load_pkg_type(struct ice_hw *hw)
1801 enum ice_pkg_type package_type;
1803 /* store the activated package type (OS default or Comms) */
1804 if (!strncmp((char *)hw->active_pkg_name, ICE_OS_DEFAULT_PKG_NAME,
1806 package_type = ICE_PKG_TYPE_OS_DEFAULT;
1807 else if (!strncmp((char *)hw->active_pkg_name, ICE_COMMS_PKG_NAME,
1809 package_type = ICE_PKG_TYPE_COMMS;
1811 package_type = ICE_PKG_TYPE_UNKNOWN;
1813 PMD_INIT_LOG(NOTICE, "Active package is: %d.%d.%d.%d, %s",
1814 hw->active_pkg_ver.major, hw->active_pkg_ver.minor,
1815 hw->active_pkg_ver.update, hw->active_pkg_ver.draft,
1816 hw->active_pkg_name);
1818 return package_type;
1821 static int ice_load_pkg(struct rte_eth_dev *dev)
1823 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1824 char pkg_file[ICE_MAX_PKG_FILENAME_SIZE];
1830 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
1831 struct ice_adapter *ad =
1832 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1834 ice_pkg_file_search_path(pci_dev, pkg_file);
1836 file = fopen(pkg_file, "rb");
1838 PMD_INIT_LOG(ERR, "failed to open file: %s\n", pkg_file);
1842 err = stat(pkg_file, &fstat);
1844 PMD_INIT_LOG(ERR, "failed to get file stats\n");
1849 buf_len = fstat.st_size;
1850 buf = rte_malloc(NULL, buf_len, 0);
1853 PMD_INIT_LOG(ERR, "failed to allocate buf of size %d for package\n",
1859 err = fread(buf, buf_len, 1, file);
1861 PMD_INIT_LOG(ERR, "failed to read package data\n");
1869 err = ice_copy_and_init_pkg(hw, buf, buf_len);
1871 PMD_INIT_LOG(ERR, "ice_copy_and_init_hw failed: %d\n", err);
1875 /* store the loaded pkg type info */
1876 ad->active_pkg_type = ice_load_pkg_type(hw);
1878 err = ice_init_hw_tbls(hw);
1880 PMD_INIT_LOG(ERR, "ice_init_hw_tbls failed: %d\n", err);
1881 goto fail_init_tbls;
1887 rte_free(hw->pkg_copy);
1894 ice_base_queue_get(struct ice_pf *pf)
1897 struct ice_hw *hw = ICE_PF_TO_HW(pf);
1899 reg = ICE_READ_REG(hw, PFLAN_RX_QALLOC);
1900 if (reg & PFLAN_RX_QALLOC_VALID_M) {
1901 pf->base_queue = reg & PFLAN_RX_QALLOC_FIRSTQ_M;
1903 PMD_INIT_LOG(WARNING, "Failed to get Rx base queue"
1909 parse_bool(const char *key, const char *value, void *args)
1911 int *i = (int *)args;
1915 num = strtoul(value, &end, 10);
1917 if (num != 0 && num != 1) {
1918 PMD_DRV_LOG(WARNING, "invalid value:\"%s\" for key:\"%s\", "
1919 "value must be 0 or 1",
1928 static int ice_parse_devargs(struct rte_eth_dev *dev)
1930 struct ice_adapter *ad =
1931 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
1932 struct rte_devargs *devargs = dev->device->devargs;
1933 struct rte_kvargs *kvlist;
1936 if (devargs == NULL)
1939 kvlist = rte_kvargs_parse(devargs->args, ice_valid_args);
1940 if (kvlist == NULL) {
1941 PMD_INIT_LOG(ERR, "Invalid kvargs key\n");
1945 ad->devargs.proto_xtr_dflt = PROTO_XTR_NONE;
1946 memset(ad->devargs.proto_xtr, PROTO_XTR_NONE,
1947 sizeof(ad->devargs.proto_xtr));
1949 ret = rte_kvargs_process(kvlist, ICE_PROTO_XTR_ARG,
1950 &handle_proto_xtr_arg, &ad->devargs);
1954 ret = rte_kvargs_process(kvlist, ICE_SAFE_MODE_SUPPORT_ARG,
1955 &parse_bool, &ad->devargs.safe_mode_support);
1959 ret = rte_kvargs_process(kvlist, ICE_PIPELINE_MODE_SUPPORT_ARG,
1960 &parse_bool, &ad->devargs.pipe_mode_support);
1965 rte_kvargs_free(kvlist);
1969 /* Forward LLDP packets to default VSI by set switch rules */
1971 ice_vsi_config_sw_lldp(struct ice_vsi *vsi, bool on)
1973 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
1974 struct ice_fltr_list_entry *s_list_itr = NULL;
1975 struct LIST_HEAD_TYPE list_head;
1978 INIT_LIST_HEAD(&list_head);
1980 s_list_itr = (struct ice_fltr_list_entry *)
1981 ice_malloc(hw, sizeof(*s_list_itr));
1984 s_list_itr->fltr_info.lkup_type = ICE_SW_LKUP_ETHERTYPE;
1985 s_list_itr->fltr_info.vsi_handle = vsi->idx;
1986 s_list_itr->fltr_info.l_data.ethertype_mac.ethertype =
1987 RTE_ETHER_TYPE_LLDP;
1988 s_list_itr->fltr_info.fltr_act = ICE_FWD_TO_VSI;
1989 s_list_itr->fltr_info.flag = ICE_FLTR_RX;
1990 s_list_itr->fltr_info.src_id = ICE_SRC_ID_LPORT;
1991 LIST_ADD(&s_list_itr->list_entry, &list_head);
1993 ret = ice_add_eth_mac(hw, &list_head);
1995 ret = ice_remove_eth_mac(hw, &list_head);
1997 rte_free(s_list_itr);
2001 static enum ice_status
2002 ice_get_hw_res(struct ice_hw *hw, uint16_t res_type,
2003 uint16_t num, uint16_t desc_id,
2004 uint16_t *prof_buf, uint16_t *num_prof)
2006 struct ice_aqc_res_elem *resp_buf;
2009 bool res_shared = 1;
2010 struct ice_aq_desc aq_desc;
2011 struct ice_sq_cd *cd = NULL;
2012 struct ice_aqc_get_allocd_res_desc *cmd =
2013 &aq_desc.params.get_res_desc;
2015 buf_len = sizeof(*resp_buf) * num;
2016 resp_buf = ice_malloc(hw, buf_len);
2020 ice_fill_dflt_direct_cmd_desc(&aq_desc,
2021 ice_aqc_opc_get_allocd_res_desc);
2023 cmd->ops.cmd.res = CPU_TO_LE16(((res_type << ICE_AQC_RES_TYPE_S) &
2024 ICE_AQC_RES_TYPE_M) | (res_shared ?
2025 ICE_AQC_RES_TYPE_FLAG_SHARED : 0));
2026 cmd->ops.cmd.first_desc = CPU_TO_LE16(desc_id);
2028 ret = ice_aq_send_cmd(hw, &aq_desc, resp_buf, buf_len, cd);
2030 *num_prof = LE16_TO_CPU(cmd->ops.resp.num_desc);
2034 ice_memcpy(prof_buf, resp_buf, sizeof(*resp_buf) *
2035 (*num_prof), ICE_NONDMA_TO_NONDMA);
2042 ice_cleanup_resource(struct ice_hw *hw, uint16_t res_type)
2046 uint16_t prof_buf[ICE_MAX_RES_DESC_NUM];
2047 uint16_t first_desc = 1;
2048 uint16_t num_prof = 0;
2050 ret = ice_get_hw_res(hw, res_type, ICE_MAX_RES_DESC_NUM,
2051 first_desc, prof_buf, &num_prof);
2053 PMD_INIT_LOG(ERR, "Failed to get fxp resource");
2057 for (prof_id = 0; prof_id < num_prof; prof_id++) {
2058 ret = ice_free_hw_res(hw, res_type, 1, &prof_buf[prof_id]);
2060 PMD_INIT_LOG(ERR, "Failed to free fxp resource");
2068 ice_reset_fxp_resource(struct ice_hw *hw)
2072 ret = ice_cleanup_resource(hw, ICE_AQC_RES_TYPE_FD_PROF_BLDR_PROFID);
2074 PMD_INIT_LOG(ERR, "Failed to clearup fdir resource");
2078 ret = ice_cleanup_resource(hw, ICE_AQC_RES_TYPE_HASH_PROF_BLDR_PROFID);
2080 PMD_INIT_LOG(ERR, "Failed to clearup rss resource");
2088 ice_rss_ctx_init(struct ice_pf *pf)
2090 memset(&pf->hash_ctx, 0, sizeof(pf->hash_ctx));
2094 ice_get_supported_rxdid(struct ice_hw *hw)
2096 uint64_t supported_rxdid = 0; /* bitmap for supported RXDID */
2100 supported_rxdid |= BIT(ICE_RXDID_LEGACY_1);
2102 for (i = ICE_RXDID_FLEX_NIC; i < ICE_FLEX_DESC_RXDID_MAX_NUM; i++) {
2103 regval = ICE_READ_REG(hw, GLFLXP_RXDID_FLAGS(i, 0));
2104 if ((regval >> GLFLXP_RXDID_FLAGS_FLEXIFLAG_4N_S)
2105 & GLFLXP_RXDID_FLAGS_FLEXIFLAG_4N_M)
2106 supported_rxdid |= BIT(i);
2108 return supported_rxdid;
2112 ice_dev_init(struct rte_eth_dev *dev)
2114 struct rte_pci_device *pci_dev;
2115 struct rte_intr_handle *intr_handle;
2116 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2117 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2118 struct ice_adapter *ad =
2119 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2120 struct ice_vsi *vsi;
2123 dev->dev_ops = &ice_eth_dev_ops;
2124 dev->rx_queue_count = ice_rx_queue_count;
2125 dev->rx_descriptor_status = ice_rx_descriptor_status;
2126 dev->tx_descriptor_status = ice_tx_descriptor_status;
2127 dev->rx_pkt_burst = ice_recv_pkts;
2128 dev->tx_pkt_burst = ice_xmit_pkts;
2129 dev->tx_pkt_prepare = ice_prep_pkts;
2131 /* for secondary processes, we don't initialise any further as primary
2132 * has already done this work.
2134 if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2135 ice_set_rx_function(dev);
2136 ice_set_tx_function(dev);
2140 dev->data->dev_flags |= RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS;
2142 ice_set_default_ptype_table(dev);
2143 pci_dev = RTE_DEV_TO_PCI(dev->device);
2144 intr_handle = &pci_dev->intr_handle;
2146 pf->adapter = ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2147 pf->adapter->eth_dev = dev;
2148 pf->dev_data = dev->data;
2149 hw->back = pf->adapter;
2150 hw->hw_addr = (uint8_t *)pci_dev->mem_resource[0].addr;
2151 hw->vendor_id = pci_dev->id.vendor_id;
2152 hw->device_id = pci_dev->id.device_id;
2153 hw->subsystem_vendor_id = pci_dev->id.subsystem_vendor_id;
2154 hw->subsystem_device_id = pci_dev->id.subsystem_device_id;
2155 hw->bus.device = pci_dev->addr.devid;
2156 hw->bus.func = pci_dev->addr.function;
2158 ret = ice_parse_devargs(dev);
2160 PMD_INIT_LOG(ERR, "Failed to parse devargs");
2164 ice_init_controlq_parameter(hw);
2166 ret = ice_init_hw(hw);
2168 PMD_INIT_LOG(ERR, "Failed to initialize HW");
2172 ret = ice_load_pkg(dev);
2174 if (ad->devargs.safe_mode_support == 0) {
2175 PMD_INIT_LOG(ERR, "Failed to load the DDP package,"
2176 "Use safe-mode-support=1 to enter Safe Mode");
2180 PMD_INIT_LOG(WARNING, "Failed to load the DDP package,"
2181 "Entering Safe Mode");
2182 ad->is_safe_mode = 1;
2185 PMD_INIT_LOG(INFO, "FW %d.%d.%05d API %d.%d",
2186 hw->fw_maj_ver, hw->fw_min_ver, hw->fw_build,
2187 hw->api_maj_ver, hw->api_min_ver);
2189 ice_pf_sw_init(dev);
2190 ret = ice_init_mac_address(dev);
2192 PMD_INIT_LOG(ERR, "Failed to initialize mac address");
2196 ret = ice_res_pool_init(&pf->msix_pool, 1,
2197 hw->func_caps.common_cap.num_msix_vectors - 1);
2199 PMD_INIT_LOG(ERR, "Failed to init MSIX pool");
2200 goto err_msix_pool_init;
2203 ret = ice_pf_setup(pf);
2205 PMD_INIT_LOG(ERR, "Failed to setup PF");
2209 ret = ice_send_driver_ver(hw);
2211 PMD_INIT_LOG(ERR, "Failed to send driver version");
2217 /* Disable double vlan by default */
2218 ice_vsi_config_double_vlan(vsi, false);
2220 ret = ice_aq_stop_lldp(hw, true, false, NULL);
2221 if (ret != ICE_SUCCESS)
2222 PMD_INIT_LOG(DEBUG, "lldp has already stopped\n");
2223 ret = ice_init_dcb(hw, true);
2224 if (ret != ICE_SUCCESS)
2225 PMD_INIT_LOG(DEBUG, "Failed to init DCB\n");
2226 /* Forward LLDP packets to default VSI */
2227 ret = ice_vsi_config_sw_lldp(vsi, true);
2228 if (ret != ICE_SUCCESS)
2229 PMD_INIT_LOG(DEBUG, "Failed to cfg lldp\n");
2230 /* register callback func to eal lib */
2231 rte_intr_callback_register(intr_handle,
2232 ice_interrupt_handler, dev);
2234 ice_pf_enable_irq0(hw);
2236 /* enable uio intr after callback register */
2237 rte_intr_enable(intr_handle);
2239 /* get base queue pairs index in the device */
2240 ice_base_queue_get(pf);
2242 /* Initialize RSS context for gtpu_eh */
2243 ice_rss_ctx_init(pf);
2245 if (!ad->is_safe_mode) {
2246 ret = ice_flow_init(ad);
2248 PMD_INIT_LOG(ERR, "Failed to initialize flow");
2253 ret = ice_reset_fxp_resource(hw);
2255 PMD_INIT_LOG(ERR, "Failed to reset fxp resource");
2259 pf->supported_rxdid = ice_get_supported_rxdid(hw);
2264 ice_res_pool_destroy(&pf->msix_pool);
2266 rte_free(dev->data->mac_addrs);
2267 dev->data->mac_addrs = NULL;
2269 ice_sched_cleanup_all(hw);
2270 rte_free(hw->port_info);
2271 ice_shutdown_all_ctrlq(hw);
2272 rte_free(pf->proto_xtr);
2278 ice_release_vsi(struct ice_vsi *vsi)
2281 struct ice_vsi_ctx vsi_ctx;
2282 enum ice_status ret;
2288 hw = ICE_VSI_TO_HW(vsi);
2290 ice_remove_all_mac_vlan_filters(vsi);
2292 memset(&vsi_ctx, 0, sizeof(vsi_ctx));
2294 vsi_ctx.vsi_num = vsi->vsi_id;
2295 vsi_ctx.info = vsi->info;
2296 ret = ice_free_vsi(hw, vsi->idx, &vsi_ctx, false, NULL);
2297 if (ret != ICE_SUCCESS) {
2298 PMD_INIT_LOG(ERR, "Failed to free vsi by aq, %u", vsi->vsi_id);
2302 rte_free(vsi->rss_lut);
2303 rte_free(vsi->rss_key);
2309 ice_vsi_disable_queues_intr(struct ice_vsi *vsi)
2311 struct rte_eth_dev *dev = vsi->adapter->eth_dev;
2312 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2313 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2314 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
2315 uint16_t msix_intr, i;
2317 /* disable interrupt and also clear all the exist config */
2318 for (i = 0; i < vsi->nb_qps; i++) {
2319 ICE_WRITE_REG(hw, QINT_TQCTL(vsi->base_queue + i), 0);
2320 ICE_WRITE_REG(hw, QINT_RQCTL(vsi->base_queue + i), 0);
2324 if (rte_intr_allow_others(intr_handle))
2326 for (i = 0; i < vsi->nb_msix; i++) {
2327 msix_intr = vsi->msix_intr + i;
2328 ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr),
2329 GLINT_DYN_CTL_WB_ON_ITR_M);
2333 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0), GLINT_DYN_CTL_WB_ON_ITR_M);
2337 ice_dev_stop(struct rte_eth_dev *dev)
2339 struct rte_eth_dev_data *data = dev->data;
2340 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2341 struct ice_vsi *main_vsi = pf->main_vsi;
2342 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
2343 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2346 /* avoid stopping again */
2347 if (pf->adapter_stopped)
2350 /* stop and clear all Rx queues */
2351 for (i = 0; i < data->nb_rx_queues; i++)
2352 ice_rx_queue_stop(dev, i);
2354 /* stop and clear all Tx queues */
2355 for (i = 0; i < data->nb_tx_queues; i++)
2356 ice_tx_queue_stop(dev, i);
2358 /* disable all queue interrupts */
2359 ice_vsi_disable_queues_intr(main_vsi);
2361 if (pf->init_link_up)
2362 ice_dev_set_link_up(dev);
2364 ice_dev_set_link_down(dev);
2366 /* Clean datapath event and queue/vec mapping */
2367 rte_intr_efd_disable(intr_handle);
2368 if (intr_handle->intr_vec) {
2369 rte_free(intr_handle->intr_vec);
2370 intr_handle->intr_vec = NULL;
2373 pf->adapter_stopped = true;
2374 dev->data->dev_started = 0;
2380 ice_dev_close(struct rte_eth_dev *dev)
2382 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2383 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2384 struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
2385 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
2386 struct ice_adapter *ad =
2387 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
2390 if (rte_eal_process_type() != RTE_PROC_PRIMARY)
2393 /* Since stop will make link down, then the link event will be
2394 * triggered, disable the irq firstly to avoid the port_infoe etc
2395 * resources deallocation causing the interrupt service thread
2398 ice_pf_disable_irq0(hw);
2400 ret = ice_dev_stop(dev);
2402 if (!ad->is_safe_mode)
2403 ice_flow_uninit(ad);
2405 /* release all queue resource */
2406 ice_free_queues(dev);
2408 ice_res_pool_destroy(&pf->msix_pool);
2409 ice_release_vsi(pf->main_vsi);
2410 ice_sched_cleanup_all(hw);
2411 ice_free_hw_tbls(hw);
2412 rte_free(hw->port_info);
2413 hw->port_info = NULL;
2414 ice_shutdown_all_ctrlq(hw);
2415 rte_free(pf->proto_xtr);
2416 pf->proto_xtr = NULL;
2418 /* disable uio intr before callback unregister */
2419 rte_intr_disable(intr_handle);
2421 /* unregister callback func from eal lib */
2422 rte_intr_callback_unregister(intr_handle,
2423 ice_interrupt_handler, dev);
2429 ice_dev_uninit(struct rte_eth_dev *dev)
2437 is_hash_cfg_valid(struct ice_rss_hash_cfg *cfg)
2439 return (cfg->hash_flds != 0 && cfg->addl_hdrs != 0) ? true : false;
2443 hash_cfg_reset(struct ice_rss_hash_cfg *cfg)
2448 cfg->hdr_type = ICE_RSS_ANY_HEADERS;
2452 ice_hash_moveout(struct ice_pf *pf, struct ice_rss_hash_cfg *cfg)
2454 enum ice_status status = ICE_SUCCESS;
2455 struct ice_hw *hw = ICE_PF_TO_HW(pf);
2456 struct ice_vsi *vsi = pf->main_vsi;
2458 if (!is_hash_cfg_valid(cfg))
2461 status = ice_rem_rss_cfg(hw, vsi->idx, cfg);
2462 if (status && status != ICE_ERR_DOES_NOT_EXIST) {
2464 "ice_rem_rss_cfg failed for VSI:%d, error:%d\n",
2473 ice_hash_moveback(struct ice_pf *pf, struct ice_rss_hash_cfg *cfg)
2475 enum ice_status status = ICE_SUCCESS;
2476 struct ice_hw *hw = ICE_PF_TO_HW(pf);
2477 struct ice_vsi *vsi = pf->main_vsi;
2479 if (!is_hash_cfg_valid(cfg))
2482 status = ice_add_rss_cfg(hw, vsi->idx, cfg);
2485 "ice_add_rss_cfg failed for VSI:%d, error:%d\n",
2494 ice_hash_remove(struct ice_pf *pf, struct ice_rss_hash_cfg *cfg)
2498 ret = ice_hash_moveout(pf, cfg);
2499 if (ret && (ret != -ENOENT))
2502 hash_cfg_reset(cfg);
2508 ice_add_rss_cfg_pre_gtpu(struct ice_pf *pf, struct ice_hash_gtpu_ctx *ctx,
2514 case ICE_HASH_GTPU_CTX_EH_IP:
2515 ret = ice_hash_remove(pf,
2516 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_UDP]);
2517 if (ret && (ret != -ENOENT))
2520 ret = ice_hash_remove(pf,
2521 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_TCP]);
2522 if (ret && (ret != -ENOENT))
2525 ret = ice_hash_remove(pf,
2526 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP]);
2527 if (ret && (ret != -ENOENT))
2530 ret = ice_hash_remove(pf,
2531 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_UDP]);
2532 if (ret && (ret != -ENOENT))
2535 ret = ice_hash_remove(pf,
2536 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_TCP]);
2537 if (ret && (ret != -ENOENT))
2540 ret = ice_hash_remove(pf,
2541 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP]);
2542 if (ret && (ret != -ENOENT))
2545 ret = ice_hash_remove(pf,
2546 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_UDP]);
2547 if (ret && (ret != -ENOENT))
2550 ret = ice_hash_remove(pf,
2551 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_TCP]);
2552 if (ret && (ret != -ENOENT))
2556 case ICE_HASH_GTPU_CTX_EH_IP_UDP:
2557 ret = ice_hash_remove(pf,
2558 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_UDP]);
2559 if (ret && (ret != -ENOENT))
2562 ret = ice_hash_remove(pf,
2563 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_UDP]);
2564 if (ret && (ret != -ENOENT))
2567 ret = ice_hash_moveout(pf,
2568 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP]);
2569 if (ret && (ret != -ENOENT))
2572 ret = ice_hash_moveout(pf,
2573 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_TCP]);
2574 if (ret && (ret != -ENOENT))
2577 ret = ice_hash_moveout(pf,
2578 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP]);
2579 if (ret && (ret != -ENOENT))
2582 ret = ice_hash_moveout(pf,
2583 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_TCP]);
2584 if (ret && (ret != -ENOENT))
2588 case ICE_HASH_GTPU_CTX_EH_IP_TCP:
2589 ret = ice_hash_remove(pf,
2590 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_TCP]);
2591 if (ret && (ret != -ENOENT))
2594 ret = ice_hash_remove(pf,
2595 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_TCP]);
2596 if (ret && (ret != -ENOENT))
2599 ret = ice_hash_moveout(pf,
2600 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP]);
2601 if (ret && (ret != -ENOENT))
2604 ret = ice_hash_moveout(pf,
2605 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_UDP]);
2606 if (ret && (ret != -ENOENT))
2609 ret = ice_hash_moveout(pf,
2610 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP]);
2611 if (ret && (ret != -ENOENT))
2614 ret = ice_hash_moveout(pf,
2615 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_UDP]);
2616 if (ret && (ret != -ENOENT))
2620 case ICE_HASH_GTPU_CTX_UP_IP:
2621 ret = ice_hash_remove(pf,
2622 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_UDP]);
2623 if (ret && (ret != -ENOENT))
2626 ret = ice_hash_remove(pf,
2627 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_TCP]);
2628 if (ret && (ret != -ENOENT))
2631 ret = ice_hash_moveout(pf,
2632 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP]);
2633 if (ret && (ret != -ENOENT))
2636 ret = ice_hash_moveout(pf,
2637 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_UDP]);
2638 if (ret && (ret != -ENOENT))
2641 ret = ice_hash_moveout(pf,
2642 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_TCP]);
2643 if (ret && (ret != -ENOENT))
2647 case ICE_HASH_GTPU_CTX_UP_IP_UDP:
2648 case ICE_HASH_GTPU_CTX_UP_IP_TCP:
2649 ret = ice_hash_moveout(pf,
2650 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP]);
2651 if (ret && (ret != -ENOENT))
2654 ret = ice_hash_moveout(pf,
2655 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_UDP]);
2656 if (ret && (ret != -ENOENT))
2659 ret = ice_hash_moveout(pf,
2660 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_TCP]);
2661 if (ret && (ret != -ENOENT))
2665 case ICE_HASH_GTPU_CTX_DW_IP:
2666 ret = ice_hash_remove(pf,
2667 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_UDP]);
2668 if (ret && (ret != -ENOENT))
2671 ret = ice_hash_remove(pf,
2672 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_TCP]);
2673 if (ret && (ret != -ENOENT))
2676 ret = ice_hash_moveout(pf,
2677 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP]);
2678 if (ret && (ret != -ENOENT))
2681 ret = ice_hash_moveout(pf,
2682 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_UDP]);
2683 if (ret && (ret != -ENOENT))
2686 ret = ice_hash_moveout(pf,
2687 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_TCP]);
2688 if (ret && (ret != -ENOENT))
2692 case ICE_HASH_GTPU_CTX_DW_IP_UDP:
2693 case ICE_HASH_GTPU_CTX_DW_IP_TCP:
2694 ret = ice_hash_moveout(pf,
2695 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP]);
2696 if (ret && (ret != -ENOENT))
2699 ret = ice_hash_moveout(pf,
2700 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_UDP]);
2701 if (ret && (ret != -ENOENT))
2704 ret = ice_hash_moveout(pf,
2705 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_TCP]);
2706 if (ret && (ret != -ENOENT))
2717 static u8 calc_gtpu_ctx_idx(uint32_t hdr)
2721 if (hdr & ICE_FLOW_SEG_HDR_GTPU_EH)
2723 else if (hdr & ICE_FLOW_SEG_HDR_GTPU_UP)
2725 else if (hdr & ICE_FLOW_SEG_HDR_GTPU_DWN)
2728 return ICE_HASH_GTPU_CTX_MAX;
2731 if (hdr & ICE_FLOW_SEG_HDR_UDP)
2733 else if (hdr & ICE_FLOW_SEG_HDR_TCP)
2736 if (hdr & (ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV6))
2737 return eh_idx * 3 + ip_idx;
2739 return ICE_HASH_GTPU_CTX_MAX;
2743 ice_add_rss_cfg_pre(struct ice_pf *pf, uint32_t hdr)
2745 u8 gtpu_ctx_idx = calc_gtpu_ctx_idx(hdr);
2747 if (hdr & ICE_FLOW_SEG_HDR_IPV4)
2748 return ice_add_rss_cfg_pre_gtpu(pf, &pf->hash_ctx.gtpu4,
2750 else if (hdr & ICE_FLOW_SEG_HDR_IPV6)
2751 return ice_add_rss_cfg_pre_gtpu(pf, &pf->hash_ctx.gtpu6,
2758 ice_add_rss_cfg_post_gtpu(struct ice_pf *pf, struct ice_hash_gtpu_ctx *ctx,
2759 u8 ctx_idx, struct ice_rss_hash_cfg *cfg)
2763 if (ctx_idx < ICE_HASH_GTPU_CTX_MAX)
2764 ctx->ctx[ctx_idx] = *cfg;
2767 case ICE_HASH_GTPU_CTX_EH_IP:
2769 case ICE_HASH_GTPU_CTX_EH_IP_UDP:
2770 ret = ice_hash_moveback(pf,
2771 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP]);
2772 if (ret && (ret != -ENOENT))
2775 ret = ice_hash_moveback(pf,
2776 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_TCP]);
2777 if (ret && (ret != -ENOENT))
2780 ret = ice_hash_moveback(pf,
2781 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP]);
2782 if (ret && (ret != -ENOENT))
2785 ret = ice_hash_moveback(pf,
2786 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_TCP]);
2787 if (ret && (ret != -ENOENT))
2791 case ICE_HASH_GTPU_CTX_EH_IP_TCP:
2792 ret = ice_hash_moveback(pf,
2793 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP]);
2794 if (ret && (ret != -ENOENT))
2797 ret = ice_hash_moveback(pf,
2798 &ctx->ctx[ICE_HASH_GTPU_CTX_UP_IP_UDP]);
2799 if (ret && (ret != -ENOENT))
2802 ret = ice_hash_moveback(pf,
2803 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP]);
2804 if (ret && (ret != -ENOENT))
2807 ret = ice_hash_moveback(pf,
2808 &ctx->ctx[ICE_HASH_GTPU_CTX_DW_IP_UDP]);
2809 if (ret && (ret != -ENOENT))
2813 case ICE_HASH_GTPU_CTX_UP_IP:
2814 case ICE_HASH_GTPU_CTX_UP_IP_UDP:
2815 case ICE_HASH_GTPU_CTX_UP_IP_TCP:
2816 case ICE_HASH_GTPU_CTX_DW_IP:
2817 case ICE_HASH_GTPU_CTX_DW_IP_UDP:
2818 case ICE_HASH_GTPU_CTX_DW_IP_TCP:
2819 ret = ice_hash_moveback(pf,
2820 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP]);
2821 if (ret && (ret != -ENOENT))
2824 ret = ice_hash_moveback(pf,
2825 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_UDP]);
2826 if (ret && (ret != -ENOENT))
2829 ret = ice_hash_moveback(pf,
2830 &ctx->ctx[ICE_HASH_GTPU_CTX_EH_IP_TCP]);
2831 if (ret && (ret != -ENOENT))
2843 ice_add_rss_cfg_post(struct ice_pf *pf, struct ice_rss_hash_cfg *cfg)
2845 u8 gtpu_ctx_idx = calc_gtpu_ctx_idx(cfg->addl_hdrs);
2847 if (cfg->addl_hdrs & ICE_FLOW_SEG_HDR_IPV4)
2848 return ice_add_rss_cfg_post_gtpu(pf, &pf->hash_ctx.gtpu4,
2850 else if (cfg->addl_hdrs & ICE_FLOW_SEG_HDR_IPV6)
2851 return ice_add_rss_cfg_post_gtpu(pf, &pf->hash_ctx.gtpu6,
2858 ice_rem_rss_cfg_post(struct ice_pf *pf, uint32_t hdr)
2860 u8 gtpu_ctx_idx = calc_gtpu_ctx_idx(hdr);
2862 if (gtpu_ctx_idx >= ICE_HASH_GTPU_CTX_MAX)
2865 if (hdr & ICE_FLOW_SEG_HDR_IPV4)
2866 hash_cfg_reset(&pf->hash_ctx.gtpu4.ctx[gtpu_ctx_idx]);
2867 else if (hdr & ICE_FLOW_SEG_HDR_IPV6)
2868 hash_cfg_reset(&pf->hash_ctx.gtpu6.ctx[gtpu_ctx_idx]);
2872 ice_rem_rss_cfg_wrap(struct ice_pf *pf, uint16_t vsi_id,
2873 struct ice_rss_hash_cfg *cfg)
2875 struct ice_hw *hw = ICE_PF_TO_HW(pf);
2878 ret = ice_rem_rss_cfg(hw, vsi_id, cfg);
2879 if (ret && ret != ICE_ERR_DOES_NOT_EXIST)
2880 PMD_DRV_LOG(ERR, "remove rss cfg failed\n");
2882 ice_rem_rss_cfg_post(pf, cfg->addl_hdrs);
2888 ice_add_rss_cfg_wrap(struct ice_pf *pf, uint16_t vsi_id,
2889 struct ice_rss_hash_cfg *cfg)
2891 struct ice_hw *hw = ICE_PF_TO_HW(pf);
2894 ret = ice_add_rss_cfg_pre(pf, cfg->addl_hdrs);
2896 PMD_DRV_LOG(ERR, "add rss cfg pre failed\n");
2898 ret = ice_add_rss_cfg(hw, vsi_id, cfg);
2900 PMD_DRV_LOG(ERR, "add rss cfg failed\n");
2902 ret = ice_add_rss_cfg_post(pf, cfg);
2904 PMD_DRV_LOG(ERR, "add rss cfg post failed\n");
2910 ice_rss_hash_set(struct ice_pf *pf, uint64_t rss_hf)
2912 struct ice_hw *hw = ICE_PF_TO_HW(pf);
2913 struct ice_vsi *vsi = pf->main_vsi;
2914 struct ice_rss_hash_cfg cfg;
2917 #define ICE_RSS_HF_ALL ( \
2920 ETH_RSS_NONFRAG_IPV4_UDP | \
2921 ETH_RSS_NONFRAG_IPV6_UDP | \
2922 ETH_RSS_NONFRAG_IPV4_TCP | \
2923 ETH_RSS_NONFRAG_IPV6_TCP | \
2924 ETH_RSS_NONFRAG_IPV4_SCTP | \
2925 ETH_RSS_NONFRAG_IPV6_SCTP)
2927 ret = ice_rem_vsi_rss_cfg(hw, vsi->idx);
2929 PMD_DRV_LOG(ERR, "%s Remove rss vsi fail %d",
2933 cfg.hdr_type = ICE_RSS_ANY_HEADERS;
2934 /* Configure RSS for IPv4 with src/dst addr as input set */
2935 if (rss_hf & ETH_RSS_IPV4) {
2936 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
2937 cfg.hash_flds = ICE_FLOW_HASH_IPV4;
2938 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
2940 PMD_DRV_LOG(ERR, "%s IPV4 rss flow fail %d",
2944 /* Configure RSS for IPv6 with src/dst addr as input set */
2945 if (rss_hf & ETH_RSS_IPV6) {
2946 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
2947 cfg.hash_flds = ICE_FLOW_HASH_IPV6;
2948 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
2950 PMD_DRV_LOG(ERR, "%s IPV6 rss flow fail %d",
2954 /* Configure RSS for udp4 with src/dst addr and port as input set */
2955 if (rss_hf & ETH_RSS_NONFRAG_IPV4_UDP) {
2956 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV4 |
2957 ICE_FLOW_SEG_HDR_IPV_OTHER;
2958 cfg.hash_flds = ICE_HASH_UDP_IPV4;
2959 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
2961 PMD_DRV_LOG(ERR, "%s UDP_IPV4 rss flow fail %d",
2965 /* Configure RSS for udp6 with src/dst addr and port as input set */
2966 if (rss_hf & ETH_RSS_NONFRAG_IPV6_UDP) {
2967 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV6 |
2968 ICE_FLOW_SEG_HDR_IPV_OTHER;
2969 cfg.hash_flds = ICE_HASH_UDP_IPV6;
2970 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
2972 PMD_DRV_LOG(ERR, "%s UDP_IPV6 rss flow fail %d",
2976 /* Configure RSS for tcp4 with src/dst addr and port as input set */
2977 if (rss_hf & ETH_RSS_NONFRAG_IPV4_TCP) {
2978 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV4 |
2979 ICE_FLOW_SEG_HDR_IPV_OTHER;
2980 cfg.hash_flds = ICE_HASH_TCP_IPV4;
2981 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
2983 PMD_DRV_LOG(ERR, "%s TCP_IPV4 rss flow fail %d",
2987 /* Configure RSS for tcp6 with src/dst addr and port as input set */
2988 if (rss_hf & ETH_RSS_NONFRAG_IPV6_TCP) {
2989 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV6 |
2990 ICE_FLOW_SEG_HDR_IPV_OTHER;
2991 cfg.hash_flds = ICE_HASH_TCP_IPV6;
2992 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
2994 PMD_DRV_LOG(ERR, "%s TCP_IPV6 rss flow fail %d",
2998 /* Configure RSS for sctp4 with src/dst addr and port as input set */
2999 if (rss_hf & ETH_RSS_NONFRAG_IPV4_SCTP) {
3000 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV4 |
3001 ICE_FLOW_SEG_HDR_IPV_OTHER;
3002 cfg.hash_flds = ICE_HASH_SCTP_IPV4;
3003 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3005 PMD_DRV_LOG(ERR, "%s SCTP_IPV4 rss flow fail %d",
3009 /* Configure RSS for sctp6 with src/dst addr and port as input set */
3010 if (rss_hf & ETH_RSS_NONFRAG_IPV6_SCTP) {
3011 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV6 |
3012 ICE_FLOW_SEG_HDR_IPV_OTHER;
3013 cfg.hash_flds = ICE_HASH_SCTP_IPV6;
3014 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3016 PMD_DRV_LOG(ERR, "%s SCTP_IPV6 rss flow fail %d",
3020 if (rss_hf & ETH_RSS_IPV4) {
3021 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_IPV4 |
3022 ICE_FLOW_SEG_HDR_IPV_OTHER;
3023 cfg.hash_flds = ICE_FLOW_HASH_IPV4;
3024 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3026 PMD_DRV_LOG(ERR, "%s GTPU_IPV4 rss flow fail %d",
3029 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_IPV4 |
3030 ICE_FLOW_SEG_HDR_IPV_OTHER;
3031 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3033 PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV4 rss flow fail %d",
3036 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_IPV4 |
3037 ICE_FLOW_SEG_HDR_IPV_OTHER;
3038 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3040 PMD_DRV_LOG(ERR, "%s PPPoE_IPV4 rss flow fail %d",
3044 if (rss_hf & ETH_RSS_IPV6) {
3045 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_IPV6 |
3046 ICE_FLOW_SEG_HDR_IPV_OTHER;
3047 cfg.hash_flds = ICE_FLOW_HASH_IPV6;
3048 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3050 PMD_DRV_LOG(ERR, "%s GTPU_IPV6 rss flow fail %d",
3053 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_IPV6 |
3054 ICE_FLOW_SEG_HDR_IPV_OTHER;
3055 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3057 PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV6 rss flow fail %d",
3060 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_IPV6 |
3061 ICE_FLOW_SEG_HDR_IPV_OTHER;
3062 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3064 PMD_DRV_LOG(ERR, "%s PPPoE_IPV6 rss flow fail %d",
3068 if (rss_hf & ETH_RSS_NONFRAG_IPV4_UDP) {
3069 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_UDP |
3070 ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3071 cfg.hash_flds = ICE_HASH_UDP_IPV4;
3072 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3074 PMD_DRV_LOG(ERR, "%s GTPU_IPV4_UDP rss flow fail %d",
3077 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_UDP |
3078 ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3079 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3081 PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV4_UDP rss flow fail %d",
3084 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_UDP |
3085 ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3086 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3088 PMD_DRV_LOG(ERR, "%s PPPoE_IPV4_UDP rss flow fail %d",
3092 if (rss_hf & ETH_RSS_NONFRAG_IPV6_UDP) {
3093 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_UDP |
3094 ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3095 cfg.hash_flds = ICE_HASH_UDP_IPV6;
3096 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3098 PMD_DRV_LOG(ERR, "%s GTPU_IPV6_UDP rss flow fail %d",
3101 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_UDP |
3102 ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3103 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3105 PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV6_UDP rss flow fail %d",
3108 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_UDP |
3109 ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3110 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3112 PMD_DRV_LOG(ERR, "%s PPPoE_IPV6_UDP rss flow fail %d",
3116 if (rss_hf & ETH_RSS_NONFRAG_IPV4_TCP) {
3117 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_TCP |
3118 ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3119 cfg.hash_flds = ICE_HASH_TCP_IPV4;
3120 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3122 PMD_DRV_LOG(ERR, "%s GTPU_IPV4_TCP rss flow fail %d",
3125 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_TCP |
3126 ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3127 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3129 PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV4_TCP rss flow fail %d",
3132 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_TCP |
3133 ICE_FLOW_SEG_HDR_IPV4 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3134 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3136 PMD_DRV_LOG(ERR, "%s PPPoE_IPV4_TCP rss flow fail %d",
3140 if (rss_hf & ETH_RSS_NONFRAG_IPV6_TCP) {
3141 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_TCP |
3142 ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3143 cfg.hash_flds = ICE_HASH_TCP_IPV6;
3144 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3146 PMD_DRV_LOG(ERR, "%s GTPU_IPV6_TCP rss flow fail %d",
3149 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_TCP |
3150 ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3151 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3153 PMD_DRV_LOG(ERR, "%s GTPU_EH_IPV6_TCP rss flow fail %d",
3156 cfg.addl_hdrs = ICE_FLOW_SEG_HDR_PPPOE | ICE_FLOW_SEG_HDR_TCP |
3157 ICE_FLOW_SEG_HDR_IPV6 | ICE_FLOW_SEG_HDR_IPV_OTHER;
3158 ret = ice_add_rss_cfg_wrap(pf, vsi->idx, &cfg);
3160 PMD_DRV_LOG(ERR, "%s PPPoE_IPV6_TCP rss flow fail %d",
3164 pf->rss_hf = rss_hf & ICE_RSS_HF_ALL;
3167 static int ice_init_rss(struct ice_pf *pf)
3169 struct ice_hw *hw = ICE_PF_TO_HW(pf);
3170 struct ice_vsi *vsi = pf->main_vsi;
3171 struct rte_eth_dev *dev = pf->adapter->eth_dev;
3172 struct ice_aq_get_set_rss_lut_params lut_params;
3173 struct rte_eth_rss_conf *rss_conf;
3174 struct ice_aqc_get_set_rss_keys key;
3177 bool is_safe_mode = pf->adapter->is_safe_mode;
3180 rss_conf = &dev->data->dev_conf.rx_adv_conf.rss_conf;
3181 nb_q = dev->data->nb_rx_queues;
3182 vsi->rss_key_size = ICE_AQC_GET_SET_RSS_KEY_DATA_RSS_KEY_SIZE;
3183 vsi->rss_lut_size = pf->hash_lut_size;
3186 PMD_DRV_LOG(WARNING,
3187 "RSS is not supported as rx queues number is zero\n");
3192 PMD_DRV_LOG(WARNING, "RSS is not supported in safe mode\n");
3196 if (!vsi->rss_key) {
3197 vsi->rss_key = rte_zmalloc(NULL,
3198 vsi->rss_key_size, 0);
3199 if (vsi->rss_key == NULL) {
3200 PMD_DRV_LOG(ERR, "Failed to allocate memory for rss_key");
3204 if (!vsi->rss_lut) {
3205 vsi->rss_lut = rte_zmalloc(NULL,
3206 vsi->rss_lut_size, 0);
3207 if (vsi->rss_lut == NULL) {
3208 PMD_DRV_LOG(ERR, "Failed to allocate memory for rss_key");
3209 rte_free(vsi->rss_key);
3210 vsi->rss_key = NULL;
3214 /* configure RSS key */
3215 if (!rss_conf->rss_key) {
3216 /* Calculate the default hash key */
3217 for (i = 0; i <= vsi->rss_key_size; i++)
3218 vsi->rss_key[i] = (uint8_t)rte_rand();
3220 rte_memcpy(vsi->rss_key, rss_conf->rss_key,
3221 RTE_MIN(rss_conf->rss_key_len,
3222 vsi->rss_key_size));
3224 rte_memcpy(key.standard_rss_key, vsi->rss_key, vsi->rss_key_size);
3225 ret = ice_aq_set_rss_key(hw, vsi->idx, &key);
3229 /* init RSS LUT table */
3230 for (i = 0; i < vsi->rss_lut_size; i++)
3231 vsi->rss_lut[i] = i % nb_q;
3233 lut_params.vsi_handle = vsi->idx;
3234 lut_params.lut_size = vsi->rss_lut_size;
3235 lut_params.lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF;
3236 lut_params.lut = vsi->rss_lut;
3237 lut_params.global_lut_id = 0;
3238 ret = ice_aq_set_rss_lut(hw, &lut_params);
3242 /* Enable registers for symmetric_toeplitz function. */
3243 reg = ICE_READ_REG(hw, VSIQF_HASH_CTL(vsi->vsi_id));
3244 reg = (reg & (~VSIQF_HASH_CTL_HASH_SCHEME_M)) |
3245 (1 << VSIQF_HASH_CTL_HASH_SCHEME_S);
3246 ICE_WRITE_REG(hw, VSIQF_HASH_CTL(vsi->vsi_id), reg);
3248 /* RSS hash configuration */
3249 ice_rss_hash_set(pf, rss_conf->rss_hf);
3253 rte_free(vsi->rss_key);
3254 vsi->rss_key = NULL;
3255 rte_free(vsi->rss_lut);
3256 vsi->rss_lut = NULL;
3261 ice_dev_configure(struct rte_eth_dev *dev)
3263 struct ice_adapter *ad =
3264 ICE_DEV_PRIVATE_TO_ADAPTER(dev->data->dev_private);
3265 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3268 /* Initialize to TRUE. If any of Rx queues doesn't meet the
3269 * bulk allocation or vector Rx preconditions we will reset it.
3271 ad->rx_bulk_alloc_allowed = true;
3272 ad->tx_simple_allowed = true;
3274 if (dev->data->dev_conf.rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG)
3275 dev->data->dev_conf.rxmode.offloads |= DEV_RX_OFFLOAD_RSS_HASH;
3277 if (dev->data->nb_rx_queues) {
3278 ret = ice_init_rss(pf);
3280 PMD_DRV_LOG(ERR, "Failed to enable rss for PF");
3289 __vsi_queues_bind_intr(struct ice_vsi *vsi, uint16_t msix_vect,
3290 int base_queue, int nb_queue)
3292 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3293 uint32_t val, val_tx;
3296 for (i = 0; i < nb_queue; i++) {
3298 val = (msix_vect & QINT_RQCTL_MSIX_INDX_M) |
3299 (0 << QINT_RQCTL_ITR_INDX_S) | QINT_RQCTL_CAUSE_ENA_M;
3300 val_tx = (msix_vect & QINT_TQCTL_MSIX_INDX_M) |
3301 (0 << QINT_TQCTL_ITR_INDX_S) | QINT_TQCTL_CAUSE_ENA_M;
3303 PMD_DRV_LOG(INFO, "queue %d is binding to vect %d",
3304 base_queue + i, msix_vect);
3305 /* set ITR0 value */
3306 ICE_WRITE_REG(hw, GLINT_ITR(0, msix_vect), 0x2);
3307 ICE_WRITE_REG(hw, QINT_RQCTL(base_queue + i), val);
3308 ICE_WRITE_REG(hw, QINT_TQCTL(base_queue + i), val_tx);
3313 ice_vsi_queues_bind_intr(struct ice_vsi *vsi)
3315 struct rte_eth_dev *dev = vsi->adapter->eth_dev;
3316 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
3317 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3318 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3319 uint16_t msix_vect = vsi->msix_intr;
3320 uint16_t nb_msix = RTE_MIN(vsi->nb_msix, intr_handle->nb_efd);
3321 uint16_t queue_idx = 0;
3325 /* clear Rx/Tx queue interrupt */
3326 for (i = 0; i < vsi->nb_used_qps; i++) {
3327 ICE_WRITE_REG(hw, QINT_TQCTL(vsi->base_queue + i), 0);
3328 ICE_WRITE_REG(hw, QINT_RQCTL(vsi->base_queue + i), 0);
3331 /* PF bind interrupt */
3332 if (rte_intr_dp_is_en(intr_handle)) {
3337 for (i = 0; i < vsi->nb_used_qps; i++) {
3339 if (!rte_intr_allow_others(intr_handle))
3340 msix_vect = ICE_MISC_VEC_ID;
3342 /* uio mapping all queue to one msix_vect */
3343 __vsi_queues_bind_intr(vsi, msix_vect,
3344 vsi->base_queue + i,
3345 vsi->nb_used_qps - i);
3347 for (; !!record && i < vsi->nb_used_qps; i++)
3348 intr_handle->intr_vec[queue_idx + i] =
3353 /* vfio 1:1 queue/msix_vect mapping */
3354 __vsi_queues_bind_intr(vsi, msix_vect,
3355 vsi->base_queue + i, 1);
3358 intr_handle->intr_vec[queue_idx + i] = msix_vect;
3366 ice_vsi_enable_queues_intr(struct ice_vsi *vsi)
3368 struct rte_eth_dev *dev = vsi->adapter->eth_dev;
3369 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
3370 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3371 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
3372 uint16_t msix_intr, i;
3374 if (rte_intr_allow_others(intr_handle))
3375 for (i = 0; i < vsi->nb_used_qps; i++) {
3376 msix_intr = vsi->msix_intr + i;
3377 ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr),
3378 GLINT_DYN_CTL_INTENA_M |
3379 GLINT_DYN_CTL_CLEARPBA_M |
3380 GLINT_DYN_CTL_ITR_INDX_M |
3381 GLINT_DYN_CTL_WB_ON_ITR_M);
3384 ICE_WRITE_REG(hw, GLINT_DYN_CTL(0),
3385 GLINT_DYN_CTL_INTENA_M |
3386 GLINT_DYN_CTL_CLEARPBA_M |
3387 GLINT_DYN_CTL_ITR_INDX_M |
3388 GLINT_DYN_CTL_WB_ON_ITR_M);
3392 ice_rxq_intr_setup(struct rte_eth_dev *dev)
3394 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3395 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
3396 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
3397 struct ice_vsi *vsi = pf->main_vsi;
3398 uint32_t intr_vector = 0;
3400 rte_intr_disable(intr_handle);
3402 /* check and configure queue intr-vector mapping */
3403 if ((rte_intr_cap_multiple(intr_handle) ||
3404 !RTE_ETH_DEV_SRIOV(dev).active) &&
3405 dev->data->dev_conf.intr_conf.rxq != 0) {
3406 intr_vector = dev->data->nb_rx_queues;
3407 if (intr_vector > ICE_MAX_INTR_QUEUE_NUM) {
3408 PMD_DRV_LOG(ERR, "At most %d intr queues supported",
3409 ICE_MAX_INTR_QUEUE_NUM);
3412 if (rte_intr_efd_enable(intr_handle, intr_vector))
3416 if (rte_intr_dp_is_en(intr_handle) && !intr_handle->intr_vec) {
3417 intr_handle->intr_vec =
3418 rte_zmalloc(NULL, dev->data->nb_rx_queues * sizeof(int),
3420 if (!intr_handle->intr_vec) {
3422 "Failed to allocate %d rx_queues intr_vec",
3423 dev->data->nb_rx_queues);
3428 /* Map queues with MSIX interrupt */
3429 vsi->nb_used_qps = dev->data->nb_rx_queues;
3430 ice_vsi_queues_bind_intr(vsi);
3432 /* Enable interrupts for all the queues */
3433 ice_vsi_enable_queues_intr(vsi);
3435 rte_intr_enable(intr_handle);
3441 ice_get_init_link_status(struct rte_eth_dev *dev)
3443 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3444 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3445 bool enable_lse = dev->data->dev_conf.intr_conf.lsc ? true : false;
3446 struct ice_link_status link_status;
3449 ret = ice_aq_get_link_info(hw->port_info, enable_lse,
3450 &link_status, NULL);
3451 if (ret != ICE_SUCCESS) {
3452 PMD_DRV_LOG(ERR, "Failed to get link info");
3453 pf->init_link_up = false;
3457 if (link_status.link_info & ICE_AQ_LINK_UP)
3458 pf->init_link_up = true;
3462 ice_dev_start(struct rte_eth_dev *dev)
3464 struct rte_eth_dev_data *data = dev->data;
3465 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3466 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3467 struct ice_vsi *vsi = pf->main_vsi;
3468 uint16_t nb_rxq = 0;
3470 uint16_t max_frame_size;
3473 /* program Tx queues' context in hardware */
3474 for (nb_txq = 0; nb_txq < data->nb_tx_queues; nb_txq++) {
3475 ret = ice_tx_queue_start(dev, nb_txq);
3477 PMD_DRV_LOG(ERR, "fail to start Tx queue %u", nb_txq);
3482 /* program Rx queues' context in hardware*/
3483 for (nb_rxq = 0; nb_rxq < data->nb_rx_queues; nb_rxq++) {
3484 ret = ice_rx_queue_start(dev, nb_rxq);
3486 PMD_DRV_LOG(ERR, "fail to start Rx queue %u", nb_rxq);
3491 ice_set_rx_function(dev);
3492 ice_set_tx_function(dev);
3494 mask = ETH_VLAN_STRIP_MASK | ETH_VLAN_FILTER_MASK |
3495 ETH_VLAN_EXTEND_MASK;
3496 ret = ice_vlan_offload_set(dev, mask);
3498 PMD_INIT_LOG(ERR, "Unable to set VLAN offload");
3502 /* enable Rx interrput and mapping Rx queue to interrupt vector */
3503 if (ice_rxq_intr_setup(dev))
3506 /* Enable receiving broadcast packets and transmitting packets */
3507 ret = ice_set_vsi_promisc(hw, vsi->idx,
3508 ICE_PROMISC_BCAST_RX | ICE_PROMISC_BCAST_TX |
3509 ICE_PROMISC_UCAST_TX | ICE_PROMISC_MCAST_TX,
3511 if (ret != ICE_SUCCESS)
3512 PMD_DRV_LOG(INFO, "fail to set vsi broadcast");
3514 ret = ice_aq_set_event_mask(hw, hw->port_info->lport,
3515 ((u16)(ICE_AQ_LINK_EVENT_LINK_FAULT |
3516 ICE_AQ_LINK_EVENT_PHY_TEMP_ALARM |
3517 ICE_AQ_LINK_EVENT_EXCESSIVE_ERRORS |
3518 ICE_AQ_LINK_EVENT_SIGNAL_DETECT |
3519 ICE_AQ_LINK_EVENT_AN_COMPLETED |
3520 ICE_AQ_LINK_EVENT_PORT_TX_SUSPENDED)),
3522 if (ret != ICE_SUCCESS)
3523 PMD_DRV_LOG(WARNING, "Fail to set phy mask");
3525 ice_get_init_link_status(dev);
3527 ice_dev_set_link_up(dev);
3529 /* Call get_link_info aq commond to enable/disable LSE */
3530 ice_link_update(dev, 0);
3532 pf->adapter_stopped = false;
3534 /* Set the max frame size to default value*/
3535 max_frame_size = pf->dev_data->dev_conf.rxmode.max_rx_pkt_len ?
3536 pf->dev_data->dev_conf.rxmode.max_rx_pkt_len :
3539 /* Set the max frame size to HW*/
3540 ice_aq_set_mac_cfg(hw, max_frame_size, NULL);
3544 /* stop the started queues if failed to start all queues */
3546 for (i = 0; i < nb_rxq; i++)
3547 ice_rx_queue_stop(dev, i);
3549 for (i = 0; i < nb_txq; i++)
3550 ice_tx_queue_stop(dev, i);
3556 ice_dev_reset(struct rte_eth_dev *dev)
3560 if (dev->data->sriov.active)
3563 ret = ice_dev_uninit(dev);
3565 PMD_INIT_LOG(ERR, "failed to uninit device, status = %d", ret);
3569 ret = ice_dev_init(dev);
3571 PMD_INIT_LOG(ERR, "failed to init device, status = %d", ret);
3579 ice_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
3581 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3582 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3583 struct ice_vsi *vsi = pf->main_vsi;
3584 struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev->device);
3585 bool is_safe_mode = pf->adapter->is_safe_mode;
3589 dev_info->min_rx_bufsize = ICE_BUF_SIZE_MIN;
3590 dev_info->max_rx_pktlen = ICE_FRAME_SIZE_MAX;
3591 dev_info->max_rx_queues = vsi->nb_qps;
3592 dev_info->max_tx_queues = vsi->nb_qps;
3593 dev_info->max_mac_addrs = vsi->max_macaddrs;
3594 dev_info->max_vfs = pci_dev->max_vfs;
3595 dev_info->max_mtu = dev_info->max_rx_pktlen - ICE_ETH_OVERHEAD;
3596 dev_info->min_mtu = RTE_ETHER_MIN_MTU;
3598 dev_info->rx_offload_capa =
3599 DEV_RX_OFFLOAD_VLAN_STRIP |
3600 DEV_RX_OFFLOAD_JUMBO_FRAME |
3601 DEV_RX_OFFLOAD_KEEP_CRC |
3602 DEV_RX_OFFLOAD_SCATTER |
3603 DEV_RX_OFFLOAD_VLAN_FILTER;
3604 dev_info->tx_offload_capa =
3605 DEV_TX_OFFLOAD_VLAN_INSERT |
3606 DEV_TX_OFFLOAD_TCP_TSO |
3607 DEV_TX_OFFLOAD_MULTI_SEGS |
3608 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
3609 dev_info->flow_type_rss_offloads = 0;
3611 if (!is_safe_mode) {
3612 dev_info->rx_offload_capa |=
3613 DEV_RX_OFFLOAD_IPV4_CKSUM |
3614 DEV_RX_OFFLOAD_UDP_CKSUM |
3615 DEV_RX_OFFLOAD_TCP_CKSUM |
3616 DEV_RX_OFFLOAD_QINQ_STRIP |
3617 DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM |
3618 DEV_RX_OFFLOAD_VLAN_EXTEND |
3619 DEV_RX_OFFLOAD_RSS_HASH;
3620 dev_info->tx_offload_capa |=
3621 DEV_TX_OFFLOAD_QINQ_INSERT |
3622 DEV_TX_OFFLOAD_IPV4_CKSUM |
3623 DEV_TX_OFFLOAD_UDP_CKSUM |
3624 DEV_TX_OFFLOAD_TCP_CKSUM |
3625 DEV_TX_OFFLOAD_SCTP_CKSUM |
3626 DEV_TX_OFFLOAD_OUTER_IPV4_CKSUM |
3627 DEV_TX_OFFLOAD_OUTER_UDP_CKSUM;
3628 dev_info->flow_type_rss_offloads |= ICE_RSS_OFFLOAD_ALL;
3631 dev_info->rx_queue_offload_capa = 0;
3632 dev_info->tx_queue_offload_capa = 0;
3634 dev_info->reta_size = pf->hash_lut_size;
3635 dev_info->hash_key_size = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
3637 dev_info->default_rxconf = (struct rte_eth_rxconf) {
3639 .pthresh = ICE_DEFAULT_RX_PTHRESH,
3640 .hthresh = ICE_DEFAULT_RX_HTHRESH,
3641 .wthresh = ICE_DEFAULT_RX_WTHRESH,
3643 .rx_free_thresh = ICE_DEFAULT_RX_FREE_THRESH,
3648 dev_info->default_txconf = (struct rte_eth_txconf) {
3650 .pthresh = ICE_DEFAULT_TX_PTHRESH,
3651 .hthresh = ICE_DEFAULT_TX_HTHRESH,
3652 .wthresh = ICE_DEFAULT_TX_WTHRESH,
3654 .tx_free_thresh = ICE_DEFAULT_TX_FREE_THRESH,
3655 .tx_rs_thresh = ICE_DEFAULT_TX_RSBIT_THRESH,
3659 dev_info->rx_desc_lim = (struct rte_eth_desc_lim) {
3660 .nb_max = ICE_MAX_RING_DESC,
3661 .nb_min = ICE_MIN_RING_DESC,
3662 .nb_align = ICE_ALIGN_RING_DESC,
3665 dev_info->tx_desc_lim = (struct rte_eth_desc_lim) {
3666 .nb_max = ICE_MAX_RING_DESC,
3667 .nb_min = ICE_MIN_RING_DESC,
3668 .nb_align = ICE_ALIGN_RING_DESC,
3671 dev_info->speed_capa = ETH_LINK_SPEED_10M |
3672 ETH_LINK_SPEED_100M |
3674 ETH_LINK_SPEED_2_5G |
3676 ETH_LINK_SPEED_10G |
3677 ETH_LINK_SPEED_20G |
3680 phy_type_low = hw->port_info->phy.phy_type_low;
3681 phy_type_high = hw->port_info->phy.phy_type_high;
3683 if (ICE_PHY_TYPE_SUPPORT_50G(phy_type_low))
3684 dev_info->speed_capa |= ETH_LINK_SPEED_50G;
3686 if (ICE_PHY_TYPE_SUPPORT_100G_LOW(phy_type_low) ||
3687 ICE_PHY_TYPE_SUPPORT_100G_HIGH(phy_type_high))
3688 dev_info->speed_capa |= ETH_LINK_SPEED_100G;
3690 dev_info->nb_rx_queues = dev->data->nb_rx_queues;
3691 dev_info->nb_tx_queues = dev->data->nb_tx_queues;
3693 dev_info->default_rxportconf.burst_size = ICE_RX_MAX_BURST;
3694 dev_info->default_txportconf.burst_size = ICE_TX_MAX_BURST;
3695 dev_info->default_rxportconf.nb_queues = 1;
3696 dev_info->default_txportconf.nb_queues = 1;
3697 dev_info->default_rxportconf.ring_size = ICE_BUF_SIZE_MIN;
3698 dev_info->default_txportconf.ring_size = ICE_BUF_SIZE_MIN;
3704 ice_atomic_read_link_status(struct rte_eth_dev *dev,
3705 struct rte_eth_link *link)
3707 struct rte_eth_link *dst = link;
3708 struct rte_eth_link *src = &dev->data->dev_link;
3710 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
3711 *(uint64_t *)src) == 0)
3718 ice_atomic_write_link_status(struct rte_eth_dev *dev,
3719 struct rte_eth_link *link)
3721 struct rte_eth_link *dst = &dev->data->dev_link;
3722 struct rte_eth_link *src = link;
3724 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
3725 *(uint64_t *)src) == 0)
3732 ice_link_update(struct rte_eth_dev *dev, int wait_to_complete)
3734 #define CHECK_INTERVAL 100 /* 100ms */
3735 #define MAX_REPEAT_TIME 10 /* 1s (10 * 100ms) in total */
3736 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3737 struct ice_link_status link_status;
3738 struct rte_eth_link link, old;
3740 unsigned int rep_cnt = MAX_REPEAT_TIME;
3741 bool enable_lse = dev->data->dev_conf.intr_conf.lsc ? true : false;
3743 memset(&link, 0, sizeof(link));
3744 memset(&old, 0, sizeof(old));
3745 memset(&link_status, 0, sizeof(link_status));
3746 ice_atomic_read_link_status(dev, &old);
3749 /* Get link status information from hardware */
3750 status = ice_aq_get_link_info(hw->port_info, enable_lse,
3751 &link_status, NULL);
3752 if (status != ICE_SUCCESS) {
3753 link.link_speed = ETH_SPEED_NUM_100M;
3754 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3755 PMD_DRV_LOG(ERR, "Failed to get link info");
3759 link.link_status = link_status.link_info & ICE_AQ_LINK_UP;
3760 if (!wait_to_complete || link.link_status)
3763 rte_delay_ms(CHECK_INTERVAL);
3764 } while (--rep_cnt);
3766 if (!link.link_status)
3769 /* Full-duplex operation at all supported speeds */
3770 link.link_duplex = ETH_LINK_FULL_DUPLEX;
3772 /* Parse the link status */
3773 switch (link_status.link_speed) {
3774 case ICE_AQ_LINK_SPEED_10MB:
3775 link.link_speed = ETH_SPEED_NUM_10M;
3777 case ICE_AQ_LINK_SPEED_100MB:
3778 link.link_speed = ETH_SPEED_NUM_100M;
3780 case ICE_AQ_LINK_SPEED_1000MB:
3781 link.link_speed = ETH_SPEED_NUM_1G;
3783 case ICE_AQ_LINK_SPEED_2500MB:
3784 link.link_speed = ETH_SPEED_NUM_2_5G;
3786 case ICE_AQ_LINK_SPEED_5GB:
3787 link.link_speed = ETH_SPEED_NUM_5G;
3789 case ICE_AQ_LINK_SPEED_10GB:
3790 link.link_speed = ETH_SPEED_NUM_10G;
3792 case ICE_AQ_LINK_SPEED_20GB:
3793 link.link_speed = ETH_SPEED_NUM_20G;
3795 case ICE_AQ_LINK_SPEED_25GB:
3796 link.link_speed = ETH_SPEED_NUM_25G;
3798 case ICE_AQ_LINK_SPEED_40GB:
3799 link.link_speed = ETH_SPEED_NUM_40G;
3801 case ICE_AQ_LINK_SPEED_50GB:
3802 link.link_speed = ETH_SPEED_NUM_50G;
3804 case ICE_AQ_LINK_SPEED_100GB:
3805 link.link_speed = ETH_SPEED_NUM_100G;
3807 case ICE_AQ_LINK_SPEED_UNKNOWN:
3808 PMD_DRV_LOG(ERR, "Unknown link speed");
3809 link.link_speed = ETH_SPEED_NUM_UNKNOWN;
3812 PMD_DRV_LOG(ERR, "None link speed");
3813 link.link_speed = ETH_SPEED_NUM_NONE;
3817 link.link_autoneg = !(dev->data->dev_conf.link_speeds &
3818 ETH_LINK_SPEED_FIXED);
3821 ice_atomic_write_link_status(dev, &link);
3822 if (link.link_status == old.link_status)
3828 /* Force the physical link state by getting the current PHY capabilities from
3829 * hardware and setting the PHY config based on the determined capabilities. If
3830 * link changes, link event will be triggered because both the Enable Automatic
3831 * Link Update and LESM Enable bits are set when setting the PHY capabilities.
3833 static enum ice_status
3834 ice_force_phys_link_state(struct ice_hw *hw, bool link_up)
3836 struct ice_aqc_set_phy_cfg_data cfg = { 0 };
3837 struct ice_aqc_get_phy_caps_data *pcaps;
3838 struct ice_port_info *pi;
3839 enum ice_status status;
3841 if (!hw || !hw->port_info)
3842 return ICE_ERR_PARAM;
3846 pcaps = (struct ice_aqc_get_phy_caps_data *)
3847 ice_malloc(hw, sizeof(*pcaps));
3849 return ICE_ERR_NO_MEMORY;
3851 status = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_ACTIVE_CFG,
3856 /* No change in link */
3857 if (link_up == !!(pcaps->caps & ICE_AQC_PHY_EN_LINK) &&
3858 link_up == !!(pi->phy.link_info.link_info & ICE_AQ_LINK_UP))
3861 cfg.phy_type_low = pcaps->phy_type_low;
3862 cfg.phy_type_high = pcaps->phy_type_high;
3863 cfg.caps = pcaps->caps | ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
3864 cfg.low_power_ctrl_an = pcaps->low_power_ctrl_an;
3865 cfg.eee_cap = pcaps->eee_cap;
3866 cfg.eeer_value = pcaps->eeer_value;
3867 cfg.link_fec_opt = pcaps->link_fec_options;
3869 cfg.caps |= ICE_AQ_PHY_ENA_LINK;
3871 cfg.caps &= ~ICE_AQ_PHY_ENA_LINK;
3873 status = ice_aq_set_phy_cfg(hw, pi, &cfg, NULL);
3876 ice_free(hw, pcaps);
3881 ice_dev_set_link_up(struct rte_eth_dev *dev)
3883 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3885 return ice_force_phys_link_state(hw, true);
3889 ice_dev_set_link_down(struct rte_eth_dev *dev)
3891 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3893 return ice_force_phys_link_state(hw, false);
3897 ice_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
3899 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3900 struct rte_eth_dev_data *dev_data = pf->dev_data;
3901 uint32_t frame_size = mtu + ICE_ETH_OVERHEAD;
3903 /* check if mtu is within the allowed range */
3904 if (mtu < RTE_ETHER_MIN_MTU || frame_size > ICE_FRAME_SIZE_MAX)
3907 /* mtu setting is forbidden if port is start */
3908 if (dev_data->dev_started) {
3910 "port %d must be stopped before configuration",
3915 if (frame_size > RTE_ETHER_MAX_LEN)
3916 dev_data->dev_conf.rxmode.offloads |=
3917 DEV_RX_OFFLOAD_JUMBO_FRAME;
3919 dev_data->dev_conf.rxmode.offloads &=
3920 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
3922 dev_data->dev_conf.rxmode.max_rx_pkt_len = frame_size;
3927 static int ice_macaddr_set(struct rte_eth_dev *dev,
3928 struct rte_ether_addr *mac_addr)
3930 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
3931 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3932 struct ice_vsi *vsi = pf->main_vsi;
3933 struct ice_mac_filter *f;
3937 if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
3938 PMD_DRV_LOG(ERR, "Tried to set invalid MAC address.");
3942 TAILQ_FOREACH(f, &vsi->mac_list, next) {
3943 if (rte_is_same_ether_addr(&pf->dev_addr, &f->mac_info.mac_addr))
3948 PMD_DRV_LOG(ERR, "Failed to find filter for default mac");
3952 ret = ice_remove_mac_filter(vsi, &f->mac_info.mac_addr);
3953 if (ret != ICE_SUCCESS) {
3954 PMD_DRV_LOG(ERR, "Failed to delete mac filter");
3957 ret = ice_add_mac_filter(vsi, mac_addr);
3958 if (ret != ICE_SUCCESS) {
3959 PMD_DRV_LOG(ERR, "Failed to add mac filter");
3962 rte_ether_addr_copy(mac_addr, &pf->dev_addr);
3964 flags = ICE_AQC_MAN_MAC_UPDATE_LAA_WOL;
3965 ret = ice_aq_manage_mac_write(hw, mac_addr->addr_bytes, flags, NULL);
3966 if (ret != ICE_SUCCESS)
3967 PMD_DRV_LOG(ERR, "Failed to set manage mac");
3972 /* Add a MAC address, and update filters */
3974 ice_macaddr_add(struct rte_eth_dev *dev,
3975 struct rte_ether_addr *mac_addr,
3976 __rte_unused uint32_t index,
3977 __rte_unused uint32_t pool)
3979 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3980 struct ice_vsi *vsi = pf->main_vsi;
3983 ret = ice_add_mac_filter(vsi, mac_addr);
3984 if (ret != ICE_SUCCESS) {
3985 PMD_DRV_LOG(ERR, "Failed to add MAC filter");
3992 /* Remove a MAC address, and update filters */
3994 ice_macaddr_remove(struct rte_eth_dev *dev, uint32_t index)
3996 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3997 struct ice_vsi *vsi = pf->main_vsi;
3998 struct rte_eth_dev_data *data = dev->data;
3999 struct rte_ether_addr *macaddr;
4002 macaddr = &data->mac_addrs[index];
4003 ret = ice_remove_mac_filter(vsi, macaddr);
4005 PMD_DRV_LOG(ERR, "Failed to remove MAC filter");
4011 ice_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
4013 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4014 struct ice_vsi *vsi = pf->main_vsi;
4017 PMD_INIT_FUNC_TRACE();
4020 ret = ice_add_vlan_filter(vsi, vlan_id);
4022 PMD_DRV_LOG(ERR, "Failed to add vlan filter");
4026 ret = ice_remove_vlan_filter(vsi, vlan_id);
4028 PMD_DRV_LOG(ERR, "Failed to remove vlan filter");
4036 /* Configure vlan filter on or off */
4038 ice_vsi_config_vlan_filter(struct ice_vsi *vsi, bool on)
4040 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4041 struct ice_vsi_ctx ctxt;
4042 uint8_t sec_flags, sw_flags2;
4045 sec_flags = ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
4046 ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S;
4047 sw_flags2 = ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
4050 vsi->info.sec_flags |= sec_flags;
4051 vsi->info.sw_flags2 |= sw_flags2;
4053 vsi->info.sec_flags &= ~sec_flags;
4054 vsi->info.sw_flags2 &= ~sw_flags2;
4056 vsi->info.sw_id = hw->port_info->sw_id;
4057 (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4058 ctxt.info.valid_sections =
4059 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_SW_VALID |
4060 ICE_AQ_VSI_PROP_SECURITY_VALID);
4061 ctxt.vsi_num = vsi->vsi_id;
4063 ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
4065 PMD_DRV_LOG(INFO, "Update VSI failed to %s vlan rx pruning",
4066 on ? "enable" : "disable");
4069 vsi->info.valid_sections |=
4070 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_SW_VALID |
4071 ICE_AQ_VSI_PROP_SECURITY_VALID);
4074 /* consist with other drivers, allow untagged packet when vlan filter on */
4076 ret = ice_add_vlan_filter(vsi, 0);
4078 ret = ice_remove_vlan_filter(vsi, 0);
4084 ice_vsi_config_vlan_stripping(struct ice_vsi *vsi, bool on)
4086 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4087 struct ice_vsi_ctx ctxt;
4091 /* Check if it has been already on or off */
4092 if (vsi->info.valid_sections &
4093 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID)) {
4095 if ((vsi->info.inner_vlan_flags &
4096 ICE_AQ_VSI_INNER_VLAN_EMODE_M) ==
4097 ICE_AQ_VSI_INNER_VLAN_EMODE_STR_BOTH)
4098 return 0; /* already on */
4100 if ((vsi->info.inner_vlan_flags &
4101 ICE_AQ_VSI_INNER_VLAN_EMODE_M) ==
4102 ICE_AQ_VSI_INNER_VLAN_EMODE_NOTHING)
4103 return 0; /* already off */
4108 vlan_flags = ICE_AQ_VSI_INNER_VLAN_EMODE_STR_BOTH;
4110 vlan_flags = ICE_AQ_VSI_INNER_VLAN_EMODE_NOTHING;
4111 vsi->info.inner_vlan_flags &= ~(ICE_AQ_VSI_INNER_VLAN_EMODE_M);
4112 vsi->info.inner_vlan_flags |= vlan_flags;
4113 (void)rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4114 ctxt.info.valid_sections =
4115 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
4116 ctxt.vsi_num = vsi->vsi_id;
4117 ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
4119 PMD_DRV_LOG(INFO, "Update VSI failed to %s vlan stripping",
4120 on ? "enable" : "disable");
4124 vsi->info.valid_sections |=
4125 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
4131 ice_vlan_offload_set(struct rte_eth_dev *dev, int mask)
4133 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4134 struct ice_vsi *vsi = pf->main_vsi;
4135 struct rte_eth_rxmode *rxmode;
4137 rxmode = &dev->data->dev_conf.rxmode;
4138 if (mask & ETH_VLAN_FILTER_MASK) {
4139 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
4140 ice_vsi_config_vlan_filter(vsi, true);
4142 ice_vsi_config_vlan_filter(vsi, false);
4145 if (mask & ETH_VLAN_STRIP_MASK) {
4146 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
4147 ice_vsi_config_vlan_stripping(vsi, true);
4149 ice_vsi_config_vlan_stripping(vsi, false);
4152 if (mask & ETH_VLAN_EXTEND_MASK) {
4153 if (rxmode->offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
4154 ice_vsi_config_double_vlan(vsi, true);
4156 ice_vsi_config_double_vlan(vsi, false);
4163 ice_get_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
4165 struct ice_aq_get_set_rss_lut_params lut_params;
4166 struct ice_pf *pf = ICE_VSI_TO_PF(vsi);
4167 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4173 if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
4174 lut_params.vsi_handle = vsi->idx;
4175 lut_params.lut_size = lut_size;
4176 lut_params.lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF;
4177 lut_params.lut = lut;
4178 lut_params.global_lut_id = 0;
4179 ret = ice_aq_get_rss_lut(hw, &lut_params);
4181 PMD_DRV_LOG(ERR, "Failed to get RSS lookup table");
4185 uint64_t *lut_dw = (uint64_t *)lut;
4186 uint16_t i, lut_size_dw = lut_size / 4;
4188 for (i = 0; i < lut_size_dw; i++)
4189 lut_dw[i] = ICE_READ_REG(hw, PFQF_HLUT(i));
4196 ice_set_rss_lut(struct ice_vsi *vsi, uint8_t *lut, uint16_t lut_size)
4198 struct ice_aq_get_set_rss_lut_params lut_params;
4206 pf = ICE_VSI_TO_PF(vsi);
4207 hw = ICE_VSI_TO_HW(vsi);
4209 if (pf->flags & ICE_FLAG_RSS_AQ_CAPABLE) {
4210 lut_params.vsi_handle = vsi->idx;
4211 lut_params.lut_size = lut_size;
4212 lut_params.lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF;
4213 lut_params.lut = lut;
4214 lut_params.global_lut_id = 0;
4215 ret = ice_aq_set_rss_lut(hw, &lut_params);
4217 PMD_DRV_LOG(ERR, "Failed to set RSS lookup table");
4221 uint64_t *lut_dw = (uint64_t *)lut;
4222 uint16_t i, lut_size_dw = lut_size / 4;
4224 for (i = 0; i < lut_size_dw; i++)
4225 ICE_WRITE_REG(hw, PFQF_HLUT(i), lut_dw[i]);
4234 ice_rss_reta_update(struct rte_eth_dev *dev,
4235 struct rte_eth_rss_reta_entry64 *reta_conf,
4238 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4239 uint16_t i, lut_size = pf->hash_lut_size;
4240 uint16_t idx, shift;
4244 if (reta_size != ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_128 &&
4245 reta_size != ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_512 &&
4246 reta_size != ICE_AQC_GSET_RSS_LUT_TABLE_SIZE_2K) {
4248 "The size of hash lookup table configured (%d)"
4249 "doesn't match the number hardware can "
4250 "supported (128, 512, 2048)",
4255 /* It MUST use the current LUT size to get the RSS lookup table,
4256 * otherwise if will fail with -100 error code.
4258 lut = rte_zmalloc(NULL, RTE_MAX(reta_size, lut_size), 0);
4260 PMD_DRV_LOG(ERR, "No memory can be allocated");
4263 ret = ice_get_rss_lut(pf->main_vsi, lut, lut_size);
4267 for (i = 0; i < reta_size; i++) {
4268 idx = i / RTE_RETA_GROUP_SIZE;
4269 shift = i % RTE_RETA_GROUP_SIZE;
4270 if (reta_conf[idx].mask & (1ULL << shift))
4271 lut[i] = reta_conf[idx].reta[shift];
4273 ret = ice_set_rss_lut(pf->main_vsi, lut, reta_size);
4274 if (ret == 0 && lut_size != reta_size) {
4276 "The size of hash lookup table is changed from (%d) to (%d)",
4277 lut_size, reta_size);
4278 pf->hash_lut_size = reta_size;
4288 ice_rss_reta_query(struct rte_eth_dev *dev,
4289 struct rte_eth_rss_reta_entry64 *reta_conf,
4292 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4293 uint16_t i, lut_size = pf->hash_lut_size;
4294 uint16_t idx, shift;
4298 if (reta_size != lut_size) {
4300 "The size of hash lookup table configured (%d)"
4301 "doesn't match the number hardware can "
4303 reta_size, lut_size);
4307 lut = rte_zmalloc(NULL, reta_size, 0);
4309 PMD_DRV_LOG(ERR, "No memory can be allocated");
4313 ret = ice_get_rss_lut(pf->main_vsi, lut, reta_size);
4317 for (i = 0; i < reta_size; i++) {
4318 idx = i / RTE_RETA_GROUP_SIZE;
4319 shift = i % RTE_RETA_GROUP_SIZE;
4320 if (reta_conf[idx].mask & (1ULL << shift))
4321 reta_conf[idx].reta[shift] = lut[i];
4331 ice_set_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t key_len)
4333 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4336 if (!key || key_len == 0) {
4337 PMD_DRV_LOG(DEBUG, "No key to be configured");
4339 } else if (key_len != (VSIQF_HKEY_MAX_INDEX + 1) *
4341 PMD_DRV_LOG(ERR, "Invalid key length %u", key_len);
4345 struct ice_aqc_get_set_rss_keys *key_dw =
4346 (struct ice_aqc_get_set_rss_keys *)key;
4348 ret = ice_aq_set_rss_key(hw, vsi->idx, key_dw);
4350 PMD_DRV_LOG(ERR, "Failed to configure RSS key via AQ");
4358 ice_get_rss_key(struct ice_vsi *vsi, uint8_t *key, uint8_t *key_len)
4360 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4363 if (!key || !key_len)
4366 ret = ice_aq_get_rss_key
4368 (struct ice_aqc_get_set_rss_keys *)key);
4370 PMD_DRV_LOG(ERR, "Failed to get RSS key via AQ");
4373 *key_len = (VSIQF_HKEY_MAX_INDEX + 1) * sizeof(uint32_t);
4379 ice_rss_hash_update(struct rte_eth_dev *dev,
4380 struct rte_eth_rss_conf *rss_conf)
4382 enum ice_status status = ICE_SUCCESS;
4383 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4384 struct ice_vsi *vsi = pf->main_vsi;
4387 status = ice_set_rss_key(vsi, rss_conf->rss_key, rss_conf->rss_key_len);
4391 if (rss_conf->rss_hf == 0)
4394 /* RSS hash configuration */
4395 ice_rss_hash_set(pf, rss_conf->rss_hf);
4401 ice_rss_hash_conf_get(struct rte_eth_dev *dev,
4402 struct rte_eth_rss_conf *rss_conf)
4404 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4405 struct ice_vsi *vsi = pf->main_vsi;
4407 ice_get_rss_key(vsi, rss_conf->rss_key,
4408 &rss_conf->rss_key_len);
4410 rss_conf->rss_hf = pf->rss_hf;
4415 ice_promisc_enable(struct rte_eth_dev *dev)
4417 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4418 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4419 struct ice_vsi *vsi = pf->main_vsi;
4420 enum ice_status status;
4424 pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
4425 ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
4427 status = ice_set_vsi_promisc(hw, vsi->idx, pmask, 0);
4429 case ICE_ERR_ALREADY_EXISTS:
4430 PMD_DRV_LOG(DEBUG, "Promisc mode has already been enabled");
4434 PMD_DRV_LOG(ERR, "Failed to enable promisc, err=%d", status);
4442 ice_promisc_disable(struct rte_eth_dev *dev)
4444 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4445 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4446 struct ice_vsi *vsi = pf->main_vsi;
4447 enum ice_status status;
4451 pmask = ICE_PROMISC_UCAST_RX | ICE_PROMISC_UCAST_TX |
4452 ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
4454 status = ice_clear_vsi_promisc(hw, vsi->idx, pmask, 0);
4455 if (status != ICE_SUCCESS) {
4456 PMD_DRV_LOG(ERR, "Failed to clear promisc, err=%d", status);
4464 ice_allmulti_enable(struct rte_eth_dev *dev)
4466 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4467 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4468 struct ice_vsi *vsi = pf->main_vsi;
4469 enum ice_status status;
4473 pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
4475 status = ice_set_vsi_promisc(hw, vsi->idx, pmask, 0);
4478 case ICE_ERR_ALREADY_EXISTS:
4479 PMD_DRV_LOG(DEBUG, "Allmulti has already been enabled");
4483 PMD_DRV_LOG(ERR, "Failed to enable allmulti, err=%d", status);
4491 ice_allmulti_disable(struct rte_eth_dev *dev)
4493 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4494 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4495 struct ice_vsi *vsi = pf->main_vsi;
4496 enum ice_status status;
4500 if (dev->data->promiscuous == 1)
4501 return 0; /* must remain in all_multicast mode */
4503 pmask = ICE_PROMISC_MCAST_RX | ICE_PROMISC_MCAST_TX;
4505 status = ice_clear_vsi_promisc(hw, vsi->idx, pmask, 0);
4506 if (status != ICE_SUCCESS) {
4507 PMD_DRV_LOG(ERR, "Failed to clear allmulti, err=%d", status);
4514 static int ice_rx_queue_intr_enable(struct rte_eth_dev *dev,
4517 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
4518 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4519 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4523 msix_intr = intr_handle->intr_vec[queue_id];
4525 val = GLINT_DYN_CTL_INTENA_M | GLINT_DYN_CTL_CLEARPBA_M |
4526 GLINT_DYN_CTL_ITR_INDX_M;
4527 val &= ~GLINT_DYN_CTL_WB_ON_ITR_M;
4529 ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr), val);
4530 rte_intr_ack(&pci_dev->intr_handle);
4535 static int ice_rx_queue_intr_disable(struct rte_eth_dev *dev,
4538 struct rte_pci_device *pci_dev = ICE_DEV_TO_PCI(dev);
4539 struct rte_intr_handle *intr_handle = &pci_dev->intr_handle;
4540 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4543 msix_intr = intr_handle->intr_vec[queue_id];
4545 ICE_WRITE_REG(hw, GLINT_DYN_CTL(msix_intr), GLINT_DYN_CTL_WB_ON_ITR_M);
4551 ice_fw_version_get(struct rte_eth_dev *dev, char *fw_version, size_t fw_size)
4553 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4558 ver = hw->flash.orom.major;
4559 patch = hw->flash.orom.patch;
4560 build = hw->flash.orom.build;
4562 ret = snprintf(fw_version, fw_size,
4563 "%x.%02x 0x%08x %d.%d.%d",
4564 hw->flash.nvm.major,
4565 hw->flash.nvm.minor,
4566 hw->flash.nvm.eetrack,
4569 /* add the size of '\0' */
4571 if (fw_size < (u32)ret)
4578 ice_vsi_vlan_pvid_set(struct ice_vsi *vsi, struct ice_vsi_vlan_pvid_info *info)
4581 struct ice_vsi_ctx ctxt;
4582 uint8_t vlan_flags = 0;
4585 if (!vsi || !info) {
4586 PMD_DRV_LOG(ERR, "invalid parameters");
4591 vsi->info.port_based_inner_vlan = info->config.pvid;
4593 * If insert pvid is enabled, only tagged pkts are
4594 * allowed to be sent out.
4596 vlan_flags = ICE_AQ_VSI_INNER_VLAN_INSERT_PVID |
4597 ICE_AQ_VSI_INNER_VLAN_TX_MODE_ACCEPTUNTAGGED;
4599 vsi->info.port_based_inner_vlan = 0;
4600 if (info->config.reject.tagged == 0)
4601 vlan_flags |= ICE_AQ_VSI_INNER_VLAN_TX_MODE_ACCEPTTAGGED;
4603 if (info->config.reject.untagged == 0)
4604 vlan_flags |= ICE_AQ_VSI_INNER_VLAN_TX_MODE_ACCEPTUNTAGGED;
4606 vsi->info.inner_vlan_flags &= ~(ICE_AQ_VSI_INNER_VLAN_INSERT_PVID |
4607 ICE_AQ_VSI_INNER_VLAN_EMODE_M);
4608 vsi->info.inner_vlan_flags |= vlan_flags;
4609 memset(&ctxt, 0, sizeof(ctxt));
4610 rte_memcpy(&ctxt.info, &vsi->info, sizeof(vsi->info));
4611 ctxt.info.valid_sections =
4612 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
4613 ctxt.vsi_num = vsi->vsi_id;
4615 hw = ICE_VSI_TO_HW(vsi);
4616 ret = ice_update_vsi(hw, vsi->idx, &ctxt, NULL);
4617 if (ret != ICE_SUCCESS) {
4619 "update VSI for VLAN insert failed, err %d",
4624 vsi->info.valid_sections |=
4625 rte_cpu_to_le_16(ICE_AQ_VSI_PROP_VLAN_VALID);
4631 ice_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid, int on)
4633 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4634 struct ice_vsi *vsi = pf->main_vsi;
4635 struct rte_eth_dev_data *data = pf->dev_data;
4636 struct ice_vsi_vlan_pvid_info info;
4639 memset(&info, 0, sizeof(info));
4642 info.config.pvid = pvid;
4644 info.config.reject.tagged =
4645 data->dev_conf.txmode.hw_vlan_reject_tagged;
4646 info.config.reject.untagged =
4647 data->dev_conf.txmode.hw_vlan_reject_untagged;
4650 ret = ice_vsi_vlan_pvid_set(vsi, &info);
4652 PMD_DRV_LOG(ERR, "Failed to set pvid.");
4660 ice_get_eeprom_length(struct rte_eth_dev *dev)
4662 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4664 return hw->flash.flash_size;
4668 ice_get_eeprom(struct rte_eth_dev *dev,
4669 struct rte_dev_eeprom_info *eeprom)
4671 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4672 enum ice_status status = ICE_SUCCESS;
4673 uint8_t *data = eeprom->data;
4675 eeprom->magic = hw->vendor_id | (hw->device_id << 16);
4677 status = ice_acquire_nvm(hw, ICE_RES_READ);
4679 PMD_DRV_LOG(ERR, "acquire nvm failed.");
4683 status = ice_read_flat_nvm(hw, eeprom->offset, &eeprom->length,
4686 ice_release_nvm(hw);
4689 PMD_DRV_LOG(ERR, "EEPROM read failed.");
4697 ice_stat_update_32(struct ice_hw *hw,
4705 new_data = (uint64_t)ICE_READ_REG(hw, reg);
4709 if (new_data >= *offset)
4710 *stat = (uint64_t)(new_data - *offset);
4712 *stat = (uint64_t)((new_data +
4713 ((uint64_t)1 << ICE_32_BIT_WIDTH))
4718 ice_stat_update_40(struct ice_hw *hw,
4727 new_data = (uint64_t)ICE_READ_REG(hw, loreg);
4728 new_data |= (uint64_t)(ICE_READ_REG(hw, hireg) & ICE_8_BIT_MASK) <<
4734 if (new_data >= *offset)
4735 *stat = new_data - *offset;
4737 *stat = (uint64_t)((new_data +
4738 ((uint64_t)1 << ICE_40_BIT_WIDTH)) -
4741 *stat &= ICE_40_BIT_MASK;
4744 /* Get all the statistics of a VSI */
4746 ice_update_vsi_stats(struct ice_vsi *vsi)
4748 struct ice_eth_stats *oes = &vsi->eth_stats_offset;
4749 struct ice_eth_stats *nes = &vsi->eth_stats;
4750 struct ice_hw *hw = ICE_VSI_TO_HW(vsi);
4751 int idx = rte_le_to_cpu_16(vsi->vsi_id);
4753 ice_stat_update_40(hw, GLV_GORCH(idx), GLV_GORCL(idx),
4754 vsi->offset_loaded, &oes->rx_bytes,
4756 ice_stat_update_40(hw, GLV_UPRCH(idx), GLV_UPRCL(idx),
4757 vsi->offset_loaded, &oes->rx_unicast,
4759 ice_stat_update_40(hw, GLV_MPRCH(idx), GLV_MPRCL(idx),
4760 vsi->offset_loaded, &oes->rx_multicast,
4761 &nes->rx_multicast);
4762 ice_stat_update_40(hw, GLV_BPRCH(idx), GLV_BPRCL(idx),
4763 vsi->offset_loaded, &oes->rx_broadcast,
4764 &nes->rx_broadcast);
4765 /* enlarge the limitation when rx_bytes overflowed */
4766 if (vsi->offset_loaded) {
4767 if (ICE_RXTX_BYTES_LOW(vsi->old_rx_bytes) > nes->rx_bytes)
4768 nes->rx_bytes += (uint64_t)1 << ICE_40_BIT_WIDTH;
4769 nes->rx_bytes += ICE_RXTX_BYTES_HIGH(vsi->old_rx_bytes);
4771 vsi->old_rx_bytes = nes->rx_bytes;
4772 /* exclude CRC bytes */
4773 nes->rx_bytes -= (nes->rx_unicast + nes->rx_multicast +
4774 nes->rx_broadcast) * RTE_ETHER_CRC_LEN;
4776 ice_stat_update_32(hw, GLV_RDPC(idx), vsi->offset_loaded,
4777 &oes->rx_discards, &nes->rx_discards);
4778 /* GLV_REPC not supported */
4779 /* GLV_RMPC not supported */
4780 ice_stat_update_32(hw, GLSWID_RUPP(idx), vsi->offset_loaded,
4781 &oes->rx_unknown_protocol,
4782 &nes->rx_unknown_protocol);
4783 ice_stat_update_40(hw, GLV_GOTCH(idx), GLV_GOTCL(idx),
4784 vsi->offset_loaded, &oes->tx_bytes,
4786 ice_stat_update_40(hw, GLV_UPTCH(idx), GLV_UPTCL(idx),
4787 vsi->offset_loaded, &oes->tx_unicast,
4789 ice_stat_update_40(hw, GLV_MPTCH(idx), GLV_MPTCL(idx),
4790 vsi->offset_loaded, &oes->tx_multicast,
4791 &nes->tx_multicast);
4792 ice_stat_update_40(hw, GLV_BPTCH(idx), GLV_BPTCL(idx),
4793 vsi->offset_loaded, &oes->tx_broadcast,
4794 &nes->tx_broadcast);
4795 /* GLV_TDPC not supported */
4796 ice_stat_update_32(hw, GLV_TEPC(idx), vsi->offset_loaded,
4797 &oes->tx_errors, &nes->tx_errors);
4798 /* enlarge the limitation when tx_bytes overflowed */
4799 if (vsi->offset_loaded) {
4800 if (ICE_RXTX_BYTES_LOW(vsi->old_tx_bytes) > nes->tx_bytes)
4801 nes->tx_bytes += (uint64_t)1 << ICE_40_BIT_WIDTH;
4802 nes->tx_bytes += ICE_RXTX_BYTES_HIGH(vsi->old_tx_bytes);
4804 vsi->old_tx_bytes = nes->tx_bytes;
4805 vsi->offset_loaded = true;
4807 PMD_DRV_LOG(DEBUG, "************** VSI[%u] stats start **************",
4809 PMD_DRV_LOG(DEBUG, "rx_bytes: %"PRIu64"", nes->rx_bytes);
4810 PMD_DRV_LOG(DEBUG, "rx_unicast: %"PRIu64"", nes->rx_unicast);
4811 PMD_DRV_LOG(DEBUG, "rx_multicast: %"PRIu64"", nes->rx_multicast);
4812 PMD_DRV_LOG(DEBUG, "rx_broadcast: %"PRIu64"", nes->rx_broadcast);
4813 PMD_DRV_LOG(DEBUG, "rx_discards: %"PRIu64"", nes->rx_discards);
4814 PMD_DRV_LOG(DEBUG, "rx_unknown_protocol: %"PRIu64"",
4815 nes->rx_unknown_protocol);
4816 PMD_DRV_LOG(DEBUG, "tx_bytes: %"PRIu64"", nes->tx_bytes);
4817 PMD_DRV_LOG(DEBUG, "tx_unicast: %"PRIu64"", nes->tx_unicast);
4818 PMD_DRV_LOG(DEBUG, "tx_multicast: %"PRIu64"", nes->tx_multicast);
4819 PMD_DRV_LOG(DEBUG, "tx_broadcast: %"PRIu64"", nes->tx_broadcast);
4820 PMD_DRV_LOG(DEBUG, "tx_discards: %"PRIu64"", nes->tx_discards);
4821 PMD_DRV_LOG(DEBUG, "tx_errors: %"PRIu64"", nes->tx_errors);
4822 PMD_DRV_LOG(DEBUG, "************** VSI[%u] stats end ****************",
4827 ice_read_stats_registers(struct ice_pf *pf, struct ice_hw *hw)
4829 struct ice_hw_port_stats *ns = &pf->stats; /* new stats */
4830 struct ice_hw_port_stats *os = &pf->stats_offset; /* old stats */
4832 /* Get statistics of struct ice_eth_stats */
4833 ice_stat_update_40(hw, GLPRT_GORCH(hw->port_info->lport),
4834 GLPRT_GORCL(hw->port_info->lport),
4835 pf->offset_loaded, &os->eth.rx_bytes,
4837 ice_stat_update_40(hw, GLPRT_UPRCH(hw->port_info->lport),
4838 GLPRT_UPRCL(hw->port_info->lport),
4839 pf->offset_loaded, &os->eth.rx_unicast,
4840 &ns->eth.rx_unicast);
4841 ice_stat_update_40(hw, GLPRT_MPRCH(hw->port_info->lport),
4842 GLPRT_MPRCL(hw->port_info->lport),
4843 pf->offset_loaded, &os->eth.rx_multicast,
4844 &ns->eth.rx_multicast);
4845 ice_stat_update_40(hw, GLPRT_BPRCH(hw->port_info->lport),
4846 GLPRT_BPRCL(hw->port_info->lport),
4847 pf->offset_loaded, &os->eth.rx_broadcast,
4848 &ns->eth.rx_broadcast);
4849 ice_stat_update_32(hw, PRTRPB_RDPC,
4850 pf->offset_loaded, &os->eth.rx_discards,
4851 &ns->eth.rx_discards);
4852 /* enlarge the limitation when rx_bytes overflowed */
4853 if (pf->offset_loaded) {
4854 if (ICE_RXTX_BYTES_LOW(pf->old_rx_bytes) > ns->eth.rx_bytes)
4855 ns->eth.rx_bytes += (uint64_t)1 << ICE_40_BIT_WIDTH;
4856 ns->eth.rx_bytes += ICE_RXTX_BYTES_HIGH(pf->old_rx_bytes);
4858 pf->old_rx_bytes = ns->eth.rx_bytes;
4860 /* Workaround: CRC size should not be included in byte statistics,
4861 * so subtract RTE_ETHER_CRC_LEN from the byte counter for each rx
4864 ns->eth.rx_bytes -= (ns->eth.rx_unicast + ns->eth.rx_multicast +
4865 ns->eth.rx_broadcast) * RTE_ETHER_CRC_LEN;
4867 /* GLPRT_REPC not supported */
4868 /* GLPRT_RMPC not supported */
4869 ice_stat_update_32(hw, GLSWID_RUPP(hw->port_info->lport),
4871 &os->eth.rx_unknown_protocol,
4872 &ns->eth.rx_unknown_protocol);
4873 ice_stat_update_40(hw, GLPRT_GOTCH(hw->port_info->lport),
4874 GLPRT_GOTCL(hw->port_info->lport),
4875 pf->offset_loaded, &os->eth.tx_bytes,
4877 ice_stat_update_40(hw, GLPRT_UPTCH(hw->port_info->lport),
4878 GLPRT_UPTCL(hw->port_info->lport),
4879 pf->offset_loaded, &os->eth.tx_unicast,
4880 &ns->eth.tx_unicast);
4881 ice_stat_update_40(hw, GLPRT_MPTCH(hw->port_info->lport),
4882 GLPRT_MPTCL(hw->port_info->lport),
4883 pf->offset_loaded, &os->eth.tx_multicast,
4884 &ns->eth.tx_multicast);
4885 ice_stat_update_40(hw, GLPRT_BPTCH(hw->port_info->lport),
4886 GLPRT_BPTCL(hw->port_info->lport),
4887 pf->offset_loaded, &os->eth.tx_broadcast,
4888 &ns->eth.tx_broadcast);
4889 /* enlarge the limitation when tx_bytes overflowed */
4890 if (pf->offset_loaded) {
4891 if (ICE_RXTX_BYTES_LOW(pf->old_tx_bytes) > ns->eth.tx_bytes)
4892 ns->eth.tx_bytes += (uint64_t)1 << ICE_40_BIT_WIDTH;
4893 ns->eth.tx_bytes += ICE_RXTX_BYTES_HIGH(pf->old_tx_bytes);
4895 pf->old_tx_bytes = ns->eth.tx_bytes;
4896 ns->eth.tx_bytes -= (ns->eth.tx_unicast + ns->eth.tx_multicast +
4897 ns->eth.tx_broadcast) * RTE_ETHER_CRC_LEN;
4899 /* GLPRT_TEPC not supported */
4901 /* additional port specific stats */
4902 ice_stat_update_32(hw, GLPRT_TDOLD(hw->port_info->lport),
4903 pf->offset_loaded, &os->tx_dropped_link_down,
4904 &ns->tx_dropped_link_down);
4905 ice_stat_update_32(hw, GLPRT_CRCERRS(hw->port_info->lport),
4906 pf->offset_loaded, &os->crc_errors,
4908 ice_stat_update_32(hw, GLPRT_ILLERRC(hw->port_info->lport),
4909 pf->offset_loaded, &os->illegal_bytes,
4910 &ns->illegal_bytes);
4911 /* GLPRT_ERRBC not supported */
4912 ice_stat_update_32(hw, GLPRT_MLFC(hw->port_info->lport),
4913 pf->offset_loaded, &os->mac_local_faults,
4914 &ns->mac_local_faults);
4915 ice_stat_update_32(hw, GLPRT_MRFC(hw->port_info->lport),
4916 pf->offset_loaded, &os->mac_remote_faults,
4917 &ns->mac_remote_faults);
4919 ice_stat_update_32(hw, GLPRT_RLEC(hw->port_info->lport),
4920 pf->offset_loaded, &os->rx_len_errors,
4921 &ns->rx_len_errors);
4923 ice_stat_update_32(hw, GLPRT_LXONRXC(hw->port_info->lport),
4924 pf->offset_loaded, &os->link_xon_rx,
4926 ice_stat_update_32(hw, GLPRT_LXOFFRXC(hw->port_info->lport),
4927 pf->offset_loaded, &os->link_xoff_rx,
4929 ice_stat_update_32(hw, GLPRT_LXONTXC(hw->port_info->lport),
4930 pf->offset_loaded, &os->link_xon_tx,
4932 ice_stat_update_32(hw, GLPRT_LXOFFTXC(hw->port_info->lport),
4933 pf->offset_loaded, &os->link_xoff_tx,
4935 ice_stat_update_40(hw, GLPRT_PRC64H(hw->port_info->lport),
4936 GLPRT_PRC64L(hw->port_info->lport),
4937 pf->offset_loaded, &os->rx_size_64,
4939 ice_stat_update_40(hw, GLPRT_PRC127H(hw->port_info->lport),
4940 GLPRT_PRC127L(hw->port_info->lport),
4941 pf->offset_loaded, &os->rx_size_127,
4943 ice_stat_update_40(hw, GLPRT_PRC255H(hw->port_info->lport),
4944 GLPRT_PRC255L(hw->port_info->lport),
4945 pf->offset_loaded, &os->rx_size_255,
4947 ice_stat_update_40(hw, GLPRT_PRC511H(hw->port_info->lport),
4948 GLPRT_PRC511L(hw->port_info->lport),
4949 pf->offset_loaded, &os->rx_size_511,
4951 ice_stat_update_40(hw, GLPRT_PRC1023H(hw->port_info->lport),
4952 GLPRT_PRC1023L(hw->port_info->lport),
4953 pf->offset_loaded, &os->rx_size_1023,
4955 ice_stat_update_40(hw, GLPRT_PRC1522H(hw->port_info->lport),
4956 GLPRT_PRC1522L(hw->port_info->lport),
4957 pf->offset_loaded, &os->rx_size_1522,
4959 ice_stat_update_40(hw, GLPRT_PRC9522H(hw->port_info->lport),
4960 GLPRT_PRC9522L(hw->port_info->lport),
4961 pf->offset_loaded, &os->rx_size_big,
4963 ice_stat_update_32(hw, GLPRT_RUC(hw->port_info->lport),
4964 pf->offset_loaded, &os->rx_undersize,
4966 ice_stat_update_32(hw, GLPRT_RFC(hw->port_info->lport),
4967 pf->offset_loaded, &os->rx_fragments,
4969 ice_stat_update_32(hw, GLPRT_ROC(hw->port_info->lport),
4970 pf->offset_loaded, &os->rx_oversize,
4972 ice_stat_update_32(hw, GLPRT_RJC(hw->port_info->lport),
4973 pf->offset_loaded, &os->rx_jabber,
4975 ice_stat_update_40(hw, GLPRT_PTC64H(hw->port_info->lport),
4976 GLPRT_PTC64L(hw->port_info->lport),
4977 pf->offset_loaded, &os->tx_size_64,
4979 ice_stat_update_40(hw, GLPRT_PTC127H(hw->port_info->lport),
4980 GLPRT_PTC127L(hw->port_info->lport),
4981 pf->offset_loaded, &os->tx_size_127,
4983 ice_stat_update_40(hw, GLPRT_PTC255H(hw->port_info->lport),
4984 GLPRT_PTC255L(hw->port_info->lport),
4985 pf->offset_loaded, &os->tx_size_255,
4987 ice_stat_update_40(hw, GLPRT_PTC511H(hw->port_info->lport),
4988 GLPRT_PTC511L(hw->port_info->lport),
4989 pf->offset_loaded, &os->tx_size_511,
4991 ice_stat_update_40(hw, GLPRT_PTC1023H(hw->port_info->lport),
4992 GLPRT_PTC1023L(hw->port_info->lport),
4993 pf->offset_loaded, &os->tx_size_1023,
4995 ice_stat_update_40(hw, GLPRT_PTC1522H(hw->port_info->lport),
4996 GLPRT_PTC1522L(hw->port_info->lport),
4997 pf->offset_loaded, &os->tx_size_1522,
4999 ice_stat_update_40(hw, GLPRT_PTC9522H(hw->port_info->lport),
5000 GLPRT_PTC9522L(hw->port_info->lport),
5001 pf->offset_loaded, &os->tx_size_big,
5004 /* GLPRT_MSPDC not supported */
5005 /* GLPRT_XEC not supported */
5007 pf->offset_loaded = true;
5010 ice_update_vsi_stats(pf->main_vsi);
5013 /* Get all statistics of a port */
5015 ice_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
5017 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5018 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5019 struct ice_hw_port_stats *ns = &pf->stats; /* new stats */
5021 /* call read registers - updates values, now write them to struct */
5022 ice_read_stats_registers(pf, hw);
5024 stats->ipackets = pf->main_vsi->eth_stats.rx_unicast +
5025 pf->main_vsi->eth_stats.rx_multicast +
5026 pf->main_vsi->eth_stats.rx_broadcast -
5027 pf->main_vsi->eth_stats.rx_discards;
5028 stats->opackets = ns->eth.tx_unicast +
5029 ns->eth.tx_multicast +
5030 ns->eth.tx_broadcast;
5031 stats->ibytes = pf->main_vsi->eth_stats.rx_bytes;
5032 stats->obytes = ns->eth.tx_bytes;
5033 stats->oerrors = ns->eth.tx_errors +
5034 pf->main_vsi->eth_stats.tx_errors;
5037 stats->imissed = ns->eth.rx_discards +
5038 pf->main_vsi->eth_stats.rx_discards;
5039 stats->ierrors = ns->crc_errors +
5041 ns->rx_oversize + ns->rx_fragments + ns->rx_jabber;
5043 PMD_DRV_LOG(DEBUG, "*************** PF stats start *****************");
5044 PMD_DRV_LOG(DEBUG, "rx_bytes: %"PRIu64"", ns->eth.rx_bytes);
5045 PMD_DRV_LOG(DEBUG, "rx_unicast: %"PRIu64"", ns->eth.rx_unicast);
5046 PMD_DRV_LOG(DEBUG, "rx_multicast:%"PRIu64"", ns->eth.rx_multicast);
5047 PMD_DRV_LOG(DEBUG, "rx_broadcast:%"PRIu64"", ns->eth.rx_broadcast);
5048 PMD_DRV_LOG(DEBUG, "rx_discards:%"PRIu64"", ns->eth.rx_discards);
5049 PMD_DRV_LOG(DEBUG, "vsi rx_discards:%"PRIu64"",
5050 pf->main_vsi->eth_stats.rx_discards);
5051 PMD_DRV_LOG(DEBUG, "rx_unknown_protocol: %"PRIu64"",
5052 ns->eth.rx_unknown_protocol);
5053 PMD_DRV_LOG(DEBUG, "tx_bytes: %"PRIu64"", ns->eth.tx_bytes);
5054 PMD_DRV_LOG(DEBUG, "tx_unicast: %"PRIu64"", ns->eth.tx_unicast);
5055 PMD_DRV_LOG(DEBUG, "tx_multicast:%"PRIu64"", ns->eth.tx_multicast);
5056 PMD_DRV_LOG(DEBUG, "tx_broadcast:%"PRIu64"", ns->eth.tx_broadcast);
5057 PMD_DRV_LOG(DEBUG, "tx_discards:%"PRIu64"", ns->eth.tx_discards);
5058 PMD_DRV_LOG(DEBUG, "vsi tx_discards:%"PRIu64"",
5059 pf->main_vsi->eth_stats.tx_discards);
5060 PMD_DRV_LOG(DEBUG, "tx_errors: %"PRIu64"", ns->eth.tx_errors);
5062 PMD_DRV_LOG(DEBUG, "tx_dropped_link_down: %"PRIu64"",
5063 ns->tx_dropped_link_down);
5064 PMD_DRV_LOG(DEBUG, "crc_errors: %"PRIu64"", ns->crc_errors);
5065 PMD_DRV_LOG(DEBUG, "illegal_bytes: %"PRIu64"",
5067 PMD_DRV_LOG(DEBUG, "error_bytes: %"PRIu64"", ns->error_bytes);
5068 PMD_DRV_LOG(DEBUG, "mac_local_faults: %"PRIu64"",
5069 ns->mac_local_faults);
5070 PMD_DRV_LOG(DEBUG, "mac_remote_faults: %"PRIu64"",
5071 ns->mac_remote_faults);
5072 PMD_DRV_LOG(DEBUG, "link_xon_rx: %"PRIu64"", ns->link_xon_rx);
5073 PMD_DRV_LOG(DEBUG, "link_xoff_rx: %"PRIu64"", ns->link_xoff_rx);
5074 PMD_DRV_LOG(DEBUG, "link_xon_tx: %"PRIu64"", ns->link_xon_tx);
5075 PMD_DRV_LOG(DEBUG, "link_xoff_tx: %"PRIu64"", ns->link_xoff_tx);
5076 PMD_DRV_LOG(DEBUG, "rx_size_64: %"PRIu64"", ns->rx_size_64);
5077 PMD_DRV_LOG(DEBUG, "rx_size_127: %"PRIu64"", ns->rx_size_127);
5078 PMD_DRV_LOG(DEBUG, "rx_size_255: %"PRIu64"", ns->rx_size_255);
5079 PMD_DRV_LOG(DEBUG, "rx_size_511: %"PRIu64"", ns->rx_size_511);
5080 PMD_DRV_LOG(DEBUG, "rx_size_1023: %"PRIu64"", ns->rx_size_1023);
5081 PMD_DRV_LOG(DEBUG, "rx_size_1522: %"PRIu64"", ns->rx_size_1522);
5082 PMD_DRV_LOG(DEBUG, "rx_size_big: %"PRIu64"", ns->rx_size_big);
5083 PMD_DRV_LOG(DEBUG, "rx_undersize: %"PRIu64"", ns->rx_undersize);
5084 PMD_DRV_LOG(DEBUG, "rx_fragments: %"PRIu64"", ns->rx_fragments);
5085 PMD_DRV_LOG(DEBUG, "rx_oversize: %"PRIu64"", ns->rx_oversize);
5086 PMD_DRV_LOG(DEBUG, "rx_jabber: %"PRIu64"", ns->rx_jabber);
5087 PMD_DRV_LOG(DEBUG, "tx_size_64: %"PRIu64"", ns->tx_size_64);
5088 PMD_DRV_LOG(DEBUG, "tx_size_127: %"PRIu64"", ns->tx_size_127);
5089 PMD_DRV_LOG(DEBUG, "tx_size_255: %"PRIu64"", ns->tx_size_255);
5090 PMD_DRV_LOG(DEBUG, "tx_size_511: %"PRIu64"", ns->tx_size_511);
5091 PMD_DRV_LOG(DEBUG, "tx_size_1023: %"PRIu64"", ns->tx_size_1023);
5092 PMD_DRV_LOG(DEBUG, "tx_size_1522: %"PRIu64"", ns->tx_size_1522);
5093 PMD_DRV_LOG(DEBUG, "tx_size_big: %"PRIu64"", ns->tx_size_big);
5094 PMD_DRV_LOG(DEBUG, "rx_len_errors: %"PRIu64"", ns->rx_len_errors);
5095 PMD_DRV_LOG(DEBUG, "************* PF stats end ****************");
5099 /* Reset the statistics */
5101 ice_stats_reset(struct rte_eth_dev *dev)
5103 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5104 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5106 /* Mark PF and VSI stats to update the offset, aka "reset" */
5107 pf->offset_loaded = false;
5109 pf->main_vsi->offset_loaded = false;
5111 /* read the stats, reading current register values into offset */
5112 ice_read_stats_registers(pf, hw);
5118 ice_xstats_calc_num(void)
5122 num = ICE_NB_ETH_XSTATS + ICE_NB_HW_PORT_XSTATS;
5128 ice_xstats_get(struct rte_eth_dev *dev, struct rte_eth_xstat *xstats,
5131 struct ice_pf *pf = ICE_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5132 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5135 struct ice_hw_port_stats *hw_stats = &pf->stats;
5137 count = ice_xstats_calc_num();
5141 ice_read_stats_registers(pf, hw);
5148 /* Get stats from ice_eth_stats struct */
5149 for (i = 0; i < ICE_NB_ETH_XSTATS; i++) {
5150 xstats[count].value =
5151 *(uint64_t *)((char *)&hw_stats->eth +
5152 ice_stats_strings[i].offset);
5153 xstats[count].id = count;
5157 /* Get individiual stats from ice_hw_port struct */
5158 for (i = 0; i < ICE_NB_HW_PORT_XSTATS; i++) {
5159 xstats[count].value =
5160 *(uint64_t *)((char *)hw_stats +
5161 ice_hw_port_strings[i].offset);
5162 xstats[count].id = count;
5169 static int ice_xstats_get_names(__rte_unused struct rte_eth_dev *dev,
5170 struct rte_eth_xstat_name *xstats_names,
5171 __rte_unused unsigned int limit)
5173 unsigned int count = 0;
5177 return ice_xstats_calc_num();
5179 /* Note: limit checked in rte_eth_xstats_names() */
5181 /* Get stats from ice_eth_stats struct */
5182 for (i = 0; i < ICE_NB_ETH_XSTATS; i++) {
5183 strlcpy(xstats_names[count].name, ice_stats_strings[i].name,
5184 sizeof(xstats_names[count].name));
5188 /* Get individiual stats from ice_hw_port struct */
5189 for (i = 0; i < ICE_NB_HW_PORT_XSTATS; i++) {
5190 strlcpy(xstats_names[count].name, ice_hw_port_strings[i].name,
5191 sizeof(xstats_names[count].name));
5199 ice_dev_filter_ctrl(struct rte_eth_dev *dev,
5200 enum rte_filter_type filter_type,
5201 enum rte_filter_op filter_op,
5209 switch (filter_type) {
5210 case RTE_ETH_FILTER_GENERIC:
5211 if (filter_op != RTE_ETH_FILTER_GET)
5213 *(const void **)arg = &ice_flow_ops;
5216 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
5225 /* Add UDP tunneling port */
5227 ice_dev_udp_tunnel_port_add(struct rte_eth_dev *dev,
5228 struct rte_eth_udp_tunnel *udp_tunnel)
5231 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5233 if (udp_tunnel == NULL)
5236 switch (udp_tunnel->prot_type) {
5237 case RTE_TUNNEL_TYPE_VXLAN:
5238 ret = ice_create_tunnel(hw, TNL_VXLAN, udp_tunnel->udp_port);
5241 PMD_DRV_LOG(ERR, "Invalid tunnel type");
5249 /* Delete UDP tunneling port */
5251 ice_dev_udp_tunnel_port_del(struct rte_eth_dev *dev,
5252 struct rte_eth_udp_tunnel *udp_tunnel)
5255 struct ice_hw *hw = ICE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5257 if (udp_tunnel == NULL)
5260 switch (udp_tunnel->prot_type) {
5261 case RTE_TUNNEL_TYPE_VXLAN:
5262 ret = ice_destroy_tunnel(hw, udp_tunnel->udp_port, 0);
5265 PMD_DRV_LOG(ERR, "Invalid tunnel type");
5274 ice_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
5275 struct rte_pci_device *pci_dev)
5277 return rte_eth_dev_pci_generic_probe(pci_dev,
5278 sizeof(struct ice_adapter),
5283 ice_pci_remove(struct rte_pci_device *pci_dev)
5285 return rte_eth_dev_pci_generic_remove(pci_dev, ice_dev_uninit);
5288 static struct rte_pci_driver rte_ice_pmd = {
5289 .id_table = pci_id_ice_map,
5290 .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
5291 .probe = ice_pci_probe,
5292 .remove = ice_pci_remove,
5296 * Driver initialization routine.
5297 * Invoked once at EAL init time.
5298 * Register itself as the [Poll Mode] Driver of PCI devices.
5300 RTE_PMD_REGISTER_PCI(net_ice, rte_ice_pmd);
5301 RTE_PMD_REGISTER_PCI_TABLE(net_ice, pci_id_ice_map);
5302 RTE_PMD_REGISTER_KMOD_DEP(net_ice, "* igb_uio | uio_pci_generic | vfio-pci");
5303 RTE_PMD_REGISTER_PARAM_STRING(net_ice,
5304 ICE_PROTO_XTR_ARG "=[queue:]<vlan|ipv4|ipv6|ipv6_flow|tcp|ip_offset>"
5305 ICE_SAFE_MODE_SUPPORT_ARG "=<0|1>"
5306 ICE_PIPELINE_MODE_SUPPORT_ARG "=<0|1>");
5308 RTE_LOG_REGISTER(ice_logtype_init, pmd.net.ice.init, NOTICE);
5309 RTE_LOG_REGISTER(ice_logtype_driver, pmd.net.ice.driver, NOTICE);
5310 #ifdef RTE_LIBRTE_ICE_DEBUG_RX
5311 RTE_LOG_REGISTER(ice_logtype_rx, pmd.net.ice.rx, DEBUG);
5313 #ifdef RTE_LIBRTE_ICE_DEBUG_TX
5314 RTE_LOG_REGISTER(ice_logtype_tx, pmd.net.ice.tx, DEBUG);
5316 #ifdef RTE_LIBRTE_ICE_DEBUG_TX_FREE
5317 RTE_LOG_REGISTER(ice_logtype_tx_free, pmd.net.ice.tx_free, DEBUG);