Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018, Intel Corporation. */
3
4#include "ice.h"
5#include "ice_base.h"
6#include "ice_flow.h"
7#include "ice_lib.h"
8#include "ice_fltr.h"
9#include "ice_dcb_lib.h"
10#include "ice_type.h"
11#include "ice_vsi_vlan_ops.h"
12
13/**
14 * ice_vsi_type_str - maps VSI type enum to string equivalents
15 * @vsi_type: VSI type enum
16 */
17const char *ice_vsi_type_str(enum ice_vsi_type vsi_type)
18{
19 switch (vsi_type) {
20 case ICE_VSI_PF:
21 return "ICE_VSI_PF";
22 case ICE_VSI_VF:
23 return "ICE_VSI_VF";
24 case ICE_VSI_SF:
25 return "ICE_VSI_SF";
26 case ICE_VSI_CTRL:
27 return "ICE_VSI_CTRL";
28 case ICE_VSI_CHNL:
29 return "ICE_VSI_CHNL";
30 case ICE_VSI_LB:
31 return "ICE_VSI_LB";
32 default:
33 return "unknown";
34 }
35}
36
37/**
38 * ice_vsi_ctrl_all_rx_rings - Start or stop a VSI's Rx rings
39 * @vsi: the VSI being configured
40 * @ena: start or stop the Rx rings
41 *
42 * First enable/disable all of the Rx rings, flush any remaining writes, and
43 * then verify that they have all been enabled/disabled successfully. This will
44 * let all of the register writes complete when enabling/disabling the Rx rings
45 * before waiting for the change in hardware to complete.
46 */
47static int ice_vsi_ctrl_all_rx_rings(struct ice_vsi *vsi, bool ena)
48{
49 int ret = 0;
50 u16 i;
51
52 ice_for_each_rxq(vsi, i)
53 ice_vsi_ctrl_one_rx_ring(vsi, ena, i, false);
54
55 ice_flush(&vsi->back->hw);
56
57 ice_for_each_rxq(vsi, i) {
58 ret = ice_vsi_wait_one_rx_ring(vsi, ena, i);
59 if (ret)
60 break;
61 }
62
63 return ret;
64}
65
66/**
67 * ice_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the VSI
68 * @vsi: VSI pointer
69 *
70 * On error: returns error code (negative)
71 * On success: returns 0
72 */
73static int ice_vsi_alloc_arrays(struct ice_vsi *vsi)
74{
75 struct ice_pf *pf = vsi->back;
76 struct device *dev;
77
78 dev = ice_pf_to_dev(pf);
79 if (vsi->type == ICE_VSI_CHNL)
80 return 0;
81
82 /* allocate memory for both Tx and Rx ring pointers */
83 vsi->tx_rings = devm_kcalloc(dev, vsi->alloc_txq,
84 sizeof(*vsi->tx_rings), GFP_KERNEL);
85 if (!vsi->tx_rings)
86 return -ENOMEM;
87
88 vsi->rx_rings = devm_kcalloc(dev, vsi->alloc_rxq,
89 sizeof(*vsi->rx_rings), GFP_KERNEL);
90 if (!vsi->rx_rings)
91 goto err_rings;
92
93 /* txq_map needs to have enough space to track both Tx (stack) rings
94 * and XDP rings; at this point vsi->num_xdp_txq might not be set,
95 * so use num_possible_cpus() as we want to always provide XDP ring
96 * per CPU, regardless of queue count settings from user that might
97 * have come from ethtool's set_channels() callback;
98 */
99 vsi->txq_map = devm_kcalloc(dev, (vsi->alloc_txq + num_possible_cpus()),
100 sizeof(*vsi->txq_map), GFP_KERNEL);
101
102 if (!vsi->txq_map)
103 goto err_txq_map;
104
105 vsi->rxq_map = devm_kcalloc(dev, vsi->alloc_rxq,
106 sizeof(*vsi->rxq_map), GFP_KERNEL);
107 if (!vsi->rxq_map)
108 goto err_rxq_map;
109
110 /* There is no need to allocate q_vectors for a loopback VSI. */
111 if (vsi->type == ICE_VSI_LB)
112 return 0;
113
114 /* allocate memory for q_vector pointers */
115 vsi->q_vectors = devm_kcalloc(dev, vsi->num_q_vectors,
116 sizeof(*vsi->q_vectors), GFP_KERNEL);
117 if (!vsi->q_vectors)
118 goto err_vectors;
119
120 return 0;
121
122err_vectors:
123 devm_kfree(dev, vsi->rxq_map);
124err_rxq_map:
125 devm_kfree(dev, vsi->txq_map);
126err_txq_map:
127 devm_kfree(dev, vsi->rx_rings);
128err_rings:
129 devm_kfree(dev, vsi->tx_rings);
130 return -ENOMEM;
131}
132
133/**
134 * ice_vsi_set_num_desc - Set number of descriptors for queues on this VSI
135 * @vsi: the VSI being configured
136 */
137static void ice_vsi_set_num_desc(struct ice_vsi *vsi)
138{
139 switch (vsi->type) {
140 case ICE_VSI_PF:
141 case ICE_VSI_SF:
142 case ICE_VSI_CTRL:
143 case ICE_VSI_LB:
144 /* a user could change the values of num_[tr]x_desc using
145 * ethtool -G so we should keep those values instead of
146 * overwriting them with the defaults.
147 */
148 if (!vsi->num_rx_desc)
149 vsi->num_rx_desc = ICE_DFLT_NUM_RX_DESC;
150 if (!vsi->num_tx_desc)
151 vsi->num_tx_desc = ICE_DFLT_NUM_TX_DESC;
152 break;
153 default:
154 dev_dbg(ice_pf_to_dev(vsi->back), "Not setting number of Tx/Rx descriptors for VSI type %d\n",
155 vsi->type);
156 break;
157 }
158}
159
160/**
161 * ice_vsi_set_num_qs - Set number of queues, descriptors and vectors for a VSI
162 * @vsi: the VSI being configured
163 *
164 * Return 0 on success and a negative value on error
165 */
166static void ice_vsi_set_num_qs(struct ice_vsi *vsi)
167{
168 enum ice_vsi_type vsi_type = vsi->type;
169 struct ice_pf *pf = vsi->back;
170 struct ice_vf *vf = vsi->vf;
171
172 if (WARN_ON(vsi_type == ICE_VSI_VF && !vf))
173 return;
174
175 switch (vsi_type) {
176 case ICE_VSI_PF:
177 if (vsi->req_txq) {
178 vsi->alloc_txq = vsi->req_txq;
179 vsi->num_txq = vsi->req_txq;
180 } else {
181 vsi->alloc_txq = min3(pf->num_lan_msix,
182 ice_get_avail_txq_count(pf),
183 (u16)num_online_cpus());
184 }
185
186 pf->num_lan_tx = vsi->alloc_txq;
187
188 /* only 1 Rx queue unless RSS is enabled */
189 if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
190 vsi->alloc_rxq = 1;
191 } else {
192 if (vsi->req_rxq) {
193 vsi->alloc_rxq = vsi->req_rxq;
194 vsi->num_rxq = vsi->req_rxq;
195 } else {
196 vsi->alloc_rxq = min3(pf->num_lan_msix,
197 ice_get_avail_rxq_count(pf),
198 (u16)num_online_cpus());
199 }
200 }
201
202 pf->num_lan_rx = vsi->alloc_rxq;
203
204 vsi->num_q_vectors = min_t(int, pf->num_lan_msix,
205 max_t(int, vsi->alloc_rxq,
206 vsi->alloc_txq));
207 break;
208 case ICE_VSI_SF:
209 vsi->alloc_txq = 1;
210 vsi->alloc_rxq = 1;
211 vsi->num_q_vectors = 1;
212 vsi->irq_dyn_alloc = true;
213 break;
214 case ICE_VSI_VF:
215 if (vf->num_req_qs)
216 vf->num_vf_qs = vf->num_req_qs;
217 vsi->alloc_txq = vf->num_vf_qs;
218 vsi->alloc_rxq = vf->num_vf_qs;
219 /* pf->vfs.num_msix_per includes (VF miscellaneous vector +
220 * data queue interrupts). Since vsi->num_q_vectors is number
221 * of queues vectors, subtract 1 (ICE_NONQ_VECS_VF) from the
222 * original vector count
223 */
224 vsi->num_q_vectors = vf->num_msix - ICE_NONQ_VECS_VF;
225 break;
226 case ICE_VSI_CTRL:
227 vsi->alloc_txq = 1;
228 vsi->alloc_rxq = 1;
229 vsi->num_q_vectors = 1;
230 break;
231 case ICE_VSI_CHNL:
232 vsi->alloc_txq = 0;
233 vsi->alloc_rxq = 0;
234 break;
235 case ICE_VSI_LB:
236 vsi->alloc_txq = 1;
237 vsi->alloc_rxq = 1;
238 break;
239 default:
240 dev_warn(ice_pf_to_dev(pf), "Unknown VSI type %d\n", vsi_type);
241 break;
242 }
243
244 ice_vsi_set_num_desc(vsi);
245}
246
247/**
248 * ice_get_free_slot - get the next non-NULL location index in array
249 * @array: array to search
250 * @size: size of the array
251 * @curr: last known occupied index to be used as a search hint
252 *
253 * void * is being used to keep the functionality generic. This lets us use this
254 * function on any array of pointers.
255 */
256static int ice_get_free_slot(void *array, int size, int curr)
257{
258 int **tmp_array = (int **)array;
259 int next;
260
261 if (curr < (size - 1) && !tmp_array[curr + 1]) {
262 next = curr + 1;
263 } else {
264 int i = 0;
265
266 while ((i < size) && (tmp_array[i]))
267 i++;
268 if (i == size)
269 next = ICE_NO_VSI;
270 else
271 next = i;
272 }
273 return next;
274}
275
276/**
277 * ice_vsi_delete_from_hw - delete a VSI from the switch
278 * @vsi: pointer to VSI being removed
279 */
280static void ice_vsi_delete_from_hw(struct ice_vsi *vsi)
281{
282 struct ice_pf *pf = vsi->back;
283 struct ice_vsi_ctx *ctxt;
284 int status;
285
286 ice_fltr_remove_all(vsi);
287 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
288 if (!ctxt)
289 return;
290
291 if (vsi->type == ICE_VSI_VF)
292 ctxt->vf_num = vsi->vf->vf_id;
293 ctxt->vsi_num = vsi->vsi_num;
294
295 memcpy(&ctxt->info, &vsi->info, sizeof(ctxt->info));
296
297 status = ice_free_vsi(&pf->hw, vsi->idx, ctxt, false, NULL);
298 if (status)
299 dev_err(ice_pf_to_dev(pf), "Failed to delete VSI %i in FW - error: %d\n",
300 vsi->vsi_num, status);
301
302 kfree(ctxt);
303}
304
305/**
306 * ice_vsi_free_arrays - De-allocate queue and vector pointer arrays for the VSI
307 * @vsi: pointer to VSI being cleared
308 */
309static void ice_vsi_free_arrays(struct ice_vsi *vsi)
310{
311 struct ice_pf *pf = vsi->back;
312 struct device *dev;
313
314 dev = ice_pf_to_dev(pf);
315
316 /* free the ring and vector containers */
317 devm_kfree(dev, vsi->q_vectors);
318 vsi->q_vectors = NULL;
319 devm_kfree(dev, vsi->tx_rings);
320 vsi->tx_rings = NULL;
321 devm_kfree(dev, vsi->rx_rings);
322 vsi->rx_rings = NULL;
323 devm_kfree(dev, vsi->txq_map);
324 vsi->txq_map = NULL;
325 devm_kfree(dev, vsi->rxq_map);
326 vsi->rxq_map = NULL;
327}
328
329/**
330 * ice_vsi_free_stats - Free the ring statistics structures
331 * @vsi: VSI pointer
332 */
333static void ice_vsi_free_stats(struct ice_vsi *vsi)
334{
335 struct ice_vsi_stats *vsi_stat;
336 struct ice_pf *pf = vsi->back;
337 int i;
338
339 if (vsi->type == ICE_VSI_CHNL)
340 return;
341 if (!pf->vsi_stats)
342 return;
343
344 vsi_stat = pf->vsi_stats[vsi->idx];
345 if (!vsi_stat)
346 return;
347
348 ice_for_each_alloc_txq(vsi, i) {
349 if (vsi_stat->tx_ring_stats[i]) {
350 kfree_rcu(vsi_stat->tx_ring_stats[i], rcu);
351 WRITE_ONCE(vsi_stat->tx_ring_stats[i], NULL);
352 }
353 }
354
355 ice_for_each_alloc_rxq(vsi, i) {
356 if (vsi_stat->rx_ring_stats[i]) {
357 kfree_rcu(vsi_stat->rx_ring_stats[i], rcu);
358 WRITE_ONCE(vsi_stat->rx_ring_stats[i], NULL);
359 }
360 }
361
362 kfree(vsi_stat->tx_ring_stats);
363 kfree(vsi_stat->rx_ring_stats);
364 kfree(vsi_stat);
365 pf->vsi_stats[vsi->idx] = NULL;
366}
367
368/**
369 * ice_vsi_alloc_ring_stats - Allocates Tx and Rx ring stats for the VSI
370 * @vsi: VSI which is having stats allocated
371 */
372static int ice_vsi_alloc_ring_stats(struct ice_vsi *vsi)
373{
374 struct ice_ring_stats **tx_ring_stats;
375 struct ice_ring_stats **rx_ring_stats;
376 struct ice_vsi_stats *vsi_stats;
377 struct ice_pf *pf = vsi->back;
378 u16 i;
379
380 vsi_stats = pf->vsi_stats[vsi->idx];
381 tx_ring_stats = vsi_stats->tx_ring_stats;
382 rx_ring_stats = vsi_stats->rx_ring_stats;
383
384 /* Allocate Tx ring stats */
385 ice_for_each_alloc_txq(vsi, i) {
386 struct ice_ring_stats *ring_stats;
387 struct ice_tx_ring *ring;
388
389 ring = vsi->tx_rings[i];
390 ring_stats = tx_ring_stats[i];
391
392 if (!ring_stats) {
393 ring_stats = kzalloc(sizeof(*ring_stats), GFP_KERNEL);
394 if (!ring_stats)
395 goto err_out;
396
397 WRITE_ONCE(tx_ring_stats[i], ring_stats);
398 }
399
400 ring->ring_stats = ring_stats;
401 }
402
403 /* Allocate Rx ring stats */
404 ice_for_each_alloc_rxq(vsi, i) {
405 struct ice_ring_stats *ring_stats;
406 struct ice_rx_ring *ring;
407
408 ring = vsi->rx_rings[i];
409 ring_stats = rx_ring_stats[i];
410
411 if (!ring_stats) {
412 ring_stats = kzalloc(sizeof(*ring_stats), GFP_KERNEL);
413 if (!ring_stats)
414 goto err_out;
415
416 WRITE_ONCE(rx_ring_stats[i], ring_stats);
417 }
418
419 ring->ring_stats = ring_stats;
420 }
421
422 return 0;
423
424err_out:
425 ice_vsi_free_stats(vsi);
426 return -ENOMEM;
427}
428
429/**
430 * ice_vsi_free - clean up and deallocate the provided VSI
431 * @vsi: pointer to VSI being cleared
432 *
433 * This deallocates the VSI's queue resources, removes it from the PF's
434 * VSI array if necessary, and deallocates the VSI
435 */
436void ice_vsi_free(struct ice_vsi *vsi)
437{
438 struct ice_pf *pf = NULL;
439 struct device *dev;
440
441 if (!vsi || !vsi->back)
442 return;
443
444 pf = vsi->back;
445 dev = ice_pf_to_dev(pf);
446
447 if (!pf->vsi[vsi->idx] || pf->vsi[vsi->idx] != vsi) {
448 dev_dbg(dev, "vsi does not exist at pf->vsi[%d]\n", vsi->idx);
449 return;
450 }
451
452 mutex_lock(&pf->sw_mutex);
453 /* updates the PF for this cleared VSI */
454
455 pf->vsi[vsi->idx] = NULL;
456 pf->next_vsi = vsi->idx;
457
458 ice_vsi_free_stats(vsi);
459 ice_vsi_free_arrays(vsi);
460 mutex_destroy(&vsi->xdp_state_lock);
461 mutex_unlock(&pf->sw_mutex);
462 devm_kfree(dev, vsi);
463}
464
465void ice_vsi_delete(struct ice_vsi *vsi)
466{
467 ice_vsi_delete_from_hw(vsi);
468 ice_vsi_free(vsi);
469}
470
471/**
472 * ice_msix_clean_ctrl_vsi - MSIX mode interrupt handler for ctrl VSI
473 * @irq: interrupt number
474 * @data: pointer to a q_vector
475 */
476static irqreturn_t ice_msix_clean_ctrl_vsi(int __always_unused irq, void *data)
477{
478 struct ice_q_vector *q_vector = (struct ice_q_vector *)data;
479
480 if (!q_vector->tx.tx_ring)
481 return IRQ_HANDLED;
482
483#define FDIR_RX_DESC_CLEAN_BUDGET 64
484 ice_clean_rx_irq(q_vector->rx.rx_ring, FDIR_RX_DESC_CLEAN_BUDGET);
485 ice_clean_ctrl_tx_irq(q_vector->tx.tx_ring);
486
487 return IRQ_HANDLED;
488}
489
490/**
491 * ice_msix_clean_rings - MSIX mode Interrupt Handler
492 * @irq: interrupt number
493 * @data: pointer to a q_vector
494 */
495static irqreturn_t ice_msix_clean_rings(int __always_unused irq, void *data)
496{
497 struct ice_q_vector *q_vector = (struct ice_q_vector *)data;
498
499 if (!q_vector->tx.tx_ring && !q_vector->rx.rx_ring)
500 return IRQ_HANDLED;
501
502 q_vector->total_events++;
503
504 napi_schedule(&q_vector->napi);
505
506 return IRQ_HANDLED;
507}
508
509/**
510 * ice_vsi_alloc_stat_arrays - Allocate statistics arrays
511 * @vsi: VSI pointer
512 */
513static int ice_vsi_alloc_stat_arrays(struct ice_vsi *vsi)
514{
515 struct ice_vsi_stats *vsi_stat;
516 struct ice_pf *pf = vsi->back;
517
518 if (vsi->type == ICE_VSI_CHNL)
519 return 0;
520 if (!pf->vsi_stats)
521 return -ENOENT;
522
523 if (pf->vsi_stats[vsi->idx])
524 /* realloc will happen in rebuild path */
525 return 0;
526
527 vsi_stat = kzalloc(sizeof(*vsi_stat), GFP_KERNEL);
528 if (!vsi_stat)
529 return -ENOMEM;
530
531 vsi_stat->tx_ring_stats =
532 kcalloc(vsi->alloc_txq, sizeof(*vsi_stat->tx_ring_stats),
533 GFP_KERNEL);
534 if (!vsi_stat->tx_ring_stats)
535 goto err_alloc_tx;
536
537 vsi_stat->rx_ring_stats =
538 kcalloc(vsi->alloc_rxq, sizeof(*vsi_stat->rx_ring_stats),
539 GFP_KERNEL);
540 if (!vsi_stat->rx_ring_stats)
541 goto err_alloc_rx;
542
543 pf->vsi_stats[vsi->idx] = vsi_stat;
544
545 return 0;
546
547err_alloc_rx:
548 kfree(vsi_stat->rx_ring_stats);
549err_alloc_tx:
550 kfree(vsi_stat->tx_ring_stats);
551 kfree(vsi_stat);
552 pf->vsi_stats[vsi->idx] = NULL;
553 return -ENOMEM;
554}
555
556/**
557 * ice_vsi_alloc_def - set default values for already allocated VSI
558 * @vsi: ptr to VSI
559 * @ch: ptr to channel
560 */
561static int
562ice_vsi_alloc_def(struct ice_vsi *vsi, struct ice_channel *ch)
563{
564 if (vsi->type != ICE_VSI_CHNL) {
565 ice_vsi_set_num_qs(vsi);
566 if (ice_vsi_alloc_arrays(vsi))
567 return -ENOMEM;
568 }
569
570 switch (vsi->type) {
571 case ICE_VSI_PF:
572 case ICE_VSI_SF:
573 /* Setup default MSIX irq handler for VSI */
574 vsi->irq_handler = ice_msix_clean_rings;
575 break;
576 case ICE_VSI_CTRL:
577 /* Setup ctrl VSI MSIX irq handler */
578 vsi->irq_handler = ice_msix_clean_ctrl_vsi;
579 break;
580 case ICE_VSI_CHNL:
581 if (!ch)
582 return -EINVAL;
583
584 vsi->num_rxq = ch->num_rxq;
585 vsi->num_txq = ch->num_txq;
586 vsi->next_base_q = ch->base_q;
587 break;
588 case ICE_VSI_VF:
589 case ICE_VSI_LB:
590 break;
591 default:
592 ice_vsi_free_arrays(vsi);
593 return -EINVAL;
594 }
595
596 return 0;
597}
598
599/**
600 * ice_vsi_alloc - Allocates the next available struct VSI in the PF
601 * @pf: board private structure
602 *
603 * Reserves a VSI index from the PF and allocates an empty VSI structure
604 * without a type. The VSI structure must later be initialized by calling
605 * ice_vsi_cfg().
606 *
607 * returns a pointer to a VSI on success, NULL on failure.
608 */
609struct ice_vsi *ice_vsi_alloc(struct ice_pf *pf)
610{
611 struct device *dev = ice_pf_to_dev(pf);
612 struct ice_vsi *vsi = NULL;
613
614 /* Need to protect the allocation of the VSIs at the PF level */
615 mutex_lock(&pf->sw_mutex);
616
617 /* If we have already allocated our maximum number of VSIs,
618 * pf->next_vsi will be ICE_NO_VSI. If not, pf->next_vsi index
619 * is available to be populated
620 */
621 if (pf->next_vsi == ICE_NO_VSI) {
622 dev_dbg(dev, "out of VSI slots!\n");
623 goto unlock_pf;
624 }
625
626 vsi = devm_kzalloc(dev, sizeof(*vsi), GFP_KERNEL);
627 if (!vsi)
628 goto unlock_pf;
629
630 vsi->back = pf;
631 set_bit(ICE_VSI_DOWN, vsi->state);
632
633 /* fill slot and make note of the index */
634 vsi->idx = pf->next_vsi;
635 pf->vsi[pf->next_vsi] = vsi;
636
637 /* prepare pf->next_vsi for next use */
638 pf->next_vsi = ice_get_free_slot(pf->vsi, pf->num_alloc_vsi,
639 pf->next_vsi);
640
641 mutex_init(&vsi->xdp_state_lock);
642
643unlock_pf:
644 mutex_unlock(&pf->sw_mutex);
645 return vsi;
646}
647
648/**
649 * ice_alloc_fd_res - Allocate FD resource for a VSI
650 * @vsi: pointer to the ice_vsi
651 *
652 * This allocates the FD resources
653 *
654 * Returns 0 on success, -EPERM on no-op or -EIO on failure
655 */
656static int ice_alloc_fd_res(struct ice_vsi *vsi)
657{
658 struct ice_pf *pf = vsi->back;
659 u32 g_val, b_val;
660
661 /* Flow Director filters are only allocated/assigned to the PF VSI or
662 * CHNL VSI which passes the traffic. The CTRL VSI is only used to
663 * add/delete filters so resources are not allocated to it
664 */
665 if (!test_bit(ICE_FLAG_FD_ENA, pf->flags))
666 return -EPERM;
667
668 if (!(vsi->type == ICE_VSI_PF || vsi->type == ICE_VSI_VF ||
669 vsi->type == ICE_VSI_CHNL))
670 return -EPERM;
671
672 /* FD filters from guaranteed pool per VSI */
673 g_val = pf->hw.func_caps.fd_fltr_guar;
674 if (!g_val)
675 return -EPERM;
676
677 /* FD filters from best effort pool */
678 b_val = pf->hw.func_caps.fd_fltr_best_effort;
679 if (!b_val)
680 return -EPERM;
681
682 /* PF main VSI gets only 64 FD resources from guaranteed pool
683 * when ADQ is configured.
684 */
685#define ICE_PF_VSI_GFLTR 64
686
687 /* determine FD filter resources per VSI from shared(best effort) and
688 * dedicated pool
689 */
690 if (vsi->type == ICE_VSI_PF) {
691 vsi->num_gfltr = g_val;
692 /* if MQPRIO is configured, main VSI doesn't get all FD
693 * resources from guaranteed pool. PF VSI gets 64 FD resources
694 */
695 if (test_bit(ICE_FLAG_TC_MQPRIO, pf->flags)) {
696 if (g_val < ICE_PF_VSI_GFLTR)
697 return -EPERM;
698 /* allow bare minimum entries for PF VSI */
699 vsi->num_gfltr = ICE_PF_VSI_GFLTR;
700 }
701
702 /* each VSI gets same "best_effort" quota */
703 vsi->num_bfltr = b_val;
704 } else if (vsi->type == ICE_VSI_VF) {
705 vsi->num_gfltr = 0;
706
707 /* each VSI gets same "best_effort" quota */
708 vsi->num_bfltr = b_val;
709 } else {
710 struct ice_vsi *main_vsi;
711 int numtc;
712
713 main_vsi = ice_get_main_vsi(pf);
714 if (!main_vsi)
715 return -EPERM;
716
717 if (!main_vsi->all_numtc)
718 return -EINVAL;
719
720 /* figure out ADQ numtc */
721 numtc = main_vsi->all_numtc - ICE_CHNL_START_TC;
722
723 /* only one TC but still asking resources for channels,
724 * invalid config
725 */
726 if (numtc < ICE_CHNL_START_TC)
727 return -EPERM;
728
729 g_val -= ICE_PF_VSI_GFLTR;
730 /* channel VSIs gets equal share from guaranteed pool */
731 vsi->num_gfltr = g_val / numtc;
732
733 /* each VSI gets same "best_effort" quota */
734 vsi->num_bfltr = b_val;
735 }
736
737 return 0;
738}
739
740/**
741 * ice_vsi_get_qs - Assign queues from PF to VSI
742 * @vsi: the VSI to assign queues to
743 *
744 * Returns 0 on success and a negative value on error
745 */
746static int ice_vsi_get_qs(struct ice_vsi *vsi)
747{
748 struct ice_pf *pf = vsi->back;
749 struct ice_qs_cfg tx_qs_cfg = {
750 .qs_mutex = &pf->avail_q_mutex,
751 .pf_map = pf->avail_txqs,
752 .pf_map_size = pf->max_pf_txqs,
753 .q_count = vsi->alloc_txq,
754 .scatter_count = ICE_MAX_SCATTER_TXQS,
755 .vsi_map = vsi->txq_map,
756 .vsi_map_offset = 0,
757 .mapping_mode = ICE_VSI_MAP_CONTIG
758 };
759 struct ice_qs_cfg rx_qs_cfg = {
760 .qs_mutex = &pf->avail_q_mutex,
761 .pf_map = pf->avail_rxqs,
762 .pf_map_size = pf->max_pf_rxqs,
763 .q_count = vsi->alloc_rxq,
764 .scatter_count = ICE_MAX_SCATTER_RXQS,
765 .vsi_map = vsi->rxq_map,
766 .vsi_map_offset = 0,
767 .mapping_mode = ICE_VSI_MAP_CONTIG
768 };
769 int ret;
770
771 if (vsi->type == ICE_VSI_CHNL)
772 return 0;
773
774 ret = __ice_vsi_get_qs(&tx_qs_cfg);
775 if (ret)
776 return ret;
777 vsi->tx_mapping_mode = tx_qs_cfg.mapping_mode;
778
779 ret = __ice_vsi_get_qs(&rx_qs_cfg);
780 if (ret)
781 return ret;
782 vsi->rx_mapping_mode = rx_qs_cfg.mapping_mode;
783
784 return 0;
785}
786
787/**
788 * ice_vsi_put_qs - Release queues from VSI to PF
789 * @vsi: the VSI that is going to release queues
790 */
791static void ice_vsi_put_qs(struct ice_vsi *vsi)
792{
793 struct ice_pf *pf = vsi->back;
794 int i;
795
796 mutex_lock(&pf->avail_q_mutex);
797
798 ice_for_each_alloc_txq(vsi, i) {
799 clear_bit(vsi->txq_map[i], pf->avail_txqs);
800 vsi->txq_map[i] = ICE_INVAL_Q_INDEX;
801 }
802
803 ice_for_each_alloc_rxq(vsi, i) {
804 clear_bit(vsi->rxq_map[i], pf->avail_rxqs);
805 vsi->rxq_map[i] = ICE_INVAL_Q_INDEX;
806 }
807
808 mutex_unlock(&pf->avail_q_mutex);
809}
810
811/**
812 * ice_is_safe_mode
813 * @pf: pointer to the PF struct
814 *
815 * returns true if driver is in safe mode, false otherwise
816 */
817bool ice_is_safe_mode(struct ice_pf *pf)
818{
819 return !test_bit(ICE_FLAG_ADV_FEATURES, pf->flags);
820}
821
822/**
823 * ice_is_rdma_ena
824 * @pf: pointer to the PF struct
825 *
826 * returns true if RDMA is currently supported, false otherwise
827 */
828bool ice_is_rdma_ena(struct ice_pf *pf)
829{
830 return test_bit(ICE_FLAG_RDMA_ENA, pf->flags);
831}
832
833/**
834 * ice_vsi_clean_rss_flow_fld - Delete RSS configuration
835 * @vsi: the VSI being cleaned up
836 *
837 * This function deletes RSS input set for all flows that were configured
838 * for this VSI
839 */
840static void ice_vsi_clean_rss_flow_fld(struct ice_vsi *vsi)
841{
842 struct ice_pf *pf = vsi->back;
843 int status;
844
845 if (ice_is_safe_mode(pf))
846 return;
847
848 status = ice_rem_vsi_rss_cfg(&pf->hw, vsi->idx);
849 if (status)
850 dev_dbg(ice_pf_to_dev(pf), "ice_rem_vsi_rss_cfg failed for vsi = %d, error = %d\n",
851 vsi->vsi_num, status);
852}
853
854/**
855 * ice_rss_clean - Delete RSS related VSI structures and configuration
856 * @vsi: the VSI being removed
857 */
858static void ice_rss_clean(struct ice_vsi *vsi)
859{
860 struct ice_pf *pf = vsi->back;
861 struct device *dev;
862
863 dev = ice_pf_to_dev(pf);
864
865 devm_kfree(dev, vsi->rss_hkey_user);
866 devm_kfree(dev, vsi->rss_lut_user);
867
868 ice_vsi_clean_rss_flow_fld(vsi);
869 /* remove RSS replay list */
870 if (!ice_is_safe_mode(pf))
871 ice_rem_vsi_rss_list(&pf->hw, vsi->idx);
872}
873
874/**
875 * ice_vsi_set_rss_params - Setup RSS capabilities per VSI type
876 * @vsi: the VSI being configured
877 */
878static void ice_vsi_set_rss_params(struct ice_vsi *vsi)
879{
880 struct ice_hw_common_caps *cap;
881 struct ice_pf *pf = vsi->back;
882 u16 max_rss_size;
883
884 if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
885 vsi->rss_size = 1;
886 return;
887 }
888
889 cap = &pf->hw.func_caps.common_cap;
890 max_rss_size = BIT(cap->rss_table_entry_width);
891 switch (vsi->type) {
892 case ICE_VSI_CHNL:
893 case ICE_VSI_PF:
894 /* PF VSI will inherit RSS instance of PF */
895 vsi->rss_table_size = (u16)cap->rss_table_size;
896 if (vsi->type == ICE_VSI_CHNL)
897 vsi->rss_size = min_t(u16, vsi->num_rxq, max_rss_size);
898 else
899 vsi->rss_size = min_t(u16, num_online_cpus(),
900 max_rss_size);
901 vsi->rss_lut_type = ICE_LUT_PF;
902 break;
903 case ICE_VSI_SF:
904 vsi->rss_table_size = ICE_LUT_VSI_SIZE;
905 vsi->rss_size = min_t(u16, num_online_cpus(), max_rss_size);
906 vsi->rss_lut_type = ICE_LUT_VSI;
907 break;
908 case ICE_VSI_VF:
909 /* VF VSI will get a small RSS table.
910 * For VSI_LUT, LUT size should be set to 64 bytes.
911 */
912 vsi->rss_table_size = ICE_LUT_VSI_SIZE;
913 vsi->rss_size = ICE_MAX_RSS_QS_PER_VF;
914 vsi->rss_lut_type = ICE_LUT_VSI;
915 break;
916 case ICE_VSI_LB:
917 break;
918 default:
919 dev_dbg(ice_pf_to_dev(pf), "Unsupported VSI type %s\n",
920 ice_vsi_type_str(vsi->type));
921 break;
922 }
923}
924
925/**
926 * ice_set_dflt_vsi_ctx - Set default VSI context before adding a VSI
927 * @hw: HW structure used to determine the VLAN mode of the device
928 * @ctxt: the VSI context being set
929 *
930 * This initializes a default VSI context for all sections except the Queues.
931 */
932static void ice_set_dflt_vsi_ctx(struct ice_hw *hw, struct ice_vsi_ctx *ctxt)
933{
934 u32 table = 0;
935
936 memset(&ctxt->info, 0, sizeof(ctxt->info));
937 /* VSI's should be allocated from shared pool */
938 ctxt->alloc_from_pool = true;
939 /* Src pruning enabled by default */
940 ctxt->info.sw_flags = ICE_AQ_VSI_SW_FLAG_SRC_PRUNE;
941 /* Traffic from VSI can be sent to LAN */
942 ctxt->info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
943 /* allow all untagged/tagged packets by default on Tx */
944 ctxt->info.inner_vlan_flags = FIELD_PREP(ICE_AQ_VSI_INNER_VLAN_TX_MODE_M,
945 ICE_AQ_VSI_INNER_VLAN_TX_MODE_ALL);
946 /* SVM - by default bits 3 and 4 in inner_vlan_flags are 0's which
947 * results in legacy behavior (show VLAN, DEI, and UP) in descriptor.
948 *
949 * DVM - leave inner VLAN in packet by default
950 */
951 if (ice_is_dvm_ena(hw)) {
952 ctxt->info.inner_vlan_flags |=
953 FIELD_PREP(ICE_AQ_VSI_INNER_VLAN_EMODE_M,
954 ICE_AQ_VSI_INNER_VLAN_EMODE_NOTHING);
955 ctxt->info.outer_vlan_flags =
956 FIELD_PREP(ICE_AQ_VSI_OUTER_VLAN_TX_MODE_M,
957 ICE_AQ_VSI_OUTER_VLAN_TX_MODE_ALL);
958 ctxt->info.outer_vlan_flags |=
959 FIELD_PREP(ICE_AQ_VSI_OUTER_TAG_TYPE_M,
960 ICE_AQ_VSI_OUTER_TAG_VLAN_8100);
961 ctxt->info.outer_vlan_flags |=
962 FIELD_PREP(ICE_AQ_VSI_OUTER_VLAN_EMODE_M,
963 ICE_AQ_VSI_OUTER_VLAN_EMODE_NOTHING);
964 }
965 /* Have 1:1 UP mapping for both ingress/egress tables */
966 table |= ICE_UP_TABLE_TRANSLATE(0, 0);
967 table |= ICE_UP_TABLE_TRANSLATE(1, 1);
968 table |= ICE_UP_TABLE_TRANSLATE(2, 2);
969 table |= ICE_UP_TABLE_TRANSLATE(3, 3);
970 table |= ICE_UP_TABLE_TRANSLATE(4, 4);
971 table |= ICE_UP_TABLE_TRANSLATE(5, 5);
972 table |= ICE_UP_TABLE_TRANSLATE(6, 6);
973 table |= ICE_UP_TABLE_TRANSLATE(7, 7);
974 ctxt->info.ingress_table = cpu_to_le32(table);
975 ctxt->info.egress_table = cpu_to_le32(table);
976 /* Have 1:1 UP mapping for outer to inner UP table */
977 ctxt->info.outer_up_table = cpu_to_le32(table);
978 /* No Outer tag support outer_tag_flags remains to zero */
979}
980
981/**
982 * ice_vsi_setup_q_map - Setup a VSI queue map
983 * @vsi: the VSI being configured
984 * @ctxt: VSI context structure
985 */
986static int ice_vsi_setup_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctxt)
987{
988 u16 offset = 0, qmap = 0, tx_count = 0, rx_count = 0, pow = 0;
989 u16 num_txq_per_tc, num_rxq_per_tc;
990 u16 qcount_tx = vsi->alloc_txq;
991 u16 qcount_rx = vsi->alloc_rxq;
992 u8 netdev_tc = 0;
993 int i;
994
995 if (!vsi->tc_cfg.numtc) {
996 /* at least TC0 should be enabled by default */
997 vsi->tc_cfg.numtc = 1;
998 vsi->tc_cfg.ena_tc = 1;
999 }
1000
1001 num_rxq_per_tc = min_t(u16, qcount_rx / vsi->tc_cfg.numtc, ICE_MAX_RXQS_PER_TC);
1002 if (!num_rxq_per_tc)
1003 num_rxq_per_tc = 1;
1004 num_txq_per_tc = qcount_tx / vsi->tc_cfg.numtc;
1005 if (!num_txq_per_tc)
1006 num_txq_per_tc = 1;
1007
1008 /* find the (rounded up) power-of-2 of qcount */
1009 pow = (u16)order_base_2(num_rxq_per_tc);
1010
1011 /* TC mapping is a function of the number of Rx queues assigned to the
1012 * VSI for each traffic class and the offset of these queues.
1013 * The first 10 bits are for queue offset for TC0, next 4 bits for no:of
1014 * queues allocated to TC0. No:of queues is a power-of-2.
1015 *
1016 * If TC is not enabled, the queue offset is set to 0, and allocate one
1017 * queue, this way, traffic for the given TC will be sent to the default
1018 * queue.
1019 *
1020 * Setup number and offset of Rx queues for all TCs for the VSI
1021 */
1022 ice_for_each_traffic_class(i) {
1023 if (!(vsi->tc_cfg.ena_tc & BIT(i))) {
1024 /* TC is not enabled */
1025 vsi->tc_cfg.tc_info[i].qoffset = 0;
1026 vsi->tc_cfg.tc_info[i].qcount_rx = 1;
1027 vsi->tc_cfg.tc_info[i].qcount_tx = 1;
1028 vsi->tc_cfg.tc_info[i].netdev_tc = 0;
1029 ctxt->info.tc_mapping[i] = 0;
1030 continue;
1031 }
1032
1033 /* TC is enabled */
1034 vsi->tc_cfg.tc_info[i].qoffset = offset;
1035 vsi->tc_cfg.tc_info[i].qcount_rx = num_rxq_per_tc;
1036 vsi->tc_cfg.tc_info[i].qcount_tx = num_txq_per_tc;
1037 vsi->tc_cfg.tc_info[i].netdev_tc = netdev_tc++;
1038
1039 qmap = FIELD_PREP(ICE_AQ_VSI_TC_Q_OFFSET_M, offset);
1040 qmap |= FIELD_PREP(ICE_AQ_VSI_TC_Q_NUM_M, pow);
1041 offset += num_rxq_per_tc;
1042 tx_count += num_txq_per_tc;
1043 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
1044 }
1045
1046 /* if offset is non-zero, means it is calculated correctly based on
1047 * enabled TCs for a given VSI otherwise qcount_rx will always
1048 * be correct and non-zero because it is based off - VSI's
1049 * allocated Rx queues which is at least 1 (hence qcount_tx will be
1050 * at least 1)
1051 */
1052 if (offset)
1053 rx_count = offset;
1054 else
1055 rx_count = num_rxq_per_tc;
1056
1057 if (rx_count > vsi->alloc_rxq) {
1058 dev_err(ice_pf_to_dev(vsi->back), "Trying to use more Rx queues (%u), than were allocated (%u)!\n",
1059 rx_count, vsi->alloc_rxq);
1060 return -EINVAL;
1061 }
1062
1063 if (tx_count > vsi->alloc_txq) {
1064 dev_err(ice_pf_to_dev(vsi->back), "Trying to use more Tx queues (%u), than were allocated (%u)!\n",
1065 tx_count, vsi->alloc_txq);
1066 return -EINVAL;
1067 }
1068
1069 vsi->num_txq = tx_count;
1070 vsi->num_rxq = rx_count;
1071
1072 if (vsi->type == ICE_VSI_VF && vsi->num_txq != vsi->num_rxq) {
1073 dev_dbg(ice_pf_to_dev(vsi->back), "VF VSI should have same number of Tx and Rx queues. Hence making them equal\n");
1074 /* since there is a chance that num_rxq could have been changed
1075 * in the above for loop, make num_txq equal to num_rxq.
1076 */
1077 vsi->num_txq = vsi->num_rxq;
1078 }
1079
1080 /* Rx queue mapping */
1081 ctxt->info.mapping_flags |= cpu_to_le16(ICE_AQ_VSI_Q_MAP_CONTIG);
1082 /* q_mapping buffer holds the info for the first queue allocated for
1083 * this VSI in the PF space and also the number of queues associated
1084 * with this VSI.
1085 */
1086 ctxt->info.q_mapping[0] = cpu_to_le16(vsi->rxq_map[0]);
1087 ctxt->info.q_mapping[1] = cpu_to_le16(vsi->num_rxq);
1088
1089 return 0;
1090}
1091
1092/**
1093 * ice_set_fd_vsi_ctx - Set FD VSI context before adding a VSI
1094 * @ctxt: the VSI context being set
1095 * @vsi: the VSI being configured
1096 */
1097static void ice_set_fd_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
1098{
1099 u8 dflt_q_group, dflt_q_prio;
1100 u16 dflt_q, report_q, val;
1101
1102 if (vsi->type != ICE_VSI_PF && vsi->type != ICE_VSI_CTRL &&
1103 vsi->type != ICE_VSI_VF && vsi->type != ICE_VSI_CHNL)
1104 return;
1105
1106 val = ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
1107 ctxt->info.valid_sections |= cpu_to_le16(val);
1108 dflt_q = 0;
1109 dflt_q_group = 0;
1110 report_q = 0;
1111 dflt_q_prio = 0;
1112
1113 /* enable flow director filtering/programming */
1114 val = ICE_AQ_VSI_FD_ENABLE | ICE_AQ_VSI_FD_PROG_ENABLE;
1115 ctxt->info.fd_options = cpu_to_le16(val);
1116 /* max of allocated flow director filters */
1117 ctxt->info.max_fd_fltr_dedicated =
1118 cpu_to_le16(vsi->num_gfltr);
1119 /* max of shared flow director filters any VSI may program */
1120 ctxt->info.max_fd_fltr_shared =
1121 cpu_to_le16(vsi->num_bfltr);
1122 /* default queue index within the VSI of the default FD */
1123 val = FIELD_PREP(ICE_AQ_VSI_FD_DEF_Q_M, dflt_q);
1124 /* target queue or queue group to the FD filter */
1125 val |= FIELD_PREP(ICE_AQ_VSI_FD_DEF_GRP_M, dflt_q_group);
1126 ctxt->info.fd_def_q = cpu_to_le16(val);
1127 /* queue index on which FD filter completion is reported */
1128 val = FIELD_PREP(ICE_AQ_VSI_FD_REPORT_Q_M, report_q);
1129 /* priority of the default qindex action */
1130 val |= FIELD_PREP(ICE_AQ_VSI_FD_DEF_PRIORITY_M, dflt_q_prio);
1131 ctxt->info.fd_report_opt = cpu_to_le16(val);
1132}
1133
1134/**
1135 * ice_set_rss_vsi_ctx - Set RSS VSI context before adding a VSI
1136 * @ctxt: the VSI context being set
1137 * @vsi: the VSI being configured
1138 */
1139static void ice_set_rss_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
1140{
1141 u8 lut_type, hash_type;
1142 struct device *dev;
1143 struct ice_pf *pf;
1144
1145 pf = vsi->back;
1146 dev = ice_pf_to_dev(pf);
1147
1148 switch (vsi->type) {
1149 case ICE_VSI_CHNL:
1150 case ICE_VSI_PF:
1151 /* PF VSI will inherit RSS instance of PF */
1152 lut_type = ICE_AQ_VSI_Q_OPT_RSS_LUT_PF;
1153 break;
1154 case ICE_VSI_VF:
1155 case ICE_VSI_SF:
1156 /* VF VSI will gets a small RSS table which is a VSI LUT type */
1157 lut_type = ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI;
1158 break;
1159 default:
1160 dev_dbg(dev, "Unsupported VSI type %s\n",
1161 ice_vsi_type_str(vsi->type));
1162 return;
1163 }
1164
1165 hash_type = ICE_AQ_VSI_Q_OPT_RSS_HASH_TPLZ;
1166 vsi->rss_hfunc = hash_type;
1167
1168 ctxt->info.q_opt_rss =
1169 FIELD_PREP(ICE_AQ_VSI_Q_OPT_RSS_LUT_M, lut_type) |
1170 FIELD_PREP(ICE_AQ_VSI_Q_OPT_RSS_HASH_M, hash_type);
1171}
1172
1173static void
1174ice_chnl_vsi_setup_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctxt)
1175{
1176 struct ice_pf *pf = vsi->back;
1177 u16 qcount, qmap;
1178 u8 offset = 0;
1179 int pow;
1180
1181 qcount = min_t(int, vsi->num_rxq, pf->num_lan_msix);
1182
1183 pow = order_base_2(qcount);
1184 qmap = FIELD_PREP(ICE_AQ_VSI_TC_Q_OFFSET_M, offset);
1185 qmap |= FIELD_PREP(ICE_AQ_VSI_TC_Q_NUM_M, pow);
1186
1187 ctxt->info.tc_mapping[0] = cpu_to_le16(qmap);
1188 ctxt->info.mapping_flags |= cpu_to_le16(ICE_AQ_VSI_Q_MAP_CONTIG);
1189 ctxt->info.q_mapping[0] = cpu_to_le16(vsi->next_base_q);
1190 ctxt->info.q_mapping[1] = cpu_to_le16(qcount);
1191}
1192
1193/**
1194 * ice_vsi_is_vlan_pruning_ena - check if VLAN pruning is enabled or not
1195 * @vsi: VSI to check whether or not VLAN pruning is enabled.
1196 *
1197 * returns true if Rx VLAN pruning is enabled and false otherwise.
1198 */
1199static bool ice_vsi_is_vlan_pruning_ena(struct ice_vsi *vsi)
1200{
1201 return vsi->info.sw_flags2 & ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
1202}
1203
1204/**
1205 * ice_vsi_init - Create and initialize a VSI
1206 * @vsi: the VSI being configured
1207 * @vsi_flags: VSI configuration flags
1208 *
1209 * Set ICE_FLAG_VSI_INIT to initialize a new VSI context, clear it to
1210 * reconfigure an existing context.
1211 *
1212 * This initializes a VSI context depending on the VSI type to be added and
1213 * passes it down to the add_vsi aq command to create a new VSI.
1214 */
1215static int ice_vsi_init(struct ice_vsi *vsi, u32 vsi_flags)
1216{
1217 struct ice_pf *pf = vsi->back;
1218 struct ice_hw *hw = &pf->hw;
1219 struct ice_vsi_ctx *ctxt;
1220 struct device *dev;
1221 int ret = 0;
1222
1223 dev = ice_pf_to_dev(pf);
1224 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
1225 if (!ctxt)
1226 return -ENOMEM;
1227
1228 switch (vsi->type) {
1229 case ICE_VSI_CTRL:
1230 case ICE_VSI_LB:
1231 case ICE_VSI_PF:
1232 ctxt->flags = ICE_AQ_VSI_TYPE_PF;
1233 break;
1234 case ICE_VSI_SF:
1235 case ICE_VSI_CHNL:
1236 ctxt->flags = ICE_AQ_VSI_TYPE_VMDQ2;
1237 break;
1238 case ICE_VSI_VF:
1239 ctxt->flags = ICE_AQ_VSI_TYPE_VF;
1240 /* VF number here is the absolute VF number (0-255) */
1241 ctxt->vf_num = vsi->vf->vf_id + hw->func_caps.vf_base_id;
1242 break;
1243 default:
1244 ret = -ENODEV;
1245 goto out;
1246 }
1247
1248 /* Handle VLAN pruning for channel VSI if main VSI has VLAN
1249 * prune enabled
1250 */
1251 if (vsi->type == ICE_VSI_CHNL) {
1252 struct ice_vsi *main_vsi;
1253
1254 main_vsi = ice_get_main_vsi(pf);
1255 if (main_vsi && ice_vsi_is_vlan_pruning_ena(main_vsi))
1256 ctxt->info.sw_flags2 |=
1257 ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
1258 else
1259 ctxt->info.sw_flags2 &=
1260 ~ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
1261 }
1262
1263 ice_set_dflt_vsi_ctx(hw, ctxt);
1264 if (test_bit(ICE_FLAG_FD_ENA, pf->flags))
1265 ice_set_fd_vsi_ctx(ctxt, vsi);
1266 /* if the switch is in VEB mode, allow VSI loopback */
1267 if (vsi->vsw->bridge_mode == BRIDGE_MODE_VEB)
1268 ctxt->info.sw_flags |= ICE_AQ_VSI_SW_FLAG_ALLOW_LB;
1269
1270 /* Set LUT type and HASH type if RSS is enabled */
1271 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags) &&
1272 vsi->type != ICE_VSI_CTRL) {
1273 ice_set_rss_vsi_ctx(ctxt, vsi);
1274 /* if updating VSI context, make sure to set valid_section:
1275 * to indicate which section of VSI context being updated
1276 */
1277 if (!(vsi_flags & ICE_VSI_FLAG_INIT))
1278 ctxt->info.valid_sections |=
1279 cpu_to_le16(ICE_AQ_VSI_PROP_Q_OPT_VALID);
1280 }
1281
1282 ctxt->info.sw_id = vsi->port_info->sw_id;
1283 if (vsi->type == ICE_VSI_CHNL) {
1284 ice_chnl_vsi_setup_q_map(vsi, ctxt);
1285 } else {
1286 ret = ice_vsi_setup_q_map(vsi, ctxt);
1287 if (ret)
1288 goto out;
1289
1290 if (!(vsi_flags & ICE_VSI_FLAG_INIT))
1291 /* means VSI being updated */
1292 /* must to indicate which section of VSI context are
1293 * being modified
1294 */
1295 ctxt->info.valid_sections |=
1296 cpu_to_le16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
1297 }
1298
1299 /* Allow control frames out of main VSI */
1300 if (vsi->type == ICE_VSI_PF) {
1301 ctxt->info.sec_flags |= ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD;
1302 ctxt->info.valid_sections |=
1303 cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
1304 }
1305
1306 if (vsi_flags & ICE_VSI_FLAG_INIT) {
1307 ret = ice_add_vsi(hw, vsi->idx, ctxt, NULL);
1308 if (ret) {
1309 dev_err(dev, "Add VSI failed, err %d\n", ret);
1310 ret = -EIO;
1311 goto out;
1312 }
1313 } else {
1314 ret = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1315 if (ret) {
1316 dev_err(dev, "Update VSI failed, err %d\n", ret);
1317 ret = -EIO;
1318 goto out;
1319 }
1320 }
1321
1322 /* keep context for update VSI operations */
1323 vsi->info = ctxt->info;
1324
1325 /* record VSI number returned */
1326 vsi->vsi_num = ctxt->vsi_num;
1327
1328out:
1329 kfree(ctxt);
1330 return ret;
1331}
1332
1333/**
1334 * ice_vsi_clear_rings - Deallocates the Tx and Rx rings for VSI
1335 * @vsi: the VSI having rings deallocated
1336 */
1337static void ice_vsi_clear_rings(struct ice_vsi *vsi)
1338{
1339 int i;
1340
1341 /* Avoid stale references by clearing map from vector to ring */
1342 if (vsi->q_vectors) {
1343 ice_for_each_q_vector(vsi, i) {
1344 struct ice_q_vector *q_vector = vsi->q_vectors[i];
1345
1346 if (q_vector) {
1347 q_vector->tx.tx_ring = NULL;
1348 q_vector->rx.rx_ring = NULL;
1349 }
1350 }
1351 }
1352
1353 if (vsi->tx_rings) {
1354 ice_for_each_alloc_txq(vsi, i) {
1355 if (vsi->tx_rings[i]) {
1356 kfree_rcu(vsi->tx_rings[i], rcu);
1357 WRITE_ONCE(vsi->tx_rings[i], NULL);
1358 }
1359 }
1360 }
1361 if (vsi->rx_rings) {
1362 ice_for_each_alloc_rxq(vsi, i) {
1363 if (vsi->rx_rings[i]) {
1364 kfree_rcu(vsi->rx_rings[i], rcu);
1365 WRITE_ONCE(vsi->rx_rings[i], NULL);
1366 }
1367 }
1368 }
1369}
1370
1371/**
1372 * ice_vsi_alloc_rings - Allocates Tx and Rx rings for the VSI
1373 * @vsi: VSI which is having rings allocated
1374 */
1375static int ice_vsi_alloc_rings(struct ice_vsi *vsi)
1376{
1377 bool dvm_ena = ice_is_dvm_ena(&vsi->back->hw);
1378 struct ice_pf *pf = vsi->back;
1379 struct device *dev;
1380 u16 i;
1381
1382 dev = ice_pf_to_dev(pf);
1383 /* Allocate Tx rings */
1384 ice_for_each_alloc_txq(vsi, i) {
1385 struct ice_tx_ring *ring;
1386
1387 /* allocate with kzalloc(), free with kfree_rcu() */
1388 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
1389
1390 if (!ring)
1391 goto err_out;
1392
1393 ring->q_index = i;
1394 ring->reg_idx = vsi->txq_map[i];
1395 ring->vsi = vsi;
1396 ring->tx_tstamps = &pf->ptp.port.tx;
1397 ring->dev = dev;
1398 ring->count = vsi->num_tx_desc;
1399 ring->txq_teid = ICE_INVAL_TEID;
1400 if (dvm_ena)
1401 ring->flags |= ICE_TX_FLAGS_RING_VLAN_L2TAG2;
1402 else
1403 ring->flags |= ICE_TX_FLAGS_RING_VLAN_L2TAG1;
1404 WRITE_ONCE(vsi->tx_rings[i], ring);
1405 }
1406
1407 /* Allocate Rx rings */
1408 ice_for_each_alloc_rxq(vsi, i) {
1409 struct ice_rx_ring *ring;
1410
1411 /* allocate with kzalloc(), free with kfree_rcu() */
1412 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
1413 if (!ring)
1414 goto err_out;
1415
1416 ring->q_index = i;
1417 ring->reg_idx = vsi->rxq_map[i];
1418 ring->vsi = vsi;
1419 ring->netdev = vsi->netdev;
1420 ring->dev = dev;
1421 ring->count = vsi->num_rx_desc;
1422 ring->cached_phctime = pf->ptp.cached_phc_time;
1423 WRITE_ONCE(vsi->rx_rings[i], ring);
1424 }
1425
1426 return 0;
1427
1428err_out:
1429 ice_vsi_clear_rings(vsi);
1430 return -ENOMEM;
1431}
1432
1433/**
1434 * ice_vsi_manage_rss_lut - disable/enable RSS
1435 * @vsi: the VSI being changed
1436 * @ena: boolean value indicating if this is an enable or disable request
1437 *
1438 * In the event of disable request for RSS, this function will zero out RSS
1439 * LUT, while in the event of enable request for RSS, it will reconfigure RSS
1440 * LUT.
1441 */
1442void ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena)
1443{
1444 u8 *lut;
1445
1446 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
1447 if (!lut)
1448 return;
1449
1450 if (ena) {
1451 if (vsi->rss_lut_user)
1452 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
1453 else
1454 ice_fill_rss_lut(lut, vsi->rss_table_size,
1455 vsi->rss_size);
1456 }
1457
1458 ice_set_rss_lut(vsi, lut, vsi->rss_table_size);
1459 kfree(lut);
1460}
1461
1462/**
1463 * ice_vsi_cfg_crc_strip - Configure CRC stripping for a VSI
1464 * @vsi: VSI to be configured
1465 * @disable: set to true to have FCS / CRC in the frame data
1466 */
1467void ice_vsi_cfg_crc_strip(struct ice_vsi *vsi, bool disable)
1468{
1469 int i;
1470
1471 ice_for_each_rxq(vsi, i)
1472 if (disable)
1473 vsi->rx_rings[i]->flags |= ICE_RX_FLAGS_CRC_STRIP_DIS;
1474 else
1475 vsi->rx_rings[i]->flags &= ~ICE_RX_FLAGS_CRC_STRIP_DIS;
1476}
1477
1478/**
1479 * ice_vsi_cfg_rss_lut_key - Configure RSS params for a VSI
1480 * @vsi: VSI to be configured
1481 */
1482int ice_vsi_cfg_rss_lut_key(struct ice_vsi *vsi)
1483{
1484 struct ice_pf *pf = vsi->back;
1485 struct device *dev;
1486 u8 *lut, *key;
1487 int err;
1488
1489 dev = ice_pf_to_dev(pf);
1490 if (vsi->type == ICE_VSI_PF && vsi->ch_rss_size &&
1491 (test_bit(ICE_FLAG_TC_MQPRIO, pf->flags))) {
1492 vsi->rss_size = min_t(u16, vsi->rss_size, vsi->ch_rss_size);
1493 } else {
1494 vsi->rss_size = min_t(u16, vsi->rss_size, vsi->num_rxq);
1495
1496 /* If orig_rss_size is valid and it is less than determined
1497 * main VSI's rss_size, update main VSI's rss_size to be
1498 * orig_rss_size so that when tc-qdisc is deleted, main VSI
1499 * RSS table gets programmed to be correct (whatever it was
1500 * to begin with (prior to setup-tc for ADQ config)
1501 */
1502 if (vsi->orig_rss_size && vsi->rss_size < vsi->orig_rss_size &&
1503 vsi->orig_rss_size <= vsi->num_rxq) {
1504 vsi->rss_size = vsi->orig_rss_size;
1505 /* now orig_rss_size is used, reset it to zero */
1506 vsi->orig_rss_size = 0;
1507 }
1508 }
1509
1510 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
1511 if (!lut)
1512 return -ENOMEM;
1513
1514 if (vsi->rss_lut_user)
1515 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
1516 else
1517 ice_fill_rss_lut(lut, vsi->rss_table_size, vsi->rss_size);
1518
1519 err = ice_set_rss_lut(vsi, lut, vsi->rss_table_size);
1520 if (err) {
1521 dev_err(dev, "set_rss_lut failed, error %d\n", err);
1522 goto ice_vsi_cfg_rss_exit;
1523 }
1524
1525 key = kzalloc(ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE, GFP_KERNEL);
1526 if (!key) {
1527 err = -ENOMEM;
1528 goto ice_vsi_cfg_rss_exit;
1529 }
1530
1531 if (vsi->rss_hkey_user)
1532 memcpy(key, vsi->rss_hkey_user, ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE);
1533 else
1534 netdev_rss_key_fill((void *)key, ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE);
1535
1536 err = ice_set_rss_key(vsi, key);
1537 if (err)
1538 dev_err(dev, "set_rss_key failed, error %d\n", err);
1539
1540 kfree(key);
1541ice_vsi_cfg_rss_exit:
1542 kfree(lut);
1543 return err;
1544}
1545
1546/**
1547 * ice_vsi_set_vf_rss_flow_fld - Sets VF VSI RSS input set for different flows
1548 * @vsi: VSI to be configured
1549 *
1550 * This function will only be called during the VF VSI setup. Upon successful
1551 * completion of package download, this function will configure default RSS
1552 * input sets for VF VSI.
1553 */
1554static void ice_vsi_set_vf_rss_flow_fld(struct ice_vsi *vsi)
1555{
1556 struct ice_pf *pf = vsi->back;
1557 struct device *dev;
1558 int status;
1559
1560 dev = ice_pf_to_dev(pf);
1561 if (ice_is_safe_mode(pf)) {
1562 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
1563 vsi->vsi_num);
1564 return;
1565 }
1566
1567 status = ice_add_avf_rss_cfg(&pf->hw, vsi, ICE_DEFAULT_RSS_HENA);
1568 if (status)
1569 dev_dbg(dev, "ice_add_avf_rss_cfg failed for vsi = %d, error = %d\n",
1570 vsi->vsi_num, status);
1571}
1572
1573static const struct ice_rss_hash_cfg default_rss_cfgs[] = {
1574 /* configure RSS for IPv4 with input set IP src/dst */
1575 {ICE_FLOW_SEG_HDR_IPV4, ICE_FLOW_HASH_IPV4, ICE_RSS_ANY_HEADERS, false},
1576 /* configure RSS for IPv6 with input set IPv6 src/dst */
1577 {ICE_FLOW_SEG_HDR_IPV6, ICE_FLOW_HASH_IPV6, ICE_RSS_ANY_HEADERS, false},
1578 /* configure RSS for tcp4 with input set IP src/dst, TCP src/dst */
1579 {ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV4,
1580 ICE_HASH_TCP_IPV4, ICE_RSS_ANY_HEADERS, false},
1581 /* configure RSS for udp4 with input set IP src/dst, UDP src/dst */
1582 {ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV4,
1583 ICE_HASH_UDP_IPV4, ICE_RSS_ANY_HEADERS, false},
1584 /* configure RSS for sctp4 with input set IP src/dst - only support
1585 * RSS on SCTPv4 on outer headers (non-tunneled)
1586 */
1587 {ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV4,
1588 ICE_HASH_SCTP_IPV4, ICE_RSS_OUTER_HEADERS, false},
1589 /* configure RSS for gtpc4 with input set IPv4 src/dst */
1590 {ICE_FLOW_SEG_HDR_GTPC | ICE_FLOW_SEG_HDR_IPV4,
1591 ICE_FLOW_HASH_IPV4, ICE_RSS_OUTER_HEADERS, false},
1592 /* configure RSS for gtpc4t with input set IPv4 src/dst */
1593 {ICE_FLOW_SEG_HDR_GTPC_TEID | ICE_FLOW_SEG_HDR_IPV4,
1594 ICE_FLOW_HASH_GTP_C_IPV4_TEID, ICE_RSS_OUTER_HEADERS, false},
1595 /* configure RSS for gtpu4 with input set IPv4 src/dst */
1596 {ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_IPV4,
1597 ICE_FLOW_HASH_GTP_U_IPV4_TEID, ICE_RSS_OUTER_HEADERS, false},
1598 /* configure RSS for gtpu4e with input set IPv4 src/dst */
1599 {ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_IPV4,
1600 ICE_FLOW_HASH_GTP_U_IPV4_EH, ICE_RSS_OUTER_HEADERS, false},
1601 /* configure RSS for gtpu4u with input set IPv4 src/dst */
1602 { ICE_FLOW_SEG_HDR_GTPU_UP | ICE_FLOW_SEG_HDR_IPV4,
1603 ICE_FLOW_HASH_GTP_U_IPV4_UP, ICE_RSS_OUTER_HEADERS, false},
1604 /* configure RSS for gtpu4d with input set IPv4 src/dst */
1605 {ICE_FLOW_SEG_HDR_GTPU_DWN | ICE_FLOW_SEG_HDR_IPV4,
1606 ICE_FLOW_HASH_GTP_U_IPV4_DWN, ICE_RSS_OUTER_HEADERS, false},
1607
1608 /* configure RSS for tcp6 with input set IPv6 src/dst, TCP src/dst */
1609 {ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV6,
1610 ICE_HASH_TCP_IPV6, ICE_RSS_ANY_HEADERS, false},
1611 /* configure RSS for udp6 with input set IPv6 src/dst, UDP src/dst */
1612 {ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV6,
1613 ICE_HASH_UDP_IPV6, ICE_RSS_ANY_HEADERS, false},
1614 /* configure RSS for sctp6 with input set IPv6 src/dst - only support
1615 * RSS on SCTPv6 on outer headers (non-tunneled)
1616 */
1617 {ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV6,
1618 ICE_HASH_SCTP_IPV6, ICE_RSS_OUTER_HEADERS, false},
1619 /* configure RSS for IPSEC ESP SPI with input set MAC_IPV4_SPI */
1620 {ICE_FLOW_SEG_HDR_ESP,
1621 ICE_FLOW_HASH_ESP_SPI, ICE_RSS_OUTER_HEADERS, false},
1622 /* configure RSS for gtpc6 with input set IPv6 src/dst */
1623 {ICE_FLOW_SEG_HDR_GTPC | ICE_FLOW_SEG_HDR_IPV6,
1624 ICE_FLOW_HASH_IPV6, ICE_RSS_OUTER_HEADERS, false},
1625 /* configure RSS for gtpc6t with input set IPv6 src/dst */
1626 {ICE_FLOW_SEG_HDR_GTPC_TEID | ICE_FLOW_SEG_HDR_IPV6,
1627 ICE_FLOW_HASH_GTP_C_IPV6_TEID, ICE_RSS_OUTER_HEADERS, false},
1628 /* configure RSS for gtpu6 with input set IPv6 src/dst */
1629 {ICE_FLOW_SEG_HDR_GTPU_IP | ICE_FLOW_SEG_HDR_IPV6,
1630 ICE_FLOW_HASH_GTP_U_IPV6_TEID, ICE_RSS_OUTER_HEADERS, false},
1631 /* configure RSS for gtpu6e with input set IPv6 src/dst */
1632 {ICE_FLOW_SEG_HDR_GTPU_EH | ICE_FLOW_SEG_HDR_IPV6,
1633 ICE_FLOW_HASH_GTP_U_IPV6_EH, ICE_RSS_OUTER_HEADERS, false},
1634 /* configure RSS for gtpu6u with input set IPv6 src/dst */
1635 { ICE_FLOW_SEG_HDR_GTPU_UP | ICE_FLOW_SEG_HDR_IPV6,
1636 ICE_FLOW_HASH_GTP_U_IPV6_UP, ICE_RSS_OUTER_HEADERS, false},
1637 /* configure RSS for gtpu6d with input set IPv6 src/dst */
1638 {ICE_FLOW_SEG_HDR_GTPU_DWN | ICE_FLOW_SEG_HDR_IPV6,
1639 ICE_FLOW_HASH_GTP_U_IPV6_DWN, ICE_RSS_OUTER_HEADERS, false},
1640};
1641
1642/**
1643 * ice_vsi_set_rss_flow_fld - Sets RSS input set for different flows
1644 * @vsi: VSI to be configured
1645 *
1646 * This function will only be called after successful download package call
1647 * during initialization of PF. Since the downloaded package will erase the
1648 * RSS section, this function will configure RSS input sets for different
1649 * flow types. The last profile added has the highest priority, therefore 2
1650 * tuple profiles (i.e. IPv4 src/dst) are added before 4 tuple profiles
1651 * (i.e. IPv4 src/dst TCP src/dst port).
1652 */
1653static void ice_vsi_set_rss_flow_fld(struct ice_vsi *vsi)
1654{
1655 u16 vsi_num = vsi->vsi_num;
1656 struct ice_pf *pf = vsi->back;
1657 struct ice_hw *hw = &pf->hw;
1658 struct device *dev;
1659 int status;
1660 u32 i;
1661
1662 dev = ice_pf_to_dev(pf);
1663 if (ice_is_safe_mode(pf)) {
1664 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
1665 vsi_num);
1666 return;
1667 }
1668 for (i = 0; i < ARRAY_SIZE(default_rss_cfgs); i++) {
1669 const struct ice_rss_hash_cfg *cfg = &default_rss_cfgs[i];
1670
1671 status = ice_add_rss_cfg(hw, vsi, cfg);
1672 if (status)
1673 dev_dbg(dev, "ice_add_rss_cfg failed, addl_hdrs = %x, hash_flds = %llx, hdr_type = %d, symm = %d\n",
1674 cfg->addl_hdrs, cfg->hash_flds,
1675 cfg->hdr_type, cfg->symm);
1676 }
1677}
1678
1679/**
1680 * ice_pf_state_is_nominal - checks the PF for nominal state
1681 * @pf: pointer to PF to check
1682 *
1683 * Check the PF's state for a collection of bits that would indicate
1684 * the PF is in a state that would inhibit normal operation for
1685 * driver functionality.
1686 *
1687 * Returns true if PF is in a nominal state, false otherwise
1688 */
1689bool ice_pf_state_is_nominal(struct ice_pf *pf)
1690{
1691 DECLARE_BITMAP(check_bits, ICE_STATE_NBITS) = { 0 };
1692
1693 if (!pf)
1694 return false;
1695
1696 bitmap_set(check_bits, 0, ICE_STATE_NOMINAL_CHECK_BITS);
1697 if (bitmap_intersects(pf->state, check_bits, ICE_STATE_NBITS))
1698 return false;
1699
1700 return true;
1701}
1702
1703/**
1704 * ice_update_eth_stats - Update VSI-specific ethernet statistics counters
1705 * @vsi: the VSI to be updated
1706 */
1707void ice_update_eth_stats(struct ice_vsi *vsi)
1708{
1709 struct ice_eth_stats *prev_es, *cur_es;
1710 struct ice_hw *hw = &vsi->back->hw;
1711 struct ice_pf *pf = vsi->back;
1712 u16 vsi_num = vsi->vsi_num; /* HW absolute index of a VSI */
1713
1714 prev_es = &vsi->eth_stats_prev;
1715 cur_es = &vsi->eth_stats;
1716
1717 if (ice_is_reset_in_progress(pf->state))
1718 vsi->stat_offsets_loaded = false;
1719
1720 ice_stat_update40(hw, GLV_GORCL(vsi_num), vsi->stat_offsets_loaded,
1721 &prev_es->rx_bytes, &cur_es->rx_bytes);
1722
1723 ice_stat_update40(hw, GLV_UPRCL(vsi_num), vsi->stat_offsets_loaded,
1724 &prev_es->rx_unicast, &cur_es->rx_unicast);
1725
1726 ice_stat_update40(hw, GLV_MPRCL(vsi_num), vsi->stat_offsets_loaded,
1727 &prev_es->rx_multicast, &cur_es->rx_multicast);
1728
1729 ice_stat_update40(hw, GLV_BPRCL(vsi_num), vsi->stat_offsets_loaded,
1730 &prev_es->rx_broadcast, &cur_es->rx_broadcast);
1731
1732 ice_stat_update32(hw, GLV_RDPC(vsi_num), vsi->stat_offsets_loaded,
1733 &prev_es->rx_discards, &cur_es->rx_discards);
1734
1735 ice_stat_update40(hw, GLV_GOTCL(vsi_num), vsi->stat_offsets_loaded,
1736 &prev_es->tx_bytes, &cur_es->tx_bytes);
1737
1738 ice_stat_update40(hw, GLV_UPTCL(vsi_num), vsi->stat_offsets_loaded,
1739 &prev_es->tx_unicast, &cur_es->tx_unicast);
1740
1741 ice_stat_update40(hw, GLV_MPTCL(vsi_num), vsi->stat_offsets_loaded,
1742 &prev_es->tx_multicast, &cur_es->tx_multicast);
1743
1744 ice_stat_update40(hw, GLV_BPTCL(vsi_num), vsi->stat_offsets_loaded,
1745 &prev_es->tx_broadcast, &cur_es->tx_broadcast);
1746
1747 ice_stat_update32(hw, GLV_TEPC(vsi_num), vsi->stat_offsets_loaded,
1748 &prev_es->tx_errors, &cur_es->tx_errors);
1749
1750 vsi->stat_offsets_loaded = true;
1751}
1752
1753/**
1754 * ice_write_qrxflxp_cntxt - write/configure QRXFLXP_CNTXT register
1755 * @hw: HW pointer
1756 * @pf_q: index of the Rx queue in the PF's queue space
1757 * @rxdid: flexible descriptor RXDID
1758 * @prio: priority for the RXDID for this queue
1759 * @ena_ts: true to enable timestamp and false to disable timestamp
1760 */
1761void
1762ice_write_qrxflxp_cntxt(struct ice_hw *hw, u16 pf_q, u32 rxdid, u32 prio,
1763 bool ena_ts)
1764{
1765 int regval = rd32(hw, QRXFLXP_CNTXT(pf_q));
1766
1767 /* clear any previous values */
1768 regval &= ~(QRXFLXP_CNTXT_RXDID_IDX_M |
1769 QRXFLXP_CNTXT_RXDID_PRIO_M |
1770 QRXFLXP_CNTXT_TS_M);
1771
1772 regval |= FIELD_PREP(QRXFLXP_CNTXT_RXDID_IDX_M, rxdid);
1773 regval |= FIELD_PREP(QRXFLXP_CNTXT_RXDID_PRIO_M, prio);
1774
1775 if (ena_ts)
1776 /* Enable TimeSync on this queue */
1777 regval |= QRXFLXP_CNTXT_TS_M;
1778
1779 wr32(hw, QRXFLXP_CNTXT(pf_q), regval);
1780}
1781
1782/**
1783 * ice_intrl_usec_to_reg - convert interrupt rate limit to register value
1784 * @intrl: interrupt rate limit in usecs
1785 * @gran: interrupt rate limit granularity in usecs
1786 *
1787 * This function converts a decimal interrupt rate limit in usecs to the format
1788 * expected by firmware.
1789 */
1790static u32 ice_intrl_usec_to_reg(u8 intrl, u8 gran)
1791{
1792 u32 val = intrl / gran;
1793
1794 if (val)
1795 return val | GLINT_RATE_INTRL_ENA_M;
1796 return 0;
1797}
1798
1799/**
1800 * ice_write_intrl - write throttle rate limit to interrupt specific register
1801 * @q_vector: pointer to interrupt specific structure
1802 * @intrl: throttle rate limit in microseconds to write
1803 */
1804void ice_write_intrl(struct ice_q_vector *q_vector, u8 intrl)
1805{
1806 struct ice_hw *hw = &q_vector->vsi->back->hw;
1807
1808 wr32(hw, GLINT_RATE(q_vector->reg_idx),
1809 ice_intrl_usec_to_reg(intrl, ICE_INTRL_GRAN_ABOVE_25));
1810}
1811
1812static struct ice_q_vector *ice_pull_qvec_from_rc(struct ice_ring_container *rc)
1813{
1814 switch (rc->type) {
1815 case ICE_RX_CONTAINER:
1816 if (rc->rx_ring)
1817 return rc->rx_ring->q_vector;
1818 break;
1819 case ICE_TX_CONTAINER:
1820 if (rc->tx_ring)
1821 return rc->tx_ring->q_vector;
1822 break;
1823 default:
1824 break;
1825 }
1826
1827 return NULL;
1828}
1829
1830/**
1831 * __ice_write_itr - write throttle rate to register
1832 * @q_vector: pointer to interrupt data structure
1833 * @rc: pointer to ring container
1834 * @itr: throttle rate in microseconds to write
1835 */
1836static void __ice_write_itr(struct ice_q_vector *q_vector,
1837 struct ice_ring_container *rc, u16 itr)
1838{
1839 struct ice_hw *hw = &q_vector->vsi->back->hw;
1840
1841 wr32(hw, GLINT_ITR(rc->itr_idx, q_vector->reg_idx),
1842 ITR_REG_ALIGN(itr) >> ICE_ITR_GRAN_S);
1843}
1844
1845/**
1846 * ice_write_itr - write throttle rate to queue specific register
1847 * @rc: pointer to ring container
1848 * @itr: throttle rate in microseconds to write
1849 */
1850void ice_write_itr(struct ice_ring_container *rc, u16 itr)
1851{
1852 struct ice_q_vector *q_vector;
1853
1854 q_vector = ice_pull_qvec_from_rc(rc);
1855 if (!q_vector)
1856 return;
1857
1858 __ice_write_itr(q_vector, rc, itr);
1859}
1860
1861/**
1862 * ice_set_q_vector_intrl - set up interrupt rate limiting
1863 * @q_vector: the vector to be configured
1864 *
1865 * Interrupt rate limiting is local to the vector, not per-queue so we must
1866 * detect if either ring container has dynamic moderation enabled to decide
1867 * what to set the interrupt rate limit to via INTRL settings. In the case that
1868 * dynamic moderation is disabled on both, write the value with the cached
1869 * setting to make sure INTRL register matches the user visible value.
1870 */
1871void ice_set_q_vector_intrl(struct ice_q_vector *q_vector)
1872{
1873 if (ITR_IS_DYNAMIC(&q_vector->tx) || ITR_IS_DYNAMIC(&q_vector->rx)) {
1874 /* in the case of dynamic enabled, cap each vector to no more
1875 * than (4 us) 250,000 ints/sec, which allows low latency
1876 * but still less than 500,000 interrupts per second, which
1877 * reduces CPU a bit in the case of the lowest latency
1878 * setting. The 4 here is a value in microseconds.
1879 */
1880 ice_write_intrl(q_vector, 4);
1881 } else {
1882 ice_write_intrl(q_vector, q_vector->intrl);
1883 }
1884}
1885
1886/**
1887 * ice_vsi_cfg_msix - MSIX mode Interrupt Config in the HW
1888 * @vsi: the VSI being configured
1889 *
1890 * This configures MSIX mode interrupts for the PF VSI, and should not be used
1891 * for the VF VSI.
1892 */
1893void ice_vsi_cfg_msix(struct ice_vsi *vsi)
1894{
1895 struct ice_pf *pf = vsi->back;
1896 struct ice_hw *hw = &pf->hw;
1897 u16 txq = 0, rxq = 0;
1898 int i, q;
1899
1900 ice_for_each_q_vector(vsi, i) {
1901 struct ice_q_vector *q_vector = vsi->q_vectors[i];
1902 u16 reg_idx = q_vector->reg_idx;
1903
1904 ice_cfg_itr(hw, q_vector);
1905
1906 /* Both Transmit Queue Interrupt Cause Control register
1907 * and Receive Queue Interrupt Cause control register
1908 * expects MSIX_INDX field to be the vector index
1909 * within the function space and not the absolute
1910 * vector index across PF or across device.
1911 * For SR-IOV VF VSIs queue vector index always starts
1912 * with 1 since first vector index(0) is used for OICR
1913 * in VF space. Since VMDq and other PF VSIs are within
1914 * the PF function space, use the vector index that is
1915 * tracked for this PF.
1916 */
1917 for (q = 0; q < q_vector->num_ring_tx; q++) {
1918 ice_cfg_txq_interrupt(vsi, txq, reg_idx,
1919 q_vector->tx.itr_idx);
1920 txq++;
1921 }
1922
1923 for (q = 0; q < q_vector->num_ring_rx; q++) {
1924 ice_cfg_rxq_interrupt(vsi, rxq, reg_idx,
1925 q_vector->rx.itr_idx);
1926 rxq++;
1927 }
1928 }
1929}
1930
1931/**
1932 * ice_vsi_start_all_rx_rings - start/enable all of a VSI's Rx rings
1933 * @vsi: the VSI whose rings are to be enabled
1934 *
1935 * Returns 0 on success and a negative value on error
1936 */
1937int ice_vsi_start_all_rx_rings(struct ice_vsi *vsi)
1938{
1939 return ice_vsi_ctrl_all_rx_rings(vsi, true);
1940}
1941
1942/**
1943 * ice_vsi_stop_all_rx_rings - stop/disable all of a VSI's Rx rings
1944 * @vsi: the VSI whose rings are to be disabled
1945 *
1946 * Returns 0 on success and a negative value on error
1947 */
1948int ice_vsi_stop_all_rx_rings(struct ice_vsi *vsi)
1949{
1950 return ice_vsi_ctrl_all_rx_rings(vsi, false);
1951}
1952
1953/**
1954 * ice_vsi_stop_tx_rings - Disable Tx rings
1955 * @vsi: the VSI being configured
1956 * @rst_src: reset source
1957 * @rel_vmvf_num: Relative ID of VF/VM
1958 * @rings: Tx ring array to be stopped
1959 * @count: number of Tx ring array elements
1960 */
1961static int
1962ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1963 u16 rel_vmvf_num, struct ice_tx_ring **rings, u16 count)
1964{
1965 u16 q_idx;
1966
1967 if (vsi->num_txq > ICE_LAN_TXQ_MAX_QDIS)
1968 return -EINVAL;
1969
1970 for (q_idx = 0; q_idx < count; q_idx++) {
1971 struct ice_txq_meta txq_meta = { };
1972 int status;
1973
1974 if (!rings || !rings[q_idx])
1975 return -EINVAL;
1976
1977 ice_fill_txq_meta(vsi, rings[q_idx], &txq_meta);
1978 status = ice_vsi_stop_tx_ring(vsi, rst_src, rel_vmvf_num,
1979 rings[q_idx], &txq_meta);
1980
1981 if (status)
1982 return status;
1983 }
1984
1985 return 0;
1986}
1987
1988/**
1989 * ice_vsi_stop_lan_tx_rings - Disable LAN Tx rings
1990 * @vsi: the VSI being configured
1991 * @rst_src: reset source
1992 * @rel_vmvf_num: Relative ID of VF/VM
1993 */
1994int
1995ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1996 u16 rel_vmvf_num)
1997{
1998 return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings, vsi->num_txq);
1999}
2000
2001/**
2002 * ice_vsi_stop_xdp_tx_rings - Disable XDP Tx rings
2003 * @vsi: the VSI being configured
2004 */
2005int ice_vsi_stop_xdp_tx_rings(struct ice_vsi *vsi)
2006{
2007 return ice_vsi_stop_tx_rings(vsi, ICE_NO_RESET, 0, vsi->xdp_rings, vsi->num_xdp_txq);
2008}
2009
2010/**
2011 * ice_vsi_is_rx_queue_active
2012 * @vsi: the VSI being configured
2013 *
2014 * Return true if at least one queue is active.
2015 */
2016bool ice_vsi_is_rx_queue_active(struct ice_vsi *vsi)
2017{
2018 struct ice_pf *pf = vsi->back;
2019 struct ice_hw *hw = &pf->hw;
2020 int i;
2021
2022 ice_for_each_rxq(vsi, i) {
2023 u32 rx_reg;
2024 int pf_q;
2025
2026 pf_q = vsi->rxq_map[i];
2027 rx_reg = rd32(hw, QRX_CTRL(pf_q));
2028 if (rx_reg & QRX_CTRL_QENA_STAT_M)
2029 return true;
2030 }
2031
2032 return false;
2033}
2034
2035static void ice_vsi_set_tc_cfg(struct ice_vsi *vsi)
2036{
2037 if (!test_bit(ICE_FLAG_DCB_ENA, vsi->back->flags)) {
2038 vsi->tc_cfg.ena_tc = ICE_DFLT_TRAFFIC_CLASS;
2039 vsi->tc_cfg.numtc = 1;
2040 return;
2041 }
2042
2043 /* set VSI TC information based on DCB config */
2044 ice_vsi_set_dcb_tc_cfg(vsi);
2045}
2046
2047/**
2048 * ice_cfg_sw_lldp - Config switch rules for LLDP packet handling
2049 * @vsi: the VSI being configured
2050 * @tx: bool to determine Tx or Rx rule
2051 * @create: bool to determine create or remove Rule
2052 */
2053void ice_cfg_sw_lldp(struct ice_vsi *vsi, bool tx, bool create)
2054{
2055 int (*eth_fltr)(struct ice_vsi *v, u16 type, u16 flag,
2056 enum ice_sw_fwd_act_type act);
2057 struct ice_pf *pf = vsi->back;
2058 struct device *dev;
2059 int status;
2060
2061 dev = ice_pf_to_dev(pf);
2062 eth_fltr = create ? ice_fltr_add_eth : ice_fltr_remove_eth;
2063
2064 if (tx) {
2065 status = eth_fltr(vsi, ETH_P_LLDP, ICE_FLTR_TX,
2066 ICE_DROP_PACKET);
2067 } else {
2068 if (ice_fw_supports_lldp_fltr_ctrl(&pf->hw)) {
2069 status = ice_lldp_fltr_add_remove(&pf->hw, vsi->vsi_num,
2070 create);
2071 } else {
2072 status = eth_fltr(vsi, ETH_P_LLDP, ICE_FLTR_RX,
2073 ICE_FWD_TO_VSI);
2074 }
2075 }
2076
2077 if (status)
2078 dev_dbg(dev, "Fail %s %s LLDP rule on VSI %i error: %d\n",
2079 create ? "adding" : "removing", tx ? "TX" : "RX",
2080 vsi->vsi_num, status);
2081}
2082
2083/**
2084 * ice_set_agg_vsi - sets up scheduler aggregator node and move VSI into it
2085 * @vsi: pointer to the VSI
2086 *
2087 * This function will allocate new scheduler aggregator now if needed and will
2088 * move specified VSI into it.
2089 */
2090static void ice_set_agg_vsi(struct ice_vsi *vsi)
2091{
2092 struct device *dev = ice_pf_to_dev(vsi->back);
2093 struct ice_agg_node *agg_node_iter = NULL;
2094 u32 agg_id = ICE_INVALID_AGG_NODE_ID;
2095 struct ice_agg_node *agg_node = NULL;
2096 int node_offset, max_agg_nodes = 0;
2097 struct ice_port_info *port_info;
2098 struct ice_pf *pf = vsi->back;
2099 u32 agg_node_id_start = 0;
2100 int status;
2101
2102 /* create (as needed) scheduler aggregator node and move VSI into
2103 * corresponding aggregator node
2104 * - PF aggregator node to contains VSIs of type _PF and _CTRL
2105 * - VF aggregator nodes will contain VF VSI
2106 */
2107 port_info = pf->hw.port_info;
2108 if (!port_info)
2109 return;
2110
2111 switch (vsi->type) {
2112 case ICE_VSI_CTRL:
2113 case ICE_VSI_CHNL:
2114 case ICE_VSI_LB:
2115 case ICE_VSI_PF:
2116 case ICE_VSI_SF:
2117 max_agg_nodes = ICE_MAX_PF_AGG_NODES;
2118 agg_node_id_start = ICE_PF_AGG_NODE_ID_START;
2119 agg_node_iter = &pf->pf_agg_node[0];
2120 break;
2121 case ICE_VSI_VF:
2122 /* user can create 'n' VFs on a given PF, but since max children
2123 * per aggregator node can be only 64. Following code handles
2124 * aggregator(s) for VF VSIs, either selects a agg_node which
2125 * was already created provided num_vsis < 64, otherwise
2126 * select next available node, which will be created
2127 */
2128 max_agg_nodes = ICE_MAX_VF_AGG_NODES;
2129 agg_node_id_start = ICE_VF_AGG_NODE_ID_START;
2130 agg_node_iter = &pf->vf_agg_node[0];
2131 break;
2132 default:
2133 /* other VSI type, handle later if needed */
2134 dev_dbg(dev, "unexpected VSI type %s\n",
2135 ice_vsi_type_str(vsi->type));
2136 return;
2137 }
2138
2139 /* find the appropriate aggregator node */
2140 for (node_offset = 0; node_offset < max_agg_nodes; node_offset++) {
2141 /* see if we can find space in previously created
2142 * node if num_vsis < 64, otherwise skip
2143 */
2144 if (agg_node_iter->num_vsis &&
2145 agg_node_iter->num_vsis == ICE_MAX_VSIS_IN_AGG_NODE) {
2146 agg_node_iter++;
2147 continue;
2148 }
2149
2150 if (agg_node_iter->valid &&
2151 agg_node_iter->agg_id != ICE_INVALID_AGG_NODE_ID) {
2152 agg_id = agg_node_iter->agg_id;
2153 agg_node = agg_node_iter;
2154 break;
2155 }
2156
2157 /* find unclaimed agg_id */
2158 if (agg_node_iter->agg_id == ICE_INVALID_AGG_NODE_ID) {
2159 agg_id = node_offset + agg_node_id_start;
2160 agg_node = agg_node_iter;
2161 break;
2162 }
2163 /* move to next agg_node */
2164 agg_node_iter++;
2165 }
2166
2167 if (!agg_node)
2168 return;
2169
2170 /* if selected aggregator node was not created, create it */
2171 if (!agg_node->valid) {
2172 status = ice_cfg_agg(port_info, agg_id, ICE_AGG_TYPE_AGG,
2173 (u8)vsi->tc_cfg.ena_tc);
2174 if (status) {
2175 dev_err(dev, "unable to create aggregator node with agg_id %u\n",
2176 agg_id);
2177 return;
2178 }
2179 /* aggregator node is created, store the needed info */
2180 agg_node->valid = true;
2181 agg_node->agg_id = agg_id;
2182 }
2183
2184 /* move VSI to corresponding aggregator node */
2185 status = ice_move_vsi_to_agg(port_info, agg_id, vsi->idx,
2186 (u8)vsi->tc_cfg.ena_tc);
2187 if (status) {
2188 dev_err(dev, "unable to move VSI idx %u into aggregator %u node",
2189 vsi->idx, agg_id);
2190 return;
2191 }
2192
2193 /* keep active children count for aggregator node */
2194 agg_node->num_vsis++;
2195
2196 /* cache the 'agg_id' in VSI, so that after reset - VSI will be moved
2197 * to aggregator node
2198 */
2199 vsi->agg_node = agg_node;
2200 dev_dbg(dev, "successfully moved VSI idx %u tc_bitmap 0x%x) into aggregator node %d which has num_vsis %u\n",
2201 vsi->idx, vsi->tc_cfg.ena_tc, vsi->agg_node->agg_id,
2202 vsi->agg_node->num_vsis);
2203}
2204
2205static int ice_vsi_cfg_tc_lan(struct ice_pf *pf, struct ice_vsi *vsi)
2206{
2207 u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2208 struct device *dev = ice_pf_to_dev(pf);
2209 int ret, i;
2210
2211 /* configure VSI nodes based on number of queues and TC's */
2212 ice_for_each_traffic_class(i) {
2213 if (!(vsi->tc_cfg.ena_tc & BIT(i)))
2214 continue;
2215
2216 if (vsi->type == ICE_VSI_CHNL) {
2217 if (!vsi->alloc_txq && vsi->num_txq)
2218 max_txqs[i] = vsi->num_txq;
2219 else
2220 max_txqs[i] = pf->num_lan_tx;
2221 } else {
2222 max_txqs[i] = vsi->alloc_txq;
2223 }
2224
2225 if (vsi->type == ICE_VSI_PF)
2226 max_txqs[i] += vsi->num_xdp_txq;
2227 }
2228
2229 dev_dbg(dev, "vsi->tc_cfg.ena_tc = %d\n", vsi->tc_cfg.ena_tc);
2230 ret = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2231 max_txqs);
2232 if (ret) {
2233 dev_err(dev, "VSI %d failed lan queue config, error %d\n",
2234 vsi->vsi_num, ret);
2235 return ret;
2236 }
2237
2238 return 0;
2239}
2240
2241/**
2242 * ice_vsi_cfg_def - configure default VSI based on the type
2243 * @vsi: pointer to VSI
2244 */
2245static int ice_vsi_cfg_def(struct ice_vsi *vsi)
2246{
2247 struct device *dev = ice_pf_to_dev(vsi->back);
2248 struct ice_pf *pf = vsi->back;
2249 int ret;
2250
2251 vsi->vsw = pf->first_sw;
2252
2253 ret = ice_vsi_alloc_def(vsi, vsi->ch);
2254 if (ret)
2255 return ret;
2256
2257 /* allocate memory for Tx/Rx ring stat pointers */
2258 ret = ice_vsi_alloc_stat_arrays(vsi);
2259 if (ret)
2260 goto unroll_vsi_alloc;
2261
2262 ice_alloc_fd_res(vsi);
2263
2264 ret = ice_vsi_get_qs(vsi);
2265 if (ret) {
2266 dev_err(dev, "Failed to allocate queues. vsi->idx = %d\n",
2267 vsi->idx);
2268 goto unroll_vsi_alloc_stat;
2269 }
2270
2271 /* set RSS capabilities */
2272 ice_vsi_set_rss_params(vsi);
2273
2274 /* set TC configuration */
2275 ice_vsi_set_tc_cfg(vsi);
2276
2277 /* create the VSI */
2278 ret = ice_vsi_init(vsi, vsi->flags);
2279 if (ret)
2280 goto unroll_get_qs;
2281
2282 ice_vsi_init_vlan_ops(vsi);
2283
2284 switch (vsi->type) {
2285 case ICE_VSI_CTRL:
2286 case ICE_VSI_SF:
2287 case ICE_VSI_PF:
2288 ret = ice_vsi_alloc_q_vectors(vsi);
2289 if (ret)
2290 goto unroll_vsi_init;
2291
2292 ret = ice_vsi_alloc_rings(vsi);
2293 if (ret)
2294 goto unroll_vector_base;
2295
2296 ret = ice_vsi_alloc_ring_stats(vsi);
2297 if (ret)
2298 goto unroll_vector_base;
2299
2300 if (ice_is_xdp_ena_vsi(vsi)) {
2301 ret = ice_vsi_determine_xdp_res(vsi);
2302 if (ret)
2303 goto unroll_vector_base;
2304 ret = ice_prepare_xdp_rings(vsi, vsi->xdp_prog,
2305 ICE_XDP_CFG_PART);
2306 if (ret)
2307 goto unroll_vector_base;
2308 }
2309
2310 ice_vsi_map_rings_to_vectors(vsi);
2311
2312 vsi->stat_offsets_loaded = false;
2313
2314 /* ICE_VSI_CTRL does not need RSS so skip RSS processing */
2315 if (vsi->type != ICE_VSI_CTRL)
2316 /* Do not exit if configuring RSS had an issue, at
2317 * least receive traffic on first queue. Hence no
2318 * need to capture return value
2319 */
2320 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2321 ice_vsi_cfg_rss_lut_key(vsi);
2322 ice_vsi_set_rss_flow_fld(vsi);
2323 }
2324 ice_init_arfs(vsi);
2325 break;
2326 case ICE_VSI_CHNL:
2327 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2328 ice_vsi_cfg_rss_lut_key(vsi);
2329 ice_vsi_set_rss_flow_fld(vsi);
2330 }
2331 break;
2332 case ICE_VSI_VF:
2333 /* VF driver will take care of creating netdev for this type and
2334 * map queues to vectors through Virtchnl, PF driver only
2335 * creates a VSI and corresponding structures for bookkeeping
2336 * purpose
2337 */
2338 ret = ice_vsi_alloc_q_vectors(vsi);
2339 if (ret)
2340 goto unroll_vsi_init;
2341
2342 ret = ice_vsi_alloc_rings(vsi);
2343 if (ret)
2344 goto unroll_alloc_q_vector;
2345
2346 ret = ice_vsi_alloc_ring_stats(vsi);
2347 if (ret)
2348 goto unroll_vector_base;
2349
2350 vsi->stat_offsets_loaded = false;
2351
2352 /* Do not exit if configuring RSS had an issue, at least
2353 * receive traffic on first queue. Hence no need to capture
2354 * return value
2355 */
2356 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2357 ice_vsi_cfg_rss_lut_key(vsi);
2358 ice_vsi_set_vf_rss_flow_fld(vsi);
2359 }
2360 break;
2361 case ICE_VSI_LB:
2362 ret = ice_vsi_alloc_rings(vsi);
2363 if (ret)
2364 goto unroll_vsi_init;
2365
2366 ret = ice_vsi_alloc_ring_stats(vsi);
2367 if (ret)
2368 goto unroll_vector_base;
2369
2370 break;
2371 default:
2372 /* clean up the resources and exit */
2373 ret = -EINVAL;
2374 goto unroll_vsi_init;
2375 }
2376
2377 return 0;
2378
2379unroll_vector_base:
2380 /* reclaim SW interrupts back to the common pool */
2381unroll_alloc_q_vector:
2382 ice_vsi_free_q_vectors(vsi);
2383unroll_vsi_init:
2384 ice_vsi_delete_from_hw(vsi);
2385unroll_get_qs:
2386 ice_vsi_put_qs(vsi);
2387unroll_vsi_alloc_stat:
2388 ice_vsi_free_stats(vsi);
2389unroll_vsi_alloc:
2390 ice_vsi_free_arrays(vsi);
2391 return ret;
2392}
2393
2394/**
2395 * ice_vsi_cfg - configure a previously allocated VSI
2396 * @vsi: pointer to VSI
2397 */
2398int ice_vsi_cfg(struct ice_vsi *vsi)
2399{
2400 struct ice_pf *pf = vsi->back;
2401 int ret;
2402
2403 if (WARN_ON(vsi->type == ICE_VSI_VF && !vsi->vf))
2404 return -EINVAL;
2405
2406 ret = ice_vsi_cfg_def(vsi);
2407 if (ret)
2408 return ret;
2409
2410 ret = ice_vsi_cfg_tc_lan(vsi->back, vsi);
2411 if (ret)
2412 ice_vsi_decfg(vsi);
2413
2414 if (vsi->type == ICE_VSI_CTRL) {
2415 if (vsi->vf) {
2416 WARN_ON(vsi->vf->ctrl_vsi_idx != ICE_NO_VSI);
2417 vsi->vf->ctrl_vsi_idx = vsi->idx;
2418 } else {
2419 WARN_ON(pf->ctrl_vsi_idx != ICE_NO_VSI);
2420 pf->ctrl_vsi_idx = vsi->idx;
2421 }
2422 }
2423
2424 return ret;
2425}
2426
2427/**
2428 * ice_vsi_decfg - remove all VSI configuration
2429 * @vsi: pointer to VSI
2430 */
2431void ice_vsi_decfg(struct ice_vsi *vsi)
2432{
2433 struct ice_pf *pf = vsi->back;
2434 int err;
2435
2436 ice_rm_vsi_lan_cfg(vsi->port_info, vsi->idx);
2437 err = ice_rm_vsi_rdma_cfg(vsi->port_info, vsi->idx);
2438 if (err)
2439 dev_err(ice_pf_to_dev(pf), "Failed to remove RDMA scheduler config for VSI %u, err %d\n",
2440 vsi->vsi_num, err);
2441
2442 if (vsi->xdp_rings)
2443 /* return value check can be skipped here, it always returns
2444 * 0 if reset is in progress
2445 */
2446 ice_destroy_xdp_rings(vsi, ICE_XDP_CFG_PART);
2447
2448 ice_vsi_clear_rings(vsi);
2449 ice_vsi_free_q_vectors(vsi);
2450 ice_vsi_put_qs(vsi);
2451 ice_vsi_free_arrays(vsi);
2452
2453 /* SR-IOV determines needed MSIX resources all at once instead of per
2454 * VSI since when VFs are spawned we know how many VFs there are and how
2455 * many interrupts each VF needs. SR-IOV MSIX resources are also
2456 * cleared in the same manner.
2457 */
2458
2459 if (vsi->type == ICE_VSI_VF &&
2460 vsi->agg_node && vsi->agg_node->valid)
2461 vsi->agg_node->num_vsis--;
2462}
2463
2464/**
2465 * ice_vsi_setup - Set up a VSI by a given type
2466 * @pf: board private structure
2467 * @params: parameters to use when creating the VSI
2468 *
2469 * This allocates the sw VSI structure and its queue resources.
2470 *
2471 * Returns pointer to the successfully allocated and configured VSI sw struct on
2472 * success, NULL on failure.
2473 */
2474struct ice_vsi *
2475ice_vsi_setup(struct ice_pf *pf, struct ice_vsi_cfg_params *params)
2476{
2477 struct device *dev = ice_pf_to_dev(pf);
2478 struct ice_vsi *vsi;
2479 int ret;
2480
2481 /* ice_vsi_setup can only initialize a new VSI, and we must have
2482 * a port_info structure for it.
2483 */
2484 if (WARN_ON(!(params->flags & ICE_VSI_FLAG_INIT)) ||
2485 WARN_ON(!params->port_info))
2486 return NULL;
2487
2488 vsi = ice_vsi_alloc(pf);
2489 if (!vsi) {
2490 dev_err(dev, "could not allocate VSI\n");
2491 return NULL;
2492 }
2493
2494 vsi->params = *params;
2495 ret = ice_vsi_cfg(vsi);
2496 if (ret)
2497 goto err_vsi_cfg;
2498
2499 /* Add switch rule to drop all Tx Flow Control Frames, of look up
2500 * type ETHERTYPE from VSIs, and restrict malicious VF from sending
2501 * out PAUSE or PFC frames. If enabled, FW can still send FC frames.
2502 * The rule is added once for PF VSI in order to create appropriate
2503 * recipe, since VSI/VSI list is ignored with drop action...
2504 * Also add rules to handle LLDP Tx packets. Tx LLDP packets need to
2505 * be dropped so that VFs cannot send LLDP packets to reconfig DCB
2506 * settings in the HW.
2507 */
2508 if (!ice_is_safe_mode(pf) && vsi->type == ICE_VSI_PF) {
2509 ice_fltr_add_eth(vsi, ETH_P_PAUSE, ICE_FLTR_TX,
2510 ICE_DROP_PACKET);
2511 ice_cfg_sw_lldp(vsi, true, true);
2512 }
2513
2514 if (!vsi->agg_node)
2515 ice_set_agg_vsi(vsi);
2516
2517 return vsi;
2518
2519err_vsi_cfg:
2520 ice_vsi_free(vsi);
2521
2522 return NULL;
2523}
2524
2525/**
2526 * ice_vsi_release_msix - Clear the queue to Interrupt mapping in HW
2527 * @vsi: the VSI being cleaned up
2528 */
2529static void ice_vsi_release_msix(struct ice_vsi *vsi)
2530{
2531 struct ice_pf *pf = vsi->back;
2532 struct ice_hw *hw = &pf->hw;
2533 u32 txq = 0;
2534 u32 rxq = 0;
2535 int i, q;
2536
2537 ice_for_each_q_vector(vsi, i) {
2538 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2539
2540 ice_write_intrl(q_vector, 0);
2541 for (q = 0; q < q_vector->num_ring_tx; q++) {
2542 ice_write_itr(&q_vector->tx, 0);
2543 wr32(hw, QINT_TQCTL(vsi->txq_map[txq]), 0);
2544 if (vsi->xdp_rings) {
2545 u32 xdp_txq = txq + vsi->num_xdp_txq;
2546
2547 wr32(hw, QINT_TQCTL(vsi->txq_map[xdp_txq]), 0);
2548 }
2549 txq++;
2550 }
2551
2552 for (q = 0; q < q_vector->num_ring_rx; q++) {
2553 ice_write_itr(&q_vector->rx, 0);
2554 wr32(hw, QINT_RQCTL(vsi->rxq_map[rxq]), 0);
2555 rxq++;
2556 }
2557 }
2558
2559 ice_flush(hw);
2560}
2561
2562/**
2563 * ice_vsi_free_irq - Free the IRQ association with the OS
2564 * @vsi: the VSI being configured
2565 */
2566void ice_vsi_free_irq(struct ice_vsi *vsi)
2567{
2568 struct ice_pf *pf = vsi->back;
2569 int i;
2570
2571 if (!vsi->q_vectors || !vsi->irqs_ready)
2572 return;
2573
2574 ice_vsi_release_msix(vsi);
2575 if (vsi->type == ICE_VSI_VF)
2576 return;
2577
2578 vsi->irqs_ready = false;
2579 ice_free_cpu_rx_rmap(vsi);
2580
2581 ice_for_each_q_vector(vsi, i) {
2582 int irq_num;
2583
2584 irq_num = vsi->q_vectors[i]->irq.virq;
2585
2586 /* free only the irqs that were actually requested */
2587 if (!vsi->q_vectors[i] ||
2588 !(vsi->q_vectors[i]->num_ring_tx ||
2589 vsi->q_vectors[i]->num_ring_rx))
2590 continue;
2591
2592 /* clear the affinity notifier in the IRQ descriptor */
2593 if (!IS_ENABLED(CONFIG_RFS_ACCEL))
2594 irq_set_affinity_notifier(irq_num, NULL);
2595
2596 /* clear the affinity_hint in the IRQ descriptor */
2597 irq_update_affinity_hint(irq_num, NULL);
2598 synchronize_irq(irq_num);
2599 devm_free_irq(ice_pf_to_dev(pf), irq_num, vsi->q_vectors[i]);
2600 }
2601}
2602
2603/**
2604 * ice_vsi_free_tx_rings - Free Tx resources for VSI queues
2605 * @vsi: the VSI having resources freed
2606 */
2607void ice_vsi_free_tx_rings(struct ice_vsi *vsi)
2608{
2609 int i;
2610
2611 if (!vsi->tx_rings)
2612 return;
2613
2614 ice_for_each_txq(vsi, i)
2615 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
2616 ice_free_tx_ring(vsi->tx_rings[i]);
2617}
2618
2619/**
2620 * ice_vsi_free_rx_rings - Free Rx resources for VSI queues
2621 * @vsi: the VSI having resources freed
2622 */
2623void ice_vsi_free_rx_rings(struct ice_vsi *vsi)
2624{
2625 int i;
2626
2627 if (!vsi->rx_rings)
2628 return;
2629
2630 ice_for_each_rxq(vsi, i)
2631 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
2632 ice_free_rx_ring(vsi->rx_rings[i]);
2633}
2634
2635/**
2636 * ice_vsi_close - Shut down a VSI
2637 * @vsi: the VSI being shut down
2638 */
2639void ice_vsi_close(struct ice_vsi *vsi)
2640{
2641 if (!test_and_set_bit(ICE_VSI_DOWN, vsi->state))
2642 ice_down(vsi);
2643
2644 ice_vsi_clear_napi_queues(vsi);
2645 ice_vsi_free_irq(vsi);
2646 ice_vsi_free_tx_rings(vsi);
2647 ice_vsi_free_rx_rings(vsi);
2648}
2649
2650/**
2651 * ice_ena_vsi - resume a VSI
2652 * @vsi: the VSI being resume
2653 * @locked: is the rtnl_lock already held
2654 */
2655int ice_ena_vsi(struct ice_vsi *vsi, bool locked)
2656{
2657 int err = 0;
2658
2659 if (!test_bit(ICE_VSI_NEEDS_RESTART, vsi->state))
2660 return 0;
2661
2662 clear_bit(ICE_VSI_NEEDS_RESTART, vsi->state);
2663
2664 if (vsi->netdev && (vsi->type == ICE_VSI_PF ||
2665 vsi->type == ICE_VSI_SF)) {
2666 if (netif_running(vsi->netdev)) {
2667 if (!locked)
2668 rtnl_lock();
2669
2670 err = ice_open_internal(vsi->netdev);
2671
2672 if (!locked)
2673 rtnl_unlock();
2674 }
2675 } else if (vsi->type == ICE_VSI_CTRL) {
2676 err = ice_vsi_open_ctrl(vsi);
2677 }
2678
2679 return err;
2680}
2681
2682/**
2683 * ice_dis_vsi - pause a VSI
2684 * @vsi: the VSI being paused
2685 * @locked: is the rtnl_lock already held
2686 */
2687void ice_dis_vsi(struct ice_vsi *vsi, bool locked)
2688{
2689 bool already_down = test_bit(ICE_VSI_DOWN, vsi->state);
2690
2691 set_bit(ICE_VSI_NEEDS_RESTART, vsi->state);
2692
2693 if (vsi->netdev && (vsi->type == ICE_VSI_PF ||
2694 vsi->type == ICE_VSI_SF)) {
2695 if (netif_running(vsi->netdev)) {
2696 if (!locked)
2697 rtnl_lock();
2698 already_down = test_bit(ICE_VSI_DOWN, vsi->state);
2699 if (!already_down)
2700 ice_vsi_close(vsi);
2701
2702 if (!locked)
2703 rtnl_unlock();
2704 } else if (!already_down) {
2705 ice_vsi_close(vsi);
2706 }
2707 } else if (vsi->type == ICE_VSI_CTRL && !already_down) {
2708 ice_vsi_close(vsi);
2709 }
2710}
2711
2712/**
2713 * ice_vsi_set_napi_queues - associate netdev queues with napi
2714 * @vsi: VSI pointer
2715 *
2716 * Associate queue[s] with napi for all vectors.
2717 * The caller must hold rtnl_lock.
2718 */
2719void ice_vsi_set_napi_queues(struct ice_vsi *vsi)
2720{
2721 struct net_device *netdev = vsi->netdev;
2722 int q_idx, v_idx;
2723
2724 if (!netdev)
2725 return;
2726
2727 ice_for_each_rxq(vsi, q_idx)
2728 netif_queue_set_napi(netdev, q_idx, NETDEV_QUEUE_TYPE_RX,
2729 &vsi->rx_rings[q_idx]->q_vector->napi);
2730
2731 ice_for_each_txq(vsi, q_idx)
2732 netif_queue_set_napi(netdev, q_idx, NETDEV_QUEUE_TYPE_TX,
2733 &vsi->tx_rings[q_idx]->q_vector->napi);
2734 /* Also set the interrupt number for the NAPI */
2735 ice_for_each_q_vector(vsi, v_idx) {
2736 struct ice_q_vector *q_vector = vsi->q_vectors[v_idx];
2737
2738 netif_napi_set_irq(&q_vector->napi, q_vector->irq.virq);
2739 }
2740}
2741
2742/**
2743 * ice_vsi_clear_napi_queues - dissociate netdev queues from napi
2744 * @vsi: VSI pointer
2745 *
2746 * Clear the association between all VSI queues queue[s] and napi.
2747 * The caller must hold rtnl_lock.
2748 */
2749void ice_vsi_clear_napi_queues(struct ice_vsi *vsi)
2750{
2751 struct net_device *netdev = vsi->netdev;
2752 int q_idx;
2753
2754 if (!netdev)
2755 return;
2756
2757 ice_for_each_txq(vsi, q_idx)
2758 netif_queue_set_napi(netdev, q_idx, NETDEV_QUEUE_TYPE_TX, NULL);
2759
2760 ice_for_each_rxq(vsi, q_idx)
2761 netif_queue_set_napi(netdev, q_idx, NETDEV_QUEUE_TYPE_RX, NULL);
2762}
2763
2764/**
2765 * ice_napi_add - register NAPI handler for the VSI
2766 * @vsi: VSI for which NAPI handler is to be registered
2767 *
2768 * This function is only called in the driver's load path. Registering the NAPI
2769 * handler is done in ice_vsi_alloc_q_vector() for all other cases (i.e. resume,
2770 * reset/rebuild, etc.)
2771 */
2772void ice_napi_add(struct ice_vsi *vsi)
2773{
2774 int v_idx;
2775
2776 if (!vsi->netdev)
2777 return;
2778
2779 ice_for_each_q_vector(vsi, v_idx)
2780 netif_napi_add_config(vsi->netdev,
2781 &vsi->q_vectors[v_idx]->napi,
2782 ice_napi_poll,
2783 v_idx);
2784}
2785
2786/**
2787 * ice_vsi_release - Delete a VSI and free its resources
2788 * @vsi: the VSI being removed
2789 *
2790 * Returns 0 on success or < 0 on error
2791 */
2792int ice_vsi_release(struct ice_vsi *vsi)
2793{
2794 struct ice_pf *pf;
2795
2796 if (!vsi->back)
2797 return -ENODEV;
2798 pf = vsi->back;
2799
2800 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags))
2801 ice_rss_clean(vsi);
2802
2803 ice_vsi_close(vsi);
2804
2805 /* The Rx rule will only exist to remove if the LLDP FW
2806 * engine is currently stopped
2807 */
2808 if (!ice_is_safe_mode(pf) && vsi->type == ICE_VSI_PF &&
2809 !test_bit(ICE_FLAG_FW_LLDP_AGENT, pf->flags))
2810 ice_cfg_sw_lldp(vsi, false, false);
2811
2812 ice_vsi_decfg(vsi);
2813
2814 /* retain SW VSI data structure since it is needed to unregister and
2815 * free VSI netdev when PF is not in reset recovery pending state,\
2816 * for ex: during rmmod.
2817 */
2818 if (!ice_is_reset_in_progress(pf->state))
2819 ice_vsi_delete(vsi);
2820
2821 return 0;
2822}
2823
2824/**
2825 * ice_vsi_rebuild_get_coalesce - get coalesce from all q_vectors
2826 * @vsi: VSI connected with q_vectors
2827 * @coalesce: array of struct with stored coalesce
2828 *
2829 * Returns array size.
2830 */
2831static int
2832ice_vsi_rebuild_get_coalesce(struct ice_vsi *vsi,
2833 struct ice_coalesce_stored *coalesce)
2834{
2835 int i;
2836
2837 ice_for_each_q_vector(vsi, i) {
2838 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2839
2840 coalesce[i].itr_tx = q_vector->tx.itr_settings;
2841 coalesce[i].itr_rx = q_vector->rx.itr_settings;
2842 coalesce[i].intrl = q_vector->intrl;
2843
2844 if (i < vsi->num_txq)
2845 coalesce[i].tx_valid = true;
2846 if (i < vsi->num_rxq)
2847 coalesce[i].rx_valid = true;
2848 }
2849
2850 return vsi->num_q_vectors;
2851}
2852
2853/**
2854 * ice_vsi_rebuild_set_coalesce - set coalesce from earlier saved arrays
2855 * @vsi: VSI connected with q_vectors
2856 * @coalesce: pointer to array of struct with stored coalesce
2857 * @size: size of coalesce array
2858 *
2859 * Before this function, ice_vsi_rebuild_get_coalesce should be called to save
2860 * ITR params in arrays. If size is 0 or coalesce wasn't stored set coalesce
2861 * to default value.
2862 */
2863static void
2864ice_vsi_rebuild_set_coalesce(struct ice_vsi *vsi,
2865 struct ice_coalesce_stored *coalesce, int size)
2866{
2867 struct ice_ring_container *rc;
2868 int i;
2869
2870 if ((size && !coalesce) || !vsi)
2871 return;
2872
2873 /* There are a couple of cases that have to be handled here:
2874 * 1. The case where the number of queue vectors stays the same, but
2875 * the number of Tx or Rx rings changes (the first for loop)
2876 * 2. The case where the number of queue vectors increased (the
2877 * second for loop)
2878 */
2879 for (i = 0; i < size && i < vsi->num_q_vectors; i++) {
2880 /* There are 2 cases to handle here and they are the same for
2881 * both Tx and Rx:
2882 * if the entry was valid previously (coalesce[i].[tr]x_valid
2883 * and the loop variable is less than the number of rings
2884 * allocated, then write the previous values
2885 *
2886 * if the entry was not valid previously, but the number of
2887 * rings is less than are allocated (this means the number of
2888 * rings increased from previously), then write out the
2889 * values in the first element
2890 *
2891 * Also, always write the ITR, even if in ITR_IS_DYNAMIC
2892 * as there is no harm because the dynamic algorithm
2893 * will just overwrite.
2894 */
2895 if (i < vsi->alloc_rxq && coalesce[i].rx_valid) {
2896 rc = &vsi->q_vectors[i]->rx;
2897 rc->itr_settings = coalesce[i].itr_rx;
2898 ice_write_itr(rc, rc->itr_setting);
2899 } else if (i < vsi->alloc_rxq) {
2900 rc = &vsi->q_vectors[i]->rx;
2901 rc->itr_settings = coalesce[0].itr_rx;
2902 ice_write_itr(rc, rc->itr_setting);
2903 }
2904
2905 if (i < vsi->alloc_txq && coalesce[i].tx_valid) {
2906 rc = &vsi->q_vectors[i]->tx;
2907 rc->itr_settings = coalesce[i].itr_tx;
2908 ice_write_itr(rc, rc->itr_setting);
2909 } else if (i < vsi->alloc_txq) {
2910 rc = &vsi->q_vectors[i]->tx;
2911 rc->itr_settings = coalesce[0].itr_tx;
2912 ice_write_itr(rc, rc->itr_setting);
2913 }
2914
2915 vsi->q_vectors[i]->intrl = coalesce[i].intrl;
2916 ice_set_q_vector_intrl(vsi->q_vectors[i]);
2917 }
2918
2919 /* the number of queue vectors increased so write whatever is in
2920 * the first element
2921 */
2922 for (; i < vsi->num_q_vectors; i++) {
2923 /* transmit */
2924 rc = &vsi->q_vectors[i]->tx;
2925 rc->itr_settings = coalesce[0].itr_tx;
2926 ice_write_itr(rc, rc->itr_setting);
2927
2928 /* receive */
2929 rc = &vsi->q_vectors[i]->rx;
2930 rc->itr_settings = coalesce[0].itr_rx;
2931 ice_write_itr(rc, rc->itr_setting);
2932
2933 vsi->q_vectors[i]->intrl = coalesce[0].intrl;
2934 ice_set_q_vector_intrl(vsi->q_vectors[i]);
2935 }
2936}
2937
2938/**
2939 * ice_vsi_realloc_stat_arrays - Frees unused stat structures or alloc new ones
2940 * @vsi: VSI pointer
2941 */
2942static int
2943ice_vsi_realloc_stat_arrays(struct ice_vsi *vsi)
2944{
2945 u16 req_txq = vsi->req_txq ? vsi->req_txq : vsi->alloc_txq;
2946 u16 req_rxq = vsi->req_rxq ? vsi->req_rxq : vsi->alloc_rxq;
2947 struct ice_ring_stats **tx_ring_stats;
2948 struct ice_ring_stats **rx_ring_stats;
2949 struct ice_vsi_stats *vsi_stat;
2950 struct ice_pf *pf = vsi->back;
2951 u16 prev_txq = vsi->alloc_txq;
2952 u16 prev_rxq = vsi->alloc_rxq;
2953 int i;
2954
2955 vsi_stat = pf->vsi_stats[vsi->idx];
2956
2957 if (req_txq < prev_txq) {
2958 for (i = req_txq; i < prev_txq; i++) {
2959 if (vsi_stat->tx_ring_stats[i]) {
2960 kfree_rcu(vsi_stat->tx_ring_stats[i], rcu);
2961 WRITE_ONCE(vsi_stat->tx_ring_stats[i], NULL);
2962 }
2963 }
2964 }
2965
2966 tx_ring_stats = vsi_stat->tx_ring_stats;
2967 vsi_stat->tx_ring_stats =
2968 krealloc_array(vsi_stat->tx_ring_stats, req_txq,
2969 sizeof(*vsi_stat->tx_ring_stats),
2970 GFP_KERNEL | __GFP_ZERO);
2971 if (!vsi_stat->tx_ring_stats) {
2972 vsi_stat->tx_ring_stats = tx_ring_stats;
2973 return -ENOMEM;
2974 }
2975
2976 if (req_rxq < prev_rxq) {
2977 for (i = req_rxq; i < prev_rxq; i++) {
2978 if (vsi_stat->rx_ring_stats[i]) {
2979 kfree_rcu(vsi_stat->rx_ring_stats[i], rcu);
2980 WRITE_ONCE(vsi_stat->rx_ring_stats[i], NULL);
2981 }
2982 }
2983 }
2984
2985 rx_ring_stats = vsi_stat->rx_ring_stats;
2986 vsi_stat->rx_ring_stats =
2987 krealloc_array(vsi_stat->rx_ring_stats, req_rxq,
2988 sizeof(*vsi_stat->rx_ring_stats),
2989 GFP_KERNEL | __GFP_ZERO);
2990 if (!vsi_stat->rx_ring_stats) {
2991 vsi_stat->rx_ring_stats = rx_ring_stats;
2992 return -ENOMEM;
2993 }
2994
2995 return 0;
2996}
2997
2998/**
2999 * ice_vsi_rebuild - Rebuild VSI after reset
3000 * @vsi: VSI to be rebuild
3001 * @vsi_flags: flags used for VSI rebuild flow
3002 *
3003 * Set vsi_flags to ICE_VSI_FLAG_INIT to initialize a new VSI, or
3004 * ICE_VSI_FLAG_NO_INIT to rebuild an existing VSI in hardware.
3005 *
3006 * Returns 0 on success and negative value on failure
3007 */
3008int ice_vsi_rebuild(struct ice_vsi *vsi, u32 vsi_flags)
3009{
3010 struct ice_coalesce_stored *coalesce;
3011 int prev_num_q_vectors;
3012 struct ice_pf *pf;
3013 int ret;
3014
3015 if (!vsi)
3016 return -EINVAL;
3017
3018 vsi->flags = vsi_flags;
3019 pf = vsi->back;
3020 if (WARN_ON(vsi->type == ICE_VSI_VF && !vsi->vf))
3021 return -EINVAL;
3022
3023 mutex_lock(&vsi->xdp_state_lock);
3024
3025 ret = ice_vsi_realloc_stat_arrays(vsi);
3026 if (ret)
3027 goto unlock;
3028
3029 ice_vsi_decfg(vsi);
3030 ret = ice_vsi_cfg_def(vsi);
3031 if (ret)
3032 goto unlock;
3033
3034 coalesce = kcalloc(vsi->num_q_vectors,
3035 sizeof(struct ice_coalesce_stored), GFP_KERNEL);
3036 if (!coalesce) {
3037 ret = -ENOMEM;
3038 goto decfg;
3039 }
3040
3041 prev_num_q_vectors = ice_vsi_rebuild_get_coalesce(vsi, coalesce);
3042
3043 ret = ice_vsi_cfg_tc_lan(pf, vsi);
3044 if (ret) {
3045 if (vsi_flags & ICE_VSI_FLAG_INIT) {
3046 ret = -EIO;
3047 goto free_coalesce;
3048 }
3049
3050 ret = ice_schedule_reset(pf, ICE_RESET_PFR);
3051 goto free_coalesce;
3052 }
3053
3054 ice_vsi_rebuild_set_coalesce(vsi, coalesce, prev_num_q_vectors);
3055 clear_bit(ICE_VSI_REBUILD_PENDING, vsi->state);
3056
3057free_coalesce:
3058 kfree(coalesce);
3059decfg:
3060 if (ret)
3061 ice_vsi_decfg(vsi);
3062unlock:
3063 mutex_unlock(&vsi->xdp_state_lock);
3064 return ret;
3065}
3066
3067/**
3068 * ice_is_reset_in_progress - check for a reset in progress
3069 * @state: PF state field
3070 */
3071bool ice_is_reset_in_progress(unsigned long *state)
3072{
3073 return test_bit(ICE_RESET_OICR_RECV, state) ||
3074 test_bit(ICE_PFR_REQ, state) ||
3075 test_bit(ICE_CORER_REQ, state) ||
3076 test_bit(ICE_GLOBR_REQ, state);
3077}
3078
3079/**
3080 * ice_wait_for_reset - Wait for driver to finish reset and rebuild
3081 * @pf: pointer to the PF structure
3082 * @timeout: length of time to wait, in jiffies
3083 *
3084 * Wait (sleep) for a short time until the driver finishes cleaning up from
3085 * a device reset. The caller must be able to sleep. Use this to delay
3086 * operations that could fail while the driver is cleaning up after a device
3087 * reset.
3088 *
3089 * Returns 0 on success, -EBUSY if the reset is not finished within the
3090 * timeout, and -ERESTARTSYS if the thread was interrupted.
3091 */
3092int ice_wait_for_reset(struct ice_pf *pf, unsigned long timeout)
3093{
3094 long ret;
3095
3096 ret = wait_event_interruptible_timeout(pf->reset_wait_queue,
3097 !ice_is_reset_in_progress(pf->state),
3098 timeout);
3099 if (ret < 0)
3100 return ret;
3101 else if (!ret)
3102 return -EBUSY;
3103 else
3104 return 0;
3105}
3106
3107/**
3108 * ice_vsi_update_q_map - update our copy of the VSI info with new queue map
3109 * @vsi: VSI being configured
3110 * @ctx: the context buffer returned from AQ VSI update command
3111 */
3112static void ice_vsi_update_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctx)
3113{
3114 vsi->info.mapping_flags = ctx->info.mapping_flags;
3115 memcpy(&vsi->info.q_mapping, &ctx->info.q_mapping,
3116 sizeof(vsi->info.q_mapping));
3117 memcpy(&vsi->info.tc_mapping, ctx->info.tc_mapping,
3118 sizeof(vsi->info.tc_mapping));
3119}
3120
3121/**
3122 * ice_vsi_cfg_netdev_tc - Setup the netdev TC configuration
3123 * @vsi: the VSI being configured
3124 * @ena_tc: TC map to be enabled
3125 */
3126void ice_vsi_cfg_netdev_tc(struct ice_vsi *vsi, u8 ena_tc)
3127{
3128 struct net_device *netdev = vsi->netdev;
3129 struct ice_pf *pf = vsi->back;
3130 int numtc = vsi->tc_cfg.numtc;
3131 struct ice_dcbx_cfg *dcbcfg;
3132 u8 netdev_tc;
3133 int i;
3134
3135 if (!netdev)
3136 return;
3137
3138 /* CHNL VSI doesn't have it's own netdev, hence, no netdev_tc */
3139 if (vsi->type == ICE_VSI_CHNL)
3140 return;
3141
3142 if (!ena_tc) {
3143 netdev_reset_tc(netdev);
3144 return;
3145 }
3146
3147 if (vsi->type == ICE_VSI_PF && ice_is_adq_active(pf))
3148 numtc = vsi->all_numtc;
3149
3150 if (netdev_set_num_tc(netdev, numtc))
3151 return;
3152
3153 dcbcfg = &pf->hw.port_info->qos_cfg.local_dcbx_cfg;
3154
3155 ice_for_each_traffic_class(i)
3156 if (vsi->tc_cfg.ena_tc & BIT(i))
3157 netdev_set_tc_queue(netdev,
3158 vsi->tc_cfg.tc_info[i].netdev_tc,
3159 vsi->tc_cfg.tc_info[i].qcount_tx,
3160 vsi->tc_cfg.tc_info[i].qoffset);
3161 /* setup TC queue map for CHNL TCs */
3162 ice_for_each_chnl_tc(i) {
3163 if (!(vsi->all_enatc & BIT(i)))
3164 break;
3165 if (!vsi->mqprio_qopt.qopt.count[i])
3166 break;
3167 netdev_set_tc_queue(netdev, i,
3168 vsi->mqprio_qopt.qopt.count[i],
3169 vsi->mqprio_qopt.qopt.offset[i]);
3170 }
3171
3172 if (test_bit(ICE_FLAG_TC_MQPRIO, pf->flags))
3173 return;
3174
3175 for (i = 0; i < ICE_MAX_USER_PRIORITY; i++) {
3176 u8 ets_tc = dcbcfg->etscfg.prio_table[i];
3177
3178 /* Get the mapped netdev TC# for the UP */
3179 netdev_tc = vsi->tc_cfg.tc_info[ets_tc].netdev_tc;
3180 netdev_set_prio_tc_map(netdev, i, netdev_tc);
3181 }
3182}
3183
3184/**
3185 * ice_vsi_setup_q_map_mqprio - Prepares mqprio based tc_config
3186 * @vsi: the VSI being configured,
3187 * @ctxt: VSI context structure
3188 * @ena_tc: number of traffic classes to enable
3189 *
3190 * Prepares VSI tc_config to have queue configurations based on MQPRIO options.
3191 */
3192static int
3193ice_vsi_setup_q_map_mqprio(struct ice_vsi *vsi, struct ice_vsi_ctx *ctxt,
3194 u8 ena_tc)
3195{
3196 u16 pow, offset = 0, qcount_tx = 0, qcount_rx = 0, qmap;
3197 u16 tc0_offset = vsi->mqprio_qopt.qopt.offset[0];
3198 int tc0_qcount = vsi->mqprio_qopt.qopt.count[0];
3199 u16 new_txq, new_rxq;
3200 u8 netdev_tc = 0;
3201 int i;
3202
3203 vsi->tc_cfg.ena_tc = ena_tc ? ena_tc : 1;
3204
3205 pow = order_base_2(tc0_qcount);
3206 qmap = FIELD_PREP(ICE_AQ_VSI_TC_Q_OFFSET_M, tc0_offset);
3207 qmap |= FIELD_PREP(ICE_AQ_VSI_TC_Q_NUM_M, pow);
3208
3209 ice_for_each_traffic_class(i) {
3210 if (!(vsi->tc_cfg.ena_tc & BIT(i))) {
3211 /* TC is not enabled */
3212 vsi->tc_cfg.tc_info[i].qoffset = 0;
3213 vsi->tc_cfg.tc_info[i].qcount_rx = 1;
3214 vsi->tc_cfg.tc_info[i].qcount_tx = 1;
3215 vsi->tc_cfg.tc_info[i].netdev_tc = 0;
3216 ctxt->info.tc_mapping[i] = 0;
3217 continue;
3218 }
3219
3220 offset = vsi->mqprio_qopt.qopt.offset[i];
3221 qcount_rx = vsi->mqprio_qopt.qopt.count[i];
3222 qcount_tx = vsi->mqprio_qopt.qopt.count[i];
3223 vsi->tc_cfg.tc_info[i].qoffset = offset;
3224 vsi->tc_cfg.tc_info[i].qcount_rx = qcount_rx;
3225 vsi->tc_cfg.tc_info[i].qcount_tx = qcount_tx;
3226 vsi->tc_cfg.tc_info[i].netdev_tc = netdev_tc++;
3227 }
3228
3229 if (vsi->all_numtc && vsi->all_numtc != vsi->tc_cfg.numtc) {
3230 ice_for_each_chnl_tc(i) {
3231 if (!(vsi->all_enatc & BIT(i)))
3232 continue;
3233 offset = vsi->mqprio_qopt.qopt.offset[i];
3234 qcount_rx = vsi->mqprio_qopt.qopt.count[i];
3235 qcount_tx = vsi->mqprio_qopt.qopt.count[i];
3236 }
3237 }
3238
3239 new_txq = offset + qcount_tx;
3240 if (new_txq > vsi->alloc_txq) {
3241 dev_err(ice_pf_to_dev(vsi->back), "Trying to use more Tx queues (%u), than were allocated (%u)!\n",
3242 new_txq, vsi->alloc_txq);
3243 return -EINVAL;
3244 }
3245
3246 new_rxq = offset + qcount_rx;
3247 if (new_rxq > vsi->alloc_rxq) {
3248 dev_err(ice_pf_to_dev(vsi->back), "Trying to use more Rx queues (%u), than were allocated (%u)!\n",
3249 new_rxq, vsi->alloc_rxq);
3250 return -EINVAL;
3251 }
3252
3253 /* Set actual Tx/Rx queue pairs */
3254 vsi->num_txq = new_txq;
3255 vsi->num_rxq = new_rxq;
3256
3257 /* Setup queue TC[0].qmap for given VSI context */
3258 ctxt->info.tc_mapping[0] = cpu_to_le16(qmap);
3259 ctxt->info.q_mapping[0] = cpu_to_le16(vsi->rxq_map[0]);
3260 ctxt->info.q_mapping[1] = cpu_to_le16(tc0_qcount);
3261
3262 /* Find queue count available for channel VSIs and starting offset
3263 * for channel VSIs
3264 */
3265 if (tc0_qcount && tc0_qcount < vsi->num_rxq) {
3266 vsi->cnt_q_avail = vsi->num_rxq - tc0_qcount;
3267 vsi->next_base_q = tc0_qcount;
3268 }
3269 dev_dbg(ice_pf_to_dev(vsi->back), "vsi->num_txq = %d\n", vsi->num_txq);
3270 dev_dbg(ice_pf_to_dev(vsi->back), "vsi->num_rxq = %d\n", vsi->num_rxq);
3271 dev_dbg(ice_pf_to_dev(vsi->back), "all_numtc %u, all_enatc: 0x%04x, tc_cfg.numtc %u\n",
3272 vsi->all_numtc, vsi->all_enatc, vsi->tc_cfg.numtc);
3273
3274 return 0;
3275}
3276
3277/**
3278 * ice_vsi_cfg_tc - Configure VSI Tx Sched for given TC map
3279 * @vsi: VSI to be configured
3280 * @ena_tc: TC bitmap
3281 *
3282 * VSI queues expected to be quiesced before calling this function
3283 */
3284int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc)
3285{
3286 u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
3287 struct ice_pf *pf = vsi->back;
3288 struct ice_tc_cfg old_tc_cfg;
3289 struct ice_vsi_ctx *ctx;
3290 struct device *dev;
3291 int i, ret = 0;
3292 u8 num_tc = 0;
3293
3294 dev = ice_pf_to_dev(pf);
3295 if (vsi->tc_cfg.ena_tc == ena_tc &&
3296 vsi->mqprio_qopt.mode != TC_MQPRIO_MODE_CHANNEL)
3297 return 0;
3298
3299 ice_for_each_traffic_class(i) {
3300 /* build bitmap of enabled TCs */
3301 if (ena_tc & BIT(i))
3302 num_tc++;
3303 /* populate max_txqs per TC */
3304 max_txqs[i] = vsi->alloc_txq;
3305 /* Update max_txqs if it is CHNL VSI, because alloc_t[r]xq are
3306 * zero for CHNL VSI, hence use num_txq instead as max_txqs
3307 */
3308 if (vsi->type == ICE_VSI_CHNL &&
3309 test_bit(ICE_FLAG_TC_MQPRIO, pf->flags))
3310 max_txqs[i] = vsi->num_txq;
3311 }
3312
3313 memcpy(&old_tc_cfg, &vsi->tc_cfg, sizeof(old_tc_cfg));
3314 vsi->tc_cfg.ena_tc = ena_tc;
3315 vsi->tc_cfg.numtc = num_tc;
3316
3317 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
3318 if (!ctx)
3319 return -ENOMEM;
3320
3321 ctx->vf_num = 0;
3322 ctx->info = vsi->info;
3323
3324 if (vsi->type == ICE_VSI_PF &&
3325 test_bit(ICE_FLAG_TC_MQPRIO, pf->flags))
3326 ret = ice_vsi_setup_q_map_mqprio(vsi, ctx, ena_tc);
3327 else
3328 ret = ice_vsi_setup_q_map(vsi, ctx);
3329
3330 if (ret) {
3331 memcpy(&vsi->tc_cfg, &old_tc_cfg, sizeof(vsi->tc_cfg));
3332 goto out;
3333 }
3334
3335 /* must to indicate which section of VSI context are being modified */
3336 ctx->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
3337 ret = ice_update_vsi(&pf->hw, vsi->idx, ctx, NULL);
3338 if (ret) {
3339 dev_info(dev, "Failed VSI Update\n");
3340 goto out;
3341 }
3342
3343 if (vsi->type == ICE_VSI_PF &&
3344 test_bit(ICE_FLAG_TC_MQPRIO, pf->flags))
3345 ret = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, 1, max_txqs);
3346 else
3347 ret = ice_cfg_vsi_lan(vsi->port_info, vsi->idx,
3348 vsi->tc_cfg.ena_tc, max_txqs);
3349
3350 if (ret) {
3351 dev_err(dev, "VSI %d failed TC config, error %d\n",
3352 vsi->vsi_num, ret);
3353 goto out;
3354 }
3355 ice_vsi_update_q_map(vsi, ctx);
3356 vsi->info.valid_sections = 0;
3357
3358 ice_vsi_cfg_netdev_tc(vsi, ena_tc);
3359out:
3360 kfree(ctx);
3361 return ret;
3362}
3363
3364/**
3365 * ice_update_ring_stats - Update ring statistics
3366 * @stats: stats to be updated
3367 * @pkts: number of processed packets
3368 * @bytes: number of processed bytes
3369 *
3370 * This function assumes that caller has acquired a u64_stats_sync lock.
3371 */
3372static void ice_update_ring_stats(struct ice_q_stats *stats, u64 pkts, u64 bytes)
3373{
3374 stats->bytes += bytes;
3375 stats->pkts += pkts;
3376}
3377
3378/**
3379 * ice_update_tx_ring_stats - Update Tx ring specific counters
3380 * @tx_ring: ring to update
3381 * @pkts: number of processed packets
3382 * @bytes: number of processed bytes
3383 */
3384void ice_update_tx_ring_stats(struct ice_tx_ring *tx_ring, u64 pkts, u64 bytes)
3385{
3386 u64_stats_update_begin(&tx_ring->ring_stats->syncp);
3387 ice_update_ring_stats(&tx_ring->ring_stats->stats, pkts, bytes);
3388 u64_stats_update_end(&tx_ring->ring_stats->syncp);
3389}
3390
3391/**
3392 * ice_update_rx_ring_stats - Update Rx ring specific counters
3393 * @rx_ring: ring to update
3394 * @pkts: number of processed packets
3395 * @bytes: number of processed bytes
3396 */
3397void ice_update_rx_ring_stats(struct ice_rx_ring *rx_ring, u64 pkts, u64 bytes)
3398{
3399 u64_stats_update_begin(&rx_ring->ring_stats->syncp);
3400 ice_update_ring_stats(&rx_ring->ring_stats->stats, pkts, bytes);
3401 u64_stats_update_end(&rx_ring->ring_stats->syncp);
3402}
3403
3404/**
3405 * ice_is_dflt_vsi_in_use - check if the default forwarding VSI is being used
3406 * @pi: port info of the switch with default VSI
3407 *
3408 * Return true if the there is a single VSI in default forwarding VSI list
3409 */
3410bool ice_is_dflt_vsi_in_use(struct ice_port_info *pi)
3411{
3412 bool exists = false;
3413
3414 ice_check_if_dflt_vsi(pi, 0, &exists);
3415 return exists;
3416}
3417
3418/**
3419 * ice_is_vsi_dflt_vsi - check if the VSI passed in is the default VSI
3420 * @vsi: VSI to compare against default forwarding VSI
3421 *
3422 * If this VSI passed in is the default forwarding VSI then return true, else
3423 * return false
3424 */
3425bool ice_is_vsi_dflt_vsi(struct ice_vsi *vsi)
3426{
3427 return ice_check_if_dflt_vsi(vsi->port_info, vsi->idx, NULL);
3428}
3429
3430/**
3431 * ice_set_dflt_vsi - set the default forwarding VSI
3432 * @vsi: VSI getting set as the default forwarding VSI on the switch
3433 *
3434 * If the VSI passed in is already the default VSI and it's enabled just return
3435 * success.
3436 *
3437 * Otherwise try to set the VSI passed in as the switch's default VSI and
3438 * return the result.
3439 */
3440int ice_set_dflt_vsi(struct ice_vsi *vsi)
3441{
3442 struct device *dev;
3443 int status;
3444
3445 if (!vsi)
3446 return -EINVAL;
3447
3448 dev = ice_pf_to_dev(vsi->back);
3449
3450 if (ice_lag_is_switchdev_running(vsi->back)) {
3451 dev_dbg(dev, "VSI %d passed is a part of LAG containing interfaces in switchdev mode, nothing to do\n",
3452 vsi->vsi_num);
3453 return 0;
3454 }
3455
3456 /* the VSI passed in is already the default VSI */
3457 if (ice_is_vsi_dflt_vsi(vsi)) {
3458 dev_dbg(dev, "VSI %d passed in is already the default forwarding VSI, nothing to do\n",
3459 vsi->vsi_num);
3460 return 0;
3461 }
3462
3463 status = ice_cfg_dflt_vsi(vsi->port_info, vsi->idx, true, ICE_FLTR_RX);
3464 if (status) {
3465 dev_err(dev, "Failed to set VSI %d as the default forwarding VSI, error %d\n",
3466 vsi->vsi_num, status);
3467 return status;
3468 }
3469
3470 return 0;
3471}
3472
3473/**
3474 * ice_clear_dflt_vsi - clear the default forwarding VSI
3475 * @vsi: VSI to remove from filter list
3476 *
3477 * If the switch has no default VSI or it's not enabled then return error.
3478 *
3479 * Otherwise try to clear the default VSI and return the result.
3480 */
3481int ice_clear_dflt_vsi(struct ice_vsi *vsi)
3482{
3483 struct device *dev;
3484 int status;
3485
3486 if (!vsi)
3487 return -EINVAL;
3488
3489 dev = ice_pf_to_dev(vsi->back);
3490
3491 /* there is no default VSI configured */
3492 if (!ice_is_dflt_vsi_in_use(vsi->port_info))
3493 return -ENODEV;
3494
3495 status = ice_cfg_dflt_vsi(vsi->port_info, vsi->idx, false,
3496 ICE_FLTR_RX);
3497 if (status) {
3498 dev_err(dev, "Failed to clear the default forwarding VSI %d, error %d\n",
3499 vsi->vsi_num, status);
3500 return -EIO;
3501 }
3502
3503 return 0;
3504}
3505
3506/**
3507 * ice_get_link_speed_mbps - get link speed in Mbps
3508 * @vsi: the VSI whose link speed is being queried
3509 *
3510 * Return current VSI link speed and 0 if the speed is unknown.
3511 */
3512int ice_get_link_speed_mbps(struct ice_vsi *vsi)
3513{
3514 unsigned int link_speed;
3515
3516 link_speed = vsi->port_info->phy.link_info.link_speed;
3517
3518 return (int)ice_get_link_speed(fls(link_speed) - 1);
3519}
3520
3521/**
3522 * ice_get_link_speed_kbps - get link speed in Kbps
3523 * @vsi: the VSI whose link speed is being queried
3524 *
3525 * Return current VSI link speed and 0 if the speed is unknown.
3526 */
3527int ice_get_link_speed_kbps(struct ice_vsi *vsi)
3528{
3529 int speed_mbps;
3530
3531 speed_mbps = ice_get_link_speed_mbps(vsi);
3532
3533 return speed_mbps * 1000;
3534}
3535
3536/**
3537 * ice_set_min_bw_limit - setup minimum BW limit for Tx based on min_tx_rate
3538 * @vsi: VSI to be configured
3539 * @min_tx_rate: min Tx rate in Kbps to be configured as BW limit
3540 *
3541 * If the min_tx_rate is specified as 0 that means to clear the minimum BW limit
3542 * profile, otherwise a non-zero value will force a minimum BW limit for the VSI
3543 * on TC 0.
3544 */
3545int ice_set_min_bw_limit(struct ice_vsi *vsi, u64 min_tx_rate)
3546{
3547 struct ice_pf *pf = vsi->back;
3548 struct device *dev;
3549 int status;
3550 int speed;
3551
3552 dev = ice_pf_to_dev(pf);
3553 if (!vsi->port_info) {
3554 dev_dbg(dev, "VSI %d, type %u specified doesn't have valid port_info\n",
3555 vsi->idx, vsi->type);
3556 return -EINVAL;
3557 }
3558
3559 speed = ice_get_link_speed_kbps(vsi);
3560 if (min_tx_rate > (u64)speed) {
3561 dev_err(dev, "invalid min Tx rate %llu Kbps specified for %s %d is greater than current link speed %u Kbps\n",
3562 min_tx_rate, ice_vsi_type_str(vsi->type), vsi->idx,
3563 speed);
3564 return -EINVAL;
3565 }
3566
3567 /* Configure min BW for VSI limit */
3568 if (min_tx_rate) {
3569 status = ice_cfg_vsi_bw_lmt_per_tc(vsi->port_info, vsi->idx, 0,
3570 ICE_MIN_BW, min_tx_rate);
3571 if (status) {
3572 dev_err(dev, "failed to set min Tx rate(%llu Kbps) for %s %d\n",
3573 min_tx_rate, ice_vsi_type_str(vsi->type),
3574 vsi->idx);
3575 return status;
3576 }
3577
3578 dev_dbg(dev, "set min Tx rate(%llu Kbps) for %s\n",
3579 min_tx_rate, ice_vsi_type_str(vsi->type));
3580 } else {
3581 status = ice_cfg_vsi_bw_dflt_lmt_per_tc(vsi->port_info,
3582 vsi->idx, 0,
3583 ICE_MIN_BW);
3584 if (status) {
3585 dev_err(dev, "failed to clear min Tx rate configuration for %s %d\n",
3586 ice_vsi_type_str(vsi->type), vsi->idx);
3587 return status;
3588 }
3589
3590 dev_dbg(dev, "cleared min Tx rate configuration for %s %d\n",
3591 ice_vsi_type_str(vsi->type), vsi->idx);
3592 }
3593
3594 return 0;
3595}
3596
3597/**
3598 * ice_set_max_bw_limit - setup maximum BW limit for Tx based on max_tx_rate
3599 * @vsi: VSI to be configured
3600 * @max_tx_rate: max Tx rate in Kbps to be configured as BW limit
3601 *
3602 * If the max_tx_rate is specified as 0 that means to clear the maximum BW limit
3603 * profile, otherwise a non-zero value will force a maximum BW limit for the VSI
3604 * on TC 0.
3605 */
3606int ice_set_max_bw_limit(struct ice_vsi *vsi, u64 max_tx_rate)
3607{
3608 struct ice_pf *pf = vsi->back;
3609 struct device *dev;
3610 int status;
3611 int speed;
3612
3613 dev = ice_pf_to_dev(pf);
3614 if (!vsi->port_info) {
3615 dev_dbg(dev, "VSI %d, type %u specified doesn't have valid port_info\n",
3616 vsi->idx, vsi->type);
3617 return -EINVAL;
3618 }
3619
3620 speed = ice_get_link_speed_kbps(vsi);
3621 if (max_tx_rate > (u64)speed) {
3622 dev_err(dev, "invalid max Tx rate %llu Kbps specified for %s %d is greater than current link speed %u Kbps\n",
3623 max_tx_rate, ice_vsi_type_str(vsi->type), vsi->idx,
3624 speed);
3625 return -EINVAL;
3626 }
3627
3628 /* Configure max BW for VSI limit */
3629 if (max_tx_rate) {
3630 status = ice_cfg_vsi_bw_lmt_per_tc(vsi->port_info, vsi->idx, 0,
3631 ICE_MAX_BW, max_tx_rate);
3632 if (status) {
3633 dev_err(dev, "failed setting max Tx rate(%llu Kbps) for %s %d\n",
3634 max_tx_rate, ice_vsi_type_str(vsi->type),
3635 vsi->idx);
3636 return status;
3637 }
3638
3639 dev_dbg(dev, "set max Tx rate(%llu Kbps) for %s %d\n",
3640 max_tx_rate, ice_vsi_type_str(vsi->type), vsi->idx);
3641 } else {
3642 status = ice_cfg_vsi_bw_dflt_lmt_per_tc(vsi->port_info,
3643 vsi->idx, 0,
3644 ICE_MAX_BW);
3645 if (status) {
3646 dev_err(dev, "failed clearing max Tx rate configuration for %s %d\n",
3647 ice_vsi_type_str(vsi->type), vsi->idx);
3648 return status;
3649 }
3650
3651 dev_dbg(dev, "cleared max Tx rate configuration for %s %d\n",
3652 ice_vsi_type_str(vsi->type), vsi->idx);
3653 }
3654
3655 return 0;
3656}
3657
3658/**
3659 * ice_set_link - turn on/off physical link
3660 * @vsi: VSI to modify physical link on
3661 * @ena: turn on/off physical link
3662 */
3663int ice_set_link(struct ice_vsi *vsi, bool ena)
3664{
3665 struct device *dev = ice_pf_to_dev(vsi->back);
3666 struct ice_port_info *pi = vsi->port_info;
3667 struct ice_hw *hw = pi->hw;
3668 int status;
3669
3670 if (vsi->type != ICE_VSI_PF)
3671 return -EINVAL;
3672
3673 status = ice_aq_set_link_restart_an(pi, ena, NULL);
3674
3675 /* if link is owned by manageability, FW will return ICE_AQ_RC_EMODE.
3676 * this is not a fatal error, so print a warning message and return
3677 * a success code. Return an error if FW returns an error code other
3678 * than ICE_AQ_RC_EMODE
3679 */
3680 if (status == -EIO) {
3681 if (hw->adminq.sq_last_status == ICE_AQ_RC_EMODE)
3682 dev_dbg(dev, "can't set link to %s, err %d aq_err %s. not fatal, continuing\n",
3683 (ena ? "ON" : "OFF"), status,
3684 ice_aq_str(hw->adminq.sq_last_status));
3685 } else if (status) {
3686 dev_err(dev, "can't set link to %s, err %d aq_err %s\n",
3687 (ena ? "ON" : "OFF"), status,
3688 ice_aq_str(hw->adminq.sq_last_status));
3689 return status;
3690 }
3691
3692 return 0;
3693}
3694
3695/**
3696 * ice_vsi_add_vlan_zero - add VLAN 0 filter(s) for this VSI
3697 * @vsi: VSI used to add VLAN filters
3698 *
3699 * In Single VLAN Mode (SVM), single VLAN filters via ICE_SW_LKUP_VLAN are based
3700 * on the inner VLAN ID, so the VLAN TPID (i.e. 0x8100 or 0x888a8) doesn't
3701 * matter. In Double VLAN Mode (DVM), outer/single VLAN filters via
3702 * ICE_SW_LKUP_VLAN are based on the outer/single VLAN ID + VLAN TPID.
3703 *
3704 * For both modes add a VLAN 0 + no VLAN TPID filter to handle untagged traffic
3705 * when VLAN pruning is enabled. Also, this handles VLAN 0 priority tagged
3706 * traffic in SVM, since the VLAN TPID isn't part of filtering.
3707 *
3708 * If DVM is enabled then an explicit VLAN 0 + VLAN TPID filter needs to be
3709 * added to allow VLAN 0 priority tagged traffic in DVM, since the VLAN TPID is
3710 * part of filtering.
3711 */
3712int ice_vsi_add_vlan_zero(struct ice_vsi *vsi)
3713{
3714 struct ice_vsi_vlan_ops *vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
3715 struct ice_vlan vlan;
3716 int err;
3717
3718 vlan = ICE_VLAN(0, 0, 0);
3719 err = vlan_ops->add_vlan(vsi, &vlan);
3720 if (err && err != -EEXIST)
3721 return err;
3722
3723 /* in SVM both VLAN 0 filters are identical */
3724 if (!ice_is_dvm_ena(&vsi->back->hw))
3725 return 0;
3726
3727 vlan = ICE_VLAN(ETH_P_8021Q, 0, 0);
3728 err = vlan_ops->add_vlan(vsi, &vlan);
3729 if (err && err != -EEXIST)
3730 return err;
3731
3732 return 0;
3733}
3734
3735/**
3736 * ice_vsi_del_vlan_zero - delete VLAN 0 filter(s) for this VSI
3737 * @vsi: VSI used to add VLAN filters
3738 *
3739 * Delete the VLAN 0 filters in the same manner that they were added in
3740 * ice_vsi_add_vlan_zero.
3741 */
3742int ice_vsi_del_vlan_zero(struct ice_vsi *vsi)
3743{
3744 struct ice_vsi_vlan_ops *vlan_ops = ice_get_compat_vsi_vlan_ops(vsi);
3745 struct ice_vlan vlan;
3746 int err;
3747
3748 vlan = ICE_VLAN(0, 0, 0);
3749 err = vlan_ops->del_vlan(vsi, &vlan);
3750 if (err && err != -EEXIST)
3751 return err;
3752
3753 /* in SVM both VLAN 0 filters are identical */
3754 if (!ice_is_dvm_ena(&vsi->back->hw))
3755 return 0;
3756
3757 vlan = ICE_VLAN(ETH_P_8021Q, 0, 0);
3758 err = vlan_ops->del_vlan(vsi, &vlan);
3759 if (err && err != -EEXIST)
3760 return err;
3761
3762 /* when deleting the last VLAN filter, make sure to disable the VLAN
3763 * promisc mode so the filter isn't left by accident
3764 */
3765 return ice_clear_vsi_promisc(&vsi->back->hw, vsi->idx,
3766 ICE_MCAST_VLAN_PROMISC_BITS, 0);
3767}
3768
3769/**
3770 * ice_vsi_num_zero_vlans - get number of VLAN 0 filters based on VLAN mode
3771 * @vsi: VSI used to get the VLAN mode
3772 *
3773 * If DVM is enabled then 2 VLAN 0 filters are added, else if SVM is enabled
3774 * then 1 VLAN 0 filter is added. See ice_vsi_add_vlan_zero for more details.
3775 */
3776static u16 ice_vsi_num_zero_vlans(struct ice_vsi *vsi)
3777{
3778#define ICE_DVM_NUM_ZERO_VLAN_FLTRS 2
3779#define ICE_SVM_NUM_ZERO_VLAN_FLTRS 1
3780 /* no VLAN 0 filter is created when a port VLAN is active */
3781 if (vsi->type == ICE_VSI_VF) {
3782 if (WARN_ON(!vsi->vf))
3783 return 0;
3784
3785 if (ice_vf_is_port_vlan_ena(vsi->vf))
3786 return 0;
3787 }
3788
3789 if (ice_is_dvm_ena(&vsi->back->hw))
3790 return ICE_DVM_NUM_ZERO_VLAN_FLTRS;
3791 else
3792 return ICE_SVM_NUM_ZERO_VLAN_FLTRS;
3793}
3794
3795/**
3796 * ice_vsi_has_non_zero_vlans - check if VSI has any non-zero VLANs
3797 * @vsi: VSI used to determine if any non-zero VLANs have been added
3798 */
3799bool ice_vsi_has_non_zero_vlans(struct ice_vsi *vsi)
3800{
3801 return (vsi->num_vlan > ice_vsi_num_zero_vlans(vsi));
3802}
3803
3804/**
3805 * ice_vsi_num_non_zero_vlans - get the number of non-zero VLANs for this VSI
3806 * @vsi: VSI used to get the number of non-zero VLANs added
3807 */
3808u16 ice_vsi_num_non_zero_vlans(struct ice_vsi *vsi)
3809{
3810 return (vsi->num_vlan - ice_vsi_num_zero_vlans(vsi));
3811}
3812
3813/**
3814 * ice_is_feature_supported
3815 * @pf: pointer to the struct ice_pf instance
3816 * @f: feature enum to be checked
3817 *
3818 * returns true if feature is supported, false otherwise
3819 */
3820bool ice_is_feature_supported(struct ice_pf *pf, enum ice_feature f)
3821{
3822 if (f < 0 || f >= ICE_F_MAX)
3823 return false;
3824
3825 return test_bit(f, pf->features);
3826}
3827
3828/**
3829 * ice_set_feature_support
3830 * @pf: pointer to the struct ice_pf instance
3831 * @f: feature enum to set
3832 */
3833void ice_set_feature_support(struct ice_pf *pf, enum ice_feature f)
3834{
3835 if (f < 0 || f >= ICE_F_MAX)
3836 return;
3837
3838 set_bit(f, pf->features);
3839}
3840
3841/**
3842 * ice_clear_feature_support
3843 * @pf: pointer to the struct ice_pf instance
3844 * @f: feature enum to clear
3845 */
3846void ice_clear_feature_support(struct ice_pf *pf, enum ice_feature f)
3847{
3848 if (f < 0 || f >= ICE_F_MAX)
3849 return;
3850
3851 clear_bit(f, pf->features);
3852}
3853
3854/**
3855 * ice_init_feature_support
3856 * @pf: pointer to the struct ice_pf instance
3857 *
3858 * called during init to setup supported feature
3859 */
3860void ice_init_feature_support(struct ice_pf *pf)
3861{
3862 switch (pf->hw.device_id) {
3863 case ICE_DEV_ID_E810C_BACKPLANE:
3864 case ICE_DEV_ID_E810C_QSFP:
3865 case ICE_DEV_ID_E810C_SFP:
3866 case ICE_DEV_ID_E810_XXV_BACKPLANE:
3867 case ICE_DEV_ID_E810_XXV_QSFP:
3868 case ICE_DEV_ID_E810_XXV_SFP:
3869 ice_set_feature_support(pf, ICE_F_DSCP);
3870 if (ice_is_phy_rclk_in_netlist(&pf->hw))
3871 ice_set_feature_support(pf, ICE_F_PHY_RCLK);
3872 /* If we don't own the timer - don't enable other caps */
3873 if (!ice_pf_src_tmr_owned(pf))
3874 break;
3875 if (ice_is_cgu_in_netlist(&pf->hw))
3876 ice_set_feature_support(pf, ICE_F_CGU);
3877 if (ice_is_clock_mux_in_netlist(&pf->hw))
3878 ice_set_feature_support(pf, ICE_F_SMA_CTRL);
3879 if (ice_gnss_is_gps_present(&pf->hw))
3880 ice_set_feature_support(pf, ICE_F_GNSS);
3881 break;
3882 default:
3883 break;
3884 }
3885
3886 if (pf->hw.mac_type == ICE_MAC_E830)
3887 ice_set_feature_support(pf, ICE_F_MBX_LIMIT);
3888}
3889
3890/**
3891 * ice_vsi_update_security - update security block in VSI
3892 * @vsi: pointer to VSI structure
3893 * @fill: function pointer to fill ctx
3894 */
3895int
3896ice_vsi_update_security(struct ice_vsi *vsi, void (*fill)(struct ice_vsi_ctx *))
3897{
3898 struct ice_vsi_ctx ctx = { 0 };
3899
3900 ctx.info = vsi->info;
3901 ctx.info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
3902 fill(&ctx);
3903
3904 if (ice_update_vsi(&vsi->back->hw, vsi->idx, &ctx, NULL))
3905 return -ENODEV;
3906
3907 vsi->info = ctx.info;
3908 return 0;
3909}
3910
3911/**
3912 * ice_vsi_ctx_set_antispoof - set antispoof function in VSI ctx
3913 * @ctx: pointer to VSI ctx structure
3914 */
3915void ice_vsi_ctx_set_antispoof(struct ice_vsi_ctx *ctx)
3916{
3917 ctx->info.sec_flags |= ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF |
3918 (ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
3919 ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S);
3920}
3921
3922/**
3923 * ice_vsi_ctx_clear_antispoof - clear antispoof function in VSI ctx
3924 * @ctx: pointer to VSI ctx structure
3925 */
3926void ice_vsi_ctx_clear_antispoof(struct ice_vsi_ctx *ctx)
3927{
3928 ctx->info.sec_flags &= ~ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF &
3929 ~(ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
3930 ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S);
3931}
3932
3933/**
3934 * ice_vsi_ctx_set_allow_override - allow destination override on VSI
3935 * @ctx: pointer to VSI ctx structure
3936 */
3937void ice_vsi_ctx_set_allow_override(struct ice_vsi_ctx *ctx)
3938{
3939 ctx->info.sec_flags |= ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD;
3940}
3941
3942/**
3943 * ice_vsi_ctx_clear_allow_override - turn off destination override on VSI
3944 * @ctx: pointer to VSI ctx structure
3945 */
3946void ice_vsi_ctx_clear_allow_override(struct ice_vsi_ctx *ctx)
3947{
3948 ctx->info.sec_flags &= ~ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD;
3949}
3950
3951/**
3952 * ice_vsi_update_local_lb - update sw block in VSI with local loopback bit
3953 * @vsi: pointer to VSI structure
3954 * @set: set or unset the bit
3955 */
3956int
3957ice_vsi_update_local_lb(struct ice_vsi *vsi, bool set)
3958{
3959 struct ice_vsi_ctx ctx = {
3960 .info = vsi->info,
3961 };
3962
3963 ctx.info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_SW_VALID);
3964 if (set)
3965 ctx.info.sw_flags |= ICE_AQ_VSI_SW_FLAG_LOCAL_LB;
3966 else
3967 ctx.info.sw_flags &= ~ICE_AQ_VSI_SW_FLAG_LOCAL_LB;
3968
3969 if (ice_update_vsi(&vsi->back->hw, vsi->idx, &ctx, NULL))
3970 return -ENODEV;
3971
3972 vsi->info = ctx.info;
3973 return 0;
3974}
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018, Intel Corporation. */
3
4#include "ice.h"
5#include "ice_base.h"
6#include "ice_flow.h"
7#include "ice_lib.h"
8#include "ice_fltr.h"
9#include "ice_dcb_lib.h"
10
11/**
12 * ice_vsi_type_str - maps VSI type enum to string equivalents
13 * @vsi_type: VSI type enum
14 */
15const char *ice_vsi_type_str(enum ice_vsi_type vsi_type)
16{
17 switch (vsi_type) {
18 case ICE_VSI_PF:
19 return "ICE_VSI_PF";
20 case ICE_VSI_VF:
21 return "ICE_VSI_VF";
22 case ICE_VSI_CTRL:
23 return "ICE_VSI_CTRL";
24 case ICE_VSI_LB:
25 return "ICE_VSI_LB";
26 default:
27 return "unknown";
28 }
29}
30
31/**
32 * ice_vsi_ctrl_all_rx_rings - Start or stop a VSI's Rx rings
33 * @vsi: the VSI being configured
34 * @ena: start or stop the Rx rings
35 *
36 * First enable/disable all of the Rx rings, flush any remaining writes, and
37 * then verify that they have all been enabled/disabled successfully. This will
38 * let all of the register writes complete when enabling/disabling the Rx rings
39 * before waiting for the change in hardware to complete.
40 */
41static int ice_vsi_ctrl_all_rx_rings(struct ice_vsi *vsi, bool ena)
42{
43 int ret = 0;
44 u16 i;
45
46 for (i = 0; i < vsi->num_rxq; i++)
47 ice_vsi_ctrl_one_rx_ring(vsi, ena, i, false);
48
49 ice_flush(&vsi->back->hw);
50
51 for (i = 0; i < vsi->num_rxq; i++) {
52 ret = ice_vsi_wait_one_rx_ring(vsi, ena, i);
53 if (ret)
54 break;
55 }
56
57 return ret;
58}
59
60/**
61 * ice_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the VSI
62 * @vsi: VSI pointer
63 *
64 * On error: returns error code (negative)
65 * On success: returns 0
66 */
67static int ice_vsi_alloc_arrays(struct ice_vsi *vsi)
68{
69 struct ice_pf *pf = vsi->back;
70 struct device *dev;
71
72 dev = ice_pf_to_dev(pf);
73
74 /* allocate memory for both Tx and Rx ring pointers */
75 vsi->tx_rings = devm_kcalloc(dev, vsi->alloc_txq,
76 sizeof(*vsi->tx_rings), GFP_KERNEL);
77 if (!vsi->tx_rings)
78 return -ENOMEM;
79
80 vsi->rx_rings = devm_kcalloc(dev, vsi->alloc_rxq,
81 sizeof(*vsi->rx_rings), GFP_KERNEL);
82 if (!vsi->rx_rings)
83 goto err_rings;
84
85 /* XDP will have vsi->alloc_txq Tx queues as well, so double the size */
86 vsi->txq_map = devm_kcalloc(dev, (2 * vsi->alloc_txq),
87 sizeof(*vsi->txq_map), GFP_KERNEL);
88
89 if (!vsi->txq_map)
90 goto err_txq_map;
91
92 vsi->rxq_map = devm_kcalloc(dev, vsi->alloc_rxq,
93 sizeof(*vsi->rxq_map), GFP_KERNEL);
94 if (!vsi->rxq_map)
95 goto err_rxq_map;
96
97 /* There is no need to allocate q_vectors for a loopback VSI. */
98 if (vsi->type == ICE_VSI_LB)
99 return 0;
100
101 /* allocate memory for q_vector pointers */
102 vsi->q_vectors = devm_kcalloc(dev, vsi->num_q_vectors,
103 sizeof(*vsi->q_vectors), GFP_KERNEL);
104 if (!vsi->q_vectors)
105 goto err_vectors;
106
107 return 0;
108
109err_vectors:
110 devm_kfree(dev, vsi->rxq_map);
111err_rxq_map:
112 devm_kfree(dev, vsi->txq_map);
113err_txq_map:
114 devm_kfree(dev, vsi->rx_rings);
115err_rings:
116 devm_kfree(dev, vsi->tx_rings);
117 return -ENOMEM;
118}
119
120/**
121 * ice_vsi_set_num_desc - Set number of descriptors for queues on this VSI
122 * @vsi: the VSI being configured
123 */
124static void ice_vsi_set_num_desc(struct ice_vsi *vsi)
125{
126 switch (vsi->type) {
127 case ICE_VSI_PF:
128 case ICE_VSI_CTRL:
129 case ICE_VSI_LB:
130 /* a user could change the values of num_[tr]x_desc using
131 * ethtool -G so we should keep those values instead of
132 * overwriting them with the defaults.
133 */
134 if (!vsi->num_rx_desc)
135 vsi->num_rx_desc = ICE_DFLT_NUM_RX_DESC;
136 if (!vsi->num_tx_desc)
137 vsi->num_tx_desc = ICE_DFLT_NUM_TX_DESC;
138 break;
139 default:
140 dev_dbg(ice_pf_to_dev(vsi->back), "Not setting number of Tx/Rx descriptors for VSI type %d\n",
141 vsi->type);
142 break;
143 }
144}
145
146/**
147 * ice_vsi_set_num_qs - Set number of queues, descriptors and vectors for a VSI
148 * @vsi: the VSI being configured
149 * @vf_id: ID of the VF being configured
150 *
151 * Return 0 on success and a negative value on error
152 */
153static void ice_vsi_set_num_qs(struct ice_vsi *vsi, u16 vf_id)
154{
155 struct ice_pf *pf = vsi->back;
156 struct ice_vf *vf = NULL;
157
158 if (vsi->type == ICE_VSI_VF)
159 vsi->vf_id = vf_id;
160
161 switch (vsi->type) {
162 case ICE_VSI_PF:
163 vsi->alloc_txq = min_t(int, ice_get_avail_txq_count(pf),
164 num_online_cpus());
165 if (vsi->req_txq) {
166 vsi->alloc_txq = vsi->req_txq;
167 vsi->num_txq = vsi->req_txq;
168 }
169
170 pf->num_lan_tx = vsi->alloc_txq;
171
172 /* only 1 Rx queue unless RSS is enabled */
173 if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
174 vsi->alloc_rxq = 1;
175 } else {
176 vsi->alloc_rxq = min_t(int, ice_get_avail_rxq_count(pf),
177 num_online_cpus());
178 if (vsi->req_rxq) {
179 vsi->alloc_rxq = vsi->req_rxq;
180 vsi->num_rxq = vsi->req_rxq;
181 }
182 }
183
184 pf->num_lan_rx = vsi->alloc_rxq;
185
186 vsi->num_q_vectors = max_t(int, vsi->alloc_rxq, vsi->alloc_txq);
187 break;
188 case ICE_VSI_VF:
189 vf = &pf->vf[vsi->vf_id];
190 vsi->alloc_txq = vf->num_vf_qs;
191 vsi->alloc_rxq = vf->num_vf_qs;
192 /* pf->num_msix_per_vf includes (VF miscellaneous vector +
193 * data queue interrupts). Since vsi->num_q_vectors is number
194 * of queues vectors, subtract 1 (ICE_NONQ_VECS_VF) from the
195 * original vector count
196 */
197 vsi->num_q_vectors = pf->num_msix_per_vf - ICE_NONQ_VECS_VF;
198 break;
199 case ICE_VSI_CTRL:
200 vsi->alloc_txq = 1;
201 vsi->alloc_rxq = 1;
202 vsi->num_q_vectors = 1;
203 break;
204 case ICE_VSI_LB:
205 vsi->alloc_txq = 1;
206 vsi->alloc_rxq = 1;
207 break;
208 default:
209 dev_warn(ice_pf_to_dev(pf), "Unknown VSI type %d\n", vsi->type);
210 break;
211 }
212
213 ice_vsi_set_num_desc(vsi);
214}
215
216/**
217 * ice_get_free_slot - get the next non-NULL location index in array
218 * @array: array to search
219 * @size: size of the array
220 * @curr: last known occupied index to be used as a search hint
221 *
222 * void * is being used to keep the functionality generic. This lets us use this
223 * function on any array of pointers.
224 */
225static int ice_get_free_slot(void *array, int size, int curr)
226{
227 int **tmp_array = (int **)array;
228 int next;
229
230 if (curr < (size - 1) && !tmp_array[curr + 1]) {
231 next = curr + 1;
232 } else {
233 int i = 0;
234
235 while ((i < size) && (tmp_array[i]))
236 i++;
237 if (i == size)
238 next = ICE_NO_VSI;
239 else
240 next = i;
241 }
242 return next;
243}
244
245/**
246 * ice_vsi_delete - delete a VSI from the switch
247 * @vsi: pointer to VSI being removed
248 */
249static void ice_vsi_delete(struct ice_vsi *vsi)
250{
251 struct ice_pf *pf = vsi->back;
252 struct ice_vsi_ctx *ctxt;
253 enum ice_status status;
254
255 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
256 if (!ctxt)
257 return;
258
259 if (vsi->type == ICE_VSI_VF)
260 ctxt->vf_num = vsi->vf_id;
261 ctxt->vsi_num = vsi->vsi_num;
262
263 memcpy(&ctxt->info, &vsi->info, sizeof(ctxt->info));
264
265 status = ice_free_vsi(&pf->hw, vsi->idx, ctxt, false, NULL);
266 if (status)
267 dev_err(ice_pf_to_dev(pf), "Failed to delete VSI %i in FW - error: %s\n",
268 vsi->vsi_num, ice_stat_str(status));
269
270 kfree(ctxt);
271}
272
273/**
274 * ice_vsi_free_arrays - De-allocate queue and vector pointer arrays for the VSI
275 * @vsi: pointer to VSI being cleared
276 */
277static void ice_vsi_free_arrays(struct ice_vsi *vsi)
278{
279 struct ice_pf *pf = vsi->back;
280 struct device *dev;
281
282 dev = ice_pf_to_dev(pf);
283
284 /* free the ring and vector containers */
285 if (vsi->q_vectors) {
286 devm_kfree(dev, vsi->q_vectors);
287 vsi->q_vectors = NULL;
288 }
289 if (vsi->tx_rings) {
290 devm_kfree(dev, vsi->tx_rings);
291 vsi->tx_rings = NULL;
292 }
293 if (vsi->rx_rings) {
294 devm_kfree(dev, vsi->rx_rings);
295 vsi->rx_rings = NULL;
296 }
297 if (vsi->txq_map) {
298 devm_kfree(dev, vsi->txq_map);
299 vsi->txq_map = NULL;
300 }
301 if (vsi->rxq_map) {
302 devm_kfree(dev, vsi->rxq_map);
303 vsi->rxq_map = NULL;
304 }
305}
306
307/**
308 * ice_vsi_clear - clean up and deallocate the provided VSI
309 * @vsi: pointer to VSI being cleared
310 *
311 * This deallocates the VSI's queue resources, removes it from the PF's
312 * VSI array if necessary, and deallocates the VSI
313 *
314 * Returns 0 on success, negative on failure
315 */
316static int ice_vsi_clear(struct ice_vsi *vsi)
317{
318 struct ice_pf *pf = NULL;
319 struct device *dev;
320
321 if (!vsi)
322 return 0;
323
324 if (!vsi->back)
325 return -EINVAL;
326
327 pf = vsi->back;
328 dev = ice_pf_to_dev(pf);
329
330 if (!pf->vsi[vsi->idx] || pf->vsi[vsi->idx] != vsi) {
331 dev_dbg(dev, "vsi does not exist at pf->vsi[%d]\n", vsi->idx);
332 return -EINVAL;
333 }
334
335 mutex_lock(&pf->sw_mutex);
336 /* updates the PF for this cleared VSI */
337
338 pf->vsi[vsi->idx] = NULL;
339 if (vsi->idx < pf->next_vsi && vsi->type != ICE_VSI_CTRL)
340 pf->next_vsi = vsi->idx;
341
342 ice_vsi_free_arrays(vsi);
343 mutex_unlock(&pf->sw_mutex);
344 devm_kfree(dev, vsi);
345
346 return 0;
347}
348
349/**
350 * ice_msix_clean_ctrl_vsi - MSIX mode interrupt handler for ctrl VSI
351 * @irq: interrupt number
352 * @data: pointer to a q_vector
353 */
354static irqreturn_t ice_msix_clean_ctrl_vsi(int __always_unused irq, void *data)
355{
356 struct ice_q_vector *q_vector = (struct ice_q_vector *)data;
357
358 if (!q_vector->tx.ring)
359 return IRQ_HANDLED;
360
361#define FDIR_RX_DESC_CLEAN_BUDGET 64
362 ice_clean_rx_irq(q_vector->rx.ring, FDIR_RX_DESC_CLEAN_BUDGET);
363 ice_clean_ctrl_tx_irq(q_vector->tx.ring);
364
365 return IRQ_HANDLED;
366}
367
368/**
369 * ice_msix_clean_rings - MSIX mode Interrupt Handler
370 * @irq: interrupt number
371 * @data: pointer to a q_vector
372 */
373static irqreturn_t ice_msix_clean_rings(int __always_unused irq, void *data)
374{
375 struct ice_q_vector *q_vector = (struct ice_q_vector *)data;
376
377 if (!q_vector->tx.ring && !q_vector->rx.ring)
378 return IRQ_HANDLED;
379
380 napi_schedule(&q_vector->napi);
381
382 return IRQ_HANDLED;
383}
384
385/**
386 * ice_vsi_alloc - Allocates the next available struct VSI in the PF
387 * @pf: board private structure
388 * @vsi_type: type of VSI
389 * @vf_id: ID of the VF being configured
390 *
391 * returns a pointer to a VSI on success, NULL on failure.
392 */
393static struct ice_vsi *
394ice_vsi_alloc(struct ice_pf *pf, enum ice_vsi_type vsi_type, u16 vf_id)
395{
396 struct device *dev = ice_pf_to_dev(pf);
397 struct ice_vsi *vsi = NULL;
398
399 /* Need to protect the allocation of the VSIs at the PF level */
400 mutex_lock(&pf->sw_mutex);
401
402 /* If we have already allocated our maximum number of VSIs,
403 * pf->next_vsi will be ICE_NO_VSI. If not, pf->next_vsi index
404 * is available to be populated
405 */
406 if (pf->next_vsi == ICE_NO_VSI) {
407 dev_dbg(dev, "out of VSI slots!\n");
408 goto unlock_pf;
409 }
410
411 vsi = devm_kzalloc(dev, sizeof(*vsi), GFP_KERNEL);
412 if (!vsi)
413 goto unlock_pf;
414
415 vsi->type = vsi_type;
416 vsi->back = pf;
417 set_bit(__ICE_DOWN, vsi->state);
418
419 if (vsi_type == ICE_VSI_VF)
420 ice_vsi_set_num_qs(vsi, vf_id);
421 else
422 ice_vsi_set_num_qs(vsi, ICE_INVAL_VFID);
423
424 switch (vsi->type) {
425 case ICE_VSI_PF:
426 if (ice_vsi_alloc_arrays(vsi))
427 goto err_rings;
428
429 /* Setup default MSIX irq handler for VSI */
430 vsi->irq_handler = ice_msix_clean_rings;
431 break;
432 case ICE_VSI_CTRL:
433 if (ice_vsi_alloc_arrays(vsi))
434 goto err_rings;
435
436 /* Setup ctrl VSI MSIX irq handler */
437 vsi->irq_handler = ice_msix_clean_ctrl_vsi;
438 break;
439 case ICE_VSI_VF:
440 if (ice_vsi_alloc_arrays(vsi))
441 goto err_rings;
442 break;
443 case ICE_VSI_LB:
444 if (ice_vsi_alloc_arrays(vsi))
445 goto err_rings;
446 break;
447 default:
448 dev_warn(dev, "Unknown VSI type %d\n", vsi->type);
449 goto unlock_pf;
450 }
451
452 if (vsi->type == ICE_VSI_CTRL) {
453 /* Use the last VSI slot as the index for the control VSI */
454 vsi->idx = pf->num_alloc_vsi - 1;
455 pf->ctrl_vsi_idx = vsi->idx;
456 pf->vsi[vsi->idx] = vsi;
457 } else {
458 /* fill slot and make note of the index */
459 vsi->idx = pf->next_vsi;
460 pf->vsi[pf->next_vsi] = vsi;
461
462 /* prepare pf->next_vsi for next use */
463 pf->next_vsi = ice_get_free_slot(pf->vsi, pf->num_alloc_vsi,
464 pf->next_vsi);
465 }
466 goto unlock_pf;
467
468err_rings:
469 devm_kfree(dev, vsi);
470 vsi = NULL;
471unlock_pf:
472 mutex_unlock(&pf->sw_mutex);
473 return vsi;
474}
475
476/**
477 * ice_alloc_fd_res - Allocate FD resource for a VSI
478 * @vsi: pointer to the ice_vsi
479 *
480 * This allocates the FD resources
481 *
482 * Returns 0 on success, -EPERM on no-op or -EIO on failure
483 */
484static int ice_alloc_fd_res(struct ice_vsi *vsi)
485{
486 struct ice_pf *pf = vsi->back;
487 u32 g_val, b_val;
488
489 /* Flow Director filters are only allocated/assigned to the PF VSI which
490 * passes the traffic. The CTRL VSI is only used to add/delete filters
491 * so we don't allocate resources to it
492 */
493
494 /* FD filters from guaranteed pool per VSI */
495 g_val = pf->hw.func_caps.fd_fltr_guar;
496 if (!g_val)
497 return -EPERM;
498
499 /* FD filters from best effort pool */
500 b_val = pf->hw.func_caps.fd_fltr_best_effort;
501 if (!b_val)
502 return -EPERM;
503
504 if (vsi->type != ICE_VSI_PF)
505 return -EPERM;
506
507 if (!test_bit(ICE_FLAG_FD_ENA, pf->flags))
508 return -EPERM;
509
510 vsi->num_gfltr = g_val / pf->num_alloc_vsi;
511
512 /* each VSI gets same "best_effort" quota */
513 vsi->num_bfltr = b_val;
514
515 return 0;
516}
517
518/**
519 * ice_vsi_get_qs - Assign queues from PF to VSI
520 * @vsi: the VSI to assign queues to
521 *
522 * Returns 0 on success and a negative value on error
523 */
524static int ice_vsi_get_qs(struct ice_vsi *vsi)
525{
526 struct ice_pf *pf = vsi->back;
527 struct ice_qs_cfg tx_qs_cfg = {
528 .qs_mutex = &pf->avail_q_mutex,
529 .pf_map = pf->avail_txqs,
530 .pf_map_size = pf->max_pf_txqs,
531 .q_count = vsi->alloc_txq,
532 .scatter_count = ICE_MAX_SCATTER_TXQS,
533 .vsi_map = vsi->txq_map,
534 .vsi_map_offset = 0,
535 .mapping_mode = ICE_VSI_MAP_CONTIG
536 };
537 struct ice_qs_cfg rx_qs_cfg = {
538 .qs_mutex = &pf->avail_q_mutex,
539 .pf_map = pf->avail_rxqs,
540 .pf_map_size = pf->max_pf_rxqs,
541 .q_count = vsi->alloc_rxq,
542 .scatter_count = ICE_MAX_SCATTER_RXQS,
543 .vsi_map = vsi->rxq_map,
544 .vsi_map_offset = 0,
545 .mapping_mode = ICE_VSI_MAP_CONTIG
546 };
547 int ret;
548
549 ret = __ice_vsi_get_qs(&tx_qs_cfg);
550 if (ret)
551 return ret;
552 vsi->tx_mapping_mode = tx_qs_cfg.mapping_mode;
553
554 ret = __ice_vsi_get_qs(&rx_qs_cfg);
555 if (ret)
556 return ret;
557 vsi->rx_mapping_mode = rx_qs_cfg.mapping_mode;
558
559 return 0;
560}
561
562/**
563 * ice_vsi_put_qs - Release queues from VSI to PF
564 * @vsi: the VSI that is going to release queues
565 */
566static void ice_vsi_put_qs(struct ice_vsi *vsi)
567{
568 struct ice_pf *pf = vsi->back;
569 int i;
570
571 mutex_lock(&pf->avail_q_mutex);
572
573 for (i = 0; i < vsi->alloc_txq; i++) {
574 clear_bit(vsi->txq_map[i], pf->avail_txqs);
575 vsi->txq_map[i] = ICE_INVAL_Q_INDEX;
576 }
577
578 for (i = 0; i < vsi->alloc_rxq; i++) {
579 clear_bit(vsi->rxq_map[i], pf->avail_rxqs);
580 vsi->rxq_map[i] = ICE_INVAL_Q_INDEX;
581 }
582
583 mutex_unlock(&pf->avail_q_mutex);
584}
585
586/**
587 * ice_is_safe_mode
588 * @pf: pointer to the PF struct
589 *
590 * returns true if driver is in safe mode, false otherwise
591 */
592bool ice_is_safe_mode(struct ice_pf *pf)
593{
594 return !test_bit(ICE_FLAG_ADV_FEATURES, pf->flags);
595}
596
597/**
598 * ice_vsi_clean_rss_flow_fld - Delete RSS configuration
599 * @vsi: the VSI being cleaned up
600 *
601 * This function deletes RSS input set for all flows that were configured
602 * for this VSI
603 */
604static void ice_vsi_clean_rss_flow_fld(struct ice_vsi *vsi)
605{
606 struct ice_pf *pf = vsi->back;
607 enum ice_status status;
608
609 if (ice_is_safe_mode(pf))
610 return;
611
612 status = ice_rem_vsi_rss_cfg(&pf->hw, vsi->idx);
613 if (status)
614 dev_dbg(ice_pf_to_dev(pf), "ice_rem_vsi_rss_cfg failed for vsi = %d, error = %s\n",
615 vsi->vsi_num, ice_stat_str(status));
616}
617
618/**
619 * ice_rss_clean - Delete RSS related VSI structures and configuration
620 * @vsi: the VSI being removed
621 */
622static void ice_rss_clean(struct ice_vsi *vsi)
623{
624 struct ice_pf *pf = vsi->back;
625 struct device *dev;
626
627 dev = ice_pf_to_dev(pf);
628
629 if (vsi->rss_hkey_user)
630 devm_kfree(dev, vsi->rss_hkey_user);
631 if (vsi->rss_lut_user)
632 devm_kfree(dev, vsi->rss_lut_user);
633
634 ice_vsi_clean_rss_flow_fld(vsi);
635 /* remove RSS replay list */
636 if (!ice_is_safe_mode(pf))
637 ice_rem_vsi_rss_list(&pf->hw, vsi->idx);
638}
639
640/**
641 * ice_vsi_set_rss_params - Setup RSS capabilities per VSI type
642 * @vsi: the VSI being configured
643 */
644static void ice_vsi_set_rss_params(struct ice_vsi *vsi)
645{
646 struct ice_hw_common_caps *cap;
647 struct ice_pf *pf = vsi->back;
648
649 if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
650 vsi->rss_size = 1;
651 return;
652 }
653
654 cap = &pf->hw.func_caps.common_cap;
655 switch (vsi->type) {
656 case ICE_VSI_PF:
657 /* PF VSI will inherit RSS instance of PF */
658 vsi->rss_table_size = (u16)cap->rss_table_size;
659 vsi->rss_size = min_t(u16, num_online_cpus(),
660 BIT(cap->rss_table_entry_width));
661 vsi->rss_lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF;
662 break;
663 case ICE_VSI_VF:
664 /* VF VSI will get a small RSS table.
665 * For VSI_LUT, LUT size should be set to 64 bytes.
666 */
667 vsi->rss_table_size = ICE_VSIQF_HLUT_ARRAY_SIZE;
668 vsi->rss_size = ICE_MAX_RSS_QS_PER_VF;
669 vsi->rss_lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_VSI;
670 break;
671 case ICE_VSI_LB:
672 break;
673 default:
674 dev_dbg(ice_pf_to_dev(pf), "Unsupported VSI type %s\n",
675 ice_vsi_type_str(vsi->type));
676 break;
677 }
678}
679
680/**
681 * ice_set_dflt_vsi_ctx - Set default VSI context before adding a VSI
682 * @ctxt: the VSI context being set
683 *
684 * This initializes a default VSI context for all sections except the Queues.
685 */
686static void ice_set_dflt_vsi_ctx(struct ice_vsi_ctx *ctxt)
687{
688 u32 table = 0;
689
690 memset(&ctxt->info, 0, sizeof(ctxt->info));
691 /* VSI's should be allocated from shared pool */
692 ctxt->alloc_from_pool = true;
693 /* Src pruning enabled by default */
694 ctxt->info.sw_flags = ICE_AQ_VSI_SW_FLAG_SRC_PRUNE;
695 /* Traffic from VSI can be sent to LAN */
696 ctxt->info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
697 /* By default bits 3 and 4 in vlan_flags are 0's which results in legacy
698 * behavior (show VLAN, DEI, and UP) in descriptor. Also, allow all
699 * packets untagged/tagged.
700 */
701 ctxt->info.vlan_flags = ((ICE_AQ_VSI_VLAN_MODE_ALL &
702 ICE_AQ_VSI_VLAN_MODE_M) >>
703 ICE_AQ_VSI_VLAN_MODE_S);
704 /* Have 1:1 UP mapping for both ingress/egress tables */
705 table |= ICE_UP_TABLE_TRANSLATE(0, 0);
706 table |= ICE_UP_TABLE_TRANSLATE(1, 1);
707 table |= ICE_UP_TABLE_TRANSLATE(2, 2);
708 table |= ICE_UP_TABLE_TRANSLATE(3, 3);
709 table |= ICE_UP_TABLE_TRANSLATE(4, 4);
710 table |= ICE_UP_TABLE_TRANSLATE(5, 5);
711 table |= ICE_UP_TABLE_TRANSLATE(6, 6);
712 table |= ICE_UP_TABLE_TRANSLATE(7, 7);
713 ctxt->info.ingress_table = cpu_to_le32(table);
714 ctxt->info.egress_table = cpu_to_le32(table);
715 /* Have 1:1 UP mapping for outer to inner UP table */
716 ctxt->info.outer_up_table = cpu_to_le32(table);
717 /* No Outer tag support outer_tag_flags remains to zero */
718}
719
720/**
721 * ice_vsi_setup_q_map - Setup a VSI queue map
722 * @vsi: the VSI being configured
723 * @ctxt: VSI context structure
724 */
725static void ice_vsi_setup_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctxt)
726{
727 u16 offset = 0, qmap = 0, tx_count = 0;
728 u16 qcount_tx = vsi->alloc_txq;
729 u16 qcount_rx = vsi->alloc_rxq;
730 u16 tx_numq_tc, rx_numq_tc;
731 u16 pow = 0, max_rss = 0;
732 bool ena_tc0 = false;
733 u8 netdev_tc = 0;
734 int i;
735
736 /* at least TC0 should be enabled by default */
737 if (vsi->tc_cfg.numtc) {
738 if (!(vsi->tc_cfg.ena_tc & BIT(0)))
739 ena_tc0 = true;
740 } else {
741 ena_tc0 = true;
742 }
743
744 if (ena_tc0) {
745 vsi->tc_cfg.numtc++;
746 vsi->tc_cfg.ena_tc |= 1;
747 }
748
749 rx_numq_tc = qcount_rx / vsi->tc_cfg.numtc;
750 if (!rx_numq_tc)
751 rx_numq_tc = 1;
752 tx_numq_tc = qcount_tx / vsi->tc_cfg.numtc;
753 if (!tx_numq_tc)
754 tx_numq_tc = 1;
755
756 /* TC mapping is a function of the number of Rx queues assigned to the
757 * VSI for each traffic class and the offset of these queues.
758 * The first 10 bits are for queue offset for TC0, next 4 bits for no:of
759 * queues allocated to TC0. No:of queues is a power-of-2.
760 *
761 * If TC is not enabled, the queue offset is set to 0, and allocate one
762 * queue, this way, traffic for the given TC will be sent to the default
763 * queue.
764 *
765 * Setup number and offset of Rx queues for all TCs for the VSI
766 */
767
768 qcount_rx = rx_numq_tc;
769
770 /* qcount will change if RSS is enabled */
771 if (test_bit(ICE_FLAG_RSS_ENA, vsi->back->flags)) {
772 if (vsi->type == ICE_VSI_PF || vsi->type == ICE_VSI_VF) {
773 if (vsi->type == ICE_VSI_PF)
774 max_rss = ICE_MAX_LG_RSS_QS;
775 else
776 max_rss = ICE_MAX_RSS_QS_PER_VF;
777 qcount_rx = min_t(u16, rx_numq_tc, max_rss);
778 if (!vsi->req_rxq)
779 qcount_rx = min_t(u16, qcount_rx,
780 vsi->rss_size);
781 }
782 }
783
784 /* find the (rounded up) power-of-2 of qcount */
785 pow = (u16)order_base_2(qcount_rx);
786
787 ice_for_each_traffic_class(i) {
788 if (!(vsi->tc_cfg.ena_tc & BIT(i))) {
789 /* TC is not enabled */
790 vsi->tc_cfg.tc_info[i].qoffset = 0;
791 vsi->tc_cfg.tc_info[i].qcount_rx = 1;
792 vsi->tc_cfg.tc_info[i].qcount_tx = 1;
793 vsi->tc_cfg.tc_info[i].netdev_tc = 0;
794 ctxt->info.tc_mapping[i] = 0;
795 continue;
796 }
797
798 /* TC is enabled */
799 vsi->tc_cfg.tc_info[i].qoffset = offset;
800 vsi->tc_cfg.tc_info[i].qcount_rx = qcount_rx;
801 vsi->tc_cfg.tc_info[i].qcount_tx = tx_numq_tc;
802 vsi->tc_cfg.tc_info[i].netdev_tc = netdev_tc++;
803
804 qmap = ((offset << ICE_AQ_VSI_TC_Q_OFFSET_S) &
805 ICE_AQ_VSI_TC_Q_OFFSET_M) |
806 ((pow << ICE_AQ_VSI_TC_Q_NUM_S) &
807 ICE_AQ_VSI_TC_Q_NUM_M);
808 offset += qcount_rx;
809 tx_count += tx_numq_tc;
810 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
811 }
812
813 /* if offset is non-zero, means it is calculated correctly based on
814 * enabled TCs for a given VSI otherwise qcount_rx will always
815 * be correct and non-zero because it is based off - VSI's
816 * allocated Rx queues which is at least 1 (hence qcount_tx will be
817 * at least 1)
818 */
819 if (offset)
820 vsi->num_rxq = offset;
821 else
822 vsi->num_rxq = qcount_rx;
823
824 vsi->num_txq = tx_count;
825
826 if (vsi->type == ICE_VSI_VF && vsi->num_txq != vsi->num_rxq) {
827 dev_dbg(ice_pf_to_dev(vsi->back), "VF VSI should have same number of Tx and Rx queues. Hence making them equal\n");
828 /* since there is a chance that num_rxq could have been changed
829 * in the above for loop, make num_txq equal to num_rxq.
830 */
831 vsi->num_txq = vsi->num_rxq;
832 }
833
834 /* Rx queue mapping */
835 ctxt->info.mapping_flags |= cpu_to_le16(ICE_AQ_VSI_Q_MAP_CONTIG);
836 /* q_mapping buffer holds the info for the first queue allocated for
837 * this VSI in the PF space and also the number of queues associated
838 * with this VSI.
839 */
840 ctxt->info.q_mapping[0] = cpu_to_le16(vsi->rxq_map[0]);
841 ctxt->info.q_mapping[1] = cpu_to_le16(vsi->num_rxq);
842}
843
844/**
845 * ice_set_fd_vsi_ctx - Set FD VSI context before adding a VSI
846 * @ctxt: the VSI context being set
847 * @vsi: the VSI being configured
848 */
849static void ice_set_fd_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
850{
851 u8 dflt_q_group, dflt_q_prio;
852 u16 dflt_q, report_q, val;
853
854 if (vsi->type != ICE_VSI_PF && vsi->type != ICE_VSI_CTRL)
855 return;
856
857 val = ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
858 ctxt->info.valid_sections |= cpu_to_le16(val);
859 dflt_q = 0;
860 dflt_q_group = 0;
861 report_q = 0;
862 dflt_q_prio = 0;
863
864 /* enable flow director filtering/programming */
865 val = ICE_AQ_VSI_FD_ENABLE | ICE_AQ_VSI_FD_PROG_ENABLE;
866 ctxt->info.fd_options = cpu_to_le16(val);
867 /* max of allocated flow director filters */
868 ctxt->info.max_fd_fltr_dedicated =
869 cpu_to_le16(vsi->num_gfltr);
870 /* max of shared flow director filters any VSI may program */
871 ctxt->info.max_fd_fltr_shared =
872 cpu_to_le16(vsi->num_bfltr);
873 /* default queue index within the VSI of the default FD */
874 val = ((dflt_q << ICE_AQ_VSI_FD_DEF_Q_S) &
875 ICE_AQ_VSI_FD_DEF_Q_M);
876 /* target queue or queue group to the FD filter */
877 val |= ((dflt_q_group << ICE_AQ_VSI_FD_DEF_GRP_S) &
878 ICE_AQ_VSI_FD_DEF_GRP_M);
879 ctxt->info.fd_def_q = cpu_to_le16(val);
880 /* queue index on which FD filter completion is reported */
881 val = ((report_q << ICE_AQ_VSI_FD_REPORT_Q_S) &
882 ICE_AQ_VSI_FD_REPORT_Q_M);
883 /* priority of the default qindex action */
884 val |= ((dflt_q_prio << ICE_AQ_VSI_FD_DEF_PRIORITY_S) &
885 ICE_AQ_VSI_FD_DEF_PRIORITY_M);
886 ctxt->info.fd_report_opt = cpu_to_le16(val);
887}
888
889/**
890 * ice_set_rss_vsi_ctx - Set RSS VSI context before adding a VSI
891 * @ctxt: the VSI context being set
892 * @vsi: the VSI being configured
893 */
894static void ice_set_rss_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
895{
896 u8 lut_type, hash_type;
897 struct device *dev;
898 struct ice_pf *pf;
899
900 pf = vsi->back;
901 dev = ice_pf_to_dev(pf);
902
903 switch (vsi->type) {
904 case ICE_VSI_PF:
905 /* PF VSI will inherit RSS instance of PF */
906 lut_type = ICE_AQ_VSI_Q_OPT_RSS_LUT_PF;
907 hash_type = ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
908 break;
909 case ICE_VSI_VF:
910 /* VF VSI will gets a small RSS table which is a VSI LUT type */
911 lut_type = ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI;
912 hash_type = ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
913 break;
914 default:
915 dev_dbg(dev, "Unsupported VSI type %s\n",
916 ice_vsi_type_str(vsi->type));
917 return;
918 }
919
920 ctxt->info.q_opt_rss = ((lut_type << ICE_AQ_VSI_Q_OPT_RSS_LUT_S) &
921 ICE_AQ_VSI_Q_OPT_RSS_LUT_M) |
922 ((hash_type << ICE_AQ_VSI_Q_OPT_RSS_HASH_S) &
923 ICE_AQ_VSI_Q_OPT_RSS_HASH_M);
924}
925
926/**
927 * ice_vsi_init - Create and initialize a VSI
928 * @vsi: the VSI being configured
929 * @init_vsi: is this call creating a VSI
930 *
931 * This initializes a VSI context depending on the VSI type to be added and
932 * passes it down to the add_vsi aq command to create a new VSI.
933 */
934static int ice_vsi_init(struct ice_vsi *vsi, bool init_vsi)
935{
936 struct ice_pf *pf = vsi->back;
937 struct ice_hw *hw = &pf->hw;
938 struct ice_vsi_ctx *ctxt;
939 struct device *dev;
940 int ret = 0;
941
942 dev = ice_pf_to_dev(pf);
943 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
944 if (!ctxt)
945 return -ENOMEM;
946
947 switch (vsi->type) {
948 case ICE_VSI_CTRL:
949 case ICE_VSI_LB:
950 case ICE_VSI_PF:
951 ctxt->flags = ICE_AQ_VSI_TYPE_PF;
952 break;
953 case ICE_VSI_VF:
954 ctxt->flags = ICE_AQ_VSI_TYPE_VF;
955 /* VF number here is the absolute VF number (0-255) */
956 ctxt->vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
957 break;
958 default:
959 ret = -ENODEV;
960 goto out;
961 }
962
963 ice_set_dflt_vsi_ctx(ctxt);
964 if (test_bit(ICE_FLAG_FD_ENA, pf->flags))
965 ice_set_fd_vsi_ctx(ctxt, vsi);
966 /* if the switch is in VEB mode, allow VSI loopback */
967 if (vsi->vsw->bridge_mode == BRIDGE_MODE_VEB)
968 ctxt->info.sw_flags |= ICE_AQ_VSI_SW_FLAG_ALLOW_LB;
969
970 /* Set LUT type and HASH type if RSS is enabled */
971 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags) &&
972 vsi->type != ICE_VSI_CTRL) {
973 ice_set_rss_vsi_ctx(ctxt, vsi);
974 /* if updating VSI context, make sure to set valid_section:
975 * to indicate which section of VSI context being updated
976 */
977 if (!init_vsi)
978 ctxt->info.valid_sections |=
979 cpu_to_le16(ICE_AQ_VSI_PROP_Q_OPT_VALID);
980 }
981
982 ctxt->info.sw_id = vsi->port_info->sw_id;
983 ice_vsi_setup_q_map(vsi, ctxt);
984 if (!init_vsi) /* means VSI being updated */
985 /* must to indicate which section of VSI context are
986 * being modified
987 */
988 ctxt->info.valid_sections |=
989 cpu_to_le16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
990
991 /* enable/disable MAC and VLAN anti-spoof when spoofchk is on/off
992 * respectively
993 */
994 if (vsi->type == ICE_VSI_VF) {
995 ctxt->info.valid_sections |=
996 cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
997 if (pf->vf[vsi->vf_id].spoofchk) {
998 ctxt->info.sec_flags |=
999 ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF |
1000 (ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
1001 ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S);
1002 } else {
1003 ctxt->info.sec_flags &=
1004 ~(ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF |
1005 (ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
1006 ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S));
1007 }
1008 }
1009
1010 /* Allow control frames out of main VSI */
1011 if (vsi->type == ICE_VSI_PF) {
1012 ctxt->info.sec_flags |= ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD;
1013 ctxt->info.valid_sections |=
1014 cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
1015 }
1016
1017 if (init_vsi) {
1018 ret = ice_add_vsi(hw, vsi->idx, ctxt, NULL);
1019 if (ret) {
1020 dev_err(dev, "Add VSI failed, err %d\n", ret);
1021 ret = -EIO;
1022 goto out;
1023 }
1024 } else {
1025 ret = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1026 if (ret) {
1027 dev_err(dev, "Update VSI failed, err %d\n", ret);
1028 ret = -EIO;
1029 goto out;
1030 }
1031 }
1032
1033 /* keep context for update VSI operations */
1034 vsi->info = ctxt->info;
1035
1036 /* record VSI number returned */
1037 vsi->vsi_num = ctxt->vsi_num;
1038
1039out:
1040 kfree(ctxt);
1041 return ret;
1042}
1043
1044/**
1045 * ice_free_res - free a block of resources
1046 * @res: pointer to the resource
1047 * @index: starting index previously returned by ice_get_res
1048 * @id: identifier to track owner
1049 *
1050 * Returns number of resources freed
1051 */
1052int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id)
1053{
1054 int count = 0;
1055 int i;
1056
1057 if (!res || index >= res->end)
1058 return -EINVAL;
1059
1060 id |= ICE_RES_VALID_BIT;
1061 for (i = index; i < res->end && res->list[i] == id; i++) {
1062 res->list[i] = 0;
1063 count++;
1064 }
1065
1066 return count;
1067}
1068
1069/**
1070 * ice_search_res - Search the tracker for a block of resources
1071 * @res: pointer to the resource
1072 * @needed: size of the block needed
1073 * @id: identifier to track owner
1074 *
1075 * Returns the base item index of the block, or -ENOMEM for error
1076 */
1077static int ice_search_res(struct ice_res_tracker *res, u16 needed, u16 id)
1078{
1079 u16 start = 0, end = 0;
1080
1081 if (needed > res->end)
1082 return -ENOMEM;
1083
1084 id |= ICE_RES_VALID_BIT;
1085
1086 do {
1087 /* skip already allocated entries */
1088 if (res->list[end++] & ICE_RES_VALID_BIT) {
1089 start = end;
1090 if ((start + needed) > res->end)
1091 break;
1092 }
1093
1094 if (end == (start + needed)) {
1095 int i = start;
1096
1097 /* there was enough, so assign it to the requestor */
1098 while (i != end)
1099 res->list[i++] = id;
1100
1101 return start;
1102 }
1103 } while (end < res->end);
1104
1105 return -ENOMEM;
1106}
1107
1108/**
1109 * ice_get_free_res_count - Get free count from a resource tracker
1110 * @res: Resource tracker instance
1111 */
1112static u16 ice_get_free_res_count(struct ice_res_tracker *res)
1113{
1114 u16 i, count = 0;
1115
1116 for (i = 0; i < res->end; i++)
1117 if (!(res->list[i] & ICE_RES_VALID_BIT))
1118 count++;
1119
1120 return count;
1121}
1122
1123/**
1124 * ice_get_res - get a block of resources
1125 * @pf: board private structure
1126 * @res: pointer to the resource
1127 * @needed: size of the block needed
1128 * @id: identifier to track owner
1129 *
1130 * Returns the base item index of the block, or negative for error
1131 */
1132int
1133ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id)
1134{
1135 if (!res || !pf)
1136 return -EINVAL;
1137
1138 if (!needed || needed > res->num_entries || id >= ICE_RES_VALID_BIT) {
1139 dev_err(ice_pf_to_dev(pf), "param err: needed=%d, num_entries = %d id=0x%04x\n",
1140 needed, res->num_entries, id);
1141 return -EINVAL;
1142 }
1143
1144 return ice_search_res(res, needed, id);
1145}
1146
1147/**
1148 * ice_vsi_setup_vector_base - Set up the base vector for the given VSI
1149 * @vsi: ptr to the VSI
1150 *
1151 * This should only be called after ice_vsi_alloc() which allocates the
1152 * corresponding SW VSI structure and initializes num_queue_pairs for the
1153 * newly allocated VSI.
1154 *
1155 * Returns 0 on success or negative on failure
1156 */
1157static int ice_vsi_setup_vector_base(struct ice_vsi *vsi)
1158{
1159 struct ice_pf *pf = vsi->back;
1160 struct device *dev;
1161 u16 num_q_vectors;
1162 int base;
1163
1164 dev = ice_pf_to_dev(pf);
1165 /* SRIOV doesn't grab irq_tracker entries for each VSI */
1166 if (vsi->type == ICE_VSI_VF)
1167 return 0;
1168
1169 if (vsi->base_vector) {
1170 dev_dbg(dev, "VSI %d has non-zero base vector %d\n",
1171 vsi->vsi_num, vsi->base_vector);
1172 return -EEXIST;
1173 }
1174
1175 num_q_vectors = vsi->num_q_vectors;
1176 /* reserve slots from OS requested IRQs */
1177 base = ice_get_res(pf, pf->irq_tracker, num_q_vectors, vsi->idx);
1178
1179 if (base < 0) {
1180 dev_err(dev, "%d MSI-X interrupts available. %s %d failed to get %d MSI-X vectors\n",
1181 ice_get_free_res_count(pf->irq_tracker),
1182 ice_vsi_type_str(vsi->type), vsi->idx, num_q_vectors);
1183 return -ENOENT;
1184 }
1185 vsi->base_vector = (u16)base;
1186 pf->num_avail_sw_msix -= num_q_vectors;
1187
1188 return 0;
1189}
1190
1191/**
1192 * ice_vsi_clear_rings - Deallocates the Tx and Rx rings for VSI
1193 * @vsi: the VSI having rings deallocated
1194 */
1195static void ice_vsi_clear_rings(struct ice_vsi *vsi)
1196{
1197 int i;
1198
1199 /* Avoid stale references by clearing map from vector to ring */
1200 if (vsi->q_vectors) {
1201 ice_for_each_q_vector(vsi, i) {
1202 struct ice_q_vector *q_vector = vsi->q_vectors[i];
1203
1204 if (q_vector) {
1205 q_vector->tx.ring = NULL;
1206 q_vector->rx.ring = NULL;
1207 }
1208 }
1209 }
1210
1211 if (vsi->tx_rings) {
1212 for (i = 0; i < vsi->alloc_txq; i++) {
1213 if (vsi->tx_rings[i]) {
1214 kfree_rcu(vsi->tx_rings[i], rcu);
1215 WRITE_ONCE(vsi->tx_rings[i], NULL);
1216 }
1217 }
1218 }
1219 if (vsi->rx_rings) {
1220 for (i = 0; i < vsi->alloc_rxq; i++) {
1221 if (vsi->rx_rings[i]) {
1222 kfree_rcu(vsi->rx_rings[i], rcu);
1223 WRITE_ONCE(vsi->rx_rings[i], NULL);
1224 }
1225 }
1226 }
1227}
1228
1229/**
1230 * ice_vsi_alloc_rings - Allocates Tx and Rx rings for the VSI
1231 * @vsi: VSI which is having rings allocated
1232 */
1233static int ice_vsi_alloc_rings(struct ice_vsi *vsi)
1234{
1235 struct ice_pf *pf = vsi->back;
1236 struct device *dev;
1237 u16 i;
1238
1239 dev = ice_pf_to_dev(pf);
1240 /* Allocate Tx rings */
1241 for (i = 0; i < vsi->alloc_txq; i++) {
1242 struct ice_ring *ring;
1243
1244 /* allocate with kzalloc(), free with kfree_rcu() */
1245 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
1246
1247 if (!ring)
1248 goto err_out;
1249
1250 ring->q_index = i;
1251 ring->reg_idx = vsi->txq_map[i];
1252 ring->ring_active = false;
1253 ring->vsi = vsi;
1254 ring->dev = dev;
1255 ring->count = vsi->num_tx_desc;
1256 WRITE_ONCE(vsi->tx_rings[i], ring);
1257 }
1258
1259 /* Allocate Rx rings */
1260 for (i = 0; i < vsi->alloc_rxq; i++) {
1261 struct ice_ring *ring;
1262
1263 /* allocate with kzalloc(), free with kfree_rcu() */
1264 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
1265 if (!ring)
1266 goto err_out;
1267
1268 ring->q_index = i;
1269 ring->reg_idx = vsi->rxq_map[i];
1270 ring->ring_active = false;
1271 ring->vsi = vsi;
1272 ring->netdev = vsi->netdev;
1273 ring->dev = dev;
1274 ring->count = vsi->num_rx_desc;
1275 WRITE_ONCE(vsi->rx_rings[i], ring);
1276 }
1277
1278 return 0;
1279
1280err_out:
1281 ice_vsi_clear_rings(vsi);
1282 return -ENOMEM;
1283}
1284
1285/**
1286 * ice_vsi_manage_rss_lut - disable/enable RSS
1287 * @vsi: the VSI being changed
1288 * @ena: boolean value indicating if this is an enable or disable request
1289 *
1290 * In the event of disable request for RSS, this function will zero out RSS
1291 * LUT, while in the event of enable request for RSS, it will reconfigure RSS
1292 * LUT.
1293 */
1294int ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena)
1295{
1296 int err = 0;
1297 u8 *lut;
1298
1299 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
1300 if (!lut)
1301 return -ENOMEM;
1302
1303 if (ena) {
1304 if (vsi->rss_lut_user)
1305 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
1306 else
1307 ice_fill_rss_lut(lut, vsi->rss_table_size,
1308 vsi->rss_size);
1309 }
1310
1311 err = ice_set_rss(vsi, NULL, lut, vsi->rss_table_size);
1312 kfree(lut);
1313 return err;
1314}
1315
1316/**
1317 * ice_vsi_cfg_rss_lut_key - Configure RSS params for a VSI
1318 * @vsi: VSI to be configured
1319 */
1320static int ice_vsi_cfg_rss_lut_key(struct ice_vsi *vsi)
1321{
1322 struct ice_aqc_get_set_rss_keys *key;
1323 struct ice_pf *pf = vsi->back;
1324 enum ice_status status;
1325 struct device *dev;
1326 int err = 0;
1327 u8 *lut;
1328
1329 dev = ice_pf_to_dev(pf);
1330 vsi->rss_size = min_t(u16, vsi->rss_size, vsi->num_rxq);
1331
1332 lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
1333 if (!lut)
1334 return -ENOMEM;
1335
1336 if (vsi->rss_lut_user)
1337 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
1338 else
1339 ice_fill_rss_lut(lut, vsi->rss_table_size, vsi->rss_size);
1340
1341 status = ice_aq_set_rss_lut(&pf->hw, vsi->idx, vsi->rss_lut_type, lut,
1342 vsi->rss_table_size);
1343
1344 if (status) {
1345 dev_err(dev, "set_rss_lut failed, error %s\n",
1346 ice_stat_str(status));
1347 err = -EIO;
1348 goto ice_vsi_cfg_rss_exit;
1349 }
1350
1351 key = kzalloc(sizeof(*key), GFP_KERNEL);
1352 if (!key) {
1353 err = -ENOMEM;
1354 goto ice_vsi_cfg_rss_exit;
1355 }
1356
1357 if (vsi->rss_hkey_user)
1358 memcpy(key,
1359 (struct ice_aqc_get_set_rss_keys *)vsi->rss_hkey_user,
1360 ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE);
1361 else
1362 netdev_rss_key_fill((void *)key,
1363 ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE);
1364
1365 status = ice_aq_set_rss_key(&pf->hw, vsi->idx, key);
1366
1367 if (status) {
1368 dev_err(dev, "set_rss_key failed, error %s\n",
1369 ice_stat_str(status));
1370 err = -EIO;
1371 }
1372
1373 kfree(key);
1374ice_vsi_cfg_rss_exit:
1375 kfree(lut);
1376 return err;
1377}
1378
1379/**
1380 * ice_vsi_set_vf_rss_flow_fld - Sets VF VSI RSS input set for different flows
1381 * @vsi: VSI to be configured
1382 *
1383 * This function will only be called during the VF VSI setup. Upon successful
1384 * completion of package download, this function will configure default RSS
1385 * input sets for VF VSI.
1386 */
1387static void ice_vsi_set_vf_rss_flow_fld(struct ice_vsi *vsi)
1388{
1389 struct ice_pf *pf = vsi->back;
1390 enum ice_status status;
1391 struct device *dev;
1392
1393 dev = ice_pf_to_dev(pf);
1394 if (ice_is_safe_mode(pf)) {
1395 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
1396 vsi->vsi_num);
1397 return;
1398 }
1399
1400 status = ice_add_avf_rss_cfg(&pf->hw, vsi->idx, ICE_DEFAULT_RSS_HENA);
1401 if (status)
1402 dev_dbg(dev, "ice_add_avf_rss_cfg failed for vsi = %d, error = %s\n",
1403 vsi->vsi_num, ice_stat_str(status));
1404}
1405
1406/**
1407 * ice_vsi_set_rss_flow_fld - Sets RSS input set for different flows
1408 * @vsi: VSI to be configured
1409 *
1410 * This function will only be called after successful download package call
1411 * during initialization of PF. Since the downloaded package will erase the
1412 * RSS section, this function will configure RSS input sets for different
1413 * flow types. The last profile added has the highest priority, therefore 2
1414 * tuple profiles (i.e. IPv4 src/dst) are added before 4 tuple profiles
1415 * (i.e. IPv4 src/dst TCP src/dst port).
1416 */
1417static void ice_vsi_set_rss_flow_fld(struct ice_vsi *vsi)
1418{
1419 u16 vsi_handle = vsi->idx, vsi_num = vsi->vsi_num;
1420 struct ice_pf *pf = vsi->back;
1421 struct ice_hw *hw = &pf->hw;
1422 enum ice_status status;
1423 struct device *dev;
1424
1425 dev = ice_pf_to_dev(pf);
1426 if (ice_is_safe_mode(pf)) {
1427 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
1428 vsi_num);
1429 return;
1430 }
1431 /* configure RSS for IPv4 with input set IP src/dst */
1432 status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV4,
1433 ICE_FLOW_SEG_HDR_IPV4);
1434 if (status)
1435 dev_dbg(dev, "ice_add_rss_cfg failed for ipv4 flow, vsi = %d, error = %s\n",
1436 vsi_num, ice_stat_str(status));
1437
1438 /* configure RSS for IPv6 with input set IPv6 src/dst */
1439 status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV6,
1440 ICE_FLOW_SEG_HDR_IPV6);
1441 if (status)
1442 dev_dbg(dev, "ice_add_rss_cfg failed for ipv6 flow, vsi = %d, error = %s\n",
1443 vsi_num, ice_stat_str(status));
1444
1445 /* configure RSS for tcp4 with input set IP src/dst, TCP src/dst */
1446 status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_TCP_IPV4,
1447 ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV4);
1448 if (status)
1449 dev_dbg(dev, "ice_add_rss_cfg failed for tcp4 flow, vsi = %d, error = %s\n",
1450 vsi_num, ice_stat_str(status));
1451
1452 /* configure RSS for udp4 with input set IP src/dst, UDP src/dst */
1453 status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_UDP_IPV4,
1454 ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV4);
1455 if (status)
1456 dev_dbg(dev, "ice_add_rss_cfg failed for udp4 flow, vsi = %d, error = %s\n",
1457 vsi_num, ice_stat_str(status));
1458
1459 /* configure RSS for sctp4 with input set IP src/dst */
1460 status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV4,
1461 ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV4);
1462 if (status)
1463 dev_dbg(dev, "ice_add_rss_cfg failed for sctp4 flow, vsi = %d, error = %s\n",
1464 vsi_num, ice_stat_str(status));
1465
1466 /* configure RSS for tcp6 with input set IPv6 src/dst, TCP src/dst */
1467 status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_TCP_IPV6,
1468 ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV6);
1469 if (status)
1470 dev_dbg(dev, "ice_add_rss_cfg failed for tcp6 flow, vsi = %d, error = %s\n",
1471 vsi_num, ice_stat_str(status));
1472
1473 /* configure RSS for udp6 with input set IPv6 src/dst, UDP src/dst */
1474 status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_UDP_IPV6,
1475 ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV6);
1476 if (status)
1477 dev_dbg(dev, "ice_add_rss_cfg failed for udp6 flow, vsi = %d, error = %s\n",
1478 vsi_num, ice_stat_str(status));
1479
1480 /* configure RSS for sctp6 with input set IPv6 src/dst */
1481 status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV6,
1482 ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV6);
1483 if (status)
1484 dev_dbg(dev, "ice_add_rss_cfg failed for sctp6 flow, vsi = %d, error = %s\n",
1485 vsi_num, ice_stat_str(status));
1486}
1487
1488/**
1489 * ice_pf_state_is_nominal - checks the PF for nominal state
1490 * @pf: pointer to PF to check
1491 *
1492 * Check the PF's state for a collection of bits that would indicate
1493 * the PF is in a state that would inhibit normal operation for
1494 * driver functionality.
1495 *
1496 * Returns true if PF is in a nominal state, false otherwise
1497 */
1498bool ice_pf_state_is_nominal(struct ice_pf *pf)
1499{
1500 DECLARE_BITMAP(check_bits, __ICE_STATE_NBITS) = { 0 };
1501
1502 if (!pf)
1503 return false;
1504
1505 bitmap_set(check_bits, 0, __ICE_STATE_NOMINAL_CHECK_BITS);
1506 if (bitmap_intersects(pf->state, check_bits, __ICE_STATE_NBITS))
1507 return false;
1508
1509 return true;
1510}
1511
1512/**
1513 * ice_update_eth_stats - Update VSI-specific ethernet statistics counters
1514 * @vsi: the VSI to be updated
1515 */
1516void ice_update_eth_stats(struct ice_vsi *vsi)
1517{
1518 struct ice_eth_stats *prev_es, *cur_es;
1519 struct ice_hw *hw = &vsi->back->hw;
1520 u16 vsi_num = vsi->vsi_num; /* HW absolute index of a VSI */
1521
1522 prev_es = &vsi->eth_stats_prev;
1523 cur_es = &vsi->eth_stats;
1524
1525 ice_stat_update40(hw, GLV_GORCL(vsi_num), vsi->stat_offsets_loaded,
1526 &prev_es->rx_bytes, &cur_es->rx_bytes);
1527
1528 ice_stat_update40(hw, GLV_UPRCL(vsi_num), vsi->stat_offsets_loaded,
1529 &prev_es->rx_unicast, &cur_es->rx_unicast);
1530
1531 ice_stat_update40(hw, GLV_MPRCL(vsi_num), vsi->stat_offsets_loaded,
1532 &prev_es->rx_multicast, &cur_es->rx_multicast);
1533
1534 ice_stat_update40(hw, GLV_BPRCL(vsi_num), vsi->stat_offsets_loaded,
1535 &prev_es->rx_broadcast, &cur_es->rx_broadcast);
1536
1537 ice_stat_update32(hw, GLV_RDPC(vsi_num), vsi->stat_offsets_loaded,
1538 &prev_es->rx_discards, &cur_es->rx_discards);
1539
1540 ice_stat_update40(hw, GLV_GOTCL(vsi_num), vsi->stat_offsets_loaded,
1541 &prev_es->tx_bytes, &cur_es->tx_bytes);
1542
1543 ice_stat_update40(hw, GLV_UPTCL(vsi_num), vsi->stat_offsets_loaded,
1544 &prev_es->tx_unicast, &cur_es->tx_unicast);
1545
1546 ice_stat_update40(hw, GLV_MPTCL(vsi_num), vsi->stat_offsets_loaded,
1547 &prev_es->tx_multicast, &cur_es->tx_multicast);
1548
1549 ice_stat_update40(hw, GLV_BPTCL(vsi_num), vsi->stat_offsets_loaded,
1550 &prev_es->tx_broadcast, &cur_es->tx_broadcast);
1551
1552 ice_stat_update32(hw, GLV_TEPC(vsi_num), vsi->stat_offsets_loaded,
1553 &prev_es->tx_errors, &cur_es->tx_errors);
1554
1555 vsi->stat_offsets_loaded = true;
1556}
1557
1558/**
1559 * ice_vsi_add_vlan - Add VSI membership for given VLAN
1560 * @vsi: the VSI being configured
1561 * @vid: VLAN ID to be added
1562 * @action: filter action to be performed on match
1563 */
1564int
1565ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action)
1566{
1567 struct ice_pf *pf = vsi->back;
1568 struct device *dev;
1569 int err = 0;
1570
1571 dev = ice_pf_to_dev(pf);
1572
1573 if (!ice_fltr_add_vlan(vsi, vid, action)) {
1574 vsi->num_vlan++;
1575 } else {
1576 err = -ENODEV;
1577 dev_err(dev, "Failure Adding VLAN %d on VSI %i\n", vid,
1578 vsi->vsi_num);
1579 }
1580
1581 return err;
1582}
1583
1584/**
1585 * ice_vsi_kill_vlan - Remove VSI membership for a given VLAN
1586 * @vsi: the VSI being configured
1587 * @vid: VLAN ID to be removed
1588 *
1589 * Returns 0 on success and negative on failure
1590 */
1591int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid)
1592{
1593 struct ice_pf *pf = vsi->back;
1594 enum ice_status status;
1595 struct device *dev;
1596 int err = 0;
1597
1598 dev = ice_pf_to_dev(pf);
1599
1600 status = ice_fltr_remove_vlan(vsi, vid, ICE_FWD_TO_VSI);
1601 if (!status) {
1602 vsi->num_vlan--;
1603 } else if (status == ICE_ERR_DOES_NOT_EXIST) {
1604 dev_dbg(dev, "Failed to remove VLAN %d on VSI %i, it does not exist, status: %s\n",
1605 vid, vsi->vsi_num, ice_stat_str(status));
1606 } else {
1607 dev_err(dev, "Error removing VLAN %d on vsi %i error: %s\n",
1608 vid, vsi->vsi_num, ice_stat_str(status));
1609 err = -EIO;
1610 }
1611
1612 return err;
1613}
1614
1615/**
1616 * ice_vsi_cfg_frame_size - setup max frame size and Rx buffer length
1617 * @vsi: VSI
1618 */
1619void ice_vsi_cfg_frame_size(struct ice_vsi *vsi)
1620{
1621 if (!vsi->netdev || test_bit(ICE_FLAG_LEGACY_RX, vsi->back->flags)) {
1622 vsi->max_frame = ICE_AQ_SET_MAC_FRAME_SIZE_MAX;
1623 vsi->rx_buf_len = ICE_RXBUF_2048;
1624#if (PAGE_SIZE < 8192)
1625 } else if (!ICE_2K_TOO_SMALL_WITH_PADDING &&
1626 (vsi->netdev->mtu <= ETH_DATA_LEN)) {
1627 vsi->max_frame = ICE_RXBUF_1536 - NET_IP_ALIGN;
1628 vsi->rx_buf_len = ICE_RXBUF_1536 - NET_IP_ALIGN;
1629#endif
1630 } else {
1631 vsi->max_frame = ICE_AQ_SET_MAC_FRAME_SIZE_MAX;
1632#if (PAGE_SIZE < 8192)
1633 vsi->rx_buf_len = ICE_RXBUF_3072;
1634#else
1635 vsi->rx_buf_len = ICE_RXBUF_2048;
1636#endif
1637 }
1638}
1639
1640/**
1641 * ice_write_qrxflxp_cntxt - write/configure QRXFLXP_CNTXT register
1642 * @hw: HW pointer
1643 * @pf_q: index of the Rx queue in the PF's queue space
1644 * @rxdid: flexible descriptor RXDID
1645 * @prio: priority for the RXDID for this queue
1646 */
1647void
1648ice_write_qrxflxp_cntxt(struct ice_hw *hw, u16 pf_q, u32 rxdid, u32 prio)
1649{
1650 int regval = rd32(hw, QRXFLXP_CNTXT(pf_q));
1651
1652 /* clear any previous values */
1653 regval &= ~(QRXFLXP_CNTXT_RXDID_IDX_M |
1654 QRXFLXP_CNTXT_RXDID_PRIO_M |
1655 QRXFLXP_CNTXT_TS_M);
1656
1657 regval |= (rxdid << QRXFLXP_CNTXT_RXDID_IDX_S) &
1658 QRXFLXP_CNTXT_RXDID_IDX_M;
1659
1660 regval |= (prio << QRXFLXP_CNTXT_RXDID_PRIO_S) &
1661 QRXFLXP_CNTXT_RXDID_PRIO_M;
1662
1663 wr32(hw, QRXFLXP_CNTXT(pf_q), regval);
1664}
1665
1666/**
1667 * ice_vsi_cfg_rxqs - Configure the VSI for Rx
1668 * @vsi: the VSI being configured
1669 *
1670 * Return 0 on success and a negative value on error
1671 * Configure the Rx VSI for operation.
1672 */
1673int ice_vsi_cfg_rxqs(struct ice_vsi *vsi)
1674{
1675 u16 i;
1676
1677 if (vsi->type == ICE_VSI_VF)
1678 goto setup_rings;
1679
1680 ice_vsi_cfg_frame_size(vsi);
1681setup_rings:
1682 /* set up individual rings */
1683 for (i = 0; i < vsi->num_rxq; i++) {
1684 int err;
1685
1686 err = ice_setup_rx_ctx(vsi->rx_rings[i]);
1687 if (err) {
1688 dev_err(ice_pf_to_dev(vsi->back), "ice_setup_rx_ctx failed for RxQ %d, err %d\n",
1689 i, err);
1690 return err;
1691 }
1692 }
1693
1694 return 0;
1695}
1696
1697/**
1698 * ice_vsi_cfg_txqs - Configure the VSI for Tx
1699 * @vsi: the VSI being configured
1700 * @rings: Tx ring array to be configured
1701 *
1702 * Return 0 on success and a negative value on error
1703 * Configure the Tx VSI for operation.
1704 */
1705static int
1706ice_vsi_cfg_txqs(struct ice_vsi *vsi, struct ice_ring **rings)
1707{
1708 struct ice_aqc_add_tx_qgrp *qg_buf;
1709 u16 q_idx = 0;
1710 int err = 0;
1711
1712 qg_buf = kzalloc(struct_size(qg_buf, txqs, 1), GFP_KERNEL);
1713 if (!qg_buf)
1714 return -ENOMEM;
1715
1716 qg_buf->num_txqs = 1;
1717
1718 for (q_idx = 0; q_idx < vsi->num_txq; q_idx++) {
1719 err = ice_vsi_cfg_txq(vsi, rings[q_idx], qg_buf);
1720 if (err)
1721 goto err_cfg_txqs;
1722 }
1723
1724err_cfg_txqs:
1725 kfree(qg_buf);
1726 return err;
1727}
1728
1729/**
1730 * ice_vsi_cfg_lan_txqs - Configure the VSI for Tx
1731 * @vsi: the VSI being configured
1732 *
1733 * Return 0 on success and a negative value on error
1734 * Configure the Tx VSI for operation.
1735 */
1736int ice_vsi_cfg_lan_txqs(struct ice_vsi *vsi)
1737{
1738 return ice_vsi_cfg_txqs(vsi, vsi->tx_rings);
1739}
1740
1741/**
1742 * ice_vsi_cfg_xdp_txqs - Configure Tx queues dedicated for XDP in given VSI
1743 * @vsi: the VSI being configured
1744 *
1745 * Return 0 on success and a negative value on error
1746 * Configure the Tx queues dedicated for XDP in given VSI for operation.
1747 */
1748int ice_vsi_cfg_xdp_txqs(struct ice_vsi *vsi)
1749{
1750 int ret;
1751 int i;
1752
1753 ret = ice_vsi_cfg_txqs(vsi, vsi->xdp_rings);
1754 if (ret)
1755 return ret;
1756
1757 for (i = 0; i < vsi->num_xdp_txq; i++)
1758 vsi->xdp_rings[i]->xsk_umem = ice_xsk_umem(vsi->xdp_rings[i]);
1759
1760 return ret;
1761}
1762
1763/**
1764 * ice_intrl_usec_to_reg - convert interrupt rate limit to register value
1765 * @intrl: interrupt rate limit in usecs
1766 * @gran: interrupt rate limit granularity in usecs
1767 *
1768 * This function converts a decimal interrupt rate limit in usecs to the format
1769 * expected by firmware.
1770 */
1771u32 ice_intrl_usec_to_reg(u8 intrl, u8 gran)
1772{
1773 u32 val = intrl / gran;
1774
1775 if (val)
1776 return val | GLINT_RATE_INTRL_ENA_M;
1777 return 0;
1778}
1779
1780/**
1781 * ice_vsi_cfg_msix - MSIX mode Interrupt Config in the HW
1782 * @vsi: the VSI being configured
1783 *
1784 * This configures MSIX mode interrupts for the PF VSI, and should not be used
1785 * for the VF VSI.
1786 */
1787void ice_vsi_cfg_msix(struct ice_vsi *vsi)
1788{
1789 struct ice_pf *pf = vsi->back;
1790 struct ice_hw *hw = &pf->hw;
1791 u16 txq = 0, rxq = 0;
1792 int i, q;
1793
1794 for (i = 0; i < vsi->num_q_vectors; i++) {
1795 struct ice_q_vector *q_vector = vsi->q_vectors[i];
1796 u16 reg_idx = q_vector->reg_idx;
1797
1798 ice_cfg_itr(hw, q_vector);
1799
1800 wr32(hw, GLINT_RATE(reg_idx),
1801 ice_intrl_usec_to_reg(q_vector->intrl, hw->intrl_gran));
1802
1803 /* Both Transmit Queue Interrupt Cause Control register
1804 * and Receive Queue Interrupt Cause control register
1805 * expects MSIX_INDX field to be the vector index
1806 * within the function space and not the absolute
1807 * vector index across PF or across device.
1808 * For SR-IOV VF VSIs queue vector index always starts
1809 * with 1 since first vector index(0) is used for OICR
1810 * in VF space. Since VMDq and other PF VSIs are within
1811 * the PF function space, use the vector index that is
1812 * tracked for this PF.
1813 */
1814 for (q = 0; q < q_vector->num_ring_tx; q++) {
1815 ice_cfg_txq_interrupt(vsi, txq, reg_idx,
1816 q_vector->tx.itr_idx);
1817 txq++;
1818 }
1819
1820 for (q = 0; q < q_vector->num_ring_rx; q++) {
1821 ice_cfg_rxq_interrupt(vsi, rxq, reg_idx,
1822 q_vector->rx.itr_idx);
1823 rxq++;
1824 }
1825 }
1826}
1827
1828/**
1829 * ice_vsi_manage_vlan_insertion - Manage VLAN insertion for the VSI for Tx
1830 * @vsi: the VSI being changed
1831 */
1832int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi)
1833{
1834 struct ice_hw *hw = &vsi->back->hw;
1835 struct ice_vsi_ctx *ctxt;
1836 enum ice_status status;
1837 int ret = 0;
1838
1839 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
1840 if (!ctxt)
1841 return -ENOMEM;
1842
1843 /* Here we are configuring the VSI to let the driver add VLAN tags by
1844 * setting vlan_flags to ICE_AQ_VSI_VLAN_MODE_ALL. The actual VLAN tag
1845 * insertion happens in the Tx hot path, in ice_tx_map.
1846 */
1847 ctxt->info.vlan_flags = ICE_AQ_VSI_VLAN_MODE_ALL;
1848
1849 /* Preserve existing VLAN strip setting */
1850 ctxt->info.vlan_flags |= (vsi->info.vlan_flags &
1851 ICE_AQ_VSI_VLAN_EMOD_M);
1852
1853 ctxt->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_VLAN_VALID);
1854
1855 status = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1856 if (status) {
1857 dev_err(ice_pf_to_dev(vsi->back), "update VSI for VLAN insert failed, err %s aq_err %s\n",
1858 ice_stat_str(status),
1859 ice_aq_str(hw->adminq.sq_last_status));
1860 ret = -EIO;
1861 goto out;
1862 }
1863
1864 vsi->info.vlan_flags = ctxt->info.vlan_flags;
1865out:
1866 kfree(ctxt);
1867 return ret;
1868}
1869
1870/**
1871 * ice_vsi_manage_vlan_stripping - Manage VLAN stripping for the VSI for Rx
1872 * @vsi: the VSI being changed
1873 * @ena: boolean value indicating if this is a enable or disable request
1874 */
1875int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena)
1876{
1877 struct ice_hw *hw = &vsi->back->hw;
1878 struct ice_vsi_ctx *ctxt;
1879 enum ice_status status;
1880 int ret = 0;
1881
1882 /* do not allow modifying VLAN stripping when a port VLAN is configured
1883 * on this VSI
1884 */
1885 if (vsi->info.pvid)
1886 return 0;
1887
1888 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
1889 if (!ctxt)
1890 return -ENOMEM;
1891
1892 /* Here we are configuring what the VSI should do with the VLAN tag in
1893 * the Rx packet. We can either leave the tag in the packet or put it in
1894 * the Rx descriptor.
1895 */
1896 if (ena)
1897 /* Strip VLAN tag from Rx packet and put it in the desc */
1898 ctxt->info.vlan_flags = ICE_AQ_VSI_VLAN_EMOD_STR_BOTH;
1899 else
1900 /* Disable stripping. Leave tag in packet */
1901 ctxt->info.vlan_flags = ICE_AQ_VSI_VLAN_EMOD_NOTHING;
1902
1903 /* Allow all packets untagged/tagged */
1904 ctxt->info.vlan_flags |= ICE_AQ_VSI_VLAN_MODE_ALL;
1905
1906 ctxt->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_VLAN_VALID);
1907
1908 status = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1909 if (status) {
1910 dev_err(ice_pf_to_dev(vsi->back), "update VSI for VLAN strip failed, ena = %d err %s aq_err %s\n",
1911 ena, ice_stat_str(status),
1912 ice_aq_str(hw->adminq.sq_last_status));
1913 ret = -EIO;
1914 goto out;
1915 }
1916
1917 vsi->info.vlan_flags = ctxt->info.vlan_flags;
1918out:
1919 kfree(ctxt);
1920 return ret;
1921}
1922
1923/**
1924 * ice_vsi_start_all_rx_rings - start/enable all of a VSI's Rx rings
1925 * @vsi: the VSI whose rings are to be enabled
1926 *
1927 * Returns 0 on success and a negative value on error
1928 */
1929int ice_vsi_start_all_rx_rings(struct ice_vsi *vsi)
1930{
1931 return ice_vsi_ctrl_all_rx_rings(vsi, true);
1932}
1933
1934/**
1935 * ice_vsi_stop_all_rx_rings - stop/disable all of a VSI's Rx rings
1936 * @vsi: the VSI whose rings are to be disabled
1937 *
1938 * Returns 0 on success and a negative value on error
1939 */
1940int ice_vsi_stop_all_rx_rings(struct ice_vsi *vsi)
1941{
1942 return ice_vsi_ctrl_all_rx_rings(vsi, false);
1943}
1944
1945/**
1946 * ice_vsi_stop_tx_rings - Disable Tx rings
1947 * @vsi: the VSI being configured
1948 * @rst_src: reset source
1949 * @rel_vmvf_num: Relative ID of VF/VM
1950 * @rings: Tx ring array to be stopped
1951 */
1952static int
1953ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1954 u16 rel_vmvf_num, struct ice_ring **rings)
1955{
1956 u16 q_idx;
1957
1958 if (vsi->num_txq > ICE_LAN_TXQ_MAX_QDIS)
1959 return -EINVAL;
1960
1961 for (q_idx = 0; q_idx < vsi->num_txq; q_idx++) {
1962 struct ice_txq_meta txq_meta = { };
1963 int status;
1964
1965 if (!rings || !rings[q_idx])
1966 return -EINVAL;
1967
1968 ice_fill_txq_meta(vsi, rings[q_idx], &txq_meta);
1969 status = ice_vsi_stop_tx_ring(vsi, rst_src, rel_vmvf_num,
1970 rings[q_idx], &txq_meta);
1971
1972 if (status)
1973 return status;
1974 }
1975
1976 return 0;
1977}
1978
1979/**
1980 * ice_vsi_stop_lan_tx_rings - Disable LAN Tx rings
1981 * @vsi: the VSI being configured
1982 * @rst_src: reset source
1983 * @rel_vmvf_num: Relative ID of VF/VM
1984 */
1985int
1986ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1987 u16 rel_vmvf_num)
1988{
1989 return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings);
1990}
1991
1992/**
1993 * ice_vsi_stop_xdp_tx_rings - Disable XDP Tx rings
1994 * @vsi: the VSI being configured
1995 */
1996int ice_vsi_stop_xdp_tx_rings(struct ice_vsi *vsi)
1997{
1998 return ice_vsi_stop_tx_rings(vsi, ICE_NO_RESET, 0, vsi->xdp_rings);
1999}
2000
2001/**
2002 * ice_vsi_is_vlan_pruning_ena - check if VLAN pruning is enabled or not
2003 * @vsi: VSI to check whether or not VLAN pruning is enabled.
2004 *
2005 * returns true if Rx VLAN pruning is enabled and false otherwise.
2006 */
2007bool ice_vsi_is_vlan_pruning_ena(struct ice_vsi *vsi)
2008{
2009 if (!vsi)
2010 return false;
2011
2012 return (vsi->info.sw_flags2 & ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA);
2013}
2014
2015/**
2016 * ice_cfg_vlan_pruning - enable or disable VLAN pruning on the VSI
2017 * @vsi: VSI to enable or disable VLAN pruning on
2018 * @ena: set to true to enable VLAN pruning and false to disable it
2019 * @vlan_promisc: enable valid security flags if not in VLAN promiscuous mode
2020 *
2021 * returns 0 if VSI is updated, negative otherwise
2022 */
2023int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena, bool vlan_promisc)
2024{
2025 struct ice_vsi_ctx *ctxt;
2026 struct ice_pf *pf;
2027 int status;
2028
2029 if (!vsi)
2030 return -EINVAL;
2031
2032 /* Don't enable VLAN pruning if the netdev is currently in promiscuous
2033 * mode. VLAN pruning will be enabled when the interface exits
2034 * promiscuous mode if any VLAN filters are active.
2035 */
2036 if (vsi->netdev && vsi->netdev->flags & IFF_PROMISC && ena)
2037 return 0;
2038
2039 pf = vsi->back;
2040 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
2041 if (!ctxt)
2042 return -ENOMEM;
2043
2044 ctxt->info = vsi->info;
2045
2046 if (ena)
2047 ctxt->info.sw_flags2 |= ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
2048 else
2049 ctxt->info.sw_flags2 &= ~ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
2050
2051 if (!vlan_promisc)
2052 ctxt->info.valid_sections =
2053 cpu_to_le16(ICE_AQ_VSI_PROP_SW_VALID);
2054
2055 status = ice_update_vsi(&pf->hw, vsi->idx, ctxt, NULL);
2056 if (status) {
2057 netdev_err(vsi->netdev, "%sabling VLAN pruning on VSI handle: %d, VSI HW ID: %d failed, err = %s, aq_err = %s\n",
2058 ena ? "En" : "Dis", vsi->idx, vsi->vsi_num,
2059 ice_stat_str(status),
2060 ice_aq_str(pf->hw.adminq.sq_last_status));
2061 goto err_out;
2062 }
2063
2064 vsi->info.sw_flags2 = ctxt->info.sw_flags2;
2065
2066 kfree(ctxt);
2067 return 0;
2068
2069err_out:
2070 kfree(ctxt);
2071 return -EIO;
2072}
2073
2074static void ice_vsi_set_tc_cfg(struct ice_vsi *vsi)
2075{
2076 struct ice_dcbx_cfg *cfg = &vsi->port_info->local_dcbx_cfg;
2077
2078 vsi->tc_cfg.ena_tc = ice_dcb_get_ena_tc(cfg);
2079 vsi->tc_cfg.numtc = ice_dcb_get_num_tc(cfg);
2080}
2081
2082/**
2083 * ice_vsi_set_q_vectors_reg_idx - set the HW register index for all q_vectors
2084 * @vsi: VSI to set the q_vectors register index on
2085 */
2086static int
2087ice_vsi_set_q_vectors_reg_idx(struct ice_vsi *vsi)
2088{
2089 u16 i;
2090
2091 if (!vsi || !vsi->q_vectors)
2092 return -EINVAL;
2093
2094 ice_for_each_q_vector(vsi, i) {
2095 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2096
2097 if (!q_vector) {
2098 dev_err(ice_pf_to_dev(vsi->back), "Failed to set reg_idx on q_vector %d VSI %d\n",
2099 i, vsi->vsi_num);
2100 goto clear_reg_idx;
2101 }
2102
2103 if (vsi->type == ICE_VSI_VF) {
2104 struct ice_vf *vf = &vsi->back->vf[vsi->vf_id];
2105
2106 q_vector->reg_idx = ice_calc_vf_reg_idx(vf, q_vector);
2107 } else {
2108 q_vector->reg_idx =
2109 q_vector->v_idx + vsi->base_vector;
2110 }
2111 }
2112
2113 return 0;
2114
2115clear_reg_idx:
2116 ice_for_each_q_vector(vsi, i) {
2117 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2118
2119 if (q_vector)
2120 q_vector->reg_idx = 0;
2121 }
2122
2123 return -EINVAL;
2124}
2125
2126/**
2127 * ice_cfg_sw_lldp - Config switch rules for LLDP packet handling
2128 * @vsi: the VSI being configured
2129 * @tx: bool to determine Tx or Rx rule
2130 * @create: bool to determine create or remove Rule
2131 */
2132void ice_cfg_sw_lldp(struct ice_vsi *vsi, bool tx, bool create)
2133{
2134 enum ice_status (*eth_fltr)(struct ice_vsi *v, u16 type, u16 flag,
2135 enum ice_sw_fwd_act_type act);
2136 struct ice_pf *pf = vsi->back;
2137 enum ice_status status;
2138 struct device *dev;
2139
2140 dev = ice_pf_to_dev(pf);
2141 eth_fltr = create ? ice_fltr_add_eth : ice_fltr_remove_eth;
2142
2143 if (tx)
2144 status = eth_fltr(vsi, ETH_P_LLDP, ICE_FLTR_TX,
2145 ICE_DROP_PACKET);
2146 else
2147 status = eth_fltr(vsi, ETH_P_LLDP, ICE_FLTR_RX, ICE_FWD_TO_VSI);
2148
2149 if (status)
2150 dev_err(dev, "Fail %s %s LLDP rule on VSI %i error: %s\n",
2151 create ? "adding" : "removing", tx ? "TX" : "RX",
2152 vsi->vsi_num, ice_stat_str(status));
2153}
2154
2155/**
2156 * ice_vsi_setup - Set up a VSI by a given type
2157 * @pf: board private structure
2158 * @pi: pointer to the port_info instance
2159 * @vsi_type: VSI type
2160 * @vf_id: defines VF ID to which this VSI connects. This field is meant to be
2161 * used only for ICE_VSI_VF VSI type. For other VSI types, should
2162 * fill-in ICE_INVAL_VFID as input.
2163 *
2164 * This allocates the sw VSI structure and its queue resources.
2165 *
2166 * Returns pointer to the successfully allocated and configured VSI sw struct on
2167 * success, NULL on failure.
2168 */
2169struct ice_vsi *
2170ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
2171 enum ice_vsi_type vsi_type, u16 vf_id)
2172{
2173 u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2174 struct device *dev = ice_pf_to_dev(pf);
2175 enum ice_status status;
2176 struct ice_vsi *vsi;
2177 int ret, i;
2178
2179 if (vsi_type == ICE_VSI_VF)
2180 vsi = ice_vsi_alloc(pf, vsi_type, vf_id);
2181 else
2182 vsi = ice_vsi_alloc(pf, vsi_type, ICE_INVAL_VFID);
2183
2184 if (!vsi) {
2185 dev_err(dev, "could not allocate VSI\n");
2186 return NULL;
2187 }
2188
2189 vsi->port_info = pi;
2190 vsi->vsw = pf->first_sw;
2191 if (vsi->type == ICE_VSI_PF)
2192 vsi->ethtype = ETH_P_PAUSE;
2193
2194 if (vsi->type == ICE_VSI_VF)
2195 vsi->vf_id = vf_id;
2196
2197 ice_alloc_fd_res(vsi);
2198
2199 if (ice_vsi_get_qs(vsi)) {
2200 dev_err(dev, "Failed to allocate queues. vsi->idx = %d\n",
2201 vsi->idx);
2202 goto unroll_vsi_alloc;
2203 }
2204
2205 /* set RSS capabilities */
2206 ice_vsi_set_rss_params(vsi);
2207
2208 /* set TC configuration */
2209 ice_vsi_set_tc_cfg(vsi);
2210
2211 /* create the VSI */
2212 ret = ice_vsi_init(vsi, true);
2213 if (ret)
2214 goto unroll_get_qs;
2215
2216 switch (vsi->type) {
2217 case ICE_VSI_CTRL:
2218 case ICE_VSI_PF:
2219 ret = ice_vsi_alloc_q_vectors(vsi);
2220 if (ret)
2221 goto unroll_vsi_init;
2222
2223 ret = ice_vsi_setup_vector_base(vsi);
2224 if (ret)
2225 goto unroll_alloc_q_vector;
2226
2227 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2228 if (ret)
2229 goto unroll_vector_base;
2230
2231 ret = ice_vsi_alloc_rings(vsi);
2232 if (ret)
2233 goto unroll_vector_base;
2234
2235 /* Always add VLAN ID 0 switch rule by default. This is needed
2236 * in order to allow all untagged and 0 tagged priority traffic
2237 * if Rx VLAN pruning is enabled. Also there are cases where we
2238 * don't get the call to add VLAN 0 via ice_vlan_rx_add_vid()
2239 * so this handles those cases (i.e. adding the PF to a bridge
2240 * without the 8021q module loaded).
2241 */
2242 ret = ice_vsi_add_vlan(vsi, 0, ICE_FWD_TO_VSI);
2243 if (ret)
2244 goto unroll_clear_rings;
2245
2246 ice_vsi_map_rings_to_vectors(vsi);
2247
2248 /* ICE_VSI_CTRL does not need RSS so skip RSS processing */
2249 if (vsi->type != ICE_VSI_CTRL)
2250 /* Do not exit if configuring RSS had an issue, at
2251 * least receive traffic on first queue. Hence no
2252 * need to capture return value
2253 */
2254 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2255 ice_vsi_cfg_rss_lut_key(vsi);
2256 ice_vsi_set_rss_flow_fld(vsi);
2257 }
2258 ice_init_arfs(vsi);
2259 break;
2260 case ICE_VSI_VF:
2261 /* VF driver will take care of creating netdev for this type and
2262 * map queues to vectors through Virtchnl, PF driver only
2263 * creates a VSI and corresponding structures for bookkeeping
2264 * purpose
2265 */
2266 ret = ice_vsi_alloc_q_vectors(vsi);
2267 if (ret)
2268 goto unroll_vsi_init;
2269
2270 ret = ice_vsi_alloc_rings(vsi);
2271 if (ret)
2272 goto unroll_alloc_q_vector;
2273
2274 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2275 if (ret)
2276 goto unroll_vector_base;
2277
2278 /* Do not exit if configuring RSS had an issue, at least
2279 * receive traffic on first queue. Hence no need to capture
2280 * return value
2281 */
2282 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2283 ice_vsi_cfg_rss_lut_key(vsi);
2284 ice_vsi_set_vf_rss_flow_fld(vsi);
2285 }
2286 break;
2287 case ICE_VSI_LB:
2288 ret = ice_vsi_alloc_rings(vsi);
2289 if (ret)
2290 goto unroll_vsi_init;
2291 break;
2292 default:
2293 /* clean up the resources and exit */
2294 goto unroll_vsi_init;
2295 }
2296
2297 /* configure VSI nodes based on number of queues and TC's */
2298 for (i = 0; i < vsi->tc_cfg.numtc; i++)
2299 max_txqs[i] = vsi->alloc_txq;
2300
2301 status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2302 max_txqs);
2303 if (status) {
2304 dev_err(dev, "VSI %d failed lan queue config, error %s\n",
2305 vsi->vsi_num, ice_stat_str(status));
2306 goto unroll_clear_rings;
2307 }
2308
2309 /* Add switch rule to drop all Tx Flow Control Frames, of look up
2310 * type ETHERTYPE from VSIs, and restrict malicious VF from sending
2311 * out PAUSE or PFC frames. If enabled, FW can still send FC frames.
2312 * The rule is added once for PF VSI in order to create appropriate
2313 * recipe, since VSI/VSI list is ignored with drop action...
2314 * Also add rules to handle LLDP Tx packets. Tx LLDP packets need to
2315 * be dropped so that VFs cannot send LLDP packets to reconfig DCB
2316 * settings in the HW.
2317 */
2318 if (!ice_is_safe_mode(pf))
2319 if (vsi->type == ICE_VSI_PF) {
2320 ice_fltr_add_eth(vsi, ETH_P_PAUSE, ICE_FLTR_TX,
2321 ICE_DROP_PACKET);
2322 ice_cfg_sw_lldp(vsi, true, true);
2323 }
2324
2325 return vsi;
2326
2327unroll_clear_rings:
2328 ice_vsi_clear_rings(vsi);
2329unroll_vector_base:
2330 /* reclaim SW interrupts back to the common pool */
2331 ice_free_res(pf->irq_tracker, vsi->base_vector, vsi->idx);
2332 pf->num_avail_sw_msix += vsi->num_q_vectors;
2333unroll_alloc_q_vector:
2334 ice_vsi_free_q_vectors(vsi);
2335unroll_vsi_init:
2336 ice_vsi_delete(vsi);
2337unroll_get_qs:
2338 ice_vsi_put_qs(vsi);
2339unroll_vsi_alloc:
2340 ice_vsi_clear(vsi);
2341
2342 return NULL;
2343}
2344
2345/**
2346 * ice_vsi_release_msix - Clear the queue to Interrupt mapping in HW
2347 * @vsi: the VSI being cleaned up
2348 */
2349static void ice_vsi_release_msix(struct ice_vsi *vsi)
2350{
2351 struct ice_pf *pf = vsi->back;
2352 struct ice_hw *hw = &pf->hw;
2353 u32 txq = 0;
2354 u32 rxq = 0;
2355 int i, q;
2356
2357 for (i = 0; i < vsi->num_q_vectors; i++) {
2358 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2359 u16 reg_idx = q_vector->reg_idx;
2360
2361 wr32(hw, GLINT_ITR(ICE_IDX_ITR0, reg_idx), 0);
2362 wr32(hw, GLINT_ITR(ICE_IDX_ITR1, reg_idx), 0);
2363 for (q = 0; q < q_vector->num_ring_tx; q++) {
2364 wr32(hw, QINT_TQCTL(vsi->txq_map[txq]), 0);
2365 if (ice_is_xdp_ena_vsi(vsi)) {
2366 u32 xdp_txq = txq + vsi->num_xdp_txq;
2367
2368 wr32(hw, QINT_TQCTL(vsi->txq_map[xdp_txq]), 0);
2369 }
2370 txq++;
2371 }
2372
2373 for (q = 0; q < q_vector->num_ring_rx; q++) {
2374 wr32(hw, QINT_RQCTL(vsi->rxq_map[rxq]), 0);
2375 rxq++;
2376 }
2377 }
2378
2379 ice_flush(hw);
2380}
2381
2382/**
2383 * ice_vsi_free_irq - Free the IRQ association with the OS
2384 * @vsi: the VSI being configured
2385 */
2386void ice_vsi_free_irq(struct ice_vsi *vsi)
2387{
2388 struct ice_pf *pf = vsi->back;
2389 int base = vsi->base_vector;
2390 int i;
2391
2392 if (!vsi->q_vectors || !vsi->irqs_ready)
2393 return;
2394
2395 ice_vsi_release_msix(vsi);
2396 if (vsi->type == ICE_VSI_VF)
2397 return;
2398
2399 vsi->irqs_ready = false;
2400 ice_for_each_q_vector(vsi, i) {
2401 u16 vector = i + base;
2402 int irq_num;
2403
2404 irq_num = pf->msix_entries[vector].vector;
2405
2406 /* free only the irqs that were actually requested */
2407 if (!vsi->q_vectors[i] ||
2408 !(vsi->q_vectors[i]->num_ring_tx ||
2409 vsi->q_vectors[i]->num_ring_rx))
2410 continue;
2411
2412 /* clear the affinity notifier in the IRQ descriptor */
2413 irq_set_affinity_notifier(irq_num, NULL);
2414
2415 /* clear the affinity_mask in the IRQ descriptor */
2416 irq_set_affinity_hint(irq_num, NULL);
2417 synchronize_irq(irq_num);
2418 devm_free_irq(ice_pf_to_dev(pf), irq_num, vsi->q_vectors[i]);
2419 }
2420}
2421
2422/**
2423 * ice_vsi_free_tx_rings - Free Tx resources for VSI queues
2424 * @vsi: the VSI having resources freed
2425 */
2426void ice_vsi_free_tx_rings(struct ice_vsi *vsi)
2427{
2428 int i;
2429
2430 if (!vsi->tx_rings)
2431 return;
2432
2433 ice_for_each_txq(vsi, i)
2434 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
2435 ice_free_tx_ring(vsi->tx_rings[i]);
2436}
2437
2438/**
2439 * ice_vsi_free_rx_rings - Free Rx resources for VSI queues
2440 * @vsi: the VSI having resources freed
2441 */
2442void ice_vsi_free_rx_rings(struct ice_vsi *vsi)
2443{
2444 int i;
2445
2446 if (!vsi->rx_rings)
2447 return;
2448
2449 ice_for_each_rxq(vsi, i)
2450 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
2451 ice_free_rx_ring(vsi->rx_rings[i]);
2452}
2453
2454/**
2455 * ice_vsi_close - Shut down a VSI
2456 * @vsi: the VSI being shut down
2457 */
2458void ice_vsi_close(struct ice_vsi *vsi)
2459{
2460 if (!test_and_set_bit(__ICE_DOWN, vsi->state))
2461 ice_down(vsi);
2462
2463 ice_vsi_free_irq(vsi);
2464 ice_vsi_free_tx_rings(vsi);
2465 ice_vsi_free_rx_rings(vsi);
2466}
2467
2468/**
2469 * ice_ena_vsi - resume a VSI
2470 * @vsi: the VSI being resume
2471 * @locked: is the rtnl_lock already held
2472 */
2473int ice_ena_vsi(struct ice_vsi *vsi, bool locked)
2474{
2475 int err = 0;
2476
2477 if (!test_bit(__ICE_NEEDS_RESTART, vsi->state))
2478 return 0;
2479
2480 clear_bit(__ICE_NEEDS_RESTART, vsi->state);
2481
2482 if (vsi->netdev && vsi->type == ICE_VSI_PF) {
2483 if (netif_running(vsi->netdev)) {
2484 if (!locked)
2485 rtnl_lock();
2486
2487 err = ice_open(vsi->netdev);
2488
2489 if (!locked)
2490 rtnl_unlock();
2491 }
2492 } else if (vsi->type == ICE_VSI_CTRL) {
2493 err = ice_vsi_open_ctrl(vsi);
2494 }
2495
2496 return err;
2497}
2498
2499/**
2500 * ice_dis_vsi - pause a VSI
2501 * @vsi: the VSI being paused
2502 * @locked: is the rtnl_lock already held
2503 */
2504void ice_dis_vsi(struct ice_vsi *vsi, bool locked)
2505{
2506 if (test_bit(__ICE_DOWN, vsi->state))
2507 return;
2508
2509 set_bit(__ICE_NEEDS_RESTART, vsi->state);
2510
2511 if (vsi->type == ICE_VSI_PF && vsi->netdev) {
2512 if (netif_running(vsi->netdev)) {
2513 if (!locked)
2514 rtnl_lock();
2515
2516 ice_stop(vsi->netdev);
2517
2518 if (!locked)
2519 rtnl_unlock();
2520 } else {
2521 ice_vsi_close(vsi);
2522 }
2523 } else if (vsi->type == ICE_VSI_CTRL) {
2524 ice_vsi_close(vsi);
2525 }
2526}
2527
2528/**
2529 * ice_vsi_dis_irq - Mask off queue interrupt generation on the VSI
2530 * @vsi: the VSI being un-configured
2531 */
2532void ice_vsi_dis_irq(struct ice_vsi *vsi)
2533{
2534 int base = vsi->base_vector;
2535 struct ice_pf *pf = vsi->back;
2536 struct ice_hw *hw = &pf->hw;
2537 u32 val;
2538 int i;
2539
2540 /* disable interrupt causation from each queue */
2541 if (vsi->tx_rings) {
2542 ice_for_each_txq(vsi, i) {
2543 if (vsi->tx_rings[i]) {
2544 u16 reg;
2545
2546 reg = vsi->tx_rings[i]->reg_idx;
2547 val = rd32(hw, QINT_TQCTL(reg));
2548 val &= ~QINT_TQCTL_CAUSE_ENA_M;
2549 wr32(hw, QINT_TQCTL(reg), val);
2550 }
2551 }
2552 }
2553
2554 if (vsi->rx_rings) {
2555 ice_for_each_rxq(vsi, i) {
2556 if (vsi->rx_rings[i]) {
2557 u16 reg;
2558
2559 reg = vsi->rx_rings[i]->reg_idx;
2560 val = rd32(hw, QINT_RQCTL(reg));
2561 val &= ~QINT_RQCTL_CAUSE_ENA_M;
2562 wr32(hw, QINT_RQCTL(reg), val);
2563 }
2564 }
2565 }
2566
2567 /* disable each interrupt */
2568 ice_for_each_q_vector(vsi, i) {
2569 if (!vsi->q_vectors[i])
2570 continue;
2571 wr32(hw, GLINT_DYN_CTL(vsi->q_vectors[i]->reg_idx), 0);
2572 }
2573
2574 ice_flush(hw);
2575
2576 /* don't call synchronize_irq() for VF's from the host */
2577 if (vsi->type == ICE_VSI_VF)
2578 return;
2579
2580 ice_for_each_q_vector(vsi, i)
2581 synchronize_irq(pf->msix_entries[i + base].vector);
2582}
2583
2584/**
2585 * ice_napi_del - Remove NAPI handler for the VSI
2586 * @vsi: VSI for which NAPI handler is to be removed
2587 */
2588void ice_napi_del(struct ice_vsi *vsi)
2589{
2590 int v_idx;
2591
2592 if (!vsi->netdev)
2593 return;
2594
2595 ice_for_each_q_vector(vsi, v_idx)
2596 netif_napi_del(&vsi->q_vectors[v_idx]->napi);
2597}
2598
2599/**
2600 * ice_vsi_release - Delete a VSI and free its resources
2601 * @vsi: the VSI being removed
2602 *
2603 * Returns 0 on success or < 0 on error
2604 */
2605int ice_vsi_release(struct ice_vsi *vsi)
2606{
2607 struct ice_pf *pf;
2608
2609 if (!vsi->back)
2610 return -ENODEV;
2611 pf = vsi->back;
2612
2613 /* do not unregister while driver is in the reset recovery pending
2614 * state. Since reset/rebuild happens through PF service task workqueue,
2615 * it's not a good idea to unregister netdev that is associated to the
2616 * PF that is running the work queue items currently. This is done to
2617 * avoid check_flush_dependency() warning on this wq
2618 */
2619 if (vsi->netdev && !ice_is_reset_in_progress(pf->state))
2620 unregister_netdev(vsi->netdev);
2621
2622 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags))
2623 ice_rss_clean(vsi);
2624
2625 /* Disable VSI and free resources */
2626 if (vsi->type != ICE_VSI_LB)
2627 ice_vsi_dis_irq(vsi);
2628 ice_vsi_close(vsi);
2629
2630 /* SR-IOV determines needed MSIX resources all at once instead of per
2631 * VSI since when VFs are spawned we know how many VFs there are and how
2632 * many interrupts each VF needs. SR-IOV MSIX resources are also
2633 * cleared in the same manner.
2634 */
2635 if (vsi->type != ICE_VSI_VF) {
2636 /* reclaim SW interrupts back to the common pool */
2637 ice_free_res(pf->irq_tracker, vsi->base_vector, vsi->idx);
2638 pf->num_avail_sw_msix += vsi->num_q_vectors;
2639 }
2640
2641 if (!ice_is_safe_mode(pf)) {
2642 if (vsi->type == ICE_VSI_PF) {
2643 ice_fltr_remove_eth(vsi, ETH_P_PAUSE, ICE_FLTR_TX,
2644 ICE_DROP_PACKET);
2645 ice_cfg_sw_lldp(vsi, true, false);
2646 /* The Rx rule will only exist to remove if the LLDP FW
2647 * engine is currently stopped
2648 */
2649 if (!test_bit(ICE_FLAG_FW_LLDP_AGENT, pf->flags))
2650 ice_cfg_sw_lldp(vsi, false, false);
2651 }
2652 }
2653
2654 ice_fltr_remove_all(vsi);
2655 ice_rm_vsi_lan_cfg(vsi->port_info, vsi->idx);
2656 ice_vsi_delete(vsi);
2657 ice_vsi_free_q_vectors(vsi);
2658
2659 /* make sure unregister_netdev() was called by checking __ICE_DOWN */
2660 if (vsi->netdev && test_bit(__ICE_DOWN, vsi->state)) {
2661 free_netdev(vsi->netdev);
2662 vsi->netdev = NULL;
2663 }
2664
2665 ice_vsi_clear_rings(vsi);
2666
2667 ice_vsi_put_qs(vsi);
2668
2669 /* retain SW VSI data structure since it is needed to unregister and
2670 * free VSI netdev when PF is not in reset recovery pending state,\
2671 * for ex: during rmmod.
2672 */
2673 if (!ice_is_reset_in_progress(pf->state))
2674 ice_vsi_clear(vsi);
2675
2676 return 0;
2677}
2678
2679/**
2680 * ice_vsi_rebuild_update_coalesce - set coalesce for a q_vector
2681 * @q_vector: pointer to q_vector which is being updated
2682 * @coalesce: pointer to array of struct with stored coalesce
2683 *
2684 * Set coalesce param in q_vector and update these parameters in HW.
2685 */
2686static void
2687ice_vsi_rebuild_update_coalesce(struct ice_q_vector *q_vector,
2688 struct ice_coalesce_stored *coalesce)
2689{
2690 struct ice_ring_container *rx_rc = &q_vector->rx;
2691 struct ice_ring_container *tx_rc = &q_vector->tx;
2692 struct ice_hw *hw = &q_vector->vsi->back->hw;
2693
2694 tx_rc->itr_setting = coalesce->itr_tx;
2695 rx_rc->itr_setting = coalesce->itr_rx;
2696
2697 /* dynamic ITR values will be updated during Tx/Rx */
2698 if (!ITR_IS_DYNAMIC(tx_rc->itr_setting))
2699 wr32(hw, GLINT_ITR(tx_rc->itr_idx, q_vector->reg_idx),
2700 ITR_REG_ALIGN(tx_rc->itr_setting) >>
2701 ICE_ITR_GRAN_S);
2702 if (!ITR_IS_DYNAMIC(rx_rc->itr_setting))
2703 wr32(hw, GLINT_ITR(rx_rc->itr_idx, q_vector->reg_idx),
2704 ITR_REG_ALIGN(rx_rc->itr_setting) >>
2705 ICE_ITR_GRAN_S);
2706
2707 q_vector->intrl = coalesce->intrl;
2708 wr32(hw, GLINT_RATE(q_vector->reg_idx),
2709 ice_intrl_usec_to_reg(q_vector->intrl, hw->intrl_gran));
2710}
2711
2712/**
2713 * ice_vsi_rebuild_get_coalesce - get coalesce from all q_vectors
2714 * @vsi: VSI connected with q_vectors
2715 * @coalesce: array of struct with stored coalesce
2716 *
2717 * Returns array size.
2718 */
2719static int
2720ice_vsi_rebuild_get_coalesce(struct ice_vsi *vsi,
2721 struct ice_coalesce_stored *coalesce)
2722{
2723 int i;
2724
2725 ice_for_each_q_vector(vsi, i) {
2726 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2727
2728 coalesce[i].itr_tx = q_vector->tx.itr_setting;
2729 coalesce[i].itr_rx = q_vector->rx.itr_setting;
2730 coalesce[i].intrl = q_vector->intrl;
2731 }
2732
2733 return vsi->num_q_vectors;
2734}
2735
2736/**
2737 * ice_vsi_rebuild_set_coalesce - set coalesce from earlier saved arrays
2738 * @vsi: VSI connected with q_vectors
2739 * @coalesce: pointer to array of struct with stored coalesce
2740 * @size: size of coalesce array
2741 *
2742 * Before this function, ice_vsi_rebuild_get_coalesce should be called to save
2743 * ITR params in arrays. If size is 0 or coalesce wasn't stored set coalesce
2744 * to default value.
2745 */
2746static void
2747ice_vsi_rebuild_set_coalesce(struct ice_vsi *vsi,
2748 struct ice_coalesce_stored *coalesce, int size)
2749{
2750 int i;
2751
2752 if ((size && !coalesce) || !vsi)
2753 return;
2754
2755 for (i = 0; i < size && i < vsi->num_q_vectors; i++)
2756 ice_vsi_rebuild_update_coalesce(vsi->q_vectors[i],
2757 &coalesce[i]);
2758
2759 /* number of q_vectors increased, so assume coalesce settings were
2760 * changed globally (i.e. ethtool -C eth0 instead of per-queue) and use
2761 * the previous settings from q_vector 0 for all of the new q_vectors
2762 */
2763 for (; i < vsi->num_q_vectors; i++)
2764 ice_vsi_rebuild_update_coalesce(vsi->q_vectors[i],
2765 &coalesce[0]);
2766}
2767
2768/**
2769 * ice_vsi_rebuild - Rebuild VSI after reset
2770 * @vsi: VSI to be rebuild
2771 * @init_vsi: is this an initialization or a reconfigure of the VSI
2772 *
2773 * Returns 0 on success and negative value on failure
2774 */
2775int ice_vsi_rebuild(struct ice_vsi *vsi, bool init_vsi)
2776{
2777 u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2778 struct ice_coalesce_stored *coalesce;
2779 int prev_num_q_vectors = 0;
2780 struct ice_vf *vf = NULL;
2781 enum ice_status status;
2782 struct ice_pf *pf;
2783 int ret, i;
2784
2785 if (!vsi)
2786 return -EINVAL;
2787
2788 pf = vsi->back;
2789 if (vsi->type == ICE_VSI_VF)
2790 vf = &pf->vf[vsi->vf_id];
2791
2792 coalesce = kcalloc(vsi->num_q_vectors,
2793 sizeof(struct ice_coalesce_stored), GFP_KERNEL);
2794 if (coalesce)
2795 prev_num_q_vectors = ice_vsi_rebuild_get_coalesce(vsi,
2796 coalesce);
2797 ice_rm_vsi_lan_cfg(vsi->port_info, vsi->idx);
2798 ice_vsi_free_q_vectors(vsi);
2799
2800 /* SR-IOV determines needed MSIX resources all at once instead of per
2801 * VSI since when VFs are spawned we know how many VFs there are and how
2802 * many interrupts each VF needs. SR-IOV MSIX resources are also
2803 * cleared in the same manner.
2804 */
2805 if (vsi->type != ICE_VSI_VF) {
2806 /* reclaim SW interrupts back to the common pool */
2807 ice_free_res(pf->irq_tracker, vsi->base_vector, vsi->idx);
2808 pf->num_avail_sw_msix += vsi->num_q_vectors;
2809 vsi->base_vector = 0;
2810 }
2811
2812 if (ice_is_xdp_ena_vsi(vsi))
2813 /* return value check can be skipped here, it always returns
2814 * 0 if reset is in progress
2815 */
2816 ice_destroy_xdp_rings(vsi);
2817 ice_vsi_put_qs(vsi);
2818 ice_vsi_clear_rings(vsi);
2819 ice_vsi_free_arrays(vsi);
2820 if (vsi->type == ICE_VSI_VF)
2821 ice_vsi_set_num_qs(vsi, vf->vf_id);
2822 else
2823 ice_vsi_set_num_qs(vsi, ICE_INVAL_VFID);
2824
2825 ret = ice_vsi_alloc_arrays(vsi);
2826 if (ret < 0)
2827 goto err_vsi;
2828
2829 ice_vsi_get_qs(vsi);
2830
2831 ice_alloc_fd_res(vsi);
2832 ice_vsi_set_tc_cfg(vsi);
2833
2834 /* Initialize VSI struct elements and create VSI in FW */
2835 ret = ice_vsi_init(vsi, init_vsi);
2836 if (ret < 0)
2837 goto err_vsi;
2838
2839 switch (vsi->type) {
2840 case ICE_VSI_CTRL:
2841 case ICE_VSI_PF:
2842 ret = ice_vsi_alloc_q_vectors(vsi);
2843 if (ret)
2844 goto err_rings;
2845
2846 ret = ice_vsi_setup_vector_base(vsi);
2847 if (ret)
2848 goto err_vectors;
2849
2850 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2851 if (ret)
2852 goto err_vectors;
2853
2854 ret = ice_vsi_alloc_rings(vsi);
2855 if (ret)
2856 goto err_vectors;
2857
2858 ice_vsi_map_rings_to_vectors(vsi);
2859 if (ice_is_xdp_ena_vsi(vsi)) {
2860 vsi->num_xdp_txq = vsi->alloc_rxq;
2861 ret = ice_prepare_xdp_rings(vsi, vsi->xdp_prog);
2862 if (ret)
2863 goto err_vectors;
2864 }
2865 /* ICE_VSI_CTRL does not need RSS so skip RSS processing */
2866 if (vsi->type != ICE_VSI_CTRL)
2867 /* Do not exit if configuring RSS had an issue, at
2868 * least receive traffic on first queue. Hence no
2869 * need to capture return value
2870 */
2871 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags))
2872 ice_vsi_cfg_rss_lut_key(vsi);
2873 break;
2874 case ICE_VSI_VF:
2875 ret = ice_vsi_alloc_q_vectors(vsi);
2876 if (ret)
2877 goto err_rings;
2878
2879 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2880 if (ret)
2881 goto err_vectors;
2882
2883 ret = ice_vsi_alloc_rings(vsi);
2884 if (ret)
2885 goto err_vectors;
2886
2887 break;
2888 default:
2889 break;
2890 }
2891
2892 /* configure VSI nodes based on number of queues and TC's */
2893 for (i = 0; i < vsi->tc_cfg.numtc; i++) {
2894 max_txqs[i] = vsi->alloc_txq;
2895
2896 if (ice_is_xdp_ena_vsi(vsi))
2897 max_txqs[i] += vsi->num_xdp_txq;
2898 }
2899
2900 status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2901 max_txqs);
2902 if (status) {
2903 dev_err(ice_pf_to_dev(pf), "VSI %d failed lan queue config, error %s\n",
2904 vsi->vsi_num, ice_stat_str(status));
2905 if (init_vsi) {
2906 ret = -EIO;
2907 goto err_vectors;
2908 } else {
2909 return ice_schedule_reset(pf, ICE_RESET_PFR);
2910 }
2911 }
2912 ice_vsi_rebuild_set_coalesce(vsi, coalesce, prev_num_q_vectors);
2913 kfree(coalesce);
2914
2915 return 0;
2916
2917err_vectors:
2918 ice_vsi_free_q_vectors(vsi);
2919err_rings:
2920 if (vsi->netdev) {
2921 vsi->current_netdev_flags = 0;
2922 unregister_netdev(vsi->netdev);
2923 free_netdev(vsi->netdev);
2924 vsi->netdev = NULL;
2925 }
2926err_vsi:
2927 ice_vsi_clear(vsi);
2928 set_bit(__ICE_RESET_FAILED, pf->state);
2929 kfree(coalesce);
2930 return ret;
2931}
2932
2933/**
2934 * ice_is_reset_in_progress - check for a reset in progress
2935 * @state: PF state field
2936 */
2937bool ice_is_reset_in_progress(unsigned long *state)
2938{
2939 return test_bit(__ICE_RESET_OICR_RECV, state) ||
2940 test_bit(__ICE_DCBNL_DEVRESET, state) ||
2941 test_bit(__ICE_PFR_REQ, state) ||
2942 test_bit(__ICE_CORER_REQ, state) ||
2943 test_bit(__ICE_GLOBR_REQ, state);
2944}
2945
2946#ifdef CONFIG_DCB
2947/**
2948 * ice_vsi_update_q_map - update our copy of the VSI info with new queue map
2949 * @vsi: VSI being configured
2950 * @ctx: the context buffer returned from AQ VSI update command
2951 */
2952static void ice_vsi_update_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctx)
2953{
2954 vsi->info.mapping_flags = ctx->info.mapping_flags;
2955 memcpy(&vsi->info.q_mapping, &ctx->info.q_mapping,
2956 sizeof(vsi->info.q_mapping));
2957 memcpy(&vsi->info.tc_mapping, ctx->info.tc_mapping,
2958 sizeof(vsi->info.tc_mapping));
2959}
2960
2961/**
2962 * ice_vsi_cfg_tc - Configure VSI Tx Sched for given TC map
2963 * @vsi: VSI to be configured
2964 * @ena_tc: TC bitmap
2965 *
2966 * VSI queues expected to be quiesced before calling this function
2967 */
2968int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc)
2969{
2970 u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2971 struct ice_pf *pf = vsi->back;
2972 struct ice_vsi_ctx *ctx;
2973 enum ice_status status;
2974 struct device *dev;
2975 int i, ret = 0;
2976 u8 num_tc = 0;
2977
2978 dev = ice_pf_to_dev(pf);
2979
2980 ice_for_each_traffic_class(i) {
2981 /* build bitmap of enabled TCs */
2982 if (ena_tc & BIT(i))
2983 num_tc++;
2984 /* populate max_txqs per TC */
2985 max_txqs[i] = vsi->alloc_txq;
2986 }
2987
2988 vsi->tc_cfg.ena_tc = ena_tc;
2989 vsi->tc_cfg.numtc = num_tc;
2990
2991 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2992 if (!ctx)
2993 return -ENOMEM;
2994
2995 ctx->vf_num = 0;
2996 ctx->info = vsi->info;
2997
2998 ice_vsi_setup_q_map(vsi, ctx);
2999
3000 /* must to indicate which section of VSI context are being modified */
3001 ctx->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
3002 status = ice_update_vsi(&pf->hw, vsi->idx, ctx, NULL);
3003 if (status) {
3004 dev_info(dev, "Failed VSI Update\n");
3005 ret = -EIO;
3006 goto out;
3007 }
3008
3009 status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
3010 max_txqs);
3011
3012 if (status) {
3013 dev_err(dev, "VSI %d failed TC config, error %s\n",
3014 vsi->vsi_num, ice_stat_str(status));
3015 ret = -EIO;
3016 goto out;
3017 }
3018 ice_vsi_update_q_map(vsi, ctx);
3019 vsi->info.valid_sections = 0;
3020
3021 ice_vsi_cfg_netdev_tc(vsi, ena_tc);
3022out:
3023 kfree(ctx);
3024 return ret;
3025}
3026#endif /* CONFIG_DCB */
3027
3028/**
3029 * ice_update_ring_stats - Update ring statistics
3030 * @ring: ring to update
3031 * @cont: used to increment per-vector counters
3032 * @pkts: number of processed packets
3033 * @bytes: number of processed bytes
3034 *
3035 * This function assumes that caller has acquired a u64_stats_sync lock.
3036 */
3037static void
3038ice_update_ring_stats(struct ice_ring *ring, struct ice_ring_container *cont,
3039 u64 pkts, u64 bytes)
3040{
3041 ring->stats.bytes += bytes;
3042 ring->stats.pkts += pkts;
3043 cont->total_bytes += bytes;
3044 cont->total_pkts += pkts;
3045}
3046
3047/**
3048 * ice_update_tx_ring_stats - Update Tx ring specific counters
3049 * @tx_ring: ring to update
3050 * @pkts: number of processed packets
3051 * @bytes: number of processed bytes
3052 */
3053void ice_update_tx_ring_stats(struct ice_ring *tx_ring, u64 pkts, u64 bytes)
3054{
3055 u64_stats_update_begin(&tx_ring->syncp);
3056 ice_update_ring_stats(tx_ring, &tx_ring->q_vector->tx, pkts, bytes);
3057 u64_stats_update_end(&tx_ring->syncp);
3058}
3059
3060/**
3061 * ice_update_rx_ring_stats - Update Rx ring specific counters
3062 * @rx_ring: ring to update
3063 * @pkts: number of processed packets
3064 * @bytes: number of processed bytes
3065 */
3066void ice_update_rx_ring_stats(struct ice_ring *rx_ring, u64 pkts, u64 bytes)
3067{
3068 u64_stats_update_begin(&rx_ring->syncp);
3069 ice_update_ring_stats(rx_ring, &rx_ring->q_vector->rx, pkts, bytes);
3070 u64_stats_update_end(&rx_ring->syncp);
3071}
3072
3073/**
3074 * ice_status_to_errno - convert from enum ice_status to Linux errno
3075 * @err: ice_status value to convert
3076 */
3077int ice_status_to_errno(enum ice_status err)
3078{
3079 switch (err) {
3080 case ICE_SUCCESS:
3081 return 0;
3082 case ICE_ERR_DOES_NOT_EXIST:
3083 return -ENOENT;
3084 case ICE_ERR_OUT_OF_RANGE:
3085 return -ENOTTY;
3086 case ICE_ERR_PARAM:
3087 return -EINVAL;
3088 case ICE_ERR_NO_MEMORY:
3089 return -ENOMEM;
3090 case ICE_ERR_MAX_LIMIT:
3091 return -EAGAIN;
3092 default:
3093 return -EINVAL;
3094 }
3095}
3096
3097/**
3098 * ice_is_dflt_vsi_in_use - check if the default forwarding VSI is being used
3099 * @sw: switch to check if its default forwarding VSI is free
3100 *
3101 * Return true if the default forwarding VSI is already being used, else returns
3102 * false signalling that it's available to use.
3103 */
3104bool ice_is_dflt_vsi_in_use(struct ice_sw *sw)
3105{
3106 return (sw->dflt_vsi && sw->dflt_vsi_ena);
3107}
3108
3109/**
3110 * ice_is_vsi_dflt_vsi - check if the VSI passed in is the default VSI
3111 * @sw: switch for the default forwarding VSI to compare against
3112 * @vsi: VSI to compare against default forwarding VSI
3113 *
3114 * If this VSI passed in is the default forwarding VSI then return true, else
3115 * return false
3116 */
3117bool ice_is_vsi_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi)
3118{
3119 return (sw->dflt_vsi == vsi && sw->dflt_vsi_ena);
3120}
3121
3122/**
3123 * ice_set_dflt_vsi - set the default forwarding VSI
3124 * @sw: switch used to assign the default forwarding VSI
3125 * @vsi: VSI getting set as the default forwarding VSI on the switch
3126 *
3127 * If the VSI passed in is already the default VSI and it's enabled just return
3128 * success.
3129 *
3130 * If there is already a default VSI on the switch and it's enabled then return
3131 * -EEXIST since there can only be one default VSI per switch.
3132 *
3133 * Otherwise try to set the VSI passed in as the switch's default VSI and
3134 * return the result.
3135 */
3136int ice_set_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi)
3137{
3138 enum ice_status status;
3139 struct device *dev;
3140
3141 if (!sw || !vsi)
3142 return -EINVAL;
3143
3144 dev = ice_pf_to_dev(vsi->back);
3145
3146 /* the VSI passed in is already the default VSI */
3147 if (ice_is_vsi_dflt_vsi(sw, vsi)) {
3148 dev_dbg(dev, "VSI %d passed in is already the default forwarding VSI, nothing to do\n",
3149 vsi->vsi_num);
3150 return 0;
3151 }
3152
3153 /* another VSI is already the default VSI for this switch */
3154 if (ice_is_dflt_vsi_in_use(sw)) {
3155 dev_err(dev, "Default forwarding VSI %d already in use, disable it and try again\n",
3156 sw->dflt_vsi->vsi_num);
3157 return -EEXIST;
3158 }
3159
3160 status = ice_cfg_dflt_vsi(&vsi->back->hw, vsi->idx, true, ICE_FLTR_RX);
3161 if (status) {
3162 dev_err(dev, "Failed to set VSI %d as the default forwarding VSI, error %s\n",
3163 vsi->vsi_num, ice_stat_str(status));
3164 return -EIO;
3165 }
3166
3167 sw->dflt_vsi = vsi;
3168 sw->dflt_vsi_ena = true;
3169
3170 return 0;
3171}
3172
3173/**
3174 * ice_clear_dflt_vsi - clear the default forwarding VSI
3175 * @sw: switch used to clear the default VSI
3176 *
3177 * If the switch has no default VSI or it's not enabled then return error.
3178 *
3179 * Otherwise try to clear the default VSI and return the result.
3180 */
3181int ice_clear_dflt_vsi(struct ice_sw *sw)
3182{
3183 struct ice_vsi *dflt_vsi;
3184 enum ice_status status;
3185 struct device *dev;
3186
3187 if (!sw)
3188 return -EINVAL;
3189
3190 dev = ice_pf_to_dev(sw->pf);
3191
3192 dflt_vsi = sw->dflt_vsi;
3193
3194 /* there is no default VSI configured */
3195 if (!ice_is_dflt_vsi_in_use(sw))
3196 return -ENODEV;
3197
3198 status = ice_cfg_dflt_vsi(&dflt_vsi->back->hw, dflt_vsi->idx, false,
3199 ICE_FLTR_RX);
3200 if (status) {
3201 dev_err(dev, "Failed to clear the default forwarding VSI %d, error %s\n",
3202 dflt_vsi->vsi_num, ice_stat_str(status));
3203 return -EIO;
3204 }
3205
3206 sw->dflt_vsi = NULL;
3207 sw->dflt_vsi_ena = false;
3208
3209 return 0;
3210}