xref: /linux/drivers/net/ethernet/intel/ice/ice_main.c (revision 0e50474fa514822e9d990874e554bf8043a201d7)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018-2023, Intel Corporation. */
3 
4 /* Intel(R) Ethernet Connection E800 Series Linux Driver */
5 
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7 
8 #include <generated/utsrelease.h>
9 #include <linux/crash_dump.h>
10 #include "ice.h"
11 #include "ice_base.h"
12 #include "ice_lib.h"
13 #include "ice_fltr.h"
14 #include "ice_dcb_lib.h"
15 #include "ice_dcb_nl.h"
16 #include "devlink/devlink.h"
17 #include "devlink/port.h"
18 #include "ice_sf_eth.h"
19 #include "ice_hwmon.h"
20 /* Including ice_trace.h with CREATE_TRACE_POINTS defined will generate the
21  * ice tracepoint functions. This must be done exactly once across the
22  * ice driver.
23  */
24 #define CREATE_TRACE_POINTS
25 #include "ice_trace.h"
26 #include "ice_eswitch.h"
27 #include "ice_tc_lib.h"
28 #include "ice_vsi_vlan_ops.h"
29 #include <net/xdp_sock_drv.h>
30 
31 #define DRV_SUMMARY	"Intel(R) Ethernet Connection E800 Series Linux Driver"
32 static const char ice_driver_string[] = DRV_SUMMARY;
33 static const char ice_copyright[] = "Copyright (c) 2018, Intel Corporation.";
34 
35 /* DDP Package file located in firmware search paths (e.g. /lib/firmware/) */
36 #define ICE_DDP_PKG_PATH	"intel/ice/ddp/"
37 #define ICE_DDP_PKG_FILE	ICE_DDP_PKG_PATH "ice.pkg"
38 
39 MODULE_DESCRIPTION(DRV_SUMMARY);
40 MODULE_IMPORT_NS("LIBETH");
41 MODULE_IMPORT_NS("LIBETH_XDP");
42 MODULE_IMPORT_NS("LIBIE");
43 MODULE_IMPORT_NS("LIBIE_ADMINQ");
44 MODULE_IMPORT_NS("LIBIE_FWLOG");
45 MODULE_LICENSE("GPL v2");
46 MODULE_FIRMWARE(ICE_DDP_PKG_FILE);
47 
48 static int debug = -1;
49 module_param(debug, int, 0644);
50 #ifndef CONFIG_DYNAMIC_DEBUG
51 MODULE_PARM_DESC(debug, "netif level (0=none,...,16=all), hw debug_mask (0x8XXXXXXX)");
52 #else
53 MODULE_PARM_DESC(debug, "netif level (0=none,...,16=all)");
54 #endif /* !CONFIG_DYNAMIC_DEBUG */
55 
56 DEFINE_STATIC_KEY_FALSE(ice_xdp_locking_key);
57 EXPORT_SYMBOL(ice_xdp_locking_key);
58 
59 /**
60  * ice_hw_to_dev - Get device pointer from the hardware structure
61  * @hw: pointer to the device HW structure
62  *
63  * Used to access the device pointer from compilation units which can't easily
64  * include the definition of struct ice_pf without leading to circular header
65  * dependencies.
66  */
67 struct device *ice_hw_to_dev(struct ice_hw *hw)
68 {
69 	struct ice_pf *pf = container_of(hw, struct ice_pf, hw);
70 
71 	return &pf->pdev->dev;
72 }
73 
74 static struct workqueue_struct *ice_wq;
75 struct workqueue_struct *ice_lag_wq;
76 static const struct net_device_ops ice_netdev_safe_mode_ops;
77 static const struct net_device_ops ice_netdev_ops;
78 
79 static void ice_rebuild(struct ice_pf *pf, enum ice_reset_req reset_type);
80 
81 static void ice_vsi_release_all(struct ice_pf *pf);
82 
83 static int ice_rebuild_channels(struct ice_pf *pf);
84 static void ice_remove_q_channels(struct ice_vsi *vsi, bool rem_adv_fltr);
85 
86 static int
87 ice_indr_setup_tc_cb(struct net_device *netdev, struct Qdisc *sch,
88 		     void *cb_priv, enum tc_setup_type type, void *type_data,
89 		     void *data,
90 		     void (*cleanup)(struct flow_block_cb *block_cb));
91 
92 bool netif_is_ice(const struct net_device *dev)
93 {
94 	return dev && (dev->netdev_ops == &ice_netdev_ops ||
95 		       dev->netdev_ops == &ice_netdev_safe_mode_ops);
96 }
97 
98 /**
99  * ice_get_tx_pending - returns number of Tx descriptors not processed
100  * @ring: the ring of descriptors
101  */
102 static u16 ice_get_tx_pending(struct ice_tx_ring *ring)
103 {
104 	u16 head, tail;
105 
106 	head = ring->next_to_clean;
107 	tail = ring->next_to_use;
108 
109 	if (head != tail)
110 		return (head < tail) ?
111 			tail - head : (tail + ring->count - head);
112 	return 0;
113 }
114 
115 /**
116  * ice_check_for_hang_subtask - check for and recover hung queues
117  * @pf: pointer to PF struct
118  */
119 static void ice_check_for_hang_subtask(struct ice_pf *pf)
120 {
121 	struct ice_vsi *vsi = NULL;
122 	struct ice_hw *hw;
123 	unsigned int i;
124 	int packets;
125 	u32 v;
126 
127 	ice_for_each_vsi(pf, v)
128 		if (pf->vsi[v] && pf->vsi[v]->type == ICE_VSI_PF) {
129 			vsi = pf->vsi[v];
130 			break;
131 		}
132 
133 	if (!vsi || test_bit(ICE_VSI_DOWN, vsi->state))
134 		return;
135 
136 	if (!(vsi->netdev && netif_carrier_ok(vsi->netdev)))
137 		return;
138 
139 	hw = &vsi->back->hw;
140 
141 	ice_for_each_txq(vsi, i) {
142 		struct ice_tx_ring *tx_ring = vsi->tx_rings[i];
143 		struct ice_ring_stats *ring_stats;
144 
145 		if (!tx_ring)
146 			continue;
147 		if (ice_ring_ch_enabled(tx_ring))
148 			continue;
149 
150 		ring_stats = tx_ring->ring_stats;
151 		if (!ring_stats)
152 			continue;
153 
154 		if (tx_ring->desc) {
155 			/* If packet counter has not changed the queue is
156 			 * likely stalled, so force an interrupt for this
157 			 * queue.
158 			 *
159 			 * prev_pkt would be negative if there was no
160 			 * pending work.
161 			 */
162 			packets = ring_stats->stats.pkts & INT_MAX;
163 			if (ring_stats->tx_stats.prev_pkt == packets) {
164 				/* Trigger sw interrupt to revive the queue */
165 				ice_trigger_sw_intr(hw, tx_ring->q_vector);
166 				continue;
167 			}
168 
169 			/* Memory barrier between read of packet count and call
170 			 * to ice_get_tx_pending()
171 			 */
172 			smp_rmb();
173 			ring_stats->tx_stats.prev_pkt =
174 			    ice_get_tx_pending(tx_ring) ? packets : -1;
175 		}
176 	}
177 }
178 
179 /**
180  * ice_init_mac_fltr - Set initial MAC filters
181  * @pf: board private structure
182  *
183  * Set initial set of MAC filters for PF VSI; configure filters for permanent
184  * address and broadcast address. If an error is encountered, netdevice will be
185  * unregistered.
186  */
187 static int ice_init_mac_fltr(struct ice_pf *pf)
188 {
189 	struct ice_vsi *vsi;
190 	u8 *perm_addr;
191 
192 	vsi = ice_get_main_vsi(pf);
193 	if (!vsi)
194 		return -EINVAL;
195 
196 	perm_addr = vsi->port_info->mac.perm_addr;
197 	return ice_fltr_add_mac_and_broadcast(vsi, perm_addr, ICE_FWD_TO_VSI);
198 }
199 
200 /**
201  * ice_add_mac_to_sync_list - creates list of MAC addresses to be synced
202  * @netdev: the net device on which the sync is happening
203  * @addr: MAC address to sync
204  *
205  * This is a callback function which is called by the in kernel device sync
206  * functions (like __dev_uc_sync, __dev_mc_sync, etc). This function only
207  * populates the tmp_sync_list, which is later used by ice_add_mac to add the
208  * MAC filters from the hardware.
209  */
210 static int ice_add_mac_to_sync_list(struct net_device *netdev, const u8 *addr)
211 {
212 	struct ice_netdev_priv *np = netdev_priv(netdev);
213 	struct ice_vsi *vsi = np->vsi;
214 
215 	if (ice_fltr_add_mac_to_list(vsi, &vsi->tmp_sync_list, addr,
216 				     ICE_FWD_TO_VSI))
217 		return -EINVAL;
218 
219 	return 0;
220 }
221 
222 /**
223  * ice_add_mac_to_unsync_list - creates list of MAC addresses to be unsynced
224  * @netdev: the net device on which the unsync is happening
225  * @addr: MAC address to unsync
226  *
227  * This is a callback function which is called by the in kernel device unsync
228  * functions (like __dev_uc_unsync, __dev_mc_unsync, etc). This function only
229  * populates the tmp_unsync_list, which is later used by ice_remove_mac to
230  * delete the MAC filters from the hardware.
231  */
232 static int ice_add_mac_to_unsync_list(struct net_device *netdev, const u8 *addr)
233 {
234 	struct ice_netdev_priv *np = netdev_priv(netdev);
235 	struct ice_vsi *vsi = np->vsi;
236 
237 	/* Under some circumstances, we might receive a request to delete our
238 	 * own device address from our uc list. Because we store the device
239 	 * address in the VSI's MAC filter list, we need to ignore such
240 	 * requests and not delete our device address from this list.
241 	 */
242 	if (ether_addr_equal(addr, netdev->dev_addr))
243 		return 0;
244 
245 	if (ice_fltr_add_mac_to_list(vsi, &vsi->tmp_unsync_list, addr,
246 				     ICE_FWD_TO_VSI))
247 		return -EINVAL;
248 
249 	return 0;
250 }
251 
252 /**
253  * ice_vsi_fltr_changed - check if filter state changed
254  * @vsi: VSI to be checked
255  *
256  * returns true if filter state has changed, false otherwise.
257  */
258 static bool ice_vsi_fltr_changed(struct ice_vsi *vsi)
259 {
260 	return test_bit(ICE_VSI_UMAC_FLTR_CHANGED, vsi->state) ||
261 	       test_bit(ICE_VSI_MMAC_FLTR_CHANGED, vsi->state);
262 }
263 
264 /**
265  * ice_set_promisc - Enable promiscuous mode for a given PF
266  * @vsi: the VSI being configured
267  * @promisc_m: mask of promiscuous config bits
268  *
269  */
270 static int ice_set_promisc(struct ice_vsi *vsi, u8 promisc_m)
271 {
272 	int status;
273 
274 	if (vsi->type != ICE_VSI_PF)
275 		return 0;
276 
277 	if (ice_vsi_has_non_zero_vlans(vsi)) {
278 		promisc_m |= (ICE_PROMISC_VLAN_RX | ICE_PROMISC_VLAN_TX);
279 		status = ice_fltr_set_vlan_vsi_promisc(&vsi->back->hw, vsi,
280 						       promisc_m);
281 	} else {
282 		status = ice_fltr_set_vsi_promisc(&vsi->back->hw, vsi->idx,
283 						  promisc_m, 0);
284 	}
285 	if (status && status != -EEXIST)
286 		return status;
287 
288 	netdev_dbg(vsi->netdev, "set promisc filter bits for VSI %i: 0x%x\n",
289 		   vsi->vsi_num, promisc_m);
290 	return 0;
291 }
292 
293 /**
294  * ice_clear_promisc - Disable promiscuous mode for a given PF
295  * @vsi: the VSI being configured
296  * @promisc_m: mask of promiscuous config bits
297  *
298  */
299 static int ice_clear_promisc(struct ice_vsi *vsi, u8 promisc_m)
300 {
301 	int status;
302 
303 	if (vsi->type != ICE_VSI_PF)
304 		return 0;
305 
306 	if (ice_vsi_has_non_zero_vlans(vsi)) {
307 		promisc_m |= (ICE_PROMISC_VLAN_RX | ICE_PROMISC_VLAN_TX);
308 		status = ice_fltr_clear_vlan_vsi_promisc(&vsi->back->hw, vsi,
309 							 promisc_m);
310 	} else {
311 		status = ice_fltr_clear_vsi_promisc(&vsi->back->hw, vsi->idx,
312 						    promisc_m, 0);
313 	}
314 
315 	netdev_dbg(vsi->netdev, "clear promisc filter bits for VSI %i: 0x%x\n",
316 		   vsi->vsi_num, promisc_m);
317 	return status;
318 }
319 
320 /**
321  * ice_vsi_sync_fltr - Update the VSI filter list to the HW
322  * @vsi: ptr to the VSI
323  *
324  * Push any outstanding VSI filter changes through the AdminQ.
325  */
326 static int ice_vsi_sync_fltr(struct ice_vsi *vsi)
327 {
328 	struct ice_vsi_vlan_ops *vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
329 	struct device *dev = ice_pf_to_dev(vsi->back);
330 	struct net_device *netdev = vsi->netdev;
331 	bool promisc_forced_on = false;
332 	struct ice_pf *pf = vsi->back;
333 	struct ice_hw *hw = &pf->hw;
334 	u32 changed_flags = 0;
335 	int err;
336 
337 	if (!vsi->netdev)
338 		return -EINVAL;
339 
340 	while (test_and_set_bit(ICE_CFG_BUSY, vsi->state))
341 		usleep_range(1000, 2000);
342 
343 	changed_flags = vsi->current_netdev_flags ^ vsi->netdev->flags;
344 	vsi->current_netdev_flags = vsi->netdev->flags;
345 
346 	INIT_LIST_HEAD(&vsi->tmp_sync_list);
347 	INIT_LIST_HEAD(&vsi->tmp_unsync_list);
348 
349 	if (ice_vsi_fltr_changed(vsi)) {
350 		clear_bit(ICE_VSI_UMAC_FLTR_CHANGED, vsi->state);
351 		clear_bit(ICE_VSI_MMAC_FLTR_CHANGED, vsi->state);
352 
353 		/* grab the netdev's addr_list_lock */
354 		netif_addr_lock_bh(netdev);
355 		__dev_uc_sync(netdev, ice_add_mac_to_sync_list,
356 			      ice_add_mac_to_unsync_list);
357 		__dev_mc_sync(netdev, ice_add_mac_to_sync_list,
358 			      ice_add_mac_to_unsync_list);
359 		/* our temp lists are populated. release lock */
360 		netif_addr_unlock_bh(netdev);
361 	}
362 
363 	/* Remove MAC addresses in the unsync list */
364 	err = ice_fltr_remove_mac_list(vsi, &vsi->tmp_unsync_list);
365 	ice_fltr_free_list(dev, &vsi->tmp_unsync_list);
366 	if (err) {
367 		netdev_err(netdev, "Failed to delete MAC filters\n");
368 		/* if we failed because of alloc failures, just bail */
369 		if (err == -ENOMEM)
370 			goto out;
371 	}
372 
373 	/* Add MAC addresses in the sync list */
374 	err = ice_fltr_add_mac_list(vsi, &vsi->tmp_sync_list);
375 	ice_fltr_free_list(dev, &vsi->tmp_sync_list);
376 	/* If filter is added successfully or already exists, do not go into
377 	 * 'if' condition and report it as error. Instead continue processing
378 	 * rest of the function.
379 	 */
380 	if (err && err != -EEXIST) {
381 		netdev_err(netdev, "Failed to add MAC filters\n");
382 		/* If there is no more space for new umac filters, VSI
383 		 * should go into promiscuous mode. There should be some
384 		 * space reserved for promiscuous filters.
385 		 */
386 		if (hw->adminq.sq_last_status == LIBIE_AQ_RC_ENOSPC &&
387 		    !test_and_set_bit(ICE_FLTR_OVERFLOW_PROMISC,
388 				      vsi->state)) {
389 			promisc_forced_on = true;
390 			netdev_warn(netdev, "Reached MAC filter limit, forcing promisc mode on VSI %d\n",
391 				    vsi->vsi_num);
392 		} else {
393 			goto out;
394 		}
395 	}
396 	err = 0;
397 	/* check for changes in promiscuous modes */
398 	if (changed_flags & IFF_ALLMULTI) {
399 		if (vsi->current_netdev_flags & IFF_ALLMULTI) {
400 			err = ice_set_promisc(vsi, ICE_MCAST_PROMISC_BITS);
401 			if (err) {
402 				vsi->current_netdev_flags &= ~IFF_ALLMULTI;
403 				goto out_promisc;
404 			}
405 		} else {
406 			/* !(vsi->current_netdev_flags & IFF_ALLMULTI) */
407 			err = ice_clear_promisc(vsi, ICE_MCAST_PROMISC_BITS);
408 			if (err) {
409 				vsi->current_netdev_flags |= IFF_ALLMULTI;
410 				goto out_promisc;
411 			}
412 		}
413 	}
414 
415 	if (((changed_flags & IFF_PROMISC) || promisc_forced_on) ||
416 	    test_bit(ICE_VSI_PROMISC_CHANGED, vsi->state)) {
417 		clear_bit(ICE_VSI_PROMISC_CHANGED, vsi->state);
418 		if (vsi->current_netdev_flags & IFF_PROMISC) {
419 			/* Apply Rx filter rule to get traffic from wire */
420 			if (!ice_is_dflt_vsi_in_use(vsi->port_info)) {
421 				err = ice_set_dflt_vsi(vsi);
422 				if (err && err != -EEXIST) {
423 					netdev_err(netdev, "Error %d setting default VSI %i Rx rule\n",
424 						   err, vsi->vsi_num);
425 					vsi->current_netdev_flags &=
426 						~IFF_PROMISC;
427 					goto out_promisc;
428 				}
429 				err = 0;
430 				vlan_ops->dis_rx_filtering(vsi);
431 
432 				/* promiscuous mode implies allmulticast so
433 				 * that VSIs that are in promiscuous mode are
434 				 * subscribed to multicast packets coming to
435 				 * the port
436 				 */
437 				err = ice_set_promisc(vsi,
438 						      ICE_MCAST_PROMISC_BITS);
439 				if (err)
440 					goto out_promisc;
441 			}
442 		} else {
443 			/* Clear Rx filter to remove traffic from wire */
444 			if (ice_is_vsi_dflt_vsi(vsi)) {
445 				err = ice_clear_dflt_vsi(vsi);
446 				if (err) {
447 					netdev_err(netdev, "Error %d clearing default VSI %i Rx rule\n",
448 						   err, vsi->vsi_num);
449 					vsi->current_netdev_flags |=
450 						IFF_PROMISC;
451 					goto out_promisc;
452 				}
453 				if (vsi->netdev->features &
454 				    NETIF_F_HW_VLAN_CTAG_FILTER)
455 					vlan_ops->ena_rx_filtering(vsi);
456 			}
457 
458 			/* disable allmulti here, but only if allmulti is not
459 			 * still enabled for the netdev
460 			 */
461 			if (!(vsi->current_netdev_flags & IFF_ALLMULTI)) {
462 				err = ice_clear_promisc(vsi,
463 							ICE_MCAST_PROMISC_BITS);
464 				if (err) {
465 					netdev_err(netdev, "Error %d clearing multicast promiscuous on VSI %i\n",
466 						   err, vsi->vsi_num);
467 				}
468 			}
469 		}
470 	}
471 	goto exit;
472 
473 out_promisc:
474 	set_bit(ICE_VSI_PROMISC_CHANGED, vsi->state);
475 	goto exit;
476 out:
477 	/* if something went wrong then set the changed flag so we try again */
478 	set_bit(ICE_VSI_UMAC_FLTR_CHANGED, vsi->state);
479 	set_bit(ICE_VSI_MMAC_FLTR_CHANGED, vsi->state);
480 exit:
481 	clear_bit(ICE_CFG_BUSY, vsi->state);
482 	return err;
483 }
484 
485 /**
486  * ice_sync_fltr_subtask - Sync the VSI filter list with HW
487  * @pf: board private structure
488  */
489 static void ice_sync_fltr_subtask(struct ice_pf *pf)
490 {
491 	int v;
492 
493 	if (!pf || !(test_bit(ICE_FLAG_FLTR_SYNC, pf->flags)))
494 		return;
495 
496 	clear_bit(ICE_FLAG_FLTR_SYNC, pf->flags);
497 
498 	ice_for_each_vsi(pf, v)
499 		if (pf->vsi[v] && ice_vsi_fltr_changed(pf->vsi[v]) &&
500 		    ice_vsi_sync_fltr(pf->vsi[v])) {
501 			/* come back and try again later */
502 			set_bit(ICE_FLAG_FLTR_SYNC, pf->flags);
503 			break;
504 		}
505 }
506 
507 /**
508  * ice_pf_dis_all_vsi - Pause all VSIs on a PF
509  * @pf: the PF
510  * @locked: is the rtnl_lock already held
511  */
512 static void ice_pf_dis_all_vsi(struct ice_pf *pf, bool locked)
513 {
514 	int node;
515 	int v;
516 
517 	ice_for_each_vsi(pf, v)
518 		if (pf->vsi[v])
519 			ice_dis_vsi(pf->vsi[v], locked);
520 
521 	for (node = 0; node < ICE_MAX_PF_AGG_NODES; node++)
522 		pf->pf_agg_node[node].num_vsis = 0;
523 
524 	for (node = 0; node < ICE_MAX_VF_AGG_NODES; node++)
525 		pf->vf_agg_node[node].num_vsis = 0;
526 }
527 
528 /**
529  * ice_prepare_for_reset - prep for reset
530  * @pf: board private structure
531  * @reset_type: reset type requested
532  *
533  * Inform or close all dependent features in prep for reset.
534  */
535 static void
536 ice_prepare_for_reset(struct ice_pf *pf, enum ice_reset_req reset_type)
537 {
538 	struct ice_hw *hw = &pf->hw;
539 	struct ice_vsi *vsi;
540 	struct ice_vf *vf;
541 	unsigned int bkt;
542 
543 	dev_dbg(ice_pf_to_dev(pf), "reset_type=%d\n", reset_type);
544 
545 	/* already prepared for reset */
546 	if (test_bit(ICE_PREPARED_FOR_RESET, pf->state))
547 		return;
548 
549 	synchronize_irq(pf->oicr_irq.virq);
550 
551 	ice_unplug_aux_dev(pf);
552 
553 	/* Notify VFs of impending reset */
554 	if (ice_check_sq_alive(hw, &hw->mailboxq))
555 		ice_vc_notify_reset(pf);
556 
557 	/* Disable VFs until reset is completed */
558 	mutex_lock(&pf->vfs.table_lock);
559 	ice_for_each_vf(pf, bkt, vf)
560 		ice_set_vf_state_dis(vf);
561 	mutex_unlock(&pf->vfs.table_lock);
562 
563 	if (ice_is_eswitch_mode_switchdev(pf)) {
564 		rtnl_lock();
565 		ice_eswitch_br_fdb_flush(pf->eswitch.br_offloads->bridge);
566 		rtnl_unlock();
567 	}
568 
569 	/* release ADQ specific HW and SW resources */
570 	vsi = ice_get_main_vsi(pf);
571 	if (!vsi)
572 		goto skip;
573 
574 	/* to be on safe side, reset orig_rss_size so that normal flow
575 	 * of deciding rss_size can take precedence
576 	 */
577 	vsi->orig_rss_size = 0;
578 
579 	if (test_bit(ICE_FLAG_TC_MQPRIO, pf->flags)) {
580 		if (reset_type == ICE_RESET_PFR) {
581 			vsi->old_ena_tc = vsi->all_enatc;
582 			vsi->old_numtc = vsi->all_numtc;
583 		} else {
584 			ice_remove_q_channels(vsi, true);
585 
586 			/* for other reset type, do not support channel rebuild
587 			 * hence reset needed info
588 			 */
589 			vsi->old_ena_tc = 0;
590 			vsi->all_enatc = 0;
591 			vsi->old_numtc = 0;
592 			vsi->all_numtc = 0;
593 			vsi->req_txq = 0;
594 			vsi->req_rxq = 0;
595 			clear_bit(ICE_FLAG_TC_MQPRIO, pf->flags);
596 			memset(&vsi->mqprio_qopt, 0, sizeof(vsi->mqprio_qopt));
597 		}
598 	}
599 
600 	if (vsi->netdev)
601 		netif_device_detach(vsi->netdev);
602 skip:
603 
604 	/* clear SW filtering DB */
605 	ice_clear_hw_tbls(hw);
606 	/* disable the VSIs and their queues that are not already DOWN */
607 	set_bit(ICE_VSI_REBUILD_PENDING, ice_get_main_vsi(pf)->state);
608 	ice_pf_dis_all_vsi(pf, false);
609 
610 	if (test_bit(ICE_FLAG_PTP_SUPPORTED, pf->flags))
611 		ice_ptp_prepare_for_reset(pf, reset_type);
612 
613 	if (ice_is_feature_supported(pf, ICE_F_GNSS))
614 		ice_gnss_exit(pf);
615 
616 	if (hw->port_info)
617 		ice_sched_clear_port(hw->port_info);
618 
619 	ice_shutdown_all_ctrlq(hw, false);
620 
621 	set_bit(ICE_PREPARED_FOR_RESET, pf->state);
622 }
623 
624 /**
625  * ice_do_reset - Initiate one of many types of resets
626  * @pf: board private structure
627  * @reset_type: reset type requested before this function was called.
628  */
629 static void ice_do_reset(struct ice_pf *pf, enum ice_reset_req reset_type)
630 {
631 	struct device *dev = ice_pf_to_dev(pf);
632 	struct ice_hw *hw = &pf->hw;
633 
634 	dev_dbg(dev, "reset_type 0x%x requested\n", reset_type);
635 
636 	if (pf->lag && pf->lag->bonded && reset_type == ICE_RESET_PFR) {
637 		dev_dbg(dev, "PFR on a bonded interface, promoting to CORER\n");
638 		reset_type = ICE_RESET_CORER;
639 	}
640 
641 	ice_prepare_for_reset(pf, reset_type);
642 
643 	/* trigger the reset */
644 	if (ice_reset(hw, reset_type)) {
645 		dev_err(dev, "reset %d failed\n", reset_type);
646 		set_bit(ICE_RESET_FAILED, pf->state);
647 		clear_bit(ICE_RESET_OICR_RECV, pf->state);
648 		clear_bit(ICE_PREPARED_FOR_RESET, pf->state);
649 		clear_bit(ICE_PFR_REQ, pf->state);
650 		clear_bit(ICE_CORER_REQ, pf->state);
651 		clear_bit(ICE_GLOBR_REQ, pf->state);
652 		wake_up(&pf->reset_wait_queue);
653 		return;
654 	}
655 
656 	/* PFR is a bit of a special case because it doesn't result in an OICR
657 	 * interrupt. So for PFR, rebuild after the reset and clear the reset-
658 	 * associated state bits.
659 	 */
660 	if (reset_type == ICE_RESET_PFR) {
661 		pf->pfr_count++;
662 		ice_rebuild(pf, reset_type);
663 		clear_bit(ICE_PREPARED_FOR_RESET, pf->state);
664 		clear_bit(ICE_PFR_REQ, pf->state);
665 		wake_up(&pf->reset_wait_queue);
666 		ice_reset_all_vfs(pf);
667 	}
668 }
669 
670 /**
671  * ice_reset_subtask - Set up for resetting the device and driver
672  * @pf: board private structure
673  */
674 static void ice_reset_subtask(struct ice_pf *pf)
675 {
676 	enum ice_reset_req reset_type = ICE_RESET_INVAL;
677 
678 	/* When a CORER/GLOBR/EMPR is about to happen, the hardware triggers an
679 	 * OICR interrupt. The OICR handler (ice_misc_intr) determines what type
680 	 * of reset is pending and sets bits in pf->state indicating the reset
681 	 * type and ICE_RESET_OICR_RECV. So, if the latter bit is set
682 	 * prepare for pending reset if not already (for PF software-initiated
683 	 * global resets the software should already be prepared for it as
684 	 * indicated by ICE_PREPARED_FOR_RESET; for global resets initiated
685 	 * by firmware or software on other PFs, that bit is not set so prepare
686 	 * for the reset now), poll for reset done, rebuild and return.
687 	 */
688 	if (test_bit(ICE_RESET_OICR_RECV, pf->state)) {
689 		/* Perform the largest reset requested */
690 		if (test_and_clear_bit(ICE_CORER_RECV, pf->state))
691 			reset_type = ICE_RESET_CORER;
692 		if (test_and_clear_bit(ICE_GLOBR_RECV, pf->state))
693 			reset_type = ICE_RESET_GLOBR;
694 		if (test_and_clear_bit(ICE_EMPR_RECV, pf->state))
695 			reset_type = ICE_RESET_EMPR;
696 		/* return if no valid reset type requested */
697 		if (reset_type == ICE_RESET_INVAL)
698 			return;
699 		ice_prepare_for_reset(pf, reset_type);
700 
701 		/* make sure we are ready to rebuild */
702 		if (ice_check_reset(&pf->hw)) {
703 			set_bit(ICE_RESET_FAILED, pf->state);
704 		} else {
705 			/* done with reset. start rebuild */
706 			pf->hw.reset_ongoing = false;
707 			ice_rebuild(pf, reset_type);
708 			/* clear bit to resume normal operations, but
709 			 * ICE_NEEDS_RESTART bit is set in case rebuild failed
710 			 */
711 			clear_bit(ICE_RESET_OICR_RECV, pf->state);
712 			clear_bit(ICE_PREPARED_FOR_RESET, pf->state);
713 			clear_bit(ICE_PFR_REQ, pf->state);
714 			clear_bit(ICE_CORER_REQ, pf->state);
715 			clear_bit(ICE_GLOBR_REQ, pf->state);
716 			wake_up(&pf->reset_wait_queue);
717 			ice_reset_all_vfs(pf);
718 		}
719 
720 		return;
721 	}
722 
723 	/* No pending resets to finish processing. Check for new resets */
724 	if (test_bit(ICE_PFR_REQ, pf->state)) {
725 		reset_type = ICE_RESET_PFR;
726 		if (pf->lag && pf->lag->bonded) {
727 			dev_dbg(ice_pf_to_dev(pf), "PFR on a bonded interface, promoting to CORER\n");
728 			reset_type = ICE_RESET_CORER;
729 		}
730 	}
731 	if (test_bit(ICE_CORER_REQ, pf->state))
732 		reset_type = ICE_RESET_CORER;
733 	if (test_bit(ICE_GLOBR_REQ, pf->state))
734 		reset_type = ICE_RESET_GLOBR;
735 	/* If no valid reset type requested just return */
736 	if (reset_type == ICE_RESET_INVAL)
737 		return;
738 
739 	/* reset if not already down or busy */
740 	if (!test_bit(ICE_DOWN, pf->state) &&
741 	    !test_bit(ICE_CFG_BUSY, pf->state)) {
742 		ice_do_reset(pf, reset_type);
743 	}
744 }
745 
746 /**
747  * ice_print_topo_conflict - print topology conflict message
748  * @vsi: the VSI whose topology status is being checked
749  */
750 static void ice_print_topo_conflict(struct ice_vsi *vsi)
751 {
752 	switch (vsi->port_info->phy.link_info.topo_media_conflict) {
753 	case ICE_AQ_LINK_TOPO_CONFLICT:
754 	case ICE_AQ_LINK_MEDIA_CONFLICT:
755 	case ICE_AQ_LINK_TOPO_UNREACH_PRT:
756 	case ICE_AQ_LINK_TOPO_UNDRUTIL_PRT:
757 	case ICE_AQ_LINK_TOPO_UNDRUTIL_MEDIA:
758 		netdev_info(vsi->netdev, "Potential misconfiguration of the Ethernet port detected. If it was not intended, please use the Intel (R) Ethernet Port Configuration Tool to address the issue.\n");
759 		break;
760 	case ICE_AQ_LINK_TOPO_UNSUPP_MEDIA:
761 		if (test_bit(ICE_FLAG_LINK_LENIENT_MODE_ENA, vsi->back->flags))
762 			netdev_warn(vsi->netdev, "An unsupported module type was detected. Refer to the Intel(R) Ethernet Adapters and Devices User Guide for a list of supported modules\n");
763 		else
764 			netdev_err(vsi->netdev, "Rx/Tx is disabled on this device because an unsupported module type was detected. Refer to the Intel(R) Ethernet Adapters and Devices User Guide for a list of supported modules.\n");
765 		break;
766 	default:
767 		break;
768 	}
769 }
770 
771 /**
772  * ice_print_link_msg - print link up or down message
773  * @vsi: the VSI whose link status is being queried
774  * @isup: boolean for if the link is now up or down
775  */
776 void ice_print_link_msg(struct ice_vsi *vsi, bool isup)
777 {
778 	struct ice_aqc_get_phy_caps_data *caps;
779 	const char *an_advertised;
780 	const char *fec_req;
781 	const char *speed;
782 	const char *fec;
783 	const char *fc;
784 	const char *an;
785 	int status;
786 
787 	if (!vsi)
788 		return;
789 
790 	if (vsi->current_isup == isup)
791 		return;
792 
793 	vsi->current_isup = isup;
794 
795 	if (!isup) {
796 		netdev_info(vsi->netdev, "NIC Link is Down\n");
797 		return;
798 	}
799 
800 	switch (vsi->port_info->phy.link_info.link_speed) {
801 	case ICE_AQ_LINK_SPEED_200GB:
802 		speed = "200 G";
803 		break;
804 	case ICE_AQ_LINK_SPEED_100GB:
805 		speed = "100 G";
806 		break;
807 	case ICE_AQ_LINK_SPEED_50GB:
808 		speed = "50 G";
809 		break;
810 	case ICE_AQ_LINK_SPEED_40GB:
811 		speed = "40 G";
812 		break;
813 	case ICE_AQ_LINK_SPEED_25GB:
814 		speed = "25 G";
815 		break;
816 	case ICE_AQ_LINK_SPEED_20GB:
817 		speed = "20 G";
818 		break;
819 	case ICE_AQ_LINK_SPEED_10GB:
820 		speed = "10 G";
821 		break;
822 	case ICE_AQ_LINK_SPEED_5GB:
823 		speed = "5 G";
824 		break;
825 	case ICE_AQ_LINK_SPEED_2500MB:
826 		speed = "2.5 G";
827 		break;
828 	case ICE_AQ_LINK_SPEED_1000MB:
829 		speed = "1 G";
830 		break;
831 	case ICE_AQ_LINK_SPEED_100MB:
832 		speed = "100 M";
833 		break;
834 	default:
835 		speed = "Unknown ";
836 		break;
837 	}
838 
839 	switch (vsi->port_info->fc.current_mode) {
840 	case ICE_FC_FULL:
841 		fc = "Rx/Tx";
842 		break;
843 	case ICE_FC_TX_PAUSE:
844 		fc = "Tx";
845 		break;
846 	case ICE_FC_RX_PAUSE:
847 		fc = "Rx";
848 		break;
849 	case ICE_FC_NONE:
850 		fc = "None";
851 		break;
852 	default:
853 		fc = "Unknown";
854 		break;
855 	}
856 
857 	/* Get FEC mode based on negotiated link info */
858 	switch (vsi->port_info->phy.link_info.fec_info) {
859 	case ICE_AQ_LINK_25G_RS_528_FEC_EN:
860 	case ICE_AQ_LINK_25G_RS_544_FEC_EN:
861 		fec = "RS-FEC";
862 		break;
863 	case ICE_AQ_LINK_25G_KR_FEC_EN:
864 		fec = "FC-FEC/BASE-R";
865 		break;
866 	default:
867 		fec = "NONE";
868 		break;
869 	}
870 
871 	/* check if autoneg completed, might be false due to not supported */
872 	if (vsi->port_info->phy.link_info.an_info & ICE_AQ_AN_COMPLETED)
873 		an = "True";
874 	else
875 		an = "False";
876 
877 	/* Get FEC mode requested based on PHY caps last SW configuration */
878 	caps = kzalloc(sizeof(*caps), GFP_KERNEL);
879 	if (!caps) {
880 		fec_req = "Unknown";
881 		an_advertised = "Unknown";
882 		goto done;
883 	}
884 
885 	status = ice_aq_get_phy_caps(vsi->port_info, false,
886 				     ICE_AQC_REPORT_ACTIVE_CFG, caps, NULL);
887 	if (status)
888 		netdev_info(vsi->netdev, "Get phy capability failed.\n");
889 
890 	an_advertised = ice_is_phy_caps_an_enabled(caps) ? "On" : "Off";
891 
892 	if (caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_528_REQ ||
893 	    caps->link_fec_options & ICE_AQC_PHY_FEC_25G_RS_544_REQ)
894 		fec_req = "RS-FEC";
895 	else if (caps->link_fec_options & ICE_AQC_PHY_FEC_10G_KR_40G_KR4_REQ ||
896 		 caps->link_fec_options & ICE_AQC_PHY_FEC_25G_KR_REQ)
897 		fec_req = "FC-FEC/BASE-R";
898 	else
899 		fec_req = "NONE";
900 
901 	kfree(caps);
902 
903 done:
904 	netdev_info(vsi->netdev, "NIC Link is up %sbps Full Duplex, Requested FEC: %s, Negotiated FEC: %s, Autoneg Advertised: %s, Autoneg Negotiated: %s, Flow Control: %s\n",
905 		    speed, fec_req, fec, an_advertised, an, fc);
906 	ice_print_topo_conflict(vsi);
907 }
908 
909 /**
910  * ice_vsi_link_event - update the VSI's netdev
911  * @vsi: the VSI on which the link event occurred
912  * @link_up: whether or not the VSI needs to be set up or down
913  */
914 static void ice_vsi_link_event(struct ice_vsi *vsi, bool link_up)
915 {
916 	if (!vsi)
917 		return;
918 
919 	if (test_bit(ICE_VSI_DOWN, vsi->state) || !vsi->netdev)
920 		return;
921 
922 	if (vsi->type == ICE_VSI_PF) {
923 		if (link_up == netif_carrier_ok(vsi->netdev))
924 			return;
925 
926 		if (link_up) {
927 			netif_carrier_on(vsi->netdev);
928 			netif_tx_wake_all_queues(vsi->netdev);
929 		} else {
930 			netif_carrier_off(vsi->netdev);
931 			netif_tx_stop_all_queues(vsi->netdev);
932 		}
933 	}
934 }
935 
936 /**
937  * ice_set_dflt_mib - send a default config MIB to the FW
938  * @pf: private PF struct
939  *
940  * This function sends a default configuration MIB to the FW.
941  *
942  * If this function errors out at any point, the driver is still able to
943  * function.  The main impact is that LFC may not operate as expected.
944  * Therefore an error state in this function should be treated with a DBG
945  * message and continue on with driver rebuild/reenable.
946  */
947 static void ice_set_dflt_mib(struct ice_pf *pf)
948 {
949 	struct device *dev = ice_pf_to_dev(pf);
950 	u8 mib_type, *buf, *lldpmib = NULL;
951 	u16 len, typelen, offset = 0;
952 	struct ice_lldp_org_tlv *tlv;
953 	struct ice_hw *hw = &pf->hw;
954 	u32 ouisubtype;
955 
956 	mib_type = SET_LOCAL_MIB_TYPE_LOCAL_MIB;
957 	lldpmib = kzalloc(ICE_LLDPDU_SIZE, GFP_KERNEL);
958 	if (!lldpmib) {
959 		dev_dbg(dev, "%s Failed to allocate MIB memory\n",
960 			__func__);
961 		return;
962 	}
963 
964 	/* Add ETS CFG TLV */
965 	tlv = (struct ice_lldp_org_tlv *)lldpmib;
966 	typelen = ((ICE_TLV_TYPE_ORG << ICE_LLDP_TLV_TYPE_S) |
967 		   ICE_IEEE_ETS_TLV_LEN);
968 	tlv->typelen = htons(typelen);
969 	ouisubtype = ((ICE_IEEE_8021QAZ_OUI << ICE_LLDP_TLV_OUI_S) |
970 		      ICE_IEEE_SUBTYPE_ETS_CFG);
971 	tlv->ouisubtype = htonl(ouisubtype);
972 
973 	buf = tlv->tlvinfo;
974 	buf[0] = 0;
975 
976 	/* ETS CFG all UPs map to TC 0. Next 4 (1 - 4) Octets = 0.
977 	 * Octets 5 - 12 are BW values, set octet 5 to 100% BW.
978 	 * Octets 13 - 20 are TSA values - leave as zeros
979 	 */
980 	buf[5] = 0x64;
981 	len = FIELD_GET(ICE_LLDP_TLV_LEN_M, typelen);
982 	offset += len + 2;
983 	tlv = (struct ice_lldp_org_tlv *)
984 		((char *)tlv + sizeof(tlv->typelen) + len);
985 
986 	/* Add ETS REC TLV */
987 	buf = tlv->tlvinfo;
988 	tlv->typelen = htons(typelen);
989 
990 	ouisubtype = ((ICE_IEEE_8021QAZ_OUI << ICE_LLDP_TLV_OUI_S) |
991 		      ICE_IEEE_SUBTYPE_ETS_REC);
992 	tlv->ouisubtype = htonl(ouisubtype);
993 
994 	/* First octet of buf is reserved
995 	 * Octets 1 - 4 map UP to TC - all UPs map to zero
996 	 * Octets 5 - 12 are BW values - set TC 0 to 100%.
997 	 * Octets 13 - 20 are TSA value - leave as zeros
998 	 */
999 	buf[5] = 0x64;
1000 	offset += len + 2;
1001 	tlv = (struct ice_lldp_org_tlv *)
1002 		((char *)tlv + sizeof(tlv->typelen) + len);
1003 
1004 	/* Add PFC CFG TLV */
1005 	typelen = ((ICE_TLV_TYPE_ORG << ICE_LLDP_TLV_TYPE_S) |
1006 		   ICE_IEEE_PFC_TLV_LEN);
1007 	tlv->typelen = htons(typelen);
1008 
1009 	ouisubtype = ((ICE_IEEE_8021QAZ_OUI << ICE_LLDP_TLV_OUI_S) |
1010 		      ICE_IEEE_SUBTYPE_PFC_CFG);
1011 	tlv->ouisubtype = htonl(ouisubtype);
1012 
1013 	/* Octet 1 left as all zeros - PFC disabled */
1014 	buf[0] = 0x08;
1015 	len = FIELD_GET(ICE_LLDP_TLV_LEN_M, typelen);
1016 	offset += len + 2;
1017 
1018 	if (ice_aq_set_lldp_mib(hw, mib_type, (void *)lldpmib, offset, NULL))
1019 		dev_dbg(dev, "%s Failed to set default LLDP MIB\n", __func__);
1020 
1021 	kfree(lldpmib);
1022 }
1023 
1024 /**
1025  * ice_check_phy_fw_load - check if PHY FW load failed
1026  * @pf: pointer to PF struct
1027  * @link_cfg_err: bitmap from the link info structure
1028  *
1029  * check if external PHY FW load failed and print an error message if it did
1030  */
1031 static void ice_check_phy_fw_load(struct ice_pf *pf, u8 link_cfg_err)
1032 {
1033 	if (!(link_cfg_err & ICE_AQ_LINK_EXTERNAL_PHY_LOAD_FAILURE)) {
1034 		clear_bit(ICE_FLAG_PHY_FW_LOAD_FAILED, pf->flags);
1035 		return;
1036 	}
1037 
1038 	if (test_bit(ICE_FLAG_PHY_FW_LOAD_FAILED, pf->flags))
1039 		return;
1040 
1041 	if (link_cfg_err & ICE_AQ_LINK_EXTERNAL_PHY_LOAD_FAILURE) {
1042 		dev_err(ice_pf_to_dev(pf), "Device failed to load the FW for the external PHY. Please download and install the latest NVM for your device and try again\n");
1043 		set_bit(ICE_FLAG_PHY_FW_LOAD_FAILED, pf->flags);
1044 	}
1045 }
1046 
1047 /**
1048  * ice_check_module_power
1049  * @pf: pointer to PF struct
1050  * @link_cfg_err: bitmap from the link info structure
1051  *
1052  * check module power level returned by a previous call to aq_get_link_info
1053  * and print error messages if module power level is not supported
1054  */
1055 static void ice_check_module_power(struct ice_pf *pf, u8 link_cfg_err)
1056 {
1057 	/* if module power level is supported, clear the flag */
1058 	if (!(link_cfg_err & (ICE_AQ_LINK_INVAL_MAX_POWER_LIMIT |
1059 			      ICE_AQ_LINK_MODULE_POWER_UNSUPPORTED))) {
1060 		clear_bit(ICE_FLAG_MOD_POWER_UNSUPPORTED, pf->flags);
1061 		return;
1062 	}
1063 
1064 	/* if ICE_FLAG_MOD_POWER_UNSUPPORTED was previously set and the
1065 	 * above block didn't clear this bit, there's nothing to do
1066 	 */
1067 	if (test_bit(ICE_FLAG_MOD_POWER_UNSUPPORTED, pf->flags))
1068 		return;
1069 
1070 	if (link_cfg_err & ICE_AQ_LINK_INVAL_MAX_POWER_LIMIT) {
1071 		dev_err(ice_pf_to_dev(pf), "The installed module is incompatible with the device's NVM image. Cannot start link\n");
1072 		set_bit(ICE_FLAG_MOD_POWER_UNSUPPORTED, pf->flags);
1073 	} else if (link_cfg_err & ICE_AQ_LINK_MODULE_POWER_UNSUPPORTED) {
1074 		dev_err(ice_pf_to_dev(pf), "The module's power requirements exceed the device's power supply. Cannot start link\n");
1075 		set_bit(ICE_FLAG_MOD_POWER_UNSUPPORTED, pf->flags);
1076 	}
1077 }
1078 
1079 /**
1080  * ice_check_link_cfg_err - check if link configuration failed
1081  * @pf: pointer to the PF struct
1082  * @link_cfg_err: bitmap from the link info structure
1083  *
1084  * print if any link configuration failure happens due to the value in the
1085  * link_cfg_err parameter in the link info structure
1086  */
1087 static void ice_check_link_cfg_err(struct ice_pf *pf, u8 link_cfg_err)
1088 {
1089 	ice_check_module_power(pf, link_cfg_err);
1090 	ice_check_phy_fw_load(pf, link_cfg_err);
1091 }
1092 
1093 /**
1094  * ice_link_event - process the link event
1095  * @pf: PF that the link event is associated with
1096  * @pi: port_info for the port that the link event is associated with
1097  * @link_up: true if the physical link is up and false if it is down
1098  * @link_speed: current link speed received from the link event
1099  *
1100  * Returns 0 on success and negative on failure
1101  */
1102 static int
1103 ice_link_event(struct ice_pf *pf, struct ice_port_info *pi, bool link_up,
1104 	       u16 link_speed)
1105 {
1106 	struct device *dev = ice_pf_to_dev(pf);
1107 	struct ice_phy_info *phy_info;
1108 	struct ice_vsi *vsi;
1109 	u16 old_link_speed;
1110 	bool old_link;
1111 	int status;
1112 
1113 	phy_info = &pi->phy;
1114 	phy_info->link_info_old = phy_info->link_info;
1115 
1116 	old_link = !!(phy_info->link_info_old.link_info & ICE_AQ_LINK_UP);
1117 	old_link_speed = phy_info->link_info_old.link_speed;
1118 
1119 	/* update the link info structures and re-enable link events,
1120 	 * don't bail on failure due to other book keeping needed
1121 	 */
1122 	status = ice_update_link_info(pi);
1123 	if (status)
1124 		dev_dbg(dev, "Failed to update link status on port %d, err %d aq_err %s\n",
1125 			pi->lport, status,
1126 			libie_aq_str(pi->hw->adminq.sq_last_status));
1127 
1128 	ice_check_link_cfg_err(pf, pi->phy.link_info.link_cfg_err);
1129 
1130 	/* Check if the link state is up after updating link info, and treat
1131 	 * this event as an UP event since the link is actually UP now.
1132 	 */
1133 	if (phy_info->link_info.link_info & ICE_AQ_LINK_UP)
1134 		link_up = true;
1135 
1136 	vsi = ice_get_main_vsi(pf);
1137 	if (!vsi || !vsi->port_info)
1138 		return -EINVAL;
1139 
1140 	/* turn off PHY if media was removed */
1141 	if (!test_bit(ICE_FLAG_NO_MEDIA, pf->flags) &&
1142 	    !(pi->phy.link_info.link_info & ICE_AQ_MEDIA_AVAILABLE)) {
1143 		set_bit(ICE_FLAG_NO_MEDIA, pf->flags);
1144 		ice_set_link(vsi, false);
1145 	}
1146 
1147 	/* if the old link up/down and speed is the same as the new */
1148 	if (link_up == old_link && link_speed == old_link_speed)
1149 		return 0;
1150 
1151 	if (!link_up && old_link)
1152 		pf->link_down_events++;
1153 
1154 	ice_ptp_link_change(pf, link_up);
1155 
1156 	if (ice_is_dcb_active(pf)) {
1157 		if (test_bit(ICE_FLAG_DCB_ENA, pf->flags))
1158 			ice_dcb_rebuild(pf);
1159 	} else {
1160 		if (link_up)
1161 			ice_set_dflt_mib(pf);
1162 	}
1163 	ice_vsi_link_event(vsi, link_up);
1164 	ice_print_link_msg(vsi, link_up);
1165 
1166 	ice_vc_notify_link_state(pf);
1167 
1168 	return 0;
1169 }
1170 
1171 /**
1172  * ice_watchdog_subtask - periodic tasks not using event driven scheduling
1173  * @pf: board private structure
1174  */
1175 static void ice_watchdog_subtask(struct ice_pf *pf)
1176 {
1177 	int i;
1178 
1179 	/* if interface is down do nothing */
1180 	if (test_bit(ICE_DOWN, pf->state) ||
1181 	    test_bit(ICE_CFG_BUSY, pf->state))
1182 		return;
1183 
1184 	/* make sure we don't do these things too often */
1185 	if (time_before(jiffies,
1186 			pf->serv_tmr_prev + pf->serv_tmr_period))
1187 		return;
1188 
1189 	pf->serv_tmr_prev = jiffies;
1190 
1191 	/* Update the stats for active netdevs so the network stack
1192 	 * can look at updated numbers whenever it cares to
1193 	 */
1194 	ice_update_pf_stats(pf);
1195 	ice_for_each_vsi(pf, i)
1196 		if (pf->vsi[i] && pf->vsi[i]->netdev)
1197 			ice_update_vsi_stats(pf->vsi[i]);
1198 }
1199 
1200 /**
1201  * ice_init_link_events - enable/initialize link events
1202  * @pi: pointer to the port_info instance
1203  *
1204  * Returns -EIO on failure, 0 on success
1205  */
1206 static int ice_init_link_events(struct ice_port_info *pi)
1207 {
1208 	u16 mask;
1209 
1210 	mask = ~((u16)(ICE_AQ_LINK_EVENT_UPDOWN | ICE_AQ_LINK_EVENT_MEDIA_NA |
1211 		       ICE_AQ_LINK_EVENT_MODULE_QUAL_FAIL |
1212 		       ICE_AQ_LINK_EVENT_PHY_FW_LOAD_FAIL));
1213 
1214 	if (ice_aq_set_event_mask(pi->hw, pi->lport, mask, NULL)) {
1215 		dev_dbg(ice_hw_to_dev(pi->hw), "Failed to set link event mask for port %d\n",
1216 			pi->lport);
1217 		return -EIO;
1218 	}
1219 
1220 	if (ice_aq_get_link_info(pi, true, NULL, NULL)) {
1221 		dev_dbg(ice_hw_to_dev(pi->hw), "Failed to enable link events for port %d\n",
1222 			pi->lport);
1223 		return -EIO;
1224 	}
1225 
1226 	return 0;
1227 }
1228 
1229 /**
1230  * ice_handle_link_event - handle link event via ARQ
1231  * @pf: PF that the link event is associated with
1232  * @event: event structure containing link status info
1233  */
1234 static int
1235 ice_handle_link_event(struct ice_pf *pf, struct ice_rq_event_info *event)
1236 {
1237 	struct ice_aqc_get_link_status_data *link_data;
1238 	struct ice_port_info *port_info;
1239 	int status;
1240 
1241 	link_data = (struct ice_aqc_get_link_status_data *)event->msg_buf;
1242 	port_info = pf->hw.port_info;
1243 	if (!port_info)
1244 		return -EINVAL;
1245 
1246 	status = ice_link_event(pf, port_info,
1247 				!!(link_data->link_info & ICE_AQ_LINK_UP),
1248 				le16_to_cpu(link_data->link_speed));
1249 	if (status)
1250 		dev_dbg(ice_pf_to_dev(pf), "Could not process link event, error %d\n",
1251 			status);
1252 
1253 	return status;
1254 }
1255 
1256 /**
1257  * ice_aq_prep_for_event - Prepare to wait for an AdminQ event from firmware
1258  * @pf: pointer to the PF private structure
1259  * @task: intermediate helper storage and identifier for waiting
1260  * @opcode: the opcode to wait for
1261  *
1262  * Prepares to wait for a specific AdminQ completion event on the ARQ for
1263  * a given PF. Actual wait would be done by a call to ice_aq_wait_for_event().
1264  *
1265  * Calls are separated to allow caller registering for event before sending
1266  * the command, which mitigates a race between registering and FW responding.
1267  *
1268  * To obtain only the descriptor contents, pass an task->event with null
1269  * msg_buf. If the complete data buffer is desired, allocate the
1270  * task->event.msg_buf with enough space ahead of time.
1271  */
1272 void ice_aq_prep_for_event(struct ice_pf *pf, struct ice_aq_task *task,
1273 			   u16 opcode)
1274 {
1275 	INIT_HLIST_NODE(&task->entry);
1276 	task->opcode = opcode;
1277 	task->state = ICE_AQ_TASK_WAITING;
1278 
1279 	spin_lock_bh(&pf->aq_wait_lock);
1280 	hlist_add_head(&task->entry, &pf->aq_wait_list);
1281 	spin_unlock_bh(&pf->aq_wait_lock);
1282 }
1283 
1284 /**
1285  * ice_aq_wait_for_event - Wait for an AdminQ event from firmware
1286  * @pf: pointer to the PF private structure
1287  * @task: ptr prepared by ice_aq_prep_for_event()
1288  * @timeout: how long to wait, in jiffies
1289  *
1290  * Waits for a specific AdminQ completion event on the ARQ for a given PF. The
1291  * current thread will be put to sleep until the specified event occurs or
1292  * until the given timeout is reached.
1293  *
1294  * Returns: zero on success, or a negative error code on failure.
1295  */
1296 int ice_aq_wait_for_event(struct ice_pf *pf, struct ice_aq_task *task,
1297 			  unsigned long timeout)
1298 {
1299 	enum ice_aq_task_state *state = &task->state;
1300 	struct device *dev = ice_pf_to_dev(pf);
1301 	unsigned long start = jiffies;
1302 	long ret;
1303 	int err;
1304 
1305 	ret = wait_event_interruptible_timeout(pf->aq_wait_queue,
1306 					       *state != ICE_AQ_TASK_WAITING,
1307 					       timeout);
1308 	switch (*state) {
1309 	case ICE_AQ_TASK_NOT_PREPARED:
1310 		WARN(1, "call to %s without ice_aq_prep_for_event()", __func__);
1311 		err = -EINVAL;
1312 		break;
1313 	case ICE_AQ_TASK_WAITING:
1314 		err = ret < 0 ? ret : -ETIMEDOUT;
1315 		break;
1316 	case ICE_AQ_TASK_CANCELED:
1317 		err = ret < 0 ? ret : -ECANCELED;
1318 		break;
1319 	case ICE_AQ_TASK_COMPLETE:
1320 		err = ret < 0 ? ret : 0;
1321 		break;
1322 	default:
1323 		WARN(1, "Unexpected AdminQ wait task state %u", *state);
1324 		err = -EINVAL;
1325 		break;
1326 	}
1327 
1328 	dev_dbg(dev, "Waited %u msecs (max %u msecs) for firmware response to op 0x%04x\n",
1329 		jiffies_to_msecs(jiffies - start),
1330 		jiffies_to_msecs(timeout),
1331 		task->opcode);
1332 
1333 	spin_lock_bh(&pf->aq_wait_lock);
1334 	hlist_del(&task->entry);
1335 	spin_unlock_bh(&pf->aq_wait_lock);
1336 
1337 	return err;
1338 }
1339 
1340 /**
1341  * ice_aq_check_events - Check if any thread is waiting for an AdminQ event
1342  * @pf: pointer to the PF private structure
1343  * @opcode: the opcode of the event
1344  * @event: the event to check
1345  *
1346  * Loops over the current list of pending threads waiting for an AdminQ event.
1347  * For each matching task, copy the contents of the event into the task
1348  * structure and wake up the thread.
1349  *
1350  * If multiple threads wait for the same opcode, they will all be woken up.
1351  *
1352  * Note that event->msg_buf will only be duplicated if the event has a buffer
1353  * with enough space already allocated. Otherwise, only the descriptor and
1354  * message length will be copied.
1355  *
1356  * Returns: true if an event was found, false otherwise
1357  */
1358 static void ice_aq_check_events(struct ice_pf *pf, u16 opcode,
1359 				struct ice_rq_event_info *event)
1360 {
1361 	struct ice_rq_event_info *task_ev;
1362 	struct ice_aq_task *task;
1363 	bool found = false;
1364 
1365 	spin_lock_bh(&pf->aq_wait_lock);
1366 	hlist_for_each_entry(task, &pf->aq_wait_list, entry) {
1367 		if (task->state != ICE_AQ_TASK_WAITING)
1368 			continue;
1369 		if (task->opcode != opcode)
1370 			continue;
1371 
1372 		task_ev = &task->event;
1373 		memcpy(&task_ev->desc, &event->desc, sizeof(event->desc));
1374 		task_ev->msg_len = event->msg_len;
1375 
1376 		/* Only copy the data buffer if a destination was set */
1377 		if (task_ev->msg_buf && task_ev->buf_len >= event->buf_len) {
1378 			memcpy(task_ev->msg_buf, event->msg_buf,
1379 			       event->buf_len);
1380 			task_ev->buf_len = event->buf_len;
1381 		}
1382 
1383 		task->state = ICE_AQ_TASK_COMPLETE;
1384 		found = true;
1385 	}
1386 	spin_unlock_bh(&pf->aq_wait_lock);
1387 
1388 	if (found)
1389 		wake_up(&pf->aq_wait_queue);
1390 }
1391 
1392 /**
1393  * ice_aq_cancel_waiting_tasks - Immediately cancel all waiting tasks
1394  * @pf: the PF private structure
1395  *
1396  * Set all waiting tasks to ICE_AQ_TASK_CANCELED, and wake up their threads.
1397  * This will then cause ice_aq_wait_for_event to exit with -ECANCELED.
1398  */
1399 static void ice_aq_cancel_waiting_tasks(struct ice_pf *pf)
1400 {
1401 	struct ice_aq_task *task;
1402 
1403 	spin_lock_bh(&pf->aq_wait_lock);
1404 	hlist_for_each_entry(task, &pf->aq_wait_list, entry)
1405 		task->state = ICE_AQ_TASK_CANCELED;
1406 	spin_unlock_bh(&pf->aq_wait_lock);
1407 
1408 	wake_up(&pf->aq_wait_queue);
1409 }
1410 
1411 #define ICE_MBX_OVERFLOW_WATERMARK 64
1412 
1413 /**
1414  * __ice_clean_ctrlq - helper function to clean controlq rings
1415  * @pf: ptr to struct ice_pf
1416  * @q_type: specific Control queue type
1417  */
1418 static int __ice_clean_ctrlq(struct ice_pf *pf, enum ice_ctl_q q_type)
1419 {
1420 	struct device *dev = ice_pf_to_dev(pf);
1421 	struct ice_rq_event_info event;
1422 	struct ice_hw *hw = &pf->hw;
1423 	struct ice_ctl_q_info *cq;
1424 	u16 pending, i = 0;
1425 	const char *qtype;
1426 	u32 oldval, val;
1427 
1428 	/* Do not clean control queue if/when PF reset fails */
1429 	if (test_bit(ICE_RESET_FAILED, pf->state))
1430 		return 0;
1431 
1432 	switch (q_type) {
1433 	case ICE_CTL_Q_ADMIN:
1434 		cq = &hw->adminq;
1435 		qtype = "Admin";
1436 		break;
1437 	case ICE_CTL_Q_SB:
1438 		cq = &hw->sbq;
1439 		qtype = "Sideband";
1440 		break;
1441 	case ICE_CTL_Q_MAILBOX:
1442 		cq = &hw->mailboxq;
1443 		qtype = "Mailbox";
1444 		/* we are going to try to detect a malicious VF, so set the
1445 		 * state to begin detection
1446 		 */
1447 		hw->mbx_snapshot.mbx_buf.state = ICE_MAL_VF_DETECT_STATE_NEW_SNAPSHOT;
1448 		break;
1449 	default:
1450 		dev_warn(dev, "Unknown control queue type 0x%x\n", q_type);
1451 		return 0;
1452 	}
1453 
1454 	/* check for error indications - PF_xx_AxQLEN register layout for
1455 	 * FW/MBX/SB are identical so just use defines for PF_FW_AxQLEN.
1456 	 */
1457 	val = rd32(hw, cq->rq.len);
1458 	if (val & (PF_FW_ARQLEN_ARQVFE_M | PF_FW_ARQLEN_ARQOVFL_M |
1459 		   PF_FW_ARQLEN_ARQCRIT_M)) {
1460 		oldval = val;
1461 		if (val & PF_FW_ARQLEN_ARQVFE_M)
1462 			dev_dbg(dev, "%s Receive Queue VF Error detected\n",
1463 				qtype);
1464 		if (val & PF_FW_ARQLEN_ARQOVFL_M) {
1465 			dev_dbg(dev, "%s Receive Queue Overflow Error detected\n",
1466 				qtype);
1467 		}
1468 		if (val & PF_FW_ARQLEN_ARQCRIT_M)
1469 			dev_dbg(dev, "%s Receive Queue Critical Error detected\n",
1470 				qtype);
1471 		val &= ~(PF_FW_ARQLEN_ARQVFE_M | PF_FW_ARQLEN_ARQOVFL_M |
1472 			 PF_FW_ARQLEN_ARQCRIT_M);
1473 		if (oldval != val)
1474 			wr32(hw, cq->rq.len, val);
1475 	}
1476 
1477 	val = rd32(hw, cq->sq.len);
1478 	if (val & (PF_FW_ATQLEN_ATQVFE_M | PF_FW_ATQLEN_ATQOVFL_M |
1479 		   PF_FW_ATQLEN_ATQCRIT_M)) {
1480 		oldval = val;
1481 		if (val & PF_FW_ATQLEN_ATQVFE_M)
1482 			dev_dbg(dev, "%s Send Queue VF Error detected\n",
1483 				qtype);
1484 		if (val & PF_FW_ATQLEN_ATQOVFL_M) {
1485 			dev_dbg(dev, "%s Send Queue Overflow Error detected\n",
1486 				qtype);
1487 		}
1488 		if (val & PF_FW_ATQLEN_ATQCRIT_M)
1489 			dev_dbg(dev, "%s Send Queue Critical Error detected\n",
1490 				qtype);
1491 		val &= ~(PF_FW_ATQLEN_ATQVFE_M | PF_FW_ATQLEN_ATQOVFL_M |
1492 			 PF_FW_ATQLEN_ATQCRIT_M);
1493 		if (oldval != val)
1494 			wr32(hw, cq->sq.len, val);
1495 	}
1496 
1497 	event.buf_len = cq->rq_buf_size;
1498 	event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
1499 	if (!event.msg_buf)
1500 		return 0;
1501 
1502 	do {
1503 		struct ice_mbx_data data = {};
1504 		u16 opcode;
1505 		int ret;
1506 
1507 		ret = ice_clean_rq_elem(hw, cq, &event, &pending);
1508 		if (ret == -EALREADY)
1509 			break;
1510 		if (ret) {
1511 			dev_err(dev, "%s Receive Queue event error %d\n", qtype,
1512 				ret);
1513 			break;
1514 		}
1515 
1516 		opcode = le16_to_cpu(event.desc.opcode);
1517 
1518 		/* Notify any thread that might be waiting for this event */
1519 		ice_aq_check_events(pf, opcode, &event);
1520 
1521 		switch (opcode) {
1522 		case ice_aqc_opc_get_link_status:
1523 			if (ice_handle_link_event(pf, &event))
1524 				dev_err(dev, "Could not handle link event\n");
1525 			break;
1526 		case ice_aqc_opc_event_lan_overflow:
1527 			ice_vf_lan_overflow_event(pf, &event);
1528 			break;
1529 		case ice_mbx_opc_send_msg_to_pf:
1530 			if (ice_is_feature_supported(pf, ICE_F_MBX_LIMIT)) {
1531 				ice_vc_process_vf_msg(pf, &event, NULL);
1532 				ice_mbx_vf_dec_trig_e830(hw, &event);
1533 			} else {
1534 				u16 val = hw->mailboxq.num_rq_entries;
1535 
1536 				data.max_num_msgs_mbx = val;
1537 				val = ICE_MBX_OVERFLOW_WATERMARK;
1538 				data.async_watermark_val = val;
1539 				data.num_msg_proc = i;
1540 				data.num_pending_arq = pending;
1541 
1542 				ice_vc_process_vf_msg(pf, &event, &data);
1543 			}
1544 			break;
1545 		case ice_aqc_opc_fw_logs_event:
1546 			libie_get_fwlog_data(&hw->fwlog, event.msg_buf,
1547 					     le16_to_cpu(event.desc.datalen));
1548 			break;
1549 		case ice_aqc_opc_lldp_set_mib_change:
1550 			ice_dcb_process_lldp_set_mib_change(pf, &event);
1551 			break;
1552 		case ice_aqc_opc_get_health_status:
1553 			ice_process_health_status_event(pf, &event);
1554 			break;
1555 		default:
1556 			dev_dbg(dev, "%s Receive Queue unknown event 0x%04x ignored\n",
1557 				qtype, opcode);
1558 			break;
1559 		}
1560 	} while (pending && (i++ < ICE_DFLT_IRQ_WORK));
1561 
1562 	kfree(event.msg_buf);
1563 
1564 	return pending && (i == ICE_DFLT_IRQ_WORK);
1565 }
1566 
1567 /**
1568  * ice_ctrlq_pending - check if there is a difference between ntc and ntu
1569  * @hw: pointer to hardware info
1570  * @cq: control queue information
1571  *
1572  * returns true if there are pending messages in a queue, false if there aren't
1573  */
1574 static bool ice_ctrlq_pending(struct ice_hw *hw, struct ice_ctl_q_info *cq)
1575 {
1576 	u16 ntu;
1577 
1578 	ntu = (u16)(rd32(hw, cq->rq.head) & cq->rq.head_mask);
1579 	return cq->rq.next_to_clean != ntu;
1580 }
1581 
1582 /**
1583  * ice_clean_adminq_subtask - clean the AdminQ rings
1584  * @pf: board private structure
1585  */
1586 static void ice_clean_adminq_subtask(struct ice_pf *pf)
1587 {
1588 	struct ice_hw *hw = &pf->hw;
1589 
1590 	if (!test_bit(ICE_ADMINQ_EVENT_PENDING, pf->state))
1591 		return;
1592 
1593 	if (__ice_clean_ctrlq(pf, ICE_CTL_Q_ADMIN))
1594 		return;
1595 
1596 	clear_bit(ICE_ADMINQ_EVENT_PENDING, pf->state);
1597 
1598 	/* There might be a situation where new messages arrive to a control
1599 	 * queue between processing the last message and clearing the
1600 	 * EVENT_PENDING bit. So before exiting, check queue head again (using
1601 	 * ice_ctrlq_pending) and process new messages if any.
1602 	 */
1603 	if (ice_ctrlq_pending(hw, &hw->adminq))
1604 		__ice_clean_ctrlq(pf, ICE_CTL_Q_ADMIN);
1605 
1606 	ice_flush(hw);
1607 }
1608 
1609 /**
1610  * ice_clean_mailboxq_subtask - clean the MailboxQ rings
1611  * @pf: board private structure
1612  */
1613 static void ice_clean_mailboxq_subtask(struct ice_pf *pf)
1614 {
1615 	struct ice_hw *hw = &pf->hw;
1616 
1617 	if (!test_bit(ICE_MAILBOXQ_EVENT_PENDING, pf->state))
1618 		return;
1619 
1620 	if (__ice_clean_ctrlq(pf, ICE_CTL_Q_MAILBOX))
1621 		return;
1622 
1623 	clear_bit(ICE_MAILBOXQ_EVENT_PENDING, pf->state);
1624 
1625 	if (ice_ctrlq_pending(hw, &hw->mailboxq))
1626 		__ice_clean_ctrlq(pf, ICE_CTL_Q_MAILBOX);
1627 
1628 	ice_flush(hw);
1629 }
1630 
1631 /**
1632  * ice_clean_sbq_subtask - clean the Sideband Queue rings
1633  * @pf: board private structure
1634  */
1635 static void ice_clean_sbq_subtask(struct ice_pf *pf)
1636 {
1637 	struct ice_hw *hw = &pf->hw;
1638 
1639 	/* if mac_type is not generic, sideband is not supported
1640 	 * and there's nothing to do here
1641 	 */
1642 	if (!ice_is_generic_mac(hw)) {
1643 		clear_bit(ICE_SIDEBANDQ_EVENT_PENDING, pf->state);
1644 		return;
1645 	}
1646 
1647 	if (!test_bit(ICE_SIDEBANDQ_EVENT_PENDING, pf->state))
1648 		return;
1649 
1650 	if (__ice_clean_ctrlq(pf, ICE_CTL_Q_SB))
1651 		return;
1652 
1653 	clear_bit(ICE_SIDEBANDQ_EVENT_PENDING, pf->state);
1654 
1655 	if (ice_ctrlq_pending(hw, &hw->sbq))
1656 		__ice_clean_ctrlq(pf, ICE_CTL_Q_SB);
1657 
1658 	ice_flush(hw);
1659 }
1660 
1661 /**
1662  * ice_service_task_schedule - schedule the service task to wake up
1663  * @pf: board private structure
1664  *
1665  * If not already scheduled, this puts the task into the work queue.
1666  */
1667 void ice_service_task_schedule(struct ice_pf *pf)
1668 {
1669 	if (!test_bit(ICE_SERVICE_DIS, pf->state) &&
1670 	    !test_and_set_bit(ICE_SERVICE_SCHED, pf->state) &&
1671 	    !test_bit(ICE_NEEDS_RESTART, pf->state))
1672 		queue_work(ice_wq, &pf->serv_task);
1673 }
1674 
1675 /**
1676  * ice_service_task_complete - finish up the service task
1677  * @pf: board private structure
1678  */
1679 static void ice_service_task_complete(struct ice_pf *pf)
1680 {
1681 	WARN_ON(!test_bit(ICE_SERVICE_SCHED, pf->state));
1682 
1683 	/* force memory (pf->state) to sync before next service task */
1684 	smp_mb__before_atomic();
1685 	clear_bit(ICE_SERVICE_SCHED, pf->state);
1686 }
1687 
1688 /**
1689  * ice_service_task_stop - stop service task and cancel works
1690  * @pf: board private structure
1691  *
1692  * Return 0 if the ICE_SERVICE_DIS bit was not already set,
1693  * 1 otherwise.
1694  */
1695 static int ice_service_task_stop(struct ice_pf *pf)
1696 {
1697 	int ret;
1698 
1699 	ret = test_and_set_bit(ICE_SERVICE_DIS, pf->state);
1700 
1701 	if (pf->serv_tmr.function)
1702 		timer_delete_sync(&pf->serv_tmr);
1703 	if (pf->serv_task.func)
1704 		cancel_work_sync(&pf->serv_task);
1705 
1706 	clear_bit(ICE_SERVICE_SCHED, pf->state);
1707 	return ret;
1708 }
1709 
1710 /**
1711  * ice_service_task_restart - restart service task and schedule works
1712  * @pf: board private structure
1713  *
1714  * This function is needed for suspend and resume works (e.g WoL scenario)
1715  */
1716 static void ice_service_task_restart(struct ice_pf *pf)
1717 {
1718 	clear_bit(ICE_SERVICE_DIS, pf->state);
1719 	ice_service_task_schedule(pf);
1720 }
1721 
1722 /**
1723  * ice_service_timer - timer callback to schedule service task
1724  * @t: pointer to timer_list
1725  */
1726 static void ice_service_timer(struct timer_list *t)
1727 {
1728 	struct ice_pf *pf = timer_container_of(pf, t, serv_tmr);
1729 
1730 	mod_timer(&pf->serv_tmr, round_jiffies(pf->serv_tmr_period + jiffies));
1731 	ice_service_task_schedule(pf);
1732 }
1733 
1734 /**
1735  * ice_mdd_maybe_reset_vf - reset VF after MDD event
1736  * @pf: pointer to the PF structure
1737  * @vf: pointer to the VF structure
1738  * @reset_vf_tx: whether Tx MDD has occurred
1739  * @reset_vf_rx: whether Rx MDD has occurred
1740  *
1741  * Since the queue can get stuck on VF MDD events, the PF can be configured to
1742  * automatically reset the VF by enabling the private ethtool flag
1743  * mdd-auto-reset-vf.
1744  */
1745 static void ice_mdd_maybe_reset_vf(struct ice_pf *pf, struct ice_vf *vf,
1746 				   bool reset_vf_tx, bool reset_vf_rx)
1747 {
1748 	struct device *dev = ice_pf_to_dev(pf);
1749 
1750 	if (!test_bit(ICE_FLAG_MDD_AUTO_RESET_VF, pf->flags))
1751 		return;
1752 
1753 	/* VF MDD event counters will be cleared by reset, so print the event
1754 	 * prior to reset.
1755 	 */
1756 	if (reset_vf_tx)
1757 		ice_print_vf_tx_mdd_event(vf);
1758 
1759 	if (reset_vf_rx)
1760 		ice_print_vf_rx_mdd_event(vf);
1761 
1762 	dev_info(dev, "PF-to-VF reset on PF %d VF %d due to MDD event\n",
1763 		 pf->hw.pf_id, vf->vf_id);
1764 	ice_reset_vf(vf, ICE_VF_RESET_NOTIFY | ICE_VF_RESET_LOCK);
1765 }
1766 
1767 /**
1768  * ice_handle_mdd_event - handle malicious driver detect event
1769  * @pf: pointer to the PF structure
1770  *
1771  * Called from service task. OICR interrupt handler indicates MDD event.
1772  * VF MDD logging is guarded by net_ratelimit. Additional PF and VF log
1773  * messages are wrapped by netif_msg_[rx|tx]_err. Since VF Rx MDD events
1774  * disable the queue, the PF can be configured to reset the VF using ethtool
1775  * private flag mdd-auto-reset-vf.
1776  */
1777 static void ice_handle_mdd_event(struct ice_pf *pf)
1778 {
1779 	struct device *dev = ice_pf_to_dev(pf);
1780 	struct ice_hw *hw = &pf->hw;
1781 	struct ice_vf *vf;
1782 	unsigned int bkt;
1783 	u32 reg;
1784 
1785 	if (!test_and_clear_bit(ICE_MDD_EVENT_PENDING, pf->state)) {
1786 		/* Since the VF MDD event logging is rate limited, check if
1787 		 * there are pending MDD events.
1788 		 */
1789 		ice_print_vfs_mdd_events(pf);
1790 		return;
1791 	}
1792 
1793 	/* find what triggered an MDD event */
1794 	reg = rd32(hw, GL_MDET_TX_PQM);
1795 	if (reg & GL_MDET_TX_PQM_VALID_M) {
1796 		u8 pf_num = FIELD_GET(GL_MDET_TX_PQM_PF_NUM_M, reg);
1797 		u16 vf_num = FIELD_GET(GL_MDET_TX_PQM_VF_NUM_M, reg);
1798 		u8 event = FIELD_GET(GL_MDET_TX_PQM_MAL_TYPE_M, reg);
1799 		u16 queue = FIELD_GET(GL_MDET_TX_PQM_QNUM_M, reg);
1800 
1801 		if (netif_msg_tx_err(pf))
1802 			dev_info(dev, "Malicious Driver Detection event %d on TX queue %d PF# %d VF# %d\n",
1803 				 event, queue, pf_num, vf_num);
1804 		ice_report_mdd_event(pf, ICE_MDD_SRC_TX_PQM, pf_num, vf_num,
1805 				     event, queue);
1806 		wr32(hw, GL_MDET_TX_PQM, 0xffffffff);
1807 	}
1808 
1809 	reg = rd32(hw, GL_MDET_TX_TCLAN_BY_MAC(hw));
1810 	if (reg & GL_MDET_TX_TCLAN_VALID_M) {
1811 		u8 pf_num = FIELD_GET(GL_MDET_TX_TCLAN_PF_NUM_M, reg);
1812 		u16 vf_num = FIELD_GET(GL_MDET_TX_TCLAN_VF_NUM_M, reg);
1813 		u8 event = FIELD_GET(GL_MDET_TX_TCLAN_MAL_TYPE_M, reg);
1814 		u16 queue = FIELD_GET(GL_MDET_TX_TCLAN_QNUM_M, reg);
1815 
1816 		if (netif_msg_tx_err(pf))
1817 			dev_info(dev, "Malicious Driver Detection event %d on TX queue %d PF# %d VF# %d\n",
1818 				 event, queue, pf_num, vf_num);
1819 		ice_report_mdd_event(pf, ICE_MDD_SRC_TX_TCLAN, pf_num, vf_num,
1820 				     event, queue);
1821 		wr32(hw, GL_MDET_TX_TCLAN_BY_MAC(hw), U32_MAX);
1822 	}
1823 
1824 	reg = rd32(hw, GL_MDET_RX);
1825 	if (reg & GL_MDET_RX_VALID_M) {
1826 		u8 pf_num = FIELD_GET(GL_MDET_RX_PF_NUM_M, reg);
1827 		u16 vf_num = FIELD_GET(GL_MDET_RX_VF_NUM_M, reg);
1828 		u8 event = FIELD_GET(GL_MDET_RX_MAL_TYPE_M, reg);
1829 		u16 queue = FIELD_GET(GL_MDET_RX_QNUM_M, reg);
1830 
1831 		if (netif_msg_rx_err(pf))
1832 			dev_info(dev, "Malicious Driver Detection event %d on RX queue %d PF# %d VF# %d\n",
1833 				 event, queue, pf_num, vf_num);
1834 		ice_report_mdd_event(pf, ICE_MDD_SRC_RX, pf_num, vf_num, event,
1835 				     queue);
1836 		wr32(hw, GL_MDET_RX, 0xffffffff);
1837 	}
1838 
1839 	/* check to see if this PF caused an MDD event */
1840 	reg = rd32(hw, PF_MDET_TX_PQM);
1841 	if (reg & PF_MDET_TX_PQM_VALID_M) {
1842 		wr32(hw, PF_MDET_TX_PQM, 0xFFFF);
1843 		if (netif_msg_tx_err(pf))
1844 			dev_info(dev, "Malicious Driver Detection event TX_PQM detected on PF\n");
1845 	}
1846 
1847 	reg = rd32(hw, PF_MDET_TX_TCLAN_BY_MAC(hw));
1848 	if (reg & PF_MDET_TX_TCLAN_VALID_M) {
1849 		wr32(hw, PF_MDET_TX_TCLAN_BY_MAC(hw), 0xffff);
1850 		if (netif_msg_tx_err(pf))
1851 			dev_info(dev, "Malicious Driver Detection event TX_TCLAN detected on PF\n");
1852 	}
1853 
1854 	reg = rd32(hw, PF_MDET_RX);
1855 	if (reg & PF_MDET_RX_VALID_M) {
1856 		wr32(hw, PF_MDET_RX, 0xFFFF);
1857 		if (netif_msg_rx_err(pf))
1858 			dev_info(dev, "Malicious Driver Detection event RX detected on PF\n");
1859 	}
1860 
1861 	/* Check to see if one of the VFs caused an MDD event, and then
1862 	 * increment counters and set print pending
1863 	 */
1864 	mutex_lock(&pf->vfs.table_lock);
1865 	ice_for_each_vf(pf, bkt, vf) {
1866 		bool reset_vf_tx = false, reset_vf_rx = false;
1867 
1868 		reg = rd32(hw, VP_MDET_TX_PQM(vf->vf_id));
1869 		if (reg & VP_MDET_TX_PQM_VALID_M) {
1870 			wr32(hw, VP_MDET_TX_PQM(vf->vf_id), 0xFFFF);
1871 			vf->mdd_tx_events.count++;
1872 			set_bit(ICE_MDD_VF_PRINT_PENDING, pf->state);
1873 			if (netif_msg_tx_err(pf))
1874 				dev_info(dev, "Malicious Driver Detection event TX_PQM detected on VF %d\n",
1875 					 vf->vf_id);
1876 
1877 			reset_vf_tx = true;
1878 		}
1879 
1880 		reg = rd32(hw, VP_MDET_TX_TCLAN(vf->vf_id));
1881 		if (reg & VP_MDET_TX_TCLAN_VALID_M) {
1882 			wr32(hw, VP_MDET_TX_TCLAN(vf->vf_id), 0xFFFF);
1883 			vf->mdd_tx_events.count++;
1884 			set_bit(ICE_MDD_VF_PRINT_PENDING, pf->state);
1885 			if (netif_msg_tx_err(pf))
1886 				dev_info(dev, "Malicious Driver Detection event TX_TCLAN detected on VF %d\n",
1887 					 vf->vf_id);
1888 
1889 			reset_vf_tx = true;
1890 		}
1891 
1892 		reg = rd32(hw, VP_MDET_TX_TDPU(vf->vf_id));
1893 		if (reg & VP_MDET_TX_TDPU_VALID_M) {
1894 			wr32(hw, VP_MDET_TX_TDPU(vf->vf_id), 0xFFFF);
1895 			vf->mdd_tx_events.count++;
1896 			set_bit(ICE_MDD_VF_PRINT_PENDING, pf->state);
1897 			if (netif_msg_tx_err(pf))
1898 				dev_info(dev, "Malicious Driver Detection event TX_TDPU detected on VF %d\n",
1899 					 vf->vf_id);
1900 
1901 			reset_vf_tx = true;
1902 		}
1903 
1904 		reg = rd32(hw, VP_MDET_RX(vf->vf_id));
1905 		if (reg & VP_MDET_RX_VALID_M) {
1906 			wr32(hw, VP_MDET_RX(vf->vf_id), 0xFFFF);
1907 			vf->mdd_rx_events.count++;
1908 			set_bit(ICE_MDD_VF_PRINT_PENDING, pf->state);
1909 			if (netif_msg_rx_err(pf))
1910 				dev_info(dev, "Malicious Driver Detection event RX detected on VF %d\n",
1911 					 vf->vf_id);
1912 
1913 			reset_vf_rx = true;
1914 		}
1915 
1916 		if (reset_vf_tx || reset_vf_rx)
1917 			ice_mdd_maybe_reset_vf(pf, vf, reset_vf_tx,
1918 					       reset_vf_rx);
1919 	}
1920 	mutex_unlock(&pf->vfs.table_lock);
1921 
1922 	ice_print_vfs_mdd_events(pf);
1923 }
1924 
1925 /**
1926  * ice_force_phys_link_state - Force the physical link state
1927  * @vsi: VSI to force the physical link state to up/down
1928  * @link_up: true/false indicates to set the physical link to up/down
1929  *
1930  * Force the physical link state by getting the current PHY capabilities from
1931  * hardware and setting the PHY config based on the determined capabilities. If
1932  * link changes a link event will be triggered because both the Enable Automatic
1933  * Link Update and LESM Enable bits are set when setting the PHY capabilities.
1934  *
1935  * Returns 0 on success, negative on failure
1936  */
1937 static int ice_force_phys_link_state(struct ice_vsi *vsi, bool link_up)
1938 {
1939 	struct ice_aqc_get_phy_caps_data *pcaps;
1940 	struct ice_aqc_set_phy_cfg_data *cfg;
1941 	struct ice_port_info *pi;
1942 	struct device *dev;
1943 	int retcode;
1944 
1945 	if (!vsi || !vsi->port_info || !vsi->back)
1946 		return -EINVAL;
1947 	if (vsi->type != ICE_VSI_PF)
1948 		return 0;
1949 
1950 	dev = ice_pf_to_dev(vsi->back);
1951 
1952 	pi = vsi->port_info;
1953 
1954 	pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
1955 	if (!pcaps)
1956 		return -ENOMEM;
1957 
1958 	retcode = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_ACTIVE_CFG, pcaps,
1959 				      NULL);
1960 	if (retcode) {
1961 		dev_err(dev, "Failed to get phy capabilities, VSI %d error %d\n",
1962 			vsi->vsi_num, retcode);
1963 		retcode = -EIO;
1964 		goto out;
1965 	}
1966 
1967 	/* No change in link */
1968 	if (link_up == !!(pcaps->caps & ICE_AQC_PHY_EN_LINK) &&
1969 	    link_up == !!(pi->phy.link_info.link_info & ICE_AQ_LINK_UP))
1970 		goto out;
1971 
1972 	/* Use the current user PHY configuration. The current user PHY
1973 	 * configuration is initialized during probe from PHY capabilities
1974 	 * software mode, and updated on set PHY configuration.
1975 	 */
1976 	cfg = kmemdup(&pi->phy.curr_user_phy_cfg, sizeof(*cfg), GFP_KERNEL);
1977 	if (!cfg) {
1978 		retcode = -ENOMEM;
1979 		goto out;
1980 	}
1981 
1982 	cfg->caps |= ICE_AQ_PHY_ENA_AUTO_LINK_UPDT;
1983 	if (link_up)
1984 		cfg->caps |= ICE_AQ_PHY_ENA_LINK;
1985 	else
1986 		cfg->caps &= ~ICE_AQ_PHY_ENA_LINK;
1987 
1988 	retcode = ice_aq_set_phy_cfg(&vsi->back->hw, pi, cfg, NULL);
1989 	if (retcode) {
1990 		dev_err(dev, "Failed to set phy config, VSI %d error %d\n",
1991 			vsi->vsi_num, retcode);
1992 		retcode = -EIO;
1993 	}
1994 
1995 	kfree(cfg);
1996 out:
1997 	kfree(pcaps);
1998 	return retcode;
1999 }
2000 
2001 /**
2002  * ice_init_nvm_phy_type - Initialize the NVM PHY type
2003  * @pi: port info structure
2004  *
2005  * Initialize nvm_phy_type_[low|high] for link lenient mode support
2006  */
2007 static int ice_init_nvm_phy_type(struct ice_port_info *pi)
2008 {
2009 	struct ice_aqc_get_phy_caps_data *pcaps;
2010 	struct ice_pf *pf = pi->hw->back;
2011 	int err;
2012 
2013 	pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
2014 	if (!pcaps)
2015 		return -ENOMEM;
2016 
2017 	err = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_TOPO_CAP_NO_MEDIA,
2018 				  pcaps, NULL);
2019 
2020 	if (err) {
2021 		dev_err(ice_pf_to_dev(pf), "Get PHY capability failed.\n");
2022 		goto out;
2023 	}
2024 
2025 	pf->nvm_phy_type_hi = pcaps->phy_type_high;
2026 	pf->nvm_phy_type_lo = pcaps->phy_type_low;
2027 
2028 out:
2029 	kfree(pcaps);
2030 	return err;
2031 }
2032 
2033 /**
2034  * ice_init_link_dflt_override - Initialize link default override
2035  * @pi: port info structure
2036  *
2037  * Initialize link default override and PHY total port shutdown during probe
2038  */
2039 static void ice_init_link_dflt_override(struct ice_port_info *pi)
2040 {
2041 	struct ice_link_default_override_tlv *ldo;
2042 	struct ice_pf *pf = pi->hw->back;
2043 
2044 	ldo = &pf->link_dflt_override;
2045 	if (ice_get_link_default_override(ldo, pi))
2046 		return;
2047 
2048 	if (!(ldo->options & ICE_LINK_OVERRIDE_PORT_DIS))
2049 		return;
2050 
2051 	/* Enable Total Port Shutdown (override/replace link-down-on-close
2052 	 * ethtool private flag) for ports with Port Disable bit set.
2053 	 */
2054 	set_bit(ICE_FLAG_TOTAL_PORT_SHUTDOWN_ENA, pf->flags);
2055 	set_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, pf->flags);
2056 }
2057 
2058 /**
2059  * ice_init_phy_cfg_dflt_override - Initialize PHY cfg default override settings
2060  * @pi: port info structure
2061  *
2062  * If default override is enabled, initialize the user PHY cfg speed and FEC
2063  * settings using the default override mask from the NVM.
2064  *
2065  * The PHY should only be configured with the default override settings the
2066  * first time media is available. The ICE_LINK_DEFAULT_OVERRIDE_PENDING state
2067  * is used to indicate that the user PHY cfg default override is initialized
2068  * and the PHY has not been configured with the default override settings. The
2069  * state is set here, and cleared in ice_configure_phy the first time the PHY is
2070  * configured.
2071  *
2072  * This function should be called only if the FW doesn't support default
2073  * configuration mode, as reported by ice_fw_supports_report_dflt_cfg.
2074  */
2075 static void ice_init_phy_cfg_dflt_override(struct ice_port_info *pi)
2076 {
2077 	struct ice_link_default_override_tlv *ldo;
2078 	struct ice_aqc_set_phy_cfg_data *cfg;
2079 	struct ice_phy_info *phy = &pi->phy;
2080 	struct ice_pf *pf = pi->hw->back;
2081 
2082 	ldo = &pf->link_dflt_override;
2083 
2084 	/* If link default override is enabled, use to mask NVM PHY capabilities
2085 	 * for speed and FEC default configuration.
2086 	 */
2087 	cfg = &phy->curr_user_phy_cfg;
2088 
2089 	if (ldo->phy_type_low || ldo->phy_type_high) {
2090 		cfg->phy_type_low = pf->nvm_phy_type_lo &
2091 				    cpu_to_le64(ldo->phy_type_low);
2092 		cfg->phy_type_high = pf->nvm_phy_type_hi &
2093 				     cpu_to_le64(ldo->phy_type_high);
2094 	}
2095 	cfg->link_fec_opt = ldo->fec_options;
2096 	phy->curr_user_fec_req = ICE_FEC_AUTO;
2097 
2098 	set_bit(ICE_LINK_DEFAULT_OVERRIDE_PENDING, pf->state);
2099 }
2100 
2101 /**
2102  * ice_init_phy_user_cfg - Initialize the PHY user configuration
2103  * @pi: port info structure
2104  *
2105  * Initialize the current user PHY configuration, speed, FEC, and FC requested
2106  * mode to default. The PHY defaults are from get PHY capabilities topology
2107  * with media so call when media is first available. An error is returned if
2108  * called when media is not available. The PHY initialization completed state is
2109  * set here.
2110  *
2111  * These configurations are used when setting PHY
2112  * configuration. The user PHY configuration is updated on set PHY
2113  * configuration. Returns 0 on success, negative on failure
2114  */
2115 static int ice_init_phy_user_cfg(struct ice_port_info *pi)
2116 {
2117 	struct ice_aqc_get_phy_caps_data *pcaps;
2118 	struct ice_phy_info *phy = &pi->phy;
2119 	struct ice_pf *pf = pi->hw->back;
2120 	int err;
2121 
2122 	if (!(phy->link_info.link_info & ICE_AQ_MEDIA_AVAILABLE))
2123 		return -EIO;
2124 
2125 	pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
2126 	if (!pcaps)
2127 		return -ENOMEM;
2128 
2129 	if (ice_fw_supports_report_dflt_cfg(pi->hw))
2130 		err = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_DFLT_CFG,
2131 					  pcaps, NULL);
2132 	else
2133 		err = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_TOPO_CAP_MEDIA,
2134 					  pcaps, NULL);
2135 	if (err) {
2136 		dev_err(ice_pf_to_dev(pf), "Get PHY capability failed.\n");
2137 		goto err_out;
2138 	}
2139 
2140 	ice_copy_phy_caps_to_cfg(pi, pcaps, &pi->phy.curr_user_phy_cfg);
2141 
2142 	/* check if lenient mode is supported and enabled */
2143 	if (ice_fw_supports_link_override(pi->hw) &&
2144 	    !(pcaps->module_compliance_enforcement &
2145 	      ICE_AQC_MOD_ENFORCE_STRICT_MODE)) {
2146 		set_bit(ICE_FLAG_LINK_LENIENT_MODE_ENA, pf->flags);
2147 
2148 		/* if the FW supports default PHY configuration mode, then the driver
2149 		 * does not have to apply link override settings. If not,
2150 		 * initialize user PHY configuration with link override values
2151 		 */
2152 		if (!ice_fw_supports_report_dflt_cfg(pi->hw) &&
2153 		    (pf->link_dflt_override.options & ICE_LINK_OVERRIDE_EN)) {
2154 			ice_init_phy_cfg_dflt_override(pi);
2155 			goto out;
2156 		}
2157 	}
2158 
2159 	/* if link default override is not enabled, set user flow control and
2160 	 * FEC settings based on what get_phy_caps returned
2161 	 */
2162 	phy->curr_user_fec_req = ice_caps_to_fec_mode(pcaps->caps,
2163 						      pcaps->link_fec_options);
2164 	phy->curr_user_fc_req = ice_caps_to_fc_mode(pcaps->caps);
2165 
2166 out:
2167 	phy->curr_user_speed_req = ICE_AQ_LINK_SPEED_M;
2168 	set_bit(ICE_PHY_INIT_COMPLETE, pf->state);
2169 err_out:
2170 	kfree(pcaps);
2171 	return err;
2172 }
2173 
2174 /**
2175  * ice_configure_phy - configure PHY
2176  * @vsi: VSI of PHY
2177  *
2178  * Set the PHY configuration. If the current PHY configuration is the same as
2179  * the curr_user_phy_cfg, then do nothing to avoid link flap. Otherwise
2180  * configure the based get PHY capabilities for topology with media.
2181  */
2182 static int ice_configure_phy(struct ice_vsi *vsi)
2183 {
2184 	struct device *dev = ice_pf_to_dev(vsi->back);
2185 	struct ice_port_info *pi = vsi->port_info;
2186 	struct ice_aqc_get_phy_caps_data *pcaps;
2187 	struct ice_aqc_set_phy_cfg_data *cfg;
2188 	struct ice_phy_info *phy = &pi->phy;
2189 	struct ice_pf *pf = vsi->back;
2190 	int err;
2191 
2192 	/* Ensure we have media as we cannot configure a medialess port */
2193 	if (!(phy->link_info.link_info & ICE_AQ_MEDIA_AVAILABLE))
2194 		return -ENOMEDIUM;
2195 
2196 	ice_print_topo_conflict(vsi);
2197 
2198 	if (!test_bit(ICE_FLAG_LINK_LENIENT_MODE_ENA, pf->flags) &&
2199 	    phy->link_info.topo_media_conflict == ICE_AQ_LINK_TOPO_UNSUPP_MEDIA)
2200 		return -EPERM;
2201 
2202 	if (test_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, pf->flags))
2203 		return ice_force_phys_link_state(vsi, true);
2204 
2205 	pcaps = kzalloc(sizeof(*pcaps), GFP_KERNEL);
2206 	if (!pcaps)
2207 		return -ENOMEM;
2208 
2209 	/* Get current PHY config */
2210 	err = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_ACTIVE_CFG, pcaps,
2211 				  NULL);
2212 	if (err) {
2213 		dev_err(dev, "Failed to get PHY configuration, VSI %d error %d\n",
2214 			vsi->vsi_num, err);
2215 		goto done;
2216 	}
2217 
2218 	/* If PHY enable link is configured and configuration has not changed,
2219 	 * there's nothing to do
2220 	 */
2221 	if (pcaps->caps & ICE_AQC_PHY_EN_LINK &&
2222 	    ice_phy_caps_equals_cfg(pcaps, &phy->curr_user_phy_cfg))
2223 		goto done;
2224 
2225 	/* Use PHY topology as baseline for configuration */
2226 	memset(pcaps, 0, sizeof(*pcaps));
2227 	if (ice_fw_supports_report_dflt_cfg(pi->hw))
2228 		err = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_DFLT_CFG,
2229 					  pcaps, NULL);
2230 	else
2231 		err = ice_aq_get_phy_caps(pi, false, ICE_AQC_REPORT_TOPO_CAP_MEDIA,
2232 					  pcaps, NULL);
2233 	if (err) {
2234 		dev_err(dev, "Failed to get PHY caps, VSI %d error %d\n",
2235 			vsi->vsi_num, err);
2236 		goto done;
2237 	}
2238 
2239 	cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
2240 	if (!cfg) {
2241 		err = -ENOMEM;
2242 		goto done;
2243 	}
2244 
2245 	ice_copy_phy_caps_to_cfg(pi, pcaps, cfg);
2246 
2247 	/* Speed - If default override pending, use curr_user_phy_cfg set in
2248 	 * ice_init_phy_user_cfg_ldo.
2249 	 */
2250 	if (test_and_clear_bit(ICE_LINK_DEFAULT_OVERRIDE_PENDING,
2251 			       vsi->back->state)) {
2252 		cfg->phy_type_low = phy->curr_user_phy_cfg.phy_type_low;
2253 		cfg->phy_type_high = phy->curr_user_phy_cfg.phy_type_high;
2254 	} else {
2255 		u64 phy_low = 0, phy_high = 0;
2256 
2257 		ice_update_phy_type(&phy_low, &phy_high,
2258 				    pi->phy.curr_user_speed_req);
2259 		cfg->phy_type_low = pcaps->phy_type_low & cpu_to_le64(phy_low);
2260 		cfg->phy_type_high = pcaps->phy_type_high &
2261 				     cpu_to_le64(phy_high);
2262 	}
2263 
2264 	/* Can't provide what was requested; use PHY capabilities */
2265 	if (!cfg->phy_type_low && !cfg->phy_type_high) {
2266 		cfg->phy_type_low = pcaps->phy_type_low;
2267 		cfg->phy_type_high = pcaps->phy_type_high;
2268 	}
2269 
2270 	/* FEC */
2271 	ice_cfg_phy_fec(pi, cfg, phy->curr_user_fec_req);
2272 
2273 	/* Can't provide what was requested; use PHY capabilities */
2274 	if (cfg->link_fec_opt !=
2275 	    (cfg->link_fec_opt & pcaps->link_fec_options)) {
2276 		cfg->caps |= pcaps->caps & ICE_AQC_PHY_EN_AUTO_FEC;
2277 		cfg->link_fec_opt = pcaps->link_fec_options;
2278 	}
2279 
2280 	/* Flow Control - always supported; no need to check against
2281 	 * capabilities
2282 	 */
2283 	ice_cfg_phy_fc(pi, cfg, phy->curr_user_fc_req);
2284 
2285 	/* Enable link and link update */
2286 	cfg->caps |= ICE_AQ_PHY_ENA_AUTO_LINK_UPDT | ICE_AQ_PHY_ENA_LINK;
2287 
2288 	err = ice_aq_set_phy_cfg(&pf->hw, pi, cfg, NULL);
2289 	if (err)
2290 		dev_err(dev, "Failed to set phy config, VSI %d error %d\n",
2291 			vsi->vsi_num, err);
2292 
2293 	kfree(cfg);
2294 done:
2295 	kfree(pcaps);
2296 	return err;
2297 }
2298 
2299 /**
2300  * ice_check_media_subtask - Check for media
2301  * @pf: pointer to PF struct
2302  *
2303  * If media is available, then initialize PHY user configuration if it is not
2304  * been, and configure the PHY if the interface is up.
2305  */
2306 static void ice_check_media_subtask(struct ice_pf *pf)
2307 {
2308 	struct ice_port_info *pi;
2309 	struct ice_vsi *vsi;
2310 	int err;
2311 
2312 	/* No need to check for media if it's already present */
2313 	if (!test_bit(ICE_FLAG_NO_MEDIA, pf->flags))
2314 		return;
2315 
2316 	vsi = ice_get_main_vsi(pf);
2317 	if (!vsi)
2318 		return;
2319 
2320 	/* Refresh link info and check if media is present */
2321 	pi = vsi->port_info;
2322 	err = ice_update_link_info(pi);
2323 	if (err)
2324 		return;
2325 
2326 	ice_check_link_cfg_err(pf, pi->phy.link_info.link_cfg_err);
2327 
2328 	if (pi->phy.link_info.link_info & ICE_AQ_MEDIA_AVAILABLE) {
2329 		if (!test_bit(ICE_PHY_INIT_COMPLETE, pf->state))
2330 			ice_init_phy_user_cfg(pi);
2331 
2332 		/* PHY settings are reset on media insertion, reconfigure
2333 		 * PHY to preserve settings.
2334 		 */
2335 		if (test_bit(ICE_VSI_DOWN, vsi->state) &&
2336 		    test_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, vsi->back->flags))
2337 			return;
2338 
2339 		err = ice_configure_phy(vsi);
2340 		if (!err)
2341 			clear_bit(ICE_FLAG_NO_MEDIA, pf->flags);
2342 
2343 		/* A Link Status Event will be generated; the event handler
2344 		 * will complete bringing the interface up
2345 		 */
2346 	}
2347 }
2348 
2349 static void ice_service_task_recovery_mode(struct work_struct *work)
2350 {
2351 	struct ice_pf *pf = container_of(work, struct ice_pf, serv_task);
2352 
2353 	set_bit(ICE_ADMINQ_EVENT_PENDING, pf->state);
2354 	ice_clean_adminq_subtask(pf);
2355 
2356 	ice_service_task_complete(pf);
2357 
2358 	mod_timer(&pf->serv_tmr, jiffies + msecs_to_jiffies(100));
2359 }
2360 
2361 /**
2362  * ice_service_task - manage and run subtasks
2363  * @work: pointer to work_struct contained by the PF struct
2364  */
2365 static void ice_service_task(struct work_struct *work)
2366 {
2367 	struct ice_pf *pf = container_of(work, struct ice_pf, serv_task);
2368 	unsigned long start_time = jiffies;
2369 
2370 	if (pf->health_reporters.tx_hang_buf.tx_ring) {
2371 		ice_report_tx_hang(pf);
2372 		pf->health_reporters.tx_hang_buf.tx_ring = NULL;
2373 	}
2374 
2375 	ice_reset_subtask(pf);
2376 
2377 	/* bail if a reset/recovery cycle is pending or rebuild failed */
2378 	if (ice_is_reset_in_progress(pf->state) ||
2379 	    test_bit(ICE_SUSPENDED, pf->state) ||
2380 	    test_bit(ICE_NEEDS_RESTART, pf->state)) {
2381 		ice_service_task_complete(pf);
2382 		return;
2383 	}
2384 
2385 	if (test_and_clear_bit(ICE_AUX_ERR_PENDING, pf->state)) {
2386 		struct iidc_rdma_event *event;
2387 
2388 		event = kzalloc(sizeof(*event), GFP_KERNEL);
2389 		if (event) {
2390 			set_bit(IIDC_RDMA_EVENT_CRIT_ERR, event->type);
2391 			/* report the entire OICR value to AUX driver */
2392 			swap(event->reg, pf->oicr_err_reg);
2393 			ice_send_event_to_aux(pf, event);
2394 			kfree(event);
2395 		}
2396 	}
2397 
2398 	/* unplug aux dev per request, if an unplug request came in
2399 	 * while processing a plug request, this will handle it
2400 	 */
2401 	if (test_and_clear_bit(ICE_FLAG_UNPLUG_AUX_DEV, pf->flags))
2402 		ice_unplug_aux_dev(pf);
2403 
2404 	/* Plug aux device per request */
2405 	if (test_and_clear_bit(ICE_FLAG_PLUG_AUX_DEV, pf->flags))
2406 		ice_plug_aux_dev(pf);
2407 
2408 	if (test_and_clear_bit(ICE_FLAG_MTU_CHANGED, pf->flags)) {
2409 		struct iidc_rdma_event *event;
2410 
2411 		event = kzalloc(sizeof(*event), GFP_KERNEL);
2412 		if (event) {
2413 			set_bit(IIDC_RDMA_EVENT_AFTER_MTU_CHANGE, event->type);
2414 			ice_send_event_to_aux(pf, event);
2415 			kfree(event);
2416 		}
2417 	}
2418 
2419 	ice_clean_adminq_subtask(pf);
2420 	ice_check_media_subtask(pf);
2421 	ice_check_for_hang_subtask(pf);
2422 	ice_sync_fltr_subtask(pf);
2423 	ice_handle_mdd_event(pf);
2424 	ice_watchdog_subtask(pf);
2425 
2426 	if (ice_is_safe_mode(pf)) {
2427 		ice_service_task_complete(pf);
2428 		return;
2429 	}
2430 
2431 	ice_process_vflr_event(pf);
2432 	ice_clean_mailboxq_subtask(pf);
2433 	ice_clean_sbq_subtask(pf);
2434 	ice_sync_arfs_fltrs(pf);
2435 	ice_flush_fdir_ctx(pf);
2436 
2437 	/* Clear ICE_SERVICE_SCHED flag to allow scheduling next event */
2438 	ice_service_task_complete(pf);
2439 
2440 	/* If the tasks have taken longer than one service timer period
2441 	 * or there is more work to be done, reset the service timer to
2442 	 * schedule the service task now.
2443 	 */
2444 	if (time_after(jiffies, (start_time + pf->serv_tmr_period)) ||
2445 	    test_bit(ICE_MDD_EVENT_PENDING, pf->state) ||
2446 	    test_bit(ICE_VFLR_EVENT_PENDING, pf->state) ||
2447 	    test_bit(ICE_MAILBOXQ_EVENT_PENDING, pf->state) ||
2448 	    test_bit(ICE_FD_VF_FLUSH_CTX, pf->state) ||
2449 	    test_bit(ICE_SIDEBANDQ_EVENT_PENDING, pf->state) ||
2450 	    test_bit(ICE_ADMINQ_EVENT_PENDING, pf->state))
2451 		mod_timer(&pf->serv_tmr, jiffies);
2452 }
2453 
2454 /**
2455  * ice_set_ctrlq_len - helper function to set controlq length
2456  * @hw: pointer to the HW instance
2457  */
2458 static void ice_set_ctrlq_len(struct ice_hw *hw)
2459 {
2460 	hw->adminq.num_rq_entries = ICE_AQ_LEN;
2461 	hw->adminq.num_sq_entries = ICE_AQ_LEN;
2462 	hw->adminq.rq_buf_size = ICE_AQ_MAX_BUF_LEN;
2463 	hw->adminq.sq_buf_size = ICE_AQ_MAX_BUF_LEN;
2464 	hw->mailboxq.num_rq_entries = PF_MBX_ARQLEN_ARQLEN_M;
2465 	hw->mailboxq.num_sq_entries = ICE_MBXSQ_LEN;
2466 	hw->mailboxq.rq_buf_size = ICE_MBXQ_MAX_BUF_LEN;
2467 	hw->mailboxq.sq_buf_size = ICE_MBXQ_MAX_BUF_LEN;
2468 	hw->sbq.num_rq_entries = ICE_SBQ_LEN;
2469 	hw->sbq.num_sq_entries = ICE_SBQ_LEN;
2470 	hw->sbq.rq_buf_size = ICE_SBQ_MAX_BUF_LEN;
2471 	hw->sbq.sq_buf_size = ICE_SBQ_MAX_BUF_LEN;
2472 }
2473 
2474 /**
2475  * ice_schedule_reset - schedule a reset
2476  * @pf: board private structure
2477  * @reset: reset being requested
2478  */
2479 int ice_schedule_reset(struct ice_pf *pf, enum ice_reset_req reset)
2480 {
2481 	struct device *dev = ice_pf_to_dev(pf);
2482 
2483 	/* bail out if earlier reset has failed */
2484 	if (test_bit(ICE_RESET_FAILED, pf->state)) {
2485 		dev_dbg(dev, "earlier reset has failed\n");
2486 		return -EIO;
2487 	}
2488 	/* bail if reset/recovery already in progress */
2489 	if (ice_is_reset_in_progress(pf->state)) {
2490 		dev_dbg(dev, "Reset already in progress\n");
2491 		return -EBUSY;
2492 	}
2493 
2494 	switch (reset) {
2495 	case ICE_RESET_PFR:
2496 		set_bit(ICE_PFR_REQ, pf->state);
2497 		break;
2498 	case ICE_RESET_CORER:
2499 		set_bit(ICE_CORER_REQ, pf->state);
2500 		break;
2501 	case ICE_RESET_GLOBR:
2502 		set_bit(ICE_GLOBR_REQ, pf->state);
2503 		break;
2504 	default:
2505 		return -EINVAL;
2506 	}
2507 
2508 	ice_service_task_schedule(pf);
2509 	return 0;
2510 }
2511 
2512 /**
2513  * ice_vsi_ena_irq - Enable IRQ for the given VSI
2514  * @vsi: the VSI being configured
2515  */
2516 static int ice_vsi_ena_irq(struct ice_vsi *vsi)
2517 {
2518 	struct ice_hw *hw = &vsi->back->hw;
2519 	int i;
2520 
2521 	ice_for_each_q_vector(vsi, i)
2522 		ice_irq_dynamic_ena(hw, vsi, vsi->q_vectors[i]);
2523 
2524 	ice_flush(hw);
2525 	return 0;
2526 }
2527 
2528 /**
2529  * ice_vsi_req_irq_msix - get MSI-X vectors from the OS for the VSI
2530  * @vsi: the VSI being configured
2531  * @basename: name for the vector
2532  */
2533 static int ice_vsi_req_irq_msix(struct ice_vsi *vsi, char *basename)
2534 {
2535 	int q_vectors = vsi->num_q_vectors;
2536 	struct ice_pf *pf = vsi->back;
2537 	struct device *dev;
2538 	int rx_int_idx = 0;
2539 	int tx_int_idx = 0;
2540 	int vector, err;
2541 	int irq_num;
2542 
2543 	dev = ice_pf_to_dev(pf);
2544 	for (vector = 0; vector < q_vectors; vector++) {
2545 		struct ice_q_vector *q_vector = vsi->q_vectors[vector];
2546 
2547 		irq_num = q_vector->irq.virq;
2548 
2549 		if (q_vector->tx.tx_ring && q_vector->rx.rx_ring) {
2550 			snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2551 				 "%s-%s-%d", basename, "TxRx", rx_int_idx++);
2552 			tx_int_idx++;
2553 		} else if (q_vector->rx.rx_ring) {
2554 			snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2555 				 "%s-%s-%d", basename, "rx", rx_int_idx++);
2556 		} else if (q_vector->tx.tx_ring) {
2557 			snprintf(q_vector->name, sizeof(q_vector->name) - 1,
2558 				 "%s-%s-%d", basename, "tx", tx_int_idx++);
2559 		} else {
2560 			/* skip this unused q_vector */
2561 			continue;
2562 		}
2563 		if (vsi->type == ICE_VSI_CTRL && vsi->vf)
2564 			err = devm_request_irq(dev, irq_num, vsi->irq_handler,
2565 					       IRQF_SHARED, q_vector->name,
2566 					       q_vector);
2567 		else
2568 			err = devm_request_irq(dev, irq_num, vsi->irq_handler,
2569 					       0, q_vector->name, q_vector);
2570 		if (err) {
2571 			netdev_err(vsi->netdev, "MSIX request_irq failed, error: %d\n",
2572 				   err);
2573 			goto free_q_irqs;
2574 		}
2575 	}
2576 
2577 	err = ice_set_cpu_rx_rmap(vsi);
2578 	if (err) {
2579 		netdev_err(vsi->netdev, "Failed to setup CPU RMAP on VSI %u: %pe\n",
2580 			   vsi->vsi_num, ERR_PTR(err));
2581 		goto free_q_irqs;
2582 	}
2583 
2584 	vsi->irqs_ready = true;
2585 	return 0;
2586 
2587 free_q_irqs:
2588 	while (vector--) {
2589 		irq_num = vsi->q_vectors[vector]->irq.virq;
2590 		devm_free_irq(dev, irq_num, &vsi->q_vectors[vector]);
2591 	}
2592 	return err;
2593 }
2594 
2595 /**
2596  * ice_xdp_alloc_setup_rings - Allocate and setup Tx rings for XDP
2597  * @vsi: VSI to setup Tx rings used by XDP
2598  *
2599  * Return 0 on success and negative value on error
2600  */
2601 static int ice_xdp_alloc_setup_rings(struct ice_vsi *vsi)
2602 {
2603 	struct device *dev = ice_pf_to_dev(vsi->back);
2604 	struct ice_tx_desc *tx_desc;
2605 	int i, j;
2606 
2607 	ice_for_each_xdp_txq(vsi, i) {
2608 		u16 xdp_q_idx = vsi->alloc_txq + i;
2609 		struct ice_ring_stats *ring_stats;
2610 		struct ice_tx_ring *xdp_ring;
2611 
2612 		xdp_ring = kzalloc(sizeof(*xdp_ring), GFP_KERNEL);
2613 		if (!xdp_ring)
2614 			goto free_xdp_rings;
2615 
2616 		ring_stats = kzalloc(sizeof(*ring_stats), GFP_KERNEL);
2617 		if (!ring_stats) {
2618 			ice_free_tx_ring(xdp_ring);
2619 			goto free_xdp_rings;
2620 		}
2621 
2622 		xdp_ring->ring_stats = ring_stats;
2623 		xdp_ring->q_index = xdp_q_idx;
2624 		xdp_ring->reg_idx = vsi->txq_map[xdp_q_idx];
2625 		xdp_ring->vsi = vsi;
2626 		xdp_ring->netdev = NULL;
2627 		xdp_ring->dev = dev;
2628 		xdp_ring->count = vsi->num_tx_desc;
2629 		WRITE_ONCE(vsi->xdp_rings[i], xdp_ring);
2630 		if (ice_setup_tx_ring(xdp_ring))
2631 			goto free_xdp_rings;
2632 		ice_set_ring_xdp(xdp_ring);
2633 		spin_lock_init(&xdp_ring->tx_lock);
2634 		for (j = 0; j < xdp_ring->count; j++) {
2635 			tx_desc = ICE_TX_DESC(xdp_ring, j);
2636 			tx_desc->cmd_type_offset_bsz = 0;
2637 		}
2638 	}
2639 
2640 	return 0;
2641 
2642 free_xdp_rings:
2643 	for (; i >= 0; i--) {
2644 		if (vsi->xdp_rings[i] && vsi->xdp_rings[i]->desc) {
2645 			kfree_rcu(vsi->xdp_rings[i]->ring_stats, rcu);
2646 			vsi->xdp_rings[i]->ring_stats = NULL;
2647 			ice_free_tx_ring(vsi->xdp_rings[i]);
2648 		}
2649 	}
2650 	return -ENOMEM;
2651 }
2652 
2653 /**
2654  * ice_vsi_assign_bpf_prog - set or clear bpf prog pointer on VSI
2655  * @vsi: VSI to set the bpf prog on
2656  * @prog: the bpf prog pointer
2657  */
2658 static void ice_vsi_assign_bpf_prog(struct ice_vsi *vsi, struct bpf_prog *prog)
2659 {
2660 	struct bpf_prog *old_prog;
2661 	int i;
2662 
2663 	old_prog = xchg(&vsi->xdp_prog, prog);
2664 	ice_for_each_rxq(vsi, i)
2665 		WRITE_ONCE(vsi->rx_rings[i]->xdp_prog, vsi->xdp_prog);
2666 
2667 	if (old_prog)
2668 		bpf_prog_put(old_prog);
2669 }
2670 
2671 static struct ice_tx_ring *ice_xdp_ring_from_qid(struct ice_vsi *vsi, int qid)
2672 {
2673 	struct ice_q_vector *q_vector;
2674 	struct ice_tx_ring *ring;
2675 
2676 	if (static_key_enabled(&ice_xdp_locking_key))
2677 		return vsi->xdp_rings[qid % vsi->num_xdp_txq];
2678 
2679 	q_vector = vsi->rx_rings[qid]->q_vector;
2680 	ice_for_each_tx_ring(ring, q_vector->tx)
2681 		if (ice_ring_is_xdp(ring))
2682 			return ring;
2683 
2684 	return NULL;
2685 }
2686 
2687 /**
2688  * ice_map_xdp_rings - Map XDP rings to interrupt vectors
2689  * @vsi: the VSI with XDP rings being configured
2690  *
2691  * Map XDP rings to interrupt vectors and perform the configuration steps
2692  * dependent on the mapping.
2693  */
2694 void ice_map_xdp_rings(struct ice_vsi *vsi)
2695 {
2696 	int xdp_rings_rem = vsi->num_xdp_txq;
2697 	int v_idx, q_idx;
2698 
2699 	/* follow the logic from ice_vsi_map_rings_to_vectors */
2700 	ice_for_each_q_vector(vsi, v_idx) {
2701 		struct ice_q_vector *q_vector = vsi->q_vectors[v_idx];
2702 		int xdp_rings_per_v, q_id, q_base;
2703 
2704 		xdp_rings_per_v = DIV_ROUND_UP(xdp_rings_rem,
2705 					       vsi->num_q_vectors - v_idx);
2706 		q_base = vsi->num_xdp_txq - xdp_rings_rem;
2707 
2708 		for (q_id = q_base; q_id < (q_base + xdp_rings_per_v); q_id++) {
2709 			struct ice_tx_ring *xdp_ring = vsi->xdp_rings[q_id];
2710 
2711 			xdp_ring->q_vector = q_vector;
2712 			xdp_ring->next = q_vector->tx.tx_ring;
2713 			q_vector->tx.tx_ring = xdp_ring;
2714 		}
2715 		xdp_rings_rem -= xdp_rings_per_v;
2716 	}
2717 
2718 	ice_for_each_rxq(vsi, q_idx) {
2719 		vsi->rx_rings[q_idx]->xdp_ring = ice_xdp_ring_from_qid(vsi,
2720 								       q_idx);
2721 		ice_tx_xsk_pool(vsi, q_idx);
2722 	}
2723 }
2724 
2725 /**
2726  * ice_unmap_xdp_rings - Unmap XDP rings from interrupt vectors
2727  * @vsi: the VSI with XDP rings being unmapped
2728  */
2729 static void ice_unmap_xdp_rings(struct ice_vsi *vsi)
2730 {
2731 	int v_idx;
2732 
2733 	ice_for_each_q_vector(vsi, v_idx) {
2734 		struct ice_q_vector *q_vector = vsi->q_vectors[v_idx];
2735 		struct ice_tx_ring *ring;
2736 
2737 		ice_for_each_tx_ring(ring, q_vector->tx)
2738 			if (!ring->tx_buf || !ice_ring_is_xdp(ring))
2739 				break;
2740 
2741 		/* restore the value of last node prior to XDP setup */
2742 		q_vector->tx.tx_ring = ring;
2743 	}
2744 }
2745 
2746 /**
2747  * ice_prepare_xdp_rings - Allocate, configure and setup Tx rings for XDP
2748  * @vsi: VSI to bring up Tx rings used by XDP
2749  * @prog: bpf program that will be assigned to VSI
2750  * @cfg_type: create from scratch or restore the existing configuration
2751  *
2752  * Return 0 on success and negative value on error
2753  */
2754 int ice_prepare_xdp_rings(struct ice_vsi *vsi, struct bpf_prog *prog,
2755 			  enum ice_xdp_cfg cfg_type)
2756 {
2757 	u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2758 	struct ice_pf *pf = vsi->back;
2759 	struct ice_qs_cfg xdp_qs_cfg = {
2760 		.qs_mutex = &pf->avail_q_mutex,
2761 		.pf_map = pf->avail_txqs,
2762 		.pf_map_size = pf->max_pf_txqs,
2763 		.q_count = vsi->num_xdp_txq,
2764 		.scatter_count = ICE_MAX_SCATTER_TXQS,
2765 		.vsi_map = vsi->txq_map,
2766 		.vsi_map_offset = vsi->alloc_txq,
2767 		.mapping_mode = ICE_VSI_MAP_CONTIG
2768 	};
2769 	struct device *dev;
2770 	int status, i;
2771 
2772 	dev = ice_pf_to_dev(pf);
2773 	vsi->xdp_rings = devm_kcalloc(dev, vsi->num_xdp_txq,
2774 				      sizeof(*vsi->xdp_rings), GFP_KERNEL);
2775 	if (!vsi->xdp_rings)
2776 		return -ENOMEM;
2777 
2778 	vsi->xdp_mapping_mode = xdp_qs_cfg.mapping_mode;
2779 	if (__ice_vsi_get_qs(&xdp_qs_cfg))
2780 		goto err_map_xdp;
2781 
2782 	if (static_key_enabled(&ice_xdp_locking_key))
2783 		netdev_warn(vsi->netdev,
2784 			    "Could not allocate one XDP Tx ring per CPU, XDP_TX/XDP_REDIRECT actions will be slower\n");
2785 
2786 	if (ice_xdp_alloc_setup_rings(vsi))
2787 		goto clear_xdp_rings;
2788 
2789 	/* omit the scheduler update if in reset path; XDP queues will be
2790 	 * taken into account at the end of ice_vsi_rebuild, where
2791 	 * ice_cfg_vsi_lan is being called
2792 	 */
2793 	if (cfg_type == ICE_XDP_CFG_PART)
2794 		return 0;
2795 
2796 	ice_map_xdp_rings(vsi);
2797 
2798 	/* tell the Tx scheduler that right now we have
2799 	 * additional queues
2800 	 */
2801 	for (i = 0; i < vsi->tc_cfg.numtc; i++)
2802 		max_txqs[i] = vsi->num_txq + vsi->num_xdp_txq;
2803 
2804 	status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2805 				 max_txqs);
2806 	if (status) {
2807 		dev_err(dev, "Failed VSI LAN queue config for XDP, error: %d\n",
2808 			status);
2809 		goto unmap_xdp_rings;
2810 	}
2811 
2812 	/* assign the prog only when it's not already present on VSI;
2813 	 * this flow is a subject of both ethtool -L and ndo_bpf flows;
2814 	 * VSI rebuild that happens under ethtool -L can expose us to
2815 	 * the bpf_prog refcount issues as we would be swapping same
2816 	 * bpf_prog pointers from vsi->xdp_prog and calling bpf_prog_put
2817 	 * on it as it would be treated as an 'old_prog'; for ndo_bpf
2818 	 * this is not harmful as dev_xdp_install bumps the refcount
2819 	 * before calling the op exposed by the driver;
2820 	 */
2821 	if (!ice_is_xdp_ena_vsi(vsi))
2822 		ice_vsi_assign_bpf_prog(vsi, prog);
2823 
2824 	return 0;
2825 unmap_xdp_rings:
2826 	ice_unmap_xdp_rings(vsi);
2827 clear_xdp_rings:
2828 	ice_for_each_xdp_txq(vsi, i)
2829 		if (vsi->xdp_rings[i]) {
2830 			kfree_rcu(vsi->xdp_rings[i], rcu);
2831 			vsi->xdp_rings[i] = NULL;
2832 		}
2833 
2834 err_map_xdp:
2835 	mutex_lock(&pf->avail_q_mutex);
2836 	ice_for_each_xdp_txq(vsi, i) {
2837 		clear_bit(vsi->txq_map[i + vsi->alloc_txq], pf->avail_txqs);
2838 		vsi->txq_map[i + vsi->alloc_txq] = ICE_INVAL_Q_INDEX;
2839 	}
2840 	mutex_unlock(&pf->avail_q_mutex);
2841 
2842 	devm_kfree(dev, vsi->xdp_rings);
2843 	vsi->xdp_rings = NULL;
2844 
2845 	return -ENOMEM;
2846 }
2847 
2848 /**
2849  * ice_destroy_xdp_rings - undo the configuration made by ice_prepare_xdp_rings
2850  * @vsi: VSI to remove XDP rings
2851  * @cfg_type: disable XDP permanently or allow it to be restored later
2852  *
2853  * Detach XDP rings from irq vectors, clean up the PF bitmap and free
2854  * resources
2855  */
2856 int ice_destroy_xdp_rings(struct ice_vsi *vsi, enum ice_xdp_cfg cfg_type)
2857 {
2858 	u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2859 	struct ice_pf *pf = vsi->back;
2860 	int i;
2861 
2862 	/* q_vectors are freed in reset path so there's no point in detaching
2863 	 * rings
2864 	 */
2865 	if (cfg_type == ICE_XDP_CFG_PART)
2866 		goto free_qmap;
2867 
2868 	ice_unmap_xdp_rings(vsi);
2869 
2870 free_qmap:
2871 	mutex_lock(&pf->avail_q_mutex);
2872 	ice_for_each_xdp_txq(vsi, i) {
2873 		clear_bit(vsi->txq_map[i + vsi->alloc_txq], pf->avail_txqs);
2874 		vsi->txq_map[i + vsi->alloc_txq] = ICE_INVAL_Q_INDEX;
2875 	}
2876 	mutex_unlock(&pf->avail_q_mutex);
2877 
2878 	ice_for_each_xdp_txq(vsi, i)
2879 		if (vsi->xdp_rings[i]) {
2880 			if (vsi->xdp_rings[i]->desc) {
2881 				synchronize_rcu();
2882 				ice_free_tx_ring(vsi->xdp_rings[i]);
2883 			}
2884 			kfree_rcu(vsi->xdp_rings[i]->ring_stats, rcu);
2885 			vsi->xdp_rings[i]->ring_stats = NULL;
2886 			kfree_rcu(vsi->xdp_rings[i], rcu);
2887 			vsi->xdp_rings[i] = NULL;
2888 		}
2889 
2890 	devm_kfree(ice_pf_to_dev(pf), vsi->xdp_rings);
2891 	vsi->xdp_rings = NULL;
2892 
2893 	if (static_key_enabled(&ice_xdp_locking_key))
2894 		static_branch_dec(&ice_xdp_locking_key);
2895 
2896 	if (cfg_type == ICE_XDP_CFG_PART)
2897 		return 0;
2898 
2899 	ice_vsi_assign_bpf_prog(vsi, NULL);
2900 
2901 	/* notify Tx scheduler that we destroyed XDP queues and bring
2902 	 * back the old number of child nodes
2903 	 */
2904 	for (i = 0; i < vsi->tc_cfg.numtc; i++)
2905 		max_txqs[i] = vsi->num_txq;
2906 
2907 	/* change number of XDP Tx queues to 0 */
2908 	vsi->num_xdp_txq = 0;
2909 
2910 	return ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2911 			       max_txqs);
2912 }
2913 
2914 /**
2915  * ice_vsi_rx_napi_schedule - Schedule napi on RX queues from VSI
2916  * @vsi: VSI to schedule napi on
2917  */
2918 static void ice_vsi_rx_napi_schedule(struct ice_vsi *vsi)
2919 {
2920 	int i;
2921 
2922 	ice_for_each_rxq(vsi, i) {
2923 		struct ice_rx_ring *rx_ring = vsi->rx_rings[i];
2924 
2925 		if (READ_ONCE(rx_ring->xsk_pool))
2926 			napi_schedule(&rx_ring->q_vector->napi);
2927 	}
2928 }
2929 
2930 /**
2931  * ice_vsi_determine_xdp_res - figure out how many Tx qs can XDP have
2932  * @vsi: VSI to determine the count of XDP Tx qs
2933  *
2934  * returns 0 if Tx qs count is higher than at least half of CPU count,
2935  * -ENOMEM otherwise
2936  */
2937 int ice_vsi_determine_xdp_res(struct ice_vsi *vsi)
2938 {
2939 	u16 avail = ice_get_avail_txq_count(vsi->back);
2940 	u16 cpus = num_possible_cpus();
2941 
2942 	if (avail < cpus / 2)
2943 		return -ENOMEM;
2944 
2945 	if (vsi->type == ICE_VSI_SF)
2946 		avail = vsi->alloc_txq;
2947 
2948 	vsi->num_xdp_txq = min_t(u16, avail, cpus);
2949 
2950 	if (vsi->num_xdp_txq < cpus)
2951 		static_branch_inc(&ice_xdp_locking_key);
2952 
2953 	return 0;
2954 }
2955 
2956 /**
2957  * ice_max_xdp_frame_size - returns the maximum allowed frame size for XDP
2958  * @vsi: Pointer to VSI structure
2959  */
2960 static int ice_max_xdp_frame_size(struct ice_vsi *vsi)
2961 {
2962 	return ICE_RXBUF_3072;
2963 }
2964 
2965 /**
2966  * ice_xdp_setup_prog - Add or remove XDP eBPF program
2967  * @vsi: VSI to setup XDP for
2968  * @prog: XDP program
2969  * @extack: netlink extended ack
2970  */
2971 static int
2972 ice_xdp_setup_prog(struct ice_vsi *vsi, struct bpf_prog *prog,
2973 		   struct netlink_ext_ack *extack)
2974 {
2975 	unsigned int frame_size = vsi->netdev->mtu + ICE_ETH_PKT_HDR_PAD;
2976 	int ret = 0, xdp_ring_err = 0;
2977 	bool if_running;
2978 
2979 	if (prog && !prog->aux->xdp_has_frags) {
2980 		if (frame_size > ice_max_xdp_frame_size(vsi)) {
2981 			NL_SET_ERR_MSG_MOD(extack,
2982 					   "MTU is too large for linear frames and XDP prog does not support frags");
2983 			return -EOPNOTSUPP;
2984 		}
2985 	}
2986 
2987 	/* hot swap progs and avoid toggling link */
2988 	if (ice_is_xdp_ena_vsi(vsi) == !!prog ||
2989 	    test_bit(ICE_VSI_REBUILD_PENDING, vsi->state)) {
2990 		ice_vsi_assign_bpf_prog(vsi, prog);
2991 		return 0;
2992 	}
2993 
2994 	if_running = netif_running(vsi->netdev) &&
2995 		     !test_and_set_bit(ICE_VSI_DOWN, vsi->state);
2996 
2997 	/* need to stop netdev while setting up the program for Rx rings */
2998 	if (if_running) {
2999 		ret = ice_down(vsi);
3000 		if (ret) {
3001 			NL_SET_ERR_MSG_MOD(extack, "Preparing device for XDP attach failed");
3002 			return ret;
3003 		}
3004 	}
3005 
3006 	if (!ice_is_xdp_ena_vsi(vsi) && prog) {
3007 		xdp_ring_err = ice_vsi_determine_xdp_res(vsi);
3008 		if (xdp_ring_err) {
3009 			NL_SET_ERR_MSG_MOD(extack, "Not enough Tx resources for XDP");
3010 			goto resume_if;
3011 		} else {
3012 			xdp_ring_err = ice_prepare_xdp_rings(vsi, prog,
3013 							     ICE_XDP_CFG_FULL);
3014 			if (xdp_ring_err) {
3015 				NL_SET_ERR_MSG_MOD(extack, "Setting up XDP Tx resources failed");
3016 				goto resume_if;
3017 			}
3018 		}
3019 		xdp_features_set_redirect_target(vsi->netdev, true);
3020 	} else if (ice_is_xdp_ena_vsi(vsi) && !prog) {
3021 		xdp_features_clear_redirect_target(vsi->netdev);
3022 		xdp_ring_err = ice_destroy_xdp_rings(vsi, ICE_XDP_CFG_FULL);
3023 		if (xdp_ring_err)
3024 			NL_SET_ERR_MSG_MOD(extack, "Freeing XDP Tx resources failed");
3025 	}
3026 
3027 resume_if:
3028 	if (if_running)
3029 		ret = ice_up(vsi);
3030 
3031 	if (!ret && prog)
3032 		ice_vsi_rx_napi_schedule(vsi);
3033 
3034 	return (ret || xdp_ring_err) ? -ENOMEM : 0;
3035 }
3036 
3037 /**
3038  * ice_xdp_safe_mode - XDP handler for safe mode
3039  * @dev: netdevice
3040  * @xdp: XDP command
3041  */
3042 static int ice_xdp_safe_mode(struct net_device __always_unused *dev,
3043 			     struct netdev_bpf *xdp)
3044 {
3045 	NL_SET_ERR_MSG_MOD(xdp->extack,
3046 			   "Please provide working DDP firmware package in order to use XDP\n"
3047 			   "Refer to Documentation/networking/device_drivers/ethernet/intel/ice.rst");
3048 	return -EOPNOTSUPP;
3049 }
3050 
3051 /**
3052  * ice_xdp - implements XDP handler
3053  * @dev: netdevice
3054  * @xdp: XDP command
3055  */
3056 int ice_xdp(struct net_device *dev, struct netdev_bpf *xdp)
3057 {
3058 	struct ice_netdev_priv *np = netdev_priv(dev);
3059 	struct ice_vsi *vsi = np->vsi;
3060 	int ret;
3061 
3062 	if (vsi->type != ICE_VSI_PF && vsi->type != ICE_VSI_SF) {
3063 		NL_SET_ERR_MSG_MOD(xdp->extack, "XDP can be loaded only on PF or SF VSI");
3064 		return -EINVAL;
3065 	}
3066 
3067 	mutex_lock(&vsi->xdp_state_lock);
3068 
3069 	switch (xdp->command) {
3070 	case XDP_SETUP_PROG:
3071 		ret = ice_xdp_setup_prog(vsi, xdp->prog, xdp->extack);
3072 		break;
3073 	case XDP_SETUP_XSK_POOL:
3074 		ret = ice_xsk_pool_setup(vsi, xdp->xsk.pool, xdp->xsk.queue_id);
3075 		break;
3076 	default:
3077 		ret = -EINVAL;
3078 	}
3079 
3080 	mutex_unlock(&vsi->xdp_state_lock);
3081 	return ret;
3082 }
3083 
3084 /**
3085  * ice_ena_misc_vector - enable the non-queue interrupts
3086  * @pf: board private structure
3087  */
3088 static void ice_ena_misc_vector(struct ice_pf *pf)
3089 {
3090 	struct ice_hw *hw = &pf->hw;
3091 	u32 pf_intr_start_offset;
3092 	u32 val;
3093 
3094 	/* Disable anti-spoof detection interrupt to prevent spurious event
3095 	 * interrupts during a function reset. Anti-spoof functionally is
3096 	 * still supported.
3097 	 */
3098 	val = rd32(hw, GL_MDCK_TX_TDPU);
3099 	val |= GL_MDCK_TX_TDPU_RCU_ANTISPOOF_ITR_DIS_M;
3100 	wr32(hw, GL_MDCK_TX_TDPU, val);
3101 
3102 	/* clear things first */
3103 	wr32(hw, PFINT_OICR_ENA, 0);	/* disable all */
3104 	rd32(hw, PFINT_OICR);		/* read to clear */
3105 
3106 	val = (PFINT_OICR_ECC_ERR_M |
3107 	       PFINT_OICR_MAL_DETECT_M |
3108 	       PFINT_OICR_GRST_M |
3109 	       PFINT_OICR_PCI_EXCEPTION_M |
3110 	       PFINT_OICR_VFLR_M |
3111 	       PFINT_OICR_HMC_ERR_M |
3112 	       PFINT_OICR_PE_PUSH_M |
3113 	       PFINT_OICR_PE_CRITERR_M);
3114 
3115 	wr32(hw, PFINT_OICR_ENA, val);
3116 
3117 	/* SW_ITR_IDX = 0, but don't change INTENA */
3118 	wr32(hw, GLINT_DYN_CTL(pf->oicr_irq.index),
3119 	     GLINT_DYN_CTL_SW_ITR_INDX_M | GLINT_DYN_CTL_INTENA_MSK_M);
3120 
3121 	if (!pf->hw.dev_caps.ts_dev_info.ts_ll_int_read)
3122 		return;
3123 	pf_intr_start_offset = rd32(hw, PFINT_ALLOC) & PFINT_ALLOC_FIRST;
3124 	wr32(hw, GLINT_DYN_CTL(pf->ll_ts_irq.index + pf_intr_start_offset),
3125 	     GLINT_DYN_CTL_SW_ITR_INDX_M | GLINT_DYN_CTL_INTENA_MSK_M);
3126 }
3127 
3128 /**
3129  * ice_ll_ts_intr - ll_ts interrupt handler
3130  * @irq: interrupt number
3131  * @data: pointer to a q_vector
3132  */
3133 static irqreturn_t ice_ll_ts_intr(int __always_unused irq, void *data)
3134 {
3135 	struct ice_pf *pf = data;
3136 	u32 pf_intr_start_offset;
3137 	struct ice_ptp_tx *tx;
3138 	unsigned long flags;
3139 	struct ice_hw *hw;
3140 	u32 val;
3141 	u8 idx;
3142 
3143 	hw = &pf->hw;
3144 	tx = &pf->ptp.port.tx;
3145 	spin_lock_irqsave(&tx->lock, flags);
3146 	if (tx->init) {
3147 		ice_ptp_complete_tx_single_tstamp(tx);
3148 
3149 		idx = find_next_bit_wrap(tx->in_use, tx->len,
3150 					 tx->last_ll_ts_idx_read + 1);
3151 		if (idx != tx->len)
3152 			ice_ptp_req_tx_single_tstamp(tx, idx);
3153 	}
3154 	spin_unlock_irqrestore(&tx->lock, flags);
3155 
3156 	val = GLINT_DYN_CTL_INTENA_M | GLINT_DYN_CTL_CLEARPBA_M |
3157 	      (ICE_ITR_NONE << GLINT_DYN_CTL_ITR_INDX_S);
3158 	pf_intr_start_offset = rd32(hw, PFINT_ALLOC) & PFINT_ALLOC_FIRST;
3159 	wr32(hw, GLINT_DYN_CTL(pf->ll_ts_irq.index + pf_intr_start_offset),
3160 	     val);
3161 
3162 	return IRQ_HANDLED;
3163 }
3164 
3165 /**
3166  * ice_misc_intr - misc interrupt handler
3167  * @irq: interrupt number
3168  * @data: pointer to a q_vector
3169  */
3170 static irqreturn_t ice_misc_intr(int __always_unused irq, void *data)
3171 {
3172 	struct ice_pf *pf = (struct ice_pf *)data;
3173 	irqreturn_t ret = IRQ_HANDLED;
3174 	struct ice_hw *hw = &pf->hw;
3175 	struct device *dev;
3176 	u32 oicr, ena_mask;
3177 
3178 	dev = ice_pf_to_dev(pf);
3179 	set_bit(ICE_ADMINQ_EVENT_PENDING, pf->state);
3180 	set_bit(ICE_MAILBOXQ_EVENT_PENDING, pf->state);
3181 	set_bit(ICE_SIDEBANDQ_EVENT_PENDING, pf->state);
3182 
3183 	oicr = rd32(hw, PFINT_OICR);
3184 	ena_mask = rd32(hw, PFINT_OICR_ENA);
3185 
3186 	if (oicr & PFINT_OICR_SWINT_M) {
3187 		ena_mask &= ~PFINT_OICR_SWINT_M;
3188 		pf->sw_int_count++;
3189 	}
3190 
3191 	if (oicr & PFINT_OICR_MAL_DETECT_M) {
3192 		ena_mask &= ~PFINT_OICR_MAL_DETECT_M;
3193 		set_bit(ICE_MDD_EVENT_PENDING, pf->state);
3194 	}
3195 	if (oicr & PFINT_OICR_VFLR_M) {
3196 		/* disable any further VFLR event notifications */
3197 		if (test_bit(ICE_VF_RESETS_DISABLED, pf->state)) {
3198 			u32 reg = rd32(hw, PFINT_OICR_ENA);
3199 
3200 			reg &= ~PFINT_OICR_VFLR_M;
3201 			wr32(hw, PFINT_OICR_ENA, reg);
3202 		} else {
3203 			ena_mask &= ~PFINT_OICR_VFLR_M;
3204 			set_bit(ICE_VFLR_EVENT_PENDING, pf->state);
3205 		}
3206 	}
3207 
3208 	if (oicr & PFINT_OICR_GRST_M) {
3209 		u32 reset;
3210 
3211 		/* we have a reset warning */
3212 		ena_mask &= ~PFINT_OICR_GRST_M;
3213 		reset = FIELD_GET(GLGEN_RSTAT_RESET_TYPE_M,
3214 				  rd32(hw, GLGEN_RSTAT));
3215 
3216 		if (reset == ICE_RESET_CORER)
3217 			pf->corer_count++;
3218 		else if (reset == ICE_RESET_GLOBR)
3219 			pf->globr_count++;
3220 		else if (reset == ICE_RESET_EMPR)
3221 			pf->empr_count++;
3222 		else
3223 			dev_dbg(dev, "Invalid reset type %d\n", reset);
3224 
3225 		/* If a reset cycle isn't already in progress, we set a bit in
3226 		 * pf->state so that the service task can start a reset/rebuild.
3227 		 */
3228 		if (!test_and_set_bit(ICE_RESET_OICR_RECV, pf->state)) {
3229 			if (reset == ICE_RESET_CORER)
3230 				set_bit(ICE_CORER_RECV, pf->state);
3231 			else if (reset == ICE_RESET_GLOBR)
3232 				set_bit(ICE_GLOBR_RECV, pf->state);
3233 			else
3234 				set_bit(ICE_EMPR_RECV, pf->state);
3235 
3236 			/* There are couple of different bits at play here.
3237 			 * hw->reset_ongoing indicates whether the hardware is
3238 			 * in reset. This is set to true when a reset interrupt
3239 			 * is received and set back to false after the driver
3240 			 * has determined that the hardware is out of reset.
3241 			 *
3242 			 * ICE_RESET_OICR_RECV in pf->state indicates
3243 			 * that a post reset rebuild is required before the
3244 			 * driver is operational again. This is set above.
3245 			 *
3246 			 * As this is the start of the reset/rebuild cycle, set
3247 			 * both to indicate that.
3248 			 */
3249 			hw->reset_ongoing = true;
3250 		}
3251 	}
3252 
3253 	if (oicr & PFINT_OICR_TSYN_TX_M) {
3254 		ena_mask &= ~PFINT_OICR_TSYN_TX_M;
3255 
3256 		ret = ice_ptp_ts_irq(pf);
3257 	}
3258 
3259 	if (oicr & PFINT_OICR_TSYN_EVNT_M) {
3260 		u8 tmr_idx = hw->func_caps.ts_func_info.tmr_index_owned;
3261 		u32 gltsyn_stat = rd32(hw, GLTSYN_STAT(tmr_idx));
3262 
3263 		ena_mask &= ~PFINT_OICR_TSYN_EVNT_M;
3264 
3265 		if (ice_pf_src_tmr_owned(pf)) {
3266 			/* Save EVENTs from GLTSYN register */
3267 			pf->ptp.ext_ts_irq |= gltsyn_stat &
3268 					      (GLTSYN_STAT_EVENT0_M |
3269 					       GLTSYN_STAT_EVENT1_M |
3270 					       GLTSYN_STAT_EVENT2_M);
3271 
3272 			ice_ptp_extts_event(pf);
3273 		}
3274 	}
3275 
3276 #define ICE_AUX_CRIT_ERR (PFINT_OICR_PE_CRITERR_M | PFINT_OICR_HMC_ERR_M | PFINT_OICR_PE_PUSH_M)
3277 	if (oicr & ICE_AUX_CRIT_ERR) {
3278 		pf->oicr_err_reg |= oicr;
3279 		set_bit(ICE_AUX_ERR_PENDING, pf->state);
3280 		ena_mask &= ~ICE_AUX_CRIT_ERR;
3281 	}
3282 
3283 	/* Report any remaining unexpected interrupts */
3284 	oicr &= ena_mask;
3285 	if (oicr) {
3286 		dev_dbg(dev, "unhandled interrupt oicr=0x%08x\n", oicr);
3287 		/* If a critical error is pending there is no choice but to
3288 		 * reset the device.
3289 		 */
3290 		if (oicr & (PFINT_OICR_PCI_EXCEPTION_M |
3291 			    PFINT_OICR_ECC_ERR_M)) {
3292 			set_bit(ICE_PFR_REQ, pf->state);
3293 		}
3294 	}
3295 	ice_service_task_schedule(pf);
3296 	if (ret == IRQ_HANDLED)
3297 		ice_irq_dynamic_ena(hw, NULL, NULL);
3298 
3299 	return ret;
3300 }
3301 
3302 /**
3303  * ice_misc_intr_thread_fn - misc interrupt thread function
3304  * @irq: interrupt number
3305  * @data: pointer to a q_vector
3306  */
3307 static irqreturn_t ice_misc_intr_thread_fn(int __always_unused irq, void *data)
3308 {
3309 	struct ice_pf *pf = data;
3310 	struct ice_hw *hw;
3311 
3312 	hw = &pf->hw;
3313 
3314 	if (ice_is_reset_in_progress(pf->state))
3315 		goto skip_irq;
3316 
3317 	if (test_and_clear_bit(ICE_MISC_THREAD_TX_TSTAMP, pf->misc_thread)) {
3318 		/* Process outstanding Tx timestamps. If there is more work,
3319 		 * re-arm the interrupt to trigger again.
3320 		 */
3321 		if (ice_ptp_process_ts(pf) == ICE_TX_TSTAMP_WORK_PENDING) {
3322 			wr32(hw, PFINT_OICR, PFINT_OICR_TSYN_TX_M);
3323 			ice_flush(hw);
3324 		}
3325 	}
3326 
3327 skip_irq:
3328 	ice_irq_dynamic_ena(hw, NULL, NULL);
3329 
3330 	return IRQ_HANDLED;
3331 }
3332 
3333 /**
3334  * ice_dis_ctrlq_interrupts - disable control queue interrupts
3335  * @hw: pointer to HW structure
3336  */
3337 static void ice_dis_ctrlq_interrupts(struct ice_hw *hw)
3338 {
3339 	/* disable Admin queue Interrupt causes */
3340 	wr32(hw, PFINT_FW_CTL,
3341 	     rd32(hw, PFINT_FW_CTL) & ~PFINT_FW_CTL_CAUSE_ENA_M);
3342 
3343 	/* disable Mailbox queue Interrupt causes */
3344 	wr32(hw, PFINT_MBX_CTL,
3345 	     rd32(hw, PFINT_MBX_CTL) & ~PFINT_MBX_CTL_CAUSE_ENA_M);
3346 
3347 	wr32(hw, PFINT_SB_CTL,
3348 	     rd32(hw, PFINT_SB_CTL) & ~PFINT_SB_CTL_CAUSE_ENA_M);
3349 
3350 	/* disable Control queue Interrupt causes */
3351 	wr32(hw, PFINT_OICR_CTL,
3352 	     rd32(hw, PFINT_OICR_CTL) & ~PFINT_OICR_CTL_CAUSE_ENA_M);
3353 
3354 	ice_flush(hw);
3355 }
3356 
3357 /**
3358  * ice_free_irq_msix_ll_ts- Unroll ll_ts vector setup
3359  * @pf: board private structure
3360  */
3361 static void ice_free_irq_msix_ll_ts(struct ice_pf *pf)
3362 {
3363 	int irq_num = pf->ll_ts_irq.virq;
3364 
3365 	synchronize_irq(irq_num);
3366 	devm_free_irq(ice_pf_to_dev(pf), irq_num, pf);
3367 
3368 	ice_free_irq(pf, pf->ll_ts_irq);
3369 }
3370 
3371 /**
3372  * ice_free_irq_msix_misc - Unroll misc vector setup
3373  * @pf: board private structure
3374  */
3375 static void ice_free_irq_msix_misc(struct ice_pf *pf)
3376 {
3377 	int misc_irq_num = pf->oicr_irq.virq;
3378 	struct ice_hw *hw = &pf->hw;
3379 
3380 	ice_dis_ctrlq_interrupts(hw);
3381 
3382 	/* disable OICR interrupt */
3383 	wr32(hw, PFINT_OICR_ENA, 0);
3384 	ice_flush(hw);
3385 
3386 	synchronize_irq(misc_irq_num);
3387 	devm_free_irq(ice_pf_to_dev(pf), misc_irq_num, pf);
3388 
3389 	ice_free_irq(pf, pf->oicr_irq);
3390 	if (pf->hw.dev_caps.ts_dev_info.ts_ll_int_read)
3391 		ice_free_irq_msix_ll_ts(pf);
3392 }
3393 
3394 /**
3395  * ice_ena_ctrlq_interrupts - enable control queue interrupts
3396  * @hw: pointer to HW structure
3397  * @reg_idx: HW vector index to associate the control queue interrupts with
3398  */
3399 static void ice_ena_ctrlq_interrupts(struct ice_hw *hw, u16 reg_idx)
3400 {
3401 	u32 val;
3402 
3403 	val = ((reg_idx & PFINT_OICR_CTL_MSIX_INDX_M) |
3404 	       PFINT_OICR_CTL_CAUSE_ENA_M);
3405 	wr32(hw, PFINT_OICR_CTL, val);
3406 
3407 	/* enable Admin queue Interrupt causes */
3408 	val = ((reg_idx & PFINT_FW_CTL_MSIX_INDX_M) |
3409 	       PFINT_FW_CTL_CAUSE_ENA_M);
3410 	wr32(hw, PFINT_FW_CTL, val);
3411 
3412 	/* enable Mailbox queue Interrupt causes */
3413 	val = ((reg_idx & PFINT_MBX_CTL_MSIX_INDX_M) |
3414 	       PFINT_MBX_CTL_CAUSE_ENA_M);
3415 	wr32(hw, PFINT_MBX_CTL, val);
3416 
3417 	if (!hw->dev_caps.ts_dev_info.ts_ll_int_read) {
3418 		/* enable Sideband queue Interrupt causes */
3419 		val = ((reg_idx & PFINT_SB_CTL_MSIX_INDX_M) |
3420 		       PFINT_SB_CTL_CAUSE_ENA_M);
3421 		wr32(hw, PFINT_SB_CTL, val);
3422 	}
3423 
3424 	ice_flush(hw);
3425 }
3426 
3427 /**
3428  * ice_req_irq_msix_misc - Setup the misc vector to handle non queue events
3429  * @pf: board private structure
3430  *
3431  * This sets up the handler for MSIX 0, which is used to manage the
3432  * non-queue interrupts, e.g. AdminQ and errors. This is not used
3433  * when in MSI or Legacy interrupt mode.
3434  */
3435 static int ice_req_irq_msix_misc(struct ice_pf *pf)
3436 {
3437 	struct device *dev = ice_pf_to_dev(pf);
3438 	struct ice_hw *hw = &pf->hw;
3439 	u32 pf_intr_start_offset;
3440 	struct msi_map irq;
3441 	int err = 0;
3442 
3443 	if (!pf->int_name[0])
3444 		snprintf(pf->int_name, sizeof(pf->int_name) - 1, "%s-%s:misc",
3445 			 dev_driver_string(dev), dev_name(dev));
3446 
3447 	if (!pf->int_name_ll_ts[0])
3448 		snprintf(pf->int_name_ll_ts, sizeof(pf->int_name_ll_ts) - 1,
3449 			 "%s-%s:ll_ts", dev_driver_string(dev), dev_name(dev));
3450 	/* Do not request IRQ but do enable OICR interrupt since settings are
3451 	 * lost during reset. Note that this function is called only during
3452 	 * rebuild path and not while reset is in progress.
3453 	 */
3454 	if (ice_is_reset_in_progress(pf->state))
3455 		goto skip_req_irq;
3456 
3457 	/* reserve one vector in irq_tracker for misc interrupts */
3458 	irq = ice_alloc_irq(pf, false);
3459 	if (irq.index < 0)
3460 		return irq.index;
3461 
3462 	pf->oicr_irq = irq;
3463 	err = devm_request_threaded_irq(dev, pf->oicr_irq.virq, ice_misc_intr,
3464 					ice_misc_intr_thread_fn, 0,
3465 					pf->int_name, pf);
3466 	if (err) {
3467 		dev_err(dev, "devm_request_threaded_irq for %s failed: %d\n",
3468 			pf->int_name, err);
3469 		ice_free_irq(pf, pf->oicr_irq);
3470 		return err;
3471 	}
3472 
3473 	/* reserve one vector in irq_tracker for ll_ts interrupt */
3474 	if (!pf->hw.dev_caps.ts_dev_info.ts_ll_int_read)
3475 		goto skip_req_irq;
3476 
3477 	irq = ice_alloc_irq(pf, false);
3478 	if (irq.index < 0)
3479 		return irq.index;
3480 
3481 	pf->ll_ts_irq = irq;
3482 	err = devm_request_irq(dev, pf->ll_ts_irq.virq, ice_ll_ts_intr, 0,
3483 			       pf->int_name_ll_ts, pf);
3484 	if (err) {
3485 		dev_err(dev, "devm_request_irq for %s failed: %d\n",
3486 			pf->int_name_ll_ts, err);
3487 		ice_free_irq(pf, pf->ll_ts_irq);
3488 		return err;
3489 	}
3490 
3491 skip_req_irq:
3492 	ice_ena_misc_vector(pf);
3493 
3494 	ice_ena_ctrlq_interrupts(hw, pf->oicr_irq.index);
3495 	/* This enables LL TS interrupt */
3496 	pf_intr_start_offset = rd32(hw, PFINT_ALLOC) & PFINT_ALLOC_FIRST;
3497 	if (pf->hw.dev_caps.ts_dev_info.ts_ll_int_read)
3498 		wr32(hw, PFINT_SB_CTL,
3499 		     ((pf->ll_ts_irq.index + pf_intr_start_offset) &
3500 		      PFINT_SB_CTL_MSIX_INDX_M) | PFINT_SB_CTL_CAUSE_ENA_M);
3501 	wr32(hw, GLINT_ITR(ICE_RX_ITR, pf->oicr_irq.index),
3502 	     ITR_REG_ALIGN(ICE_ITR_8K) >> ICE_ITR_GRAN_S);
3503 
3504 	ice_flush(hw);
3505 	ice_irq_dynamic_ena(hw, NULL, NULL);
3506 
3507 	return 0;
3508 }
3509 
3510 /**
3511  * ice_set_ops - set netdev and ethtools ops for the given netdev
3512  * @vsi: the VSI associated with the new netdev
3513  */
3514 static void ice_set_ops(struct ice_vsi *vsi)
3515 {
3516 	struct net_device *netdev = vsi->netdev;
3517 	struct ice_pf *pf = ice_netdev_to_pf(netdev);
3518 
3519 	if (ice_is_safe_mode(pf)) {
3520 		netdev->netdev_ops = &ice_netdev_safe_mode_ops;
3521 		ice_set_ethtool_safe_mode_ops(netdev);
3522 		return;
3523 	}
3524 
3525 	netdev->netdev_ops = &ice_netdev_ops;
3526 	netdev->udp_tunnel_nic_info = &pf->hw.udp_tunnel_nic;
3527 	netdev->xdp_metadata_ops = &ice_xdp_md_ops;
3528 	ice_set_ethtool_ops(netdev);
3529 
3530 	if (vsi->type != ICE_VSI_PF)
3531 		return;
3532 
3533 	netdev->xdp_features = NETDEV_XDP_ACT_BASIC | NETDEV_XDP_ACT_REDIRECT |
3534 			       NETDEV_XDP_ACT_XSK_ZEROCOPY |
3535 			       NETDEV_XDP_ACT_RX_SG;
3536 	netdev->xdp_zc_max_segs = ICE_MAX_BUF_TXD;
3537 }
3538 
3539 /**
3540  * ice_set_netdev_features - set features for the given netdev
3541  * @netdev: netdev instance
3542  */
3543 void ice_set_netdev_features(struct net_device *netdev)
3544 {
3545 	struct ice_pf *pf = ice_netdev_to_pf(netdev);
3546 	bool is_dvm_ena = ice_is_dvm_ena(&pf->hw);
3547 	netdev_features_t csumo_features;
3548 	netdev_features_t vlano_features;
3549 	netdev_features_t dflt_features;
3550 	netdev_features_t tso_features;
3551 
3552 	if (ice_is_safe_mode(pf)) {
3553 		/* safe mode */
3554 		netdev->features = NETIF_F_SG | NETIF_F_HIGHDMA;
3555 		netdev->hw_features = netdev->features;
3556 		return;
3557 	}
3558 
3559 	dflt_features = NETIF_F_SG	|
3560 			NETIF_F_HIGHDMA	|
3561 			NETIF_F_NTUPLE	|
3562 			NETIF_F_RXHASH;
3563 
3564 	csumo_features = NETIF_F_RXCSUM	  |
3565 			 NETIF_F_IP_CSUM  |
3566 			 NETIF_F_SCTP_CRC |
3567 			 NETIF_F_IPV6_CSUM;
3568 
3569 	vlano_features = NETIF_F_HW_VLAN_CTAG_FILTER |
3570 			 NETIF_F_HW_VLAN_CTAG_TX     |
3571 			 NETIF_F_HW_VLAN_CTAG_RX;
3572 
3573 	/* Enable CTAG/STAG filtering by default in Double VLAN Mode (DVM) */
3574 	if (is_dvm_ena)
3575 		vlano_features |= NETIF_F_HW_VLAN_STAG_FILTER;
3576 
3577 	tso_features = NETIF_F_TSO			|
3578 		       NETIF_F_TSO_ECN			|
3579 		       NETIF_F_TSO6			|
3580 		       NETIF_F_GSO_GRE			|
3581 		       NETIF_F_GSO_UDP_TUNNEL		|
3582 		       NETIF_F_GSO_GRE_CSUM		|
3583 		       NETIF_F_GSO_UDP_TUNNEL_CSUM	|
3584 		       NETIF_F_GSO_PARTIAL		|
3585 		       NETIF_F_GSO_IPXIP4		|
3586 		       NETIF_F_GSO_IPXIP6		|
3587 		       NETIF_F_GSO_UDP_L4;
3588 
3589 	netdev->gso_partial_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM |
3590 					NETIF_F_GSO_GRE_CSUM;
3591 	/* set features that user can change */
3592 	netdev->hw_features = dflt_features | csumo_features |
3593 			      vlano_features | tso_features;
3594 
3595 	/* add support for HW_CSUM on packets with MPLS header */
3596 	netdev->mpls_features =  NETIF_F_HW_CSUM |
3597 				 NETIF_F_TSO     |
3598 				 NETIF_F_TSO6;
3599 
3600 	/* enable features */
3601 	netdev->features |= netdev->hw_features;
3602 
3603 	netdev->hw_features |= NETIF_F_HW_TC;
3604 	netdev->hw_features |= NETIF_F_LOOPBACK;
3605 
3606 	/* encap and VLAN devices inherit default, csumo and tso features */
3607 	netdev->hw_enc_features |= dflt_features | csumo_features |
3608 				   tso_features;
3609 	netdev->vlan_features |= dflt_features | csumo_features |
3610 				 tso_features;
3611 
3612 	/* advertise support but don't enable by default since only one type of
3613 	 * VLAN offload can be enabled at a time (i.e. CTAG or STAG). When one
3614 	 * type turns on the other has to be turned off. This is enforced by the
3615 	 * ice_fix_features() ndo callback.
3616 	 */
3617 	if (is_dvm_ena)
3618 		netdev->hw_features |= NETIF_F_HW_VLAN_STAG_RX |
3619 			NETIF_F_HW_VLAN_STAG_TX;
3620 
3621 	/* Leave CRC / FCS stripping enabled by default, but allow the value to
3622 	 * be changed at runtime
3623 	 */
3624 	netdev->hw_features |= NETIF_F_RXFCS;
3625 
3626 	/* Allow core to manage IRQs affinity */
3627 	netif_set_affinity_auto(netdev);
3628 
3629 	/* Mutual exclusivity for TSO and GCS is enforced by the set features
3630 	 * ndo callback.
3631 	 */
3632 	if (ice_is_feature_supported(pf, ICE_F_GCS))
3633 		netdev->hw_features |= NETIF_F_HW_CSUM;
3634 
3635 	netif_set_tso_max_size(netdev, ICE_MAX_TSO_SIZE);
3636 }
3637 
3638 /**
3639  * ice_fill_rss_lut - Fill the RSS lookup table with default values
3640  * @lut: Lookup table
3641  * @rss_table_size: Lookup table size
3642  * @rss_size: Range of queue number for hashing
3643  */
3644 void ice_fill_rss_lut(u8 *lut, u16 rss_table_size, u16 rss_size)
3645 {
3646 	u16 i;
3647 
3648 	for (i = 0; i < rss_table_size; i++)
3649 		lut[i] = i % rss_size;
3650 }
3651 
3652 /**
3653  * ice_pf_vsi_setup - Set up a PF VSI
3654  * @pf: board private structure
3655  * @pi: pointer to the port_info instance
3656  *
3657  * Returns pointer to the successfully allocated VSI software struct
3658  * on success, otherwise returns NULL on failure.
3659  */
3660 static struct ice_vsi *
3661 ice_pf_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi)
3662 {
3663 	struct ice_vsi_cfg_params params = {};
3664 
3665 	params.type = ICE_VSI_PF;
3666 	params.port_info = pi;
3667 	params.flags = ICE_VSI_FLAG_INIT;
3668 
3669 	return ice_vsi_setup(pf, &params);
3670 }
3671 
3672 static struct ice_vsi *
3673 ice_chnl_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
3674 		   struct ice_channel *ch)
3675 {
3676 	struct ice_vsi_cfg_params params = {};
3677 
3678 	params.type = ICE_VSI_CHNL;
3679 	params.port_info = pi;
3680 	params.ch = ch;
3681 	params.flags = ICE_VSI_FLAG_INIT;
3682 
3683 	return ice_vsi_setup(pf, &params);
3684 }
3685 
3686 /**
3687  * ice_ctrl_vsi_setup - Set up a control VSI
3688  * @pf: board private structure
3689  * @pi: pointer to the port_info instance
3690  *
3691  * Returns pointer to the successfully allocated VSI software struct
3692  * on success, otherwise returns NULL on failure.
3693  */
3694 static struct ice_vsi *
3695 ice_ctrl_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi)
3696 {
3697 	struct ice_vsi_cfg_params params = {};
3698 
3699 	params.type = ICE_VSI_CTRL;
3700 	params.port_info = pi;
3701 	params.flags = ICE_VSI_FLAG_INIT;
3702 
3703 	return ice_vsi_setup(pf, &params);
3704 }
3705 
3706 /**
3707  * ice_lb_vsi_setup - Set up a loopback VSI
3708  * @pf: board private structure
3709  * @pi: pointer to the port_info instance
3710  *
3711  * Returns pointer to the successfully allocated VSI software struct
3712  * on success, otherwise returns NULL on failure.
3713  */
3714 struct ice_vsi *
3715 ice_lb_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi)
3716 {
3717 	struct ice_vsi_cfg_params params = {};
3718 
3719 	params.type = ICE_VSI_LB;
3720 	params.port_info = pi;
3721 	params.flags = ICE_VSI_FLAG_INIT;
3722 
3723 	return ice_vsi_setup(pf, &params);
3724 }
3725 
3726 /**
3727  * ice_vlan_rx_add_vid - Add a VLAN ID filter to HW offload
3728  * @netdev: network interface to be adjusted
3729  * @proto: VLAN TPID
3730  * @vid: VLAN ID to be added
3731  *
3732  * net_device_ops implementation for adding VLAN IDs
3733  */
3734 int ice_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
3735 {
3736 	struct ice_netdev_priv *np = netdev_priv(netdev);
3737 	struct ice_vsi_vlan_ops *vlan_ops;
3738 	struct ice_vsi *vsi = np->vsi;
3739 	struct ice_vlan vlan;
3740 	int ret;
3741 
3742 	/* VLAN 0 is added by default during load/reset */
3743 	if (!vid)
3744 		return 0;
3745 
3746 	while (test_and_set_bit(ICE_CFG_BUSY, vsi->state))
3747 		usleep_range(1000, 2000);
3748 
3749 	/* Add multicast promisc rule for the VLAN ID to be added if
3750 	 * all-multicast is currently enabled.
3751 	 */
3752 	if (vsi->current_netdev_flags & IFF_ALLMULTI) {
3753 		ret = ice_fltr_set_vsi_promisc(&vsi->back->hw, vsi->idx,
3754 					       ICE_MCAST_VLAN_PROMISC_BITS,
3755 					       vid);
3756 		if (ret)
3757 			goto finish;
3758 	}
3759 
3760 	vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
3761 
3762 	/* Add a switch rule for this VLAN ID so its corresponding VLAN tagged
3763 	 * packets aren't pruned by the device's internal switch on Rx
3764 	 */
3765 	vlan = ICE_VLAN(be16_to_cpu(proto), vid, 0);
3766 	ret = vlan_ops->add_vlan(vsi, &vlan);
3767 	if (ret)
3768 		goto finish;
3769 
3770 	/* If all-multicast is currently enabled and this VLAN ID is only one
3771 	 * besides VLAN-0 we have to update look-up type of multicast promisc
3772 	 * rule for VLAN-0 from ICE_SW_LKUP_PROMISC to ICE_SW_LKUP_PROMISC_VLAN.
3773 	 */
3774 	if ((vsi->current_netdev_flags & IFF_ALLMULTI) &&
3775 	    ice_vsi_num_non_zero_vlans(vsi) == 1) {
3776 		ice_fltr_clear_vsi_promisc(&vsi->back->hw, vsi->idx,
3777 					   ICE_MCAST_PROMISC_BITS, 0);
3778 		ice_fltr_set_vsi_promisc(&vsi->back->hw, vsi->idx,
3779 					 ICE_MCAST_VLAN_PROMISC_BITS, 0);
3780 	}
3781 
3782 finish:
3783 	clear_bit(ICE_CFG_BUSY, vsi->state);
3784 
3785 	return ret;
3786 }
3787 
3788 /**
3789  * ice_vlan_rx_kill_vid - Remove a VLAN ID filter from HW offload
3790  * @netdev: network interface to be adjusted
3791  * @proto: VLAN TPID
3792  * @vid: VLAN ID to be removed
3793  *
3794  * net_device_ops implementation for removing VLAN IDs
3795  */
3796 int ice_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
3797 {
3798 	struct ice_netdev_priv *np = netdev_priv(netdev);
3799 	struct ice_vsi_vlan_ops *vlan_ops;
3800 	struct ice_vsi *vsi = np->vsi;
3801 	struct ice_vlan vlan;
3802 	int ret;
3803 
3804 	/* don't allow removal of VLAN 0 */
3805 	if (!vid)
3806 		return 0;
3807 
3808 	while (test_and_set_bit(ICE_CFG_BUSY, vsi->state))
3809 		usleep_range(1000, 2000);
3810 
3811 	ret = ice_clear_vsi_promisc(&vsi->back->hw, vsi->idx,
3812 				    ICE_MCAST_VLAN_PROMISC_BITS, vid);
3813 	if (ret) {
3814 		netdev_err(netdev, "Error clearing multicast promiscuous mode on VSI %i\n",
3815 			   vsi->vsi_num);
3816 		vsi->current_netdev_flags |= IFF_ALLMULTI;
3817 	}
3818 
3819 	vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
3820 
3821 	/* Make sure VLAN delete is successful before updating VLAN
3822 	 * information
3823 	 */
3824 	vlan = ICE_VLAN(be16_to_cpu(proto), vid, 0);
3825 	ret = vlan_ops->del_vlan(vsi, &vlan);
3826 	if (ret)
3827 		goto finish;
3828 
3829 	/* Remove multicast promisc rule for the removed VLAN ID if
3830 	 * all-multicast is enabled.
3831 	 */
3832 	if (vsi->current_netdev_flags & IFF_ALLMULTI)
3833 		ice_fltr_clear_vsi_promisc(&vsi->back->hw, vsi->idx,
3834 					   ICE_MCAST_VLAN_PROMISC_BITS, vid);
3835 
3836 	if (!ice_vsi_has_non_zero_vlans(vsi)) {
3837 		/* Update look-up type of multicast promisc rule for VLAN 0
3838 		 * from ICE_SW_LKUP_PROMISC_VLAN to ICE_SW_LKUP_PROMISC when
3839 		 * all-multicast is enabled and VLAN 0 is the only VLAN rule.
3840 		 */
3841 		if (vsi->current_netdev_flags & IFF_ALLMULTI) {
3842 			ice_fltr_clear_vsi_promisc(&vsi->back->hw, vsi->idx,
3843 						   ICE_MCAST_VLAN_PROMISC_BITS,
3844 						   0);
3845 			ice_fltr_set_vsi_promisc(&vsi->back->hw, vsi->idx,
3846 						 ICE_MCAST_PROMISC_BITS, 0);
3847 		}
3848 	}
3849 
3850 finish:
3851 	clear_bit(ICE_CFG_BUSY, vsi->state);
3852 
3853 	return ret;
3854 }
3855 
3856 /**
3857  * ice_rep_indr_tc_block_unbind
3858  * @cb_priv: indirection block private data
3859  */
3860 static void ice_rep_indr_tc_block_unbind(void *cb_priv)
3861 {
3862 	struct ice_indr_block_priv *indr_priv = cb_priv;
3863 
3864 	list_del(&indr_priv->list);
3865 	kfree(indr_priv);
3866 }
3867 
3868 /**
3869  * ice_tc_indir_block_unregister - Unregister TC indirect block notifications
3870  * @vsi: VSI struct which has the netdev
3871  */
3872 static void ice_tc_indir_block_unregister(struct ice_vsi *vsi)
3873 {
3874 	struct ice_netdev_priv *np = netdev_priv(vsi->netdev);
3875 
3876 	flow_indr_dev_unregister(ice_indr_setup_tc_cb, np,
3877 				 ice_rep_indr_tc_block_unbind);
3878 }
3879 
3880 /**
3881  * ice_tc_indir_block_register - Register TC indirect block notifications
3882  * @vsi: VSI struct which has the netdev
3883  *
3884  * Returns 0 on success, negative value on failure
3885  */
3886 static int ice_tc_indir_block_register(struct ice_vsi *vsi)
3887 {
3888 	struct ice_netdev_priv *np;
3889 
3890 	if (!vsi || !vsi->netdev)
3891 		return -EINVAL;
3892 
3893 	np = netdev_priv(vsi->netdev);
3894 
3895 	INIT_LIST_HEAD(&np->tc_indr_block_priv_list);
3896 	return flow_indr_dev_register(ice_indr_setup_tc_cb, np);
3897 }
3898 
3899 /**
3900  * ice_get_avail_q_count - Get count of queues in use
3901  * @pf_qmap: bitmap to get queue use count from
3902  * @lock: pointer to a mutex that protects access to pf_qmap
3903  * @size: size of the bitmap
3904  */
3905 static u16
3906 ice_get_avail_q_count(unsigned long *pf_qmap, struct mutex *lock, u16 size)
3907 {
3908 	unsigned long bit;
3909 	u16 count = 0;
3910 
3911 	mutex_lock(lock);
3912 	for_each_clear_bit(bit, pf_qmap, size)
3913 		count++;
3914 	mutex_unlock(lock);
3915 
3916 	return count;
3917 }
3918 
3919 /**
3920  * ice_get_avail_txq_count - Get count of Tx queues in use
3921  * @pf: pointer to an ice_pf instance
3922  */
3923 u16 ice_get_avail_txq_count(struct ice_pf *pf)
3924 {
3925 	return ice_get_avail_q_count(pf->avail_txqs, &pf->avail_q_mutex,
3926 				     pf->max_pf_txqs);
3927 }
3928 
3929 /**
3930  * ice_get_avail_rxq_count - Get count of Rx queues in use
3931  * @pf: pointer to an ice_pf instance
3932  */
3933 u16 ice_get_avail_rxq_count(struct ice_pf *pf)
3934 {
3935 	return ice_get_avail_q_count(pf->avail_rxqs, &pf->avail_q_mutex,
3936 				     pf->max_pf_rxqs);
3937 }
3938 
3939 /**
3940  * ice_deinit_pf - Unrolls initialziations done by ice_init_pf
3941  * @pf: board private structure to initialize
3942  */
3943 void ice_deinit_pf(struct ice_pf *pf)
3944 {
3945 	/* note that we unroll also on ice_init_pf() failure here */
3946 
3947 	mutex_destroy(&pf->lag_mutex);
3948 	mutex_destroy(&pf->adev_mutex);
3949 	mutex_destroy(&pf->sw_mutex);
3950 	mutex_destroy(&pf->tc_mutex);
3951 	mutex_destroy(&pf->avail_q_mutex);
3952 	mutex_destroy(&pf->vfs.table_lock);
3953 
3954 	if (pf->avail_txqs) {
3955 		bitmap_free(pf->avail_txqs);
3956 		pf->avail_txqs = NULL;
3957 	}
3958 
3959 	if (pf->avail_rxqs) {
3960 		bitmap_free(pf->avail_rxqs);
3961 		pf->avail_rxqs = NULL;
3962 	}
3963 
3964 	if (pf->txtime_txqs) {
3965 		bitmap_free(pf->txtime_txqs);
3966 		pf->txtime_txqs = NULL;
3967 	}
3968 
3969 	if (pf->ptp.clock)
3970 		ptp_clock_unregister(pf->ptp.clock);
3971 
3972 	if (!xa_empty(&pf->irq_tracker.entries))
3973 		ice_free_irq_msix_misc(pf);
3974 
3975 	xa_destroy(&pf->dyn_ports);
3976 	xa_destroy(&pf->sf_nums);
3977 }
3978 
3979 /**
3980  * ice_set_pf_caps - set PFs capability flags
3981  * @pf: pointer to the PF instance
3982  */
3983 static void ice_set_pf_caps(struct ice_pf *pf)
3984 {
3985 	struct ice_hw_func_caps *func_caps = &pf->hw.func_caps;
3986 
3987 	clear_bit(ICE_FLAG_RDMA_ENA, pf->flags);
3988 	if (func_caps->common_cap.rdma)
3989 		set_bit(ICE_FLAG_RDMA_ENA, pf->flags);
3990 	clear_bit(ICE_FLAG_DCB_CAPABLE, pf->flags);
3991 	if (func_caps->common_cap.dcb)
3992 		set_bit(ICE_FLAG_DCB_CAPABLE, pf->flags);
3993 	clear_bit(ICE_FLAG_SRIOV_CAPABLE, pf->flags);
3994 	if (func_caps->common_cap.sr_iov_1_1) {
3995 		set_bit(ICE_FLAG_SRIOV_CAPABLE, pf->flags);
3996 		pf->vfs.num_supported = min_t(int, func_caps->num_allocd_vfs,
3997 					      ICE_MAX_SRIOV_VFS);
3998 	}
3999 	clear_bit(ICE_FLAG_RSS_ENA, pf->flags);
4000 	if (func_caps->common_cap.rss_table_size)
4001 		set_bit(ICE_FLAG_RSS_ENA, pf->flags);
4002 
4003 	clear_bit(ICE_FLAG_FD_ENA, pf->flags);
4004 	if (func_caps->fd_fltr_guar > 0 || func_caps->fd_fltr_best_effort > 0) {
4005 		u16 unused;
4006 
4007 		/* ctrl_vsi_idx will be set to a valid value when flow director
4008 		 * is setup by ice_init_fdir
4009 		 */
4010 		pf->ctrl_vsi_idx = ICE_NO_VSI;
4011 		set_bit(ICE_FLAG_FD_ENA, pf->flags);
4012 		/* force guaranteed filter pool for PF */
4013 		ice_alloc_fd_guar_item(&pf->hw, &unused,
4014 				       func_caps->fd_fltr_guar);
4015 		/* force shared filter pool for PF */
4016 		ice_alloc_fd_shrd_item(&pf->hw, &unused,
4017 				       func_caps->fd_fltr_best_effort);
4018 	}
4019 
4020 	clear_bit(ICE_FLAG_PTP_SUPPORTED, pf->flags);
4021 	if (func_caps->common_cap.ieee_1588)
4022 		set_bit(ICE_FLAG_PTP_SUPPORTED, pf->flags);
4023 
4024 	pf->max_pf_txqs = func_caps->common_cap.num_txq;
4025 	pf->max_pf_rxqs = func_caps->common_cap.num_rxq;
4026 }
4027 
4028 void ice_start_service_task(struct ice_pf *pf)
4029 {
4030 	timer_setup(&pf->serv_tmr, ice_service_timer, 0);
4031 	pf->serv_tmr_period = HZ;
4032 	INIT_WORK(&pf->serv_task, ice_service_task);
4033 	clear_bit(ICE_SERVICE_SCHED, pf->state);
4034 }
4035 
4036 /**
4037  * ice_init_pf - Initialize general software structures (struct ice_pf)
4038  * @pf: board private structure to initialize
4039  * Return: 0 on success, negative errno otherwise.
4040  */
4041 int ice_init_pf(struct ice_pf *pf)
4042 {
4043 	struct udp_tunnel_nic_info *udp_tunnel_nic = &pf->hw.udp_tunnel_nic;
4044 	struct device *dev = ice_pf_to_dev(pf);
4045 	struct ice_hw *hw = &pf->hw;
4046 	int err = -ENOMEM;
4047 
4048 	mutex_init(&pf->sw_mutex);
4049 	mutex_init(&pf->tc_mutex);
4050 	mutex_init(&pf->adev_mutex);
4051 	mutex_init(&pf->lag_mutex);
4052 
4053 	INIT_HLIST_HEAD(&pf->aq_wait_list);
4054 	spin_lock_init(&pf->aq_wait_lock);
4055 	init_waitqueue_head(&pf->aq_wait_queue);
4056 
4057 	init_waitqueue_head(&pf->reset_wait_queue);
4058 
4059 	mutex_init(&pf->avail_q_mutex);
4060 
4061 	mutex_init(&pf->vfs.table_lock);
4062 	hash_init(pf->vfs.table);
4063 	if (ice_is_feature_supported(pf, ICE_F_MBX_LIMIT))
4064 		wr32(&pf->hw, E830_MBX_PF_IN_FLIGHT_VF_MSGS_THRESH,
4065 		     ICE_MBX_OVERFLOW_WATERMARK);
4066 	else
4067 		ice_mbx_init_snapshot(&pf->hw);
4068 
4069 	xa_init(&pf->dyn_ports);
4070 	xa_init(&pf->sf_nums);
4071 
4072 	pf->avail_txqs = bitmap_zalloc(pf->max_pf_txqs, GFP_KERNEL);
4073 	pf->avail_rxqs = bitmap_zalloc(pf->max_pf_rxqs, GFP_KERNEL);
4074 	pf->txtime_txqs = bitmap_zalloc(pf->max_pf_txqs, GFP_KERNEL);
4075 	if (!pf->avail_txqs || !pf->avail_rxqs || !pf->txtime_txqs)
4076 		goto undo_init;
4077 
4078 	udp_tunnel_nic->set_port = ice_udp_tunnel_set_port;
4079 	udp_tunnel_nic->unset_port = ice_udp_tunnel_unset_port;
4080 	udp_tunnel_nic->shared = &hw->udp_tunnel_shared;
4081 	udp_tunnel_nic->tables[0].n_entries = hw->tnl.valid_count[TNL_VXLAN];
4082 	udp_tunnel_nic->tables[0].tunnel_types = UDP_TUNNEL_TYPE_VXLAN;
4083 	udp_tunnel_nic->tables[1].n_entries = hw->tnl.valid_count[TNL_GENEVE];
4084 	udp_tunnel_nic->tables[1].tunnel_types = UDP_TUNNEL_TYPE_GENEVE;
4085 
4086 	/* In case of MSIX we are going to setup the misc vector right here
4087 	 * to handle admin queue events etc. In case of legacy and MSI
4088 	 * the misc functionality and queue processing is combined in
4089 	 * the same vector and that gets setup at open.
4090 	 */
4091 	err = ice_req_irq_msix_misc(pf);
4092 	if (err) {
4093 		dev_err(dev, "setup of misc vector failed: %d\n", err);
4094 		goto undo_init;
4095 	}
4096 
4097 	return 0;
4098 undo_init:
4099 	/* deinit handles half-initialized pf just fine */
4100 	ice_deinit_pf(pf);
4101 	return err;
4102 }
4103 
4104 /**
4105  * ice_is_wol_supported - check if WoL is supported
4106  * @hw: pointer to hardware info
4107  *
4108  * Check if WoL is supported based on the HW configuration.
4109  * Returns true if NVM supports and enables WoL for this port, false otherwise
4110  */
4111 bool ice_is_wol_supported(struct ice_hw *hw)
4112 {
4113 	u16 wol_ctrl;
4114 
4115 	/* A bit set to 1 in the NVM Software Reserved Word 2 (WoL control
4116 	 * word) indicates WoL is not supported on the corresponding PF ID.
4117 	 */
4118 	if (ice_read_sr_word(hw, ICE_SR_NVM_WOL_CFG, &wol_ctrl))
4119 		return false;
4120 
4121 	return !(BIT(hw->port_info->lport) & wol_ctrl);
4122 }
4123 
4124 /**
4125  * ice_vsi_recfg_qs - Change the number of queues on a VSI
4126  * @vsi: VSI being changed
4127  * @new_rx: new number of Rx queues
4128  * @new_tx: new number of Tx queues
4129  * @locked: is adev device_lock held
4130  *
4131  * Only change the number of queues if new_tx, or new_rx is non-0.
4132  *
4133  * Returns 0 on success.
4134  */
4135 int ice_vsi_recfg_qs(struct ice_vsi *vsi, int new_rx, int new_tx, bool locked)
4136 {
4137 	struct ice_pf *pf = vsi->back;
4138 	int i, err = 0, timeout = 50;
4139 
4140 	if (!new_rx && !new_tx)
4141 		return -EINVAL;
4142 
4143 	while (test_and_set_bit(ICE_CFG_BUSY, pf->state)) {
4144 		timeout--;
4145 		if (!timeout)
4146 			return -EBUSY;
4147 		usleep_range(1000, 2000);
4148 	}
4149 
4150 	if (new_tx)
4151 		vsi->req_txq = (u16)new_tx;
4152 	if (new_rx)
4153 		vsi->req_rxq = (u16)new_rx;
4154 
4155 	/* set for the next time the netdev is started */
4156 	if (!netif_running(vsi->netdev)) {
4157 		err = ice_vsi_rebuild(vsi, ICE_VSI_FLAG_NO_INIT);
4158 		if (err)
4159 			goto rebuild_err;
4160 		dev_dbg(ice_pf_to_dev(pf), "Link is down, queue count change happens when link is brought up\n");
4161 		goto done;
4162 	}
4163 
4164 	ice_vsi_close(vsi);
4165 	err = ice_vsi_rebuild(vsi, ICE_VSI_FLAG_NO_INIT);
4166 	if (err)
4167 		goto rebuild_err;
4168 
4169 	ice_for_each_traffic_class(i) {
4170 		if (vsi->tc_cfg.ena_tc & BIT(i))
4171 			netdev_set_tc_queue(vsi->netdev,
4172 					    vsi->tc_cfg.tc_info[i].netdev_tc,
4173 					    vsi->tc_cfg.tc_info[i].qcount_tx,
4174 					    vsi->tc_cfg.tc_info[i].qoffset);
4175 	}
4176 	ice_pf_dcb_recfg(pf, locked);
4177 	ice_vsi_open(vsi);
4178 	goto done;
4179 
4180 rebuild_err:
4181 	dev_err(ice_pf_to_dev(pf), "Error during VSI rebuild: %d. Unload and reload the driver.\n",
4182 		err);
4183 done:
4184 	clear_bit(ICE_CFG_BUSY, pf->state);
4185 	return err;
4186 }
4187 
4188 /**
4189  * ice_set_safe_mode_vlan_cfg - configure PF VSI to allow all VLANs in safe mode
4190  * @pf: PF to configure
4191  *
4192  * No VLAN offloads/filtering are advertised in safe mode so make sure the PF
4193  * VSI can still Tx/Rx VLAN tagged packets.
4194  */
4195 static void ice_set_safe_mode_vlan_cfg(struct ice_pf *pf)
4196 {
4197 	struct ice_vsi *vsi = ice_get_main_vsi(pf);
4198 	struct ice_vsi_ctx *ctxt;
4199 	struct ice_hw *hw;
4200 	int status;
4201 
4202 	if (!vsi)
4203 		return;
4204 
4205 	ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
4206 	if (!ctxt)
4207 		return;
4208 
4209 	hw = &pf->hw;
4210 	ctxt->info = vsi->info;
4211 
4212 	ctxt->info.valid_sections =
4213 		cpu_to_le16(ICE_AQ_VSI_PROP_VLAN_VALID |
4214 			    ICE_AQ_VSI_PROP_SECURITY_VALID |
4215 			    ICE_AQ_VSI_PROP_SW_VALID);
4216 
4217 	/* disable VLAN anti-spoof */
4218 	ctxt->info.sec_flags &= ~(ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
4219 				  ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S);
4220 
4221 	/* disable VLAN pruning and keep all other settings */
4222 	ctxt->info.sw_flags2 &= ~ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
4223 
4224 	/* allow all VLANs on Tx and don't strip on Rx */
4225 	ctxt->info.inner_vlan_flags = ICE_AQ_VSI_INNER_VLAN_TX_MODE_ALL |
4226 		ICE_AQ_VSI_INNER_VLAN_EMODE_NOTHING;
4227 
4228 	status = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
4229 	if (status) {
4230 		dev_err(ice_pf_to_dev(vsi->back), "Failed to update VSI for safe mode VLANs, err %d aq_err %s\n",
4231 			status, libie_aq_str(hw->adminq.sq_last_status));
4232 	} else {
4233 		vsi->info.sec_flags = ctxt->info.sec_flags;
4234 		vsi->info.sw_flags2 = ctxt->info.sw_flags2;
4235 		vsi->info.inner_vlan_flags = ctxt->info.inner_vlan_flags;
4236 	}
4237 
4238 	kfree(ctxt);
4239 }
4240 
4241 /**
4242  * ice_log_pkg_init - log result of DDP package load
4243  * @hw: pointer to hardware info
4244  * @state: state of package load
4245  */
4246 static void ice_log_pkg_init(struct ice_hw *hw, enum ice_ddp_state state)
4247 {
4248 	struct ice_pf *pf = hw->back;
4249 	struct device *dev;
4250 
4251 	dev = ice_pf_to_dev(pf);
4252 
4253 	switch (state) {
4254 	case ICE_DDP_PKG_SUCCESS:
4255 		dev_info(dev, "The DDP package was successfully loaded: %s version %d.%d.%d.%d\n",
4256 			 hw->active_pkg_name,
4257 			 hw->active_pkg_ver.major,
4258 			 hw->active_pkg_ver.minor,
4259 			 hw->active_pkg_ver.update,
4260 			 hw->active_pkg_ver.draft);
4261 		break;
4262 	case ICE_DDP_PKG_SAME_VERSION_ALREADY_LOADED:
4263 		dev_info(dev, "DDP package already present on device: %s version %d.%d.%d.%d\n",
4264 			 hw->active_pkg_name,
4265 			 hw->active_pkg_ver.major,
4266 			 hw->active_pkg_ver.minor,
4267 			 hw->active_pkg_ver.update,
4268 			 hw->active_pkg_ver.draft);
4269 		break;
4270 	case ICE_DDP_PKG_ALREADY_LOADED_NOT_SUPPORTED:
4271 		dev_err(dev, "The device has a DDP package that is not supported by the driver.  The device has package '%s' version %d.%d.x.x.  The driver requires version %d.%d.x.x.  Entering Safe Mode.\n",
4272 			hw->active_pkg_name,
4273 			hw->active_pkg_ver.major,
4274 			hw->active_pkg_ver.minor,
4275 			ICE_PKG_SUPP_VER_MAJ, ICE_PKG_SUPP_VER_MNR);
4276 		break;
4277 	case ICE_DDP_PKG_COMPATIBLE_ALREADY_LOADED:
4278 		dev_info(dev, "The driver could not load the DDP package file because a compatible DDP package is already present on the device.  The device has package '%s' version %d.%d.%d.%d.  The package file found by the driver: '%s' version %d.%d.%d.%d.\n",
4279 			 hw->active_pkg_name,
4280 			 hw->active_pkg_ver.major,
4281 			 hw->active_pkg_ver.minor,
4282 			 hw->active_pkg_ver.update,
4283 			 hw->active_pkg_ver.draft,
4284 			 hw->pkg_name,
4285 			 hw->pkg_ver.major,
4286 			 hw->pkg_ver.minor,
4287 			 hw->pkg_ver.update,
4288 			 hw->pkg_ver.draft);
4289 		break;
4290 	case ICE_DDP_PKG_FW_MISMATCH:
4291 		dev_err(dev, "The firmware loaded on the device is not compatible with the DDP package.  Please update the device's NVM.  Entering safe mode.\n");
4292 		break;
4293 	case ICE_DDP_PKG_INVALID_FILE:
4294 		dev_err(dev, "The DDP package file is invalid. Entering Safe Mode.\n");
4295 		break;
4296 	case ICE_DDP_PKG_FILE_VERSION_TOO_HIGH:
4297 		dev_err(dev, "The DDP package file version is higher than the driver supports.  Please use an updated driver.  Entering Safe Mode.\n");
4298 		break;
4299 	case ICE_DDP_PKG_FILE_VERSION_TOO_LOW:
4300 		dev_err(dev, "The DDP package file version is lower than the driver supports.  The driver requires version %d.%d.x.x.  Please use an updated DDP Package file.  Entering Safe Mode.\n",
4301 			ICE_PKG_SUPP_VER_MAJ, ICE_PKG_SUPP_VER_MNR);
4302 		break;
4303 	case ICE_DDP_PKG_FILE_SIGNATURE_INVALID:
4304 		dev_err(dev, "The DDP package could not be loaded because its signature is not valid.  Please use a valid DDP Package.  Entering Safe Mode.\n");
4305 		break;
4306 	case ICE_DDP_PKG_FILE_REVISION_TOO_LOW:
4307 		dev_err(dev, "The DDP Package could not be loaded because its security revision is too low.  Please use an updated DDP Package.  Entering Safe Mode.\n");
4308 		break;
4309 	case ICE_DDP_PKG_LOAD_ERROR:
4310 		dev_err(dev, "An error occurred on the device while loading the DDP package.  The device will be reset.\n");
4311 		/* poll for reset to complete */
4312 		if (ice_check_reset(hw))
4313 			dev_err(dev, "Error resetting device. Please reload the driver\n");
4314 		break;
4315 	case ICE_DDP_PKG_ERR:
4316 	default:
4317 		dev_err(dev, "An unknown error occurred when loading the DDP package.  Entering Safe Mode.\n");
4318 		break;
4319 	}
4320 }
4321 
4322 /**
4323  * ice_load_pkg - load/reload the DDP Package file
4324  * @firmware: firmware structure when firmware requested or NULL for reload
4325  * @pf: pointer to the PF instance
4326  *
4327  * Called on probe and post CORER/GLOBR rebuild to load DDP Package and
4328  * initialize HW tables.
4329  */
4330 static void
4331 ice_load_pkg(const struct firmware *firmware, struct ice_pf *pf)
4332 {
4333 	enum ice_ddp_state state = ICE_DDP_PKG_ERR;
4334 	struct device *dev = ice_pf_to_dev(pf);
4335 	struct ice_hw *hw = &pf->hw;
4336 
4337 	/* Load DDP Package */
4338 	if (firmware && !hw->pkg_copy) {
4339 		state = ice_copy_and_init_pkg(hw, firmware->data,
4340 					      firmware->size);
4341 		ice_log_pkg_init(hw, state);
4342 	} else if (!firmware && hw->pkg_copy) {
4343 		/* Reload package during rebuild after CORER/GLOBR reset */
4344 		state = ice_init_pkg(hw, hw->pkg_copy, hw->pkg_size);
4345 		ice_log_pkg_init(hw, state);
4346 	} else {
4347 		dev_err(dev, "The DDP package file failed to load. Entering Safe Mode.\n");
4348 	}
4349 
4350 	if (!ice_is_init_pkg_successful(state)) {
4351 		/* Safe Mode */
4352 		clear_bit(ICE_FLAG_ADV_FEATURES, pf->flags);
4353 		return;
4354 	}
4355 
4356 	/* Successful download package is the precondition for advanced
4357 	 * features, hence setting the ICE_FLAG_ADV_FEATURES flag
4358 	 */
4359 	set_bit(ICE_FLAG_ADV_FEATURES, pf->flags);
4360 }
4361 
4362 /**
4363  * ice_verify_cacheline_size - verify driver's assumption of 64 Byte cache lines
4364  * @pf: pointer to the PF structure
4365  *
4366  * There is no error returned here because the driver should be able to handle
4367  * 128 Byte cache lines, so we only print a warning in case issues are seen,
4368  * specifically with Tx.
4369  */
4370 static void ice_verify_cacheline_size(struct ice_pf *pf)
4371 {
4372 	if (rd32(&pf->hw, GLPCI_CNF2) & GLPCI_CNF2_CACHELINE_SIZE_M)
4373 		dev_warn(ice_pf_to_dev(pf), "%d Byte cache line assumption is invalid, driver may have Tx timeouts!\n",
4374 			 ICE_CACHE_LINE_BYTES);
4375 }
4376 
4377 /**
4378  * ice_send_version - update firmware with driver version
4379  * @pf: PF struct
4380  *
4381  * Returns 0 on success, else error code
4382  */
4383 static int ice_send_version(struct ice_pf *pf)
4384 {
4385 	struct ice_driver_ver dv;
4386 
4387 	dv.major_ver = 0xff;
4388 	dv.minor_ver = 0xff;
4389 	dv.build_ver = 0xff;
4390 	dv.subbuild_ver = 0;
4391 	strscpy((char *)dv.driver_string, UTS_RELEASE,
4392 		sizeof(dv.driver_string));
4393 	return ice_aq_send_driver_ver(&pf->hw, &dv, NULL);
4394 }
4395 
4396 /**
4397  * ice_init_fdir - Initialize flow director VSI and configuration
4398  * @pf: pointer to the PF instance
4399  *
4400  * returns 0 on success, negative on error
4401  */
4402 static int ice_init_fdir(struct ice_pf *pf)
4403 {
4404 	struct device *dev = ice_pf_to_dev(pf);
4405 	struct ice_vsi *ctrl_vsi;
4406 	int err;
4407 
4408 	/* Side Band Flow Director needs to have a control VSI.
4409 	 * Allocate it and store it in the PF.
4410 	 */
4411 	ctrl_vsi = ice_ctrl_vsi_setup(pf, pf->hw.port_info);
4412 	if (!ctrl_vsi) {
4413 		dev_dbg(dev, "could not create control VSI\n");
4414 		return -ENOMEM;
4415 	}
4416 
4417 	err = ice_vsi_open_ctrl(ctrl_vsi);
4418 	if (err) {
4419 		dev_dbg(dev, "could not open control VSI\n");
4420 		goto err_vsi_open;
4421 	}
4422 
4423 	mutex_init(&pf->hw.fdir_fltr_lock);
4424 
4425 	err = ice_fdir_create_dflt_rules(pf);
4426 	if (err)
4427 		goto err_fdir_rule;
4428 
4429 	return 0;
4430 
4431 err_fdir_rule:
4432 	ice_fdir_release_flows(&pf->hw);
4433 	ice_vsi_close(ctrl_vsi);
4434 err_vsi_open:
4435 	ice_vsi_release(ctrl_vsi);
4436 	if (pf->ctrl_vsi_idx != ICE_NO_VSI) {
4437 		pf->vsi[pf->ctrl_vsi_idx] = NULL;
4438 		pf->ctrl_vsi_idx = ICE_NO_VSI;
4439 	}
4440 	return err;
4441 }
4442 
4443 static void ice_deinit_fdir(struct ice_pf *pf)
4444 {
4445 	struct ice_vsi *vsi = ice_get_ctrl_vsi(pf);
4446 
4447 	if (!vsi)
4448 		return;
4449 
4450 	ice_vsi_manage_fdir(vsi, false);
4451 	ice_vsi_release(vsi);
4452 	if (pf->ctrl_vsi_idx != ICE_NO_VSI) {
4453 		pf->vsi[pf->ctrl_vsi_idx] = NULL;
4454 		pf->ctrl_vsi_idx = ICE_NO_VSI;
4455 	}
4456 
4457 	mutex_destroy(&(&pf->hw)->fdir_fltr_lock);
4458 }
4459 
4460 /**
4461  * ice_get_opt_fw_name - return optional firmware file name or NULL
4462  * @pf: pointer to the PF instance
4463  */
4464 static char *ice_get_opt_fw_name(struct ice_pf *pf)
4465 {
4466 	/* Optional firmware name same as default with additional dash
4467 	 * followed by a EUI-64 identifier (PCIe Device Serial Number)
4468 	 */
4469 	struct pci_dev *pdev = pf->pdev;
4470 	char *opt_fw_filename;
4471 	u64 dsn;
4472 
4473 	/* Determine the name of the optional file using the DSN (two
4474 	 * dwords following the start of the DSN Capability).
4475 	 */
4476 	dsn = pci_get_dsn(pdev);
4477 	if (!dsn)
4478 		return NULL;
4479 
4480 	opt_fw_filename = kzalloc(NAME_MAX, GFP_KERNEL);
4481 	if (!opt_fw_filename)
4482 		return NULL;
4483 
4484 	snprintf(opt_fw_filename, NAME_MAX, "%sice-%016llx.pkg",
4485 		 ICE_DDP_PKG_PATH, dsn);
4486 
4487 	return opt_fw_filename;
4488 }
4489 
4490 /**
4491  * ice_request_fw - Device initialization routine
4492  * @pf: pointer to the PF instance
4493  * @firmware: double pointer to firmware struct
4494  *
4495  * Return: zero when successful, negative values otherwise.
4496  */
4497 static int ice_request_fw(struct ice_pf *pf, const struct firmware **firmware)
4498 {
4499 	char *opt_fw_filename = ice_get_opt_fw_name(pf);
4500 	struct device *dev = ice_pf_to_dev(pf);
4501 	int err = 0;
4502 
4503 	/* optional device-specific DDP (if present) overrides the default DDP
4504 	 * package file. kernel logs a debug message if the file doesn't exist,
4505 	 * and warning messages for other errors.
4506 	 */
4507 	if (opt_fw_filename) {
4508 		err = firmware_request_nowarn(firmware, opt_fw_filename, dev);
4509 		kfree(opt_fw_filename);
4510 		if (!err)
4511 			return err;
4512 	}
4513 	err = request_firmware(firmware, ICE_DDP_PKG_FILE, dev);
4514 	if (err)
4515 		dev_err(dev, "The DDP package file was not found or could not be read. Entering Safe Mode\n");
4516 
4517 	return err;
4518 }
4519 
4520 /**
4521  * ice_init_tx_topology - performs Tx topology initialization
4522  * @hw: pointer to the hardware structure
4523  * @firmware: pointer to firmware structure
4524  *
4525  * Return: zero when init was successful, negative values otherwise.
4526  */
4527 static int
4528 ice_init_tx_topology(struct ice_hw *hw, const struct firmware *firmware)
4529 {
4530 	u8 num_tx_sched_layers = hw->num_tx_sched_layers;
4531 	struct ice_pf *pf = hw->back;
4532 	struct device *dev;
4533 	int err;
4534 
4535 	dev = ice_pf_to_dev(pf);
4536 	err = ice_cfg_tx_topo(hw, firmware->data, firmware->size);
4537 	if (!err) {
4538 		if (hw->num_tx_sched_layers > num_tx_sched_layers)
4539 			dev_info(dev, "Tx scheduling layers switching feature disabled\n");
4540 		else
4541 			dev_info(dev, "Tx scheduling layers switching feature enabled\n");
4542 		return 0;
4543 	} else if (err == -ENODEV) {
4544 		/* If we failed to re-initialize the device, we can no longer
4545 		 * continue loading.
4546 		 */
4547 		dev_warn(dev, "Failed to initialize hardware after applying Tx scheduling configuration.\n");
4548 		return err;
4549 	} else if (err == -EIO) {
4550 		dev_info(dev, "DDP package does not support Tx scheduling layers switching feature - please update to the latest DDP package and try again\n");
4551 		return 0;
4552 	} else if (err == -EEXIST) {
4553 		return 0;
4554 	}
4555 
4556 	/* Do not treat this as a fatal error. */
4557 	dev_info(dev, "Failed to apply Tx scheduling configuration, err %pe\n",
4558 		 ERR_PTR(err));
4559 	return 0;
4560 }
4561 
4562 /**
4563  * ice_init_supported_rxdids - Initialize supported Rx descriptor IDs
4564  * @hw: pointer to the hardware structure
4565  * @pf: pointer to pf structure
4566  *
4567  * The pf->supported_rxdids bitmap is used to indicate to VFs which descriptor
4568  * formats the PF hardware supports. The exact list of supported RXDIDs
4569  * depends on the loaded DDP package. The IDs can be determined by reading the
4570  * GLFLXP_RXDID_FLAGS register after the DDP package is loaded.
4571  *
4572  * Note that the legacy 32-byte RXDID 0 is always supported but is not listed
4573  * in the DDP package. The 16-byte legacy descriptor is never supported by
4574  * VFs.
4575  */
4576 static void ice_init_supported_rxdids(struct ice_hw *hw, struct ice_pf *pf)
4577 {
4578 	pf->supported_rxdids = BIT(ICE_RXDID_LEGACY_1);
4579 
4580 	for (int i = ICE_RXDID_FLEX_NIC; i < ICE_FLEX_DESC_RXDID_MAX_NUM; i++) {
4581 		u32 regval;
4582 
4583 		regval = rd32(hw, GLFLXP_RXDID_FLAGS(i, 0));
4584 		if ((regval >> GLFLXP_RXDID_FLAGS_FLEXIFLAG_4N_S)
4585 			& GLFLXP_RXDID_FLAGS_FLEXIFLAG_4N_M)
4586 			pf->supported_rxdids |= BIT(i);
4587 	}
4588 }
4589 
4590 /**
4591  * ice_init_ddp_config - DDP related configuration
4592  * @hw: pointer to the hardware structure
4593  * @pf: pointer to pf structure
4594  *
4595  * This function loads DDP file from the disk, then initializes Tx
4596  * topology. At the end DDP package is loaded on the card.
4597  *
4598  * Return: zero when init was successful, negative values otherwise.
4599  */
4600 static int ice_init_ddp_config(struct ice_hw *hw, struct ice_pf *pf)
4601 {
4602 	struct device *dev = ice_pf_to_dev(pf);
4603 	const struct firmware *firmware = NULL;
4604 	int err;
4605 
4606 	err = ice_request_fw(pf, &firmware);
4607 	if (err) {
4608 		dev_err(dev, "Fail during requesting FW: %d\n", err);
4609 		return err;
4610 	}
4611 
4612 	err = ice_init_tx_topology(hw, firmware);
4613 	if (err) {
4614 		dev_err(dev, "Fail during initialization of Tx topology: %d\n",
4615 			err);
4616 		release_firmware(firmware);
4617 		return err;
4618 	}
4619 
4620 	/* Download firmware to device */
4621 	ice_load_pkg(firmware, pf);
4622 	release_firmware(firmware);
4623 
4624 	/* Initialize the supported Rx descriptor IDs after loading DDP */
4625 	ice_init_supported_rxdids(hw, pf);
4626 
4627 	return 0;
4628 }
4629 
4630 /**
4631  * ice_print_wake_reason - show the wake up cause in the log
4632  * @pf: pointer to the PF struct
4633  */
4634 static void ice_print_wake_reason(struct ice_pf *pf)
4635 {
4636 	u32 wus = pf->wakeup_reason;
4637 	const char *wake_str;
4638 
4639 	/* if no wake event, nothing to print */
4640 	if (!wus)
4641 		return;
4642 
4643 	if (wus & PFPM_WUS_LNKC_M)
4644 		wake_str = "Link\n";
4645 	else if (wus & PFPM_WUS_MAG_M)
4646 		wake_str = "Magic Packet\n";
4647 	else if (wus & PFPM_WUS_MNG_M)
4648 		wake_str = "Management\n";
4649 	else if (wus & PFPM_WUS_FW_RST_WK_M)
4650 		wake_str = "Firmware Reset\n";
4651 	else
4652 		wake_str = "Unknown\n";
4653 
4654 	dev_info(ice_pf_to_dev(pf), "Wake reason: %s", wake_str);
4655 }
4656 
4657 /**
4658  * ice_register_netdev - register netdev
4659  * @vsi: pointer to the VSI struct
4660  */
4661 static int ice_register_netdev(struct ice_vsi *vsi)
4662 {
4663 	int err;
4664 
4665 	if (!vsi || !vsi->netdev)
4666 		return -EIO;
4667 
4668 	err = register_netdev(vsi->netdev);
4669 	if (err)
4670 		return err;
4671 
4672 	set_bit(ICE_VSI_NETDEV_REGISTERED, vsi->state);
4673 	netif_carrier_off(vsi->netdev);
4674 	netif_tx_stop_all_queues(vsi->netdev);
4675 
4676 	return 0;
4677 }
4678 
4679 static void ice_unregister_netdev(struct ice_vsi *vsi)
4680 {
4681 	if (!vsi || !vsi->netdev)
4682 		return;
4683 
4684 	unregister_netdev(vsi->netdev);
4685 	clear_bit(ICE_VSI_NETDEV_REGISTERED, vsi->state);
4686 }
4687 
4688 /**
4689  * ice_cfg_netdev - Allocate, configure and register a netdev
4690  * @vsi: the VSI associated with the new netdev
4691  *
4692  * Returns 0 on success, negative value on failure
4693  */
4694 static int ice_cfg_netdev(struct ice_vsi *vsi)
4695 {
4696 	struct ice_netdev_priv *np;
4697 	struct net_device *netdev;
4698 	u8 mac_addr[ETH_ALEN];
4699 
4700 	netdev = alloc_etherdev_mqs(sizeof(*np), vsi->alloc_txq,
4701 				    vsi->alloc_rxq);
4702 	if (!netdev)
4703 		return -ENOMEM;
4704 
4705 	set_bit(ICE_VSI_NETDEV_ALLOCD, vsi->state);
4706 	vsi->netdev = netdev;
4707 	np = netdev_priv(netdev);
4708 	np->vsi = vsi;
4709 
4710 	ice_set_netdev_features(netdev);
4711 	ice_set_ops(vsi);
4712 
4713 	if (vsi->type == ICE_VSI_PF) {
4714 		SET_NETDEV_DEV(netdev, ice_pf_to_dev(vsi->back));
4715 		ether_addr_copy(mac_addr, vsi->port_info->mac.perm_addr);
4716 		eth_hw_addr_set(netdev, mac_addr);
4717 	}
4718 
4719 	netdev->priv_flags |= IFF_UNICAST_FLT;
4720 
4721 	/* Setup netdev TC information */
4722 	ice_vsi_cfg_netdev_tc(vsi, vsi->tc_cfg.ena_tc);
4723 
4724 	netdev->max_mtu = ICE_MAX_MTU;
4725 
4726 	return 0;
4727 }
4728 
4729 static void ice_decfg_netdev(struct ice_vsi *vsi)
4730 {
4731 	clear_bit(ICE_VSI_NETDEV_ALLOCD, vsi->state);
4732 	free_netdev(vsi->netdev);
4733 	vsi->netdev = NULL;
4734 }
4735 
4736 void ice_init_dev_hw(struct ice_pf *pf)
4737 {
4738 	struct ice_hw *hw = &pf->hw;
4739 	int err;
4740 
4741 	ice_init_feature_support(pf);
4742 
4743 	err = ice_init_ddp_config(hw, pf);
4744 
4745 	/* if ice_init_ddp_config fails, ICE_FLAG_ADV_FEATURES bit won't be
4746 	 * set in pf->state, which will cause ice_is_safe_mode to return
4747 	 * true
4748 	 */
4749 	if (err || ice_is_safe_mode(pf)) {
4750 		/* we already got function/device capabilities but these don't
4751 		 * reflect what the driver needs to do in safe mode. Instead of
4752 		 * adding conditional logic everywhere to ignore these
4753 		 * device/function capabilities, override them.
4754 		 */
4755 		ice_set_safe_mode_caps(hw);
4756 	}
4757 }
4758 
4759 int ice_init_dev(struct ice_pf *pf)
4760 {
4761 	struct device *dev = ice_pf_to_dev(pf);
4762 	int err;
4763 
4764 	ice_set_pf_caps(pf);
4765 	err = ice_init_interrupt_scheme(pf);
4766 	if (err) {
4767 		dev_err(dev, "ice_init_interrupt_scheme failed: %d\n", err);
4768 		return -EIO;
4769 	}
4770 
4771 	ice_start_service_task(pf);
4772 
4773 	return 0;
4774 }
4775 
4776 void ice_deinit_dev(struct ice_pf *pf)
4777 {
4778 	ice_service_task_stop(pf);
4779 
4780 	/* Service task is already stopped, so call reset directly. */
4781 	ice_reset(&pf->hw, ICE_RESET_PFR);
4782 	pci_wait_for_pending_transaction(pf->pdev);
4783 	ice_clear_interrupt_scheme(pf);
4784 }
4785 
4786 static void ice_init_features(struct ice_pf *pf)
4787 {
4788 	struct device *dev = ice_pf_to_dev(pf);
4789 
4790 	if (ice_is_safe_mode(pf))
4791 		return;
4792 
4793 	/* initialize DDP driven features */
4794 	if (test_bit(ICE_FLAG_PTP_SUPPORTED, pf->flags))
4795 		ice_ptp_init(pf);
4796 
4797 	if (ice_is_feature_supported(pf, ICE_F_GNSS))
4798 		ice_gnss_init(pf);
4799 
4800 	if (ice_is_feature_supported(pf, ICE_F_CGU) ||
4801 	    ice_is_feature_supported(pf, ICE_F_PHY_RCLK))
4802 		ice_dpll_init(pf);
4803 
4804 	/* Note: Flow director init failure is non-fatal to load */
4805 	if (ice_init_fdir(pf))
4806 		dev_err(dev, "could not initialize flow director\n");
4807 
4808 	/* Note: DCB init failure is non-fatal to load */
4809 	if (ice_init_pf_dcb(pf, false)) {
4810 		clear_bit(ICE_FLAG_DCB_CAPABLE, pf->flags);
4811 		clear_bit(ICE_FLAG_DCB_ENA, pf->flags);
4812 	} else {
4813 		ice_cfg_lldp_mib_change(&pf->hw, true);
4814 	}
4815 
4816 	if (ice_init_lag(pf))
4817 		dev_warn(dev, "Failed to init link aggregation support\n");
4818 
4819 	ice_hwmon_init(pf);
4820 }
4821 
4822 static void ice_deinit_features(struct ice_pf *pf)
4823 {
4824 	if (ice_is_safe_mode(pf))
4825 		return;
4826 
4827 	ice_deinit_lag(pf);
4828 	if (test_bit(ICE_FLAG_DCB_CAPABLE, pf->flags))
4829 		ice_cfg_lldp_mib_change(&pf->hw, false);
4830 	ice_deinit_fdir(pf);
4831 	if (ice_is_feature_supported(pf, ICE_F_GNSS))
4832 		ice_gnss_exit(pf);
4833 	if (test_bit(ICE_FLAG_PTP_SUPPORTED, pf->flags))
4834 		ice_ptp_release(pf);
4835 	if (test_bit(ICE_FLAG_DPLL, pf->flags))
4836 		ice_dpll_deinit(pf);
4837 	if (pf->eswitch_mode == DEVLINK_ESWITCH_MODE_SWITCHDEV)
4838 		xa_destroy(&pf->eswitch.reprs);
4839 }
4840 
4841 static void ice_init_wakeup(struct ice_pf *pf)
4842 {
4843 	/* Save wakeup reason register for later use */
4844 	pf->wakeup_reason = rd32(&pf->hw, PFPM_WUS);
4845 
4846 	/* check for a power management event */
4847 	ice_print_wake_reason(pf);
4848 
4849 	/* clear wake status, all bits */
4850 	wr32(&pf->hw, PFPM_WUS, U32_MAX);
4851 
4852 	/* Disable WoL at init, wait for user to enable */
4853 	device_set_wakeup_enable(ice_pf_to_dev(pf), false);
4854 }
4855 
4856 static int ice_init_link(struct ice_pf *pf)
4857 {
4858 	struct device *dev = ice_pf_to_dev(pf);
4859 	int err;
4860 
4861 	err = ice_init_link_events(pf->hw.port_info);
4862 	if (err) {
4863 		dev_err(dev, "ice_init_link_events failed: %d\n", err);
4864 		return err;
4865 	}
4866 
4867 	/* not a fatal error if this fails */
4868 	err = ice_init_nvm_phy_type(pf->hw.port_info);
4869 	if (err)
4870 		dev_err(dev, "ice_init_nvm_phy_type failed: %d\n", err);
4871 
4872 	/* not a fatal error if this fails */
4873 	err = ice_update_link_info(pf->hw.port_info);
4874 	if (err)
4875 		dev_err(dev, "ice_update_link_info failed: %d\n", err);
4876 
4877 	ice_init_link_dflt_override(pf->hw.port_info);
4878 
4879 	ice_check_link_cfg_err(pf,
4880 			       pf->hw.port_info->phy.link_info.link_cfg_err);
4881 
4882 	/* if media available, initialize PHY settings */
4883 	if (pf->hw.port_info->phy.link_info.link_info &
4884 	    ICE_AQ_MEDIA_AVAILABLE) {
4885 		/* not a fatal error if this fails */
4886 		err = ice_init_phy_user_cfg(pf->hw.port_info);
4887 		if (err)
4888 			dev_err(dev, "ice_init_phy_user_cfg failed: %d\n", err);
4889 
4890 		if (!test_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, pf->flags)) {
4891 			struct ice_vsi *vsi = ice_get_main_vsi(pf);
4892 
4893 			if (vsi)
4894 				ice_configure_phy(vsi);
4895 		}
4896 	} else {
4897 		set_bit(ICE_FLAG_NO_MEDIA, pf->flags);
4898 	}
4899 
4900 	return err;
4901 }
4902 
4903 static int ice_init_pf_sw(struct ice_pf *pf)
4904 {
4905 	bool dvm = ice_is_dvm_ena(&pf->hw);
4906 	struct ice_vsi *vsi;
4907 	int err;
4908 
4909 	/* create switch struct for the switch element created by FW on boot */
4910 	pf->first_sw = kzalloc(sizeof(*pf->first_sw), GFP_KERNEL);
4911 	if (!pf->first_sw)
4912 		return -ENOMEM;
4913 
4914 	if (pf->hw.evb_veb)
4915 		pf->first_sw->bridge_mode = BRIDGE_MODE_VEB;
4916 	else
4917 		pf->first_sw->bridge_mode = BRIDGE_MODE_VEPA;
4918 
4919 	pf->first_sw->pf = pf;
4920 
4921 	/* record the sw_id available for later use */
4922 	pf->first_sw->sw_id = pf->hw.port_info->sw_id;
4923 
4924 	err = ice_aq_set_port_params(pf->hw.port_info, dvm, NULL);
4925 	if (err)
4926 		goto err_aq_set_port_params;
4927 
4928 	vsi = ice_pf_vsi_setup(pf, pf->hw.port_info);
4929 	if (!vsi) {
4930 		err = -ENOMEM;
4931 		goto err_pf_vsi_setup;
4932 	}
4933 
4934 	return 0;
4935 
4936 err_pf_vsi_setup:
4937 err_aq_set_port_params:
4938 	kfree(pf->first_sw);
4939 	return err;
4940 }
4941 
4942 static void ice_deinit_pf_sw(struct ice_pf *pf)
4943 {
4944 	struct ice_vsi *vsi = ice_get_main_vsi(pf);
4945 
4946 	if (!vsi)
4947 		return;
4948 
4949 	ice_vsi_release(vsi);
4950 	kfree(pf->first_sw);
4951 }
4952 
4953 static int ice_alloc_vsis(struct ice_pf *pf)
4954 {
4955 	struct device *dev = ice_pf_to_dev(pf);
4956 
4957 	pf->num_alloc_vsi = pf->hw.func_caps.guar_num_vsi;
4958 	if (!pf->num_alloc_vsi)
4959 		return -EIO;
4960 
4961 	if (pf->num_alloc_vsi > UDP_TUNNEL_NIC_MAX_SHARING_DEVICES) {
4962 		dev_warn(dev,
4963 			 "limiting the VSI count due to UDP tunnel limitation %d > %d\n",
4964 			 pf->num_alloc_vsi, UDP_TUNNEL_NIC_MAX_SHARING_DEVICES);
4965 		pf->num_alloc_vsi = UDP_TUNNEL_NIC_MAX_SHARING_DEVICES;
4966 	}
4967 
4968 	pf->vsi = devm_kcalloc(dev, pf->num_alloc_vsi, sizeof(*pf->vsi),
4969 			       GFP_KERNEL);
4970 	if (!pf->vsi)
4971 		return -ENOMEM;
4972 
4973 	pf->vsi_stats = devm_kcalloc(dev, pf->num_alloc_vsi,
4974 				     sizeof(*pf->vsi_stats), GFP_KERNEL);
4975 	if (!pf->vsi_stats) {
4976 		devm_kfree(dev, pf->vsi);
4977 		return -ENOMEM;
4978 	}
4979 
4980 	return 0;
4981 }
4982 
4983 static void ice_dealloc_vsis(struct ice_pf *pf)
4984 {
4985 	devm_kfree(ice_pf_to_dev(pf), pf->vsi_stats);
4986 	pf->vsi_stats = NULL;
4987 
4988 	pf->num_alloc_vsi = 0;
4989 	devm_kfree(ice_pf_to_dev(pf), pf->vsi);
4990 	pf->vsi = NULL;
4991 }
4992 
4993 static int ice_init_devlink(struct ice_pf *pf)
4994 {
4995 	int err;
4996 
4997 	err = ice_devlink_register_params(pf);
4998 	if (err)
4999 		return err;
5000 
5001 	ice_devlink_init_regions(pf);
5002 	ice_devlink_register(pf);
5003 	ice_health_init(pf);
5004 
5005 	return 0;
5006 }
5007 
5008 static void ice_deinit_devlink(struct ice_pf *pf)
5009 {
5010 	ice_health_deinit(pf);
5011 	ice_devlink_unregister(pf);
5012 	ice_devlink_destroy_regions(pf);
5013 	ice_devlink_unregister_params(pf);
5014 }
5015 
5016 static int ice_init(struct ice_pf *pf)
5017 {
5018 	struct device *dev = ice_pf_to_dev(pf);
5019 	int err;
5020 
5021 	err = ice_init_pf(pf);
5022 	if (err) {
5023 		dev_err(dev, "ice_init_pf failed: %d\n", err);
5024 		return err;
5025 	}
5026 
5027 	if (pf->hw.mac_type == ICE_MAC_E830) {
5028 		err = pci_enable_ptm(pf->pdev, NULL);
5029 		if (err)
5030 			dev_dbg(dev, "PCIe PTM not supported by PCIe bus/controller\n");
5031 	}
5032 
5033 	err = ice_alloc_vsis(pf);
5034 	if (err)
5035 		goto unroll_pf_init;
5036 
5037 	err = ice_init_pf_sw(pf);
5038 	if (err)
5039 		goto err_init_pf_sw;
5040 
5041 	ice_init_wakeup(pf);
5042 
5043 	err = ice_init_link(pf);
5044 	if (err)
5045 		goto err_init_link;
5046 
5047 	err = ice_send_version(pf);
5048 	if (err)
5049 		goto err_init_link;
5050 
5051 	ice_verify_cacheline_size(pf);
5052 
5053 	if (ice_is_safe_mode(pf))
5054 		ice_set_safe_mode_vlan_cfg(pf);
5055 	else
5056 		/* print PCI link speed and width */
5057 		pcie_print_link_status(pf->pdev);
5058 
5059 	/* ready to go, so clear down state bit */
5060 	clear_bit(ICE_DOWN, pf->state);
5061 	clear_bit(ICE_SERVICE_DIS, pf->state);
5062 
5063 	/* since everything is good, start the service timer */
5064 	mod_timer(&pf->serv_tmr, round_jiffies(jiffies + pf->serv_tmr_period));
5065 
5066 	return 0;
5067 
5068 err_init_link:
5069 	ice_deinit_pf_sw(pf);
5070 err_init_pf_sw:
5071 	ice_dealloc_vsis(pf);
5072 unroll_pf_init:
5073 	ice_deinit_pf(pf);
5074 	return err;
5075 }
5076 
5077 static void ice_deinit(struct ice_pf *pf)
5078 {
5079 	set_bit(ICE_SERVICE_DIS, pf->state);
5080 	set_bit(ICE_DOWN, pf->state);
5081 
5082 	ice_deinit_pf_sw(pf);
5083 	ice_dealloc_vsis(pf);
5084 	ice_deinit_pf(pf);
5085 }
5086 
5087 /**
5088  * ice_load - load pf by init hw and starting VSI
5089  * @pf: pointer to the pf instance
5090  *
5091  * This function has to be called under devl_lock.
5092  */
5093 int ice_load(struct ice_pf *pf)
5094 {
5095 	struct ice_vsi *vsi;
5096 	int err;
5097 
5098 	devl_assert_locked(priv_to_devlink(pf));
5099 
5100 	vsi = ice_get_main_vsi(pf);
5101 
5102 	/* init channel list */
5103 	INIT_LIST_HEAD(&vsi->ch_list);
5104 
5105 	err = ice_cfg_netdev(vsi);
5106 	if (err)
5107 		return err;
5108 
5109 	/* Setup DCB netlink interface */
5110 	ice_dcbnl_setup(vsi);
5111 
5112 	err = ice_init_mac_fltr(pf);
5113 	if (err)
5114 		goto err_init_mac_fltr;
5115 
5116 	err = ice_devlink_create_pf_port(pf);
5117 	if (err)
5118 		goto err_devlink_create_pf_port;
5119 
5120 	SET_NETDEV_DEVLINK_PORT(vsi->netdev, &pf->devlink_port);
5121 
5122 	err = ice_register_netdev(vsi);
5123 	if (err)
5124 		goto err_register_netdev;
5125 
5126 	err = ice_tc_indir_block_register(vsi);
5127 	if (err)
5128 		goto err_tc_indir_block_register;
5129 
5130 	ice_napi_add(vsi);
5131 
5132 	ice_init_features(pf);
5133 
5134 	err = ice_init_rdma(pf);
5135 	if (err)
5136 		goto err_init_rdma;
5137 
5138 	ice_service_task_restart(pf);
5139 
5140 	clear_bit(ICE_DOWN, pf->state);
5141 
5142 	return 0;
5143 
5144 err_init_rdma:
5145 	ice_deinit_features(pf);
5146 	ice_tc_indir_block_unregister(vsi);
5147 err_tc_indir_block_register:
5148 	ice_unregister_netdev(vsi);
5149 err_register_netdev:
5150 	ice_devlink_destroy_pf_port(pf);
5151 err_devlink_create_pf_port:
5152 err_init_mac_fltr:
5153 	ice_decfg_netdev(vsi);
5154 	return err;
5155 }
5156 
5157 /**
5158  * ice_unload - unload pf by stopping VSI and deinit hw
5159  * @pf: pointer to the pf instance
5160  *
5161  * This function has to be called under devl_lock.
5162  */
5163 void ice_unload(struct ice_pf *pf)
5164 {
5165 	struct ice_vsi *vsi = ice_get_main_vsi(pf);
5166 
5167 	devl_assert_locked(priv_to_devlink(pf));
5168 
5169 	ice_deinit_rdma(pf);
5170 	ice_deinit_features(pf);
5171 	ice_tc_indir_block_unregister(vsi);
5172 	ice_unregister_netdev(vsi);
5173 	ice_devlink_destroy_pf_port(pf);
5174 	ice_decfg_netdev(vsi);
5175 }
5176 
5177 static int ice_probe_recovery_mode(struct ice_pf *pf)
5178 {
5179 	struct device *dev = ice_pf_to_dev(pf);
5180 	int err;
5181 
5182 	dev_err(dev, "Firmware recovery mode detected. Limiting functionality. Refer to the Intel(R) Ethernet Adapters and Devices User Guide for details on firmware recovery mode\n");
5183 
5184 	INIT_HLIST_HEAD(&pf->aq_wait_list);
5185 	spin_lock_init(&pf->aq_wait_lock);
5186 	init_waitqueue_head(&pf->aq_wait_queue);
5187 
5188 	timer_setup(&pf->serv_tmr, ice_service_timer, 0);
5189 	pf->serv_tmr_period = HZ;
5190 	INIT_WORK(&pf->serv_task, ice_service_task_recovery_mode);
5191 	clear_bit(ICE_SERVICE_SCHED, pf->state);
5192 	err = ice_create_all_ctrlq(&pf->hw);
5193 	if (err)
5194 		return err;
5195 
5196 	scoped_guard(devl, priv_to_devlink(pf)) {
5197 		err = ice_init_devlink(pf);
5198 		if (err)
5199 			return err;
5200 	}
5201 
5202 	ice_service_task_restart(pf);
5203 
5204 	return 0;
5205 }
5206 
5207 /**
5208  * ice_probe - Device initialization routine
5209  * @pdev: PCI device information struct
5210  * @ent: entry in ice_pci_tbl
5211  *
5212  * Returns 0 on success, negative on failure
5213  */
5214 static int
5215 ice_probe(struct pci_dev *pdev, const struct pci_device_id __always_unused *ent)
5216 {
5217 	struct device *dev = &pdev->dev;
5218 	bool need_dev_deinit = false;
5219 	struct ice_adapter *adapter;
5220 	struct ice_pf *pf;
5221 	struct ice_hw *hw;
5222 	int err;
5223 
5224 	if (pdev->is_virtfn) {
5225 		dev_err(dev, "can't probe a virtual function\n");
5226 		return -EINVAL;
5227 	}
5228 
5229 	/* when under a kdump kernel initiate a reset before enabling the
5230 	 * device in order to clear out any pending DMA transactions. These
5231 	 * transactions can cause some systems to machine check when doing
5232 	 * the pcim_enable_device() below.
5233 	 */
5234 	if (is_kdump_kernel()) {
5235 		pci_save_state(pdev);
5236 		pci_clear_master(pdev);
5237 		err = pcie_flr(pdev);
5238 		if (err)
5239 			return err;
5240 		pci_restore_state(pdev);
5241 	}
5242 
5243 	/* this driver uses devres, see
5244 	 * Documentation/driver-api/driver-model/devres.rst
5245 	 */
5246 	err = pcim_enable_device(pdev);
5247 	if (err)
5248 		return err;
5249 
5250 	err = pcim_iomap_regions(pdev, BIT(ICE_BAR0), dev_driver_string(dev));
5251 	if (err) {
5252 		dev_err(dev, "BAR0 I/O map error %d\n", err);
5253 		return err;
5254 	}
5255 
5256 	pf = ice_allocate_pf(dev);
5257 	if (!pf)
5258 		return -ENOMEM;
5259 
5260 	/* initialize Auxiliary index to invalid value */
5261 	pf->aux_idx = -1;
5262 
5263 	/* set up for high or low DMA */
5264 	err = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
5265 	if (err) {
5266 		dev_err(dev, "DMA configuration failed: 0x%x\n", err);
5267 		return err;
5268 	}
5269 
5270 	pci_set_master(pdev);
5271 	pf->pdev = pdev;
5272 	pci_set_drvdata(pdev, pf);
5273 	set_bit(ICE_DOWN, pf->state);
5274 	/* Disable service task until DOWN bit is cleared */
5275 	set_bit(ICE_SERVICE_DIS, pf->state);
5276 
5277 	hw = &pf->hw;
5278 	hw->hw_addr = pcim_iomap_table(pdev)[ICE_BAR0];
5279 	pci_save_state(pdev);
5280 
5281 	hw->back = pf;
5282 	hw->port_info = NULL;
5283 	hw->vendor_id = pdev->vendor;
5284 	hw->device_id = pdev->device;
5285 	pci_read_config_byte(pdev, PCI_REVISION_ID, &hw->revision_id);
5286 	hw->subsystem_vendor_id = pdev->subsystem_vendor;
5287 	hw->subsystem_device_id = pdev->subsystem_device;
5288 	hw->bus.device = PCI_SLOT(pdev->devfn);
5289 	hw->bus.func = PCI_FUNC(pdev->devfn);
5290 	ice_set_ctrlq_len(hw);
5291 
5292 	pf->msg_enable = netif_msg_init(debug, ICE_DFLT_NETIF_M);
5293 
5294 #ifndef CONFIG_DYNAMIC_DEBUG
5295 	if (debug < -1)
5296 		hw->debug_mask = debug;
5297 #endif
5298 
5299 	if (ice_is_recovery_mode(hw))
5300 		return ice_probe_recovery_mode(pf);
5301 
5302 	err = ice_init_hw(hw);
5303 	if (err) {
5304 		dev_err(dev, "ice_init_hw failed: %d\n", err);
5305 		return err;
5306 	}
5307 
5308 	adapter = ice_adapter_get(pdev);
5309 	if (IS_ERR(adapter)) {
5310 		err = PTR_ERR(adapter);
5311 		goto unroll_hw_init;
5312 	}
5313 	pf->adapter = adapter;
5314 
5315 	err = ice_init_dev(pf);
5316 	if (err)
5317 		goto unroll_adapter;
5318 
5319 	err = ice_init(pf);
5320 	if (err)
5321 		goto unroll_dev_init;
5322 
5323 	devl_lock(priv_to_devlink(pf));
5324 	err = ice_load(pf);
5325 	if (err)
5326 		goto unroll_init;
5327 
5328 	err = ice_init_devlink(pf);
5329 	if (err)
5330 		goto unroll_load;
5331 	devl_unlock(priv_to_devlink(pf));
5332 
5333 	return 0;
5334 
5335 unroll_load:
5336 	ice_unload(pf);
5337 unroll_init:
5338 	devl_unlock(priv_to_devlink(pf));
5339 	ice_deinit(pf);
5340 unroll_dev_init:
5341 	need_dev_deinit = true;
5342 unroll_adapter:
5343 	ice_adapter_put(pdev);
5344 unroll_hw_init:
5345 	ice_deinit_hw(hw);
5346 	if (need_dev_deinit)
5347 		ice_deinit_dev(pf);
5348 	return err;
5349 }
5350 
5351 /**
5352  * ice_set_wake - enable or disable Wake on LAN
5353  * @pf: pointer to the PF struct
5354  *
5355  * Simple helper for WoL control
5356  */
5357 static void ice_set_wake(struct ice_pf *pf)
5358 {
5359 	struct ice_hw *hw = &pf->hw;
5360 	bool wol = pf->wol_ena;
5361 
5362 	/* clear wake state, otherwise new wake events won't fire */
5363 	wr32(hw, PFPM_WUS, U32_MAX);
5364 
5365 	/* enable / disable APM wake up, no RMW needed */
5366 	wr32(hw, PFPM_APM, wol ? PFPM_APM_APME_M : 0);
5367 
5368 	/* set magic packet filter enabled */
5369 	wr32(hw, PFPM_WUFC, wol ? PFPM_WUFC_MAG_M : 0);
5370 }
5371 
5372 /**
5373  * ice_setup_mc_magic_wake - setup device to wake on multicast magic packet
5374  * @pf: pointer to the PF struct
5375  *
5376  * Issue firmware command to enable multicast magic wake, making
5377  * sure that any locally administered address (LAA) is used for
5378  * wake, and that PF reset doesn't undo the LAA.
5379  */
5380 static void ice_setup_mc_magic_wake(struct ice_pf *pf)
5381 {
5382 	struct device *dev = ice_pf_to_dev(pf);
5383 	struct ice_hw *hw = &pf->hw;
5384 	u8 mac_addr[ETH_ALEN];
5385 	struct ice_vsi *vsi;
5386 	int status;
5387 	u8 flags;
5388 
5389 	if (!pf->wol_ena)
5390 		return;
5391 
5392 	vsi = ice_get_main_vsi(pf);
5393 	if (!vsi)
5394 		return;
5395 
5396 	/* Get current MAC address in case it's an LAA */
5397 	if (vsi->netdev)
5398 		ether_addr_copy(mac_addr, vsi->netdev->dev_addr);
5399 	else
5400 		ether_addr_copy(mac_addr, vsi->port_info->mac.perm_addr);
5401 
5402 	flags = ICE_AQC_MAN_MAC_WR_MC_MAG_EN |
5403 		ICE_AQC_MAN_MAC_UPDATE_LAA_WOL |
5404 		ICE_AQC_MAN_MAC_WR_WOL_LAA_PFR_KEEP;
5405 
5406 	status = ice_aq_manage_mac_write(hw, mac_addr, flags, NULL);
5407 	if (status)
5408 		dev_err(dev, "Failed to enable Multicast Magic Packet wake, err %d aq_err %s\n",
5409 			status, libie_aq_str(hw->adminq.sq_last_status));
5410 }
5411 
5412 /**
5413  * ice_remove - Device removal routine
5414  * @pdev: PCI device information struct
5415  */
5416 static void ice_remove(struct pci_dev *pdev)
5417 {
5418 	struct ice_pf *pf = pci_get_drvdata(pdev);
5419 	int i;
5420 
5421 	for (i = 0; i < ICE_MAX_RESET_WAIT; i++) {
5422 		if (!ice_is_reset_in_progress(pf->state))
5423 			break;
5424 		msleep(100);
5425 	}
5426 
5427 	if (ice_is_recovery_mode(&pf->hw)) {
5428 		ice_service_task_stop(pf);
5429 		scoped_guard(devl, priv_to_devlink(pf)) {
5430 			ice_deinit_devlink(pf);
5431 		}
5432 		return;
5433 	}
5434 
5435 	if (test_bit(ICE_FLAG_SRIOV_ENA, pf->flags)) {
5436 		set_bit(ICE_VF_RESETS_DISABLED, pf->state);
5437 		ice_free_vfs(pf);
5438 	}
5439 
5440 	ice_hwmon_exit(pf);
5441 
5442 	if (!ice_is_safe_mode(pf))
5443 		ice_remove_arfs(pf);
5444 
5445 	devl_lock(priv_to_devlink(pf));
5446 	ice_dealloc_all_dynamic_ports(pf);
5447 	ice_deinit_devlink(pf);
5448 
5449 	ice_unload(pf);
5450 	devl_unlock(priv_to_devlink(pf));
5451 
5452 	ice_deinit(pf);
5453 	ice_vsi_release_all(pf);
5454 
5455 	ice_setup_mc_magic_wake(pf);
5456 	ice_set_wake(pf);
5457 
5458 	ice_adapter_put(pdev);
5459 	ice_deinit_hw(&pf->hw);
5460 
5461 	ice_deinit_dev(pf);
5462 	ice_aq_cancel_waiting_tasks(pf);
5463 	set_bit(ICE_DOWN, pf->state);
5464 }
5465 
5466 /**
5467  * ice_shutdown - PCI callback for shutting down device
5468  * @pdev: PCI device information struct
5469  */
5470 static void ice_shutdown(struct pci_dev *pdev)
5471 {
5472 	struct ice_pf *pf = pci_get_drvdata(pdev);
5473 
5474 	ice_remove(pdev);
5475 
5476 	if (system_state == SYSTEM_POWER_OFF) {
5477 		pci_wake_from_d3(pdev, pf->wol_ena);
5478 		pci_set_power_state(pdev, PCI_D3hot);
5479 	}
5480 }
5481 
5482 /**
5483  * ice_prepare_for_shutdown - prep for PCI shutdown
5484  * @pf: board private structure
5485  *
5486  * Inform or close all dependent features in prep for PCI device shutdown
5487  */
5488 static void ice_prepare_for_shutdown(struct ice_pf *pf)
5489 {
5490 	struct ice_hw *hw = &pf->hw;
5491 	u32 v;
5492 
5493 	/* Notify VFs of impending reset */
5494 	if (ice_check_sq_alive(hw, &hw->mailboxq))
5495 		ice_vc_notify_reset(pf);
5496 
5497 	dev_dbg(ice_pf_to_dev(pf), "Tearing down internal switch for shutdown\n");
5498 
5499 	/* disable the VSIs and their queues that are not already DOWN */
5500 	ice_pf_dis_all_vsi(pf, false);
5501 
5502 	ice_for_each_vsi(pf, v)
5503 		if (pf->vsi[v])
5504 			pf->vsi[v]->vsi_num = 0;
5505 
5506 	ice_shutdown_all_ctrlq(hw, true);
5507 }
5508 
5509 /**
5510  * ice_reinit_interrupt_scheme - Reinitialize interrupt scheme
5511  * @pf: board private structure to reinitialize
5512  *
5513  * This routine reinitialize interrupt scheme that was cleared during
5514  * power management suspend callback.
5515  *
5516  * This should be called during resume routine to re-allocate the q_vectors
5517  * and reacquire interrupts.
5518  */
5519 static int ice_reinit_interrupt_scheme(struct ice_pf *pf)
5520 {
5521 	struct device *dev = ice_pf_to_dev(pf);
5522 	int ret, v;
5523 
5524 	/* Since we clear MSIX flag during suspend, we need to
5525 	 * set it back during resume...
5526 	 */
5527 
5528 	ret = ice_init_interrupt_scheme(pf);
5529 	if (ret) {
5530 		dev_err(dev, "Failed to re-initialize interrupt %d\n", ret);
5531 		return ret;
5532 	}
5533 
5534 	/* Remap vectors and rings, after successful re-init interrupts */
5535 	ice_for_each_vsi(pf, v) {
5536 		if (!pf->vsi[v])
5537 			continue;
5538 
5539 		ret = ice_vsi_alloc_q_vectors(pf->vsi[v]);
5540 		if (ret)
5541 			goto err_reinit;
5542 		ice_vsi_map_rings_to_vectors(pf->vsi[v]);
5543 		rtnl_lock();
5544 		ice_vsi_set_napi_queues(pf->vsi[v]);
5545 		rtnl_unlock();
5546 	}
5547 
5548 	ret = ice_req_irq_msix_misc(pf);
5549 	if (ret) {
5550 		dev_err(dev, "Setting up misc vector failed after device suspend %d\n",
5551 			ret);
5552 		goto err_reinit;
5553 	}
5554 
5555 	return 0;
5556 
5557 err_reinit:
5558 	while (v--)
5559 		if (pf->vsi[v]) {
5560 			rtnl_lock();
5561 			ice_vsi_clear_napi_queues(pf->vsi[v]);
5562 			rtnl_unlock();
5563 			ice_vsi_free_q_vectors(pf->vsi[v]);
5564 		}
5565 
5566 	return ret;
5567 }
5568 
5569 /**
5570  * ice_suspend
5571  * @dev: generic device information structure
5572  *
5573  * Power Management callback to quiesce the device and prepare
5574  * for D3 transition.
5575  */
5576 static int ice_suspend(struct device *dev)
5577 {
5578 	struct pci_dev *pdev = to_pci_dev(dev);
5579 	struct ice_pf *pf;
5580 	int disabled, v;
5581 
5582 	pf = pci_get_drvdata(pdev);
5583 
5584 	if (!ice_pf_state_is_nominal(pf)) {
5585 		dev_err(dev, "Device is not ready, no need to suspend it\n");
5586 		return -EBUSY;
5587 	}
5588 
5589 	/* Stop watchdog tasks until resume completion.
5590 	 * Even though it is most likely that the service task is
5591 	 * disabled if the device is suspended or down, the service task's
5592 	 * state is controlled by a different state bit, and we should
5593 	 * store and honor whatever state that bit is in at this point.
5594 	 */
5595 	disabled = ice_service_task_stop(pf);
5596 
5597 	ice_deinit_rdma(pf);
5598 
5599 	/* Already suspended?, then there is nothing to do */
5600 	if (test_and_set_bit(ICE_SUSPENDED, pf->state)) {
5601 		if (!disabled)
5602 			ice_service_task_restart(pf);
5603 		return 0;
5604 	}
5605 
5606 	if (test_bit(ICE_DOWN, pf->state) ||
5607 	    ice_is_reset_in_progress(pf->state)) {
5608 		dev_err(dev, "can't suspend device in reset or already down\n");
5609 		if (!disabled)
5610 			ice_service_task_restart(pf);
5611 		return 0;
5612 	}
5613 
5614 	ice_setup_mc_magic_wake(pf);
5615 
5616 	ice_prepare_for_shutdown(pf);
5617 
5618 	ice_set_wake(pf);
5619 
5620 	/* Free vectors, clear the interrupt scheme and release IRQs
5621 	 * for proper hibernation, especially with large number of CPUs.
5622 	 * Otherwise hibernation might fail when mapping all the vectors back
5623 	 * to CPU0.
5624 	 */
5625 	ice_free_irq_msix_misc(pf);
5626 	ice_for_each_vsi(pf, v) {
5627 		if (!pf->vsi[v])
5628 			continue;
5629 		rtnl_lock();
5630 		ice_vsi_clear_napi_queues(pf->vsi[v]);
5631 		rtnl_unlock();
5632 		ice_vsi_free_q_vectors(pf->vsi[v]);
5633 	}
5634 	ice_clear_interrupt_scheme(pf);
5635 
5636 	pci_save_state(pdev);
5637 	pci_wake_from_d3(pdev, pf->wol_ena);
5638 	pci_set_power_state(pdev, PCI_D3hot);
5639 	return 0;
5640 }
5641 
5642 /**
5643  * ice_resume - PM callback for waking up from D3
5644  * @dev: generic device information structure
5645  */
5646 static int ice_resume(struct device *dev)
5647 {
5648 	struct pci_dev *pdev = to_pci_dev(dev);
5649 	enum ice_reset_req reset_type;
5650 	struct ice_pf *pf;
5651 	struct ice_hw *hw;
5652 	int ret;
5653 
5654 	pci_set_power_state(pdev, PCI_D0);
5655 	pci_restore_state(pdev);
5656 	pci_save_state(pdev);
5657 
5658 	if (!pci_device_is_present(pdev))
5659 		return -ENODEV;
5660 
5661 	ret = pci_enable_device_mem(pdev);
5662 	if (ret) {
5663 		dev_err(dev, "Cannot enable device after suspend\n");
5664 		return ret;
5665 	}
5666 
5667 	pf = pci_get_drvdata(pdev);
5668 	hw = &pf->hw;
5669 
5670 	pf->wakeup_reason = rd32(hw, PFPM_WUS);
5671 	ice_print_wake_reason(pf);
5672 
5673 	/* We cleared the interrupt scheme when we suspended, so we need to
5674 	 * restore it now to resume device functionality.
5675 	 */
5676 	ret = ice_reinit_interrupt_scheme(pf);
5677 	if (ret)
5678 		dev_err(dev, "Cannot restore interrupt scheme: %d\n", ret);
5679 
5680 	ret = ice_init_rdma(pf);
5681 	if (ret)
5682 		dev_err(dev, "Reinitialize RDMA during resume failed: %d\n",
5683 			ret);
5684 
5685 	clear_bit(ICE_DOWN, pf->state);
5686 	/* Now perform PF reset and rebuild */
5687 	reset_type = ICE_RESET_PFR;
5688 	/* re-enable service task for reset, but allow reset to schedule it */
5689 	clear_bit(ICE_SERVICE_DIS, pf->state);
5690 
5691 	if (ice_schedule_reset(pf, reset_type))
5692 		dev_err(dev, "Reset during resume failed.\n");
5693 
5694 	clear_bit(ICE_SUSPENDED, pf->state);
5695 	ice_service_task_restart(pf);
5696 
5697 	/* Restart the service task */
5698 	mod_timer(&pf->serv_tmr, round_jiffies(jiffies + pf->serv_tmr_period));
5699 
5700 	return 0;
5701 }
5702 
5703 /**
5704  * ice_pci_err_detected - warning that PCI error has been detected
5705  * @pdev: PCI device information struct
5706  * @err: the type of PCI error
5707  *
5708  * Called to warn that something happened on the PCI bus and the error handling
5709  * is in progress.  Allows the driver to gracefully prepare/handle PCI errors.
5710  */
5711 static pci_ers_result_t
5712 ice_pci_err_detected(struct pci_dev *pdev, pci_channel_state_t err)
5713 {
5714 	struct ice_pf *pf = pci_get_drvdata(pdev);
5715 
5716 	if (!pf) {
5717 		dev_err(&pdev->dev, "%s: unrecoverable device error %d\n",
5718 			__func__, err);
5719 		return PCI_ERS_RESULT_DISCONNECT;
5720 	}
5721 
5722 	if (!test_bit(ICE_SUSPENDED, pf->state)) {
5723 		ice_service_task_stop(pf);
5724 
5725 		if (!test_bit(ICE_PREPARED_FOR_RESET, pf->state)) {
5726 			set_bit(ICE_PFR_REQ, pf->state);
5727 			ice_prepare_for_reset(pf, ICE_RESET_PFR);
5728 		}
5729 	}
5730 
5731 	return PCI_ERS_RESULT_NEED_RESET;
5732 }
5733 
5734 /**
5735  * ice_pci_err_slot_reset - a PCI slot reset has just happened
5736  * @pdev: PCI device information struct
5737  *
5738  * Called to determine if the driver can recover from the PCI slot reset by
5739  * using a register read to determine if the device is recoverable.
5740  */
5741 static pci_ers_result_t ice_pci_err_slot_reset(struct pci_dev *pdev)
5742 {
5743 	struct ice_pf *pf = pci_get_drvdata(pdev);
5744 	pci_ers_result_t result;
5745 	int err;
5746 	u32 reg;
5747 
5748 	err = pci_enable_device_mem(pdev);
5749 	if (err) {
5750 		dev_err(&pdev->dev, "Cannot re-enable PCI device after reset, error %d\n",
5751 			err);
5752 		result = PCI_ERS_RESULT_DISCONNECT;
5753 	} else {
5754 		pci_set_master(pdev);
5755 		pci_restore_state(pdev);
5756 		pci_save_state(pdev);
5757 		pci_wake_from_d3(pdev, false);
5758 
5759 		/* Check for life */
5760 		reg = rd32(&pf->hw, GLGEN_RTRIG);
5761 		if (!reg)
5762 			result = PCI_ERS_RESULT_RECOVERED;
5763 		else
5764 			result = PCI_ERS_RESULT_DISCONNECT;
5765 	}
5766 
5767 	return result;
5768 }
5769 
5770 /**
5771  * ice_pci_err_resume - restart operations after PCI error recovery
5772  * @pdev: PCI device information struct
5773  *
5774  * Called to allow the driver to bring things back up after PCI error and/or
5775  * reset recovery have finished
5776  */
5777 static void ice_pci_err_resume(struct pci_dev *pdev)
5778 {
5779 	struct ice_pf *pf = pci_get_drvdata(pdev);
5780 
5781 	if (!pf) {
5782 		dev_err(&pdev->dev, "%s failed, device is unrecoverable\n",
5783 			__func__);
5784 		return;
5785 	}
5786 
5787 	if (test_bit(ICE_SUSPENDED, pf->state)) {
5788 		dev_dbg(&pdev->dev, "%s failed to resume normal operations!\n",
5789 			__func__);
5790 		return;
5791 	}
5792 
5793 	ice_restore_all_vfs_msi_state(pf);
5794 
5795 	ice_do_reset(pf, ICE_RESET_PFR);
5796 	ice_service_task_restart(pf);
5797 	mod_timer(&pf->serv_tmr, round_jiffies(jiffies + pf->serv_tmr_period));
5798 }
5799 
5800 /**
5801  * ice_pci_err_reset_prepare - prepare device driver for PCI reset
5802  * @pdev: PCI device information struct
5803  */
5804 static void ice_pci_err_reset_prepare(struct pci_dev *pdev)
5805 {
5806 	struct ice_pf *pf = pci_get_drvdata(pdev);
5807 
5808 	if (!test_bit(ICE_SUSPENDED, pf->state)) {
5809 		ice_service_task_stop(pf);
5810 
5811 		if (!test_bit(ICE_PREPARED_FOR_RESET, pf->state)) {
5812 			set_bit(ICE_PFR_REQ, pf->state);
5813 			ice_prepare_for_reset(pf, ICE_RESET_PFR);
5814 		}
5815 	}
5816 }
5817 
5818 /**
5819  * ice_pci_err_reset_done - PCI reset done, device driver reset can begin
5820  * @pdev: PCI device information struct
5821  */
5822 static void ice_pci_err_reset_done(struct pci_dev *pdev)
5823 {
5824 	ice_pci_err_resume(pdev);
5825 }
5826 
5827 /* ice_pci_tbl - PCI Device ID Table
5828  *
5829  * Wildcard entries (PCI_ANY_ID) should come last
5830  * Last entry must be all 0s
5831  *
5832  * { Vendor ID, Device ID, SubVendor ID, SubDevice ID,
5833  *   Class, Class Mask, private data (not used) }
5834  */
5835 static const struct pci_device_id ice_pci_tbl[] = {
5836 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E810C_BACKPLANE) },
5837 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E810C_QSFP) },
5838 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E810C_SFP) },
5839 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E810_XXV_BACKPLANE) },
5840 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E810_XXV_QSFP) },
5841 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E810_XXV_SFP) },
5842 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823C_BACKPLANE) },
5843 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823C_QSFP) },
5844 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823C_SFP) },
5845 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823C_10G_BASE_T) },
5846 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823C_SGMII) },
5847 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822C_BACKPLANE) },
5848 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822C_QSFP) },
5849 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822C_SFP) },
5850 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822C_10G_BASE_T) },
5851 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822C_SGMII) },
5852 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822L_BACKPLANE) },
5853 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822L_SFP) },
5854 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822L_10G_BASE_T) },
5855 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822L_SGMII) },
5856 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_BACKPLANE) },
5857 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_SFP) },
5858 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_10G_BASE_T) },
5859 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_1GBE) },
5860 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E823L_QSFP) },
5861 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E822_SI_DFLT) },
5862 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E825C_BACKPLANE), },
5863 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E825C_QSFP), },
5864 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E825C_SFP), },
5865 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E825C_SGMII), },
5866 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830CC_BACKPLANE) },
5867 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830CC_QSFP56) },
5868 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830CC_SFP) },
5869 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830CC_SFP_DD) },
5870 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830C_BACKPLANE), },
5871 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_XXV_BACKPLANE), },
5872 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830C_QSFP), },
5873 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_XXV_QSFP), },
5874 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830C_SFP), },
5875 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E830_XXV_SFP), },
5876 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835CC_BACKPLANE), },
5877 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835CC_QSFP56), },
5878 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835CC_SFP), },
5879 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835C_BACKPLANE), },
5880 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835C_QSFP), },
5881 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835C_SFP), },
5882 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835_L_BACKPLANE), },
5883 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835_L_QSFP), },
5884 	{ PCI_VDEVICE(INTEL, ICE_DEV_ID_E835_L_SFP), },
5885 	/* required last entry */
5886 	{}
5887 };
5888 MODULE_DEVICE_TABLE(pci, ice_pci_tbl);
5889 
5890 static DEFINE_SIMPLE_DEV_PM_OPS(ice_pm_ops, ice_suspend, ice_resume);
5891 
5892 static const struct pci_error_handlers ice_pci_err_handler = {
5893 	.error_detected = ice_pci_err_detected,
5894 	.slot_reset = ice_pci_err_slot_reset,
5895 	.reset_prepare = ice_pci_err_reset_prepare,
5896 	.reset_done = ice_pci_err_reset_done,
5897 	.resume = ice_pci_err_resume
5898 };
5899 
5900 static struct pci_driver ice_driver = {
5901 	.name = KBUILD_MODNAME,
5902 	.id_table = ice_pci_tbl,
5903 	.probe = ice_probe,
5904 	.remove = ice_remove,
5905 	.driver.pm = pm_sleep_ptr(&ice_pm_ops),
5906 	.shutdown = ice_shutdown,
5907 	.sriov_configure = ice_sriov_configure,
5908 	.sriov_get_vf_total_msix = ice_sriov_get_vf_total_msix,
5909 	.sriov_set_msix_vec_count = ice_sriov_set_msix_vec_count,
5910 	.err_handler = &ice_pci_err_handler
5911 };
5912 
5913 /**
5914  * ice_module_init - Driver registration routine
5915  *
5916  * ice_module_init is the first routine called when the driver is
5917  * loaded. All it does is register with the PCI subsystem.
5918  */
5919 static int __init ice_module_init(void)
5920 {
5921 	int status = -ENOMEM;
5922 
5923 	pr_info("%s\n", ice_driver_string);
5924 	pr_info("%s\n", ice_copyright);
5925 
5926 	ice_adv_lnk_speed_maps_init();
5927 
5928 	ice_wq = alloc_workqueue("%s", WQ_UNBOUND, 0, KBUILD_MODNAME);
5929 	if (!ice_wq) {
5930 		pr_err("Failed to create workqueue\n");
5931 		return status;
5932 	}
5933 
5934 	ice_lag_wq = alloc_ordered_workqueue("ice_lag_wq", 0);
5935 	if (!ice_lag_wq) {
5936 		pr_err("Failed to create LAG workqueue\n");
5937 		goto err_dest_wq;
5938 	}
5939 
5940 	ice_debugfs_init();
5941 
5942 	status = pci_register_driver(&ice_driver);
5943 	if (status) {
5944 		pr_err("failed to register PCI driver, err %d\n", status);
5945 		goto err_dest_lag_wq;
5946 	}
5947 
5948 	status = ice_sf_driver_register();
5949 	if (status) {
5950 		pr_err("Failed to register SF driver, err %d\n", status);
5951 		goto err_sf_driver;
5952 	}
5953 
5954 	return 0;
5955 
5956 err_sf_driver:
5957 	pci_unregister_driver(&ice_driver);
5958 err_dest_lag_wq:
5959 	destroy_workqueue(ice_lag_wq);
5960 	ice_debugfs_exit();
5961 err_dest_wq:
5962 	destroy_workqueue(ice_wq);
5963 	return status;
5964 }
5965 module_init(ice_module_init);
5966 
5967 /**
5968  * ice_module_exit - Driver exit cleanup routine
5969  *
5970  * ice_module_exit is called just before the driver is removed
5971  * from memory.
5972  */
5973 static void __exit ice_module_exit(void)
5974 {
5975 	ice_sf_driver_unregister();
5976 	pci_unregister_driver(&ice_driver);
5977 	ice_debugfs_exit();
5978 	destroy_workqueue(ice_wq);
5979 	destroy_workqueue(ice_lag_wq);
5980 	pr_info("module unloaded\n");
5981 }
5982 module_exit(ice_module_exit);
5983 
5984 /**
5985  * ice_set_mac_address - NDO callback to set MAC address
5986  * @netdev: network interface device structure
5987  * @pi: pointer to an address structure
5988  *
5989  * Returns 0 on success, negative on failure
5990  */
5991 static int ice_set_mac_address(struct net_device *netdev, void *pi)
5992 {
5993 	struct ice_netdev_priv *np = netdev_priv(netdev);
5994 	struct ice_vsi *vsi = np->vsi;
5995 	struct ice_pf *pf = vsi->back;
5996 	struct ice_hw *hw = &pf->hw;
5997 	struct sockaddr *addr = pi;
5998 	u8 old_mac[ETH_ALEN];
5999 	u8 flags = 0;
6000 	u8 *mac;
6001 	int err;
6002 
6003 	mac = (u8 *)addr->sa_data;
6004 
6005 	if (!is_valid_ether_addr(mac))
6006 		return -EADDRNOTAVAIL;
6007 
6008 	if (test_bit(ICE_DOWN, pf->state) ||
6009 	    ice_is_reset_in_progress(pf->state)) {
6010 		netdev_err(netdev, "can't set mac %pM. device not ready\n",
6011 			   mac);
6012 		return -EBUSY;
6013 	}
6014 
6015 	if (ice_chnl_dmac_fltr_cnt(pf)) {
6016 		netdev_err(netdev, "can't set mac %pM. Device has tc-flower filters, delete all of them and try again\n",
6017 			   mac);
6018 		return -EAGAIN;
6019 	}
6020 
6021 	netif_addr_lock_bh(netdev);
6022 	ether_addr_copy(old_mac, netdev->dev_addr);
6023 	/* change the netdev's MAC address */
6024 	eth_hw_addr_set(netdev, mac);
6025 	netif_addr_unlock_bh(netdev);
6026 
6027 	/* Clean up old MAC filter. Not an error if old filter doesn't exist */
6028 	err = ice_fltr_remove_mac(vsi, old_mac, ICE_FWD_TO_VSI);
6029 	if (err && err != -ENOENT) {
6030 		err = -EADDRNOTAVAIL;
6031 		goto err_update_filters;
6032 	}
6033 
6034 	/* Add filter for new MAC. If filter exists, return success */
6035 	err = ice_fltr_add_mac(vsi, mac, ICE_FWD_TO_VSI);
6036 	if (err == -EEXIST) {
6037 		/* Although this MAC filter is already present in hardware it's
6038 		 * possible in some cases (e.g. bonding) that dev_addr was
6039 		 * modified outside of the driver and needs to be restored back
6040 		 * to this value.
6041 		 */
6042 		netdev_dbg(netdev, "filter for MAC %pM already exists\n", mac);
6043 
6044 		return 0;
6045 	} else if (err) {
6046 		/* error if the new filter addition failed */
6047 		err = -EADDRNOTAVAIL;
6048 	}
6049 
6050 err_update_filters:
6051 	if (err) {
6052 		netdev_err(netdev, "can't set MAC %pM. filter update failed\n",
6053 			   mac);
6054 		netif_addr_lock_bh(netdev);
6055 		eth_hw_addr_set(netdev, old_mac);
6056 		netif_addr_unlock_bh(netdev);
6057 		return err;
6058 	}
6059 
6060 	netdev_dbg(vsi->netdev, "updated MAC address to %pM\n",
6061 		   netdev->dev_addr);
6062 
6063 	/* write new MAC address to the firmware */
6064 	flags = ICE_AQC_MAN_MAC_UPDATE_LAA_WOL;
6065 	err = ice_aq_manage_mac_write(hw, mac, flags, NULL);
6066 	if (err) {
6067 		netdev_err(netdev, "can't set MAC %pM. write to firmware failed error %d\n",
6068 			   mac, err);
6069 	}
6070 	return 0;
6071 }
6072 
6073 /**
6074  * ice_set_rx_mode - NDO callback to set the netdev filters
6075  * @netdev: network interface device structure
6076  */
6077 static void ice_set_rx_mode(struct net_device *netdev)
6078 {
6079 	struct ice_netdev_priv *np = netdev_priv(netdev);
6080 	struct ice_vsi *vsi = np->vsi;
6081 
6082 	if (!vsi || ice_is_switchdev_running(vsi->back))
6083 		return;
6084 
6085 	/* Set the flags to synchronize filters
6086 	 * ndo_set_rx_mode may be triggered even without a change in netdev
6087 	 * flags
6088 	 */
6089 	set_bit(ICE_VSI_UMAC_FLTR_CHANGED, vsi->state);
6090 	set_bit(ICE_VSI_MMAC_FLTR_CHANGED, vsi->state);
6091 	set_bit(ICE_FLAG_FLTR_SYNC, vsi->back->flags);
6092 
6093 	/* schedule our worker thread which will take care of
6094 	 * applying the new filter changes
6095 	 */
6096 	ice_service_task_schedule(vsi->back);
6097 }
6098 
6099 /**
6100  * ice_set_tx_maxrate - NDO callback to set the maximum per-queue bitrate
6101  * @netdev: network interface device structure
6102  * @queue_index: Queue ID
6103  * @maxrate: maximum bandwidth in Mbps
6104  */
6105 static int
6106 ice_set_tx_maxrate(struct net_device *netdev, int queue_index, u32 maxrate)
6107 {
6108 	struct ice_netdev_priv *np = netdev_priv(netdev);
6109 	struct ice_vsi *vsi = np->vsi;
6110 	u16 q_handle;
6111 	int status;
6112 	u8 tc;
6113 
6114 	/* Validate maxrate requested is within permitted range */
6115 	if (maxrate && (maxrate > (ICE_SCHED_MAX_BW / 1000))) {
6116 		netdev_err(netdev, "Invalid max rate %d specified for the queue %d\n",
6117 			   maxrate, queue_index);
6118 		return -EINVAL;
6119 	}
6120 
6121 	q_handle = vsi->tx_rings[queue_index]->q_handle;
6122 	tc = ice_dcb_get_tc(vsi, queue_index);
6123 
6124 	vsi = ice_locate_vsi_using_queue(vsi, queue_index);
6125 	if (!vsi) {
6126 		netdev_err(netdev, "Invalid VSI for given queue %d\n",
6127 			   queue_index);
6128 		return -EINVAL;
6129 	}
6130 
6131 	/* Set BW back to default, when user set maxrate to 0 */
6132 	if (!maxrate)
6133 		status = ice_cfg_q_bw_dflt_lmt(vsi->port_info, vsi->idx, tc,
6134 					       q_handle, ICE_MAX_BW);
6135 	else
6136 		status = ice_cfg_q_bw_lmt(vsi->port_info, vsi->idx, tc,
6137 					  q_handle, ICE_MAX_BW, maxrate * 1000);
6138 	if (status)
6139 		netdev_err(netdev, "Unable to set Tx max rate, error %d\n",
6140 			   status);
6141 
6142 	return status;
6143 }
6144 
6145 /**
6146  * ice_fdb_add - add an entry to the hardware database
6147  * @ndm: the input from the stack
6148  * @tb: pointer to array of nladdr (unused)
6149  * @dev: the net device pointer
6150  * @addr: the MAC address entry being added
6151  * @vid: VLAN ID
6152  * @flags: instructions from stack about fdb operation
6153  * @notified: whether notification was emitted
6154  * @extack: netlink extended ack
6155  */
6156 static int
6157 ice_fdb_add(struct ndmsg *ndm, struct nlattr __always_unused *tb[],
6158 	    struct net_device *dev, const unsigned char *addr, u16 vid,
6159 	    u16 flags, bool *notified,
6160 	    struct netlink_ext_ack __always_unused *extack)
6161 {
6162 	int err;
6163 
6164 	if (vid) {
6165 		netdev_err(dev, "VLANs aren't supported yet for dev_uc|mc_add()\n");
6166 		return -EINVAL;
6167 	}
6168 	if (ndm->ndm_state && !(ndm->ndm_state & NUD_PERMANENT)) {
6169 		netdev_err(dev, "FDB only supports static addresses\n");
6170 		return -EINVAL;
6171 	}
6172 
6173 	if (is_unicast_ether_addr(addr) || is_link_local_ether_addr(addr))
6174 		err = dev_uc_add_excl(dev, addr);
6175 	else if (is_multicast_ether_addr(addr))
6176 		err = dev_mc_add_excl(dev, addr);
6177 	else
6178 		err = -EINVAL;
6179 
6180 	/* Only return duplicate errors if NLM_F_EXCL is set */
6181 	if (err == -EEXIST && !(flags & NLM_F_EXCL))
6182 		err = 0;
6183 
6184 	return err;
6185 }
6186 
6187 /**
6188  * ice_fdb_del - delete an entry from the hardware database
6189  * @ndm: the input from the stack
6190  * @tb: pointer to array of nladdr (unused)
6191  * @dev: the net device pointer
6192  * @addr: the MAC address entry being added
6193  * @vid: VLAN ID
6194  * @notified: whether notification was emitted
6195  * @extack: netlink extended ack
6196  */
6197 static int
6198 ice_fdb_del(struct ndmsg *ndm, __always_unused struct nlattr *tb[],
6199 	    struct net_device *dev, const unsigned char *addr,
6200 	    __always_unused u16 vid, bool *notified,
6201 	    struct netlink_ext_ack *extack)
6202 {
6203 	int err;
6204 
6205 	if (ndm->ndm_state & NUD_PERMANENT) {
6206 		netdev_err(dev, "FDB only supports static addresses\n");
6207 		return -EINVAL;
6208 	}
6209 
6210 	if (is_unicast_ether_addr(addr))
6211 		err = dev_uc_del(dev, addr);
6212 	else if (is_multicast_ether_addr(addr))
6213 		err = dev_mc_del(dev, addr);
6214 	else
6215 		err = -EINVAL;
6216 
6217 	return err;
6218 }
6219 
6220 #define NETIF_VLAN_OFFLOAD_FEATURES	(NETIF_F_HW_VLAN_CTAG_RX | \
6221 					 NETIF_F_HW_VLAN_CTAG_TX | \
6222 					 NETIF_F_HW_VLAN_STAG_RX | \
6223 					 NETIF_F_HW_VLAN_STAG_TX)
6224 
6225 #define NETIF_VLAN_STRIPPING_FEATURES	(NETIF_F_HW_VLAN_CTAG_RX | \
6226 					 NETIF_F_HW_VLAN_STAG_RX)
6227 
6228 #define NETIF_VLAN_FILTERING_FEATURES	(NETIF_F_HW_VLAN_CTAG_FILTER | \
6229 					 NETIF_F_HW_VLAN_STAG_FILTER)
6230 
6231 /**
6232  * ice_fix_features - fix the netdev features flags based on device limitations
6233  * @netdev: ptr to the netdev that flags are being fixed on
6234  * @features: features that need to be checked and possibly fixed
6235  *
6236  * Make sure any fixups are made to features in this callback. This enables the
6237  * driver to not have to check unsupported configurations throughout the driver
6238  * because that's the responsiblity of this callback.
6239  *
6240  * Single VLAN Mode (SVM) Supported Features:
6241  *	NETIF_F_HW_VLAN_CTAG_FILTER
6242  *	NETIF_F_HW_VLAN_CTAG_RX
6243  *	NETIF_F_HW_VLAN_CTAG_TX
6244  *
6245  * Double VLAN Mode (DVM) Supported Features:
6246  *	NETIF_F_HW_VLAN_CTAG_FILTER
6247  *	NETIF_F_HW_VLAN_CTAG_RX
6248  *	NETIF_F_HW_VLAN_CTAG_TX
6249  *
6250  *	NETIF_F_HW_VLAN_STAG_FILTER
6251  *	NETIF_HW_VLAN_STAG_RX
6252  *	NETIF_HW_VLAN_STAG_TX
6253  *
6254  * Features that need fixing:
6255  *	Cannot simultaneously enable CTAG and STAG stripping and/or insertion.
6256  *	These are mutually exlusive as the VSI context cannot support multiple
6257  *	VLAN ethertypes simultaneously for stripping and/or insertion. If this
6258  *	is not done, then default to clearing the requested STAG offload
6259  *	settings.
6260  *
6261  *	All supported filtering has to be enabled or disabled together. For
6262  *	example, in DVM, CTAG and STAG filtering have to be enabled and disabled
6263  *	together. If this is not done, then default to VLAN filtering disabled.
6264  *	These are mutually exclusive as there is currently no way to
6265  *	enable/disable VLAN filtering based on VLAN ethertype when using VLAN
6266  *	prune rules.
6267  */
6268 static netdev_features_t
6269 ice_fix_features(struct net_device *netdev, netdev_features_t features)
6270 {
6271 	struct ice_netdev_priv *np = netdev_priv(netdev);
6272 	netdev_features_t req_vlan_fltr, cur_vlan_fltr;
6273 	bool cur_ctag, cur_stag, req_ctag, req_stag;
6274 
6275 	cur_vlan_fltr = netdev->features & NETIF_VLAN_FILTERING_FEATURES;
6276 	cur_ctag = cur_vlan_fltr & NETIF_F_HW_VLAN_CTAG_FILTER;
6277 	cur_stag = cur_vlan_fltr & NETIF_F_HW_VLAN_STAG_FILTER;
6278 
6279 	req_vlan_fltr = features & NETIF_VLAN_FILTERING_FEATURES;
6280 	req_ctag = req_vlan_fltr & NETIF_F_HW_VLAN_CTAG_FILTER;
6281 	req_stag = req_vlan_fltr & NETIF_F_HW_VLAN_STAG_FILTER;
6282 
6283 	if (req_vlan_fltr != cur_vlan_fltr) {
6284 		if (ice_is_dvm_ena(&np->vsi->back->hw)) {
6285 			if (req_ctag && req_stag) {
6286 				features |= NETIF_VLAN_FILTERING_FEATURES;
6287 			} else if (!req_ctag && !req_stag) {
6288 				features &= ~NETIF_VLAN_FILTERING_FEATURES;
6289 			} else if ((!cur_ctag && req_ctag && !cur_stag) ||
6290 				   (!cur_stag && req_stag && !cur_ctag)) {
6291 				features |= NETIF_VLAN_FILTERING_FEATURES;
6292 				netdev_warn(netdev,  "802.1Q and 802.1ad VLAN filtering must be either both on or both off. VLAN filtering has been enabled for both types.\n");
6293 			} else if ((cur_ctag && !req_ctag && cur_stag) ||
6294 				   (cur_stag && !req_stag && cur_ctag)) {
6295 				features &= ~NETIF_VLAN_FILTERING_FEATURES;
6296 				netdev_warn(netdev,  "802.1Q and 802.1ad VLAN filtering must be either both on or both off. VLAN filtering has been disabled for both types.\n");
6297 			}
6298 		} else {
6299 			if (req_vlan_fltr & NETIF_F_HW_VLAN_STAG_FILTER)
6300 				netdev_warn(netdev, "cannot support requested 802.1ad filtering setting in SVM mode\n");
6301 
6302 			if (req_vlan_fltr & NETIF_F_HW_VLAN_CTAG_FILTER)
6303 				features |= NETIF_F_HW_VLAN_CTAG_FILTER;
6304 		}
6305 	}
6306 
6307 	if ((features & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX)) &&
6308 	    (features & (NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_STAG_TX))) {
6309 		netdev_warn(netdev, "cannot support CTAG and STAG VLAN stripping and/or insertion simultaneously since CTAG and STAG offloads are mutually exclusive, clearing STAG offload settings\n");
6310 		features &= ~(NETIF_F_HW_VLAN_STAG_RX |
6311 			      NETIF_F_HW_VLAN_STAG_TX);
6312 	}
6313 
6314 	if (!(netdev->features & NETIF_F_RXFCS) &&
6315 	    (features & NETIF_F_RXFCS) &&
6316 	    (features & NETIF_VLAN_STRIPPING_FEATURES) &&
6317 	    !ice_vsi_has_non_zero_vlans(np->vsi)) {
6318 		netdev_warn(netdev, "Disabling VLAN stripping as FCS/CRC stripping is also disabled and there is no VLAN configured\n");
6319 		features &= ~NETIF_VLAN_STRIPPING_FEATURES;
6320 	}
6321 
6322 	return features;
6323 }
6324 
6325 /**
6326  * ice_set_rx_rings_vlan_proto - update rings with new stripped VLAN proto
6327  * @vsi: PF's VSI
6328  * @vlan_ethertype: VLAN ethertype (802.1Q or 802.1ad) in network byte order
6329  *
6330  * Store current stripped VLAN proto in ring packet context,
6331  * so it can be accessed more efficiently by packet processing code.
6332  */
6333 static void
6334 ice_set_rx_rings_vlan_proto(struct ice_vsi *vsi, __be16 vlan_ethertype)
6335 {
6336 	u16 i;
6337 
6338 	ice_for_each_alloc_rxq(vsi, i)
6339 		vsi->rx_rings[i]->pkt_ctx.vlan_proto = vlan_ethertype;
6340 }
6341 
6342 /**
6343  * ice_set_vlan_offload_features - set VLAN offload features for the PF VSI
6344  * @vsi: PF's VSI
6345  * @features: features used to determine VLAN offload settings
6346  *
6347  * First, determine the vlan_ethertype based on the VLAN offload bits in
6348  * features. Then determine if stripping and insertion should be enabled or
6349  * disabled. Finally enable or disable VLAN stripping and insertion.
6350  */
6351 static int
6352 ice_set_vlan_offload_features(struct ice_vsi *vsi, netdev_features_t features)
6353 {
6354 	bool enable_stripping = true, enable_insertion = true;
6355 	struct ice_vsi_vlan_ops *vlan_ops;
6356 	int strip_err = 0, insert_err = 0;
6357 	u16 vlan_ethertype = 0;
6358 
6359 	vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
6360 
6361 	if (features & (NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_STAG_TX))
6362 		vlan_ethertype = ETH_P_8021AD;
6363 	else if (features & (NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HW_VLAN_CTAG_TX))
6364 		vlan_ethertype = ETH_P_8021Q;
6365 
6366 	if (!(features & (NETIF_F_HW_VLAN_STAG_RX | NETIF_F_HW_VLAN_CTAG_RX)))
6367 		enable_stripping = false;
6368 	if (!(features & (NETIF_F_HW_VLAN_STAG_TX | NETIF_F_HW_VLAN_CTAG_TX)))
6369 		enable_insertion = false;
6370 
6371 	if (enable_stripping)
6372 		strip_err = vlan_ops->ena_stripping(vsi, vlan_ethertype);
6373 	else
6374 		strip_err = vlan_ops->dis_stripping(vsi);
6375 
6376 	if (enable_insertion)
6377 		insert_err = vlan_ops->ena_insertion(vsi, vlan_ethertype);
6378 	else
6379 		insert_err = vlan_ops->dis_insertion(vsi);
6380 
6381 	if (strip_err || insert_err)
6382 		return -EIO;
6383 
6384 	ice_set_rx_rings_vlan_proto(vsi, enable_stripping ?
6385 				    htons(vlan_ethertype) : 0);
6386 
6387 	return 0;
6388 }
6389 
6390 /**
6391  * ice_set_vlan_filtering_features - set VLAN filtering features for the PF VSI
6392  * @vsi: PF's VSI
6393  * @features: features used to determine VLAN filtering settings
6394  *
6395  * Enable or disable Rx VLAN filtering based on the VLAN filtering bits in the
6396  * features.
6397  */
6398 static int
6399 ice_set_vlan_filtering_features(struct ice_vsi *vsi, netdev_features_t features)
6400 {
6401 	struct ice_vsi_vlan_ops *vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
6402 	int err = 0;
6403 
6404 	/* support Single VLAN Mode (SVM) and Double VLAN Mode (DVM) by checking
6405 	 * if either bit is set. In switchdev mode Rx filtering should never be
6406 	 * enabled.
6407 	 */
6408 	if ((features &
6409 	     (NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)) &&
6410 	     !ice_is_eswitch_mode_switchdev(vsi->back))
6411 		err = vlan_ops->ena_rx_filtering(vsi);
6412 	else
6413 		err = vlan_ops->dis_rx_filtering(vsi);
6414 
6415 	return err;
6416 }
6417 
6418 /**
6419  * ice_set_vlan_features - set VLAN settings based on suggested feature set
6420  * @netdev: ptr to the netdev being adjusted
6421  * @features: the feature set that the stack is suggesting
6422  *
6423  * Only update VLAN settings if the requested_vlan_features are different than
6424  * the current_vlan_features.
6425  */
6426 static int
6427 ice_set_vlan_features(struct net_device *netdev, netdev_features_t features)
6428 {
6429 	netdev_features_t current_vlan_features, requested_vlan_features;
6430 	struct ice_netdev_priv *np = netdev_priv(netdev);
6431 	struct ice_vsi *vsi = np->vsi;
6432 	int err;
6433 
6434 	current_vlan_features = netdev->features & NETIF_VLAN_OFFLOAD_FEATURES;
6435 	requested_vlan_features = features & NETIF_VLAN_OFFLOAD_FEATURES;
6436 	if (current_vlan_features ^ requested_vlan_features) {
6437 		if ((features & NETIF_F_RXFCS) &&
6438 		    (features & NETIF_VLAN_STRIPPING_FEATURES)) {
6439 			dev_err(ice_pf_to_dev(vsi->back),
6440 				"To enable VLAN stripping, you must first enable FCS/CRC stripping\n");
6441 			return -EIO;
6442 		}
6443 
6444 		err = ice_set_vlan_offload_features(vsi, features);
6445 		if (err)
6446 			return err;
6447 	}
6448 
6449 	current_vlan_features = netdev->features &
6450 		NETIF_VLAN_FILTERING_FEATURES;
6451 	requested_vlan_features = features & NETIF_VLAN_FILTERING_FEATURES;
6452 	if (current_vlan_features ^ requested_vlan_features) {
6453 		err = ice_set_vlan_filtering_features(vsi, features);
6454 		if (err)
6455 			return err;
6456 	}
6457 
6458 	return 0;
6459 }
6460 
6461 /**
6462  * ice_set_loopback - turn on/off loopback mode on underlying PF
6463  * @vsi: ptr to VSI
6464  * @ena: flag to indicate the on/off setting
6465  */
6466 static int ice_set_loopback(struct ice_vsi *vsi, bool ena)
6467 {
6468 	bool if_running = netif_running(vsi->netdev);
6469 	int ret;
6470 
6471 	if (if_running && !test_and_set_bit(ICE_VSI_DOWN, vsi->state)) {
6472 		ret = ice_down(vsi);
6473 		if (ret) {
6474 			netdev_err(vsi->netdev, "Preparing device to toggle loopback failed\n");
6475 			return ret;
6476 		}
6477 	}
6478 	ret = ice_aq_set_mac_loopback(&vsi->back->hw, ena, NULL);
6479 	if (ret)
6480 		netdev_err(vsi->netdev, "Failed to toggle loopback state\n");
6481 	if (if_running)
6482 		ret = ice_up(vsi);
6483 
6484 	return ret;
6485 }
6486 
6487 /**
6488  * ice_set_features - set the netdev feature flags
6489  * @netdev: ptr to the netdev being adjusted
6490  * @features: the feature set that the stack is suggesting
6491  */
6492 static int
6493 ice_set_features(struct net_device *netdev, netdev_features_t features)
6494 {
6495 	netdev_features_t changed = netdev->features ^ features;
6496 	struct ice_netdev_priv *np = netdev_priv(netdev);
6497 	struct ice_vsi *vsi = np->vsi;
6498 	struct ice_pf *pf = vsi->back;
6499 	int ret = 0;
6500 
6501 	/* Don't set any netdev advanced features with device in Safe Mode */
6502 	if (ice_is_safe_mode(pf)) {
6503 		dev_err(ice_pf_to_dev(pf),
6504 			"Device is in Safe Mode - not enabling advanced netdev features\n");
6505 		return ret;
6506 	}
6507 
6508 	/* Do not change setting during reset */
6509 	if (ice_is_reset_in_progress(pf->state)) {
6510 		dev_err(ice_pf_to_dev(pf),
6511 			"Device is resetting, changing advanced netdev features temporarily unavailable.\n");
6512 		return -EBUSY;
6513 	}
6514 
6515 	/* Multiple features can be changed in one call so keep features in
6516 	 * separate if/else statements to guarantee each feature is checked
6517 	 */
6518 	if (changed & NETIF_F_RXHASH)
6519 		ice_vsi_manage_rss_lut(vsi, !!(features & NETIF_F_RXHASH));
6520 
6521 	ret = ice_set_vlan_features(netdev, features);
6522 	if (ret)
6523 		return ret;
6524 
6525 	/* Turn on receive of FCS aka CRC, and after setting this
6526 	 * flag the packet data will have the 4 byte CRC appended
6527 	 */
6528 	if (changed & NETIF_F_RXFCS) {
6529 		if ((features & NETIF_F_RXFCS) &&
6530 		    (features & NETIF_VLAN_STRIPPING_FEATURES)) {
6531 			dev_err(ice_pf_to_dev(vsi->back),
6532 				"To disable FCS/CRC stripping, you must first disable VLAN stripping\n");
6533 			return -EIO;
6534 		}
6535 
6536 		ice_vsi_cfg_crc_strip(vsi, !!(features & NETIF_F_RXFCS));
6537 		ret = ice_down_up(vsi);
6538 		if (ret)
6539 			return ret;
6540 	}
6541 
6542 	if (changed & NETIF_F_NTUPLE) {
6543 		bool ena = !!(features & NETIF_F_NTUPLE);
6544 
6545 		ice_vsi_manage_fdir(vsi, ena);
6546 		ena ? ice_init_arfs(vsi) : ice_clear_arfs(vsi);
6547 	}
6548 
6549 	/* don't turn off hw_tc_offload when ADQ is already enabled */
6550 	if (!(features & NETIF_F_HW_TC) && ice_is_adq_active(pf)) {
6551 		dev_err(ice_pf_to_dev(pf), "ADQ is active, can't turn hw_tc_offload off\n");
6552 		return -EACCES;
6553 	}
6554 
6555 	if (changed & NETIF_F_HW_TC) {
6556 		bool ena = !!(features & NETIF_F_HW_TC);
6557 
6558 		assign_bit(ICE_FLAG_CLS_FLOWER, pf->flags, ena);
6559 	}
6560 
6561 	if (changed & NETIF_F_LOOPBACK)
6562 		ret = ice_set_loopback(vsi, !!(features & NETIF_F_LOOPBACK));
6563 
6564 	/* Due to E830 hardware limitations, TSO (NETIF_F_ALL_TSO) with GCS
6565 	 * (NETIF_F_HW_CSUM) is not supported.
6566 	 */
6567 	if (ice_is_feature_supported(pf, ICE_F_GCS) &&
6568 	    ((features & NETIF_F_HW_CSUM) && (features & NETIF_F_ALL_TSO))) {
6569 		if (netdev->features & NETIF_F_HW_CSUM)
6570 			dev_err(ice_pf_to_dev(pf), "To enable TSO, you must first disable HW checksum.\n");
6571 		else
6572 			dev_err(ice_pf_to_dev(pf), "To enable HW checksum, you must first disable TSO.\n");
6573 		return -EIO;
6574 	}
6575 
6576 	return ret;
6577 }
6578 
6579 /**
6580  * ice_vsi_vlan_setup - Setup VLAN offload properties on a PF VSI
6581  * @vsi: VSI to setup VLAN properties for
6582  */
6583 static int ice_vsi_vlan_setup(struct ice_vsi *vsi)
6584 {
6585 	int err;
6586 
6587 	err = ice_set_vlan_offload_features(vsi, vsi->netdev->features);
6588 	if (err)
6589 		return err;
6590 
6591 	err = ice_set_vlan_filtering_features(vsi, vsi->netdev->features);
6592 	if (err)
6593 		return err;
6594 
6595 	return ice_vsi_add_vlan_zero(vsi);
6596 }
6597 
6598 /**
6599  * ice_vsi_cfg_lan - Setup the VSI lan related config
6600  * @vsi: the VSI being configured
6601  *
6602  * Return 0 on success and negative value on error
6603  */
6604 int ice_vsi_cfg_lan(struct ice_vsi *vsi)
6605 {
6606 	int err;
6607 
6608 	if (vsi->netdev && vsi->type == ICE_VSI_PF) {
6609 		ice_set_rx_mode(vsi->netdev);
6610 
6611 		err = ice_vsi_vlan_setup(vsi);
6612 		if (err)
6613 			return err;
6614 	}
6615 	ice_vsi_cfg_dcb_rings(vsi);
6616 
6617 	err = ice_vsi_cfg_lan_txqs(vsi);
6618 	if (!err && ice_is_xdp_ena_vsi(vsi))
6619 		err = ice_vsi_cfg_xdp_txqs(vsi);
6620 	if (!err)
6621 		err = ice_vsi_cfg_rxqs(vsi);
6622 
6623 	return err;
6624 }
6625 
6626 /* THEORY OF MODERATION:
6627  * The ice driver hardware works differently than the hardware that DIMLIB was
6628  * originally made for. ice hardware doesn't have packet count limits that
6629  * can trigger an interrupt, but it *does* have interrupt rate limit support,
6630  * which is hard-coded to a limit of 250,000 ints/second.
6631  * If not using dynamic moderation, the INTRL value can be modified
6632  * by ethtool rx-usecs-high.
6633  */
6634 struct ice_dim {
6635 	/* the throttle rate for interrupts, basically worst case delay before
6636 	 * an initial interrupt fires, value is stored in microseconds.
6637 	 */
6638 	u16 itr;
6639 };
6640 
6641 /* Make a different profile for Rx that doesn't allow quite so aggressive
6642  * moderation at the high end (it maxes out at 126us or about 8k interrupts a
6643  * second.
6644  */
6645 static const struct ice_dim rx_profile[] = {
6646 	{2},    /* 500,000 ints/s, capped at 250K by INTRL */
6647 	{8},    /* 125,000 ints/s */
6648 	{16},   /*  62,500 ints/s */
6649 	{62},   /*  16,129 ints/s */
6650 	{126}   /*   7,936 ints/s */
6651 };
6652 
6653 /* The transmit profile, which has the same sorts of values
6654  * as the previous struct
6655  */
6656 static const struct ice_dim tx_profile[] = {
6657 	{2},    /* 500,000 ints/s, capped at 250K by INTRL */
6658 	{8},    /* 125,000 ints/s */
6659 	{40},   /*  16,125 ints/s */
6660 	{128},  /*   7,812 ints/s */
6661 	{256}   /*   3,906 ints/s */
6662 };
6663 
6664 static void ice_tx_dim_work(struct work_struct *work)
6665 {
6666 	struct ice_ring_container *rc;
6667 	struct dim *dim;
6668 	u16 itr;
6669 
6670 	dim = container_of(work, struct dim, work);
6671 	rc = dim->priv;
6672 
6673 	WARN_ON(dim->profile_ix >= ARRAY_SIZE(tx_profile));
6674 
6675 	/* look up the values in our local table */
6676 	itr = tx_profile[dim->profile_ix].itr;
6677 
6678 	ice_trace(tx_dim_work, container_of(rc, struct ice_q_vector, tx), dim);
6679 	ice_write_itr(rc, itr);
6680 
6681 	dim->state = DIM_START_MEASURE;
6682 }
6683 
6684 static void ice_rx_dim_work(struct work_struct *work)
6685 {
6686 	struct ice_ring_container *rc;
6687 	struct dim *dim;
6688 	u16 itr;
6689 
6690 	dim = container_of(work, struct dim, work);
6691 	rc = dim->priv;
6692 
6693 	WARN_ON(dim->profile_ix >= ARRAY_SIZE(rx_profile));
6694 
6695 	/* look up the values in our local table */
6696 	itr = rx_profile[dim->profile_ix].itr;
6697 
6698 	ice_trace(rx_dim_work, container_of(rc, struct ice_q_vector, rx), dim);
6699 	ice_write_itr(rc, itr);
6700 
6701 	dim->state = DIM_START_MEASURE;
6702 }
6703 
6704 #define ICE_DIM_DEFAULT_PROFILE_IX 1
6705 
6706 /**
6707  * ice_init_moderation - set up interrupt moderation
6708  * @q_vector: the vector containing rings to be configured
6709  *
6710  * Set up interrupt moderation registers, with the intent to do the right thing
6711  * when called from reset or from probe, and whether or not dynamic moderation
6712  * is enabled or not. Take special care to write all the registers in both
6713  * dynamic moderation mode or not in order to make sure hardware is in a known
6714  * state.
6715  */
6716 static void ice_init_moderation(struct ice_q_vector *q_vector)
6717 {
6718 	struct ice_ring_container *rc;
6719 	bool tx_dynamic, rx_dynamic;
6720 
6721 	rc = &q_vector->tx;
6722 	INIT_WORK(&rc->dim.work, ice_tx_dim_work);
6723 	rc->dim.mode = DIM_CQ_PERIOD_MODE_START_FROM_EQE;
6724 	rc->dim.profile_ix = ICE_DIM_DEFAULT_PROFILE_IX;
6725 	rc->dim.priv = rc;
6726 	tx_dynamic = ITR_IS_DYNAMIC(rc);
6727 
6728 	/* set the initial TX ITR to match the above */
6729 	ice_write_itr(rc, tx_dynamic ?
6730 		      tx_profile[rc->dim.profile_ix].itr : rc->itr_setting);
6731 
6732 	rc = &q_vector->rx;
6733 	INIT_WORK(&rc->dim.work, ice_rx_dim_work);
6734 	rc->dim.mode = DIM_CQ_PERIOD_MODE_START_FROM_EQE;
6735 	rc->dim.profile_ix = ICE_DIM_DEFAULT_PROFILE_IX;
6736 	rc->dim.priv = rc;
6737 	rx_dynamic = ITR_IS_DYNAMIC(rc);
6738 
6739 	/* set the initial RX ITR to match the above */
6740 	ice_write_itr(rc, rx_dynamic ? rx_profile[rc->dim.profile_ix].itr :
6741 				       rc->itr_setting);
6742 
6743 	ice_set_q_vector_intrl(q_vector);
6744 }
6745 
6746 /**
6747  * ice_napi_enable_all - Enable NAPI for all q_vectors in the VSI
6748  * @vsi: the VSI being configured
6749  */
6750 static void ice_napi_enable_all(struct ice_vsi *vsi)
6751 {
6752 	int q_idx;
6753 
6754 	if (!vsi->netdev)
6755 		return;
6756 
6757 	ice_for_each_q_vector(vsi, q_idx) {
6758 		struct ice_q_vector *q_vector = vsi->q_vectors[q_idx];
6759 
6760 		ice_init_moderation(q_vector);
6761 
6762 		if (q_vector->rx.rx_ring || q_vector->tx.tx_ring)
6763 			napi_enable(&q_vector->napi);
6764 	}
6765 }
6766 
6767 /**
6768  * ice_up_complete - Finish the last steps of bringing up a connection
6769  * @vsi: The VSI being configured
6770  *
6771  * Return 0 on success and negative value on error
6772  */
6773 static int ice_up_complete(struct ice_vsi *vsi)
6774 {
6775 	struct ice_pf *pf = vsi->back;
6776 	int err;
6777 
6778 	ice_vsi_cfg_msix(vsi);
6779 
6780 	/* Enable only Rx rings, Tx rings were enabled by the FW when the
6781 	 * Tx queue group list was configured and the context bits were
6782 	 * programmed using ice_vsi_cfg_txqs
6783 	 */
6784 	err = ice_vsi_start_all_rx_rings(vsi);
6785 	if (err)
6786 		return err;
6787 
6788 	clear_bit(ICE_VSI_DOWN, vsi->state);
6789 	ice_napi_enable_all(vsi);
6790 	ice_vsi_ena_irq(vsi);
6791 
6792 	if (vsi->port_info &&
6793 	    (vsi->port_info->phy.link_info.link_info & ICE_AQ_LINK_UP) &&
6794 	    ((vsi->netdev && (vsi->type == ICE_VSI_PF ||
6795 			      vsi->type == ICE_VSI_SF)))) {
6796 		ice_print_link_msg(vsi, true);
6797 		netif_tx_start_all_queues(vsi->netdev);
6798 		netif_carrier_on(vsi->netdev);
6799 		ice_ptp_link_change(pf, true);
6800 	}
6801 
6802 	/* Perform an initial read of the statistics registers now to
6803 	 * set the baseline so counters are ready when interface is up
6804 	 */
6805 	ice_update_eth_stats(vsi);
6806 
6807 	if (vsi->type == ICE_VSI_PF)
6808 		ice_service_task_schedule(pf);
6809 
6810 	return 0;
6811 }
6812 
6813 /**
6814  * ice_up - Bring the connection back up after being down
6815  * @vsi: VSI being configured
6816  */
6817 int ice_up(struct ice_vsi *vsi)
6818 {
6819 	int err;
6820 
6821 	err = ice_vsi_cfg_lan(vsi);
6822 	if (!err)
6823 		err = ice_up_complete(vsi);
6824 
6825 	return err;
6826 }
6827 
6828 /**
6829  * ice_fetch_u64_stats_per_ring - get packets and bytes stats per ring
6830  * @syncp: pointer to u64_stats_sync
6831  * @stats: stats that pkts and bytes count will be taken from
6832  * @pkts: packets stats counter
6833  * @bytes: bytes stats counter
6834  *
6835  * This function fetches stats from the ring considering the atomic operations
6836  * that needs to be performed to read u64 values in 32 bit machine.
6837  */
6838 void
6839 ice_fetch_u64_stats_per_ring(struct u64_stats_sync *syncp,
6840 			     struct ice_q_stats stats, u64 *pkts, u64 *bytes)
6841 {
6842 	unsigned int start;
6843 
6844 	do {
6845 		start = u64_stats_fetch_begin(syncp);
6846 		*pkts = stats.pkts;
6847 		*bytes = stats.bytes;
6848 	} while (u64_stats_fetch_retry(syncp, start));
6849 }
6850 
6851 /**
6852  * ice_update_vsi_tx_ring_stats - Update VSI Tx ring stats counters
6853  * @vsi: the VSI to be updated
6854  * @vsi_stats: the stats struct to be updated
6855  * @rings: rings to work on
6856  * @count: number of rings
6857  */
6858 static void
6859 ice_update_vsi_tx_ring_stats(struct ice_vsi *vsi,
6860 			     struct rtnl_link_stats64 *vsi_stats,
6861 			     struct ice_tx_ring **rings, u16 count)
6862 {
6863 	u16 i;
6864 
6865 	for (i = 0; i < count; i++) {
6866 		struct ice_tx_ring *ring;
6867 		u64 pkts = 0, bytes = 0;
6868 
6869 		ring = READ_ONCE(rings[i]);
6870 		if (!ring || !ring->ring_stats)
6871 			continue;
6872 		ice_fetch_u64_stats_per_ring(&ring->ring_stats->syncp,
6873 					     ring->ring_stats->stats, &pkts,
6874 					     &bytes);
6875 		vsi_stats->tx_packets += pkts;
6876 		vsi_stats->tx_bytes += bytes;
6877 		vsi->tx_restart += ring->ring_stats->tx_stats.restart_q;
6878 		vsi->tx_busy += ring->ring_stats->tx_stats.tx_busy;
6879 		vsi->tx_linearize += ring->ring_stats->tx_stats.tx_linearize;
6880 	}
6881 }
6882 
6883 /**
6884  * ice_update_vsi_ring_stats - Update VSI stats counters
6885  * @vsi: the VSI to be updated
6886  */
6887 static void ice_update_vsi_ring_stats(struct ice_vsi *vsi)
6888 {
6889 	struct rtnl_link_stats64 *net_stats, *stats_prev;
6890 	struct rtnl_link_stats64 *vsi_stats;
6891 	struct ice_pf *pf = vsi->back;
6892 	u64 pkts, bytes;
6893 	int i;
6894 
6895 	vsi_stats = kzalloc(sizeof(*vsi_stats), GFP_ATOMIC);
6896 	if (!vsi_stats)
6897 		return;
6898 
6899 	/* reset non-netdev (extended) stats */
6900 	vsi->tx_restart = 0;
6901 	vsi->tx_busy = 0;
6902 	vsi->tx_linearize = 0;
6903 	vsi->rx_buf_failed = 0;
6904 	vsi->rx_page_failed = 0;
6905 
6906 	rcu_read_lock();
6907 
6908 	/* update Tx rings counters */
6909 	ice_update_vsi_tx_ring_stats(vsi, vsi_stats, vsi->tx_rings,
6910 				     vsi->num_txq);
6911 
6912 	/* update Rx rings counters */
6913 	ice_for_each_rxq(vsi, i) {
6914 		struct ice_rx_ring *ring = READ_ONCE(vsi->rx_rings[i]);
6915 		struct ice_ring_stats *ring_stats;
6916 
6917 		ring_stats = ring->ring_stats;
6918 		ice_fetch_u64_stats_per_ring(&ring_stats->syncp,
6919 					     ring_stats->stats, &pkts,
6920 					     &bytes);
6921 		vsi_stats->rx_packets += pkts;
6922 		vsi_stats->rx_bytes += bytes;
6923 		vsi->rx_buf_failed += ring_stats->rx_stats.alloc_buf_failed;
6924 		vsi->rx_page_failed += ring_stats->rx_stats.alloc_page_failed;
6925 	}
6926 
6927 	/* update XDP Tx rings counters */
6928 	if (ice_is_xdp_ena_vsi(vsi))
6929 		ice_update_vsi_tx_ring_stats(vsi, vsi_stats, vsi->xdp_rings,
6930 					     vsi->num_xdp_txq);
6931 
6932 	rcu_read_unlock();
6933 
6934 	net_stats = &vsi->net_stats;
6935 	stats_prev = &vsi->net_stats_prev;
6936 
6937 	/* Update netdev counters, but keep in mind that values could start at
6938 	 * random value after PF reset. And as we increase the reported stat by
6939 	 * diff of Prev-Cur, we need to be sure that Prev is valid. If it's not,
6940 	 * let's skip this round.
6941 	 */
6942 	if (likely(pf->stat_prev_loaded)) {
6943 		net_stats->tx_packets += vsi_stats->tx_packets - stats_prev->tx_packets;
6944 		net_stats->tx_bytes += vsi_stats->tx_bytes - stats_prev->tx_bytes;
6945 		net_stats->rx_packets += vsi_stats->rx_packets - stats_prev->rx_packets;
6946 		net_stats->rx_bytes += vsi_stats->rx_bytes - stats_prev->rx_bytes;
6947 	}
6948 
6949 	stats_prev->tx_packets = vsi_stats->tx_packets;
6950 	stats_prev->tx_bytes = vsi_stats->tx_bytes;
6951 	stats_prev->rx_packets = vsi_stats->rx_packets;
6952 	stats_prev->rx_bytes = vsi_stats->rx_bytes;
6953 
6954 	kfree(vsi_stats);
6955 }
6956 
6957 /**
6958  * ice_update_vsi_stats - Update VSI stats counters
6959  * @vsi: the VSI to be updated
6960  */
6961 void ice_update_vsi_stats(struct ice_vsi *vsi)
6962 {
6963 	struct rtnl_link_stats64 *cur_ns = &vsi->net_stats;
6964 	struct ice_eth_stats *cur_es = &vsi->eth_stats;
6965 	struct ice_pf *pf = vsi->back;
6966 
6967 	if (test_bit(ICE_VSI_DOWN, vsi->state) ||
6968 	    test_bit(ICE_CFG_BUSY, pf->state))
6969 		return;
6970 
6971 	/* get stats as recorded by Tx/Rx rings */
6972 	ice_update_vsi_ring_stats(vsi);
6973 
6974 	/* get VSI stats as recorded by the hardware */
6975 	ice_update_eth_stats(vsi);
6976 
6977 	cur_ns->tx_errors = cur_es->tx_errors;
6978 	cur_ns->rx_dropped = cur_es->rx_discards;
6979 	cur_ns->tx_dropped = cur_es->tx_discards;
6980 	cur_ns->multicast = cur_es->rx_multicast;
6981 
6982 	/* update some more netdev stats if this is main VSI */
6983 	if (vsi->type == ICE_VSI_PF) {
6984 		cur_ns->rx_crc_errors = pf->stats.crc_errors;
6985 		cur_ns->rx_errors = pf->stats.crc_errors +
6986 				    pf->stats.illegal_bytes +
6987 				    pf->stats.rx_undersize +
6988 				    pf->hw_csum_rx_error +
6989 				    pf->stats.rx_jabber +
6990 				    pf->stats.rx_fragments +
6991 				    pf->stats.rx_oversize;
6992 		/* record drops from the port level */
6993 		cur_ns->rx_missed_errors = pf->stats.eth.rx_discards;
6994 	}
6995 }
6996 
6997 /**
6998  * ice_update_pf_stats - Update PF port stats counters
6999  * @pf: PF whose stats needs to be updated
7000  */
7001 void ice_update_pf_stats(struct ice_pf *pf)
7002 {
7003 	struct ice_hw_port_stats *prev_ps, *cur_ps;
7004 	struct ice_hw *hw = &pf->hw;
7005 	u16 fd_ctr_base;
7006 	u8 port;
7007 
7008 	port = hw->port_info->lport;
7009 	prev_ps = &pf->stats_prev;
7010 	cur_ps = &pf->stats;
7011 
7012 	if (ice_is_reset_in_progress(pf->state))
7013 		pf->stat_prev_loaded = false;
7014 
7015 	ice_stat_update40(hw, GLPRT_GORCL(port), pf->stat_prev_loaded,
7016 			  &prev_ps->eth.rx_bytes,
7017 			  &cur_ps->eth.rx_bytes);
7018 
7019 	ice_stat_update40(hw, GLPRT_UPRCL(port), pf->stat_prev_loaded,
7020 			  &prev_ps->eth.rx_unicast,
7021 			  &cur_ps->eth.rx_unicast);
7022 
7023 	ice_stat_update40(hw, GLPRT_MPRCL(port), pf->stat_prev_loaded,
7024 			  &prev_ps->eth.rx_multicast,
7025 			  &cur_ps->eth.rx_multicast);
7026 
7027 	ice_stat_update40(hw, GLPRT_BPRCL(port), pf->stat_prev_loaded,
7028 			  &prev_ps->eth.rx_broadcast,
7029 			  &cur_ps->eth.rx_broadcast);
7030 
7031 	ice_stat_update32(hw, PRTRPB_RDPC, pf->stat_prev_loaded,
7032 			  &prev_ps->eth.rx_discards,
7033 			  &cur_ps->eth.rx_discards);
7034 
7035 	ice_stat_update40(hw, GLPRT_GOTCL(port), pf->stat_prev_loaded,
7036 			  &prev_ps->eth.tx_bytes,
7037 			  &cur_ps->eth.tx_bytes);
7038 
7039 	ice_stat_update40(hw, GLPRT_UPTCL(port), pf->stat_prev_loaded,
7040 			  &prev_ps->eth.tx_unicast,
7041 			  &cur_ps->eth.tx_unicast);
7042 
7043 	ice_stat_update40(hw, GLPRT_MPTCL(port), pf->stat_prev_loaded,
7044 			  &prev_ps->eth.tx_multicast,
7045 			  &cur_ps->eth.tx_multicast);
7046 
7047 	ice_stat_update40(hw, GLPRT_BPTCL(port), pf->stat_prev_loaded,
7048 			  &prev_ps->eth.tx_broadcast,
7049 			  &cur_ps->eth.tx_broadcast);
7050 
7051 	ice_stat_update32(hw, GLPRT_TDOLD(port), pf->stat_prev_loaded,
7052 			  &prev_ps->tx_dropped_link_down,
7053 			  &cur_ps->tx_dropped_link_down);
7054 
7055 	ice_stat_update40(hw, GLPRT_PRC64L(port), pf->stat_prev_loaded,
7056 			  &prev_ps->rx_size_64, &cur_ps->rx_size_64);
7057 
7058 	ice_stat_update40(hw, GLPRT_PRC127L(port), pf->stat_prev_loaded,
7059 			  &prev_ps->rx_size_127, &cur_ps->rx_size_127);
7060 
7061 	ice_stat_update40(hw, GLPRT_PRC255L(port), pf->stat_prev_loaded,
7062 			  &prev_ps->rx_size_255, &cur_ps->rx_size_255);
7063 
7064 	ice_stat_update40(hw, GLPRT_PRC511L(port), pf->stat_prev_loaded,
7065 			  &prev_ps->rx_size_511, &cur_ps->rx_size_511);
7066 
7067 	ice_stat_update40(hw, GLPRT_PRC1023L(port), pf->stat_prev_loaded,
7068 			  &prev_ps->rx_size_1023, &cur_ps->rx_size_1023);
7069 
7070 	ice_stat_update40(hw, GLPRT_PRC1522L(port), pf->stat_prev_loaded,
7071 			  &prev_ps->rx_size_1522, &cur_ps->rx_size_1522);
7072 
7073 	ice_stat_update40(hw, GLPRT_PRC9522L(port), pf->stat_prev_loaded,
7074 			  &prev_ps->rx_size_big, &cur_ps->rx_size_big);
7075 
7076 	ice_stat_update40(hw, GLPRT_PTC64L(port), pf->stat_prev_loaded,
7077 			  &prev_ps->tx_size_64, &cur_ps->tx_size_64);
7078 
7079 	ice_stat_update40(hw, GLPRT_PTC127L(port), pf->stat_prev_loaded,
7080 			  &prev_ps->tx_size_127, &cur_ps->tx_size_127);
7081 
7082 	ice_stat_update40(hw, GLPRT_PTC255L(port), pf->stat_prev_loaded,
7083 			  &prev_ps->tx_size_255, &cur_ps->tx_size_255);
7084 
7085 	ice_stat_update40(hw, GLPRT_PTC511L(port), pf->stat_prev_loaded,
7086 			  &prev_ps->tx_size_511, &cur_ps->tx_size_511);
7087 
7088 	ice_stat_update40(hw, GLPRT_PTC1023L(port), pf->stat_prev_loaded,
7089 			  &prev_ps->tx_size_1023, &cur_ps->tx_size_1023);
7090 
7091 	ice_stat_update40(hw, GLPRT_PTC1522L(port), pf->stat_prev_loaded,
7092 			  &prev_ps->tx_size_1522, &cur_ps->tx_size_1522);
7093 
7094 	ice_stat_update40(hw, GLPRT_PTC9522L(port), pf->stat_prev_loaded,
7095 			  &prev_ps->tx_size_big, &cur_ps->tx_size_big);
7096 
7097 	fd_ctr_base = hw->fd_ctr_base;
7098 
7099 	ice_stat_update40(hw,
7100 			  GLSTAT_FD_CNT0L(ICE_FD_SB_STAT_IDX(fd_ctr_base)),
7101 			  pf->stat_prev_loaded, &prev_ps->fd_sb_match,
7102 			  &cur_ps->fd_sb_match);
7103 	ice_stat_update32(hw, GLPRT_LXONRXC(port), pf->stat_prev_loaded,
7104 			  &prev_ps->link_xon_rx, &cur_ps->link_xon_rx);
7105 
7106 	ice_stat_update32(hw, GLPRT_LXOFFRXC(port), pf->stat_prev_loaded,
7107 			  &prev_ps->link_xoff_rx, &cur_ps->link_xoff_rx);
7108 
7109 	ice_stat_update32(hw, GLPRT_LXONTXC(port), pf->stat_prev_loaded,
7110 			  &prev_ps->link_xon_tx, &cur_ps->link_xon_tx);
7111 
7112 	ice_stat_update32(hw, GLPRT_LXOFFTXC(port), pf->stat_prev_loaded,
7113 			  &prev_ps->link_xoff_tx, &cur_ps->link_xoff_tx);
7114 
7115 	ice_update_dcb_stats(pf);
7116 
7117 	ice_stat_update32(hw, GLPRT_CRCERRS(port), pf->stat_prev_loaded,
7118 			  &prev_ps->crc_errors, &cur_ps->crc_errors);
7119 
7120 	ice_stat_update32(hw, GLPRT_ILLERRC(port), pf->stat_prev_loaded,
7121 			  &prev_ps->illegal_bytes, &cur_ps->illegal_bytes);
7122 
7123 	ice_stat_update32(hw, GLPRT_MLFC(port), pf->stat_prev_loaded,
7124 			  &prev_ps->mac_local_faults,
7125 			  &cur_ps->mac_local_faults);
7126 
7127 	ice_stat_update32(hw, GLPRT_MRFC(port), pf->stat_prev_loaded,
7128 			  &prev_ps->mac_remote_faults,
7129 			  &cur_ps->mac_remote_faults);
7130 
7131 	ice_stat_update32(hw, GLPRT_RLEC(port), pf->stat_prev_loaded,
7132 			  &prev_ps->rx_len_errors, &cur_ps->rx_len_errors);
7133 
7134 	ice_stat_update32(hw, GLPRT_RUC(port), pf->stat_prev_loaded,
7135 			  &prev_ps->rx_undersize, &cur_ps->rx_undersize);
7136 
7137 	ice_stat_update32(hw, GLPRT_RFC(port), pf->stat_prev_loaded,
7138 			  &prev_ps->rx_fragments, &cur_ps->rx_fragments);
7139 
7140 	ice_stat_update32(hw, GLPRT_ROC(port), pf->stat_prev_loaded,
7141 			  &prev_ps->rx_oversize, &cur_ps->rx_oversize);
7142 
7143 	ice_stat_update32(hw, GLPRT_RJC(port), pf->stat_prev_loaded,
7144 			  &prev_ps->rx_jabber, &cur_ps->rx_jabber);
7145 
7146 	cur_ps->fd_sb_status = test_bit(ICE_FLAG_FD_ENA, pf->flags) ? 1 : 0;
7147 
7148 	pf->stat_prev_loaded = true;
7149 }
7150 
7151 /**
7152  * ice_get_stats64 - get statistics for network device structure
7153  * @netdev: network interface device structure
7154  * @stats: main device statistics structure
7155  */
7156 void ice_get_stats64(struct net_device *netdev, struct rtnl_link_stats64 *stats)
7157 {
7158 	struct ice_netdev_priv *np = netdev_priv(netdev);
7159 	struct rtnl_link_stats64 *vsi_stats;
7160 	struct ice_vsi *vsi = np->vsi;
7161 
7162 	vsi_stats = &vsi->net_stats;
7163 
7164 	if (!vsi->num_txq || !vsi->num_rxq)
7165 		return;
7166 
7167 	/* netdev packet/byte stats come from ring counter. These are obtained
7168 	 * by summing up ring counters (done by ice_update_vsi_ring_stats).
7169 	 * But, only call the update routine and read the registers if VSI is
7170 	 * not down.
7171 	 */
7172 	if (!test_bit(ICE_VSI_DOWN, vsi->state))
7173 		ice_update_vsi_ring_stats(vsi);
7174 	stats->tx_packets = vsi_stats->tx_packets;
7175 	stats->tx_bytes = vsi_stats->tx_bytes;
7176 	stats->rx_packets = vsi_stats->rx_packets;
7177 	stats->rx_bytes = vsi_stats->rx_bytes;
7178 
7179 	/* The rest of the stats can be read from the hardware but instead we
7180 	 * just return values that the watchdog task has already obtained from
7181 	 * the hardware.
7182 	 */
7183 	stats->multicast = vsi_stats->multicast;
7184 	stats->tx_errors = vsi_stats->tx_errors;
7185 	stats->tx_dropped = vsi_stats->tx_dropped;
7186 	stats->rx_errors = vsi_stats->rx_errors;
7187 	stats->rx_dropped = vsi_stats->rx_dropped;
7188 	stats->rx_crc_errors = vsi_stats->rx_crc_errors;
7189 	stats->rx_length_errors = vsi_stats->rx_length_errors;
7190 }
7191 
7192 /**
7193  * ice_napi_disable_all - Disable NAPI for all q_vectors in the VSI
7194  * @vsi: VSI having NAPI disabled
7195  */
7196 static void ice_napi_disable_all(struct ice_vsi *vsi)
7197 {
7198 	int q_idx;
7199 
7200 	if (!vsi->netdev)
7201 		return;
7202 
7203 	ice_for_each_q_vector(vsi, q_idx) {
7204 		struct ice_q_vector *q_vector = vsi->q_vectors[q_idx];
7205 
7206 		if (q_vector->rx.rx_ring || q_vector->tx.tx_ring)
7207 			napi_disable(&q_vector->napi);
7208 
7209 		cancel_work_sync(&q_vector->tx.dim.work);
7210 		cancel_work_sync(&q_vector->rx.dim.work);
7211 	}
7212 }
7213 
7214 /**
7215  * ice_vsi_dis_irq - Mask off queue interrupt generation on the VSI
7216  * @vsi: the VSI being un-configured
7217  */
7218 static void ice_vsi_dis_irq(struct ice_vsi *vsi)
7219 {
7220 	struct ice_pf *pf = vsi->back;
7221 	struct ice_hw *hw = &pf->hw;
7222 	u32 val;
7223 	int i;
7224 
7225 	/* disable interrupt causation from each Rx queue; Tx queues are
7226 	 * handled in ice_vsi_stop_tx_ring()
7227 	 */
7228 	if (vsi->rx_rings) {
7229 		ice_for_each_rxq(vsi, i) {
7230 			if (vsi->rx_rings[i]) {
7231 				u16 reg;
7232 
7233 				reg = vsi->rx_rings[i]->reg_idx;
7234 				val = rd32(hw, QINT_RQCTL(reg));
7235 				val &= ~QINT_RQCTL_CAUSE_ENA_M;
7236 				wr32(hw, QINT_RQCTL(reg), val);
7237 			}
7238 		}
7239 	}
7240 
7241 	/* disable each interrupt */
7242 	ice_for_each_q_vector(vsi, i) {
7243 		if (!vsi->q_vectors[i])
7244 			continue;
7245 		wr32(hw, GLINT_DYN_CTL(vsi->q_vectors[i]->reg_idx), 0);
7246 	}
7247 
7248 	ice_flush(hw);
7249 
7250 	/* don't call synchronize_irq() for VF's from the host */
7251 	if (vsi->type == ICE_VSI_VF)
7252 		return;
7253 
7254 	ice_for_each_q_vector(vsi, i)
7255 		synchronize_irq(vsi->q_vectors[i]->irq.virq);
7256 }
7257 
7258 /**
7259  * ice_down - Shutdown the connection
7260  * @vsi: The VSI being stopped
7261  *
7262  * Caller of this function is expected to set the vsi->state ICE_DOWN bit
7263  */
7264 int ice_down(struct ice_vsi *vsi)
7265 {
7266 	int i, tx_err, rx_err, vlan_err = 0;
7267 
7268 	WARN_ON(!test_bit(ICE_VSI_DOWN, vsi->state));
7269 
7270 	if (vsi->netdev) {
7271 		vlan_err = ice_vsi_del_vlan_zero(vsi);
7272 		ice_ptp_link_change(vsi->back, false);
7273 		netif_carrier_off(vsi->netdev);
7274 		netif_tx_disable(vsi->netdev);
7275 	}
7276 
7277 	ice_vsi_dis_irq(vsi);
7278 
7279 	tx_err = ice_vsi_stop_lan_tx_rings(vsi, ICE_NO_RESET, 0);
7280 	if (tx_err)
7281 		netdev_err(vsi->netdev, "Failed stop Tx rings, VSI %d error %d\n",
7282 			   vsi->vsi_num, tx_err);
7283 	if (!tx_err && vsi->xdp_rings) {
7284 		tx_err = ice_vsi_stop_xdp_tx_rings(vsi);
7285 		if (tx_err)
7286 			netdev_err(vsi->netdev, "Failed stop XDP rings, VSI %d error %d\n",
7287 				   vsi->vsi_num, tx_err);
7288 	}
7289 
7290 	rx_err = ice_vsi_stop_all_rx_rings(vsi);
7291 	if (rx_err)
7292 		netdev_err(vsi->netdev, "Failed stop Rx rings, VSI %d error %d\n",
7293 			   vsi->vsi_num, rx_err);
7294 
7295 	ice_napi_disable_all(vsi);
7296 
7297 	ice_for_each_txq(vsi, i)
7298 		ice_clean_tx_ring(vsi->tx_rings[i]);
7299 
7300 	if (vsi->xdp_rings)
7301 		ice_for_each_xdp_txq(vsi, i)
7302 			ice_clean_tx_ring(vsi->xdp_rings[i]);
7303 
7304 	ice_for_each_rxq(vsi, i)
7305 		ice_clean_rx_ring(vsi->rx_rings[i]);
7306 
7307 	if (tx_err || rx_err || vlan_err) {
7308 		netdev_err(vsi->netdev, "Failed to close VSI 0x%04X on switch 0x%04X\n",
7309 			   vsi->vsi_num, vsi->vsw->sw_id);
7310 		return -EIO;
7311 	}
7312 
7313 	return 0;
7314 }
7315 
7316 /**
7317  * ice_down_up - shutdown the VSI connection and bring it up
7318  * @vsi: the VSI to be reconnected
7319  */
7320 int ice_down_up(struct ice_vsi *vsi)
7321 {
7322 	int ret;
7323 
7324 	/* if DOWN already set, nothing to do */
7325 	if (test_and_set_bit(ICE_VSI_DOWN, vsi->state))
7326 		return 0;
7327 
7328 	ret = ice_down(vsi);
7329 	if (ret)
7330 		return ret;
7331 
7332 	ret = ice_up(vsi);
7333 	if (ret) {
7334 		netdev_err(vsi->netdev, "reallocating resources failed during netdev features change, may need to reload driver\n");
7335 		return ret;
7336 	}
7337 
7338 	return 0;
7339 }
7340 
7341 /**
7342  * ice_vsi_setup_tx_rings - Allocate VSI Tx queue resources
7343  * @vsi: VSI having resources allocated
7344  *
7345  * Return 0 on success, negative on failure
7346  */
7347 int ice_vsi_setup_tx_rings(struct ice_vsi *vsi)
7348 {
7349 	int i, err = 0;
7350 
7351 	if (!vsi->num_txq) {
7352 		dev_err(ice_pf_to_dev(vsi->back), "VSI %d has 0 Tx queues\n",
7353 			vsi->vsi_num);
7354 		return -EINVAL;
7355 	}
7356 
7357 	ice_for_each_txq(vsi, i) {
7358 		struct ice_tx_ring *ring = vsi->tx_rings[i];
7359 
7360 		if (!ring)
7361 			return -EINVAL;
7362 
7363 		if (vsi->netdev)
7364 			ring->netdev = vsi->netdev;
7365 		err = ice_setup_tx_ring(ring);
7366 		if (err)
7367 			break;
7368 	}
7369 
7370 	return err;
7371 }
7372 
7373 /**
7374  * ice_vsi_setup_rx_rings - Allocate VSI Rx queue resources
7375  * @vsi: VSI having resources allocated
7376  *
7377  * Return 0 on success, negative on failure
7378  */
7379 int ice_vsi_setup_rx_rings(struct ice_vsi *vsi)
7380 {
7381 	int i, err = 0;
7382 
7383 	if (!vsi->num_rxq) {
7384 		dev_err(ice_pf_to_dev(vsi->back), "VSI %d has 0 Rx queues\n",
7385 			vsi->vsi_num);
7386 		return -EINVAL;
7387 	}
7388 
7389 	ice_for_each_rxq(vsi, i) {
7390 		struct ice_rx_ring *ring = vsi->rx_rings[i];
7391 
7392 		if (!ring)
7393 			return -EINVAL;
7394 
7395 		if (vsi->netdev)
7396 			ring->netdev = vsi->netdev;
7397 		err = ice_setup_rx_ring(ring);
7398 		if (err)
7399 			break;
7400 	}
7401 
7402 	return err;
7403 }
7404 
7405 /**
7406  * ice_vsi_open_ctrl - open control VSI for use
7407  * @vsi: the VSI to open
7408  *
7409  * Initialization of the Control VSI
7410  *
7411  * Returns 0 on success, negative value on error
7412  */
7413 int ice_vsi_open_ctrl(struct ice_vsi *vsi)
7414 {
7415 	char int_name[ICE_INT_NAME_STR_LEN];
7416 	struct ice_pf *pf = vsi->back;
7417 	struct device *dev;
7418 	int err;
7419 
7420 	dev = ice_pf_to_dev(pf);
7421 	/* allocate descriptors */
7422 	err = ice_vsi_setup_tx_rings(vsi);
7423 	if (err)
7424 		goto err_setup_tx;
7425 
7426 	err = ice_vsi_setup_rx_rings(vsi);
7427 	if (err)
7428 		goto err_setup_rx;
7429 
7430 	err = ice_vsi_cfg_lan(vsi);
7431 	if (err)
7432 		goto err_setup_rx;
7433 
7434 	snprintf(int_name, sizeof(int_name) - 1, "%s-%s:ctrl",
7435 		 dev_driver_string(dev), dev_name(dev));
7436 	err = ice_vsi_req_irq_msix(vsi, int_name);
7437 	if (err)
7438 		goto err_setup_rx;
7439 
7440 	ice_vsi_cfg_msix(vsi);
7441 
7442 	err = ice_vsi_start_all_rx_rings(vsi);
7443 	if (err)
7444 		goto err_up_complete;
7445 
7446 	clear_bit(ICE_VSI_DOWN, vsi->state);
7447 	ice_vsi_ena_irq(vsi);
7448 
7449 	return 0;
7450 
7451 err_up_complete:
7452 	ice_down(vsi);
7453 err_setup_rx:
7454 	ice_vsi_free_rx_rings(vsi);
7455 err_setup_tx:
7456 	ice_vsi_free_tx_rings(vsi);
7457 
7458 	return err;
7459 }
7460 
7461 /**
7462  * ice_vsi_open - Called when a network interface is made active
7463  * @vsi: the VSI to open
7464  *
7465  * Initialization of the VSI
7466  *
7467  * Returns 0 on success, negative value on error
7468  */
7469 int ice_vsi_open(struct ice_vsi *vsi)
7470 {
7471 	char int_name[ICE_INT_NAME_STR_LEN];
7472 	struct ice_pf *pf = vsi->back;
7473 	int err;
7474 
7475 	/* allocate descriptors */
7476 	err = ice_vsi_setup_tx_rings(vsi);
7477 	if (err)
7478 		goto err_setup_tx;
7479 
7480 	err = ice_vsi_setup_rx_rings(vsi);
7481 	if (err)
7482 		goto err_setup_rx;
7483 
7484 	err = ice_vsi_cfg_lan(vsi);
7485 	if (err)
7486 		goto err_setup_rx;
7487 
7488 	snprintf(int_name, sizeof(int_name) - 1, "%s-%s",
7489 		 dev_driver_string(ice_pf_to_dev(pf)), vsi->netdev->name);
7490 	err = ice_vsi_req_irq_msix(vsi, int_name);
7491 	if (err)
7492 		goto err_setup_rx;
7493 
7494 	if (bitmap_empty(pf->txtime_txqs, pf->max_pf_txqs))
7495 		ice_vsi_cfg_netdev_tc(vsi, vsi->tc_cfg.ena_tc);
7496 
7497 	if (vsi->type == ICE_VSI_PF || vsi->type == ICE_VSI_SF) {
7498 		/* Notify the stack of the actual queue counts. */
7499 		err = netif_set_real_num_tx_queues(vsi->netdev, vsi->num_txq);
7500 		if (err)
7501 			goto err_set_qs;
7502 
7503 		err = netif_set_real_num_rx_queues(vsi->netdev, vsi->num_rxq);
7504 		if (err)
7505 			goto err_set_qs;
7506 
7507 		ice_vsi_set_napi_queues(vsi);
7508 	}
7509 
7510 	err = ice_up_complete(vsi);
7511 	if (err)
7512 		goto err_up_complete;
7513 
7514 	return 0;
7515 
7516 err_up_complete:
7517 	ice_down(vsi);
7518 err_set_qs:
7519 	ice_vsi_free_irq(vsi);
7520 err_setup_rx:
7521 	ice_vsi_free_rx_rings(vsi);
7522 err_setup_tx:
7523 	ice_vsi_free_tx_rings(vsi);
7524 
7525 	return err;
7526 }
7527 
7528 /**
7529  * ice_vsi_release_all - Delete all VSIs
7530  * @pf: PF from which all VSIs are being removed
7531  */
7532 static void ice_vsi_release_all(struct ice_pf *pf)
7533 {
7534 	int err, i;
7535 
7536 	if (!pf->vsi)
7537 		return;
7538 
7539 	ice_for_each_vsi(pf, i) {
7540 		if (!pf->vsi[i])
7541 			continue;
7542 
7543 		if (pf->vsi[i]->type == ICE_VSI_CHNL)
7544 			continue;
7545 
7546 		err = ice_vsi_release(pf->vsi[i]);
7547 		if (err)
7548 			dev_dbg(ice_pf_to_dev(pf), "Failed to release pf->vsi[%d], err %d, vsi_num = %d\n",
7549 				i, err, pf->vsi[i]->vsi_num);
7550 	}
7551 }
7552 
7553 /**
7554  * ice_vsi_rebuild_by_type - Rebuild VSI of a given type
7555  * @pf: pointer to the PF instance
7556  * @type: VSI type to rebuild
7557  *
7558  * Iterates through the pf->vsi array and rebuilds VSIs of the requested type
7559  */
7560 static int ice_vsi_rebuild_by_type(struct ice_pf *pf, enum ice_vsi_type type)
7561 {
7562 	struct device *dev = ice_pf_to_dev(pf);
7563 	int i, err;
7564 
7565 	ice_for_each_vsi(pf, i) {
7566 		struct ice_vsi *vsi = pf->vsi[i];
7567 
7568 		if (!vsi || vsi->type != type)
7569 			continue;
7570 
7571 		/* rebuild the VSI */
7572 		err = ice_vsi_rebuild(vsi, ICE_VSI_FLAG_INIT);
7573 		if (err) {
7574 			dev_err(dev, "rebuild VSI failed, err %d, VSI index %d, type %s\n",
7575 				err, vsi->idx, ice_vsi_type_str(type));
7576 			return err;
7577 		}
7578 
7579 		/* replay filters for the VSI */
7580 		err = ice_replay_vsi(&pf->hw, vsi->idx);
7581 		if (err) {
7582 			dev_err(dev, "replay VSI failed, error %d, VSI index %d, type %s\n",
7583 				err, vsi->idx, ice_vsi_type_str(type));
7584 			return err;
7585 		}
7586 
7587 		/* Re-map HW VSI number, using VSI handle that has been
7588 		 * previously validated in ice_replay_vsi() call above
7589 		 */
7590 		vsi->vsi_num = ice_get_hw_vsi_num(&pf->hw, vsi->idx);
7591 
7592 		/* enable the VSI */
7593 		err = ice_ena_vsi(vsi, false);
7594 		if (err) {
7595 			dev_err(dev, "enable VSI failed, err %d, VSI index %d, type %s\n",
7596 				err, vsi->idx, ice_vsi_type_str(type));
7597 			return err;
7598 		}
7599 
7600 		dev_info(dev, "VSI rebuilt. VSI index %d, type %s\n", vsi->idx,
7601 			 ice_vsi_type_str(type));
7602 	}
7603 
7604 	return 0;
7605 }
7606 
7607 /**
7608  * ice_update_pf_netdev_link - Update PF netdev link status
7609  * @pf: pointer to the PF instance
7610  */
7611 static void ice_update_pf_netdev_link(struct ice_pf *pf)
7612 {
7613 	bool link_up;
7614 	int i;
7615 
7616 	ice_for_each_vsi(pf, i) {
7617 		struct ice_vsi *vsi = pf->vsi[i];
7618 
7619 		if (!vsi || vsi->type != ICE_VSI_PF)
7620 			return;
7621 
7622 		ice_get_link_status(pf->vsi[i]->port_info, &link_up);
7623 		if (link_up) {
7624 			netif_carrier_on(pf->vsi[i]->netdev);
7625 			netif_tx_wake_all_queues(pf->vsi[i]->netdev);
7626 		} else {
7627 			netif_carrier_off(pf->vsi[i]->netdev);
7628 			netif_tx_stop_all_queues(pf->vsi[i]->netdev);
7629 		}
7630 	}
7631 }
7632 
7633 /**
7634  * ice_rebuild - rebuild after reset
7635  * @pf: PF to rebuild
7636  * @reset_type: type of reset
7637  *
7638  * Do not rebuild VF VSI in this flow because that is already handled via
7639  * ice_reset_all_vfs(). This is because requirements for resetting a VF after a
7640  * PFR/CORER/GLOBER/etc. are different than the normal flow. Also, we don't want
7641  * to reset/rebuild all the VF VSI twice.
7642  */
7643 static void ice_rebuild(struct ice_pf *pf, enum ice_reset_req reset_type)
7644 {
7645 	struct ice_vsi *vsi = ice_get_main_vsi(pf);
7646 	struct device *dev = ice_pf_to_dev(pf);
7647 	struct ice_hw *hw = &pf->hw;
7648 	bool dvm;
7649 	int err;
7650 
7651 	if (test_bit(ICE_DOWN, pf->state))
7652 		goto clear_recovery;
7653 
7654 	dev_dbg(dev, "rebuilding PF after reset_type=%d\n", reset_type);
7655 
7656 #define ICE_EMP_RESET_SLEEP_MS 5000
7657 	if (reset_type == ICE_RESET_EMPR) {
7658 		/* If an EMP reset has occurred, any previously pending flash
7659 		 * update will have completed. We no longer know whether or
7660 		 * not the NVM update EMP reset is restricted.
7661 		 */
7662 		pf->fw_emp_reset_disabled = false;
7663 
7664 		msleep(ICE_EMP_RESET_SLEEP_MS);
7665 	}
7666 
7667 	err = ice_init_all_ctrlq(hw);
7668 	if (err) {
7669 		dev_err(dev, "control queues init failed %d\n", err);
7670 		goto err_init_ctrlq;
7671 	}
7672 
7673 	/* if DDP was previously loaded successfully */
7674 	if (!ice_is_safe_mode(pf)) {
7675 		/* reload the SW DB of filter tables */
7676 		if (reset_type == ICE_RESET_PFR)
7677 			ice_fill_blk_tbls(hw);
7678 		else
7679 			/* Reload DDP Package after CORER/GLOBR reset */
7680 			ice_load_pkg(NULL, pf);
7681 	}
7682 
7683 	err = ice_clear_pf_cfg(hw);
7684 	if (err) {
7685 		dev_err(dev, "clear PF configuration failed %d\n", err);
7686 		goto err_init_ctrlq;
7687 	}
7688 
7689 	ice_clear_pxe_mode(hw);
7690 
7691 	err = ice_init_nvm(hw);
7692 	if (err) {
7693 		dev_err(dev, "ice_init_nvm failed %d\n", err);
7694 		goto err_init_ctrlq;
7695 	}
7696 
7697 	err = ice_get_caps(hw);
7698 	if (err) {
7699 		dev_err(dev, "ice_get_caps failed %d\n", err);
7700 		goto err_init_ctrlq;
7701 	}
7702 
7703 	err = ice_aq_set_mac_cfg(hw, ICE_AQ_SET_MAC_FRAME_SIZE_MAX, NULL);
7704 	if (err) {
7705 		dev_err(dev, "set_mac_cfg failed %d\n", err);
7706 		goto err_init_ctrlq;
7707 	}
7708 
7709 	dvm = ice_is_dvm_ena(hw);
7710 
7711 	err = ice_aq_set_port_params(pf->hw.port_info, dvm, NULL);
7712 	if (err)
7713 		goto err_init_ctrlq;
7714 
7715 	err = ice_sched_init_port(hw->port_info);
7716 	if (err)
7717 		goto err_sched_init_port;
7718 
7719 	/* start misc vector */
7720 	err = ice_req_irq_msix_misc(pf);
7721 	if (err) {
7722 		dev_err(dev, "misc vector setup failed: %d\n", err);
7723 		goto err_sched_init_port;
7724 	}
7725 
7726 	if (test_bit(ICE_FLAG_FD_ENA, pf->flags)) {
7727 		wr32(hw, PFQF_FD_ENA, PFQF_FD_ENA_FD_ENA_M);
7728 		if (!rd32(hw, PFQF_FD_SIZE)) {
7729 			u16 unused, guar, b_effort;
7730 
7731 			guar = hw->func_caps.fd_fltr_guar;
7732 			b_effort = hw->func_caps.fd_fltr_best_effort;
7733 
7734 			/* force guaranteed filter pool for PF */
7735 			ice_alloc_fd_guar_item(hw, &unused, guar);
7736 			/* force shared filter pool for PF */
7737 			ice_alloc_fd_shrd_item(hw, &unused, b_effort);
7738 		}
7739 	}
7740 
7741 	if (test_bit(ICE_FLAG_DCB_ENA, pf->flags))
7742 		ice_dcb_rebuild(pf);
7743 
7744 	/* If the PF previously had enabled PTP, PTP init needs to happen before
7745 	 * the VSI rebuild. If not, this causes the PTP link status events to
7746 	 * fail.
7747 	 */
7748 	if (test_bit(ICE_FLAG_PTP_SUPPORTED, pf->flags))
7749 		ice_ptp_rebuild(pf, reset_type);
7750 
7751 	if (ice_is_feature_supported(pf, ICE_F_GNSS))
7752 		ice_gnss_init(pf);
7753 
7754 	/* rebuild PF VSI */
7755 	err = ice_vsi_rebuild_by_type(pf, ICE_VSI_PF);
7756 	if (err) {
7757 		dev_err(dev, "PF VSI rebuild failed: %d\n", err);
7758 		goto err_vsi_rebuild;
7759 	}
7760 
7761 	if (reset_type == ICE_RESET_PFR) {
7762 		err = ice_rebuild_channels(pf);
7763 		if (err) {
7764 			dev_err(dev, "failed to rebuild and replay ADQ VSIs, err %d\n",
7765 				err);
7766 			goto err_vsi_rebuild;
7767 		}
7768 	}
7769 
7770 	/* If Flow Director is active */
7771 	if (test_bit(ICE_FLAG_FD_ENA, pf->flags)) {
7772 		err = ice_vsi_rebuild_by_type(pf, ICE_VSI_CTRL);
7773 		if (err) {
7774 			dev_err(dev, "control VSI rebuild failed: %d\n", err);
7775 			goto err_vsi_rebuild;
7776 		}
7777 
7778 		/* replay HW Flow Director recipes */
7779 		if (hw->fdir_prof)
7780 			ice_fdir_replay_flows(hw);
7781 
7782 		/* replay Flow Director filters */
7783 		ice_fdir_replay_fltrs(pf);
7784 
7785 		ice_rebuild_arfs(pf);
7786 	}
7787 
7788 	if (vsi && vsi->netdev)
7789 		netif_device_attach(vsi->netdev);
7790 
7791 	ice_update_pf_netdev_link(pf);
7792 
7793 	/* tell the firmware we are up */
7794 	err = ice_send_version(pf);
7795 	if (err) {
7796 		dev_err(dev, "Rebuild failed due to error sending driver version: %d\n",
7797 			err);
7798 		goto err_vsi_rebuild;
7799 	}
7800 
7801 	ice_replay_post(hw);
7802 
7803 	/* if we get here, reset flow is successful */
7804 	clear_bit(ICE_RESET_FAILED, pf->state);
7805 
7806 	ice_health_clear(pf);
7807 
7808 	ice_plug_aux_dev(pf);
7809 	if (ice_is_feature_supported(pf, ICE_F_SRIOV_LAG))
7810 		ice_lag_rebuild(pf);
7811 
7812 	/* Restore timestamp mode settings after VSI rebuild */
7813 	ice_ptp_restore_timestamp_mode(pf);
7814 	return;
7815 
7816 err_vsi_rebuild:
7817 err_sched_init_port:
7818 	ice_sched_cleanup_all(hw);
7819 err_init_ctrlq:
7820 	ice_shutdown_all_ctrlq(hw, false);
7821 	set_bit(ICE_RESET_FAILED, pf->state);
7822 clear_recovery:
7823 	/* set this bit in PF state to control service task scheduling */
7824 	set_bit(ICE_NEEDS_RESTART, pf->state);
7825 	dev_err(dev, "Rebuild failed, unload and reload driver\n");
7826 }
7827 
7828 /**
7829  * ice_change_mtu - NDO callback to change the MTU
7830  * @netdev: network interface device structure
7831  * @new_mtu: new value for maximum frame size
7832  *
7833  * Returns 0 on success, negative on failure
7834  */
7835 int ice_change_mtu(struct net_device *netdev, int new_mtu)
7836 {
7837 	struct ice_netdev_priv *np = netdev_priv(netdev);
7838 	struct ice_vsi *vsi = np->vsi;
7839 	struct ice_pf *pf = vsi->back;
7840 	struct bpf_prog *prog;
7841 	u8 count = 0;
7842 	int err = 0;
7843 
7844 	if (new_mtu == (int)netdev->mtu) {
7845 		netdev_warn(netdev, "MTU is already %u\n", netdev->mtu);
7846 		return 0;
7847 	}
7848 
7849 	prog = vsi->xdp_prog;
7850 	if (prog && !prog->aux->xdp_has_frags) {
7851 		int frame_size = ice_max_xdp_frame_size(vsi);
7852 
7853 		if (new_mtu + ICE_ETH_PKT_HDR_PAD > frame_size) {
7854 			netdev_err(netdev, "max MTU for XDP usage is %d\n",
7855 				   frame_size - ICE_ETH_PKT_HDR_PAD);
7856 			return -EINVAL;
7857 		}
7858 	}
7859 
7860 	/* if a reset is in progress, wait for some time for it to complete */
7861 	do {
7862 		if (ice_is_reset_in_progress(pf->state)) {
7863 			count++;
7864 			usleep_range(1000, 2000);
7865 		} else {
7866 			break;
7867 		}
7868 
7869 	} while (count < 100);
7870 
7871 	if (count == 100) {
7872 		netdev_err(netdev, "can't change MTU. Device is busy\n");
7873 		return -EBUSY;
7874 	}
7875 
7876 	WRITE_ONCE(netdev->mtu, (unsigned int)new_mtu);
7877 	err = ice_down_up(vsi);
7878 	if (err)
7879 		return err;
7880 
7881 	netdev_dbg(netdev, "changed MTU to %d\n", new_mtu);
7882 	set_bit(ICE_FLAG_MTU_CHANGED, pf->flags);
7883 
7884 	return err;
7885 }
7886 
7887 /**
7888  * ice_set_rss_lut - Set RSS LUT
7889  * @vsi: Pointer to VSI structure
7890  * @lut: Lookup table
7891  * @lut_size: Lookup table size
7892  *
7893  * Returns 0 on success, negative on failure
7894  */
7895 int ice_set_rss_lut(struct ice_vsi *vsi, u8 *lut, u16 lut_size)
7896 {
7897 	struct ice_aq_get_set_rss_lut_params params = {};
7898 	struct ice_hw *hw = &vsi->back->hw;
7899 	int status;
7900 
7901 	if (!lut)
7902 		return -EINVAL;
7903 
7904 	params.vsi_handle = vsi->idx;
7905 	params.lut_size = lut_size;
7906 	params.lut_type = vsi->rss_lut_type;
7907 	params.lut = lut;
7908 
7909 	status = ice_aq_set_rss_lut(hw, &params);
7910 	if (status)
7911 		dev_err(ice_pf_to_dev(vsi->back), "Cannot set RSS lut, err %d aq_err %s\n",
7912 			status, libie_aq_str(hw->adminq.sq_last_status));
7913 
7914 	return status;
7915 }
7916 
7917 /**
7918  * ice_set_rss_key - Set RSS key
7919  * @vsi: Pointer to the VSI structure
7920  * @seed: RSS hash seed
7921  *
7922  * Returns 0 on success, negative on failure
7923  */
7924 int ice_set_rss_key(struct ice_vsi *vsi, u8 *seed)
7925 {
7926 	struct ice_hw *hw = &vsi->back->hw;
7927 	int status;
7928 
7929 	if (!seed)
7930 		return -EINVAL;
7931 
7932 	status = ice_aq_set_rss_key(hw, vsi->idx, (struct ice_aqc_get_set_rss_keys *)seed);
7933 	if (status)
7934 		dev_err(ice_pf_to_dev(vsi->back), "Cannot set RSS key, err %d aq_err %s\n",
7935 			status, libie_aq_str(hw->adminq.sq_last_status));
7936 
7937 	return status;
7938 }
7939 
7940 /**
7941  * ice_get_rss_lut - Get RSS LUT
7942  * @vsi: Pointer to VSI structure
7943  * @lut: Buffer to store the lookup table entries
7944  * @lut_size: Size of buffer to store the lookup table entries
7945  *
7946  * Returns 0 on success, negative on failure
7947  */
7948 int ice_get_rss_lut(struct ice_vsi *vsi, u8 *lut, u16 lut_size)
7949 {
7950 	struct ice_aq_get_set_rss_lut_params params = {};
7951 	struct ice_hw *hw = &vsi->back->hw;
7952 	int status;
7953 
7954 	if (!lut)
7955 		return -EINVAL;
7956 
7957 	params.vsi_handle = vsi->idx;
7958 	params.lut_size = lut_size;
7959 	params.lut_type = vsi->rss_lut_type;
7960 	params.lut = lut;
7961 
7962 	status = ice_aq_get_rss_lut(hw, &params);
7963 	if (status)
7964 		dev_err(ice_pf_to_dev(vsi->back), "Cannot get RSS lut, err %d aq_err %s\n",
7965 			status, libie_aq_str(hw->adminq.sq_last_status));
7966 
7967 	return status;
7968 }
7969 
7970 /**
7971  * ice_get_rss_key - Get RSS key
7972  * @vsi: Pointer to VSI structure
7973  * @seed: Buffer to store the key in
7974  *
7975  * Returns 0 on success, negative on failure
7976  */
7977 int ice_get_rss_key(struct ice_vsi *vsi, u8 *seed)
7978 {
7979 	struct ice_hw *hw = &vsi->back->hw;
7980 	int status;
7981 
7982 	if (!seed)
7983 		return -EINVAL;
7984 
7985 	status = ice_aq_get_rss_key(hw, vsi->idx, (struct ice_aqc_get_set_rss_keys *)seed);
7986 	if (status)
7987 		dev_err(ice_pf_to_dev(vsi->back), "Cannot get RSS key, err %d aq_err %s\n",
7988 			status, libie_aq_str(hw->adminq.sq_last_status));
7989 
7990 	return status;
7991 }
7992 
7993 /**
7994  * ice_set_rss_hfunc - Set RSS HASH function
7995  * @vsi: Pointer to VSI structure
7996  * @hfunc: hash function (ICE_AQ_VSI_Q_OPT_RSS_*)
7997  *
7998  * Returns 0 on success, negative on failure
7999  */
8000 int ice_set_rss_hfunc(struct ice_vsi *vsi, u8 hfunc)
8001 {
8002 	struct ice_hw *hw = &vsi->back->hw;
8003 	struct ice_vsi_ctx *ctx;
8004 	bool symm;
8005 	int err;
8006 
8007 	if (hfunc == vsi->rss_hfunc)
8008 		return 0;
8009 
8010 	if (hfunc != ICE_AQ_VSI_Q_OPT_RSS_HASH_TPLZ &&
8011 	    hfunc != ICE_AQ_VSI_Q_OPT_RSS_HASH_SYM_TPLZ)
8012 		return -EOPNOTSUPP;
8013 
8014 	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
8015 	if (!ctx)
8016 		return -ENOMEM;
8017 
8018 	ctx->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_Q_OPT_VALID);
8019 	ctx->info.q_opt_rss = vsi->info.q_opt_rss;
8020 	ctx->info.q_opt_rss &= ~ICE_AQ_VSI_Q_OPT_RSS_HASH_M;
8021 	ctx->info.q_opt_rss |=
8022 		FIELD_PREP(ICE_AQ_VSI_Q_OPT_RSS_HASH_M, hfunc);
8023 	ctx->info.q_opt_tc = vsi->info.q_opt_tc;
8024 	ctx->info.q_opt_flags = vsi->info.q_opt_rss;
8025 
8026 	err = ice_update_vsi(hw, vsi->idx, ctx, NULL);
8027 	if (err) {
8028 		dev_err(ice_pf_to_dev(vsi->back), "Failed to configure RSS hash for VSI %d, error %d\n",
8029 			vsi->vsi_num, err);
8030 	} else {
8031 		vsi->info.q_opt_rss = ctx->info.q_opt_rss;
8032 		vsi->rss_hfunc = hfunc;
8033 		netdev_info(vsi->netdev, "Hash function set to: %sToeplitz\n",
8034 			    hfunc == ICE_AQ_VSI_Q_OPT_RSS_HASH_SYM_TPLZ ?
8035 			    "Symmetric " : "");
8036 	}
8037 	kfree(ctx);
8038 	if (err)
8039 		return err;
8040 
8041 	/* Fix the symmetry setting for all existing RSS configurations */
8042 	symm = !!(hfunc == ICE_AQ_VSI_Q_OPT_RSS_HASH_SYM_TPLZ);
8043 	return ice_set_rss_cfg_symm(hw, vsi, symm);
8044 }
8045 
8046 /**
8047  * ice_bridge_getlink - Get the hardware bridge mode
8048  * @skb: skb buff
8049  * @pid: process ID
8050  * @seq: RTNL message seq
8051  * @dev: the netdev being configured
8052  * @filter_mask: filter mask passed in
8053  * @nlflags: netlink flags passed in
8054  *
8055  * Return the bridge mode (VEB/VEPA)
8056  */
8057 static int
8058 ice_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
8059 		   struct net_device *dev, u32 filter_mask, int nlflags)
8060 {
8061 	struct ice_pf *pf = ice_netdev_to_pf(dev);
8062 	u16 bmode;
8063 
8064 	bmode = pf->first_sw->bridge_mode;
8065 
8066 	return ndo_dflt_bridge_getlink(skb, pid, seq, dev, bmode, 0, 0, nlflags,
8067 				       filter_mask, NULL);
8068 }
8069 
8070 /**
8071  * ice_vsi_update_bridge_mode - Update VSI for switching bridge mode (VEB/VEPA)
8072  * @vsi: Pointer to VSI structure
8073  * @bmode: Hardware bridge mode (VEB/VEPA)
8074  *
8075  * Returns 0 on success, negative on failure
8076  */
8077 static int ice_vsi_update_bridge_mode(struct ice_vsi *vsi, u16 bmode)
8078 {
8079 	struct ice_aqc_vsi_props *vsi_props;
8080 	struct ice_hw *hw = &vsi->back->hw;
8081 	struct ice_vsi_ctx *ctxt;
8082 	int ret;
8083 
8084 	vsi_props = &vsi->info;
8085 
8086 	ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
8087 	if (!ctxt)
8088 		return -ENOMEM;
8089 
8090 	ctxt->info = vsi->info;
8091 
8092 	if (bmode == BRIDGE_MODE_VEB)
8093 		/* change from VEPA to VEB mode */
8094 		ctxt->info.sw_flags |= ICE_AQ_VSI_SW_FLAG_ALLOW_LB;
8095 	else
8096 		/* change from VEB to VEPA mode */
8097 		ctxt->info.sw_flags &= ~ICE_AQ_VSI_SW_FLAG_ALLOW_LB;
8098 	ctxt->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_SW_VALID);
8099 
8100 	ret = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
8101 	if (ret) {
8102 		dev_err(ice_pf_to_dev(vsi->back), "update VSI for bridge mode failed, bmode = %d err %d aq_err %s\n",
8103 			bmode, ret, libie_aq_str(hw->adminq.sq_last_status));
8104 		goto out;
8105 	}
8106 	/* Update sw flags for book keeping */
8107 	vsi_props->sw_flags = ctxt->info.sw_flags;
8108 
8109 out:
8110 	kfree(ctxt);
8111 	return ret;
8112 }
8113 
8114 /**
8115  * ice_bridge_setlink - Set the hardware bridge mode
8116  * @dev: the netdev being configured
8117  * @nlh: RTNL message
8118  * @flags: bridge setlink flags
8119  * @extack: netlink extended ack
8120  *
8121  * Sets the bridge mode (VEB/VEPA) of the switch to which the netdev (VSI) is
8122  * hooked up to. Iterates through the PF VSI list and sets the loopback mode (if
8123  * not already set for all VSIs connected to this switch. And also update the
8124  * unicast switch filter rules for the corresponding switch of the netdev.
8125  */
8126 static int
8127 ice_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh,
8128 		   u16 __always_unused flags,
8129 		   struct netlink_ext_ack __always_unused *extack)
8130 {
8131 	struct ice_pf *pf = ice_netdev_to_pf(dev);
8132 	struct nlattr *attr, *br_spec;
8133 	struct ice_hw *hw = &pf->hw;
8134 	struct ice_sw *pf_sw;
8135 	int rem, v, err = 0;
8136 
8137 	pf_sw = pf->first_sw;
8138 	/* find the attribute in the netlink message */
8139 	br_spec = nlmsg_find_attr(nlh, sizeof(struct ifinfomsg), IFLA_AF_SPEC);
8140 	if (!br_spec)
8141 		return -EINVAL;
8142 
8143 	nla_for_each_nested_type(attr, IFLA_BRIDGE_MODE, br_spec, rem) {
8144 		__u16 mode = nla_get_u16(attr);
8145 
8146 		if (mode != BRIDGE_MODE_VEPA && mode != BRIDGE_MODE_VEB)
8147 			return -EINVAL;
8148 		/* Continue  if bridge mode is not being flipped */
8149 		if (mode == pf_sw->bridge_mode)
8150 			continue;
8151 		/* Iterates through the PF VSI list and update the loopback
8152 		 * mode of the VSI
8153 		 */
8154 		ice_for_each_vsi(pf, v) {
8155 			if (!pf->vsi[v])
8156 				continue;
8157 			err = ice_vsi_update_bridge_mode(pf->vsi[v], mode);
8158 			if (err)
8159 				return err;
8160 		}
8161 
8162 		hw->evb_veb = (mode == BRIDGE_MODE_VEB);
8163 		/* Update the unicast switch filter rules for the corresponding
8164 		 * switch of the netdev
8165 		 */
8166 		err = ice_update_sw_rule_bridge_mode(hw);
8167 		if (err) {
8168 			netdev_err(dev, "switch rule update failed, mode = %d err %d aq_err %s\n",
8169 				   mode, err,
8170 				   libie_aq_str(hw->adminq.sq_last_status));
8171 			/* revert hw->evb_veb */
8172 			hw->evb_veb = (pf_sw->bridge_mode == BRIDGE_MODE_VEB);
8173 			return err;
8174 		}
8175 
8176 		pf_sw->bridge_mode = mode;
8177 	}
8178 
8179 	return 0;
8180 }
8181 
8182 /**
8183  * ice_tx_timeout - Respond to a Tx Hang
8184  * @netdev: network interface device structure
8185  * @txqueue: Tx queue
8186  */
8187 void ice_tx_timeout(struct net_device *netdev, unsigned int txqueue)
8188 {
8189 	struct ice_netdev_priv *np = netdev_priv(netdev);
8190 	struct ice_tx_ring *tx_ring = NULL;
8191 	struct ice_vsi *vsi = np->vsi;
8192 	struct ice_pf *pf = vsi->back;
8193 	u32 i;
8194 
8195 	pf->tx_timeout_count++;
8196 
8197 	/* Check if PFC is enabled for the TC to which the queue belongs
8198 	 * to. If yes then Tx timeout is not caused by a hung queue, no
8199 	 * need to reset and rebuild
8200 	 */
8201 	if (ice_is_pfc_causing_hung_q(pf, txqueue)) {
8202 		dev_info(ice_pf_to_dev(pf), "Fake Tx hang detected on queue %u, timeout caused by PFC storm\n",
8203 			 txqueue);
8204 		return;
8205 	}
8206 
8207 	/* now that we have an index, find the tx_ring struct */
8208 	ice_for_each_txq(vsi, i)
8209 		if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
8210 			if (txqueue == vsi->tx_rings[i]->q_index) {
8211 				tx_ring = vsi->tx_rings[i];
8212 				break;
8213 			}
8214 
8215 	/* Reset recovery level if enough time has elapsed after last timeout.
8216 	 * Also ensure no new reset action happens before next timeout period.
8217 	 */
8218 	if (time_after(jiffies, (pf->tx_timeout_last_recovery + HZ * 20)))
8219 		pf->tx_timeout_recovery_level = 1;
8220 	else if (time_before(jiffies, (pf->tx_timeout_last_recovery +
8221 				       netdev->watchdog_timeo)))
8222 		return;
8223 
8224 	if (tx_ring) {
8225 		struct ice_hw *hw = &pf->hw;
8226 		u32 head, intr = 0;
8227 
8228 		head = FIELD_GET(QTX_COMM_HEAD_HEAD_M,
8229 				 rd32(hw, QTX_COMM_HEAD(vsi->txq_map[txqueue])));
8230 		/* Read interrupt register */
8231 		intr = rd32(hw, GLINT_DYN_CTL(tx_ring->q_vector->reg_idx));
8232 
8233 		netdev_info(netdev, "tx_timeout: VSI_num: %d, Q %u, NTC: 0x%x, HW_HEAD: 0x%x, NTU: 0x%x, INT: 0x%x\n",
8234 			    vsi->vsi_num, txqueue, tx_ring->next_to_clean,
8235 			    head, tx_ring->next_to_use, intr);
8236 
8237 		ice_prep_tx_hang_report(pf, tx_ring, vsi->vsi_num, head, intr);
8238 	}
8239 
8240 	pf->tx_timeout_last_recovery = jiffies;
8241 	netdev_info(netdev, "tx_timeout recovery level %d, txqueue %u\n",
8242 		    pf->tx_timeout_recovery_level, txqueue);
8243 
8244 	switch (pf->tx_timeout_recovery_level) {
8245 	case 1:
8246 		set_bit(ICE_PFR_REQ, pf->state);
8247 		break;
8248 	case 2:
8249 		set_bit(ICE_CORER_REQ, pf->state);
8250 		break;
8251 	case 3:
8252 		set_bit(ICE_GLOBR_REQ, pf->state);
8253 		break;
8254 	default:
8255 		netdev_err(netdev, "tx_timeout recovery unsuccessful, device is in unrecoverable state.\n");
8256 		set_bit(ICE_DOWN, pf->state);
8257 		set_bit(ICE_VSI_NEEDS_RESTART, vsi->state);
8258 		set_bit(ICE_SERVICE_DIS, pf->state);
8259 		break;
8260 	}
8261 
8262 	ice_service_task_schedule(pf);
8263 	pf->tx_timeout_recovery_level++;
8264 }
8265 
8266 /**
8267  * ice_setup_tc_cls_flower - flower classifier offloads
8268  * @np: net device to configure
8269  * @filter_dev: device on which filter is added
8270  * @cls_flower: offload data
8271  * @ingress: if the rule is added to an ingress block
8272  *
8273  * Return: 0 if the flower was successfully added or deleted,
8274  *	   negative error code otherwise.
8275  */
8276 static int
8277 ice_setup_tc_cls_flower(struct ice_netdev_priv *np,
8278 			struct net_device *filter_dev,
8279 			struct flow_cls_offload *cls_flower,
8280 			bool ingress)
8281 {
8282 	struct ice_vsi *vsi = np->vsi;
8283 
8284 	if (cls_flower->common.chain_index)
8285 		return -EOPNOTSUPP;
8286 
8287 	switch (cls_flower->command) {
8288 	case FLOW_CLS_REPLACE:
8289 		return ice_add_cls_flower(filter_dev, vsi, cls_flower, ingress);
8290 	case FLOW_CLS_DESTROY:
8291 		return ice_del_cls_flower(vsi, cls_flower);
8292 	default:
8293 		return -EINVAL;
8294 	}
8295 }
8296 
8297 /**
8298  * ice_setup_tc_block_cb_ingress - callback handler for ingress TC block
8299  * @type: TC SETUP type
8300  * @type_data: TC flower offload data that contains user input
8301  * @cb_priv: netdev private data
8302  *
8303  * Return: 0 if the setup was successful, negative error code otherwise.
8304  */
8305 static int
8306 ice_setup_tc_block_cb_ingress(enum tc_setup_type type, void *type_data,
8307 			      void *cb_priv)
8308 {
8309 	struct ice_netdev_priv *np = cb_priv;
8310 
8311 	switch (type) {
8312 	case TC_SETUP_CLSFLOWER:
8313 		return ice_setup_tc_cls_flower(np, np->vsi->netdev,
8314 					       type_data, true);
8315 	default:
8316 		return -EOPNOTSUPP;
8317 	}
8318 }
8319 
8320 /**
8321  * ice_setup_tc_block_cb_egress - callback handler for egress TC block
8322  * @type: TC SETUP type
8323  * @type_data: TC flower offload data that contains user input
8324  * @cb_priv: netdev private data
8325  *
8326  * Return: 0 if the setup was successful, negative error code otherwise.
8327  */
8328 static int
8329 ice_setup_tc_block_cb_egress(enum tc_setup_type type, void *type_data,
8330 			     void *cb_priv)
8331 {
8332 	struct ice_netdev_priv *np = cb_priv;
8333 
8334 	switch (type) {
8335 	case TC_SETUP_CLSFLOWER:
8336 		return ice_setup_tc_cls_flower(np, np->vsi->netdev,
8337 					       type_data, false);
8338 	default:
8339 		return -EOPNOTSUPP;
8340 	}
8341 }
8342 
8343 /**
8344  * ice_validate_mqprio_qopt - Validate TCF input parameters
8345  * @vsi: Pointer to VSI
8346  * @mqprio_qopt: input parameters for mqprio queue configuration
8347  *
8348  * This function validates MQPRIO params, such as qcount (power of 2 wherever
8349  * needed), and make sure user doesn't specify qcount and BW rate limit
8350  * for TCs, which are more than "num_tc"
8351  */
8352 static int
8353 ice_validate_mqprio_qopt(struct ice_vsi *vsi,
8354 			 struct tc_mqprio_qopt_offload *mqprio_qopt)
8355 {
8356 	int non_power_of_2_qcount = 0;
8357 	struct ice_pf *pf = vsi->back;
8358 	int max_rss_q_cnt = 0;
8359 	u64 sum_min_rate = 0;
8360 	struct device *dev;
8361 	int i, speed;
8362 	u8 num_tc;
8363 
8364 	if (vsi->type != ICE_VSI_PF)
8365 		return -EINVAL;
8366 
8367 	if (mqprio_qopt->qopt.offset[0] != 0 ||
8368 	    mqprio_qopt->qopt.num_tc < 1 ||
8369 	    mqprio_qopt->qopt.num_tc > ICE_CHNL_MAX_TC)
8370 		return -EINVAL;
8371 
8372 	dev = ice_pf_to_dev(pf);
8373 	vsi->ch_rss_size = 0;
8374 	num_tc = mqprio_qopt->qopt.num_tc;
8375 	speed = ice_get_link_speed_kbps(vsi);
8376 
8377 	for (i = 0; num_tc; i++) {
8378 		int qcount = mqprio_qopt->qopt.count[i];
8379 		u64 max_rate, min_rate, rem;
8380 
8381 		if (!qcount)
8382 			return -EINVAL;
8383 
8384 		if (is_power_of_2(qcount)) {
8385 			if (non_power_of_2_qcount &&
8386 			    qcount > non_power_of_2_qcount) {
8387 				dev_err(dev, "qcount[%d] cannot be greater than non power of 2 qcount[%d]\n",
8388 					qcount, non_power_of_2_qcount);
8389 				return -EINVAL;
8390 			}
8391 			if (qcount > max_rss_q_cnt)
8392 				max_rss_q_cnt = qcount;
8393 		} else {
8394 			if (non_power_of_2_qcount &&
8395 			    qcount != non_power_of_2_qcount) {
8396 				dev_err(dev, "Only one non power of 2 qcount allowed[%d,%d]\n",
8397 					qcount, non_power_of_2_qcount);
8398 				return -EINVAL;
8399 			}
8400 			if (qcount < max_rss_q_cnt) {
8401 				dev_err(dev, "non power of 2 qcount[%d] cannot be less than other qcount[%d]\n",
8402 					qcount, max_rss_q_cnt);
8403 				return -EINVAL;
8404 			}
8405 			max_rss_q_cnt = qcount;
8406 			non_power_of_2_qcount = qcount;
8407 		}
8408 
8409 		/* TC command takes input in K/N/Gbps or K/M/Gbit etc but
8410 		 * converts the bandwidth rate limit into Bytes/s when
8411 		 * passing it down to the driver. So convert input bandwidth
8412 		 * from Bytes/s to Kbps
8413 		 */
8414 		max_rate = mqprio_qopt->max_rate[i];
8415 		max_rate = div_u64(max_rate, ICE_BW_KBPS_DIVISOR);
8416 
8417 		/* min_rate is minimum guaranteed rate and it can't be zero */
8418 		min_rate = mqprio_qopt->min_rate[i];
8419 		min_rate = div_u64(min_rate, ICE_BW_KBPS_DIVISOR);
8420 		sum_min_rate += min_rate;
8421 
8422 		if (min_rate && min_rate < ICE_MIN_BW_LIMIT) {
8423 			dev_err(dev, "TC%d: min_rate(%llu Kbps) < %u Kbps\n", i,
8424 				min_rate, ICE_MIN_BW_LIMIT);
8425 			return -EINVAL;
8426 		}
8427 
8428 		if (max_rate && max_rate > speed) {
8429 			dev_err(dev, "TC%d: max_rate(%llu Kbps) > link speed of %u Kbps\n",
8430 				i, max_rate, speed);
8431 			return -EINVAL;
8432 		}
8433 
8434 		iter_div_u64_rem(min_rate, ICE_MIN_BW_LIMIT, &rem);
8435 		if (rem) {
8436 			dev_err(dev, "TC%d: Min Rate not multiple of %u Kbps",
8437 				i, ICE_MIN_BW_LIMIT);
8438 			return -EINVAL;
8439 		}
8440 
8441 		iter_div_u64_rem(max_rate, ICE_MIN_BW_LIMIT, &rem);
8442 		if (rem) {
8443 			dev_err(dev, "TC%d: Max Rate not multiple of %u Kbps",
8444 				i, ICE_MIN_BW_LIMIT);
8445 			return -EINVAL;
8446 		}
8447 
8448 		/* min_rate can't be more than max_rate, except when max_rate
8449 		 * is zero (implies max_rate sought is max line rate). In such
8450 		 * a case min_rate can be more than max.
8451 		 */
8452 		if (max_rate && min_rate > max_rate) {
8453 			dev_err(dev, "min_rate %llu Kbps can't be more than max_rate %llu Kbps\n",
8454 				min_rate, max_rate);
8455 			return -EINVAL;
8456 		}
8457 
8458 		if (i >= mqprio_qopt->qopt.num_tc - 1)
8459 			break;
8460 		if (mqprio_qopt->qopt.offset[i + 1] !=
8461 		    (mqprio_qopt->qopt.offset[i] + qcount))
8462 			return -EINVAL;
8463 	}
8464 	if (vsi->num_rxq <
8465 	    (mqprio_qopt->qopt.offset[i] + mqprio_qopt->qopt.count[i]))
8466 		return -EINVAL;
8467 	if (vsi->num_txq <
8468 	    (mqprio_qopt->qopt.offset[i] + mqprio_qopt->qopt.count[i]))
8469 		return -EINVAL;
8470 
8471 	if (sum_min_rate && sum_min_rate > (u64)speed) {
8472 		dev_err(dev, "Invalid min Tx rate(%llu) Kbps > speed (%u) Kbps specified\n",
8473 			sum_min_rate, speed);
8474 		return -EINVAL;
8475 	}
8476 
8477 	/* make sure vsi->ch_rss_size is set correctly based on TC's qcount */
8478 	vsi->ch_rss_size = max_rss_q_cnt;
8479 
8480 	return 0;
8481 }
8482 
8483 /**
8484  * ice_add_vsi_to_fdir - add a VSI to the flow director group for PF
8485  * @pf: ptr to PF device
8486  * @vsi: ptr to VSI
8487  */
8488 static int ice_add_vsi_to_fdir(struct ice_pf *pf, struct ice_vsi *vsi)
8489 {
8490 	struct device *dev = ice_pf_to_dev(pf);
8491 	bool added = false;
8492 	struct ice_hw *hw;
8493 	int flow;
8494 
8495 	if (!(vsi->num_gfltr || vsi->num_bfltr))
8496 		return -EINVAL;
8497 
8498 	hw = &pf->hw;
8499 	for (flow = 0; flow < ICE_FLTR_PTYPE_MAX; flow++) {
8500 		struct ice_fd_hw_prof *prof;
8501 		int tun, status;
8502 		u64 entry_h;
8503 
8504 		if (!(hw->fdir_prof && hw->fdir_prof[flow] &&
8505 		      hw->fdir_prof[flow]->cnt))
8506 			continue;
8507 
8508 		for (tun = 0; tun < ICE_FD_HW_SEG_MAX; tun++) {
8509 			enum ice_flow_priority prio;
8510 
8511 			/* add this VSI to FDir profile for this flow */
8512 			prio = ICE_FLOW_PRIO_NORMAL;
8513 			prof = hw->fdir_prof[flow];
8514 			status = ice_flow_add_entry(hw, ICE_BLK_FD,
8515 						    prof->prof_id[tun],
8516 						    prof->vsi_h[0], vsi->idx,
8517 						    prio, prof->fdir_seg[tun],
8518 						    &entry_h);
8519 			if (status) {
8520 				dev_err(dev, "channel VSI idx %d, not able to add to group %d\n",
8521 					vsi->idx, flow);
8522 				continue;
8523 			}
8524 
8525 			prof->entry_h[prof->cnt][tun] = entry_h;
8526 		}
8527 
8528 		/* store VSI for filter replay and delete */
8529 		prof->vsi_h[prof->cnt] = vsi->idx;
8530 		prof->cnt++;
8531 
8532 		added = true;
8533 		dev_dbg(dev, "VSI idx %d added to fdir group %d\n", vsi->idx,
8534 			flow);
8535 	}
8536 
8537 	if (!added)
8538 		dev_dbg(dev, "VSI idx %d not added to fdir groups\n", vsi->idx);
8539 
8540 	return 0;
8541 }
8542 
8543 /**
8544  * ice_add_channel - add a channel by adding VSI
8545  * @pf: ptr to PF device
8546  * @sw_id: underlying HW switching element ID
8547  * @ch: ptr to channel structure
8548  *
8549  * Add a channel (VSI) using add_vsi and queue_map
8550  */
8551 static int ice_add_channel(struct ice_pf *pf, u16 sw_id, struct ice_channel *ch)
8552 {
8553 	struct device *dev = ice_pf_to_dev(pf);
8554 	struct ice_vsi *vsi;
8555 
8556 	if (ch->type != ICE_VSI_CHNL) {
8557 		dev_err(dev, "add new VSI failed, ch->type %d\n", ch->type);
8558 		return -EINVAL;
8559 	}
8560 
8561 	vsi = ice_chnl_vsi_setup(pf, pf->hw.port_info, ch);
8562 	if (!vsi || vsi->type != ICE_VSI_CHNL) {
8563 		dev_err(dev, "create chnl VSI failure\n");
8564 		return -EINVAL;
8565 	}
8566 
8567 	ice_add_vsi_to_fdir(pf, vsi);
8568 
8569 	ch->sw_id = sw_id;
8570 	ch->vsi_num = vsi->vsi_num;
8571 	ch->info.mapping_flags = vsi->info.mapping_flags;
8572 	ch->ch_vsi = vsi;
8573 	/* set the back pointer of channel for newly created VSI */
8574 	vsi->ch = ch;
8575 
8576 	memcpy(&ch->info.q_mapping, &vsi->info.q_mapping,
8577 	       sizeof(vsi->info.q_mapping));
8578 	memcpy(&ch->info.tc_mapping, vsi->info.tc_mapping,
8579 	       sizeof(vsi->info.tc_mapping));
8580 
8581 	return 0;
8582 }
8583 
8584 /**
8585  * ice_chnl_cfg_res
8586  * @vsi: the VSI being setup
8587  * @ch: ptr to channel structure
8588  *
8589  * Configure channel specific resources such as rings, vector.
8590  */
8591 static void ice_chnl_cfg_res(struct ice_vsi *vsi, struct ice_channel *ch)
8592 {
8593 	int i;
8594 
8595 	for (i = 0; i < ch->num_txq; i++) {
8596 		struct ice_q_vector *tx_q_vector, *rx_q_vector;
8597 		struct ice_ring_container *rc;
8598 		struct ice_tx_ring *tx_ring;
8599 		struct ice_rx_ring *rx_ring;
8600 
8601 		tx_ring = vsi->tx_rings[ch->base_q + i];
8602 		rx_ring = vsi->rx_rings[ch->base_q + i];
8603 		if (!tx_ring || !rx_ring)
8604 			continue;
8605 
8606 		/* setup ring being channel enabled */
8607 		tx_ring->ch = ch;
8608 		rx_ring->ch = ch;
8609 
8610 		/* following code block sets up vector specific attributes */
8611 		tx_q_vector = tx_ring->q_vector;
8612 		rx_q_vector = rx_ring->q_vector;
8613 		if (!tx_q_vector && !rx_q_vector)
8614 			continue;
8615 
8616 		if (tx_q_vector) {
8617 			tx_q_vector->ch = ch;
8618 			/* setup Tx and Rx ITR setting if DIM is off */
8619 			rc = &tx_q_vector->tx;
8620 			if (!ITR_IS_DYNAMIC(rc))
8621 				ice_write_itr(rc, rc->itr_setting);
8622 		}
8623 		if (rx_q_vector) {
8624 			rx_q_vector->ch = ch;
8625 			/* setup Tx and Rx ITR setting if DIM is off */
8626 			rc = &rx_q_vector->rx;
8627 			if (!ITR_IS_DYNAMIC(rc))
8628 				ice_write_itr(rc, rc->itr_setting);
8629 		}
8630 	}
8631 
8632 	/* it is safe to assume that, if channel has non-zero num_t[r]xq, then
8633 	 * GLINT_ITR register would have written to perform in-context
8634 	 * update, hence perform flush
8635 	 */
8636 	if (ch->num_txq || ch->num_rxq)
8637 		ice_flush(&vsi->back->hw);
8638 }
8639 
8640 /**
8641  * ice_cfg_chnl_all_res - configure channel resources
8642  * @vsi: pte to main_vsi
8643  * @ch: ptr to channel structure
8644  *
8645  * This function configures channel specific resources such as flow-director
8646  * counter index, and other resources such as queues, vectors, ITR settings
8647  */
8648 static void
8649 ice_cfg_chnl_all_res(struct ice_vsi *vsi, struct ice_channel *ch)
8650 {
8651 	/* configure channel (aka ADQ) resources such as queues, vectors,
8652 	 * ITR settings for channel specific vectors and anything else
8653 	 */
8654 	ice_chnl_cfg_res(vsi, ch);
8655 }
8656 
8657 /**
8658  * ice_setup_hw_channel - setup new channel
8659  * @pf: ptr to PF device
8660  * @vsi: the VSI being setup
8661  * @ch: ptr to channel structure
8662  * @sw_id: underlying HW switching element ID
8663  * @type: type of channel to be created (VMDq2/VF)
8664  *
8665  * Setup new channel (VSI) based on specified type (VMDq2/VF)
8666  * and configures Tx rings accordingly
8667  */
8668 static int
8669 ice_setup_hw_channel(struct ice_pf *pf, struct ice_vsi *vsi,
8670 		     struct ice_channel *ch, u16 sw_id, u8 type)
8671 {
8672 	struct device *dev = ice_pf_to_dev(pf);
8673 	int ret;
8674 
8675 	ch->base_q = vsi->next_base_q;
8676 	ch->type = type;
8677 
8678 	ret = ice_add_channel(pf, sw_id, ch);
8679 	if (ret) {
8680 		dev_err(dev, "failed to add_channel using sw_id %u\n", sw_id);
8681 		return ret;
8682 	}
8683 
8684 	/* configure/setup ADQ specific resources */
8685 	ice_cfg_chnl_all_res(vsi, ch);
8686 
8687 	/* make sure to update the next_base_q so that subsequent channel's
8688 	 * (aka ADQ) VSI queue map is correct
8689 	 */
8690 	vsi->next_base_q = vsi->next_base_q + ch->num_rxq;
8691 	dev_dbg(dev, "added channel: vsi_num %u, num_rxq %u\n", ch->vsi_num,
8692 		ch->num_rxq);
8693 
8694 	return 0;
8695 }
8696 
8697 /**
8698  * ice_setup_channel - setup new channel using uplink element
8699  * @pf: ptr to PF device
8700  * @vsi: the VSI being setup
8701  * @ch: ptr to channel structure
8702  *
8703  * Setup new channel (VSI) based on specified type (VMDq2/VF)
8704  * and uplink switching element
8705  */
8706 static bool
8707 ice_setup_channel(struct ice_pf *pf, struct ice_vsi *vsi,
8708 		  struct ice_channel *ch)
8709 {
8710 	struct device *dev = ice_pf_to_dev(pf);
8711 	u16 sw_id;
8712 	int ret;
8713 
8714 	if (vsi->type != ICE_VSI_PF) {
8715 		dev_err(dev, "unsupported parent VSI type(%d)\n", vsi->type);
8716 		return false;
8717 	}
8718 
8719 	sw_id = pf->first_sw->sw_id;
8720 
8721 	/* create channel (VSI) */
8722 	ret = ice_setup_hw_channel(pf, vsi, ch, sw_id, ICE_VSI_CHNL);
8723 	if (ret) {
8724 		dev_err(dev, "failed to setup hw_channel\n");
8725 		return false;
8726 	}
8727 	dev_dbg(dev, "successfully created channel()\n");
8728 
8729 	return ch->ch_vsi ? true : false;
8730 }
8731 
8732 /**
8733  * ice_set_bw_limit - setup BW limit for Tx traffic based on max_tx_rate
8734  * @vsi: VSI to be configured
8735  * @max_tx_rate: max Tx rate in Kbps to be configured as maximum BW limit
8736  * @min_tx_rate: min Tx rate in Kbps to be configured as minimum BW limit
8737  */
8738 static int
8739 ice_set_bw_limit(struct ice_vsi *vsi, u64 max_tx_rate, u64 min_tx_rate)
8740 {
8741 	int err;
8742 
8743 	err = ice_set_min_bw_limit(vsi, min_tx_rate);
8744 	if (err)
8745 		return err;
8746 
8747 	return ice_set_max_bw_limit(vsi, max_tx_rate);
8748 }
8749 
8750 /**
8751  * ice_create_q_channel - function to create channel
8752  * @vsi: VSI to be configured
8753  * @ch: ptr to channel (it contains channel specific params)
8754  *
8755  * This function creates channel (VSI) using num_queues specified by user,
8756  * reconfigs RSS if needed.
8757  */
8758 static int ice_create_q_channel(struct ice_vsi *vsi, struct ice_channel *ch)
8759 {
8760 	struct ice_pf *pf = vsi->back;
8761 	struct device *dev;
8762 
8763 	if (!ch)
8764 		return -EINVAL;
8765 
8766 	dev = ice_pf_to_dev(pf);
8767 	if (!ch->num_txq || !ch->num_rxq) {
8768 		dev_err(dev, "Invalid num_queues requested: %d\n", ch->num_rxq);
8769 		return -EINVAL;
8770 	}
8771 
8772 	if (!vsi->cnt_q_avail || vsi->cnt_q_avail < ch->num_txq) {
8773 		dev_err(dev, "cnt_q_avail (%u) less than num_queues %d\n",
8774 			vsi->cnt_q_avail, ch->num_txq);
8775 		return -EINVAL;
8776 	}
8777 
8778 	if (!ice_setup_channel(pf, vsi, ch)) {
8779 		dev_info(dev, "Failed to setup channel\n");
8780 		return -EINVAL;
8781 	}
8782 	/* configure BW rate limit */
8783 	if (ch->ch_vsi && (ch->max_tx_rate || ch->min_tx_rate)) {
8784 		int ret;
8785 
8786 		ret = ice_set_bw_limit(ch->ch_vsi, ch->max_tx_rate,
8787 				       ch->min_tx_rate);
8788 		if (ret)
8789 			dev_err(dev, "failed to set Tx rate of %llu Kbps for VSI(%u)\n",
8790 				ch->max_tx_rate, ch->ch_vsi->vsi_num);
8791 		else
8792 			dev_dbg(dev, "set Tx rate of %llu Kbps for VSI(%u)\n",
8793 				ch->max_tx_rate, ch->ch_vsi->vsi_num);
8794 	}
8795 
8796 	vsi->cnt_q_avail -= ch->num_txq;
8797 
8798 	return 0;
8799 }
8800 
8801 /**
8802  * ice_rem_all_chnl_fltrs - removes all channel filters
8803  * @pf: ptr to PF, TC-flower based filter are tracked at PF level
8804  *
8805  * Remove all advanced switch filters only if they are channel specific
8806  * tc-flower based filter
8807  */
8808 static void ice_rem_all_chnl_fltrs(struct ice_pf *pf)
8809 {
8810 	struct ice_tc_flower_fltr *fltr;
8811 	struct hlist_node *node;
8812 
8813 	/* to remove all channel filters, iterate an ordered list of filters */
8814 	hlist_for_each_entry_safe(fltr, node,
8815 				  &pf->tc_flower_fltr_list,
8816 				  tc_flower_node) {
8817 		struct ice_rule_query_data rule;
8818 		int status;
8819 
8820 		/* for now process only channel specific filters */
8821 		if (!ice_is_chnl_fltr(fltr))
8822 			continue;
8823 
8824 		rule.rid = fltr->rid;
8825 		rule.rule_id = fltr->rule_id;
8826 		rule.vsi_handle = fltr->dest_vsi_handle;
8827 		status = ice_rem_adv_rule_by_id(&pf->hw, &rule);
8828 		if (status) {
8829 			if (status == -ENOENT)
8830 				dev_dbg(ice_pf_to_dev(pf), "TC flower filter (rule_id %u) does not exist\n",
8831 					rule.rule_id);
8832 			else
8833 				dev_err(ice_pf_to_dev(pf), "failed to delete TC flower filter, status %d\n",
8834 					status);
8835 		} else if (fltr->dest_vsi) {
8836 			/* update advanced switch filter count */
8837 			if (fltr->dest_vsi->type == ICE_VSI_CHNL) {
8838 				u32 flags = fltr->flags;
8839 
8840 				fltr->dest_vsi->num_chnl_fltr--;
8841 				if (flags & (ICE_TC_FLWR_FIELD_DST_MAC |
8842 					     ICE_TC_FLWR_FIELD_ENC_DST_MAC))
8843 					pf->num_dmac_chnl_fltrs--;
8844 			}
8845 		}
8846 
8847 		hlist_del(&fltr->tc_flower_node);
8848 		kfree(fltr);
8849 	}
8850 }
8851 
8852 /**
8853  * ice_remove_q_channels - Remove queue channels for the TCs
8854  * @vsi: VSI to be configured
8855  * @rem_fltr: delete advanced switch filter or not
8856  *
8857  * Remove queue channels for the TCs
8858  */
8859 static void ice_remove_q_channels(struct ice_vsi *vsi, bool rem_fltr)
8860 {
8861 	struct ice_channel *ch, *ch_tmp;
8862 	struct ice_pf *pf = vsi->back;
8863 	int i;
8864 
8865 	/* remove all tc-flower based filter if they are channel filters only */
8866 	if (rem_fltr)
8867 		ice_rem_all_chnl_fltrs(pf);
8868 
8869 	/* remove ntuple filters since queue configuration is being changed */
8870 	if  (vsi->netdev->features & NETIF_F_NTUPLE) {
8871 		struct ice_hw *hw = &pf->hw;
8872 
8873 		mutex_lock(&hw->fdir_fltr_lock);
8874 		ice_fdir_del_all_fltrs(vsi);
8875 		mutex_unlock(&hw->fdir_fltr_lock);
8876 	}
8877 
8878 	/* perform cleanup for channels if they exist */
8879 	list_for_each_entry_safe(ch, ch_tmp, &vsi->ch_list, list) {
8880 		struct ice_vsi *ch_vsi;
8881 
8882 		list_del(&ch->list);
8883 		ch_vsi = ch->ch_vsi;
8884 		if (!ch_vsi) {
8885 			kfree(ch);
8886 			continue;
8887 		}
8888 
8889 		/* Reset queue contexts */
8890 		for (i = 0; i < ch->num_rxq; i++) {
8891 			struct ice_tx_ring *tx_ring;
8892 			struct ice_rx_ring *rx_ring;
8893 
8894 			tx_ring = vsi->tx_rings[ch->base_q + i];
8895 			rx_ring = vsi->rx_rings[ch->base_q + i];
8896 			if (tx_ring) {
8897 				tx_ring->ch = NULL;
8898 				if (tx_ring->q_vector)
8899 					tx_ring->q_vector->ch = NULL;
8900 			}
8901 			if (rx_ring) {
8902 				rx_ring->ch = NULL;
8903 				if (rx_ring->q_vector)
8904 					rx_ring->q_vector->ch = NULL;
8905 			}
8906 		}
8907 
8908 		/* Release FD resources for the channel VSI */
8909 		ice_fdir_rem_adq_chnl(&pf->hw, ch->ch_vsi->idx);
8910 
8911 		/* clear the VSI from scheduler tree */
8912 		ice_rm_vsi_lan_cfg(ch->ch_vsi->port_info, ch->ch_vsi->idx);
8913 
8914 		/* Delete VSI from FW, PF and HW VSI arrays */
8915 		ice_vsi_delete(ch->ch_vsi);
8916 
8917 		/* free the channel */
8918 		kfree(ch);
8919 	}
8920 
8921 	/* clear the channel VSI map which is stored in main VSI */
8922 	ice_for_each_chnl_tc(i)
8923 		vsi->tc_map_vsi[i] = NULL;
8924 
8925 	/* reset main VSI's all TC information */
8926 	vsi->all_enatc = 0;
8927 	vsi->all_numtc = 0;
8928 }
8929 
8930 /**
8931  * ice_rebuild_channels - rebuild channel
8932  * @pf: ptr to PF
8933  *
8934  * Recreate channel VSIs and replay filters
8935  */
8936 static int ice_rebuild_channels(struct ice_pf *pf)
8937 {
8938 	struct device *dev = ice_pf_to_dev(pf);
8939 	struct ice_vsi *main_vsi;
8940 	bool rem_adv_fltr = true;
8941 	struct ice_channel *ch;
8942 	struct ice_vsi *vsi;
8943 	int tc_idx = 1;
8944 	int i, err;
8945 
8946 	main_vsi = ice_get_main_vsi(pf);
8947 	if (!main_vsi)
8948 		return 0;
8949 
8950 	if (!test_bit(ICE_FLAG_TC_MQPRIO, pf->flags) ||
8951 	    main_vsi->old_numtc == 1)
8952 		return 0; /* nothing to be done */
8953 
8954 	/* reconfigure main VSI based on old value of TC and cached values
8955 	 * for MQPRIO opts
8956 	 */
8957 	err = ice_vsi_cfg_tc(main_vsi, main_vsi->old_ena_tc);
8958 	if (err) {
8959 		dev_err(dev, "failed configuring TC(ena_tc:0x%02x) for HW VSI=%u\n",
8960 			main_vsi->old_ena_tc, main_vsi->vsi_num);
8961 		return err;
8962 	}
8963 
8964 	/* rebuild ADQ VSIs */
8965 	ice_for_each_vsi(pf, i) {
8966 		enum ice_vsi_type type;
8967 
8968 		vsi = pf->vsi[i];
8969 		if (!vsi || vsi->type != ICE_VSI_CHNL)
8970 			continue;
8971 
8972 		type = vsi->type;
8973 
8974 		/* rebuild ADQ VSI */
8975 		err = ice_vsi_rebuild(vsi, ICE_VSI_FLAG_INIT);
8976 		if (err) {
8977 			dev_err(dev, "VSI (type:%s) at index %d rebuild failed, err %d\n",
8978 				ice_vsi_type_str(type), vsi->idx, err);
8979 			goto cleanup;
8980 		}
8981 
8982 		/* Re-map HW VSI number, using VSI handle that has been
8983 		 * previously validated in ice_replay_vsi() call above
8984 		 */
8985 		vsi->vsi_num = ice_get_hw_vsi_num(&pf->hw, vsi->idx);
8986 
8987 		/* replay filters for the VSI */
8988 		err = ice_replay_vsi(&pf->hw, vsi->idx);
8989 		if (err) {
8990 			dev_err(dev, "VSI (type:%s) replay failed, err %d, VSI index %d\n",
8991 				ice_vsi_type_str(type), err, vsi->idx);
8992 			rem_adv_fltr = false;
8993 			goto cleanup;
8994 		}
8995 		dev_info(dev, "VSI (type:%s) at index %d rebuilt successfully\n",
8996 			 ice_vsi_type_str(type), vsi->idx);
8997 
8998 		/* store ADQ VSI at correct TC index in main VSI's
8999 		 * map of TC to VSI
9000 		 */
9001 		main_vsi->tc_map_vsi[tc_idx++] = vsi;
9002 	}
9003 
9004 	/* ADQ VSI(s) has been rebuilt successfully, so setup
9005 	 * channel for main VSI's Tx and Rx rings
9006 	 */
9007 	list_for_each_entry(ch, &main_vsi->ch_list, list) {
9008 		struct ice_vsi *ch_vsi;
9009 
9010 		ch_vsi = ch->ch_vsi;
9011 		if (!ch_vsi)
9012 			continue;
9013 
9014 		/* reconfig channel resources */
9015 		ice_cfg_chnl_all_res(main_vsi, ch);
9016 
9017 		/* replay BW rate limit if it is non-zero */
9018 		if (!ch->max_tx_rate && !ch->min_tx_rate)
9019 			continue;
9020 
9021 		err = ice_set_bw_limit(ch_vsi, ch->max_tx_rate,
9022 				       ch->min_tx_rate);
9023 		if (err)
9024 			dev_err(dev, "failed (err:%d) to rebuild BW rate limit, max_tx_rate: %llu Kbps, min_tx_rate: %llu Kbps for VSI(%u)\n",
9025 				err, ch->max_tx_rate, ch->min_tx_rate,
9026 				ch_vsi->vsi_num);
9027 		else
9028 			dev_dbg(dev, "successfully rebuild BW rate limit, max_tx_rate: %llu Kbps, min_tx_rate: %llu Kbps for VSI(%u)\n",
9029 				ch->max_tx_rate, ch->min_tx_rate,
9030 				ch_vsi->vsi_num);
9031 	}
9032 
9033 	/* reconfig RSS for main VSI */
9034 	if (main_vsi->ch_rss_size)
9035 		ice_vsi_cfg_rss_lut_key(main_vsi);
9036 
9037 	return 0;
9038 
9039 cleanup:
9040 	ice_remove_q_channels(main_vsi, rem_adv_fltr);
9041 	return err;
9042 }
9043 
9044 /**
9045  * ice_create_q_channels - Add queue channel for the given TCs
9046  * @vsi: VSI to be configured
9047  *
9048  * Configures queue channel mapping to the given TCs
9049  */
9050 static int ice_create_q_channels(struct ice_vsi *vsi)
9051 {
9052 	struct ice_pf *pf = vsi->back;
9053 	struct ice_channel *ch;
9054 	int ret = 0, i;
9055 
9056 	ice_for_each_chnl_tc(i) {
9057 		if (!(vsi->all_enatc & BIT(i)))
9058 			continue;
9059 
9060 		ch = kzalloc(sizeof(*ch), GFP_KERNEL);
9061 		if (!ch) {
9062 			ret = -ENOMEM;
9063 			goto err_free;
9064 		}
9065 		INIT_LIST_HEAD(&ch->list);
9066 		ch->num_rxq = vsi->mqprio_qopt.qopt.count[i];
9067 		ch->num_txq = vsi->mqprio_qopt.qopt.count[i];
9068 		ch->base_q = vsi->mqprio_qopt.qopt.offset[i];
9069 		ch->max_tx_rate = vsi->mqprio_qopt.max_rate[i];
9070 		ch->min_tx_rate = vsi->mqprio_qopt.min_rate[i];
9071 
9072 		/* convert to Kbits/s */
9073 		if (ch->max_tx_rate)
9074 			ch->max_tx_rate = div_u64(ch->max_tx_rate,
9075 						  ICE_BW_KBPS_DIVISOR);
9076 		if (ch->min_tx_rate)
9077 			ch->min_tx_rate = div_u64(ch->min_tx_rate,
9078 						  ICE_BW_KBPS_DIVISOR);
9079 
9080 		ret = ice_create_q_channel(vsi, ch);
9081 		if (ret) {
9082 			dev_err(ice_pf_to_dev(pf),
9083 				"failed creating channel TC:%d\n", i);
9084 			kfree(ch);
9085 			goto err_free;
9086 		}
9087 		list_add_tail(&ch->list, &vsi->ch_list);
9088 		vsi->tc_map_vsi[i] = ch->ch_vsi;
9089 		dev_dbg(ice_pf_to_dev(pf),
9090 			"successfully created channel: VSI %p\n", ch->ch_vsi);
9091 	}
9092 	return 0;
9093 
9094 err_free:
9095 	ice_remove_q_channels(vsi, false);
9096 
9097 	return ret;
9098 }
9099 
9100 /**
9101  * ice_setup_tc_mqprio_qdisc - configure multiple traffic classes
9102  * @netdev: net device to configure
9103  * @type_data: TC offload data
9104  */
9105 static int ice_setup_tc_mqprio_qdisc(struct net_device *netdev, void *type_data)
9106 {
9107 	struct tc_mqprio_qopt_offload *mqprio_qopt = type_data;
9108 	struct ice_netdev_priv *np = netdev_priv(netdev);
9109 	struct ice_vsi *vsi = np->vsi;
9110 	struct ice_pf *pf = vsi->back;
9111 	u16 mode, ena_tc_qdisc = 0;
9112 	int cur_txq, cur_rxq;
9113 	u8 hw = 0, num_tcf;
9114 	struct device *dev;
9115 	int ret, i;
9116 
9117 	dev = ice_pf_to_dev(pf);
9118 	num_tcf = mqprio_qopt->qopt.num_tc;
9119 	hw = mqprio_qopt->qopt.hw;
9120 	mode = mqprio_qopt->mode;
9121 	if (!hw) {
9122 		clear_bit(ICE_FLAG_TC_MQPRIO, pf->flags);
9123 		vsi->ch_rss_size = 0;
9124 		memcpy(&vsi->mqprio_qopt, mqprio_qopt, sizeof(*mqprio_qopt));
9125 		goto config_tcf;
9126 	}
9127 
9128 	/* Generate queue region map for number of TCF requested */
9129 	for (i = 0; i < num_tcf; i++)
9130 		ena_tc_qdisc |= BIT(i);
9131 
9132 	switch (mode) {
9133 	case TC_MQPRIO_MODE_CHANNEL:
9134 
9135 		if (pf->hw.port_info->is_custom_tx_enabled) {
9136 			dev_err(dev, "Custom Tx scheduler feature enabled, can't configure ADQ\n");
9137 			return -EBUSY;
9138 		}
9139 		ice_tear_down_devlink_rate_tree(pf);
9140 
9141 		ret = ice_validate_mqprio_qopt(vsi, mqprio_qopt);
9142 		if (ret) {
9143 			netdev_err(netdev, "failed to validate_mqprio_qopt(), ret %d\n",
9144 				   ret);
9145 			return ret;
9146 		}
9147 		memcpy(&vsi->mqprio_qopt, mqprio_qopt, sizeof(*mqprio_qopt));
9148 		set_bit(ICE_FLAG_TC_MQPRIO, pf->flags);
9149 		/* don't assume state of hw_tc_offload during driver load
9150 		 * and set the flag for TC flower filter if hw_tc_offload
9151 		 * already ON
9152 		 */
9153 		if (vsi->netdev->features & NETIF_F_HW_TC)
9154 			set_bit(ICE_FLAG_CLS_FLOWER, pf->flags);
9155 		break;
9156 	default:
9157 		return -EINVAL;
9158 	}
9159 
9160 config_tcf:
9161 
9162 	/* Requesting same TCF configuration as already enabled */
9163 	if (ena_tc_qdisc == vsi->tc_cfg.ena_tc &&
9164 	    mode != TC_MQPRIO_MODE_CHANNEL)
9165 		return 0;
9166 
9167 	/* Pause VSI queues */
9168 	ice_dis_vsi(vsi, true);
9169 
9170 	if (!hw && !test_bit(ICE_FLAG_TC_MQPRIO, pf->flags))
9171 		ice_remove_q_channels(vsi, true);
9172 
9173 	if (!hw && !test_bit(ICE_FLAG_TC_MQPRIO, pf->flags)) {
9174 		vsi->req_txq = min_t(int, ice_get_avail_txq_count(pf),
9175 				     num_online_cpus());
9176 		vsi->req_rxq = min_t(int, ice_get_avail_rxq_count(pf),
9177 				     num_online_cpus());
9178 	} else {
9179 		/* logic to rebuild VSI, same like ethtool -L */
9180 		u16 offset = 0, qcount_tx = 0, qcount_rx = 0;
9181 
9182 		for (i = 0; i < num_tcf; i++) {
9183 			if (!(ena_tc_qdisc & BIT(i)))
9184 				continue;
9185 
9186 			offset = vsi->mqprio_qopt.qopt.offset[i];
9187 			qcount_rx = vsi->mqprio_qopt.qopt.count[i];
9188 			qcount_tx = vsi->mqprio_qopt.qopt.count[i];
9189 		}
9190 		vsi->req_txq = offset + qcount_tx;
9191 		vsi->req_rxq = offset + qcount_rx;
9192 
9193 		/* store away original rss_size info, so that it gets reused
9194 		 * form ice_vsi_rebuild during tc-qdisc delete stage - to
9195 		 * determine, what should be the rss_sizefor main VSI
9196 		 */
9197 		vsi->orig_rss_size = vsi->rss_size;
9198 	}
9199 
9200 	/* save current values of Tx and Rx queues before calling VSI rebuild
9201 	 * for fallback option
9202 	 */
9203 	cur_txq = vsi->num_txq;
9204 	cur_rxq = vsi->num_rxq;
9205 
9206 	/* proceed with rebuild main VSI using correct number of queues */
9207 	ret = ice_vsi_rebuild(vsi, ICE_VSI_FLAG_NO_INIT);
9208 	if (ret) {
9209 		/* fallback to current number of queues */
9210 		dev_info(dev, "Rebuild failed with new queues, try with current number of queues\n");
9211 		vsi->req_txq = cur_txq;
9212 		vsi->req_rxq = cur_rxq;
9213 		clear_bit(ICE_RESET_FAILED, pf->state);
9214 		if (ice_vsi_rebuild(vsi, ICE_VSI_FLAG_NO_INIT)) {
9215 			dev_err(dev, "Rebuild of main VSI failed again\n");
9216 			return ret;
9217 		}
9218 	}
9219 
9220 	vsi->all_numtc = num_tcf;
9221 	vsi->all_enatc = ena_tc_qdisc;
9222 	ret = ice_vsi_cfg_tc(vsi, ena_tc_qdisc);
9223 	if (ret) {
9224 		netdev_err(netdev, "failed configuring TC for VSI id=%d\n",
9225 			   vsi->vsi_num);
9226 		goto exit;
9227 	}
9228 
9229 	if (test_bit(ICE_FLAG_TC_MQPRIO, pf->flags)) {
9230 		u64 max_tx_rate = vsi->mqprio_qopt.max_rate[0];
9231 		u64 min_tx_rate = vsi->mqprio_qopt.min_rate[0];
9232 
9233 		/* set TC0 rate limit if specified */
9234 		if (max_tx_rate || min_tx_rate) {
9235 			/* convert to Kbits/s */
9236 			if (max_tx_rate)
9237 				max_tx_rate = div_u64(max_tx_rate, ICE_BW_KBPS_DIVISOR);
9238 			if (min_tx_rate)
9239 				min_tx_rate = div_u64(min_tx_rate, ICE_BW_KBPS_DIVISOR);
9240 
9241 			ret = ice_set_bw_limit(vsi, max_tx_rate, min_tx_rate);
9242 			if (!ret) {
9243 				dev_dbg(dev, "set Tx rate max %llu min %llu for VSI(%u)\n",
9244 					max_tx_rate, min_tx_rate, vsi->vsi_num);
9245 			} else {
9246 				dev_err(dev, "failed to set Tx rate max %llu min %llu for VSI(%u)\n",
9247 					max_tx_rate, min_tx_rate, vsi->vsi_num);
9248 				goto exit;
9249 			}
9250 		}
9251 		ret = ice_create_q_channels(vsi);
9252 		if (ret) {
9253 			netdev_err(netdev, "failed configuring queue channels\n");
9254 			goto exit;
9255 		} else {
9256 			netdev_dbg(netdev, "successfully configured channels\n");
9257 		}
9258 	}
9259 
9260 	if (vsi->ch_rss_size)
9261 		ice_vsi_cfg_rss_lut_key(vsi);
9262 
9263 exit:
9264 	/* if error, reset the all_numtc and all_enatc */
9265 	if (ret) {
9266 		vsi->all_numtc = 0;
9267 		vsi->all_enatc = 0;
9268 	}
9269 	/* resume VSI */
9270 	ice_ena_vsi(vsi, true);
9271 
9272 	return ret;
9273 }
9274 
9275 /**
9276  * ice_cfg_txtime - configure Tx Time for the Tx ring
9277  * @tx_ring: pointer to the Tx ring structure
9278  *
9279  * Return: 0 on success, negative value on failure.
9280  */
9281 static int ice_cfg_txtime(struct ice_tx_ring *tx_ring)
9282 {
9283 	int err, timeout = 50;
9284 	struct ice_vsi *vsi;
9285 	struct device *dev;
9286 	struct ice_pf *pf;
9287 	u32 queue;
9288 
9289 	if (!tx_ring)
9290 		return -EINVAL;
9291 
9292 	vsi = tx_ring->vsi;
9293 	pf = vsi->back;
9294 	while (test_and_set_bit(ICE_CFG_BUSY, pf->state)) {
9295 		timeout--;
9296 		if (!timeout)
9297 			return -EBUSY;
9298 		usleep_range(1000, 2000);
9299 	}
9300 
9301 	queue = tx_ring->q_index;
9302 	dev = ice_pf_to_dev(pf);
9303 
9304 	/* Ignore return value, and always attempt to enable queue. */
9305 	ice_qp_dis(vsi, queue);
9306 
9307 	err = ice_qp_ena(vsi, queue);
9308 	if (err)
9309 		dev_err(dev, "Failed to enable Tx queue %d for TxTime configuration\n",
9310 			queue);
9311 
9312 	clear_bit(ICE_CFG_BUSY, pf->state);
9313 	return err;
9314 }
9315 
9316 /**
9317  * ice_offload_txtime - set earliest TxTime first
9318  * @netdev: network interface device structure
9319  * @qopt_off: etf queue option offload from the skb to set
9320  *
9321  * Return: 0 on success, negative value on failure.
9322  */
9323 static int ice_offload_txtime(struct net_device *netdev,
9324 			      void *qopt_off)
9325 {
9326 	struct ice_netdev_priv *np = netdev_priv(netdev);
9327 	struct ice_pf *pf = np->vsi->back;
9328 	struct tc_etf_qopt_offload *qopt;
9329 	struct ice_vsi *vsi = np->vsi;
9330 	struct ice_tx_ring *tx_ring;
9331 	int ret = 0;
9332 
9333 	if (!ice_is_feature_supported(pf, ICE_F_TXTIME))
9334 		return -EOPNOTSUPP;
9335 
9336 	qopt = qopt_off;
9337 	if (!qopt_off || qopt->queue < 0 || qopt->queue >= vsi->num_txq)
9338 		return -EINVAL;
9339 
9340 	if (qopt->enable)
9341 		set_bit(qopt->queue,  pf->txtime_txqs);
9342 	else
9343 		clear_bit(qopt->queue, pf->txtime_txqs);
9344 
9345 	if (netif_running(vsi->netdev)) {
9346 		tx_ring = vsi->tx_rings[qopt->queue];
9347 		ret = ice_cfg_txtime(tx_ring);
9348 		if (ret)
9349 			goto err;
9350 	}
9351 
9352 	netdev_info(netdev, "%s TxTime on queue: %i\n",
9353 		    str_enable_disable(qopt->enable), qopt->queue);
9354 	return 0;
9355 
9356 err:
9357 	netdev_err(netdev, "Failed to %s TxTime on queue: %i\n",
9358 		   str_enable_disable(qopt->enable), qopt->queue);
9359 
9360 	if (qopt->enable)
9361 		clear_bit(qopt->queue,  pf->txtime_txqs);
9362 	return ret;
9363 }
9364 
9365 static LIST_HEAD(ice_block_cb_list);
9366 
9367 static int
9368 ice_setup_tc(struct net_device *netdev, enum tc_setup_type type,
9369 	     void *type_data)
9370 {
9371 	struct ice_netdev_priv *np = netdev_priv(netdev);
9372 	enum flow_block_binder_type binder_type;
9373 	struct iidc_rdma_core_dev_info *cdev;
9374 	struct ice_pf *pf = np->vsi->back;
9375 	flow_setup_cb_t *flower_handler;
9376 	bool locked = false;
9377 	int err;
9378 
9379 	switch (type) {
9380 	case TC_SETUP_BLOCK:
9381 		binder_type =
9382 			((struct flow_block_offload *)type_data)->binder_type;
9383 
9384 		switch (binder_type) {
9385 		case FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS:
9386 			flower_handler = ice_setup_tc_block_cb_ingress;
9387 			break;
9388 		case FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS:
9389 			flower_handler = ice_setup_tc_block_cb_egress;
9390 			break;
9391 		default:
9392 			return -EOPNOTSUPP;
9393 		}
9394 
9395 		return flow_block_cb_setup_simple(type_data,
9396 						  &ice_block_cb_list,
9397 						  flower_handler,
9398 						  np, np, false);
9399 	case TC_SETUP_QDISC_MQPRIO:
9400 		if (ice_is_eswitch_mode_switchdev(pf)) {
9401 			netdev_err(netdev, "TC MQPRIO offload not supported, switchdev is enabled\n");
9402 			return -EOPNOTSUPP;
9403 		}
9404 
9405 		cdev = pf->cdev_info;
9406 		if (cdev && cdev->adev) {
9407 			mutex_lock(&pf->adev_mutex);
9408 			device_lock(&cdev->adev->dev);
9409 			locked = true;
9410 			if (cdev->adev->dev.driver) {
9411 				netdev_err(netdev, "Cannot change qdisc when RDMA is active\n");
9412 				err = -EBUSY;
9413 				goto adev_unlock;
9414 			}
9415 		}
9416 
9417 		/* setup traffic classifier for receive side */
9418 		mutex_lock(&pf->tc_mutex);
9419 		err = ice_setup_tc_mqprio_qdisc(netdev, type_data);
9420 		mutex_unlock(&pf->tc_mutex);
9421 
9422 adev_unlock:
9423 		if (locked) {
9424 			device_unlock(&cdev->adev->dev);
9425 			mutex_unlock(&pf->adev_mutex);
9426 		}
9427 		return err;
9428 	case TC_SETUP_QDISC_ETF:
9429 		return ice_offload_txtime(netdev, type_data);
9430 	default:
9431 		return -EOPNOTSUPP;
9432 	}
9433 	return -EOPNOTSUPP;
9434 }
9435 
9436 static struct ice_indr_block_priv *
9437 ice_indr_block_priv_lookup(struct ice_netdev_priv *np,
9438 			   struct net_device *netdev)
9439 {
9440 	struct ice_indr_block_priv *cb_priv;
9441 
9442 	list_for_each_entry(cb_priv, &np->tc_indr_block_priv_list, list) {
9443 		if (!cb_priv->netdev)
9444 			return NULL;
9445 		if (cb_priv->netdev == netdev)
9446 			return cb_priv;
9447 	}
9448 	return NULL;
9449 }
9450 
9451 static int
9452 ice_indr_setup_block_cb(enum tc_setup_type type, void *type_data,
9453 			void *indr_priv)
9454 {
9455 	struct ice_indr_block_priv *priv = indr_priv;
9456 	struct ice_netdev_priv *np = priv->np;
9457 
9458 	switch (type) {
9459 	case TC_SETUP_CLSFLOWER:
9460 		return ice_setup_tc_cls_flower(np, priv->netdev,
9461 					       (struct flow_cls_offload *)
9462 					       type_data, false);
9463 	default:
9464 		return -EOPNOTSUPP;
9465 	}
9466 }
9467 
9468 static int
9469 ice_indr_setup_tc_block(struct net_device *netdev, struct Qdisc *sch,
9470 			struct ice_netdev_priv *np,
9471 			struct flow_block_offload *f, void *data,
9472 			void (*cleanup)(struct flow_block_cb *block_cb))
9473 {
9474 	struct ice_indr_block_priv *indr_priv;
9475 	struct flow_block_cb *block_cb;
9476 
9477 	if (!ice_is_tunnel_supported(netdev) &&
9478 	    !(is_vlan_dev(netdev) &&
9479 	      vlan_dev_real_dev(netdev) == np->vsi->netdev))
9480 		return -EOPNOTSUPP;
9481 
9482 	if (f->binder_type != FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
9483 		return -EOPNOTSUPP;
9484 
9485 	switch (f->command) {
9486 	case FLOW_BLOCK_BIND:
9487 		indr_priv = ice_indr_block_priv_lookup(np, netdev);
9488 		if (indr_priv)
9489 			return -EEXIST;
9490 
9491 		indr_priv = kzalloc(sizeof(*indr_priv), GFP_KERNEL);
9492 		if (!indr_priv)
9493 			return -ENOMEM;
9494 
9495 		indr_priv->netdev = netdev;
9496 		indr_priv->np = np;
9497 		list_add(&indr_priv->list, &np->tc_indr_block_priv_list);
9498 
9499 		block_cb =
9500 			flow_indr_block_cb_alloc(ice_indr_setup_block_cb,
9501 						 indr_priv, indr_priv,
9502 						 ice_rep_indr_tc_block_unbind,
9503 						 f, netdev, sch, data, np,
9504 						 cleanup);
9505 
9506 		if (IS_ERR(block_cb)) {
9507 			list_del(&indr_priv->list);
9508 			kfree(indr_priv);
9509 			return PTR_ERR(block_cb);
9510 		}
9511 		flow_block_cb_add(block_cb, f);
9512 		list_add_tail(&block_cb->driver_list, &ice_block_cb_list);
9513 		break;
9514 	case FLOW_BLOCK_UNBIND:
9515 		indr_priv = ice_indr_block_priv_lookup(np, netdev);
9516 		if (!indr_priv)
9517 			return -ENOENT;
9518 
9519 		block_cb = flow_block_cb_lookup(f->block,
9520 						ice_indr_setup_block_cb,
9521 						indr_priv);
9522 		if (!block_cb)
9523 			return -ENOENT;
9524 
9525 		flow_indr_block_cb_remove(block_cb, f);
9526 
9527 		list_del(&block_cb->driver_list);
9528 		break;
9529 	default:
9530 		return -EOPNOTSUPP;
9531 	}
9532 	return 0;
9533 }
9534 
9535 static int
9536 ice_indr_setup_tc_cb(struct net_device *netdev, struct Qdisc *sch,
9537 		     void *cb_priv, enum tc_setup_type type, void *type_data,
9538 		     void *data,
9539 		     void (*cleanup)(struct flow_block_cb *block_cb))
9540 {
9541 	switch (type) {
9542 	case TC_SETUP_BLOCK:
9543 		return ice_indr_setup_tc_block(netdev, sch, cb_priv, type_data,
9544 					       data, cleanup);
9545 
9546 	default:
9547 		return -EOPNOTSUPP;
9548 	}
9549 }
9550 
9551 /**
9552  * ice_open - Called when a network interface becomes active
9553  * @netdev: network interface device structure
9554  *
9555  * The open entry point is called when a network interface is made
9556  * active by the system (IFF_UP). At this point all resources needed
9557  * for transmit and receive operations are allocated, the interrupt
9558  * handler is registered with the OS, the netdev watchdog is enabled,
9559  * and the stack is notified that the interface is ready.
9560  *
9561  * Returns 0 on success, negative value on failure
9562  */
9563 int ice_open(struct net_device *netdev)
9564 {
9565 	struct ice_pf *pf = ice_netdev_to_pf(netdev);
9566 
9567 	if (ice_is_reset_in_progress(pf->state)) {
9568 		netdev_err(netdev, "can't open net device while reset is in progress");
9569 		return -EBUSY;
9570 	}
9571 
9572 	return ice_open_internal(netdev);
9573 }
9574 
9575 /**
9576  * ice_open_internal - Called when a network interface becomes active
9577  * @netdev: network interface device structure
9578  *
9579  * Internal ice_open implementation. Should not be used directly except for ice_open and reset
9580  * handling routine
9581  *
9582  * Returns 0 on success, negative value on failure
9583  */
9584 int ice_open_internal(struct net_device *netdev)
9585 {
9586 	struct ice_netdev_priv *np = netdev_priv(netdev);
9587 	struct ice_vsi *vsi = np->vsi;
9588 	struct ice_pf *pf = vsi->back;
9589 	struct ice_port_info *pi;
9590 	int err;
9591 
9592 	if (test_bit(ICE_NEEDS_RESTART, pf->state)) {
9593 		netdev_err(netdev, "driver needs to be unloaded and reloaded\n");
9594 		return -EIO;
9595 	}
9596 
9597 	netif_carrier_off(netdev);
9598 
9599 	pi = vsi->port_info;
9600 	err = ice_update_link_info(pi);
9601 	if (err) {
9602 		netdev_err(netdev, "Failed to get link info, error %d\n", err);
9603 		return err;
9604 	}
9605 
9606 	ice_check_link_cfg_err(pf, pi->phy.link_info.link_cfg_err);
9607 
9608 	/* Set PHY if there is media, otherwise, turn off PHY */
9609 	if (pi->phy.link_info.link_info & ICE_AQ_MEDIA_AVAILABLE) {
9610 		clear_bit(ICE_FLAG_NO_MEDIA, pf->flags);
9611 		if (!test_bit(ICE_PHY_INIT_COMPLETE, pf->state)) {
9612 			err = ice_init_phy_user_cfg(pi);
9613 			if (err) {
9614 				netdev_err(netdev, "Failed to initialize PHY settings, error %d\n",
9615 					   err);
9616 				return err;
9617 			}
9618 		}
9619 
9620 		err = ice_configure_phy(vsi);
9621 		if (err) {
9622 			netdev_err(netdev, "Failed to set physical link up, error %d\n",
9623 				   err);
9624 			return err;
9625 		}
9626 	} else {
9627 		set_bit(ICE_FLAG_NO_MEDIA, pf->flags);
9628 		ice_set_link(vsi, false);
9629 	}
9630 
9631 	err = ice_vsi_open(vsi);
9632 	if (err)
9633 		netdev_err(netdev, "Failed to open VSI 0x%04X on switch 0x%04X\n",
9634 			   vsi->vsi_num, vsi->vsw->sw_id);
9635 
9636 	/* Update existing tunnels information */
9637 	udp_tunnel_get_rx_info(netdev);
9638 
9639 	return err;
9640 }
9641 
9642 /**
9643  * ice_stop - Disables a network interface
9644  * @netdev: network interface device structure
9645  *
9646  * The stop entry point is called when an interface is de-activated by the OS,
9647  * and the netdevice enters the DOWN state. The hardware is still under the
9648  * driver's control, but the netdev interface is disabled.
9649  *
9650  * Returns success only - not allowed to fail
9651  */
9652 int ice_stop(struct net_device *netdev)
9653 {
9654 	struct ice_netdev_priv *np = netdev_priv(netdev);
9655 	struct ice_vsi *vsi = np->vsi;
9656 	struct ice_pf *pf = vsi->back;
9657 
9658 	if (ice_is_reset_in_progress(pf->state)) {
9659 		netdev_err(netdev, "can't stop net device while reset is in progress");
9660 		return -EBUSY;
9661 	}
9662 
9663 	if (test_bit(ICE_FLAG_LINK_DOWN_ON_CLOSE_ENA, vsi->back->flags)) {
9664 		int link_err = ice_force_phys_link_state(vsi, false);
9665 
9666 		if (link_err) {
9667 			if (link_err == -ENOMEDIUM)
9668 				netdev_info(vsi->netdev, "Skipping link reconfig - no media attached, VSI %d\n",
9669 					    vsi->vsi_num);
9670 			else
9671 				netdev_err(vsi->netdev, "Failed to set physical link down, VSI %d error %d\n",
9672 					   vsi->vsi_num, link_err);
9673 
9674 			ice_vsi_close(vsi);
9675 			return -EIO;
9676 		}
9677 	}
9678 
9679 	ice_vsi_close(vsi);
9680 
9681 	return 0;
9682 }
9683 
9684 /**
9685  * ice_features_check - Validate encapsulated packet conforms to limits
9686  * @skb: skb buffer
9687  * @netdev: This port's netdev
9688  * @features: Offload features that the stack believes apply
9689  */
9690 static netdev_features_t
9691 ice_features_check(struct sk_buff *skb,
9692 		   struct net_device __always_unused *netdev,
9693 		   netdev_features_t features)
9694 {
9695 	bool gso = skb_is_gso(skb);
9696 	size_t len;
9697 
9698 	/* No point in doing any of this if neither checksum nor GSO are
9699 	 * being requested for this frame. We can rule out both by just
9700 	 * checking for CHECKSUM_PARTIAL
9701 	 */
9702 	if (skb->ip_summed != CHECKSUM_PARTIAL)
9703 		return features;
9704 
9705 	/* We cannot support GSO if the MSS is going to be less than
9706 	 * 64 bytes. If it is then we need to drop support for GSO.
9707 	 */
9708 	if (gso && (skb_shinfo(skb)->gso_size < ICE_TXD_CTX_MIN_MSS))
9709 		features &= ~NETIF_F_GSO_MASK;
9710 
9711 	len = skb_network_offset(skb);
9712 	if (len > ICE_TXD_MACLEN_MAX || len & 0x1)
9713 		goto out_rm_features;
9714 
9715 	len = skb_network_header_len(skb);
9716 	if (len > ICE_TXD_IPLEN_MAX || len & 0x1)
9717 		goto out_rm_features;
9718 
9719 	if (skb->encapsulation) {
9720 		/* this must work for VXLAN frames AND IPIP/SIT frames, and in
9721 		 * the case of IPIP frames, the transport header pointer is
9722 		 * after the inner header! So check to make sure that this
9723 		 * is a GRE or UDP_TUNNEL frame before doing that math.
9724 		 */
9725 		if (gso && (skb_shinfo(skb)->gso_type &
9726 			    (SKB_GSO_GRE | SKB_GSO_UDP_TUNNEL))) {
9727 			len = skb_inner_network_header(skb) -
9728 			      skb_transport_header(skb);
9729 			if (len > ICE_TXD_L4LEN_MAX || len & 0x1)
9730 				goto out_rm_features;
9731 		}
9732 
9733 		len = skb_inner_network_header_len(skb);
9734 		if (len > ICE_TXD_IPLEN_MAX || len & 0x1)
9735 			goto out_rm_features;
9736 	}
9737 
9738 	return features;
9739 out_rm_features:
9740 	return features & ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
9741 }
9742 
9743 static const struct net_device_ops ice_netdev_safe_mode_ops = {
9744 	.ndo_open = ice_open,
9745 	.ndo_stop = ice_stop,
9746 	.ndo_start_xmit = ice_start_xmit,
9747 	.ndo_set_mac_address = ice_set_mac_address,
9748 	.ndo_validate_addr = eth_validate_addr,
9749 	.ndo_change_mtu = ice_change_mtu,
9750 	.ndo_get_stats64 = ice_get_stats64,
9751 	.ndo_tx_timeout = ice_tx_timeout,
9752 	.ndo_bpf = ice_xdp_safe_mode,
9753 };
9754 
9755 static const struct net_device_ops ice_netdev_ops = {
9756 	.ndo_open = ice_open,
9757 	.ndo_stop = ice_stop,
9758 	.ndo_start_xmit = ice_start_xmit,
9759 	.ndo_select_queue = ice_select_queue,
9760 	.ndo_features_check = ice_features_check,
9761 	.ndo_fix_features = ice_fix_features,
9762 	.ndo_set_rx_mode = ice_set_rx_mode,
9763 	.ndo_set_mac_address = ice_set_mac_address,
9764 	.ndo_validate_addr = eth_validate_addr,
9765 	.ndo_change_mtu = ice_change_mtu,
9766 	.ndo_get_stats64 = ice_get_stats64,
9767 	.ndo_set_tx_maxrate = ice_set_tx_maxrate,
9768 	.ndo_set_vf_spoofchk = ice_set_vf_spoofchk,
9769 	.ndo_set_vf_mac = ice_set_vf_mac,
9770 	.ndo_get_vf_config = ice_get_vf_cfg,
9771 	.ndo_set_vf_trust = ice_set_vf_trust,
9772 	.ndo_set_vf_vlan = ice_set_vf_port_vlan,
9773 	.ndo_set_vf_link_state = ice_set_vf_link_state,
9774 	.ndo_get_vf_stats = ice_get_vf_stats,
9775 	.ndo_set_vf_rate = ice_set_vf_bw,
9776 	.ndo_vlan_rx_add_vid = ice_vlan_rx_add_vid,
9777 	.ndo_vlan_rx_kill_vid = ice_vlan_rx_kill_vid,
9778 	.ndo_setup_tc = ice_setup_tc,
9779 	.ndo_set_features = ice_set_features,
9780 	.ndo_bridge_getlink = ice_bridge_getlink,
9781 	.ndo_bridge_setlink = ice_bridge_setlink,
9782 	.ndo_fdb_add = ice_fdb_add,
9783 	.ndo_fdb_del = ice_fdb_del,
9784 #ifdef CONFIG_RFS_ACCEL
9785 	.ndo_rx_flow_steer = ice_rx_flow_steer,
9786 #endif
9787 	.ndo_tx_timeout = ice_tx_timeout,
9788 	.ndo_bpf = ice_xdp,
9789 	.ndo_xdp_xmit = ice_xdp_xmit,
9790 	.ndo_xsk_wakeup = ice_xsk_wakeup,
9791 	.ndo_hwtstamp_get = ice_ptp_hwtstamp_get,
9792 	.ndo_hwtstamp_set = ice_ptp_hwtstamp_set,
9793 };
9794