Merge tag 'usb-serial-5.12-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / drivers / net / ethernet / intel / ice / ice_lib.c
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_devlink.h"
11
12 /**
13  * ice_vsi_type_str - maps VSI type enum to string equivalents
14  * @vsi_type: VSI type enum
15  */
16 const char *ice_vsi_type_str(enum ice_vsi_type vsi_type)
17 {
18         switch (vsi_type) {
19         case ICE_VSI_PF:
20                 return "ICE_VSI_PF";
21         case ICE_VSI_VF:
22                 return "ICE_VSI_VF";
23         case ICE_VSI_CTRL:
24                 return "ICE_VSI_CTRL";
25         case ICE_VSI_LB:
26                 return "ICE_VSI_LB";
27         default:
28                 return "unknown";
29         }
30 }
31
32 /**
33  * ice_vsi_ctrl_all_rx_rings - Start or stop a VSI's Rx rings
34  * @vsi: the VSI being configured
35  * @ena: start or stop the Rx rings
36  *
37  * First enable/disable all of the Rx rings, flush any remaining writes, and
38  * then verify that they have all been enabled/disabled successfully. This will
39  * let all of the register writes complete when enabling/disabling the Rx rings
40  * before waiting for the change in hardware to complete.
41  */
42 static int ice_vsi_ctrl_all_rx_rings(struct ice_vsi *vsi, bool ena)
43 {
44         int ret = 0;
45         u16 i;
46
47         for (i = 0; i < vsi->num_rxq; i++)
48                 ice_vsi_ctrl_one_rx_ring(vsi, ena, i, false);
49
50         ice_flush(&vsi->back->hw);
51
52         for (i = 0; i < vsi->num_rxq; i++) {
53                 ret = ice_vsi_wait_one_rx_ring(vsi, ena, i);
54                 if (ret)
55                         break;
56         }
57
58         return ret;
59 }
60
61 /**
62  * ice_vsi_alloc_arrays - Allocate queue and vector pointer arrays for the VSI
63  * @vsi: VSI pointer
64  *
65  * On error: returns error code (negative)
66  * On success: returns 0
67  */
68 static int ice_vsi_alloc_arrays(struct ice_vsi *vsi)
69 {
70         struct ice_pf *pf = vsi->back;
71         struct device *dev;
72
73         dev = ice_pf_to_dev(pf);
74
75         /* allocate memory for both Tx and Rx ring pointers */
76         vsi->tx_rings = devm_kcalloc(dev, vsi->alloc_txq,
77                                      sizeof(*vsi->tx_rings), GFP_KERNEL);
78         if (!vsi->tx_rings)
79                 return -ENOMEM;
80
81         vsi->rx_rings = devm_kcalloc(dev, vsi->alloc_rxq,
82                                      sizeof(*vsi->rx_rings), GFP_KERNEL);
83         if (!vsi->rx_rings)
84                 goto err_rings;
85
86         /* XDP will have vsi->alloc_txq Tx queues as well, so double the size */
87         vsi->txq_map = devm_kcalloc(dev, (2 * vsi->alloc_txq),
88                                     sizeof(*vsi->txq_map), GFP_KERNEL);
89
90         if (!vsi->txq_map)
91                 goto err_txq_map;
92
93         vsi->rxq_map = devm_kcalloc(dev, vsi->alloc_rxq,
94                                     sizeof(*vsi->rxq_map), GFP_KERNEL);
95         if (!vsi->rxq_map)
96                 goto err_rxq_map;
97
98         /* There is no need to allocate q_vectors for a loopback VSI. */
99         if (vsi->type == ICE_VSI_LB)
100                 return 0;
101
102         /* allocate memory for q_vector pointers */
103         vsi->q_vectors = devm_kcalloc(dev, vsi->num_q_vectors,
104                                       sizeof(*vsi->q_vectors), GFP_KERNEL);
105         if (!vsi->q_vectors)
106                 goto err_vectors;
107
108         return 0;
109
110 err_vectors:
111         devm_kfree(dev, vsi->rxq_map);
112 err_rxq_map:
113         devm_kfree(dev, vsi->txq_map);
114 err_txq_map:
115         devm_kfree(dev, vsi->rx_rings);
116 err_rings:
117         devm_kfree(dev, vsi->tx_rings);
118         return -ENOMEM;
119 }
120
121 /**
122  * ice_vsi_set_num_desc - Set number of descriptors for queues on this VSI
123  * @vsi: the VSI being configured
124  */
125 static void ice_vsi_set_num_desc(struct ice_vsi *vsi)
126 {
127         switch (vsi->type) {
128         case ICE_VSI_PF:
129         case ICE_VSI_CTRL:
130         case ICE_VSI_LB:
131                 /* a user could change the values of num_[tr]x_desc using
132                  * ethtool -G so we should keep those values instead of
133                  * overwriting them with the defaults.
134                  */
135                 if (!vsi->num_rx_desc)
136                         vsi->num_rx_desc = ICE_DFLT_NUM_RX_DESC;
137                 if (!vsi->num_tx_desc)
138                         vsi->num_tx_desc = ICE_DFLT_NUM_TX_DESC;
139                 break;
140         default:
141                 dev_dbg(ice_pf_to_dev(vsi->back), "Not setting number of Tx/Rx descriptors for VSI type %d\n",
142                         vsi->type);
143                 break;
144         }
145 }
146
147 /**
148  * ice_vsi_set_num_qs - Set number of queues, descriptors and vectors for a VSI
149  * @vsi: the VSI being configured
150  * @vf_id: ID of the VF being configured
151  *
152  * Return 0 on success and a negative value on error
153  */
154 static void ice_vsi_set_num_qs(struct ice_vsi *vsi, u16 vf_id)
155 {
156         struct ice_pf *pf = vsi->back;
157         struct ice_vf *vf = NULL;
158
159         if (vsi->type == ICE_VSI_VF)
160                 vsi->vf_id = vf_id;
161
162         switch (vsi->type) {
163         case ICE_VSI_PF:
164                 vsi->alloc_txq = min3(pf->num_lan_msix,
165                                       ice_get_avail_txq_count(pf),
166                                       (u16)num_online_cpus());
167                 if (vsi->req_txq) {
168                         vsi->alloc_txq = vsi->req_txq;
169                         vsi->num_txq = vsi->req_txq;
170                 }
171
172                 pf->num_lan_tx = vsi->alloc_txq;
173
174                 /* only 1 Rx queue unless RSS is enabled */
175                 if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
176                         vsi->alloc_rxq = 1;
177                 } else {
178                         vsi->alloc_rxq = min3(pf->num_lan_msix,
179                                               ice_get_avail_rxq_count(pf),
180                                               (u16)num_online_cpus());
181                         if (vsi->req_rxq) {
182                                 vsi->alloc_rxq = vsi->req_rxq;
183                                 vsi->num_rxq = vsi->req_rxq;
184                         }
185                 }
186
187                 pf->num_lan_rx = vsi->alloc_rxq;
188
189                 vsi->num_q_vectors = min_t(int, pf->num_lan_msix,
190                                            max_t(int, vsi->alloc_rxq,
191                                                  vsi->alloc_txq));
192                 break;
193         case ICE_VSI_VF:
194                 vf = &pf->vf[vsi->vf_id];
195                 vsi->alloc_txq = vf->num_vf_qs;
196                 vsi->alloc_rxq = vf->num_vf_qs;
197                 /* pf->num_msix_per_vf includes (VF miscellaneous vector +
198                  * data queue interrupts). Since vsi->num_q_vectors is number
199                  * of queues vectors, subtract 1 (ICE_NONQ_VECS_VF) from the
200                  * original vector count
201                  */
202                 vsi->num_q_vectors = pf->num_msix_per_vf - ICE_NONQ_VECS_VF;
203                 break;
204         case ICE_VSI_CTRL:
205                 vsi->alloc_txq = 1;
206                 vsi->alloc_rxq = 1;
207                 vsi->num_q_vectors = 1;
208                 break;
209         case ICE_VSI_LB:
210                 vsi->alloc_txq = 1;
211                 vsi->alloc_rxq = 1;
212                 break;
213         default:
214                 dev_warn(ice_pf_to_dev(pf), "Unknown VSI type %d\n", vsi->type);
215                 break;
216         }
217
218         ice_vsi_set_num_desc(vsi);
219 }
220
221 /**
222  * ice_get_free_slot - get the next non-NULL location index in array
223  * @array: array to search
224  * @size: size of the array
225  * @curr: last known occupied index to be used as a search hint
226  *
227  * void * is being used to keep the functionality generic. This lets us use this
228  * function on any array of pointers.
229  */
230 static int ice_get_free_slot(void *array, int size, int curr)
231 {
232         int **tmp_array = (int **)array;
233         int next;
234
235         if (curr < (size - 1) && !tmp_array[curr + 1]) {
236                 next = curr + 1;
237         } else {
238                 int i = 0;
239
240                 while ((i < size) && (tmp_array[i]))
241                         i++;
242                 if (i == size)
243                         next = ICE_NO_VSI;
244                 else
245                         next = i;
246         }
247         return next;
248 }
249
250 /**
251  * ice_vsi_delete - delete a VSI from the switch
252  * @vsi: pointer to VSI being removed
253  */
254 static void ice_vsi_delete(struct ice_vsi *vsi)
255 {
256         struct ice_pf *pf = vsi->back;
257         struct ice_vsi_ctx *ctxt;
258         enum ice_status status;
259
260         ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
261         if (!ctxt)
262                 return;
263
264         if (vsi->type == ICE_VSI_VF)
265                 ctxt->vf_num = vsi->vf_id;
266         ctxt->vsi_num = vsi->vsi_num;
267
268         memcpy(&ctxt->info, &vsi->info, sizeof(ctxt->info));
269
270         status = ice_free_vsi(&pf->hw, vsi->idx, ctxt, false, NULL);
271         if (status)
272                 dev_err(ice_pf_to_dev(pf), "Failed to delete VSI %i in FW - error: %s\n",
273                         vsi->vsi_num, ice_stat_str(status));
274
275         kfree(ctxt);
276 }
277
278 /**
279  * ice_vsi_free_arrays - De-allocate queue and vector pointer arrays for the VSI
280  * @vsi: pointer to VSI being cleared
281  */
282 static void ice_vsi_free_arrays(struct ice_vsi *vsi)
283 {
284         struct ice_pf *pf = vsi->back;
285         struct device *dev;
286
287         dev = ice_pf_to_dev(pf);
288
289         /* free the ring and vector containers */
290         if (vsi->q_vectors) {
291                 devm_kfree(dev, vsi->q_vectors);
292                 vsi->q_vectors = NULL;
293         }
294         if (vsi->tx_rings) {
295                 devm_kfree(dev, vsi->tx_rings);
296                 vsi->tx_rings = NULL;
297         }
298         if (vsi->rx_rings) {
299                 devm_kfree(dev, vsi->rx_rings);
300                 vsi->rx_rings = NULL;
301         }
302         if (vsi->txq_map) {
303                 devm_kfree(dev, vsi->txq_map);
304                 vsi->txq_map = NULL;
305         }
306         if (vsi->rxq_map) {
307                 devm_kfree(dev, vsi->rxq_map);
308                 vsi->rxq_map = NULL;
309         }
310 }
311
312 /**
313  * ice_vsi_clear - clean up and deallocate the provided VSI
314  * @vsi: pointer to VSI being cleared
315  *
316  * This deallocates the VSI's queue resources, removes it from the PF's
317  * VSI array if necessary, and deallocates the VSI
318  *
319  * Returns 0 on success, negative on failure
320  */
321 static int ice_vsi_clear(struct ice_vsi *vsi)
322 {
323         struct ice_pf *pf = NULL;
324         struct device *dev;
325
326         if (!vsi)
327                 return 0;
328
329         if (!vsi->back)
330                 return -EINVAL;
331
332         pf = vsi->back;
333         dev = ice_pf_to_dev(pf);
334
335         if (!pf->vsi[vsi->idx] || pf->vsi[vsi->idx] != vsi) {
336                 dev_dbg(dev, "vsi does not exist at pf->vsi[%d]\n", vsi->idx);
337                 return -EINVAL;
338         }
339
340         mutex_lock(&pf->sw_mutex);
341         /* updates the PF for this cleared VSI */
342
343         pf->vsi[vsi->idx] = NULL;
344         if (vsi->idx < pf->next_vsi && vsi->type != ICE_VSI_CTRL)
345                 pf->next_vsi = vsi->idx;
346
347         ice_vsi_free_arrays(vsi);
348         mutex_unlock(&pf->sw_mutex);
349         devm_kfree(dev, vsi);
350
351         return 0;
352 }
353
354 /**
355  * ice_msix_clean_ctrl_vsi - MSIX mode interrupt handler for ctrl VSI
356  * @irq: interrupt number
357  * @data: pointer to a q_vector
358  */
359 static irqreturn_t ice_msix_clean_ctrl_vsi(int __always_unused irq, void *data)
360 {
361         struct ice_q_vector *q_vector = (struct ice_q_vector *)data;
362
363         if (!q_vector->tx.ring)
364                 return IRQ_HANDLED;
365
366 #define FDIR_RX_DESC_CLEAN_BUDGET 64
367         ice_clean_rx_irq(q_vector->rx.ring, FDIR_RX_DESC_CLEAN_BUDGET);
368         ice_clean_ctrl_tx_irq(q_vector->tx.ring);
369
370         return IRQ_HANDLED;
371 }
372
373 /**
374  * ice_msix_clean_rings - MSIX mode Interrupt Handler
375  * @irq: interrupt number
376  * @data: pointer to a q_vector
377  */
378 static irqreturn_t ice_msix_clean_rings(int __always_unused irq, void *data)
379 {
380         struct ice_q_vector *q_vector = (struct ice_q_vector *)data;
381
382         if (!q_vector->tx.ring && !q_vector->rx.ring)
383                 return IRQ_HANDLED;
384
385         napi_schedule(&q_vector->napi);
386
387         return IRQ_HANDLED;
388 }
389
390 /**
391  * ice_vsi_alloc - Allocates the next available struct VSI in the PF
392  * @pf: board private structure
393  * @vsi_type: type of VSI
394  * @vf_id: ID of the VF being configured
395  *
396  * returns a pointer to a VSI on success, NULL on failure.
397  */
398 static struct ice_vsi *
399 ice_vsi_alloc(struct ice_pf *pf, enum ice_vsi_type vsi_type, u16 vf_id)
400 {
401         struct device *dev = ice_pf_to_dev(pf);
402         struct ice_vsi *vsi = NULL;
403
404         /* Need to protect the allocation of the VSIs at the PF level */
405         mutex_lock(&pf->sw_mutex);
406
407         /* If we have already allocated our maximum number of VSIs,
408          * pf->next_vsi will be ICE_NO_VSI. If not, pf->next_vsi index
409          * is available to be populated
410          */
411         if (pf->next_vsi == ICE_NO_VSI) {
412                 dev_dbg(dev, "out of VSI slots!\n");
413                 goto unlock_pf;
414         }
415
416         vsi = devm_kzalloc(dev, sizeof(*vsi), GFP_KERNEL);
417         if (!vsi)
418                 goto unlock_pf;
419
420         vsi->type = vsi_type;
421         vsi->back = pf;
422         set_bit(__ICE_DOWN, vsi->state);
423
424         if (vsi_type == ICE_VSI_VF)
425                 ice_vsi_set_num_qs(vsi, vf_id);
426         else
427                 ice_vsi_set_num_qs(vsi, ICE_INVAL_VFID);
428
429         switch (vsi->type) {
430         case ICE_VSI_PF:
431                 if (ice_vsi_alloc_arrays(vsi))
432                         goto err_rings;
433
434                 /* Setup default MSIX irq handler for VSI */
435                 vsi->irq_handler = ice_msix_clean_rings;
436                 break;
437         case ICE_VSI_CTRL:
438                 if (ice_vsi_alloc_arrays(vsi))
439                         goto err_rings;
440
441                 /* Setup ctrl VSI MSIX irq handler */
442                 vsi->irq_handler = ice_msix_clean_ctrl_vsi;
443                 break;
444         case ICE_VSI_VF:
445                 if (ice_vsi_alloc_arrays(vsi))
446                         goto err_rings;
447                 break;
448         case ICE_VSI_LB:
449                 if (ice_vsi_alloc_arrays(vsi))
450                         goto err_rings;
451                 break;
452         default:
453                 dev_warn(dev, "Unknown VSI type %d\n", vsi->type);
454                 goto unlock_pf;
455         }
456
457         if (vsi->type == ICE_VSI_CTRL) {
458                 /* Use the last VSI slot as the index for the control VSI */
459                 vsi->idx = pf->num_alloc_vsi - 1;
460                 pf->ctrl_vsi_idx = vsi->idx;
461                 pf->vsi[vsi->idx] = vsi;
462         } else {
463                 /* fill slot and make note of the index */
464                 vsi->idx = pf->next_vsi;
465                 pf->vsi[pf->next_vsi] = vsi;
466
467                 /* prepare pf->next_vsi for next use */
468                 pf->next_vsi = ice_get_free_slot(pf->vsi, pf->num_alloc_vsi,
469                                                  pf->next_vsi);
470         }
471         goto unlock_pf;
472
473 err_rings:
474         devm_kfree(dev, vsi);
475         vsi = NULL;
476 unlock_pf:
477         mutex_unlock(&pf->sw_mutex);
478         return vsi;
479 }
480
481 /**
482  * ice_alloc_fd_res - Allocate FD resource for a VSI
483  * @vsi: pointer to the ice_vsi
484  *
485  * This allocates the FD resources
486  *
487  * Returns 0 on success, -EPERM on no-op or -EIO on failure
488  */
489 static int ice_alloc_fd_res(struct ice_vsi *vsi)
490 {
491         struct ice_pf *pf = vsi->back;
492         u32 g_val, b_val;
493
494         /* Flow Director filters are only allocated/assigned to the PF VSI which
495          * passes the traffic. The CTRL VSI is only used to add/delete filters
496          * so we don't allocate resources to it
497          */
498
499         /* FD filters from guaranteed pool per VSI */
500         g_val = pf->hw.func_caps.fd_fltr_guar;
501         if (!g_val)
502                 return -EPERM;
503
504         /* FD filters from best effort pool */
505         b_val = pf->hw.func_caps.fd_fltr_best_effort;
506         if (!b_val)
507                 return -EPERM;
508
509         if (vsi->type != ICE_VSI_PF)
510                 return -EPERM;
511
512         if (!test_bit(ICE_FLAG_FD_ENA, pf->flags))
513                 return -EPERM;
514
515         vsi->num_gfltr = g_val / pf->num_alloc_vsi;
516
517         /* each VSI gets same "best_effort" quota */
518         vsi->num_bfltr = b_val;
519
520         return 0;
521 }
522
523 /**
524  * ice_vsi_get_qs - Assign queues from PF to VSI
525  * @vsi: the VSI to assign queues to
526  *
527  * Returns 0 on success and a negative value on error
528  */
529 static int ice_vsi_get_qs(struct ice_vsi *vsi)
530 {
531         struct ice_pf *pf = vsi->back;
532         struct ice_qs_cfg tx_qs_cfg = {
533                 .qs_mutex = &pf->avail_q_mutex,
534                 .pf_map = pf->avail_txqs,
535                 .pf_map_size = pf->max_pf_txqs,
536                 .q_count = vsi->alloc_txq,
537                 .scatter_count = ICE_MAX_SCATTER_TXQS,
538                 .vsi_map = vsi->txq_map,
539                 .vsi_map_offset = 0,
540                 .mapping_mode = ICE_VSI_MAP_CONTIG
541         };
542         struct ice_qs_cfg rx_qs_cfg = {
543                 .qs_mutex = &pf->avail_q_mutex,
544                 .pf_map = pf->avail_rxqs,
545                 .pf_map_size = pf->max_pf_rxqs,
546                 .q_count = vsi->alloc_rxq,
547                 .scatter_count = ICE_MAX_SCATTER_RXQS,
548                 .vsi_map = vsi->rxq_map,
549                 .vsi_map_offset = 0,
550                 .mapping_mode = ICE_VSI_MAP_CONTIG
551         };
552         int ret;
553
554         ret = __ice_vsi_get_qs(&tx_qs_cfg);
555         if (ret)
556                 return ret;
557         vsi->tx_mapping_mode = tx_qs_cfg.mapping_mode;
558
559         ret = __ice_vsi_get_qs(&rx_qs_cfg);
560         if (ret)
561                 return ret;
562         vsi->rx_mapping_mode = rx_qs_cfg.mapping_mode;
563
564         return 0;
565 }
566
567 /**
568  * ice_vsi_put_qs - Release queues from VSI to PF
569  * @vsi: the VSI that is going to release queues
570  */
571 static void ice_vsi_put_qs(struct ice_vsi *vsi)
572 {
573         struct ice_pf *pf = vsi->back;
574         int i;
575
576         mutex_lock(&pf->avail_q_mutex);
577
578         for (i = 0; i < vsi->alloc_txq; i++) {
579                 clear_bit(vsi->txq_map[i], pf->avail_txqs);
580                 vsi->txq_map[i] = ICE_INVAL_Q_INDEX;
581         }
582
583         for (i = 0; i < vsi->alloc_rxq; i++) {
584                 clear_bit(vsi->rxq_map[i], pf->avail_rxqs);
585                 vsi->rxq_map[i] = ICE_INVAL_Q_INDEX;
586         }
587
588         mutex_unlock(&pf->avail_q_mutex);
589 }
590
591 /**
592  * ice_is_safe_mode
593  * @pf: pointer to the PF struct
594  *
595  * returns true if driver is in safe mode, false otherwise
596  */
597 bool ice_is_safe_mode(struct ice_pf *pf)
598 {
599         return !test_bit(ICE_FLAG_ADV_FEATURES, pf->flags);
600 }
601
602 /**
603  * ice_vsi_clean_rss_flow_fld - Delete RSS configuration
604  * @vsi: the VSI being cleaned up
605  *
606  * This function deletes RSS input set for all flows that were configured
607  * for this VSI
608  */
609 static void ice_vsi_clean_rss_flow_fld(struct ice_vsi *vsi)
610 {
611         struct ice_pf *pf = vsi->back;
612         enum ice_status status;
613
614         if (ice_is_safe_mode(pf))
615                 return;
616
617         status = ice_rem_vsi_rss_cfg(&pf->hw, vsi->idx);
618         if (status)
619                 dev_dbg(ice_pf_to_dev(pf), "ice_rem_vsi_rss_cfg failed for vsi = %d, error = %s\n",
620                         vsi->vsi_num, ice_stat_str(status));
621 }
622
623 /**
624  * ice_rss_clean - Delete RSS related VSI structures and configuration
625  * @vsi: the VSI being removed
626  */
627 static void ice_rss_clean(struct ice_vsi *vsi)
628 {
629         struct ice_pf *pf = vsi->back;
630         struct device *dev;
631
632         dev = ice_pf_to_dev(pf);
633
634         if (vsi->rss_hkey_user)
635                 devm_kfree(dev, vsi->rss_hkey_user);
636         if (vsi->rss_lut_user)
637                 devm_kfree(dev, vsi->rss_lut_user);
638
639         ice_vsi_clean_rss_flow_fld(vsi);
640         /* remove RSS replay list */
641         if (!ice_is_safe_mode(pf))
642                 ice_rem_vsi_rss_list(&pf->hw, vsi->idx);
643 }
644
645 /**
646  * ice_vsi_set_rss_params - Setup RSS capabilities per VSI type
647  * @vsi: the VSI being configured
648  */
649 static void ice_vsi_set_rss_params(struct ice_vsi *vsi)
650 {
651         struct ice_hw_common_caps *cap;
652         struct ice_pf *pf = vsi->back;
653
654         if (!test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
655                 vsi->rss_size = 1;
656                 return;
657         }
658
659         cap = &pf->hw.func_caps.common_cap;
660         switch (vsi->type) {
661         case ICE_VSI_PF:
662                 /* PF VSI will inherit RSS instance of PF */
663                 vsi->rss_table_size = (u16)cap->rss_table_size;
664                 vsi->rss_size = min_t(u16, num_online_cpus(),
665                                       BIT(cap->rss_table_entry_width));
666                 vsi->rss_lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_PF;
667                 break;
668         case ICE_VSI_VF:
669                 /* VF VSI will get a small RSS table.
670                  * For VSI_LUT, LUT size should be set to 64 bytes.
671                  */
672                 vsi->rss_table_size = ICE_VSIQF_HLUT_ARRAY_SIZE;
673                 vsi->rss_size = ICE_MAX_RSS_QS_PER_VF;
674                 vsi->rss_lut_type = ICE_AQC_GSET_RSS_LUT_TABLE_TYPE_VSI;
675                 break;
676         case ICE_VSI_LB:
677                 break;
678         default:
679                 dev_dbg(ice_pf_to_dev(pf), "Unsupported VSI type %s\n",
680                         ice_vsi_type_str(vsi->type));
681                 break;
682         }
683 }
684
685 /**
686  * ice_set_dflt_vsi_ctx - Set default VSI context before adding a VSI
687  * @ctxt: the VSI context being set
688  *
689  * This initializes a default VSI context for all sections except the Queues.
690  */
691 static void ice_set_dflt_vsi_ctx(struct ice_vsi_ctx *ctxt)
692 {
693         u32 table = 0;
694
695         memset(&ctxt->info, 0, sizeof(ctxt->info));
696         /* VSI's should be allocated from shared pool */
697         ctxt->alloc_from_pool = true;
698         /* Src pruning enabled by default */
699         ctxt->info.sw_flags = ICE_AQ_VSI_SW_FLAG_SRC_PRUNE;
700         /* Traffic from VSI can be sent to LAN */
701         ctxt->info.sw_flags2 = ICE_AQ_VSI_SW_FLAG_LAN_ENA;
702         /* By default bits 3 and 4 in vlan_flags are 0's which results in legacy
703          * behavior (show VLAN, DEI, and UP) in descriptor. Also, allow all
704          * packets untagged/tagged.
705          */
706         ctxt->info.vlan_flags = ((ICE_AQ_VSI_VLAN_MODE_ALL &
707                                   ICE_AQ_VSI_VLAN_MODE_M) >>
708                                  ICE_AQ_VSI_VLAN_MODE_S);
709         /* Have 1:1 UP mapping for both ingress/egress tables */
710         table |= ICE_UP_TABLE_TRANSLATE(0, 0);
711         table |= ICE_UP_TABLE_TRANSLATE(1, 1);
712         table |= ICE_UP_TABLE_TRANSLATE(2, 2);
713         table |= ICE_UP_TABLE_TRANSLATE(3, 3);
714         table |= ICE_UP_TABLE_TRANSLATE(4, 4);
715         table |= ICE_UP_TABLE_TRANSLATE(5, 5);
716         table |= ICE_UP_TABLE_TRANSLATE(6, 6);
717         table |= ICE_UP_TABLE_TRANSLATE(7, 7);
718         ctxt->info.ingress_table = cpu_to_le32(table);
719         ctxt->info.egress_table = cpu_to_le32(table);
720         /* Have 1:1 UP mapping for outer to inner UP table */
721         ctxt->info.outer_up_table = cpu_to_le32(table);
722         /* No Outer tag support outer_tag_flags remains to zero */
723 }
724
725 /**
726  * ice_vsi_setup_q_map - Setup a VSI queue map
727  * @vsi: the VSI being configured
728  * @ctxt: VSI context structure
729  */
730 static void ice_vsi_setup_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctxt)
731 {
732         u16 offset = 0, qmap = 0, tx_count = 0;
733         u16 qcount_tx = vsi->alloc_txq;
734         u16 qcount_rx = vsi->alloc_rxq;
735         u16 tx_numq_tc, rx_numq_tc;
736         u16 pow = 0, max_rss = 0;
737         bool ena_tc0 = false;
738         u8 netdev_tc = 0;
739         int i;
740
741         /* at least TC0 should be enabled by default */
742         if (vsi->tc_cfg.numtc) {
743                 if (!(vsi->tc_cfg.ena_tc & BIT(0)))
744                         ena_tc0 = true;
745         } else {
746                 ena_tc0 = true;
747         }
748
749         if (ena_tc0) {
750                 vsi->tc_cfg.numtc++;
751                 vsi->tc_cfg.ena_tc |= 1;
752         }
753
754         rx_numq_tc = qcount_rx / vsi->tc_cfg.numtc;
755         if (!rx_numq_tc)
756                 rx_numq_tc = 1;
757         tx_numq_tc = qcount_tx / vsi->tc_cfg.numtc;
758         if (!tx_numq_tc)
759                 tx_numq_tc = 1;
760
761         /* TC mapping is a function of the number of Rx queues assigned to the
762          * VSI for each traffic class and the offset of these queues.
763          * The first 10 bits are for queue offset for TC0, next 4 bits for no:of
764          * queues allocated to TC0. No:of queues is a power-of-2.
765          *
766          * If TC is not enabled, the queue offset is set to 0, and allocate one
767          * queue, this way, traffic for the given TC will be sent to the default
768          * queue.
769          *
770          * Setup number and offset of Rx queues for all TCs for the VSI
771          */
772
773         qcount_rx = rx_numq_tc;
774
775         /* qcount will change if RSS is enabled */
776         if (test_bit(ICE_FLAG_RSS_ENA, vsi->back->flags)) {
777                 if (vsi->type == ICE_VSI_PF || vsi->type == ICE_VSI_VF) {
778                         if (vsi->type == ICE_VSI_PF)
779                                 max_rss = ICE_MAX_LG_RSS_QS;
780                         else
781                                 max_rss = ICE_MAX_RSS_QS_PER_VF;
782                         qcount_rx = min_t(u16, rx_numq_tc, max_rss);
783                         if (!vsi->req_rxq)
784                                 qcount_rx = min_t(u16, qcount_rx,
785                                                   vsi->rss_size);
786                 }
787         }
788
789         /* find the (rounded up) power-of-2 of qcount */
790         pow = (u16)order_base_2(qcount_rx);
791
792         ice_for_each_traffic_class(i) {
793                 if (!(vsi->tc_cfg.ena_tc & BIT(i))) {
794                         /* TC is not enabled */
795                         vsi->tc_cfg.tc_info[i].qoffset = 0;
796                         vsi->tc_cfg.tc_info[i].qcount_rx = 1;
797                         vsi->tc_cfg.tc_info[i].qcount_tx = 1;
798                         vsi->tc_cfg.tc_info[i].netdev_tc = 0;
799                         ctxt->info.tc_mapping[i] = 0;
800                         continue;
801                 }
802
803                 /* TC is enabled */
804                 vsi->tc_cfg.tc_info[i].qoffset = offset;
805                 vsi->tc_cfg.tc_info[i].qcount_rx = qcount_rx;
806                 vsi->tc_cfg.tc_info[i].qcount_tx = tx_numq_tc;
807                 vsi->tc_cfg.tc_info[i].netdev_tc = netdev_tc++;
808
809                 qmap = ((offset << ICE_AQ_VSI_TC_Q_OFFSET_S) &
810                         ICE_AQ_VSI_TC_Q_OFFSET_M) |
811                         ((pow << ICE_AQ_VSI_TC_Q_NUM_S) &
812                          ICE_AQ_VSI_TC_Q_NUM_M);
813                 offset += qcount_rx;
814                 tx_count += tx_numq_tc;
815                 ctxt->info.tc_mapping[i] = cpu_to_le16(qmap);
816         }
817
818         /* if offset is non-zero, means it is calculated correctly based on
819          * enabled TCs for a given VSI otherwise qcount_rx will always
820          * be correct and non-zero because it is based off - VSI's
821          * allocated Rx queues which is at least 1 (hence qcount_tx will be
822          * at least 1)
823          */
824         if (offset)
825                 vsi->num_rxq = offset;
826         else
827                 vsi->num_rxq = qcount_rx;
828
829         vsi->num_txq = tx_count;
830
831         if (vsi->type == ICE_VSI_VF && vsi->num_txq != vsi->num_rxq) {
832                 dev_dbg(ice_pf_to_dev(vsi->back), "VF VSI should have same number of Tx and Rx queues. Hence making them equal\n");
833                 /* since there is a chance that num_rxq could have been changed
834                  * in the above for loop, make num_txq equal to num_rxq.
835                  */
836                 vsi->num_txq = vsi->num_rxq;
837         }
838
839         /* Rx queue mapping */
840         ctxt->info.mapping_flags |= cpu_to_le16(ICE_AQ_VSI_Q_MAP_CONTIG);
841         /* q_mapping buffer holds the info for the first queue allocated for
842          * this VSI in the PF space and also the number of queues associated
843          * with this VSI.
844          */
845         ctxt->info.q_mapping[0] = cpu_to_le16(vsi->rxq_map[0]);
846         ctxt->info.q_mapping[1] = cpu_to_le16(vsi->num_rxq);
847 }
848
849 /**
850  * ice_set_fd_vsi_ctx - Set FD VSI context before adding a VSI
851  * @ctxt: the VSI context being set
852  * @vsi: the VSI being configured
853  */
854 static void ice_set_fd_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
855 {
856         u8 dflt_q_group, dflt_q_prio;
857         u16 dflt_q, report_q, val;
858
859         if (vsi->type != ICE_VSI_PF && vsi->type != ICE_VSI_CTRL)
860                 return;
861
862         val = ICE_AQ_VSI_PROP_FLOW_DIR_VALID;
863         ctxt->info.valid_sections |= cpu_to_le16(val);
864         dflt_q = 0;
865         dflt_q_group = 0;
866         report_q = 0;
867         dflt_q_prio = 0;
868
869         /* enable flow director filtering/programming */
870         val = ICE_AQ_VSI_FD_ENABLE | ICE_AQ_VSI_FD_PROG_ENABLE;
871         ctxt->info.fd_options = cpu_to_le16(val);
872         /* max of allocated flow director filters */
873         ctxt->info.max_fd_fltr_dedicated =
874                         cpu_to_le16(vsi->num_gfltr);
875         /* max of shared flow director filters any VSI may program */
876         ctxt->info.max_fd_fltr_shared =
877                         cpu_to_le16(vsi->num_bfltr);
878         /* default queue index within the VSI of the default FD */
879         val = ((dflt_q << ICE_AQ_VSI_FD_DEF_Q_S) &
880                ICE_AQ_VSI_FD_DEF_Q_M);
881         /* target queue or queue group to the FD filter */
882         val |= ((dflt_q_group << ICE_AQ_VSI_FD_DEF_GRP_S) &
883                 ICE_AQ_VSI_FD_DEF_GRP_M);
884         ctxt->info.fd_def_q = cpu_to_le16(val);
885         /* queue index on which FD filter completion is reported */
886         val = ((report_q << ICE_AQ_VSI_FD_REPORT_Q_S) &
887                ICE_AQ_VSI_FD_REPORT_Q_M);
888         /* priority of the default qindex action */
889         val |= ((dflt_q_prio << ICE_AQ_VSI_FD_DEF_PRIORITY_S) &
890                 ICE_AQ_VSI_FD_DEF_PRIORITY_M);
891         ctxt->info.fd_report_opt = cpu_to_le16(val);
892 }
893
894 /**
895  * ice_set_rss_vsi_ctx - Set RSS VSI context before adding a VSI
896  * @ctxt: the VSI context being set
897  * @vsi: the VSI being configured
898  */
899 static void ice_set_rss_vsi_ctx(struct ice_vsi_ctx *ctxt, struct ice_vsi *vsi)
900 {
901         u8 lut_type, hash_type;
902         struct device *dev;
903         struct ice_pf *pf;
904
905         pf = vsi->back;
906         dev = ice_pf_to_dev(pf);
907
908         switch (vsi->type) {
909         case ICE_VSI_PF:
910                 /* PF VSI will inherit RSS instance of PF */
911                 lut_type = ICE_AQ_VSI_Q_OPT_RSS_LUT_PF;
912                 hash_type = ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
913                 break;
914         case ICE_VSI_VF:
915                 /* VF VSI will gets a small RSS table which is a VSI LUT type */
916                 lut_type = ICE_AQ_VSI_Q_OPT_RSS_LUT_VSI;
917                 hash_type = ICE_AQ_VSI_Q_OPT_RSS_TPLZ;
918                 break;
919         default:
920                 dev_dbg(dev, "Unsupported VSI type %s\n",
921                         ice_vsi_type_str(vsi->type));
922                 return;
923         }
924
925         ctxt->info.q_opt_rss = ((lut_type << ICE_AQ_VSI_Q_OPT_RSS_LUT_S) &
926                                 ICE_AQ_VSI_Q_OPT_RSS_LUT_M) |
927                                 ((hash_type << ICE_AQ_VSI_Q_OPT_RSS_HASH_S) &
928                                  ICE_AQ_VSI_Q_OPT_RSS_HASH_M);
929 }
930
931 /**
932  * ice_vsi_init - Create and initialize a VSI
933  * @vsi: the VSI being configured
934  * @init_vsi: is this call creating a VSI
935  *
936  * This initializes a VSI context depending on the VSI type to be added and
937  * passes it down to the add_vsi aq command to create a new VSI.
938  */
939 static int ice_vsi_init(struct ice_vsi *vsi, bool init_vsi)
940 {
941         struct ice_pf *pf = vsi->back;
942         struct ice_hw *hw = &pf->hw;
943         struct ice_vsi_ctx *ctxt;
944         struct device *dev;
945         int ret = 0;
946
947         dev = ice_pf_to_dev(pf);
948         ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
949         if (!ctxt)
950                 return -ENOMEM;
951
952         switch (vsi->type) {
953         case ICE_VSI_CTRL:
954         case ICE_VSI_LB:
955         case ICE_VSI_PF:
956                 ctxt->flags = ICE_AQ_VSI_TYPE_PF;
957                 break;
958         case ICE_VSI_VF:
959                 ctxt->flags = ICE_AQ_VSI_TYPE_VF;
960                 /* VF number here is the absolute VF number (0-255) */
961                 ctxt->vf_num = vsi->vf_id + hw->func_caps.vf_base_id;
962                 break;
963         default:
964                 ret = -ENODEV;
965                 goto out;
966         }
967
968         ice_set_dflt_vsi_ctx(ctxt);
969         if (test_bit(ICE_FLAG_FD_ENA, pf->flags))
970                 ice_set_fd_vsi_ctx(ctxt, vsi);
971         /* if the switch is in VEB mode, allow VSI loopback */
972         if (vsi->vsw->bridge_mode == BRIDGE_MODE_VEB)
973                 ctxt->info.sw_flags |= ICE_AQ_VSI_SW_FLAG_ALLOW_LB;
974
975         /* Set LUT type and HASH type if RSS is enabled */
976         if (test_bit(ICE_FLAG_RSS_ENA, pf->flags) &&
977             vsi->type != ICE_VSI_CTRL) {
978                 ice_set_rss_vsi_ctx(ctxt, vsi);
979                 /* if updating VSI context, make sure to set valid_section:
980                  * to indicate which section of VSI context being updated
981                  */
982                 if (!init_vsi)
983                         ctxt->info.valid_sections |=
984                                 cpu_to_le16(ICE_AQ_VSI_PROP_Q_OPT_VALID);
985         }
986
987         ctxt->info.sw_id = vsi->port_info->sw_id;
988         ice_vsi_setup_q_map(vsi, ctxt);
989         if (!init_vsi) /* means VSI being updated */
990                 /* must to indicate which section of VSI context are
991                  * being modified
992                  */
993                 ctxt->info.valid_sections |=
994                         cpu_to_le16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
995
996         /* enable/disable MAC and VLAN anti-spoof when spoofchk is on/off
997          * respectively
998          */
999         if (vsi->type == ICE_VSI_VF) {
1000                 ctxt->info.valid_sections |=
1001                         cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
1002                 if (pf->vf[vsi->vf_id].spoofchk) {
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                 } else {
1008                         ctxt->info.sec_flags &=
1009                                 ~(ICE_AQ_VSI_SEC_FLAG_ENA_MAC_ANTI_SPOOF |
1010                                   (ICE_AQ_VSI_SEC_TX_VLAN_PRUNE_ENA <<
1011                                    ICE_AQ_VSI_SEC_TX_PRUNE_ENA_S));
1012                 }
1013         }
1014
1015         /* Allow control frames out of main VSI */
1016         if (vsi->type == ICE_VSI_PF) {
1017                 ctxt->info.sec_flags |= ICE_AQ_VSI_SEC_FLAG_ALLOW_DEST_OVRD;
1018                 ctxt->info.valid_sections |=
1019                         cpu_to_le16(ICE_AQ_VSI_PROP_SECURITY_VALID);
1020         }
1021
1022         if (init_vsi) {
1023                 ret = ice_add_vsi(hw, vsi->idx, ctxt, NULL);
1024                 if (ret) {
1025                         dev_err(dev, "Add VSI failed, err %d\n", ret);
1026                         ret = -EIO;
1027                         goto out;
1028                 }
1029         } else {
1030                 ret = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1031                 if (ret) {
1032                         dev_err(dev, "Update VSI failed, err %d\n", ret);
1033                         ret = -EIO;
1034                         goto out;
1035                 }
1036         }
1037
1038         /* keep context for update VSI operations */
1039         vsi->info = ctxt->info;
1040
1041         /* record VSI number returned */
1042         vsi->vsi_num = ctxt->vsi_num;
1043
1044 out:
1045         kfree(ctxt);
1046         return ret;
1047 }
1048
1049 /**
1050  * ice_free_res - free a block of resources
1051  * @res: pointer to the resource
1052  * @index: starting index previously returned by ice_get_res
1053  * @id: identifier to track owner
1054  *
1055  * Returns number of resources freed
1056  */
1057 int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id)
1058 {
1059         int count = 0;
1060         int i;
1061
1062         if (!res || index >= res->end)
1063                 return -EINVAL;
1064
1065         id |= ICE_RES_VALID_BIT;
1066         for (i = index; i < res->end && res->list[i] == id; i++) {
1067                 res->list[i] = 0;
1068                 count++;
1069         }
1070
1071         return count;
1072 }
1073
1074 /**
1075  * ice_search_res - Search the tracker for a block of resources
1076  * @res: pointer to the resource
1077  * @needed: size of the block needed
1078  * @id: identifier to track owner
1079  *
1080  * Returns the base item index of the block, or -ENOMEM for error
1081  */
1082 static int ice_search_res(struct ice_res_tracker *res, u16 needed, u16 id)
1083 {
1084         u16 start = 0, end = 0;
1085
1086         if (needed > res->end)
1087                 return -ENOMEM;
1088
1089         id |= ICE_RES_VALID_BIT;
1090
1091         do {
1092                 /* skip already allocated entries */
1093                 if (res->list[end++] & ICE_RES_VALID_BIT) {
1094                         start = end;
1095                         if ((start + needed) > res->end)
1096                                 break;
1097                 }
1098
1099                 if (end == (start + needed)) {
1100                         int i = start;
1101
1102                         /* there was enough, so assign it to the requestor */
1103                         while (i != end)
1104                                 res->list[i++] = id;
1105
1106                         return start;
1107                 }
1108         } while (end < res->end);
1109
1110         return -ENOMEM;
1111 }
1112
1113 /**
1114  * ice_get_free_res_count - Get free count from a resource tracker
1115  * @res: Resource tracker instance
1116  */
1117 static u16 ice_get_free_res_count(struct ice_res_tracker *res)
1118 {
1119         u16 i, count = 0;
1120
1121         for (i = 0; i < res->end; i++)
1122                 if (!(res->list[i] & ICE_RES_VALID_BIT))
1123                         count++;
1124
1125         return count;
1126 }
1127
1128 /**
1129  * ice_get_res - get a block of resources
1130  * @pf: board private structure
1131  * @res: pointer to the resource
1132  * @needed: size of the block needed
1133  * @id: identifier to track owner
1134  *
1135  * Returns the base item index of the block, or negative for error
1136  */
1137 int
1138 ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id)
1139 {
1140         if (!res || !pf)
1141                 return -EINVAL;
1142
1143         if (!needed || needed > res->num_entries || id >= ICE_RES_VALID_BIT) {
1144                 dev_err(ice_pf_to_dev(pf), "param err: needed=%d, num_entries = %d id=0x%04x\n",
1145                         needed, res->num_entries, id);
1146                 return -EINVAL;
1147         }
1148
1149         return ice_search_res(res, needed, id);
1150 }
1151
1152 /**
1153  * ice_vsi_setup_vector_base - Set up the base vector for the given VSI
1154  * @vsi: ptr to the VSI
1155  *
1156  * This should only be called after ice_vsi_alloc() which allocates the
1157  * corresponding SW VSI structure and initializes num_queue_pairs for the
1158  * newly allocated VSI.
1159  *
1160  * Returns 0 on success or negative on failure
1161  */
1162 static int ice_vsi_setup_vector_base(struct ice_vsi *vsi)
1163 {
1164         struct ice_pf *pf = vsi->back;
1165         struct device *dev;
1166         u16 num_q_vectors;
1167         int base;
1168
1169         dev = ice_pf_to_dev(pf);
1170         /* SRIOV doesn't grab irq_tracker entries for each VSI */
1171         if (vsi->type == ICE_VSI_VF)
1172                 return 0;
1173
1174         if (vsi->base_vector) {
1175                 dev_dbg(dev, "VSI %d has non-zero base vector %d\n",
1176                         vsi->vsi_num, vsi->base_vector);
1177                 return -EEXIST;
1178         }
1179
1180         num_q_vectors = vsi->num_q_vectors;
1181         /* reserve slots from OS requested IRQs */
1182         base = ice_get_res(pf, pf->irq_tracker, num_q_vectors, vsi->idx);
1183
1184         if (base < 0) {
1185                 dev_err(dev, "%d MSI-X interrupts available. %s %d failed to get %d MSI-X vectors\n",
1186                         ice_get_free_res_count(pf->irq_tracker),
1187                         ice_vsi_type_str(vsi->type), vsi->idx, num_q_vectors);
1188                 return -ENOENT;
1189         }
1190         vsi->base_vector = (u16)base;
1191         pf->num_avail_sw_msix -= num_q_vectors;
1192
1193         return 0;
1194 }
1195
1196 /**
1197  * ice_vsi_clear_rings - Deallocates the Tx and Rx rings for VSI
1198  * @vsi: the VSI having rings deallocated
1199  */
1200 static void ice_vsi_clear_rings(struct ice_vsi *vsi)
1201 {
1202         int i;
1203
1204         /* Avoid stale references by clearing map from vector to ring */
1205         if (vsi->q_vectors) {
1206                 ice_for_each_q_vector(vsi, i) {
1207                         struct ice_q_vector *q_vector = vsi->q_vectors[i];
1208
1209                         if (q_vector) {
1210                                 q_vector->tx.ring = NULL;
1211                                 q_vector->rx.ring = NULL;
1212                         }
1213                 }
1214         }
1215
1216         if (vsi->tx_rings) {
1217                 for (i = 0; i < vsi->alloc_txq; i++) {
1218                         if (vsi->tx_rings[i]) {
1219                                 kfree_rcu(vsi->tx_rings[i], rcu);
1220                                 WRITE_ONCE(vsi->tx_rings[i], NULL);
1221                         }
1222                 }
1223         }
1224         if (vsi->rx_rings) {
1225                 for (i = 0; i < vsi->alloc_rxq; i++) {
1226                         if (vsi->rx_rings[i]) {
1227                                 kfree_rcu(vsi->rx_rings[i], rcu);
1228                                 WRITE_ONCE(vsi->rx_rings[i], NULL);
1229                         }
1230                 }
1231         }
1232 }
1233
1234 /**
1235  * ice_vsi_alloc_rings - Allocates Tx and Rx rings for the VSI
1236  * @vsi: VSI which is having rings allocated
1237  */
1238 static int ice_vsi_alloc_rings(struct ice_vsi *vsi)
1239 {
1240         struct ice_pf *pf = vsi->back;
1241         struct device *dev;
1242         u16 i;
1243
1244         dev = ice_pf_to_dev(pf);
1245         /* Allocate Tx rings */
1246         for (i = 0; i < vsi->alloc_txq; i++) {
1247                 struct ice_ring *ring;
1248
1249                 /* allocate with kzalloc(), free with kfree_rcu() */
1250                 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
1251
1252                 if (!ring)
1253                         goto err_out;
1254
1255                 ring->q_index = i;
1256                 ring->reg_idx = vsi->txq_map[i];
1257                 ring->ring_active = false;
1258                 ring->vsi = vsi;
1259                 ring->dev = dev;
1260                 ring->count = vsi->num_tx_desc;
1261                 WRITE_ONCE(vsi->tx_rings[i], ring);
1262         }
1263
1264         /* Allocate Rx rings */
1265         for (i = 0; i < vsi->alloc_rxq; i++) {
1266                 struct ice_ring *ring;
1267
1268                 /* allocate with kzalloc(), free with kfree_rcu() */
1269                 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
1270                 if (!ring)
1271                         goto err_out;
1272
1273                 ring->q_index = i;
1274                 ring->reg_idx = vsi->rxq_map[i];
1275                 ring->ring_active = false;
1276                 ring->vsi = vsi;
1277                 ring->netdev = vsi->netdev;
1278                 ring->dev = dev;
1279                 ring->count = vsi->num_rx_desc;
1280                 WRITE_ONCE(vsi->rx_rings[i], ring);
1281         }
1282
1283         return 0;
1284
1285 err_out:
1286         ice_vsi_clear_rings(vsi);
1287         return -ENOMEM;
1288 }
1289
1290 /**
1291  * ice_vsi_manage_rss_lut - disable/enable RSS
1292  * @vsi: the VSI being changed
1293  * @ena: boolean value indicating if this is an enable or disable request
1294  *
1295  * In the event of disable request for RSS, this function will zero out RSS
1296  * LUT, while in the event of enable request for RSS, it will reconfigure RSS
1297  * LUT.
1298  */
1299 int ice_vsi_manage_rss_lut(struct ice_vsi *vsi, bool ena)
1300 {
1301         int err = 0;
1302         u8 *lut;
1303
1304         lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
1305         if (!lut)
1306                 return -ENOMEM;
1307
1308         if (ena) {
1309                 if (vsi->rss_lut_user)
1310                         memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
1311                 else
1312                         ice_fill_rss_lut(lut, vsi->rss_table_size,
1313                                          vsi->rss_size);
1314         }
1315
1316         err = ice_set_rss(vsi, NULL, lut, vsi->rss_table_size);
1317         kfree(lut);
1318         return err;
1319 }
1320
1321 /**
1322  * ice_vsi_cfg_rss_lut_key - Configure RSS params for a VSI
1323  * @vsi: VSI to be configured
1324  */
1325 static int ice_vsi_cfg_rss_lut_key(struct ice_vsi *vsi)
1326 {
1327         struct ice_aqc_get_set_rss_keys *key;
1328         struct ice_pf *pf = vsi->back;
1329         enum ice_status status;
1330         struct device *dev;
1331         int err = 0;
1332         u8 *lut;
1333
1334         dev = ice_pf_to_dev(pf);
1335         vsi->rss_size = min_t(u16, vsi->rss_size, vsi->num_rxq);
1336
1337         lut = kzalloc(vsi->rss_table_size, GFP_KERNEL);
1338         if (!lut)
1339                 return -ENOMEM;
1340
1341         if (vsi->rss_lut_user)
1342                 memcpy(lut, vsi->rss_lut_user, vsi->rss_table_size);
1343         else
1344                 ice_fill_rss_lut(lut, vsi->rss_table_size, vsi->rss_size);
1345
1346         status = ice_aq_set_rss_lut(&pf->hw, vsi->idx, vsi->rss_lut_type, lut,
1347                                     vsi->rss_table_size);
1348
1349         if (status) {
1350                 dev_err(dev, "set_rss_lut failed, error %s\n",
1351                         ice_stat_str(status));
1352                 err = -EIO;
1353                 goto ice_vsi_cfg_rss_exit;
1354         }
1355
1356         key = kzalloc(sizeof(*key), GFP_KERNEL);
1357         if (!key) {
1358                 err = -ENOMEM;
1359                 goto ice_vsi_cfg_rss_exit;
1360         }
1361
1362         if (vsi->rss_hkey_user)
1363                 memcpy(key,
1364                        (struct ice_aqc_get_set_rss_keys *)vsi->rss_hkey_user,
1365                        ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE);
1366         else
1367                 netdev_rss_key_fill((void *)key,
1368                                     ICE_GET_SET_RSS_KEY_EXTEND_KEY_SIZE);
1369
1370         status = ice_aq_set_rss_key(&pf->hw, vsi->idx, key);
1371
1372         if (status) {
1373                 dev_err(dev, "set_rss_key failed, error %s\n",
1374                         ice_stat_str(status));
1375                 err = -EIO;
1376         }
1377
1378         kfree(key);
1379 ice_vsi_cfg_rss_exit:
1380         kfree(lut);
1381         return err;
1382 }
1383
1384 /**
1385  * ice_vsi_set_vf_rss_flow_fld - Sets VF VSI RSS input set for different flows
1386  * @vsi: VSI to be configured
1387  *
1388  * This function will only be called during the VF VSI setup. Upon successful
1389  * completion of package download, this function will configure default RSS
1390  * input sets for VF VSI.
1391  */
1392 static void ice_vsi_set_vf_rss_flow_fld(struct ice_vsi *vsi)
1393 {
1394         struct ice_pf *pf = vsi->back;
1395         enum ice_status status;
1396         struct device *dev;
1397
1398         dev = ice_pf_to_dev(pf);
1399         if (ice_is_safe_mode(pf)) {
1400                 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
1401                         vsi->vsi_num);
1402                 return;
1403         }
1404
1405         status = ice_add_avf_rss_cfg(&pf->hw, vsi->idx, ICE_DEFAULT_RSS_HENA);
1406         if (status)
1407                 dev_dbg(dev, "ice_add_avf_rss_cfg failed for vsi = %d, error = %s\n",
1408                         vsi->vsi_num, ice_stat_str(status));
1409 }
1410
1411 /**
1412  * ice_vsi_set_rss_flow_fld - Sets RSS input set for different flows
1413  * @vsi: VSI to be configured
1414  *
1415  * This function will only be called after successful download package call
1416  * during initialization of PF. Since the downloaded package will erase the
1417  * RSS section, this function will configure RSS input sets for different
1418  * flow types. The last profile added has the highest priority, therefore 2
1419  * tuple profiles (i.e. IPv4 src/dst) are added before 4 tuple profiles
1420  * (i.e. IPv4 src/dst TCP src/dst port).
1421  */
1422 static void ice_vsi_set_rss_flow_fld(struct ice_vsi *vsi)
1423 {
1424         u16 vsi_handle = vsi->idx, vsi_num = vsi->vsi_num;
1425         struct ice_pf *pf = vsi->back;
1426         struct ice_hw *hw = &pf->hw;
1427         enum ice_status status;
1428         struct device *dev;
1429
1430         dev = ice_pf_to_dev(pf);
1431         if (ice_is_safe_mode(pf)) {
1432                 dev_dbg(dev, "Advanced RSS disabled. Package download failed, vsi num = %d\n",
1433                         vsi_num);
1434                 return;
1435         }
1436         /* configure RSS for IPv4 with input set IP src/dst */
1437         status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV4,
1438                                  ICE_FLOW_SEG_HDR_IPV4);
1439         if (status)
1440                 dev_dbg(dev, "ice_add_rss_cfg failed for ipv4 flow, vsi = %d, error = %s\n",
1441                         vsi_num, ice_stat_str(status));
1442
1443         /* configure RSS for IPv6 with input set IPv6 src/dst */
1444         status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV6,
1445                                  ICE_FLOW_SEG_HDR_IPV6);
1446         if (status)
1447                 dev_dbg(dev, "ice_add_rss_cfg failed for ipv6 flow, vsi = %d, error = %s\n",
1448                         vsi_num, ice_stat_str(status));
1449
1450         /* configure RSS for tcp4 with input set IP src/dst, TCP src/dst */
1451         status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_TCP_IPV4,
1452                                  ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV4);
1453         if (status)
1454                 dev_dbg(dev, "ice_add_rss_cfg failed for tcp4 flow, vsi = %d, error = %s\n",
1455                         vsi_num, ice_stat_str(status));
1456
1457         /* configure RSS for udp4 with input set IP src/dst, UDP src/dst */
1458         status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_UDP_IPV4,
1459                                  ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV4);
1460         if (status)
1461                 dev_dbg(dev, "ice_add_rss_cfg failed for udp4 flow, vsi = %d, error = %s\n",
1462                         vsi_num, ice_stat_str(status));
1463
1464         /* configure RSS for sctp4 with input set IP src/dst */
1465         status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV4,
1466                                  ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV4);
1467         if (status)
1468                 dev_dbg(dev, "ice_add_rss_cfg failed for sctp4 flow, vsi = %d, error = %s\n",
1469                         vsi_num, ice_stat_str(status));
1470
1471         /* configure RSS for tcp6 with input set IPv6 src/dst, TCP src/dst */
1472         status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_TCP_IPV6,
1473                                  ICE_FLOW_SEG_HDR_TCP | ICE_FLOW_SEG_HDR_IPV6);
1474         if (status)
1475                 dev_dbg(dev, "ice_add_rss_cfg failed for tcp6 flow, vsi = %d, error = %s\n",
1476                         vsi_num, ice_stat_str(status));
1477
1478         /* configure RSS for udp6 with input set IPv6 src/dst, UDP src/dst */
1479         status = ice_add_rss_cfg(hw, vsi_handle, ICE_HASH_UDP_IPV6,
1480                                  ICE_FLOW_SEG_HDR_UDP | ICE_FLOW_SEG_HDR_IPV6);
1481         if (status)
1482                 dev_dbg(dev, "ice_add_rss_cfg failed for udp6 flow, vsi = %d, error = %s\n",
1483                         vsi_num, ice_stat_str(status));
1484
1485         /* configure RSS for sctp6 with input set IPv6 src/dst */
1486         status = ice_add_rss_cfg(hw, vsi_handle, ICE_FLOW_HASH_IPV6,
1487                                  ICE_FLOW_SEG_HDR_SCTP | ICE_FLOW_SEG_HDR_IPV6);
1488         if (status)
1489                 dev_dbg(dev, "ice_add_rss_cfg failed for sctp6 flow, vsi = %d, error = %s\n",
1490                         vsi_num, ice_stat_str(status));
1491 }
1492
1493 /**
1494  * ice_pf_state_is_nominal - checks the PF for nominal state
1495  * @pf: pointer to PF to check
1496  *
1497  * Check the PF's state for a collection of bits that would indicate
1498  * the PF is in a state that would inhibit normal operation for
1499  * driver functionality.
1500  *
1501  * Returns true if PF is in a nominal state, false otherwise
1502  */
1503 bool ice_pf_state_is_nominal(struct ice_pf *pf)
1504 {
1505         DECLARE_BITMAP(check_bits, __ICE_STATE_NBITS) = { 0 };
1506
1507         if (!pf)
1508                 return false;
1509
1510         bitmap_set(check_bits, 0, __ICE_STATE_NOMINAL_CHECK_BITS);
1511         if (bitmap_intersects(pf->state, check_bits, __ICE_STATE_NBITS))
1512                 return false;
1513
1514         return true;
1515 }
1516
1517 /**
1518  * ice_update_eth_stats - Update VSI-specific ethernet statistics counters
1519  * @vsi: the VSI to be updated
1520  */
1521 void ice_update_eth_stats(struct ice_vsi *vsi)
1522 {
1523         struct ice_eth_stats *prev_es, *cur_es;
1524         struct ice_hw *hw = &vsi->back->hw;
1525         u16 vsi_num = vsi->vsi_num;    /* HW absolute index of a VSI */
1526
1527         prev_es = &vsi->eth_stats_prev;
1528         cur_es = &vsi->eth_stats;
1529
1530         ice_stat_update40(hw, GLV_GORCL(vsi_num), vsi->stat_offsets_loaded,
1531                           &prev_es->rx_bytes, &cur_es->rx_bytes);
1532
1533         ice_stat_update40(hw, GLV_UPRCL(vsi_num), vsi->stat_offsets_loaded,
1534                           &prev_es->rx_unicast, &cur_es->rx_unicast);
1535
1536         ice_stat_update40(hw, GLV_MPRCL(vsi_num), vsi->stat_offsets_loaded,
1537                           &prev_es->rx_multicast, &cur_es->rx_multicast);
1538
1539         ice_stat_update40(hw, GLV_BPRCL(vsi_num), vsi->stat_offsets_loaded,
1540                           &prev_es->rx_broadcast, &cur_es->rx_broadcast);
1541
1542         ice_stat_update32(hw, GLV_RDPC(vsi_num), vsi->stat_offsets_loaded,
1543                           &prev_es->rx_discards, &cur_es->rx_discards);
1544
1545         ice_stat_update40(hw, GLV_GOTCL(vsi_num), vsi->stat_offsets_loaded,
1546                           &prev_es->tx_bytes, &cur_es->tx_bytes);
1547
1548         ice_stat_update40(hw, GLV_UPTCL(vsi_num), vsi->stat_offsets_loaded,
1549                           &prev_es->tx_unicast, &cur_es->tx_unicast);
1550
1551         ice_stat_update40(hw, GLV_MPTCL(vsi_num), vsi->stat_offsets_loaded,
1552                           &prev_es->tx_multicast, &cur_es->tx_multicast);
1553
1554         ice_stat_update40(hw, GLV_BPTCL(vsi_num), vsi->stat_offsets_loaded,
1555                           &prev_es->tx_broadcast, &cur_es->tx_broadcast);
1556
1557         ice_stat_update32(hw, GLV_TEPC(vsi_num), vsi->stat_offsets_loaded,
1558                           &prev_es->tx_errors, &cur_es->tx_errors);
1559
1560         vsi->stat_offsets_loaded = true;
1561 }
1562
1563 /**
1564  * ice_vsi_add_vlan - Add VSI membership for given VLAN
1565  * @vsi: the VSI being configured
1566  * @vid: VLAN ID to be added
1567  * @action: filter action to be performed on match
1568  */
1569 int
1570 ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid, enum ice_sw_fwd_act_type action)
1571 {
1572         struct ice_pf *pf = vsi->back;
1573         struct device *dev;
1574         int err = 0;
1575
1576         dev = ice_pf_to_dev(pf);
1577
1578         if (!ice_fltr_add_vlan(vsi, vid, action)) {
1579                 vsi->num_vlan++;
1580         } else {
1581                 err = -ENODEV;
1582                 dev_err(dev, "Failure Adding VLAN %d on VSI %i\n", vid,
1583                         vsi->vsi_num);
1584         }
1585
1586         return err;
1587 }
1588
1589 /**
1590  * ice_vsi_kill_vlan - Remove VSI membership for a given VLAN
1591  * @vsi: the VSI being configured
1592  * @vid: VLAN ID to be removed
1593  *
1594  * Returns 0 on success and negative on failure
1595  */
1596 int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid)
1597 {
1598         struct ice_pf *pf = vsi->back;
1599         enum ice_status status;
1600         struct device *dev;
1601         int err = 0;
1602
1603         dev = ice_pf_to_dev(pf);
1604
1605         status = ice_fltr_remove_vlan(vsi, vid, ICE_FWD_TO_VSI);
1606         if (!status) {
1607                 vsi->num_vlan--;
1608         } else if (status == ICE_ERR_DOES_NOT_EXIST) {
1609                 dev_dbg(dev, "Failed to remove VLAN %d on VSI %i, it does not exist, status: %s\n",
1610                         vid, vsi->vsi_num, ice_stat_str(status));
1611         } else {
1612                 dev_err(dev, "Error removing VLAN %d on vsi %i error: %s\n",
1613                         vid, vsi->vsi_num, ice_stat_str(status));
1614                 err = -EIO;
1615         }
1616
1617         return err;
1618 }
1619
1620 /**
1621  * ice_vsi_cfg_frame_size - setup max frame size and Rx buffer length
1622  * @vsi: VSI
1623  */
1624 void ice_vsi_cfg_frame_size(struct ice_vsi *vsi)
1625 {
1626         if (!vsi->netdev || test_bit(ICE_FLAG_LEGACY_RX, vsi->back->flags)) {
1627                 vsi->max_frame = ICE_AQ_SET_MAC_FRAME_SIZE_MAX;
1628                 vsi->rx_buf_len = ICE_RXBUF_2048;
1629 #if (PAGE_SIZE < 8192)
1630         } else if (!ICE_2K_TOO_SMALL_WITH_PADDING &&
1631                    (vsi->netdev->mtu <= ETH_DATA_LEN)) {
1632                 vsi->max_frame = ICE_RXBUF_1536 - NET_IP_ALIGN;
1633                 vsi->rx_buf_len = ICE_RXBUF_1536 - NET_IP_ALIGN;
1634 #endif
1635         } else {
1636                 vsi->max_frame = ICE_AQ_SET_MAC_FRAME_SIZE_MAX;
1637 #if (PAGE_SIZE < 8192)
1638                 vsi->rx_buf_len = ICE_RXBUF_3072;
1639 #else
1640                 vsi->rx_buf_len = ICE_RXBUF_2048;
1641 #endif
1642         }
1643 }
1644
1645 /**
1646  * ice_write_qrxflxp_cntxt - write/configure QRXFLXP_CNTXT register
1647  * @hw: HW pointer
1648  * @pf_q: index of the Rx queue in the PF's queue space
1649  * @rxdid: flexible descriptor RXDID
1650  * @prio: priority for the RXDID for this queue
1651  */
1652 void
1653 ice_write_qrxflxp_cntxt(struct ice_hw *hw, u16 pf_q, u32 rxdid, u32 prio)
1654 {
1655         int regval = rd32(hw, QRXFLXP_CNTXT(pf_q));
1656
1657         /* clear any previous values */
1658         regval &= ~(QRXFLXP_CNTXT_RXDID_IDX_M |
1659                     QRXFLXP_CNTXT_RXDID_PRIO_M |
1660                     QRXFLXP_CNTXT_TS_M);
1661
1662         regval |= (rxdid << QRXFLXP_CNTXT_RXDID_IDX_S) &
1663                 QRXFLXP_CNTXT_RXDID_IDX_M;
1664
1665         regval |= (prio << QRXFLXP_CNTXT_RXDID_PRIO_S) &
1666                 QRXFLXP_CNTXT_RXDID_PRIO_M;
1667
1668         wr32(hw, QRXFLXP_CNTXT(pf_q), regval);
1669 }
1670
1671 /**
1672  * ice_vsi_cfg_rxqs - Configure the VSI for Rx
1673  * @vsi: the VSI being configured
1674  *
1675  * Return 0 on success and a negative value on error
1676  * Configure the Rx VSI for operation.
1677  */
1678 int ice_vsi_cfg_rxqs(struct ice_vsi *vsi)
1679 {
1680         u16 i;
1681
1682         if (vsi->type == ICE_VSI_VF)
1683                 goto setup_rings;
1684
1685         ice_vsi_cfg_frame_size(vsi);
1686 setup_rings:
1687         /* set up individual rings */
1688         for (i = 0; i < vsi->num_rxq; i++) {
1689                 int err;
1690
1691                 err = ice_setup_rx_ctx(vsi->rx_rings[i]);
1692                 if (err) {
1693                         dev_err(ice_pf_to_dev(vsi->back), "ice_setup_rx_ctx failed for RxQ %d, err %d\n",
1694                                 i, err);
1695                         return err;
1696                 }
1697         }
1698
1699         return 0;
1700 }
1701
1702 /**
1703  * ice_vsi_cfg_txqs - Configure the VSI for Tx
1704  * @vsi: the VSI being configured
1705  * @rings: Tx ring array to be configured
1706  *
1707  * Return 0 on success and a negative value on error
1708  * Configure the Tx VSI for operation.
1709  */
1710 static int
1711 ice_vsi_cfg_txqs(struct ice_vsi *vsi, struct ice_ring **rings)
1712 {
1713         struct ice_aqc_add_tx_qgrp *qg_buf;
1714         u16 q_idx = 0;
1715         int err = 0;
1716
1717         qg_buf = kzalloc(struct_size(qg_buf, txqs, 1), GFP_KERNEL);
1718         if (!qg_buf)
1719                 return -ENOMEM;
1720
1721         qg_buf->num_txqs = 1;
1722
1723         for (q_idx = 0; q_idx < vsi->num_txq; q_idx++) {
1724                 err = ice_vsi_cfg_txq(vsi, rings[q_idx], qg_buf);
1725                 if (err)
1726                         goto err_cfg_txqs;
1727         }
1728
1729 err_cfg_txqs:
1730         kfree(qg_buf);
1731         return err;
1732 }
1733
1734 /**
1735  * ice_vsi_cfg_lan_txqs - Configure the VSI for Tx
1736  * @vsi: the VSI being configured
1737  *
1738  * Return 0 on success and a negative value on error
1739  * Configure the Tx VSI for operation.
1740  */
1741 int ice_vsi_cfg_lan_txqs(struct ice_vsi *vsi)
1742 {
1743         return ice_vsi_cfg_txqs(vsi, vsi->tx_rings);
1744 }
1745
1746 /**
1747  * ice_vsi_cfg_xdp_txqs - Configure Tx queues dedicated for XDP in given VSI
1748  * @vsi: the VSI being configured
1749  *
1750  * Return 0 on success and a negative value on error
1751  * Configure the Tx queues dedicated for XDP in given VSI for operation.
1752  */
1753 int ice_vsi_cfg_xdp_txqs(struct ice_vsi *vsi)
1754 {
1755         int ret;
1756         int i;
1757
1758         ret = ice_vsi_cfg_txqs(vsi, vsi->xdp_rings);
1759         if (ret)
1760                 return ret;
1761
1762         for (i = 0; i < vsi->num_xdp_txq; i++)
1763                 vsi->xdp_rings[i]->xsk_pool = ice_xsk_pool(vsi->xdp_rings[i]);
1764
1765         return ret;
1766 }
1767
1768 /**
1769  * ice_intrl_usec_to_reg - convert interrupt rate limit to register value
1770  * @intrl: interrupt rate limit in usecs
1771  * @gran: interrupt rate limit granularity in usecs
1772  *
1773  * This function converts a decimal interrupt rate limit in usecs to the format
1774  * expected by firmware.
1775  */
1776 u32 ice_intrl_usec_to_reg(u8 intrl, u8 gran)
1777 {
1778         u32 val = intrl / gran;
1779
1780         if (val)
1781                 return val | GLINT_RATE_INTRL_ENA_M;
1782         return 0;
1783 }
1784
1785 /**
1786  * ice_vsi_cfg_msix - MSIX mode Interrupt Config in the HW
1787  * @vsi: the VSI being configured
1788  *
1789  * This configures MSIX mode interrupts for the PF VSI, and should not be used
1790  * for the VF VSI.
1791  */
1792 void ice_vsi_cfg_msix(struct ice_vsi *vsi)
1793 {
1794         struct ice_pf *pf = vsi->back;
1795         struct ice_hw *hw = &pf->hw;
1796         u16 txq = 0, rxq = 0;
1797         int i, q;
1798
1799         for (i = 0; i < vsi->num_q_vectors; i++) {
1800                 struct ice_q_vector *q_vector = vsi->q_vectors[i];
1801                 u16 reg_idx = q_vector->reg_idx;
1802
1803                 ice_cfg_itr(hw, q_vector);
1804
1805                 wr32(hw, GLINT_RATE(reg_idx),
1806                      ice_intrl_usec_to_reg(q_vector->intrl, hw->intrl_gran));
1807
1808                 /* Both Transmit Queue Interrupt Cause Control register
1809                  * and Receive Queue Interrupt Cause control register
1810                  * expects MSIX_INDX field to be the vector index
1811                  * within the function space and not the absolute
1812                  * vector index across PF or across device.
1813                  * For SR-IOV VF VSIs queue vector index always starts
1814                  * with 1 since first vector index(0) is used for OICR
1815                  * in VF space. Since VMDq and other PF VSIs are within
1816                  * the PF function space, use the vector index that is
1817                  * tracked for this PF.
1818                  */
1819                 for (q = 0; q < q_vector->num_ring_tx; q++) {
1820                         ice_cfg_txq_interrupt(vsi, txq, reg_idx,
1821                                               q_vector->tx.itr_idx);
1822                         txq++;
1823                 }
1824
1825                 for (q = 0; q < q_vector->num_ring_rx; q++) {
1826                         ice_cfg_rxq_interrupt(vsi, rxq, reg_idx,
1827                                               q_vector->rx.itr_idx);
1828                         rxq++;
1829                 }
1830         }
1831 }
1832
1833 /**
1834  * ice_vsi_manage_vlan_insertion - Manage VLAN insertion for the VSI for Tx
1835  * @vsi: the VSI being changed
1836  */
1837 int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi)
1838 {
1839         struct ice_hw *hw = &vsi->back->hw;
1840         struct ice_vsi_ctx *ctxt;
1841         enum ice_status status;
1842         int ret = 0;
1843
1844         ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
1845         if (!ctxt)
1846                 return -ENOMEM;
1847
1848         /* Here we are configuring the VSI to let the driver add VLAN tags by
1849          * setting vlan_flags to ICE_AQ_VSI_VLAN_MODE_ALL. The actual VLAN tag
1850          * insertion happens in the Tx hot path, in ice_tx_map.
1851          */
1852         ctxt->info.vlan_flags = ICE_AQ_VSI_VLAN_MODE_ALL;
1853
1854         /* Preserve existing VLAN strip setting */
1855         ctxt->info.vlan_flags |= (vsi->info.vlan_flags &
1856                                   ICE_AQ_VSI_VLAN_EMOD_M);
1857
1858         ctxt->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_VLAN_VALID);
1859
1860         status = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1861         if (status) {
1862                 dev_err(ice_pf_to_dev(vsi->back), "update VSI for VLAN insert failed, err %s aq_err %s\n",
1863                         ice_stat_str(status),
1864                         ice_aq_str(hw->adminq.sq_last_status));
1865                 ret = -EIO;
1866                 goto out;
1867         }
1868
1869         vsi->info.vlan_flags = ctxt->info.vlan_flags;
1870 out:
1871         kfree(ctxt);
1872         return ret;
1873 }
1874
1875 /**
1876  * ice_vsi_manage_vlan_stripping - Manage VLAN stripping for the VSI for Rx
1877  * @vsi: the VSI being changed
1878  * @ena: boolean value indicating if this is a enable or disable request
1879  */
1880 int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena)
1881 {
1882         struct ice_hw *hw = &vsi->back->hw;
1883         struct ice_vsi_ctx *ctxt;
1884         enum ice_status status;
1885         int ret = 0;
1886
1887         /* do not allow modifying VLAN stripping when a port VLAN is configured
1888          * on this VSI
1889          */
1890         if (vsi->info.pvid)
1891                 return 0;
1892
1893         ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
1894         if (!ctxt)
1895                 return -ENOMEM;
1896
1897         /* Here we are configuring what the VSI should do with the VLAN tag in
1898          * the Rx packet. We can either leave the tag in the packet or put it in
1899          * the Rx descriptor.
1900          */
1901         if (ena)
1902                 /* Strip VLAN tag from Rx packet and put it in the desc */
1903                 ctxt->info.vlan_flags = ICE_AQ_VSI_VLAN_EMOD_STR_BOTH;
1904         else
1905                 /* Disable stripping. Leave tag in packet */
1906                 ctxt->info.vlan_flags = ICE_AQ_VSI_VLAN_EMOD_NOTHING;
1907
1908         /* Allow all packets untagged/tagged */
1909         ctxt->info.vlan_flags |= ICE_AQ_VSI_VLAN_MODE_ALL;
1910
1911         ctxt->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_VLAN_VALID);
1912
1913         status = ice_update_vsi(hw, vsi->idx, ctxt, NULL);
1914         if (status) {
1915                 dev_err(ice_pf_to_dev(vsi->back), "update VSI for VLAN strip failed, ena = %d err %s aq_err %s\n",
1916                         ena, ice_stat_str(status),
1917                         ice_aq_str(hw->adminq.sq_last_status));
1918                 ret = -EIO;
1919                 goto out;
1920         }
1921
1922         vsi->info.vlan_flags = ctxt->info.vlan_flags;
1923 out:
1924         kfree(ctxt);
1925         return ret;
1926 }
1927
1928 /**
1929  * ice_vsi_start_all_rx_rings - start/enable all of a VSI's Rx rings
1930  * @vsi: the VSI whose rings are to be enabled
1931  *
1932  * Returns 0 on success and a negative value on error
1933  */
1934 int ice_vsi_start_all_rx_rings(struct ice_vsi *vsi)
1935 {
1936         return ice_vsi_ctrl_all_rx_rings(vsi, true);
1937 }
1938
1939 /**
1940  * ice_vsi_stop_all_rx_rings - stop/disable all of a VSI's Rx rings
1941  * @vsi: the VSI whose rings are to be disabled
1942  *
1943  * Returns 0 on success and a negative value on error
1944  */
1945 int ice_vsi_stop_all_rx_rings(struct ice_vsi *vsi)
1946 {
1947         return ice_vsi_ctrl_all_rx_rings(vsi, false);
1948 }
1949
1950 /**
1951  * ice_vsi_stop_tx_rings - Disable Tx rings
1952  * @vsi: the VSI being configured
1953  * @rst_src: reset source
1954  * @rel_vmvf_num: Relative ID of VF/VM
1955  * @rings: Tx ring array to be stopped
1956  */
1957 static int
1958 ice_vsi_stop_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1959                       u16 rel_vmvf_num, struct ice_ring **rings)
1960 {
1961         u16 q_idx;
1962
1963         if (vsi->num_txq > ICE_LAN_TXQ_MAX_QDIS)
1964                 return -EINVAL;
1965
1966         for (q_idx = 0; q_idx < vsi->num_txq; q_idx++) {
1967                 struct ice_txq_meta txq_meta = { };
1968                 int status;
1969
1970                 if (!rings || !rings[q_idx])
1971                         return -EINVAL;
1972
1973                 ice_fill_txq_meta(vsi, rings[q_idx], &txq_meta);
1974                 status = ice_vsi_stop_tx_ring(vsi, rst_src, rel_vmvf_num,
1975                                               rings[q_idx], &txq_meta);
1976
1977                 if (status)
1978                         return status;
1979         }
1980
1981         return 0;
1982 }
1983
1984 /**
1985  * ice_vsi_stop_lan_tx_rings - Disable LAN Tx rings
1986  * @vsi: the VSI being configured
1987  * @rst_src: reset source
1988  * @rel_vmvf_num: Relative ID of VF/VM
1989  */
1990 int
1991 ice_vsi_stop_lan_tx_rings(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
1992                           u16 rel_vmvf_num)
1993 {
1994         return ice_vsi_stop_tx_rings(vsi, rst_src, rel_vmvf_num, vsi->tx_rings);
1995 }
1996
1997 /**
1998  * ice_vsi_stop_xdp_tx_rings - Disable XDP Tx rings
1999  * @vsi: the VSI being configured
2000  */
2001 int ice_vsi_stop_xdp_tx_rings(struct ice_vsi *vsi)
2002 {
2003         return ice_vsi_stop_tx_rings(vsi, ICE_NO_RESET, 0, vsi->xdp_rings);
2004 }
2005
2006 /**
2007  * ice_vsi_is_vlan_pruning_ena - check if VLAN pruning is enabled or not
2008  * @vsi: VSI to check whether or not VLAN pruning is enabled.
2009  *
2010  * returns true if Rx VLAN pruning is enabled and false otherwise.
2011  */
2012 bool ice_vsi_is_vlan_pruning_ena(struct ice_vsi *vsi)
2013 {
2014         if (!vsi)
2015                 return false;
2016
2017         return (vsi->info.sw_flags2 & ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA);
2018 }
2019
2020 /**
2021  * ice_cfg_vlan_pruning - enable or disable VLAN pruning on the VSI
2022  * @vsi: VSI to enable or disable VLAN pruning on
2023  * @ena: set to true to enable VLAN pruning and false to disable it
2024  * @vlan_promisc: enable valid security flags if not in VLAN promiscuous mode
2025  *
2026  * returns 0 if VSI is updated, negative otherwise
2027  */
2028 int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena, bool vlan_promisc)
2029 {
2030         struct ice_vsi_ctx *ctxt;
2031         struct ice_pf *pf;
2032         int status;
2033
2034         if (!vsi)
2035                 return -EINVAL;
2036
2037         /* Don't enable VLAN pruning if the netdev is currently in promiscuous
2038          * mode. VLAN pruning will be enabled when the interface exits
2039          * promiscuous mode if any VLAN filters are active.
2040          */
2041         if (vsi->netdev && vsi->netdev->flags & IFF_PROMISC && ena)
2042                 return 0;
2043
2044         pf = vsi->back;
2045         ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
2046         if (!ctxt)
2047                 return -ENOMEM;
2048
2049         ctxt->info = vsi->info;
2050
2051         if (ena)
2052                 ctxt->info.sw_flags2 |= ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
2053         else
2054                 ctxt->info.sw_flags2 &= ~ICE_AQ_VSI_SW_FLAG_RX_VLAN_PRUNE_ENA;
2055
2056         if (!vlan_promisc)
2057                 ctxt->info.valid_sections =
2058                         cpu_to_le16(ICE_AQ_VSI_PROP_SW_VALID);
2059
2060         status = ice_update_vsi(&pf->hw, vsi->idx, ctxt, NULL);
2061         if (status) {
2062                 netdev_err(vsi->netdev, "%sabling VLAN pruning on VSI handle: %d, VSI HW ID: %d failed, err = %s, aq_err = %s\n",
2063                            ena ? "En" : "Dis", vsi->idx, vsi->vsi_num,
2064                            ice_stat_str(status),
2065                            ice_aq_str(pf->hw.adminq.sq_last_status));
2066                 goto err_out;
2067         }
2068
2069         vsi->info.sw_flags2 = ctxt->info.sw_flags2;
2070
2071         kfree(ctxt);
2072         return 0;
2073
2074 err_out:
2075         kfree(ctxt);
2076         return -EIO;
2077 }
2078
2079 static void ice_vsi_set_tc_cfg(struct ice_vsi *vsi)
2080 {
2081         struct ice_dcbx_cfg *cfg = &vsi->port_info->local_dcbx_cfg;
2082
2083         vsi->tc_cfg.ena_tc = ice_dcb_get_ena_tc(cfg);
2084         vsi->tc_cfg.numtc = ice_dcb_get_num_tc(cfg);
2085 }
2086
2087 /**
2088  * ice_vsi_set_q_vectors_reg_idx - set the HW register index for all q_vectors
2089  * @vsi: VSI to set the q_vectors register index on
2090  */
2091 static int
2092 ice_vsi_set_q_vectors_reg_idx(struct ice_vsi *vsi)
2093 {
2094         u16 i;
2095
2096         if (!vsi || !vsi->q_vectors)
2097                 return -EINVAL;
2098
2099         ice_for_each_q_vector(vsi, i) {
2100                 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2101
2102                 if (!q_vector) {
2103                         dev_err(ice_pf_to_dev(vsi->back), "Failed to set reg_idx on q_vector %d VSI %d\n",
2104                                 i, vsi->vsi_num);
2105                         goto clear_reg_idx;
2106                 }
2107
2108                 if (vsi->type == ICE_VSI_VF) {
2109                         struct ice_vf *vf = &vsi->back->vf[vsi->vf_id];
2110
2111                         q_vector->reg_idx = ice_calc_vf_reg_idx(vf, q_vector);
2112                 } else {
2113                         q_vector->reg_idx =
2114                                 q_vector->v_idx + vsi->base_vector;
2115                 }
2116         }
2117
2118         return 0;
2119
2120 clear_reg_idx:
2121         ice_for_each_q_vector(vsi, i) {
2122                 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2123
2124                 if (q_vector)
2125                         q_vector->reg_idx = 0;
2126         }
2127
2128         return -EINVAL;
2129 }
2130
2131 /**
2132  * ice_cfg_sw_lldp - Config switch rules for LLDP packet handling
2133  * @vsi: the VSI being configured
2134  * @tx: bool to determine Tx or Rx rule
2135  * @create: bool to determine create or remove Rule
2136  */
2137 void ice_cfg_sw_lldp(struct ice_vsi *vsi, bool tx, bool create)
2138 {
2139         enum ice_status (*eth_fltr)(struct ice_vsi *v, u16 type, u16 flag,
2140                                     enum ice_sw_fwd_act_type act);
2141         struct ice_pf *pf = vsi->back;
2142         enum ice_status status;
2143         struct device *dev;
2144
2145         dev = ice_pf_to_dev(pf);
2146         eth_fltr = create ? ice_fltr_add_eth : ice_fltr_remove_eth;
2147
2148         if (tx)
2149                 status = eth_fltr(vsi, ETH_P_LLDP, ICE_FLTR_TX,
2150                                   ICE_DROP_PACKET);
2151         else
2152                 status = eth_fltr(vsi, ETH_P_LLDP, ICE_FLTR_RX, ICE_FWD_TO_VSI);
2153
2154         if (status)
2155                 dev_err(dev, "Fail %s %s LLDP rule on VSI %i error: %s\n",
2156                         create ? "adding" : "removing", tx ? "TX" : "RX",
2157                         vsi->vsi_num, ice_stat_str(status));
2158 }
2159
2160 /**
2161  * ice_vsi_setup - Set up a VSI by a given type
2162  * @pf: board private structure
2163  * @pi: pointer to the port_info instance
2164  * @vsi_type: VSI type
2165  * @vf_id: defines VF ID to which this VSI connects. This field is meant to be
2166  *         used only for ICE_VSI_VF VSI type. For other VSI types, should
2167  *         fill-in ICE_INVAL_VFID as input.
2168  *
2169  * This allocates the sw VSI structure and its queue resources.
2170  *
2171  * Returns pointer to the successfully allocated and configured VSI sw struct on
2172  * success, NULL on failure.
2173  */
2174 struct ice_vsi *
2175 ice_vsi_setup(struct ice_pf *pf, struct ice_port_info *pi,
2176               enum ice_vsi_type vsi_type, u16 vf_id)
2177 {
2178         u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2179         struct device *dev = ice_pf_to_dev(pf);
2180         enum ice_status status;
2181         struct ice_vsi *vsi;
2182         int ret, i;
2183
2184         if (vsi_type == ICE_VSI_VF)
2185                 vsi = ice_vsi_alloc(pf, vsi_type, vf_id);
2186         else
2187                 vsi = ice_vsi_alloc(pf, vsi_type, ICE_INVAL_VFID);
2188
2189         if (!vsi) {
2190                 dev_err(dev, "could not allocate VSI\n");
2191                 return NULL;
2192         }
2193
2194         vsi->port_info = pi;
2195         vsi->vsw = pf->first_sw;
2196         if (vsi->type == ICE_VSI_PF)
2197                 vsi->ethtype = ETH_P_PAUSE;
2198
2199         if (vsi->type == ICE_VSI_VF)
2200                 vsi->vf_id = vf_id;
2201
2202         ice_alloc_fd_res(vsi);
2203
2204         if (ice_vsi_get_qs(vsi)) {
2205                 dev_err(dev, "Failed to allocate queues. vsi->idx = %d\n",
2206                         vsi->idx);
2207                 goto unroll_vsi_alloc;
2208         }
2209
2210         /* set RSS capabilities */
2211         ice_vsi_set_rss_params(vsi);
2212
2213         /* set TC configuration */
2214         ice_vsi_set_tc_cfg(vsi);
2215
2216         /* create the VSI */
2217         ret = ice_vsi_init(vsi, true);
2218         if (ret)
2219                 goto unroll_get_qs;
2220
2221         switch (vsi->type) {
2222         case ICE_VSI_CTRL:
2223         case ICE_VSI_PF:
2224                 ret = ice_vsi_alloc_q_vectors(vsi);
2225                 if (ret)
2226                         goto unroll_vsi_init;
2227
2228                 ret = ice_vsi_setup_vector_base(vsi);
2229                 if (ret)
2230                         goto unroll_alloc_q_vector;
2231
2232                 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2233                 if (ret)
2234                         goto unroll_vector_base;
2235
2236                 ret = ice_vsi_alloc_rings(vsi);
2237                 if (ret)
2238                         goto unroll_vector_base;
2239
2240                 /* Always add VLAN ID 0 switch rule by default. This is needed
2241                  * in order to allow all untagged and 0 tagged priority traffic
2242                  * if Rx VLAN pruning is enabled. Also there are cases where we
2243                  * don't get the call to add VLAN 0 via ice_vlan_rx_add_vid()
2244                  * so this handles those cases (i.e. adding the PF to a bridge
2245                  * without the 8021q module loaded).
2246                  */
2247                 ret = ice_vsi_add_vlan(vsi, 0, ICE_FWD_TO_VSI);
2248                 if (ret)
2249                         goto unroll_clear_rings;
2250
2251                 ice_vsi_map_rings_to_vectors(vsi);
2252
2253                 /* ICE_VSI_CTRL does not need RSS so skip RSS processing */
2254                 if (vsi->type != ICE_VSI_CTRL)
2255                         /* Do not exit if configuring RSS had an issue, at
2256                          * least receive traffic on first queue. Hence no
2257                          * need to capture return value
2258                          */
2259                         if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2260                                 ice_vsi_cfg_rss_lut_key(vsi);
2261                                 ice_vsi_set_rss_flow_fld(vsi);
2262                         }
2263                 ice_init_arfs(vsi);
2264                 break;
2265         case ICE_VSI_VF:
2266                 /* VF driver will take care of creating netdev for this type and
2267                  * map queues to vectors through Virtchnl, PF driver only
2268                  * creates a VSI and corresponding structures for bookkeeping
2269                  * purpose
2270                  */
2271                 ret = ice_vsi_alloc_q_vectors(vsi);
2272                 if (ret)
2273                         goto unroll_vsi_init;
2274
2275                 ret = ice_vsi_alloc_rings(vsi);
2276                 if (ret)
2277                         goto unroll_alloc_q_vector;
2278
2279                 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2280                 if (ret)
2281                         goto unroll_vector_base;
2282
2283                 /* Do not exit if configuring RSS had an issue, at least
2284                  * receive traffic on first queue. Hence no need to capture
2285                  * return value
2286                  */
2287                 if (test_bit(ICE_FLAG_RSS_ENA, pf->flags)) {
2288                         ice_vsi_cfg_rss_lut_key(vsi);
2289                         ice_vsi_set_vf_rss_flow_fld(vsi);
2290                 }
2291                 break;
2292         case ICE_VSI_LB:
2293                 ret = ice_vsi_alloc_rings(vsi);
2294                 if (ret)
2295                         goto unroll_vsi_init;
2296                 break;
2297         default:
2298                 /* clean up the resources and exit */
2299                 goto unroll_vsi_init;
2300         }
2301
2302         /* configure VSI nodes based on number of queues and TC's */
2303         for (i = 0; i < vsi->tc_cfg.numtc; i++)
2304                 max_txqs[i] = vsi->alloc_txq;
2305
2306         status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2307                                  max_txqs);
2308         if (status) {
2309                 dev_err(dev, "VSI %d failed lan queue config, error %s\n",
2310                         vsi->vsi_num, ice_stat_str(status));
2311                 goto unroll_clear_rings;
2312         }
2313
2314         /* Add switch rule to drop all Tx Flow Control Frames, of look up
2315          * type ETHERTYPE from VSIs, and restrict malicious VF from sending
2316          * out PAUSE or PFC frames. If enabled, FW can still send FC frames.
2317          * The rule is added once for PF VSI in order to create appropriate
2318          * recipe, since VSI/VSI list is ignored with drop action...
2319          * Also add rules to handle LLDP Tx packets.  Tx LLDP packets need to
2320          * be dropped so that VFs cannot send LLDP packets to reconfig DCB
2321          * settings in the HW.
2322          */
2323         if (!ice_is_safe_mode(pf))
2324                 if (vsi->type == ICE_VSI_PF) {
2325                         ice_fltr_add_eth(vsi, ETH_P_PAUSE, ICE_FLTR_TX,
2326                                          ICE_DROP_PACKET);
2327                         ice_cfg_sw_lldp(vsi, true, true);
2328                 }
2329
2330         return vsi;
2331
2332 unroll_clear_rings:
2333         ice_vsi_clear_rings(vsi);
2334 unroll_vector_base:
2335         /* reclaim SW interrupts back to the common pool */
2336         ice_free_res(pf->irq_tracker, vsi->base_vector, vsi->idx);
2337         pf->num_avail_sw_msix += vsi->num_q_vectors;
2338 unroll_alloc_q_vector:
2339         ice_vsi_free_q_vectors(vsi);
2340 unroll_vsi_init:
2341         ice_vsi_delete(vsi);
2342 unroll_get_qs:
2343         ice_vsi_put_qs(vsi);
2344 unroll_vsi_alloc:
2345         ice_vsi_clear(vsi);
2346
2347         return NULL;
2348 }
2349
2350 /**
2351  * ice_vsi_release_msix - Clear the queue to Interrupt mapping in HW
2352  * @vsi: the VSI being cleaned up
2353  */
2354 static void ice_vsi_release_msix(struct ice_vsi *vsi)
2355 {
2356         struct ice_pf *pf = vsi->back;
2357         struct ice_hw *hw = &pf->hw;
2358         u32 txq = 0;
2359         u32 rxq = 0;
2360         int i, q;
2361
2362         for (i = 0; i < vsi->num_q_vectors; i++) {
2363                 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2364                 u16 reg_idx = q_vector->reg_idx;
2365
2366                 wr32(hw, GLINT_ITR(ICE_IDX_ITR0, reg_idx), 0);
2367                 wr32(hw, GLINT_ITR(ICE_IDX_ITR1, reg_idx), 0);
2368                 for (q = 0; q < q_vector->num_ring_tx; q++) {
2369                         wr32(hw, QINT_TQCTL(vsi->txq_map[txq]), 0);
2370                         if (ice_is_xdp_ena_vsi(vsi)) {
2371                                 u32 xdp_txq = txq + vsi->num_xdp_txq;
2372
2373                                 wr32(hw, QINT_TQCTL(vsi->txq_map[xdp_txq]), 0);
2374                         }
2375                         txq++;
2376                 }
2377
2378                 for (q = 0; q < q_vector->num_ring_rx; q++) {
2379                         wr32(hw, QINT_RQCTL(vsi->rxq_map[rxq]), 0);
2380                         rxq++;
2381                 }
2382         }
2383
2384         ice_flush(hw);
2385 }
2386
2387 /**
2388  * ice_vsi_free_irq - Free the IRQ association with the OS
2389  * @vsi: the VSI being configured
2390  */
2391 void ice_vsi_free_irq(struct ice_vsi *vsi)
2392 {
2393         struct ice_pf *pf = vsi->back;
2394         int base = vsi->base_vector;
2395         int i;
2396
2397         if (!vsi->q_vectors || !vsi->irqs_ready)
2398                 return;
2399
2400         ice_vsi_release_msix(vsi);
2401         if (vsi->type == ICE_VSI_VF)
2402                 return;
2403
2404         vsi->irqs_ready = false;
2405         ice_for_each_q_vector(vsi, i) {
2406                 u16 vector = i + base;
2407                 int irq_num;
2408
2409                 irq_num = pf->msix_entries[vector].vector;
2410
2411                 /* free only the irqs that were actually requested */
2412                 if (!vsi->q_vectors[i] ||
2413                     !(vsi->q_vectors[i]->num_ring_tx ||
2414                       vsi->q_vectors[i]->num_ring_rx))
2415                         continue;
2416
2417                 /* clear the affinity notifier in the IRQ descriptor */
2418                 irq_set_affinity_notifier(irq_num, NULL);
2419
2420                 /* clear the affinity_mask in the IRQ descriptor */
2421                 irq_set_affinity_hint(irq_num, NULL);
2422                 synchronize_irq(irq_num);
2423                 devm_free_irq(ice_pf_to_dev(pf), irq_num, vsi->q_vectors[i]);
2424         }
2425 }
2426
2427 /**
2428  * ice_vsi_free_tx_rings - Free Tx resources for VSI queues
2429  * @vsi: the VSI having resources freed
2430  */
2431 void ice_vsi_free_tx_rings(struct ice_vsi *vsi)
2432 {
2433         int i;
2434
2435         if (!vsi->tx_rings)
2436                 return;
2437
2438         ice_for_each_txq(vsi, i)
2439                 if (vsi->tx_rings[i] && vsi->tx_rings[i]->desc)
2440                         ice_free_tx_ring(vsi->tx_rings[i]);
2441 }
2442
2443 /**
2444  * ice_vsi_free_rx_rings - Free Rx resources for VSI queues
2445  * @vsi: the VSI having resources freed
2446  */
2447 void ice_vsi_free_rx_rings(struct ice_vsi *vsi)
2448 {
2449         int i;
2450
2451         if (!vsi->rx_rings)
2452                 return;
2453
2454         ice_for_each_rxq(vsi, i)
2455                 if (vsi->rx_rings[i] && vsi->rx_rings[i]->desc)
2456                         ice_free_rx_ring(vsi->rx_rings[i]);
2457 }
2458
2459 /**
2460  * ice_vsi_close - Shut down a VSI
2461  * @vsi: the VSI being shut down
2462  */
2463 void ice_vsi_close(struct ice_vsi *vsi)
2464 {
2465         if (!test_and_set_bit(__ICE_DOWN, vsi->state))
2466                 ice_down(vsi);
2467
2468         ice_vsi_free_irq(vsi);
2469         ice_vsi_free_tx_rings(vsi);
2470         ice_vsi_free_rx_rings(vsi);
2471 }
2472
2473 /**
2474  * ice_ena_vsi - resume a VSI
2475  * @vsi: the VSI being resume
2476  * @locked: is the rtnl_lock already held
2477  */
2478 int ice_ena_vsi(struct ice_vsi *vsi, bool locked)
2479 {
2480         int err = 0;
2481
2482         if (!test_bit(__ICE_NEEDS_RESTART, vsi->state))
2483                 return 0;
2484
2485         clear_bit(__ICE_NEEDS_RESTART, vsi->state);
2486
2487         if (vsi->netdev && vsi->type == ICE_VSI_PF) {
2488                 if (netif_running(vsi->netdev)) {
2489                         if (!locked)
2490                                 rtnl_lock();
2491
2492                         err = ice_open(vsi->netdev);
2493
2494                         if (!locked)
2495                                 rtnl_unlock();
2496                 }
2497         } else if (vsi->type == ICE_VSI_CTRL) {
2498                 err = ice_vsi_open_ctrl(vsi);
2499         }
2500
2501         return err;
2502 }
2503
2504 /**
2505  * ice_dis_vsi - pause a VSI
2506  * @vsi: the VSI being paused
2507  * @locked: is the rtnl_lock already held
2508  */
2509 void ice_dis_vsi(struct ice_vsi *vsi, bool locked)
2510 {
2511         if (test_bit(__ICE_DOWN, vsi->state))
2512                 return;
2513
2514         set_bit(__ICE_NEEDS_RESTART, vsi->state);
2515
2516         if (vsi->type == ICE_VSI_PF && vsi->netdev) {
2517                 if (netif_running(vsi->netdev)) {
2518                         if (!locked)
2519                                 rtnl_lock();
2520
2521                         ice_stop(vsi->netdev);
2522
2523                         if (!locked)
2524                                 rtnl_unlock();
2525                 } else {
2526                         ice_vsi_close(vsi);
2527                 }
2528         } else if (vsi->type == ICE_VSI_CTRL) {
2529                 ice_vsi_close(vsi);
2530         }
2531 }
2532
2533 /**
2534  * ice_vsi_dis_irq - Mask off queue interrupt generation on the VSI
2535  * @vsi: the VSI being un-configured
2536  */
2537 void ice_vsi_dis_irq(struct ice_vsi *vsi)
2538 {
2539         int base = vsi->base_vector;
2540         struct ice_pf *pf = vsi->back;
2541         struct ice_hw *hw = &pf->hw;
2542         u32 val;
2543         int i;
2544
2545         /* disable interrupt causation from each queue */
2546         if (vsi->tx_rings) {
2547                 ice_for_each_txq(vsi, i) {
2548                         if (vsi->tx_rings[i]) {
2549                                 u16 reg;
2550
2551                                 reg = vsi->tx_rings[i]->reg_idx;
2552                                 val = rd32(hw, QINT_TQCTL(reg));
2553                                 val &= ~QINT_TQCTL_CAUSE_ENA_M;
2554                                 wr32(hw, QINT_TQCTL(reg), val);
2555                         }
2556                 }
2557         }
2558
2559         if (vsi->rx_rings) {
2560                 ice_for_each_rxq(vsi, i) {
2561                         if (vsi->rx_rings[i]) {
2562                                 u16 reg;
2563
2564                                 reg = vsi->rx_rings[i]->reg_idx;
2565                                 val = rd32(hw, QINT_RQCTL(reg));
2566                                 val &= ~QINT_RQCTL_CAUSE_ENA_M;
2567                                 wr32(hw, QINT_RQCTL(reg), val);
2568                         }
2569                 }
2570         }
2571
2572         /* disable each interrupt */
2573         ice_for_each_q_vector(vsi, i) {
2574                 if (!vsi->q_vectors[i])
2575                         continue;
2576                 wr32(hw, GLINT_DYN_CTL(vsi->q_vectors[i]->reg_idx), 0);
2577         }
2578
2579         ice_flush(hw);
2580
2581         /* don't call synchronize_irq() for VF's from the host */
2582         if (vsi->type == ICE_VSI_VF)
2583                 return;
2584
2585         ice_for_each_q_vector(vsi, i)
2586                 synchronize_irq(pf->msix_entries[i + base].vector);
2587 }
2588
2589 /**
2590  * ice_napi_del - Remove NAPI handler for the VSI
2591  * @vsi: VSI for which NAPI handler is to be removed
2592  */
2593 void ice_napi_del(struct ice_vsi *vsi)
2594 {
2595         int v_idx;
2596
2597         if (!vsi->netdev)
2598                 return;
2599
2600         ice_for_each_q_vector(vsi, v_idx)
2601                 netif_napi_del(&vsi->q_vectors[v_idx]->napi);
2602 }
2603
2604 /**
2605  * ice_vsi_release - Delete a VSI and free its resources
2606  * @vsi: the VSI being removed
2607  *
2608  * Returns 0 on success or < 0 on error
2609  */
2610 int ice_vsi_release(struct ice_vsi *vsi)
2611 {
2612         struct ice_pf *pf;
2613
2614         if (!vsi->back)
2615                 return -ENODEV;
2616         pf = vsi->back;
2617
2618         /* do not unregister while driver is in the reset recovery pending
2619          * state. Since reset/rebuild happens through PF service task workqueue,
2620          * it's not a good idea to unregister netdev that is associated to the
2621          * PF that is running the work queue items currently. This is done to
2622          * avoid check_flush_dependency() warning on this wq
2623          */
2624         if (vsi->netdev && !ice_is_reset_in_progress(pf->state)) {
2625                 unregister_netdev(vsi->netdev);
2626                 ice_devlink_destroy_port(vsi);
2627         }
2628
2629         if (test_bit(ICE_FLAG_RSS_ENA, pf->flags))
2630                 ice_rss_clean(vsi);
2631
2632         /* Disable VSI and free resources */
2633         if (vsi->type != ICE_VSI_LB)
2634                 ice_vsi_dis_irq(vsi);
2635         ice_vsi_close(vsi);
2636
2637         /* SR-IOV determines needed MSIX resources all at once instead of per
2638          * VSI since when VFs are spawned we know how many VFs there are and how
2639          * many interrupts each VF needs. SR-IOV MSIX resources are also
2640          * cleared in the same manner.
2641          */
2642         if (vsi->type != ICE_VSI_VF) {
2643                 /* reclaim SW interrupts back to the common pool */
2644                 ice_free_res(pf->irq_tracker, vsi->base_vector, vsi->idx);
2645                 pf->num_avail_sw_msix += vsi->num_q_vectors;
2646         }
2647
2648         if (!ice_is_safe_mode(pf)) {
2649                 if (vsi->type == ICE_VSI_PF) {
2650                         ice_fltr_remove_eth(vsi, ETH_P_PAUSE, ICE_FLTR_TX,
2651                                             ICE_DROP_PACKET);
2652                         ice_cfg_sw_lldp(vsi, true, false);
2653                         /* The Rx rule will only exist to remove if the LLDP FW
2654                          * engine is currently stopped
2655                          */
2656                         if (!test_bit(ICE_FLAG_FW_LLDP_AGENT, pf->flags))
2657                                 ice_cfg_sw_lldp(vsi, false, false);
2658                 }
2659         }
2660
2661         ice_fltr_remove_all(vsi);
2662         ice_rm_vsi_lan_cfg(vsi->port_info, vsi->idx);
2663         ice_vsi_delete(vsi);
2664         ice_vsi_free_q_vectors(vsi);
2665
2666         /* make sure unregister_netdev() was called by checking __ICE_DOWN */
2667         if (vsi->netdev && test_bit(__ICE_DOWN, vsi->state)) {
2668                 free_netdev(vsi->netdev);
2669                 vsi->netdev = NULL;
2670         }
2671
2672         ice_vsi_clear_rings(vsi);
2673
2674         ice_vsi_put_qs(vsi);
2675
2676         /* retain SW VSI data structure since it is needed to unregister and
2677          * free VSI netdev when PF is not in reset recovery pending state,\
2678          * for ex: during rmmod.
2679          */
2680         if (!ice_is_reset_in_progress(pf->state))
2681                 ice_vsi_clear(vsi);
2682
2683         return 0;
2684 }
2685
2686 /**
2687  * ice_vsi_rebuild_update_coalesce - set coalesce for a q_vector
2688  * @q_vector: pointer to q_vector which is being updated
2689  * @coalesce: pointer to array of struct with stored coalesce
2690  *
2691  * Set coalesce param in q_vector and update these parameters in HW.
2692  */
2693 static void
2694 ice_vsi_rebuild_update_coalesce(struct ice_q_vector *q_vector,
2695                                 struct ice_coalesce_stored *coalesce)
2696 {
2697         struct ice_ring_container *rx_rc = &q_vector->rx;
2698         struct ice_ring_container *tx_rc = &q_vector->tx;
2699         struct ice_hw *hw = &q_vector->vsi->back->hw;
2700
2701         tx_rc->itr_setting = coalesce->itr_tx;
2702         rx_rc->itr_setting = coalesce->itr_rx;
2703
2704         /* dynamic ITR values will be updated during Tx/Rx */
2705         if (!ITR_IS_DYNAMIC(tx_rc->itr_setting))
2706                 wr32(hw, GLINT_ITR(tx_rc->itr_idx, q_vector->reg_idx),
2707                      ITR_REG_ALIGN(tx_rc->itr_setting) >>
2708                      ICE_ITR_GRAN_S);
2709         if (!ITR_IS_DYNAMIC(rx_rc->itr_setting))
2710                 wr32(hw, GLINT_ITR(rx_rc->itr_idx, q_vector->reg_idx),
2711                      ITR_REG_ALIGN(rx_rc->itr_setting) >>
2712                      ICE_ITR_GRAN_S);
2713
2714         q_vector->intrl = coalesce->intrl;
2715         wr32(hw, GLINT_RATE(q_vector->reg_idx),
2716              ice_intrl_usec_to_reg(q_vector->intrl, hw->intrl_gran));
2717 }
2718
2719 /**
2720  * ice_vsi_rebuild_get_coalesce - get coalesce from all q_vectors
2721  * @vsi: VSI connected with q_vectors
2722  * @coalesce: array of struct with stored coalesce
2723  *
2724  * Returns array size.
2725  */
2726 static int
2727 ice_vsi_rebuild_get_coalesce(struct ice_vsi *vsi,
2728                              struct ice_coalesce_stored *coalesce)
2729 {
2730         int i;
2731
2732         ice_for_each_q_vector(vsi, i) {
2733                 struct ice_q_vector *q_vector = vsi->q_vectors[i];
2734
2735                 coalesce[i].itr_tx = q_vector->tx.itr_setting;
2736                 coalesce[i].itr_rx = q_vector->rx.itr_setting;
2737                 coalesce[i].intrl = q_vector->intrl;
2738         }
2739
2740         return vsi->num_q_vectors;
2741 }
2742
2743 /**
2744  * ice_vsi_rebuild_set_coalesce - set coalesce from earlier saved arrays
2745  * @vsi: VSI connected with q_vectors
2746  * @coalesce: pointer to array of struct with stored coalesce
2747  * @size: size of coalesce array
2748  *
2749  * Before this function, ice_vsi_rebuild_get_coalesce should be called to save
2750  * ITR params in arrays. If size is 0 or coalesce wasn't stored set coalesce
2751  * to default value.
2752  */
2753 static void
2754 ice_vsi_rebuild_set_coalesce(struct ice_vsi *vsi,
2755                              struct ice_coalesce_stored *coalesce, int size)
2756 {
2757         int i;
2758
2759         if ((size && !coalesce) || !vsi)
2760                 return;
2761
2762         for (i = 0; i < size && i < vsi->num_q_vectors; i++)
2763                 ice_vsi_rebuild_update_coalesce(vsi->q_vectors[i],
2764                                                 &coalesce[i]);
2765
2766         /* number of q_vectors increased, so assume coalesce settings were
2767          * changed globally (i.e. ethtool -C eth0 instead of per-queue) and use
2768          * the previous settings from q_vector 0 for all of the new q_vectors
2769          */
2770         for (; i < vsi->num_q_vectors; i++)
2771                 ice_vsi_rebuild_update_coalesce(vsi->q_vectors[i],
2772                                                 &coalesce[0]);
2773 }
2774
2775 /**
2776  * ice_vsi_rebuild - Rebuild VSI after reset
2777  * @vsi: VSI to be rebuild
2778  * @init_vsi: is this an initialization or a reconfigure of the VSI
2779  *
2780  * Returns 0 on success and negative value on failure
2781  */
2782 int ice_vsi_rebuild(struct ice_vsi *vsi, bool init_vsi)
2783 {
2784         u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2785         struct ice_coalesce_stored *coalesce;
2786         int prev_num_q_vectors = 0;
2787         struct ice_vf *vf = NULL;
2788         enum ice_status status;
2789         struct ice_pf *pf;
2790         int ret, i;
2791
2792         if (!vsi)
2793                 return -EINVAL;
2794
2795         pf = vsi->back;
2796         if (vsi->type == ICE_VSI_VF)
2797                 vf = &pf->vf[vsi->vf_id];
2798
2799         coalesce = kcalloc(vsi->num_q_vectors,
2800                            sizeof(struct ice_coalesce_stored), GFP_KERNEL);
2801         if (coalesce)
2802                 prev_num_q_vectors = ice_vsi_rebuild_get_coalesce(vsi,
2803                                                                   coalesce);
2804         ice_rm_vsi_lan_cfg(vsi->port_info, vsi->idx);
2805         ice_vsi_free_q_vectors(vsi);
2806
2807         /* SR-IOV determines needed MSIX resources all at once instead of per
2808          * VSI since when VFs are spawned we know how many VFs there are and how
2809          * many interrupts each VF needs. SR-IOV MSIX resources are also
2810          * cleared in the same manner.
2811          */
2812         if (vsi->type != ICE_VSI_VF) {
2813                 /* reclaim SW interrupts back to the common pool */
2814                 ice_free_res(pf->irq_tracker, vsi->base_vector, vsi->idx);
2815                 pf->num_avail_sw_msix += vsi->num_q_vectors;
2816                 vsi->base_vector = 0;
2817         }
2818
2819         if (ice_is_xdp_ena_vsi(vsi))
2820                 /* return value check can be skipped here, it always returns
2821                  * 0 if reset is in progress
2822                  */
2823                 ice_destroy_xdp_rings(vsi);
2824         ice_vsi_put_qs(vsi);
2825         ice_vsi_clear_rings(vsi);
2826         ice_vsi_free_arrays(vsi);
2827         if (vsi->type == ICE_VSI_VF)
2828                 ice_vsi_set_num_qs(vsi, vf->vf_id);
2829         else
2830                 ice_vsi_set_num_qs(vsi, ICE_INVAL_VFID);
2831
2832         ret = ice_vsi_alloc_arrays(vsi);
2833         if (ret < 0)
2834                 goto err_vsi;
2835
2836         ice_vsi_get_qs(vsi);
2837
2838         ice_alloc_fd_res(vsi);
2839         ice_vsi_set_tc_cfg(vsi);
2840
2841         /* Initialize VSI struct elements and create VSI in FW */
2842         ret = ice_vsi_init(vsi, init_vsi);
2843         if (ret < 0)
2844                 goto err_vsi;
2845
2846         switch (vsi->type) {
2847         case ICE_VSI_CTRL:
2848         case ICE_VSI_PF:
2849                 ret = ice_vsi_alloc_q_vectors(vsi);
2850                 if (ret)
2851                         goto err_rings;
2852
2853                 ret = ice_vsi_setup_vector_base(vsi);
2854                 if (ret)
2855                         goto err_vectors;
2856
2857                 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2858                 if (ret)
2859                         goto err_vectors;
2860
2861                 ret = ice_vsi_alloc_rings(vsi);
2862                 if (ret)
2863                         goto err_vectors;
2864
2865                 ice_vsi_map_rings_to_vectors(vsi);
2866                 if (ice_is_xdp_ena_vsi(vsi)) {
2867                         vsi->num_xdp_txq = vsi->alloc_rxq;
2868                         ret = ice_prepare_xdp_rings(vsi, vsi->xdp_prog);
2869                         if (ret)
2870                                 goto err_vectors;
2871                 }
2872                 /* ICE_VSI_CTRL does not need RSS so skip RSS processing */
2873                 if (vsi->type != ICE_VSI_CTRL)
2874                         /* Do not exit if configuring RSS had an issue, at
2875                          * least receive traffic on first queue. Hence no
2876                          * need to capture return value
2877                          */
2878                         if (test_bit(ICE_FLAG_RSS_ENA, pf->flags))
2879                                 ice_vsi_cfg_rss_lut_key(vsi);
2880                 break;
2881         case ICE_VSI_VF:
2882                 ret = ice_vsi_alloc_q_vectors(vsi);
2883                 if (ret)
2884                         goto err_rings;
2885
2886                 ret = ice_vsi_set_q_vectors_reg_idx(vsi);
2887                 if (ret)
2888                         goto err_vectors;
2889
2890                 ret = ice_vsi_alloc_rings(vsi);
2891                 if (ret)
2892                         goto err_vectors;
2893
2894                 break;
2895         default:
2896                 break;
2897         }
2898
2899         /* configure VSI nodes based on number of queues and TC's */
2900         for (i = 0; i < vsi->tc_cfg.numtc; i++) {
2901                 max_txqs[i] = vsi->alloc_txq;
2902
2903                 if (ice_is_xdp_ena_vsi(vsi))
2904                         max_txqs[i] += vsi->num_xdp_txq;
2905         }
2906
2907         status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
2908                                  max_txqs);
2909         if (status) {
2910                 dev_err(ice_pf_to_dev(pf), "VSI %d failed lan queue config, error %s\n",
2911                         vsi->vsi_num, ice_stat_str(status));
2912                 if (init_vsi) {
2913                         ret = -EIO;
2914                         goto err_vectors;
2915                 } else {
2916                         return ice_schedule_reset(pf, ICE_RESET_PFR);
2917                 }
2918         }
2919         ice_vsi_rebuild_set_coalesce(vsi, coalesce, prev_num_q_vectors);
2920         kfree(coalesce);
2921
2922         return 0;
2923
2924 err_vectors:
2925         ice_vsi_free_q_vectors(vsi);
2926 err_rings:
2927         if (vsi->netdev) {
2928                 vsi->current_netdev_flags = 0;
2929                 unregister_netdev(vsi->netdev);
2930                 free_netdev(vsi->netdev);
2931                 vsi->netdev = NULL;
2932         }
2933 err_vsi:
2934         ice_vsi_clear(vsi);
2935         set_bit(__ICE_RESET_FAILED, pf->state);
2936         kfree(coalesce);
2937         return ret;
2938 }
2939
2940 /**
2941  * ice_is_reset_in_progress - check for a reset in progress
2942  * @state: PF state field
2943  */
2944 bool ice_is_reset_in_progress(unsigned long *state)
2945 {
2946         return test_bit(__ICE_RESET_OICR_RECV, state) ||
2947                test_bit(__ICE_DCBNL_DEVRESET, state) ||
2948                test_bit(__ICE_PFR_REQ, state) ||
2949                test_bit(__ICE_CORER_REQ, state) ||
2950                test_bit(__ICE_GLOBR_REQ, state);
2951 }
2952
2953 #ifdef CONFIG_DCB
2954 /**
2955  * ice_vsi_update_q_map - update our copy of the VSI info with new queue map
2956  * @vsi: VSI being configured
2957  * @ctx: the context buffer returned from AQ VSI update command
2958  */
2959 static void ice_vsi_update_q_map(struct ice_vsi *vsi, struct ice_vsi_ctx *ctx)
2960 {
2961         vsi->info.mapping_flags = ctx->info.mapping_flags;
2962         memcpy(&vsi->info.q_mapping, &ctx->info.q_mapping,
2963                sizeof(vsi->info.q_mapping));
2964         memcpy(&vsi->info.tc_mapping, ctx->info.tc_mapping,
2965                sizeof(vsi->info.tc_mapping));
2966 }
2967
2968 /**
2969  * ice_vsi_cfg_tc - Configure VSI Tx Sched for given TC map
2970  * @vsi: VSI to be configured
2971  * @ena_tc: TC bitmap
2972  *
2973  * VSI queues expected to be quiesced before calling this function
2974  */
2975 int ice_vsi_cfg_tc(struct ice_vsi *vsi, u8 ena_tc)
2976 {
2977         u16 max_txqs[ICE_MAX_TRAFFIC_CLASS] = { 0 };
2978         struct ice_pf *pf = vsi->back;
2979         struct ice_vsi_ctx *ctx;
2980         enum ice_status status;
2981         struct device *dev;
2982         int i, ret = 0;
2983         u8 num_tc = 0;
2984
2985         dev = ice_pf_to_dev(pf);
2986
2987         ice_for_each_traffic_class(i) {
2988                 /* build bitmap of enabled TCs */
2989                 if (ena_tc & BIT(i))
2990                         num_tc++;
2991                 /* populate max_txqs per TC */
2992                 max_txqs[i] = vsi->alloc_txq;
2993         }
2994
2995         vsi->tc_cfg.ena_tc = ena_tc;
2996         vsi->tc_cfg.numtc = num_tc;
2997
2998         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2999         if (!ctx)
3000                 return -ENOMEM;
3001
3002         ctx->vf_num = 0;
3003         ctx->info = vsi->info;
3004
3005         ice_vsi_setup_q_map(vsi, ctx);
3006
3007         /* must to indicate which section of VSI context are being modified */
3008         ctx->info.valid_sections = cpu_to_le16(ICE_AQ_VSI_PROP_RXQ_MAP_VALID);
3009         status = ice_update_vsi(&pf->hw, vsi->idx, ctx, NULL);
3010         if (status) {
3011                 dev_info(dev, "Failed VSI Update\n");
3012                 ret = -EIO;
3013                 goto out;
3014         }
3015
3016         status = ice_cfg_vsi_lan(vsi->port_info, vsi->idx, vsi->tc_cfg.ena_tc,
3017                                  max_txqs);
3018
3019         if (status) {
3020                 dev_err(dev, "VSI %d failed TC config, error %s\n",
3021                         vsi->vsi_num, ice_stat_str(status));
3022                 ret = -EIO;
3023                 goto out;
3024         }
3025         ice_vsi_update_q_map(vsi, ctx);
3026         vsi->info.valid_sections = 0;
3027
3028         ice_vsi_cfg_netdev_tc(vsi, ena_tc);
3029 out:
3030         kfree(ctx);
3031         return ret;
3032 }
3033 #endif /* CONFIG_DCB */
3034
3035 /**
3036  * ice_update_ring_stats - Update ring statistics
3037  * @ring: ring to update
3038  * @cont: used to increment per-vector counters
3039  * @pkts: number of processed packets
3040  * @bytes: number of processed bytes
3041  *
3042  * This function assumes that caller has acquired a u64_stats_sync lock.
3043  */
3044 static void
3045 ice_update_ring_stats(struct ice_ring *ring, struct ice_ring_container *cont,
3046                       u64 pkts, u64 bytes)
3047 {
3048         ring->stats.bytes += bytes;
3049         ring->stats.pkts += pkts;
3050         cont->total_bytes += bytes;
3051         cont->total_pkts += pkts;
3052 }
3053
3054 /**
3055  * ice_update_tx_ring_stats - Update Tx ring specific counters
3056  * @tx_ring: ring to update
3057  * @pkts: number of processed packets
3058  * @bytes: number of processed bytes
3059  */
3060 void ice_update_tx_ring_stats(struct ice_ring *tx_ring, u64 pkts, u64 bytes)
3061 {
3062         u64_stats_update_begin(&tx_ring->syncp);
3063         ice_update_ring_stats(tx_ring, &tx_ring->q_vector->tx, pkts, bytes);
3064         u64_stats_update_end(&tx_ring->syncp);
3065 }
3066
3067 /**
3068  * ice_update_rx_ring_stats - Update Rx ring specific counters
3069  * @rx_ring: ring to update
3070  * @pkts: number of processed packets
3071  * @bytes: number of processed bytes
3072  */
3073 void ice_update_rx_ring_stats(struct ice_ring *rx_ring, u64 pkts, u64 bytes)
3074 {
3075         u64_stats_update_begin(&rx_ring->syncp);
3076         ice_update_ring_stats(rx_ring, &rx_ring->q_vector->rx, pkts, bytes);
3077         u64_stats_update_end(&rx_ring->syncp);
3078 }
3079
3080 /**
3081  * ice_status_to_errno - convert from enum ice_status to Linux errno
3082  * @err: ice_status value to convert
3083  */
3084 int ice_status_to_errno(enum ice_status err)
3085 {
3086         switch (err) {
3087         case ICE_SUCCESS:
3088                 return 0;
3089         case ICE_ERR_DOES_NOT_EXIST:
3090                 return -ENOENT;
3091         case ICE_ERR_OUT_OF_RANGE:
3092                 return -ENOTTY;
3093         case ICE_ERR_PARAM:
3094                 return -EINVAL;
3095         case ICE_ERR_NO_MEMORY:
3096                 return -ENOMEM;
3097         case ICE_ERR_MAX_LIMIT:
3098                 return -EAGAIN;
3099         default:
3100                 return -EINVAL;
3101         }
3102 }
3103
3104 /**
3105  * ice_is_dflt_vsi_in_use - check if the default forwarding VSI is being used
3106  * @sw: switch to check if its default forwarding VSI is free
3107  *
3108  * Return true if the default forwarding VSI is already being used, else returns
3109  * false signalling that it's available to use.
3110  */
3111 bool ice_is_dflt_vsi_in_use(struct ice_sw *sw)
3112 {
3113         return (sw->dflt_vsi && sw->dflt_vsi_ena);
3114 }
3115
3116 /**
3117  * ice_is_vsi_dflt_vsi - check if the VSI passed in is the default VSI
3118  * @sw: switch for the default forwarding VSI to compare against
3119  * @vsi: VSI to compare against default forwarding VSI
3120  *
3121  * If this VSI passed in is the default forwarding VSI then return true, else
3122  * return false
3123  */
3124 bool ice_is_vsi_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi)
3125 {
3126         return (sw->dflt_vsi == vsi && sw->dflt_vsi_ena);
3127 }
3128
3129 /**
3130  * ice_set_dflt_vsi - set the default forwarding VSI
3131  * @sw: switch used to assign the default forwarding VSI
3132  * @vsi: VSI getting set as the default forwarding VSI on the switch
3133  *
3134  * If the VSI passed in is already the default VSI and it's enabled just return
3135  * success.
3136  *
3137  * If there is already a default VSI on the switch and it's enabled then return
3138  * -EEXIST since there can only be one default VSI per switch.
3139  *
3140  *  Otherwise try to set the VSI passed in as the switch's default VSI and
3141  *  return the result.
3142  */
3143 int ice_set_dflt_vsi(struct ice_sw *sw, struct ice_vsi *vsi)
3144 {
3145         enum ice_status status;
3146         struct device *dev;
3147
3148         if (!sw || !vsi)
3149                 return -EINVAL;
3150
3151         dev = ice_pf_to_dev(vsi->back);
3152
3153         /* the VSI passed in is already the default VSI */
3154         if (ice_is_vsi_dflt_vsi(sw, vsi)) {
3155                 dev_dbg(dev, "VSI %d passed in is already the default forwarding VSI, nothing to do\n",
3156                         vsi->vsi_num);
3157                 return 0;
3158         }
3159
3160         /* another VSI is already the default VSI for this switch */
3161         if (ice_is_dflt_vsi_in_use(sw)) {
3162                 dev_err(dev, "Default forwarding VSI %d already in use, disable it and try again\n",
3163                         sw->dflt_vsi->vsi_num);
3164                 return -EEXIST;
3165         }
3166
3167         status = ice_cfg_dflt_vsi(&vsi->back->hw, vsi->idx, true, ICE_FLTR_RX);
3168         if (status) {
3169                 dev_err(dev, "Failed to set VSI %d as the default forwarding VSI, error %s\n",
3170                         vsi->vsi_num, ice_stat_str(status));
3171                 return -EIO;
3172         }
3173
3174         sw->dflt_vsi = vsi;
3175         sw->dflt_vsi_ena = true;
3176
3177         return 0;
3178 }
3179
3180 /**
3181  * ice_clear_dflt_vsi - clear the default forwarding VSI
3182  * @sw: switch used to clear the default VSI
3183  *
3184  * If the switch has no default VSI or it's not enabled then return error.
3185  *
3186  * Otherwise try to clear the default VSI and return the result.
3187  */
3188 int ice_clear_dflt_vsi(struct ice_sw *sw)
3189 {
3190         struct ice_vsi *dflt_vsi;
3191         enum ice_status status;
3192         struct device *dev;
3193
3194         if (!sw)
3195                 return -EINVAL;
3196
3197         dev = ice_pf_to_dev(sw->pf);
3198
3199         dflt_vsi = sw->dflt_vsi;
3200
3201         /* there is no default VSI configured */
3202         if (!ice_is_dflt_vsi_in_use(sw))
3203                 return -ENODEV;
3204
3205         status = ice_cfg_dflt_vsi(&dflt_vsi->back->hw, dflt_vsi->idx, false,
3206                                   ICE_FLTR_RX);
3207         if (status) {
3208                 dev_err(dev, "Failed to clear the default forwarding VSI %d, error %s\n",
3209                         dflt_vsi->vsi_num, ice_stat_str(status));
3210                 return -EIO;
3211         }
3212
3213         sw->dflt_vsi = NULL;
3214         sw->dflt_vsi_ena = false;
3215
3216         return 0;
3217 }