ice: Add hot path support for 802.1Q and 802.1ad VLAN offloads
[platform/kernel/linux-starfive.git] / drivers / net / ethernet / intel / ice / ice_base.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2019, Intel Corporation. */
3
4 #include <net/xdp_sock_drv.h>
5 #include "ice_base.h"
6 #include "ice_lib.h"
7 #include "ice_dcb_lib.h"
8
9 static bool ice_alloc_rx_buf_zc(struct ice_rx_ring *rx_ring)
10 {
11         rx_ring->xdp_buf = kcalloc(rx_ring->count, sizeof(*rx_ring->xdp_buf), GFP_KERNEL);
12         return !!rx_ring->xdp_buf;
13 }
14
15 static bool ice_alloc_rx_buf(struct ice_rx_ring *rx_ring)
16 {
17         rx_ring->rx_buf = kcalloc(rx_ring->count, sizeof(*rx_ring->rx_buf), GFP_KERNEL);
18         return !!rx_ring->rx_buf;
19 }
20
21 /**
22  * __ice_vsi_get_qs_contig - Assign a contiguous chunk of queues to VSI
23  * @qs_cfg: gathered variables needed for PF->VSI queues assignment
24  *
25  * Return 0 on success and -ENOMEM in case of no left space in PF queue bitmap
26  */
27 static int __ice_vsi_get_qs_contig(struct ice_qs_cfg *qs_cfg)
28 {
29         unsigned int offset, i;
30
31         mutex_lock(qs_cfg->qs_mutex);
32         offset = bitmap_find_next_zero_area(qs_cfg->pf_map, qs_cfg->pf_map_size,
33                                             0, qs_cfg->q_count, 0);
34         if (offset >= qs_cfg->pf_map_size) {
35                 mutex_unlock(qs_cfg->qs_mutex);
36                 return -ENOMEM;
37         }
38
39         bitmap_set(qs_cfg->pf_map, offset, qs_cfg->q_count);
40         for (i = 0; i < qs_cfg->q_count; i++)
41                 qs_cfg->vsi_map[i + qs_cfg->vsi_map_offset] = (u16)(i + offset);
42         mutex_unlock(qs_cfg->qs_mutex);
43
44         return 0;
45 }
46
47 /**
48  * __ice_vsi_get_qs_sc - Assign a scattered queues from PF to VSI
49  * @qs_cfg: gathered variables needed for pf->vsi queues assignment
50  *
51  * Return 0 on success and -ENOMEM in case of no left space in PF queue bitmap
52  */
53 static int __ice_vsi_get_qs_sc(struct ice_qs_cfg *qs_cfg)
54 {
55         unsigned int i, index = 0;
56
57         mutex_lock(qs_cfg->qs_mutex);
58         for (i = 0; i < qs_cfg->q_count; i++) {
59                 index = find_next_zero_bit(qs_cfg->pf_map,
60                                            qs_cfg->pf_map_size, index);
61                 if (index >= qs_cfg->pf_map_size)
62                         goto err_scatter;
63                 set_bit(index, qs_cfg->pf_map);
64                 qs_cfg->vsi_map[i + qs_cfg->vsi_map_offset] = (u16)index;
65         }
66         mutex_unlock(qs_cfg->qs_mutex);
67
68         return 0;
69 err_scatter:
70         for (index = 0; index < i; index++) {
71                 clear_bit(qs_cfg->vsi_map[index], qs_cfg->pf_map);
72                 qs_cfg->vsi_map[index + qs_cfg->vsi_map_offset] = 0;
73         }
74         mutex_unlock(qs_cfg->qs_mutex);
75
76         return -ENOMEM;
77 }
78
79 /**
80  * ice_pf_rxq_wait - Wait for a PF's Rx queue to be enabled or disabled
81  * @pf: the PF being configured
82  * @pf_q: the PF queue
83  * @ena: enable or disable state of the queue
84  *
85  * This routine will wait for the given Rx queue of the PF to reach the
86  * enabled or disabled state.
87  * Returns -ETIMEDOUT in case of failing to reach the requested state after
88  * multiple retries; else will return 0 in case of success.
89  */
90 static int ice_pf_rxq_wait(struct ice_pf *pf, int pf_q, bool ena)
91 {
92         int i;
93
94         for (i = 0; i < ICE_Q_WAIT_MAX_RETRY; i++) {
95                 if (ena == !!(rd32(&pf->hw, QRX_CTRL(pf_q)) &
96                               QRX_CTRL_QENA_STAT_M))
97                         return 0;
98
99                 usleep_range(20, 40);
100         }
101
102         return -ETIMEDOUT;
103 }
104
105 /**
106  * ice_vsi_alloc_q_vector - Allocate memory for a single interrupt vector
107  * @vsi: the VSI being configured
108  * @v_idx: index of the vector in the VSI struct
109  *
110  * We allocate one q_vector and set default value for ITR setting associated
111  * with this q_vector. If allocation fails we return -ENOMEM.
112  */
113 static int ice_vsi_alloc_q_vector(struct ice_vsi *vsi, u16 v_idx)
114 {
115         struct ice_pf *pf = vsi->back;
116         struct ice_q_vector *q_vector;
117
118         /* allocate q_vector */
119         q_vector = devm_kzalloc(ice_pf_to_dev(pf), sizeof(*q_vector),
120                                 GFP_KERNEL);
121         if (!q_vector)
122                 return -ENOMEM;
123
124         q_vector->vsi = vsi;
125         q_vector->v_idx = v_idx;
126         q_vector->tx.itr_setting = ICE_DFLT_TX_ITR;
127         q_vector->rx.itr_setting = ICE_DFLT_RX_ITR;
128         q_vector->tx.itr_mode = ITR_DYNAMIC;
129         q_vector->rx.itr_mode = ITR_DYNAMIC;
130         q_vector->tx.type = ICE_TX_CONTAINER;
131         q_vector->rx.type = ICE_RX_CONTAINER;
132
133         if (vsi->type == ICE_VSI_VF)
134                 goto out;
135         /* only set affinity_mask if the CPU is online */
136         if (cpu_online(v_idx))
137                 cpumask_set_cpu(v_idx, &q_vector->affinity_mask);
138
139         /* This will not be called in the driver load path because the netdev
140          * will not be created yet. All other cases with register the NAPI
141          * handler here (i.e. resume, reset/rebuild, etc.)
142          */
143         if (vsi->netdev)
144                 netif_napi_add(vsi->netdev, &q_vector->napi, ice_napi_poll,
145                                NAPI_POLL_WEIGHT);
146
147 out:
148         /* tie q_vector and VSI together */
149         vsi->q_vectors[v_idx] = q_vector;
150
151         return 0;
152 }
153
154 /**
155  * ice_free_q_vector - Free memory allocated for a specific interrupt vector
156  * @vsi: VSI having the memory freed
157  * @v_idx: index of the vector to be freed
158  */
159 static void ice_free_q_vector(struct ice_vsi *vsi, int v_idx)
160 {
161         struct ice_q_vector *q_vector;
162         struct ice_pf *pf = vsi->back;
163         struct ice_tx_ring *tx_ring;
164         struct ice_rx_ring *rx_ring;
165         struct device *dev;
166
167         dev = ice_pf_to_dev(pf);
168         if (!vsi->q_vectors[v_idx]) {
169                 dev_dbg(dev, "Queue vector at index %d not found\n", v_idx);
170                 return;
171         }
172         q_vector = vsi->q_vectors[v_idx];
173
174         ice_for_each_tx_ring(tx_ring, q_vector->tx)
175                 tx_ring->q_vector = NULL;
176         ice_for_each_rx_ring(rx_ring, q_vector->rx)
177                 rx_ring->q_vector = NULL;
178
179         /* only VSI with an associated netdev is set up with NAPI */
180         if (vsi->netdev)
181                 netif_napi_del(&q_vector->napi);
182
183         devm_kfree(dev, q_vector);
184         vsi->q_vectors[v_idx] = NULL;
185 }
186
187 /**
188  * ice_cfg_itr_gran - set the ITR granularity to 2 usecs if not already set
189  * @hw: board specific structure
190  */
191 static void ice_cfg_itr_gran(struct ice_hw *hw)
192 {
193         u32 regval = rd32(hw, GLINT_CTL);
194
195         /* no need to update global register if ITR gran is already set */
196         if (!(regval & GLINT_CTL_DIS_AUTOMASK_M) &&
197             (((regval & GLINT_CTL_ITR_GRAN_200_M) >>
198              GLINT_CTL_ITR_GRAN_200_S) == ICE_ITR_GRAN_US) &&
199             (((regval & GLINT_CTL_ITR_GRAN_100_M) >>
200              GLINT_CTL_ITR_GRAN_100_S) == ICE_ITR_GRAN_US) &&
201             (((regval & GLINT_CTL_ITR_GRAN_50_M) >>
202              GLINT_CTL_ITR_GRAN_50_S) == ICE_ITR_GRAN_US) &&
203             (((regval & GLINT_CTL_ITR_GRAN_25_M) >>
204               GLINT_CTL_ITR_GRAN_25_S) == ICE_ITR_GRAN_US))
205                 return;
206
207         regval = ((ICE_ITR_GRAN_US << GLINT_CTL_ITR_GRAN_200_S) &
208                   GLINT_CTL_ITR_GRAN_200_M) |
209                  ((ICE_ITR_GRAN_US << GLINT_CTL_ITR_GRAN_100_S) &
210                   GLINT_CTL_ITR_GRAN_100_M) |
211                  ((ICE_ITR_GRAN_US << GLINT_CTL_ITR_GRAN_50_S) &
212                   GLINT_CTL_ITR_GRAN_50_M) |
213                  ((ICE_ITR_GRAN_US << GLINT_CTL_ITR_GRAN_25_S) &
214                   GLINT_CTL_ITR_GRAN_25_M);
215         wr32(hw, GLINT_CTL, regval);
216 }
217
218 /**
219  * ice_calc_txq_handle - calculate the queue handle
220  * @vsi: VSI that ring belongs to
221  * @ring: ring to get the absolute queue index
222  * @tc: traffic class number
223  */
224 static u16 ice_calc_txq_handle(struct ice_vsi *vsi, struct ice_tx_ring *ring, u8 tc)
225 {
226         WARN_ONCE(ice_ring_is_xdp(ring) && tc, "XDP ring can't belong to TC other than 0\n");
227
228         if (ring->ch)
229                 return ring->q_index - ring->ch->base_q;
230
231         /* Idea here for calculation is that we subtract the number of queue
232          * count from TC that ring belongs to from it's absolute queue index
233          * and as a result we get the queue's index within TC.
234          */
235         return ring->q_index - vsi->tc_cfg.tc_info[tc].qoffset;
236 }
237
238 /**
239  * ice_eswitch_calc_txq_handle
240  * @ring: pointer to ring which unique index is needed
241  *
242  * To correctly work with many netdevs ring->q_index of Tx rings on switchdev
243  * VSI can repeat. Hardware ring setup requires unique q_index. Calculate it
244  * here by finding index in vsi->tx_rings of this ring.
245  *
246  * Return ICE_INVAL_Q_INDEX when index wasn't found. Should never happen,
247  * because VSI is get from ring->vsi, so it has to be present in this VSI.
248  */
249 static u16 ice_eswitch_calc_txq_handle(struct ice_tx_ring *ring)
250 {
251         struct ice_vsi *vsi = ring->vsi;
252         int i;
253
254         ice_for_each_txq(vsi, i) {
255                 if (vsi->tx_rings[i] == ring)
256                         return i;
257         }
258
259         return ICE_INVAL_Q_INDEX;
260 }
261
262 /**
263  * ice_cfg_xps_tx_ring - Configure XPS for a Tx ring
264  * @ring: The Tx ring to configure
265  *
266  * This enables/disables XPS for a given Tx descriptor ring
267  * based on the TCs enabled for the VSI that ring belongs to.
268  */
269 static void ice_cfg_xps_tx_ring(struct ice_tx_ring *ring)
270 {
271         if (!ring->q_vector || !ring->netdev)
272                 return;
273
274         /* We only initialize XPS once, so as not to overwrite user settings */
275         if (test_and_set_bit(ICE_TX_XPS_INIT_DONE, ring->xps_state))
276                 return;
277
278         netif_set_xps_queue(ring->netdev, &ring->q_vector->affinity_mask,
279                             ring->q_index);
280 }
281
282 /**
283  * ice_setup_tx_ctx - setup a struct ice_tlan_ctx instance
284  * @ring: The Tx ring to configure
285  * @tlan_ctx: Pointer to the Tx LAN queue context structure to be initialized
286  * @pf_q: queue index in the PF space
287  *
288  * Configure the Tx descriptor ring in TLAN context.
289  */
290 static void
291 ice_setup_tx_ctx(struct ice_tx_ring *ring, struct ice_tlan_ctx *tlan_ctx, u16 pf_q)
292 {
293         struct ice_vsi *vsi = ring->vsi;
294         struct ice_hw *hw = &vsi->back->hw;
295
296         tlan_ctx->base = ring->dma >> ICE_TLAN_CTX_BASE_S;
297
298         tlan_ctx->port_num = vsi->port_info->lport;
299
300         /* Transmit Queue Length */
301         tlan_ctx->qlen = ring->count;
302
303         ice_set_cgd_num(tlan_ctx, ring->dcb_tc);
304
305         /* PF number */
306         tlan_ctx->pf_num = hw->pf_id;
307
308         /* queue belongs to a specific VSI type
309          * VF / VM index should be programmed per vmvf_type setting:
310          * for vmvf_type = VF, it is VF number between 0-256
311          * for vmvf_type = VM, it is VM number between 0-767
312          * for PF or EMP this field should be set to zero
313          */
314         switch (vsi->type) {
315         case ICE_VSI_LB:
316         case ICE_VSI_CTRL:
317         case ICE_VSI_PF:
318                 if (ring->ch)
319                         tlan_ctx->vmvf_type = ICE_TLAN_CTX_VMVF_TYPE_VMQ;
320                 else
321                         tlan_ctx->vmvf_type = ICE_TLAN_CTX_VMVF_TYPE_PF;
322                 break;
323         case ICE_VSI_VF:
324                 /* Firmware expects vmvf_num to be absolute VF ID */
325                 tlan_ctx->vmvf_num = hw->func_caps.vf_base_id + vsi->vf_id;
326                 tlan_ctx->vmvf_type = ICE_TLAN_CTX_VMVF_TYPE_VF;
327                 break;
328         case ICE_VSI_SWITCHDEV_CTRL:
329                 tlan_ctx->vmvf_type = ICE_TLAN_CTX_VMVF_TYPE_VMQ;
330                 break;
331         default:
332                 return;
333         }
334
335         /* make sure the context is associated with the right VSI */
336         if (ring->ch)
337                 tlan_ctx->src_vsi = ring->ch->vsi_num;
338         else
339                 tlan_ctx->src_vsi = ice_get_hw_vsi_num(hw, vsi->idx);
340
341         /* Restrict Tx timestamps to the PF VSI */
342         switch (vsi->type) {
343         case ICE_VSI_PF:
344                 tlan_ctx->tsyn_ena = 1;
345                 break;
346         default:
347                 break;
348         }
349
350         tlan_ctx->tso_ena = ICE_TX_LEGACY;
351         tlan_ctx->tso_qnum = pf_q;
352
353         /* Legacy or Advanced Host Interface:
354          * 0: Advanced Host Interface
355          * 1: Legacy Host Interface
356          */
357         tlan_ctx->legacy_int = ICE_TX_LEGACY;
358 }
359
360 /**
361  * ice_rx_offset - Return expected offset into page to access data
362  * @rx_ring: Ring we are requesting offset of
363  *
364  * Returns the offset value for ring into the data buffer.
365  */
366 static unsigned int ice_rx_offset(struct ice_rx_ring *rx_ring)
367 {
368         if (ice_ring_uses_build_skb(rx_ring))
369                 return ICE_SKB_PAD;
370         else if (ice_is_xdp_ena_vsi(rx_ring->vsi))
371                 return XDP_PACKET_HEADROOM;
372
373         return 0;
374 }
375
376 /**
377  * ice_setup_rx_ctx - Configure a receive ring context
378  * @ring: The Rx ring to configure
379  *
380  * Configure the Rx descriptor ring in RLAN context.
381  */
382 static int ice_setup_rx_ctx(struct ice_rx_ring *ring)
383 {
384         int chain_len = ICE_MAX_CHAINED_RX_BUFS;
385         struct ice_vsi *vsi = ring->vsi;
386         u32 rxdid = ICE_RXDID_FLEX_NIC;
387         struct ice_rlan_ctx rlan_ctx;
388         struct ice_hw *hw;
389         u16 pf_q;
390         int err;
391
392         hw = &vsi->back->hw;
393
394         /* what is Rx queue number in global space of 2K Rx queues */
395         pf_q = vsi->rxq_map[ring->q_index];
396
397         /* clear the context structure first */
398         memset(&rlan_ctx, 0, sizeof(rlan_ctx));
399
400         /* Receive Queue Base Address.
401          * Indicates the starting address of the descriptor queue defined in
402          * 128 Byte units.
403          */
404         rlan_ctx.base = ring->dma >> 7;
405
406         rlan_ctx.qlen = ring->count;
407
408         /* Receive Packet Data Buffer Size.
409          * The Packet Data Buffer Size is defined in 128 byte units.
410          */
411         rlan_ctx.dbuf = ring->rx_buf_len >> ICE_RLAN_CTX_DBUF_S;
412
413         /* use 32 byte descriptors */
414         rlan_ctx.dsize = 1;
415
416         /* Strip the Ethernet CRC bytes before the packet is posted to host
417          * memory.
418          */
419         rlan_ctx.crcstrip = 1;
420
421         /* L2TSEL flag defines the reported L2 Tags in the receive descriptor
422          * and it needs to remain 1 for non-DVM capable configurations to not
423          * break backward compatibility for VF drivers. Setting this field to 0
424          * will cause the single/outer VLAN tag to be stripped to the L2TAG2_2ND
425          * field in the Rx descriptor. Setting it to 1 allows the VLAN tag to
426          * be stripped in L2TAG1 of the Rx descriptor, which is where VFs will
427          * check for the tag
428          */
429         if (ice_is_dvm_ena(hw))
430                 if (vsi->type == ICE_VSI_VF &&
431                     ice_vf_is_port_vlan_ena(&vsi->back->vf[vsi->vf_id]))
432                         rlan_ctx.l2tsel = 1;
433                 else
434                         rlan_ctx.l2tsel = 0;
435         else
436                 rlan_ctx.l2tsel = 1;
437
438         rlan_ctx.dtype = ICE_RX_DTYPE_NO_SPLIT;
439         rlan_ctx.hsplit_0 = ICE_RLAN_RX_HSPLIT_0_NO_SPLIT;
440         rlan_ctx.hsplit_1 = ICE_RLAN_RX_HSPLIT_1_NO_SPLIT;
441
442         /* This controls whether VLAN is stripped from inner headers
443          * The VLAN in the inner L2 header is stripped to the receive
444          * descriptor if enabled by this flag.
445          */
446         rlan_ctx.showiv = 0;
447
448         /* For AF_XDP ZC, we disallow packets to span on
449          * multiple buffers, thus letting us skip that
450          * handling in the fast-path.
451          */
452         if (ring->xsk_pool)
453                 chain_len = 1;
454         /* Max packet size for this queue - must not be set to a larger value
455          * than 5 x DBUF
456          */
457         rlan_ctx.rxmax = min_t(u32, vsi->max_frame,
458                                chain_len * ring->rx_buf_len);
459
460         /* Rx queue threshold in units of 64 */
461         rlan_ctx.lrxqthresh = 1;
462
463         /* Enable Flexible Descriptors in the queue context which
464          * allows this driver to select a specific receive descriptor format
465          * increasing context priority to pick up profile ID; default is 0x01;
466          * setting to 0x03 to ensure profile is programming if prev context is
467          * of same priority
468          */
469         if (vsi->type != ICE_VSI_VF)
470                 ice_write_qrxflxp_cntxt(hw, pf_q, rxdid, 0x3, true);
471         else
472                 ice_write_qrxflxp_cntxt(hw, pf_q, ICE_RXDID_LEGACY_1, 0x3,
473                                         false);
474
475         /* Absolute queue number out of 2K needs to be passed */
476         err = ice_write_rxq_ctx(hw, &rlan_ctx, pf_q);
477         if (err) {
478                 dev_err(ice_pf_to_dev(vsi->back), "Failed to set LAN Rx queue context for absolute Rx queue %d error: %d\n",
479                         pf_q, err);
480                 return -EIO;
481         }
482
483         if (vsi->type == ICE_VSI_VF)
484                 return 0;
485
486         /* configure Rx buffer alignment */
487         if (!vsi->netdev || test_bit(ICE_FLAG_LEGACY_RX, vsi->back->flags))
488                 ice_clear_ring_build_skb_ena(ring);
489         else
490                 ice_set_ring_build_skb_ena(ring);
491
492         ring->rx_offset = ice_rx_offset(ring);
493
494         /* init queue specific tail register */
495         ring->tail = hw->hw_addr + QRX_TAIL(pf_q);
496         writel(0, ring->tail);
497
498         return 0;
499 }
500
501 /**
502  * ice_vsi_cfg_rxq - Configure an Rx queue
503  * @ring: the ring being configured
504  *
505  * Return 0 on success and a negative value on error.
506  */
507 int ice_vsi_cfg_rxq(struct ice_rx_ring *ring)
508 {
509         struct device *dev = ice_pf_to_dev(ring->vsi->back);
510         u16 num_bufs = ICE_DESC_UNUSED(ring);
511         int err;
512
513         ring->rx_buf_len = ring->vsi->rx_buf_len;
514
515         if (ring->vsi->type == ICE_VSI_PF) {
516                 if (!xdp_rxq_info_is_reg(&ring->xdp_rxq))
517                         /* coverity[check_return] */
518                         xdp_rxq_info_reg(&ring->xdp_rxq, ring->netdev,
519                                          ring->q_index, ring->q_vector->napi.napi_id);
520
521                 kfree(ring->rx_buf);
522                 ring->xsk_pool = ice_xsk_pool(ring);
523                 if (ring->xsk_pool) {
524                         if (!ice_alloc_rx_buf_zc(ring))
525                                 return -ENOMEM;
526                         xdp_rxq_info_unreg_mem_model(&ring->xdp_rxq);
527
528                         ring->rx_buf_len =
529                                 xsk_pool_get_rx_frame_size(ring->xsk_pool);
530                         err = xdp_rxq_info_reg_mem_model(&ring->xdp_rxq,
531                                                          MEM_TYPE_XSK_BUFF_POOL,
532                                                          NULL);
533                         if (err)
534                                 return err;
535                         xsk_pool_set_rxq_info(ring->xsk_pool, &ring->xdp_rxq);
536
537                         dev_info(dev, "Registered XDP mem model MEM_TYPE_XSK_BUFF_POOL on Rx ring %d\n",
538                                  ring->q_index);
539                 } else {
540                         if (!ice_alloc_rx_buf(ring))
541                                 return -ENOMEM;
542                         if (!xdp_rxq_info_is_reg(&ring->xdp_rxq))
543                                 /* coverity[check_return] */
544                                 xdp_rxq_info_reg(&ring->xdp_rxq,
545                                                  ring->netdev,
546                                                  ring->q_index, ring->q_vector->napi.napi_id);
547
548                         err = xdp_rxq_info_reg_mem_model(&ring->xdp_rxq,
549                                                          MEM_TYPE_PAGE_SHARED,
550                                                          NULL);
551                         if (err)
552                                 return err;
553                 }
554         }
555
556         err = ice_setup_rx_ctx(ring);
557         if (err) {
558                 dev_err(dev, "ice_setup_rx_ctx failed for RxQ %d, err %d\n",
559                         ring->q_index, err);
560                 return err;
561         }
562
563         if (ring->xsk_pool) {
564                 bool ok;
565
566                 if (!xsk_buff_can_alloc(ring->xsk_pool, num_bufs)) {
567                         dev_warn(dev, "XSK buffer pool does not provide enough addresses to fill %d buffers on Rx ring %d\n",
568                                  num_bufs, ring->q_index);
569                         dev_warn(dev, "Change Rx ring/fill queue size to avoid performance issues\n");
570
571                         return 0;
572                 }
573
574                 ok = ice_alloc_rx_bufs_zc(ring, num_bufs);
575                 if (!ok) {
576                         u16 pf_q = ring->vsi->rxq_map[ring->q_index];
577
578                         dev_info(dev, "Failed to allocate some buffers on XSK buffer pool enabled Rx ring %d (pf_q %d)\n",
579                                  ring->q_index, pf_q);
580                 }
581
582                 return 0;
583         }
584
585         ice_alloc_rx_bufs(ring, num_bufs);
586
587         return 0;
588 }
589
590 /**
591  * __ice_vsi_get_qs - helper function for assigning queues from PF to VSI
592  * @qs_cfg: gathered variables needed for pf->vsi queues assignment
593  *
594  * This function first tries to find contiguous space. If it is not successful,
595  * it tries with the scatter approach.
596  *
597  * Return 0 on success and -ENOMEM in case of no left space in PF queue bitmap
598  */
599 int __ice_vsi_get_qs(struct ice_qs_cfg *qs_cfg)
600 {
601         int ret = 0;
602
603         ret = __ice_vsi_get_qs_contig(qs_cfg);
604         if (ret) {
605                 /* contig failed, so try with scatter approach */
606                 qs_cfg->mapping_mode = ICE_VSI_MAP_SCATTER;
607                 qs_cfg->q_count = min_t(unsigned int, qs_cfg->q_count,
608                                         qs_cfg->scatter_count);
609                 ret = __ice_vsi_get_qs_sc(qs_cfg);
610         }
611         return ret;
612 }
613
614 /**
615  * ice_vsi_ctrl_one_rx_ring - start/stop VSI's Rx ring with no busy wait
616  * @vsi: the VSI being configured
617  * @ena: start or stop the Rx ring
618  * @rxq_idx: 0-based Rx queue index for the VSI passed in
619  * @wait: wait or don't wait for configuration to finish in hardware
620  *
621  * Return 0 on success and negative on error.
622  */
623 int
624 ice_vsi_ctrl_one_rx_ring(struct ice_vsi *vsi, bool ena, u16 rxq_idx, bool wait)
625 {
626         int pf_q = vsi->rxq_map[rxq_idx];
627         struct ice_pf *pf = vsi->back;
628         struct ice_hw *hw = &pf->hw;
629         u32 rx_reg;
630
631         rx_reg = rd32(hw, QRX_CTRL(pf_q));
632
633         /* Skip if the queue is already in the requested state */
634         if (ena == !!(rx_reg & QRX_CTRL_QENA_STAT_M))
635                 return 0;
636
637         /* turn on/off the queue */
638         if (ena)
639                 rx_reg |= QRX_CTRL_QENA_REQ_M;
640         else
641                 rx_reg &= ~QRX_CTRL_QENA_REQ_M;
642         wr32(hw, QRX_CTRL(pf_q), rx_reg);
643
644         if (!wait)
645                 return 0;
646
647         ice_flush(hw);
648         return ice_pf_rxq_wait(pf, pf_q, ena);
649 }
650
651 /**
652  * ice_vsi_wait_one_rx_ring - wait for a VSI's Rx ring to be stopped/started
653  * @vsi: the VSI being configured
654  * @ena: true/false to verify Rx ring has been enabled/disabled respectively
655  * @rxq_idx: 0-based Rx queue index for the VSI passed in
656  *
657  * This routine will wait for the given Rx queue of the VSI to reach the
658  * enabled or disabled state. Returns -ETIMEDOUT in case of failing to reach
659  * the requested state after multiple retries; else will return 0 in case of
660  * success.
661  */
662 int ice_vsi_wait_one_rx_ring(struct ice_vsi *vsi, bool ena, u16 rxq_idx)
663 {
664         int pf_q = vsi->rxq_map[rxq_idx];
665         struct ice_pf *pf = vsi->back;
666
667         return ice_pf_rxq_wait(pf, pf_q, ena);
668 }
669
670 /**
671  * ice_vsi_alloc_q_vectors - Allocate memory for interrupt vectors
672  * @vsi: the VSI being configured
673  *
674  * We allocate one q_vector per queue interrupt. If allocation fails we
675  * return -ENOMEM.
676  */
677 int ice_vsi_alloc_q_vectors(struct ice_vsi *vsi)
678 {
679         struct device *dev = ice_pf_to_dev(vsi->back);
680         u16 v_idx;
681         int err;
682
683         if (vsi->q_vectors[0]) {
684                 dev_dbg(dev, "VSI %d has existing q_vectors\n", vsi->vsi_num);
685                 return -EEXIST;
686         }
687
688         for (v_idx = 0; v_idx < vsi->num_q_vectors; v_idx++) {
689                 err = ice_vsi_alloc_q_vector(vsi, v_idx);
690                 if (err)
691                         goto err_out;
692         }
693
694         return 0;
695
696 err_out:
697         while (v_idx--)
698                 ice_free_q_vector(vsi, v_idx);
699
700         dev_err(dev, "Failed to allocate %d q_vector for VSI %d, ret=%d\n",
701                 vsi->num_q_vectors, vsi->vsi_num, err);
702         vsi->num_q_vectors = 0;
703         return err;
704 }
705
706 /**
707  * ice_vsi_map_rings_to_vectors - Map VSI rings to interrupt vectors
708  * @vsi: the VSI being configured
709  *
710  * This function maps descriptor rings to the queue-specific vectors allotted
711  * through the MSI-X enabling code. On a constrained vector budget, we map Tx
712  * and Rx rings to the vector as "efficiently" as possible.
713  */
714 void ice_vsi_map_rings_to_vectors(struct ice_vsi *vsi)
715 {
716         int q_vectors = vsi->num_q_vectors;
717         u16 tx_rings_rem, rx_rings_rem;
718         int v_id;
719
720         /* initially assigning remaining rings count to VSIs num queue value */
721         tx_rings_rem = vsi->num_txq;
722         rx_rings_rem = vsi->num_rxq;
723
724         for (v_id = 0; v_id < q_vectors; v_id++) {
725                 struct ice_q_vector *q_vector = vsi->q_vectors[v_id];
726                 u8 tx_rings_per_v, rx_rings_per_v;
727                 u16 q_id, q_base;
728
729                 /* Tx rings mapping to vector */
730                 tx_rings_per_v = (u8)DIV_ROUND_UP(tx_rings_rem,
731                                                   q_vectors - v_id);
732                 q_vector->num_ring_tx = tx_rings_per_v;
733                 q_vector->tx.tx_ring = NULL;
734                 q_vector->tx.itr_idx = ICE_TX_ITR;
735                 q_base = vsi->num_txq - tx_rings_rem;
736
737                 for (q_id = q_base; q_id < (q_base + tx_rings_per_v); q_id++) {
738                         struct ice_tx_ring *tx_ring = vsi->tx_rings[q_id];
739
740                         tx_ring->q_vector = q_vector;
741                         tx_ring->next = q_vector->tx.tx_ring;
742                         q_vector->tx.tx_ring = tx_ring;
743                 }
744                 tx_rings_rem -= tx_rings_per_v;
745
746                 /* Rx rings mapping to vector */
747                 rx_rings_per_v = (u8)DIV_ROUND_UP(rx_rings_rem,
748                                                   q_vectors - v_id);
749                 q_vector->num_ring_rx = rx_rings_per_v;
750                 q_vector->rx.rx_ring = NULL;
751                 q_vector->rx.itr_idx = ICE_RX_ITR;
752                 q_base = vsi->num_rxq - rx_rings_rem;
753
754                 for (q_id = q_base; q_id < (q_base + rx_rings_per_v); q_id++) {
755                         struct ice_rx_ring *rx_ring = vsi->rx_rings[q_id];
756
757                         rx_ring->q_vector = q_vector;
758                         rx_ring->next = q_vector->rx.rx_ring;
759                         q_vector->rx.rx_ring = rx_ring;
760                 }
761                 rx_rings_rem -= rx_rings_per_v;
762         }
763 }
764
765 /**
766  * ice_vsi_free_q_vectors - Free memory allocated for interrupt vectors
767  * @vsi: the VSI having memory freed
768  */
769 void ice_vsi_free_q_vectors(struct ice_vsi *vsi)
770 {
771         int v_idx;
772
773         ice_for_each_q_vector(vsi, v_idx)
774                 ice_free_q_vector(vsi, v_idx);
775 }
776
777 /**
778  * ice_vsi_cfg_txq - Configure single Tx queue
779  * @vsi: the VSI that queue belongs to
780  * @ring: Tx ring to be configured
781  * @qg_buf: queue group buffer
782  */
783 int
784 ice_vsi_cfg_txq(struct ice_vsi *vsi, struct ice_tx_ring *ring,
785                 struct ice_aqc_add_tx_qgrp *qg_buf)
786 {
787         u8 buf_len = struct_size(qg_buf, txqs, 1);
788         struct ice_tlan_ctx tlan_ctx = { 0 };
789         struct ice_aqc_add_txqs_perq *txq;
790         struct ice_channel *ch = ring->ch;
791         struct ice_pf *pf = vsi->back;
792         struct ice_hw *hw = &pf->hw;
793         int status;
794         u16 pf_q;
795         u8 tc;
796
797         /* Configure XPS */
798         ice_cfg_xps_tx_ring(ring);
799
800         pf_q = ring->reg_idx;
801         ice_setup_tx_ctx(ring, &tlan_ctx, pf_q);
802         /* copy context contents into the qg_buf */
803         qg_buf->txqs[0].txq_id = cpu_to_le16(pf_q);
804         ice_set_ctx(hw, (u8 *)&tlan_ctx, qg_buf->txqs[0].txq_ctx,
805                     ice_tlan_ctx_info);
806
807         /* init queue specific tail reg. It is referred as
808          * transmit comm scheduler queue doorbell.
809          */
810         ring->tail = hw->hw_addr + QTX_COMM_DBELL(pf_q);
811
812         if (IS_ENABLED(CONFIG_DCB))
813                 tc = ring->dcb_tc;
814         else
815                 tc = 0;
816
817         /* Add unique software queue handle of the Tx queue per
818          * TC into the VSI Tx ring
819          */
820         if (vsi->type == ICE_VSI_SWITCHDEV_CTRL) {
821                 ring->q_handle = ice_eswitch_calc_txq_handle(ring);
822
823                 if (ring->q_handle == ICE_INVAL_Q_INDEX)
824                         return -ENODEV;
825         } else {
826                 ring->q_handle = ice_calc_txq_handle(vsi, ring, tc);
827         }
828
829         if (ch)
830                 status = ice_ena_vsi_txq(vsi->port_info, ch->ch_vsi->idx, 0,
831                                          ring->q_handle, 1, qg_buf, buf_len,
832                                          NULL);
833         else
834                 status = ice_ena_vsi_txq(vsi->port_info, vsi->idx, tc,
835                                          ring->q_handle, 1, qg_buf, buf_len,
836                                          NULL);
837         if (status) {
838                 dev_err(ice_pf_to_dev(pf), "Failed to set LAN Tx queue context, error: %d\n",
839                         status);
840                 return status;
841         }
842
843         /* Add Tx Queue TEID into the VSI Tx ring from the
844          * response. This will complete configuring and
845          * enabling the queue.
846          */
847         txq = &qg_buf->txqs[0];
848         if (pf_q == le16_to_cpu(txq->txq_id))
849                 ring->txq_teid = le32_to_cpu(txq->q_teid);
850
851         return 0;
852 }
853
854 /**
855  * ice_cfg_itr - configure the initial interrupt throttle values
856  * @hw: pointer to the HW structure
857  * @q_vector: interrupt vector that's being configured
858  *
859  * Configure interrupt throttling values for the ring containers that are
860  * associated with the interrupt vector passed in.
861  */
862 void ice_cfg_itr(struct ice_hw *hw, struct ice_q_vector *q_vector)
863 {
864         ice_cfg_itr_gran(hw);
865
866         if (q_vector->num_ring_rx)
867                 ice_write_itr(&q_vector->rx, q_vector->rx.itr_setting);
868
869         if (q_vector->num_ring_tx)
870                 ice_write_itr(&q_vector->tx, q_vector->tx.itr_setting);
871
872         ice_write_intrl(q_vector, q_vector->intrl);
873 }
874
875 /**
876  * ice_cfg_txq_interrupt - configure interrupt on Tx queue
877  * @vsi: the VSI being configured
878  * @txq: Tx queue being mapped to MSI-X vector
879  * @msix_idx: MSI-X vector index within the function
880  * @itr_idx: ITR index of the interrupt cause
881  *
882  * Configure interrupt on Tx queue by associating Tx queue to MSI-X vector
883  * within the function space.
884  */
885 void
886 ice_cfg_txq_interrupt(struct ice_vsi *vsi, u16 txq, u16 msix_idx, u16 itr_idx)
887 {
888         struct ice_pf *pf = vsi->back;
889         struct ice_hw *hw = &pf->hw;
890         u32 val;
891
892         itr_idx = (itr_idx << QINT_TQCTL_ITR_INDX_S) & QINT_TQCTL_ITR_INDX_M;
893
894         val = QINT_TQCTL_CAUSE_ENA_M | itr_idx |
895               ((msix_idx << QINT_TQCTL_MSIX_INDX_S) & QINT_TQCTL_MSIX_INDX_M);
896
897         wr32(hw, QINT_TQCTL(vsi->txq_map[txq]), val);
898         if (ice_is_xdp_ena_vsi(vsi)) {
899                 u32 xdp_txq = txq + vsi->num_xdp_txq;
900
901                 wr32(hw, QINT_TQCTL(vsi->txq_map[xdp_txq]),
902                      val);
903         }
904         ice_flush(hw);
905 }
906
907 /**
908  * ice_cfg_rxq_interrupt - configure interrupt on Rx queue
909  * @vsi: the VSI being configured
910  * @rxq: Rx queue being mapped to MSI-X vector
911  * @msix_idx: MSI-X vector index within the function
912  * @itr_idx: ITR index of the interrupt cause
913  *
914  * Configure interrupt on Rx queue by associating Rx queue to MSI-X vector
915  * within the function space.
916  */
917 void
918 ice_cfg_rxq_interrupt(struct ice_vsi *vsi, u16 rxq, u16 msix_idx, u16 itr_idx)
919 {
920         struct ice_pf *pf = vsi->back;
921         struct ice_hw *hw = &pf->hw;
922         u32 val;
923
924         itr_idx = (itr_idx << QINT_RQCTL_ITR_INDX_S) & QINT_RQCTL_ITR_INDX_M;
925
926         val = QINT_RQCTL_CAUSE_ENA_M | itr_idx |
927               ((msix_idx << QINT_RQCTL_MSIX_INDX_S) & QINT_RQCTL_MSIX_INDX_M);
928
929         wr32(hw, QINT_RQCTL(vsi->rxq_map[rxq]), val);
930
931         ice_flush(hw);
932 }
933
934 /**
935  * ice_trigger_sw_intr - trigger a software interrupt
936  * @hw: pointer to the HW structure
937  * @q_vector: interrupt vector to trigger the software interrupt for
938  */
939 void ice_trigger_sw_intr(struct ice_hw *hw, struct ice_q_vector *q_vector)
940 {
941         wr32(hw, GLINT_DYN_CTL(q_vector->reg_idx),
942              (ICE_ITR_NONE << GLINT_DYN_CTL_ITR_INDX_S) |
943              GLINT_DYN_CTL_SWINT_TRIG_M |
944              GLINT_DYN_CTL_INTENA_M);
945 }
946
947 /**
948  * ice_vsi_stop_tx_ring - Disable single Tx ring
949  * @vsi: the VSI being configured
950  * @rst_src: reset source
951  * @rel_vmvf_num: Relative ID of VF/VM
952  * @ring: Tx ring to be stopped
953  * @txq_meta: Meta data of Tx ring to be stopped
954  */
955 int
956 ice_vsi_stop_tx_ring(struct ice_vsi *vsi, enum ice_disq_rst_src rst_src,
957                      u16 rel_vmvf_num, struct ice_tx_ring *ring,
958                      struct ice_txq_meta *txq_meta)
959 {
960         struct ice_pf *pf = vsi->back;
961         struct ice_q_vector *q_vector;
962         struct ice_hw *hw = &pf->hw;
963         int status;
964         u32 val;
965
966         /* clear cause_ena bit for disabled queues */
967         val = rd32(hw, QINT_TQCTL(ring->reg_idx));
968         val &= ~QINT_TQCTL_CAUSE_ENA_M;
969         wr32(hw, QINT_TQCTL(ring->reg_idx), val);
970
971         /* software is expected to wait for 100 ns */
972         ndelay(100);
973
974         /* trigger a software interrupt for the vector
975          * associated to the queue to schedule NAPI handler
976          */
977         q_vector = ring->q_vector;
978         if (q_vector)
979                 ice_trigger_sw_intr(hw, q_vector);
980
981         status = ice_dis_vsi_txq(vsi->port_info, txq_meta->vsi_idx,
982                                  txq_meta->tc, 1, &txq_meta->q_handle,
983                                  &txq_meta->q_id, &txq_meta->q_teid, rst_src,
984                                  rel_vmvf_num, NULL);
985
986         /* if the disable queue command was exercised during an
987          * active reset flow, -EBUSY is returned.
988          * This is not an error as the reset operation disables
989          * queues at the hardware level anyway.
990          */
991         if (status == -EBUSY) {
992                 dev_dbg(ice_pf_to_dev(vsi->back), "Reset in progress. LAN Tx queues already disabled\n");
993         } else if (status == -ENOENT) {
994                 dev_dbg(ice_pf_to_dev(vsi->back), "LAN Tx queues do not exist, nothing to disable\n");
995         } else if (status) {
996                 dev_dbg(ice_pf_to_dev(vsi->back), "Failed to disable LAN Tx queues, error: %d\n",
997                         status);
998                 return status;
999         }
1000
1001         return 0;
1002 }
1003
1004 /**
1005  * ice_fill_txq_meta - Prepare the Tx queue's meta data
1006  * @vsi: VSI that ring belongs to
1007  * @ring: ring that txq_meta will be based on
1008  * @txq_meta: a helper struct that wraps Tx queue's information
1009  *
1010  * Set up a helper struct that will contain all the necessary fields that
1011  * are needed for stopping Tx queue
1012  */
1013 void
1014 ice_fill_txq_meta(struct ice_vsi *vsi, struct ice_tx_ring *ring,
1015                   struct ice_txq_meta *txq_meta)
1016 {
1017         struct ice_channel *ch = ring->ch;
1018         u8 tc;
1019
1020         if (IS_ENABLED(CONFIG_DCB))
1021                 tc = ring->dcb_tc;
1022         else
1023                 tc = 0;
1024
1025         txq_meta->q_id = ring->reg_idx;
1026         txq_meta->q_teid = ring->txq_teid;
1027         txq_meta->q_handle = ring->q_handle;
1028         if (ch) {
1029                 txq_meta->vsi_idx = ch->ch_vsi->idx;
1030                 txq_meta->tc = 0;
1031         } else {
1032                 txq_meta->vsi_idx = vsi->idx;
1033                 txq_meta->tc = tc;
1034         }
1035 }