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