Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018, Intel Corporation. */
3
4/* The driver transmit and receive code */
5
6#include <linux/prefetch.h>
7#include <linux/mm.h>
8#include "ice.h"
9#include "ice_dcb_lib.h"
10
11#define ICE_RX_HDR_SIZE 256
12
13/**
14 * ice_unmap_and_free_tx_buf - Release a Tx buffer
15 * @ring: the ring that owns the buffer
16 * @tx_buf: the buffer to free
17 */
18static void
19ice_unmap_and_free_tx_buf(struct ice_ring *ring, struct ice_tx_buf *tx_buf)
20{
21 if (tx_buf->skb) {
22 dev_kfree_skb_any(tx_buf->skb);
23 if (dma_unmap_len(tx_buf, len))
24 dma_unmap_single(ring->dev,
25 dma_unmap_addr(tx_buf, dma),
26 dma_unmap_len(tx_buf, len),
27 DMA_TO_DEVICE);
28 } else if (dma_unmap_len(tx_buf, len)) {
29 dma_unmap_page(ring->dev,
30 dma_unmap_addr(tx_buf, dma),
31 dma_unmap_len(tx_buf, len),
32 DMA_TO_DEVICE);
33 }
34
35 tx_buf->next_to_watch = NULL;
36 tx_buf->skb = NULL;
37 dma_unmap_len_set(tx_buf, len, 0);
38 /* tx_buf must be completely set up in the transmit path */
39}
40
41static struct netdev_queue *txring_txq(const struct ice_ring *ring)
42{
43 return netdev_get_tx_queue(ring->netdev, ring->q_index);
44}
45
46/**
47 * ice_clean_tx_ring - Free any empty Tx buffers
48 * @tx_ring: ring to be cleaned
49 */
50void ice_clean_tx_ring(struct ice_ring *tx_ring)
51{
52 u16 i;
53
54 /* ring already cleared, nothing to do */
55 if (!tx_ring->tx_buf)
56 return;
57
58 /* Free all the Tx ring sk_buffs */
59 for (i = 0; i < tx_ring->count; i++)
60 ice_unmap_and_free_tx_buf(tx_ring, &tx_ring->tx_buf[i]);
61
62 memset(tx_ring->tx_buf, 0, sizeof(*tx_ring->tx_buf) * tx_ring->count);
63
64 /* Zero out the descriptor ring */
65 memset(tx_ring->desc, 0, tx_ring->size);
66
67 tx_ring->next_to_use = 0;
68 tx_ring->next_to_clean = 0;
69
70 if (!tx_ring->netdev)
71 return;
72
73 /* cleanup Tx queue statistics */
74 netdev_tx_reset_queue(txring_txq(tx_ring));
75}
76
77/**
78 * ice_free_tx_ring - Free Tx resources per queue
79 * @tx_ring: Tx descriptor ring for a specific queue
80 *
81 * Free all transmit software resources
82 */
83void ice_free_tx_ring(struct ice_ring *tx_ring)
84{
85 ice_clean_tx_ring(tx_ring);
86 devm_kfree(tx_ring->dev, tx_ring->tx_buf);
87 tx_ring->tx_buf = NULL;
88
89 if (tx_ring->desc) {
90 dmam_free_coherent(tx_ring->dev, tx_ring->size,
91 tx_ring->desc, tx_ring->dma);
92 tx_ring->desc = NULL;
93 }
94}
95
96/**
97 * ice_clean_tx_irq - Reclaim resources after transmit completes
98 * @tx_ring: Tx ring to clean
99 * @napi_budget: Used to determine if we are in netpoll
100 *
101 * Returns true if there's any budget left (e.g. the clean is finished)
102 */
103static bool ice_clean_tx_irq(struct ice_ring *tx_ring, int napi_budget)
104{
105 unsigned int total_bytes = 0, total_pkts = 0;
106 unsigned int budget = ICE_DFLT_IRQ_WORK;
107 struct ice_vsi *vsi = tx_ring->vsi;
108 s16 i = tx_ring->next_to_clean;
109 struct ice_tx_desc *tx_desc;
110 struct ice_tx_buf *tx_buf;
111
112 tx_buf = &tx_ring->tx_buf[i];
113 tx_desc = ICE_TX_DESC(tx_ring, i);
114 i -= tx_ring->count;
115
116 prefetch(&vsi->state);
117
118 do {
119 struct ice_tx_desc *eop_desc = tx_buf->next_to_watch;
120
121 /* if next_to_watch is not set then there is no work pending */
122 if (!eop_desc)
123 break;
124
125 smp_rmb(); /* prevent any other reads prior to eop_desc */
126
127 /* if the descriptor isn't done, no work yet to do */
128 if (!(eop_desc->cmd_type_offset_bsz &
129 cpu_to_le64(ICE_TX_DESC_DTYPE_DESC_DONE)))
130 break;
131
132 /* clear next_to_watch to prevent false hangs */
133 tx_buf->next_to_watch = NULL;
134
135 /* update the statistics for this packet */
136 total_bytes += tx_buf->bytecount;
137 total_pkts += tx_buf->gso_segs;
138
139 /* free the skb */
140 napi_consume_skb(tx_buf->skb, napi_budget);
141
142 /* unmap skb header data */
143 dma_unmap_single(tx_ring->dev,
144 dma_unmap_addr(tx_buf, dma),
145 dma_unmap_len(tx_buf, len),
146 DMA_TO_DEVICE);
147
148 /* clear tx_buf data */
149 tx_buf->skb = NULL;
150 dma_unmap_len_set(tx_buf, len, 0);
151
152 /* unmap remaining buffers */
153 while (tx_desc != eop_desc) {
154 tx_buf++;
155 tx_desc++;
156 i++;
157 if (unlikely(!i)) {
158 i -= tx_ring->count;
159 tx_buf = tx_ring->tx_buf;
160 tx_desc = ICE_TX_DESC(tx_ring, 0);
161 }
162
163 /* unmap any remaining paged data */
164 if (dma_unmap_len(tx_buf, len)) {
165 dma_unmap_page(tx_ring->dev,
166 dma_unmap_addr(tx_buf, dma),
167 dma_unmap_len(tx_buf, len),
168 DMA_TO_DEVICE);
169 dma_unmap_len_set(tx_buf, len, 0);
170 }
171 }
172
173 /* move us one more past the eop_desc for start of next pkt */
174 tx_buf++;
175 tx_desc++;
176 i++;
177 if (unlikely(!i)) {
178 i -= tx_ring->count;
179 tx_buf = tx_ring->tx_buf;
180 tx_desc = ICE_TX_DESC(tx_ring, 0);
181 }
182
183 prefetch(tx_desc);
184
185 /* update budget accounting */
186 budget--;
187 } while (likely(budget));
188
189 i += tx_ring->count;
190 tx_ring->next_to_clean = i;
191 u64_stats_update_begin(&tx_ring->syncp);
192 tx_ring->stats.bytes += total_bytes;
193 tx_ring->stats.pkts += total_pkts;
194 u64_stats_update_end(&tx_ring->syncp);
195 tx_ring->q_vector->tx.total_bytes += total_bytes;
196 tx_ring->q_vector->tx.total_pkts += total_pkts;
197
198 netdev_tx_completed_queue(txring_txq(tx_ring), total_pkts,
199 total_bytes);
200
201#define TX_WAKE_THRESHOLD ((s16)(DESC_NEEDED * 2))
202 if (unlikely(total_pkts && netif_carrier_ok(tx_ring->netdev) &&
203 (ICE_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
204 /* Make sure that anybody stopping the queue after this
205 * sees the new next_to_clean.
206 */
207 smp_mb();
208 if (__netif_subqueue_stopped(tx_ring->netdev,
209 tx_ring->q_index) &&
210 !test_bit(__ICE_DOWN, vsi->state)) {
211 netif_wake_subqueue(tx_ring->netdev,
212 tx_ring->q_index);
213 ++tx_ring->tx_stats.restart_q;
214 }
215 }
216
217 return !!budget;
218}
219
220/**
221 * ice_setup_tx_ring - Allocate the Tx descriptors
222 * @tx_ring: the Tx ring to set up
223 *
224 * Return 0 on success, negative on error
225 */
226int ice_setup_tx_ring(struct ice_ring *tx_ring)
227{
228 struct device *dev = tx_ring->dev;
229
230 if (!dev)
231 return -ENOMEM;
232
233 /* warn if we are about to overwrite the pointer */
234 WARN_ON(tx_ring->tx_buf);
235 tx_ring->tx_buf =
236 devm_kzalloc(dev, sizeof(*tx_ring->tx_buf) * tx_ring->count,
237 GFP_KERNEL);
238 if (!tx_ring->tx_buf)
239 return -ENOMEM;
240
241 /* round up to nearest page */
242 tx_ring->size = ALIGN(tx_ring->count * sizeof(struct ice_tx_desc),
243 PAGE_SIZE);
244 tx_ring->desc = dmam_alloc_coherent(dev, tx_ring->size, &tx_ring->dma,
245 GFP_KERNEL);
246 if (!tx_ring->desc) {
247 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
248 tx_ring->size);
249 goto err;
250 }
251
252 tx_ring->next_to_use = 0;
253 tx_ring->next_to_clean = 0;
254 tx_ring->tx_stats.prev_pkt = -1;
255 return 0;
256
257err:
258 devm_kfree(dev, tx_ring->tx_buf);
259 tx_ring->tx_buf = NULL;
260 return -ENOMEM;
261}
262
263/**
264 * ice_clean_rx_ring - Free Rx buffers
265 * @rx_ring: ring to be cleaned
266 */
267void ice_clean_rx_ring(struct ice_ring *rx_ring)
268{
269 struct device *dev = rx_ring->dev;
270 u16 i;
271
272 /* ring already cleared, nothing to do */
273 if (!rx_ring->rx_buf)
274 return;
275
276 /* Free all the Rx ring sk_buffs */
277 for (i = 0; i < rx_ring->count; i++) {
278 struct ice_rx_buf *rx_buf = &rx_ring->rx_buf[i];
279
280 if (rx_buf->skb) {
281 dev_kfree_skb(rx_buf->skb);
282 rx_buf->skb = NULL;
283 }
284 if (!rx_buf->page)
285 continue;
286
287 /* Invalidate cache lines that may have been written to by
288 * device so that we avoid corrupting memory.
289 */
290 dma_sync_single_range_for_cpu(dev, rx_buf->dma,
291 rx_buf->page_offset,
292 ICE_RXBUF_2048, DMA_FROM_DEVICE);
293
294 /* free resources associated with mapping */
295 dma_unmap_page_attrs(dev, rx_buf->dma, PAGE_SIZE,
296 DMA_FROM_DEVICE, ICE_RX_DMA_ATTR);
297 __page_frag_cache_drain(rx_buf->page, rx_buf->pagecnt_bias);
298
299 rx_buf->page = NULL;
300 rx_buf->page_offset = 0;
301 }
302
303 memset(rx_ring->rx_buf, 0, sizeof(*rx_ring->rx_buf) * rx_ring->count);
304
305 /* Zero out the descriptor ring */
306 memset(rx_ring->desc, 0, rx_ring->size);
307
308 rx_ring->next_to_alloc = 0;
309 rx_ring->next_to_clean = 0;
310 rx_ring->next_to_use = 0;
311}
312
313/**
314 * ice_free_rx_ring - Free Rx resources
315 * @rx_ring: ring to clean the resources from
316 *
317 * Free all receive software resources
318 */
319void ice_free_rx_ring(struct ice_ring *rx_ring)
320{
321 ice_clean_rx_ring(rx_ring);
322 devm_kfree(rx_ring->dev, rx_ring->rx_buf);
323 rx_ring->rx_buf = NULL;
324
325 if (rx_ring->desc) {
326 dmam_free_coherent(rx_ring->dev, rx_ring->size,
327 rx_ring->desc, rx_ring->dma);
328 rx_ring->desc = NULL;
329 }
330}
331
332/**
333 * ice_setup_rx_ring - Allocate the Rx descriptors
334 * @rx_ring: the Rx ring to set up
335 *
336 * Return 0 on success, negative on error
337 */
338int ice_setup_rx_ring(struct ice_ring *rx_ring)
339{
340 struct device *dev = rx_ring->dev;
341
342 if (!dev)
343 return -ENOMEM;
344
345 /* warn if we are about to overwrite the pointer */
346 WARN_ON(rx_ring->rx_buf);
347 rx_ring->rx_buf =
348 devm_kzalloc(dev, sizeof(*rx_ring->rx_buf) * rx_ring->count,
349 GFP_KERNEL);
350 if (!rx_ring->rx_buf)
351 return -ENOMEM;
352
353 /* round up to nearest page */
354 rx_ring->size = ALIGN(rx_ring->count * sizeof(union ice_32byte_rx_desc),
355 PAGE_SIZE);
356 rx_ring->desc = dmam_alloc_coherent(dev, rx_ring->size, &rx_ring->dma,
357 GFP_KERNEL);
358 if (!rx_ring->desc) {
359 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
360 rx_ring->size);
361 goto err;
362 }
363
364 rx_ring->next_to_use = 0;
365 rx_ring->next_to_clean = 0;
366 return 0;
367
368err:
369 devm_kfree(dev, rx_ring->rx_buf);
370 rx_ring->rx_buf = NULL;
371 return -ENOMEM;
372}
373
374/**
375 * ice_release_rx_desc - Store the new tail and head values
376 * @rx_ring: ring to bump
377 * @val: new head index
378 */
379static void ice_release_rx_desc(struct ice_ring *rx_ring, u32 val)
380{
381 u16 prev_ntu = rx_ring->next_to_use;
382
383 rx_ring->next_to_use = val;
384
385 /* update next to alloc since we have filled the ring */
386 rx_ring->next_to_alloc = val;
387
388 /* QRX_TAIL will be updated with any tail value, but hardware ignores
389 * the lower 3 bits. This makes it so we only bump tail on meaningful
390 * boundaries. Also, this allows us to bump tail on intervals of 8 up to
391 * the budget depending on the current traffic load.
392 */
393 val &= ~0x7;
394 if (prev_ntu != val) {
395 /* Force memory writes to complete before letting h/w
396 * know there are new descriptors to fetch. (Only
397 * applicable for weak-ordered memory model archs,
398 * such as IA-64).
399 */
400 wmb();
401 writel(val, rx_ring->tail);
402 }
403}
404
405/**
406 * ice_alloc_mapped_page - recycle or make a new page
407 * @rx_ring: ring to use
408 * @bi: rx_buf struct to modify
409 *
410 * Returns true if the page was successfully allocated or
411 * reused.
412 */
413static bool
414ice_alloc_mapped_page(struct ice_ring *rx_ring, struct ice_rx_buf *bi)
415{
416 struct page *page = bi->page;
417 dma_addr_t dma;
418
419 /* since we are recycling buffers we should seldom need to alloc */
420 if (likely(page)) {
421 rx_ring->rx_stats.page_reuse_count++;
422 return true;
423 }
424
425 /* alloc new page for storage */
426 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
427 if (unlikely(!page)) {
428 rx_ring->rx_stats.alloc_page_failed++;
429 return false;
430 }
431
432 /* map page for use */
433 dma = dma_map_page_attrs(rx_ring->dev, page, 0, PAGE_SIZE,
434 DMA_FROM_DEVICE, ICE_RX_DMA_ATTR);
435
436 /* if mapping failed free memory back to system since
437 * there isn't much point in holding memory we can't use
438 */
439 if (dma_mapping_error(rx_ring->dev, dma)) {
440 __free_pages(page, 0);
441 rx_ring->rx_stats.alloc_page_failed++;
442 return false;
443 }
444
445 bi->dma = dma;
446 bi->page = page;
447 bi->page_offset = 0;
448 page_ref_add(page, USHRT_MAX - 1);
449 bi->pagecnt_bias = USHRT_MAX;
450
451 return true;
452}
453
454/**
455 * ice_alloc_rx_bufs - Replace used receive buffers
456 * @rx_ring: ring to place buffers on
457 * @cleaned_count: number of buffers to replace
458 *
459 * Returns false if all allocations were successful, true if any fail. Returning
460 * true signals to the caller that we didn't replace cleaned_count buffers and
461 * there is more work to do.
462 *
463 * First, try to clean "cleaned_count" Rx buffers. Then refill the cleaned Rx
464 * buffers. Then bump tail at most one time. Grouping like this lets us avoid
465 * multiple tail writes per call.
466 */
467bool ice_alloc_rx_bufs(struct ice_ring *rx_ring, u16 cleaned_count)
468{
469 union ice_32b_rx_flex_desc *rx_desc;
470 u16 ntu = rx_ring->next_to_use;
471 struct ice_rx_buf *bi;
472
473 /* do nothing if no valid netdev defined */
474 if (!rx_ring->netdev || !cleaned_count)
475 return false;
476
477 /* get the Rx descriptor and buffer based on next_to_use */
478 rx_desc = ICE_RX_DESC(rx_ring, ntu);
479 bi = &rx_ring->rx_buf[ntu];
480
481 do {
482 /* if we fail here, we have work remaining */
483 if (!ice_alloc_mapped_page(rx_ring, bi))
484 break;
485
486 /* sync the buffer for use by the device */
487 dma_sync_single_range_for_device(rx_ring->dev, bi->dma,
488 bi->page_offset,
489 ICE_RXBUF_2048,
490 DMA_FROM_DEVICE);
491
492 /* Refresh the desc even if buffer_addrs didn't change
493 * because each write-back erases this info.
494 */
495 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
496
497 rx_desc++;
498 bi++;
499 ntu++;
500 if (unlikely(ntu == rx_ring->count)) {
501 rx_desc = ICE_RX_DESC(rx_ring, 0);
502 bi = rx_ring->rx_buf;
503 ntu = 0;
504 }
505
506 /* clear the status bits for the next_to_use descriptor */
507 rx_desc->wb.status_error0 = 0;
508
509 cleaned_count--;
510 } while (cleaned_count);
511
512 if (rx_ring->next_to_use != ntu)
513 ice_release_rx_desc(rx_ring, ntu);
514
515 return !!cleaned_count;
516}
517
518/**
519 * ice_page_is_reserved - check if reuse is possible
520 * @page: page struct to check
521 */
522static bool ice_page_is_reserved(struct page *page)
523{
524 return (page_to_nid(page) != numa_mem_id()) || page_is_pfmemalloc(page);
525}
526
527/**
528 * ice_rx_buf_adjust_pg_offset - Prepare Rx buffer for reuse
529 * @rx_buf: Rx buffer to adjust
530 * @size: Size of adjustment
531 *
532 * Update the offset within page so that Rx buf will be ready to be reused.
533 * For systems with PAGE_SIZE < 8192 this function will flip the page offset
534 * so the second half of page assigned to Rx buffer will be used, otherwise
535 * the offset is moved by the @size bytes
536 */
537static void
538ice_rx_buf_adjust_pg_offset(struct ice_rx_buf *rx_buf, unsigned int size)
539{
540#if (PAGE_SIZE < 8192)
541 /* flip page offset to other buffer */
542 rx_buf->page_offset ^= size;
543#else
544 /* move offset up to the next cache line */
545 rx_buf->page_offset += size;
546#endif
547}
548
549/**
550 * ice_can_reuse_rx_page - Determine if page can be reused for another Rx
551 * @rx_buf: buffer containing the page
552 *
553 * If page is reusable, we have a green light for calling ice_reuse_rx_page,
554 * which will assign the current buffer to the buffer that next_to_alloc is
555 * pointing to; otherwise, the DMA mapping needs to be destroyed and
556 * page freed
557 */
558static bool ice_can_reuse_rx_page(struct ice_rx_buf *rx_buf)
559{
560#if (PAGE_SIZE >= 8192)
561 unsigned int last_offset = PAGE_SIZE - ICE_RXBUF_2048;
562#endif
563 unsigned int pagecnt_bias = rx_buf->pagecnt_bias;
564 struct page *page = rx_buf->page;
565
566 /* avoid re-using remote pages */
567 if (unlikely(ice_page_is_reserved(page)))
568 return false;
569
570#if (PAGE_SIZE < 8192)
571 /* if we are only owner of page we can reuse it */
572 if (unlikely((page_count(page) - pagecnt_bias) > 1))
573 return false;
574#else
575 if (rx_buf->page_offset > last_offset)
576 return false;
577#endif /* PAGE_SIZE < 8192) */
578
579 /* If we have drained the page fragment pool we need to update
580 * the pagecnt_bias and page count so that we fully restock the
581 * number of references the driver holds.
582 */
583 if (unlikely(pagecnt_bias == 1)) {
584 page_ref_add(page, USHRT_MAX - 1);
585 rx_buf->pagecnt_bias = USHRT_MAX;
586 }
587
588 return true;
589}
590
591/**
592 * ice_add_rx_frag - Add contents of Rx buffer to sk_buff as a frag
593 * @rx_buf: buffer containing page to add
594 * @skb: sk_buff to place the data into
595 * @size: packet length from rx_desc
596 *
597 * This function will add the data contained in rx_buf->page to the skb.
598 * It will just attach the page as a frag to the skb.
599 * The function will then update the page offset.
600 */
601static void
602ice_add_rx_frag(struct ice_rx_buf *rx_buf, struct sk_buff *skb,
603 unsigned int size)
604{
605#if (PAGE_SIZE >= 8192)
606 unsigned int truesize = SKB_DATA_ALIGN(size);
607#else
608 unsigned int truesize = ICE_RXBUF_2048;
609#endif
610
611 if (!size)
612 return;
613 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buf->page,
614 rx_buf->page_offset, size, truesize);
615
616 /* page is being used so we must update the page offset */
617 ice_rx_buf_adjust_pg_offset(rx_buf, truesize);
618}
619
620/**
621 * ice_reuse_rx_page - page flip buffer and store it back on the ring
622 * @rx_ring: Rx descriptor ring to store buffers on
623 * @old_buf: donor buffer to have page reused
624 *
625 * Synchronizes page for reuse by the adapter
626 */
627static void
628ice_reuse_rx_page(struct ice_ring *rx_ring, struct ice_rx_buf *old_buf)
629{
630 u16 nta = rx_ring->next_to_alloc;
631 struct ice_rx_buf *new_buf;
632
633 new_buf = &rx_ring->rx_buf[nta];
634
635 /* update, and store next to alloc */
636 nta++;
637 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
638
639 /* Transfer page from old buffer to new buffer.
640 * Move each member individually to avoid possible store
641 * forwarding stalls and unnecessary copy of skb.
642 */
643 new_buf->dma = old_buf->dma;
644 new_buf->page = old_buf->page;
645 new_buf->page_offset = old_buf->page_offset;
646 new_buf->pagecnt_bias = old_buf->pagecnt_bias;
647}
648
649/**
650 * ice_get_rx_buf - Fetch Rx buffer and synchronize data for use
651 * @rx_ring: Rx descriptor ring to transact packets on
652 * @skb: skb to be used
653 * @size: size of buffer to add to skb
654 *
655 * This function will pull an Rx buffer from the ring and synchronize it
656 * for use by the CPU.
657 */
658static struct ice_rx_buf *
659ice_get_rx_buf(struct ice_ring *rx_ring, struct sk_buff **skb,
660 const unsigned int size)
661{
662 struct ice_rx_buf *rx_buf;
663
664 rx_buf = &rx_ring->rx_buf[rx_ring->next_to_clean];
665 prefetchw(rx_buf->page);
666 *skb = rx_buf->skb;
667
668 if (!size)
669 return rx_buf;
670 /* we are reusing so sync this buffer for CPU use */
671 dma_sync_single_range_for_cpu(rx_ring->dev, rx_buf->dma,
672 rx_buf->page_offset, size,
673 DMA_FROM_DEVICE);
674
675 /* We have pulled a buffer for use, so decrement pagecnt_bias */
676 rx_buf->pagecnt_bias--;
677
678 return rx_buf;
679}
680
681/**
682 * ice_construct_skb - Allocate skb and populate it
683 * @rx_ring: Rx descriptor ring to transact packets on
684 * @rx_buf: Rx buffer to pull data from
685 * @size: the length of the packet
686 *
687 * This function allocates an skb. It then populates it with the page
688 * data from the current receive descriptor, taking care to set up the
689 * skb correctly.
690 */
691static struct sk_buff *
692ice_construct_skb(struct ice_ring *rx_ring, struct ice_rx_buf *rx_buf,
693 unsigned int size)
694{
695 void *va = page_address(rx_buf->page) + rx_buf->page_offset;
696 unsigned int headlen;
697 struct sk_buff *skb;
698
699 /* prefetch first cache line of first page */
700 prefetch(va);
701#if L1_CACHE_BYTES < 128
702 prefetch((u8 *)va + L1_CACHE_BYTES);
703#endif /* L1_CACHE_BYTES */
704
705 /* allocate a skb to store the frags */
706 skb = __napi_alloc_skb(&rx_ring->q_vector->napi, ICE_RX_HDR_SIZE,
707 GFP_ATOMIC | __GFP_NOWARN);
708 if (unlikely(!skb))
709 return NULL;
710
711 skb_record_rx_queue(skb, rx_ring->q_index);
712 /* Determine available headroom for copy */
713 headlen = size;
714 if (headlen > ICE_RX_HDR_SIZE)
715 headlen = eth_get_headlen(skb->dev, va, ICE_RX_HDR_SIZE);
716
717 /* align pull length to size of long to optimize memcpy performance */
718 memcpy(__skb_put(skb, headlen), va, ALIGN(headlen, sizeof(long)));
719
720 /* if we exhaust the linear part then add what is left as a frag */
721 size -= headlen;
722 if (size) {
723#if (PAGE_SIZE >= 8192)
724 unsigned int truesize = SKB_DATA_ALIGN(size);
725#else
726 unsigned int truesize = ICE_RXBUF_2048;
727#endif
728 skb_add_rx_frag(skb, 0, rx_buf->page,
729 rx_buf->page_offset + headlen, size, truesize);
730 /* buffer is used by skb, update page_offset */
731 ice_rx_buf_adjust_pg_offset(rx_buf, truesize);
732 } else {
733 /* buffer is unused, reset bias back to rx_buf; data was copied
734 * onto skb's linear part so there's no need for adjusting
735 * page offset and we can reuse this buffer as-is
736 */
737 rx_buf->pagecnt_bias++;
738 }
739
740 return skb;
741}
742
743/**
744 * ice_put_rx_buf - Clean up used buffer and either recycle or free
745 * @rx_ring: Rx descriptor ring to transact packets on
746 * @rx_buf: Rx buffer to pull data from
747 *
748 * This function will clean up the contents of the rx_buf. It will
749 * either recycle the buffer or unmap it and free the associated resources.
750 */
751static void ice_put_rx_buf(struct ice_ring *rx_ring, struct ice_rx_buf *rx_buf)
752{
753 if (!rx_buf)
754 return;
755
756 if (ice_can_reuse_rx_page(rx_buf)) {
757 /* hand second half of page back to the ring */
758 ice_reuse_rx_page(rx_ring, rx_buf);
759 rx_ring->rx_stats.page_reuse_count++;
760 } else {
761 /* we are not reusing the buffer so unmap it */
762 dma_unmap_page_attrs(rx_ring->dev, rx_buf->dma, PAGE_SIZE,
763 DMA_FROM_DEVICE, ICE_RX_DMA_ATTR);
764 __page_frag_cache_drain(rx_buf->page, rx_buf->pagecnt_bias);
765 }
766
767 /* clear contents of buffer_info */
768 rx_buf->page = NULL;
769 rx_buf->skb = NULL;
770}
771
772/**
773 * ice_cleanup_headers - Correct empty headers
774 * @skb: pointer to current skb being fixed
775 *
776 * Also address the case where we are pulling data in on pages only
777 * and as such no data is present in the skb header.
778 *
779 * In addition if skb is not at least 60 bytes we need to pad it so that
780 * it is large enough to qualify as a valid Ethernet frame.
781 *
782 * Returns true if an error was encountered and skb was freed.
783 */
784static bool ice_cleanup_headers(struct sk_buff *skb)
785{
786 /* if eth_skb_pad returns an error the skb was freed */
787 if (eth_skb_pad(skb))
788 return true;
789
790 return false;
791}
792
793/**
794 * ice_test_staterr - tests bits in Rx descriptor status and error fields
795 * @rx_desc: pointer to receive descriptor (in le64 format)
796 * @stat_err_bits: value to mask
797 *
798 * This function does some fast chicanery in order to return the
799 * value of the mask which is really only used for boolean tests.
800 * The status_error_len doesn't need to be shifted because it begins
801 * at offset zero.
802 */
803static bool
804ice_test_staterr(union ice_32b_rx_flex_desc *rx_desc, const u16 stat_err_bits)
805{
806 return !!(rx_desc->wb.status_error0 &
807 cpu_to_le16(stat_err_bits));
808}
809
810/**
811 * ice_is_non_eop - process handling of non-EOP buffers
812 * @rx_ring: Rx ring being processed
813 * @rx_desc: Rx descriptor for current buffer
814 * @skb: Current socket buffer containing buffer in progress
815 *
816 * This function updates next to clean. If the buffer is an EOP buffer
817 * this function exits returning false, otherwise it will place the
818 * sk_buff in the next buffer to be chained and return true indicating
819 * that this is in fact a non-EOP buffer.
820 */
821static bool
822ice_is_non_eop(struct ice_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc,
823 struct sk_buff *skb)
824{
825 u32 ntc = rx_ring->next_to_clean + 1;
826
827 /* fetch, update, and store next to clean */
828 ntc = (ntc < rx_ring->count) ? ntc : 0;
829 rx_ring->next_to_clean = ntc;
830
831 prefetch(ICE_RX_DESC(rx_ring, ntc));
832
833 /* if we are the last buffer then there is nothing else to do */
834#define ICE_RXD_EOF BIT(ICE_RX_FLEX_DESC_STATUS0_EOF_S)
835 if (likely(ice_test_staterr(rx_desc, ICE_RXD_EOF)))
836 return false;
837
838 /* place skb in next buffer to be received */
839 rx_ring->rx_buf[ntc].skb = skb;
840 rx_ring->rx_stats.non_eop_descs++;
841
842 return true;
843}
844
845/**
846 * ice_ptype_to_htype - get a hash type
847 * @ptype: the ptype value from the descriptor
848 *
849 * Returns a hash type to be used by skb_set_hash
850 */
851static enum pkt_hash_types ice_ptype_to_htype(u8 __always_unused ptype)
852{
853 return PKT_HASH_TYPE_NONE;
854}
855
856/**
857 * ice_rx_hash - set the hash value in the skb
858 * @rx_ring: descriptor ring
859 * @rx_desc: specific descriptor
860 * @skb: pointer to current skb
861 * @rx_ptype: the ptype value from the descriptor
862 */
863static void
864ice_rx_hash(struct ice_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc,
865 struct sk_buff *skb, u8 rx_ptype)
866{
867 struct ice_32b_rx_flex_desc_nic *nic_mdid;
868 u32 hash;
869
870 if (!(rx_ring->netdev->features & NETIF_F_RXHASH))
871 return;
872
873 if (rx_desc->wb.rxdid != ICE_RXDID_FLEX_NIC)
874 return;
875
876 nic_mdid = (struct ice_32b_rx_flex_desc_nic *)rx_desc;
877 hash = le32_to_cpu(nic_mdid->rss_hash);
878 skb_set_hash(skb, hash, ice_ptype_to_htype(rx_ptype));
879}
880
881/**
882 * ice_rx_csum - Indicate in skb if checksum is good
883 * @ring: the ring we care about
884 * @skb: skb currently being received and modified
885 * @rx_desc: the receive descriptor
886 * @ptype: the packet type decoded by hardware
887 *
888 * skb->protocol must be set before this function is called
889 */
890static void
891ice_rx_csum(struct ice_ring *ring, struct sk_buff *skb,
892 union ice_32b_rx_flex_desc *rx_desc, u8 ptype)
893{
894 struct ice_rx_ptype_decoded decoded;
895 u32 rx_error, rx_status;
896 bool ipv4, ipv6;
897
898 rx_status = le16_to_cpu(rx_desc->wb.status_error0);
899 rx_error = rx_status;
900
901 decoded = ice_decode_rx_desc_ptype(ptype);
902
903 /* Start with CHECKSUM_NONE and by default csum_level = 0 */
904 skb->ip_summed = CHECKSUM_NONE;
905 skb_checksum_none_assert(skb);
906
907 /* check if Rx checksum is enabled */
908 if (!(ring->netdev->features & NETIF_F_RXCSUM))
909 return;
910
911 /* check if HW has decoded the packet and checksum */
912 if (!(rx_status & BIT(ICE_RX_FLEX_DESC_STATUS0_L3L4P_S)))
913 return;
914
915 if (!(decoded.known && decoded.outer_ip))
916 return;
917
918 ipv4 = (decoded.outer_ip == ICE_RX_PTYPE_OUTER_IP) &&
919 (decoded.outer_ip_ver == ICE_RX_PTYPE_OUTER_IPV4);
920 ipv6 = (decoded.outer_ip == ICE_RX_PTYPE_OUTER_IP) &&
921 (decoded.outer_ip_ver == ICE_RX_PTYPE_OUTER_IPV6);
922
923 if (ipv4 && (rx_error & (BIT(ICE_RX_FLEX_DESC_STATUS0_XSUM_IPE_S) |
924 BIT(ICE_RX_FLEX_DESC_STATUS0_XSUM_EIPE_S))))
925 goto checksum_fail;
926 else if (ipv6 && (rx_status &
927 (BIT(ICE_RX_FLEX_DESC_STATUS0_IPV6EXADD_S))))
928 goto checksum_fail;
929
930 /* check for L4 errors and handle packets that were not able to be
931 * checksummed due to arrival speed
932 */
933 if (rx_error & BIT(ICE_RX_FLEX_DESC_STATUS0_XSUM_L4E_S))
934 goto checksum_fail;
935
936 /* Only report checksum unnecessary for TCP, UDP, or SCTP */
937 switch (decoded.inner_prot) {
938 case ICE_RX_PTYPE_INNER_PROT_TCP:
939 case ICE_RX_PTYPE_INNER_PROT_UDP:
940 case ICE_RX_PTYPE_INNER_PROT_SCTP:
941 skb->ip_summed = CHECKSUM_UNNECESSARY;
942 default:
943 break;
944 }
945 return;
946
947checksum_fail:
948 ring->vsi->back->hw_csum_rx_error++;
949}
950
951/**
952 * ice_process_skb_fields - Populate skb header fields from Rx descriptor
953 * @rx_ring: Rx descriptor ring packet is being transacted on
954 * @rx_desc: pointer to the EOP Rx descriptor
955 * @skb: pointer to current skb being populated
956 * @ptype: the packet type decoded by hardware
957 *
958 * This function checks the ring, descriptor, and packet information in
959 * order to populate the hash, checksum, VLAN, protocol, and
960 * other fields within the skb.
961 */
962static void
963ice_process_skb_fields(struct ice_ring *rx_ring,
964 union ice_32b_rx_flex_desc *rx_desc,
965 struct sk_buff *skb, u8 ptype)
966{
967 ice_rx_hash(rx_ring, rx_desc, skb, ptype);
968
969 /* modifies the skb - consumes the enet header */
970 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
971
972 ice_rx_csum(rx_ring, skb, rx_desc, ptype);
973}
974
975/**
976 * ice_receive_skb - Send a completed packet up the stack
977 * @rx_ring: Rx ring in play
978 * @skb: packet to send up
979 * @vlan_tag: VLAN tag for packet
980 *
981 * This function sends the completed packet (via. skb) up the stack using
982 * gro receive functions (with/without VLAN tag)
983 */
984static void
985ice_receive_skb(struct ice_ring *rx_ring, struct sk_buff *skb, u16 vlan_tag)
986{
987 if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
988 (vlan_tag & VLAN_VID_MASK))
989 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
990 napi_gro_receive(&rx_ring->q_vector->napi, skb);
991}
992
993/**
994 * ice_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
995 * @rx_ring: Rx descriptor ring to transact packets on
996 * @budget: Total limit on number of packets to process
997 *
998 * This function provides a "bounce buffer" approach to Rx interrupt
999 * processing. The advantage to this is that on systems that have
1000 * expensive overhead for IOMMU access this provides a means of avoiding
1001 * it by maintaining the mapping of the page to the system.
1002 *
1003 * Returns amount of work completed
1004 */
1005static int ice_clean_rx_irq(struct ice_ring *rx_ring, int budget)
1006{
1007 unsigned int total_rx_bytes = 0, total_rx_pkts = 0;
1008 u16 cleaned_count = ICE_DESC_UNUSED(rx_ring);
1009 bool failure;
1010
1011 /* start the loop to process Rx packets bounded by 'budget' */
1012 while (likely(total_rx_pkts < (unsigned int)budget)) {
1013 union ice_32b_rx_flex_desc *rx_desc;
1014 struct ice_rx_buf *rx_buf;
1015 struct sk_buff *skb;
1016 unsigned int size;
1017 u16 stat_err_bits;
1018 u16 vlan_tag = 0;
1019 u8 rx_ptype;
1020
1021 /* get the Rx desc from Rx ring based on 'next_to_clean' */
1022 rx_desc = ICE_RX_DESC(rx_ring, rx_ring->next_to_clean);
1023
1024 /* status_error_len will always be zero for unused descriptors
1025 * because it's cleared in cleanup, and overlaps with hdr_addr
1026 * which is always zero because packet split isn't used, if the
1027 * hardware wrote DD then it will be non-zero
1028 */
1029 stat_err_bits = BIT(ICE_RX_FLEX_DESC_STATUS0_DD_S);
1030 if (!ice_test_staterr(rx_desc, stat_err_bits))
1031 break;
1032
1033 /* This memory barrier is needed to keep us from reading
1034 * any other fields out of the rx_desc until we know the
1035 * DD bit is set.
1036 */
1037 dma_rmb();
1038
1039 size = le16_to_cpu(rx_desc->wb.pkt_len) &
1040 ICE_RX_FLX_DESC_PKT_LEN_M;
1041
1042 /* retrieve a buffer from the ring */
1043 rx_buf = ice_get_rx_buf(rx_ring, &skb, size);
1044
1045 if (skb)
1046 ice_add_rx_frag(rx_buf, skb, size);
1047 else
1048 skb = ice_construct_skb(rx_ring, rx_buf, size);
1049
1050 /* exit if we failed to retrieve a buffer */
1051 if (!skb) {
1052 rx_ring->rx_stats.alloc_buf_failed++;
1053 if (rx_buf)
1054 rx_buf->pagecnt_bias++;
1055 break;
1056 }
1057
1058 ice_put_rx_buf(rx_ring, rx_buf);
1059 cleaned_count++;
1060
1061 /* skip if it is NOP desc */
1062 if (ice_is_non_eop(rx_ring, rx_desc, skb))
1063 continue;
1064
1065 stat_err_bits = BIT(ICE_RX_FLEX_DESC_STATUS0_RXE_S);
1066 if (unlikely(ice_test_staterr(rx_desc, stat_err_bits))) {
1067 dev_kfree_skb_any(skb);
1068 continue;
1069 }
1070
1071 stat_err_bits = BIT(ICE_RX_FLEX_DESC_STATUS0_L2TAG1P_S);
1072 if (ice_test_staterr(rx_desc, stat_err_bits))
1073 vlan_tag = le16_to_cpu(rx_desc->wb.l2tag1);
1074
1075 /* correct empty headers and pad skb if needed (to make valid
1076 * ethernet frame
1077 */
1078 if (ice_cleanup_headers(skb)) {
1079 skb = NULL;
1080 continue;
1081 }
1082
1083 /* probably a little skewed due to removing CRC */
1084 total_rx_bytes += skb->len;
1085
1086 /* populate checksum, VLAN, and protocol */
1087 rx_ptype = le16_to_cpu(rx_desc->wb.ptype_flex_flags0) &
1088 ICE_RX_FLEX_DESC_PTYPE_M;
1089
1090 ice_process_skb_fields(rx_ring, rx_desc, skb, rx_ptype);
1091
1092 /* send completed skb up the stack */
1093 ice_receive_skb(rx_ring, skb, vlan_tag);
1094
1095 /* update budget accounting */
1096 total_rx_pkts++;
1097 }
1098
1099 /* return up to cleaned_count buffers to hardware */
1100 failure = ice_alloc_rx_bufs(rx_ring, cleaned_count);
1101
1102 /* update queue and vector specific stats */
1103 u64_stats_update_begin(&rx_ring->syncp);
1104 rx_ring->stats.pkts += total_rx_pkts;
1105 rx_ring->stats.bytes += total_rx_bytes;
1106 u64_stats_update_end(&rx_ring->syncp);
1107 rx_ring->q_vector->rx.total_pkts += total_rx_pkts;
1108 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1109
1110 /* guarantee a trip back through this routine if there was a failure */
1111 return failure ? budget : (int)total_rx_pkts;
1112}
1113
1114/**
1115 * ice_adjust_itr_by_size_and_speed - Adjust ITR based on current traffic
1116 * @port_info: port_info structure containing the current link speed
1117 * @avg_pkt_size: average size of Tx or Rx packets based on clean routine
1118 * @itr: ITR value to update
1119 *
1120 * Calculate how big of an increment should be applied to the ITR value passed
1121 * in based on wmem_default, SKB overhead, Ethernet overhead, and the current
1122 * link speed.
1123 *
1124 * The following is a calculation derived from:
1125 * wmem_default / (size + overhead) = desired_pkts_per_int
1126 * rate / bits_per_byte / (size + Ethernet overhead) = pkt_rate
1127 * (desired_pkt_rate / pkt_rate) * usecs_per_sec = ITR value
1128 *
1129 * Assuming wmem_default is 212992 and overhead is 640 bytes per
1130 * packet, (256 skb, 64 headroom, 320 shared info), we can reduce the
1131 * formula down to:
1132 *
1133 * wmem_default * bits_per_byte * usecs_per_sec pkt_size + 24
1134 * ITR = -------------------------------------------- * --------------
1135 * rate pkt_size + 640
1136 */
1137static unsigned int
1138ice_adjust_itr_by_size_and_speed(struct ice_port_info *port_info,
1139 unsigned int avg_pkt_size,
1140 unsigned int itr)
1141{
1142 switch (port_info->phy.link_info.link_speed) {
1143 case ICE_AQ_LINK_SPEED_100GB:
1144 itr += DIV_ROUND_UP(17 * (avg_pkt_size + 24),
1145 avg_pkt_size + 640);
1146 break;
1147 case ICE_AQ_LINK_SPEED_50GB:
1148 itr += DIV_ROUND_UP(34 * (avg_pkt_size + 24),
1149 avg_pkt_size + 640);
1150 break;
1151 case ICE_AQ_LINK_SPEED_40GB:
1152 itr += DIV_ROUND_UP(43 * (avg_pkt_size + 24),
1153 avg_pkt_size + 640);
1154 break;
1155 case ICE_AQ_LINK_SPEED_25GB:
1156 itr += DIV_ROUND_UP(68 * (avg_pkt_size + 24),
1157 avg_pkt_size + 640);
1158 break;
1159 case ICE_AQ_LINK_SPEED_20GB:
1160 itr += DIV_ROUND_UP(85 * (avg_pkt_size + 24),
1161 avg_pkt_size + 640);
1162 break;
1163 case ICE_AQ_LINK_SPEED_10GB:
1164 /* fall through */
1165 default:
1166 itr += DIV_ROUND_UP(170 * (avg_pkt_size + 24),
1167 avg_pkt_size + 640);
1168 break;
1169 }
1170
1171 if ((itr & ICE_ITR_MASK) > ICE_ITR_ADAPTIVE_MAX_USECS) {
1172 itr &= ICE_ITR_ADAPTIVE_LATENCY;
1173 itr += ICE_ITR_ADAPTIVE_MAX_USECS;
1174 }
1175
1176 return itr;
1177}
1178
1179/**
1180 * ice_update_itr - update the adaptive ITR value based on statistics
1181 * @q_vector: structure containing interrupt and ring information
1182 * @rc: structure containing ring performance data
1183 *
1184 * Stores a new ITR value based on packets and byte
1185 * counts during the last interrupt. The advantage of per interrupt
1186 * computation is faster updates and more accurate ITR for the current
1187 * traffic pattern. Constants in this function were computed
1188 * based on theoretical maximum wire speed and thresholds were set based
1189 * on testing data as well as attempting to minimize response time
1190 * while increasing bulk throughput.
1191 */
1192static void
1193ice_update_itr(struct ice_q_vector *q_vector, struct ice_ring_container *rc)
1194{
1195 unsigned long next_update = jiffies;
1196 unsigned int packets, bytes, itr;
1197 bool container_is_rx;
1198
1199 if (!rc->ring || !ITR_IS_DYNAMIC(rc->itr_setting))
1200 return;
1201
1202 /* If itr_countdown is set it means we programmed an ITR within
1203 * the last 4 interrupt cycles. This has a side effect of us
1204 * potentially firing an early interrupt. In order to work around
1205 * this we need to throw out any data received for a few
1206 * interrupts following the update.
1207 */
1208 if (q_vector->itr_countdown) {
1209 itr = rc->target_itr;
1210 goto clear_counts;
1211 }
1212
1213 container_is_rx = (&q_vector->rx == rc);
1214 /* For Rx we want to push the delay up and default to low latency.
1215 * for Tx we want to pull the delay down and default to high latency.
1216 */
1217 itr = container_is_rx ?
1218 ICE_ITR_ADAPTIVE_MIN_USECS | ICE_ITR_ADAPTIVE_LATENCY :
1219 ICE_ITR_ADAPTIVE_MAX_USECS | ICE_ITR_ADAPTIVE_LATENCY;
1220
1221 /* If we didn't update within up to 1 - 2 jiffies we can assume
1222 * that either packets are coming in so slow there hasn't been
1223 * any work, or that there is so much work that NAPI is dealing
1224 * with interrupt moderation and we don't need to do anything.
1225 */
1226 if (time_after(next_update, rc->next_update))
1227 goto clear_counts;
1228
1229 prefetch(q_vector->vsi->port_info);
1230
1231 packets = rc->total_pkts;
1232 bytes = rc->total_bytes;
1233
1234 if (container_is_rx) {
1235 /* If Rx there are 1 to 4 packets and bytes are less than
1236 * 9000 assume insufficient data to use bulk rate limiting
1237 * approach unless Tx is already in bulk rate limiting. We
1238 * are likely latency driven.
1239 */
1240 if (packets && packets < 4 && bytes < 9000 &&
1241 (q_vector->tx.target_itr & ICE_ITR_ADAPTIVE_LATENCY)) {
1242 itr = ICE_ITR_ADAPTIVE_LATENCY;
1243 goto adjust_by_size_and_speed;
1244 }
1245 } else if (packets < 4) {
1246 /* If we have Tx and Rx ITR maxed and Tx ITR is running in
1247 * bulk mode and we are receiving 4 or fewer packets just
1248 * reset the ITR_ADAPTIVE_LATENCY bit for latency mode so
1249 * that the Rx can relax.
1250 */
1251 if (rc->target_itr == ICE_ITR_ADAPTIVE_MAX_USECS &&
1252 (q_vector->rx.target_itr & ICE_ITR_MASK) ==
1253 ICE_ITR_ADAPTIVE_MAX_USECS)
1254 goto clear_counts;
1255 } else if (packets > 32) {
1256 /* If we have processed over 32 packets in a single interrupt
1257 * for Tx assume we need to switch over to "bulk" mode.
1258 */
1259 rc->target_itr &= ~ICE_ITR_ADAPTIVE_LATENCY;
1260 }
1261
1262 /* We have no packets to actually measure against. This means
1263 * either one of the other queues on this vector is active or
1264 * we are a Tx queue doing TSO with too high of an interrupt rate.
1265 *
1266 * Between 4 and 56 we can assume that our current interrupt delay
1267 * is only slightly too low. As such we should increase it by a small
1268 * fixed amount.
1269 */
1270 if (packets < 56) {
1271 itr = rc->target_itr + ICE_ITR_ADAPTIVE_MIN_INC;
1272 if ((itr & ICE_ITR_MASK) > ICE_ITR_ADAPTIVE_MAX_USECS) {
1273 itr &= ICE_ITR_ADAPTIVE_LATENCY;
1274 itr += ICE_ITR_ADAPTIVE_MAX_USECS;
1275 }
1276 goto clear_counts;
1277 }
1278
1279 if (packets <= 256) {
1280 itr = min(q_vector->tx.current_itr, q_vector->rx.current_itr);
1281 itr &= ICE_ITR_MASK;
1282
1283 /* Between 56 and 112 is our "goldilocks" zone where we are
1284 * working out "just right". Just report that our current
1285 * ITR is good for us.
1286 */
1287 if (packets <= 112)
1288 goto clear_counts;
1289
1290 /* If packet count is 128 or greater we are likely looking
1291 * at a slight overrun of the delay we want. Try halving
1292 * our delay to see if that will cut the number of packets
1293 * in half per interrupt.
1294 */
1295 itr >>= 1;
1296 itr &= ICE_ITR_MASK;
1297 if (itr < ICE_ITR_ADAPTIVE_MIN_USECS)
1298 itr = ICE_ITR_ADAPTIVE_MIN_USECS;
1299
1300 goto clear_counts;
1301 }
1302
1303 /* The paths below assume we are dealing with a bulk ITR since
1304 * number of packets is greater than 256. We are just going to have
1305 * to compute a value and try to bring the count under control,
1306 * though for smaller packet sizes there isn't much we can do as
1307 * NAPI polling will likely be kicking in sooner rather than later.
1308 */
1309 itr = ICE_ITR_ADAPTIVE_BULK;
1310
1311adjust_by_size_and_speed:
1312
1313 /* based on checks above packets cannot be 0 so division is safe */
1314 itr = ice_adjust_itr_by_size_and_speed(q_vector->vsi->port_info,
1315 bytes / packets, itr);
1316
1317clear_counts:
1318 /* write back value */
1319 rc->target_itr = itr;
1320
1321 /* next update should occur within next jiffy */
1322 rc->next_update = next_update + 1;
1323
1324 rc->total_bytes = 0;
1325 rc->total_pkts = 0;
1326}
1327
1328/**
1329 * ice_buildreg_itr - build value for writing to the GLINT_DYN_CTL register
1330 * @itr_idx: interrupt throttling index
1331 * @itr: interrupt throttling value in usecs
1332 */
1333static u32 ice_buildreg_itr(u16 itr_idx, u16 itr)
1334{
1335 /* The ITR value is reported in microseconds, and the register value is
1336 * recorded in 2 microsecond units. For this reason we only need to
1337 * shift by the GLINT_DYN_CTL_INTERVAL_S - ICE_ITR_GRAN_S to apply this
1338 * granularity as a shift instead of division. The mask makes sure the
1339 * ITR value is never odd so we don't accidentally write into the field
1340 * prior to the ITR field.
1341 */
1342 itr &= ICE_ITR_MASK;
1343
1344 return GLINT_DYN_CTL_INTENA_M | GLINT_DYN_CTL_CLEARPBA_M |
1345 (itr_idx << GLINT_DYN_CTL_ITR_INDX_S) |
1346 (itr << (GLINT_DYN_CTL_INTERVAL_S - ICE_ITR_GRAN_S));
1347}
1348
1349/* The act of updating the ITR will cause it to immediately trigger. In order
1350 * to prevent this from throwing off adaptive update statistics we defer the
1351 * update so that it can only happen so often. So after either Tx or Rx are
1352 * updated we make the adaptive scheme wait until either the ITR completely
1353 * expires via the next_update expiration or we have been through at least
1354 * 3 interrupts.
1355 */
1356#define ITR_COUNTDOWN_START 3
1357
1358/**
1359 * ice_update_ena_itr - Update ITR and re-enable MSIX interrupt
1360 * @q_vector: q_vector for which ITR is being updated and interrupt enabled
1361 */
1362static void ice_update_ena_itr(struct ice_q_vector *q_vector)
1363{
1364 struct ice_ring_container *tx = &q_vector->tx;
1365 struct ice_ring_container *rx = &q_vector->rx;
1366 struct ice_vsi *vsi = q_vector->vsi;
1367 u32 itr_val;
1368
1369 /* when exiting WB_ON_ITR lets set a low ITR value and trigger
1370 * interrupts to expire right away in case we have more work ready to go
1371 * already
1372 */
1373 if (q_vector->itr_countdown == ICE_IN_WB_ON_ITR_MODE) {
1374 itr_val = ice_buildreg_itr(rx->itr_idx, ICE_WB_ON_ITR_USECS);
1375 wr32(&vsi->back->hw, GLINT_DYN_CTL(q_vector->reg_idx), itr_val);
1376 /* set target back to last user set value */
1377 rx->target_itr = rx->itr_setting;
1378 /* set current to what we just wrote and dynamic if needed */
1379 rx->current_itr = ICE_WB_ON_ITR_USECS |
1380 (rx->itr_setting & ICE_ITR_DYNAMIC);
1381 /* allow normal interrupt flow to start */
1382 q_vector->itr_countdown = 0;
1383 return;
1384 }
1385
1386 /* This will do nothing if dynamic updates are not enabled */
1387 ice_update_itr(q_vector, tx);
1388 ice_update_itr(q_vector, rx);
1389
1390 /* This block of logic allows us to get away with only updating
1391 * one ITR value with each interrupt. The idea is to perform a
1392 * pseudo-lazy update with the following criteria.
1393 *
1394 * 1. Rx is given higher priority than Tx if both are in same state
1395 * 2. If we must reduce an ITR that is given highest priority.
1396 * 3. We then give priority to increasing ITR based on amount.
1397 */
1398 if (rx->target_itr < rx->current_itr) {
1399 /* Rx ITR needs to be reduced, this is highest priority */
1400 itr_val = ice_buildreg_itr(rx->itr_idx, rx->target_itr);
1401 rx->current_itr = rx->target_itr;
1402 q_vector->itr_countdown = ITR_COUNTDOWN_START;
1403 } else if ((tx->target_itr < tx->current_itr) ||
1404 ((rx->target_itr - rx->current_itr) <
1405 (tx->target_itr - tx->current_itr))) {
1406 /* Tx ITR needs to be reduced, this is second priority
1407 * Tx ITR needs to be increased more than Rx, fourth priority
1408 */
1409 itr_val = ice_buildreg_itr(tx->itr_idx, tx->target_itr);
1410 tx->current_itr = tx->target_itr;
1411 q_vector->itr_countdown = ITR_COUNTDOWN_START;
1412 } else if (rx->current_itr != rx->target_itr) {
1413 /* Rx ITR needs to be increased, third priority */
1414 itr_val = ice_buildreg_itr(rx->itr_idx, rx->target_itr);
1415 rx->current_itr = rx->target_itr;
1416 q_vector->itr_countdown = ITR_COUNTDOWN_START;
1417 } else {
1418 /* Still have to re-enable the interrupts */
1419 itr_val = ice_buildreg_itr(ICE_ITR_NONE, 0);
1420 if (q_vector->itr_countdown)
1421 q_vector->itr_countdown--;
1422 }
1423
1424 if (!test_bit(__ICE_DOWN, q_vector->vsi->state))
1425 wr32(&q_vector->vsi->back->hw,
1426 GLINT_DYN_CTL(q_vector->reg_idx),
1427 itr_val);
1428}
1429
1430/**
1431 * ice_set_wb_on_itr - set WB_ON_ITR for this q_vector
1432 * @q_vector: q_vector to set WB_ON_ITR on
1433 *
1434 * We need to tell hardware to write-back completed descriptors even when
1435 * interrupts are disabled. Descriptors will be written back on cache line
1436 * boundaries without WB_ON_ITR enabled, but if we don't enable WB_ON_ITR
1437 * descriptors may not be written back if they don't fill a cache line until the
1438 * next interrupt.
1439 *
1440 * This sets the write-back frequency to 2 microseconds as that is the minimum
1441 * value that's not 0 due to ITR granularity. Also, set the INTENA_MSK bit to
1442 * make sure hardware knows we aren't meddling with the INTENA_M bit.
1443 */
1444static void ice_set_wb_on_itr(struct ice_q_vector *q_vector)
1445{
1446 struct ice_vsi *vsi = q_vector->vsi;
1447
1448 /* already in WB_ON_ITR mode no need to change it */
1449 if (q_vector->itr_countdown == ICE_IN_WB_ON_ITR_MODE)
1450 return;
1451
1452 if (q_vector->num_ring_rx)
1453 wr32(&vsi->back->hw, GLINT_DYN_CTL(q_vector->reg_idx),
1454 ICE_GLINT_DYN_CTL_WB_ON_ITR(ICE_WB_ON_ITR_USECS,
1455 ICE_RX_ITR));
1456
1457 if (q_vector->num_ring_tx)
1458 wr32(&vsi->back->hw, GLINT_DYN_CTL(q_vector->reg_idx),
1459 ICE_GLINT_DYN_CTL_WB_ON_ITR(ICE_WB_ON_ITR_USECS,
1460 ICE_TX_ITR));
1461
1462 q_vector->itr_countdown = ICE_IN_WB_ON_ITR_MODE;
1463}
1464
1465/**
1466 * ice_napi_poll - NAPI polling Rx/Tx cleanup routine
1467 * @napi: napi struct with our devices info in it
1468 * @budget: amount of work driver is allowed to do this pass, in packets
1469 *
1470 * This function will clean all queues associated with a q_vector.
1471 *
1472 * Returns the amount of work done
1473 */
1474int ice_napi_poll(struct napi_struct *napi, int budget)
1475{
1476 struct ice_q_vector *q_vector =
1477 container_of(napi, struct ice_q_vector, napi);
1478 bool clean_complete = true;
1479 struct ice_ring *ring;
1480 int budget_per_ring;
1481 int work_done = 0;
1482
1483 /* Since the actual Tx work is minimal, we can give the Tx a larger
1484 * budget and be more aggressive about cleaning up the Tx descriptors.
1485 */
1486 ice_for_each_ring(ring, q_vector->tx)
1487 if (!ice_clean_tx_irq(ring, budget))
1488 clean_complete = false;
1489
1490 /* Handle case where we are called by netpoll with a budget of 0 */
1491 if (unlikely(budget <= 0))
1492 return budget;
1493
1494 /* normally we have 1 Rx ring per q_vector */
1495 if (unlikely(q_vector->num_ring_rx > 1))
1496 /* We attempt to distribute budget to each Rx queue fairly, but
1497 * don't allow the budget to go below 1 because that would exit
1498 * polling early.
1499 */
1500 budget_per_ring = max(budget / q_vector->num_ring_rx, 1);
1501 else
1502 /* Max of 1 Rx ring in this q_vector so give it the budget */
1503 budget_per_ring = budget;
1504
1505 ice_for_each_ring(ring, q_vector->rx) {
1506 int cleaned;
1507
1508 cleaned = ice_clean_rx_irq(ring, budget_per_ring);
1509 work_done += cleaned;
1510 /* if we clean as many as budgeted, we must not be done */
1511 if (cleaned >= budget_per_ring)
1512 clean_complete = false;
1513 }
1514
1515 /* If work not completed, return budget and polling will return */
1516 if (!clean_complete)
1517 return budget;
1518
1519 /* Exit the polling mode, but don't re-enable interrupts if stack might
1520 * poll us due to busy-polling
1521 */
1522 if (likely(napi_complete_done(napi, work_done)))
1523 ice_update_ena_itr(q_vector);
1524 else
1525 ice_set_wb_on_itr(q_vector);
1526
1527 return min_t(int, work_done, budget - 1);
1528}
1529
1530/* helper function for building cmd/type/offset */
1531static __le64
1532build_ctob(u64 td_cmd, u64 td_offset, unsigned int size, u64 td_tag)
1533{
1534 return cpu_to_le64(ICE_TX_DESC_DTYPE_DATA |
1535 (td_cmd << ICE_TXD_QW1_CMD_S) |
1536 (td_offset << ICE_TXD_QW1_OFFSET_S) |
1537 ((u64)size << ICE_TXD_QW1_TX_BUF_SZ_S) |
1538 (td_tag << ICE_TXD_QW1_L2TAG1_S));
1539}
1540
1541/**
1542 * __ice_maybe_stop_tx - 2nd level check for Tx stop conditions
1543 * @tx_ring: the ring to be checked
1544 * @size: the size buffer we want to assure is available
1545 *
1546 * Returns -EBUSY if a stop is needed, else 0
1547 */
1548static int __ice_maybe_stop_tx(struct ice_ring *tx_ring, unsigned int size)
1549{
1550 netif_stop_subqueue(tx_ring->netdev, tx_ring->q_index);
1551 /* Memory barrier before checking head and tail */
1552 smp_mb();
1553
1554 /* Check again in a case another CPU has just made room available. */
1555 if (likely(ICE_DESC_UNUSED(tx_ring) < size))
1556 return -EBUSY;
1557
1558 /* A reprieve! - use start_subqueue because it doesn't call schedule */
1559 netif_start_subqueue(tx_ring->netdev, tx_ring->q_index);
1560 ++tx_ring->tx_stats.restart_q;
1561 return 0;
1562}
1563
1564/**
1565 * ice_maybe_stop_tx - 1st level check for Tx stop conditions
1566 * @tx_ring: the ring to be checked
1567 * @size: the size buffer we want to assure is available
1568 *
1569 * Returns 0 if stop is not needed
1570 */
1571static int ice_maybe_stop_tx(struct ice_ring *tx_ring, unsigned int size)
1572{
1573 if (likely(ICE_DESC_UNUSED(tx_ring) >= size))
1574 return 0;
1575
1576 return __ice_maybe_stop_tx(tx_ring, size);
1577}
1578
1579/**
1580 * ice_tx_map - Build the Tx descriptor
1581 * @tx_ring: ring to send buffer on
1582 * @first: first buffer info buffer to use
1583 * @off: pointer to struct that holds offload parameters
1584 *
1585 * This function loops over the skb data pointed to by *first
1586 * and gets a physical address for each memory location and programs
1587 * it and the length into the transmit descriptor.
1588 */
1589static void
1590ice_tx_map(struct ice_ring *tx_ring, struct ice_tx_buf *first,
1591 struct ice_tx_offload_params *off)
1592{
1593 u64 td_offset, td_tag, td_cmd;
1594 u16 i = tx_ring->next_to_use;
1595 skb_frag_t *frag;
1596 unsigned int data_len, size;
1597 struct ice_tx_desc *tx_desc;
1598 struct ice_tx_buf *tx_buf;
1599 struct sk_buff *skb;
1600 dma_addr_t dma;
1601
1602 td_tag = off->td_l2tag1;
1603 td_cmd = off->td_cmd;
1604 td_offset = off->td_offset;
1605 skb = first->skb;
1606
1607 data_len = skb->data_len;
1608 size = skb_headlen(skb);
1609
1610 tx_desc = ICE_TX_DESC(tx_ring, i);
1611
1612 if (first->tx_flags & ICE_TX_FLAGS_HW_VLAN) {
1613 td_cmd |= (u64)ICE_TX_DESC_CMD_IL2TAG1;
1614 td_tag = (first->tx_flags & ICE_TX_FLAGS_VLAN_M) >>
1615 ICE_TX_FLAGS_VLAN_S;
1616 }
1617
1618 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
1619
1620 tx_buf = first;
1621
1622 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
1623 unsigned int max_data = ICE_MAX_DATA_PER_TXD_ALIGNED;
1624
1625 if (dma_mapping_error(tx_ring->dev, dma))
1626 goto dma_error;
1627
1628 /* record length, and DMA address */
1629 dma_unmap_len_set(tx_buf, len, size);
1630 dma_unmap_addr_set(tx_buf, dma, dma);
1631
1632 /* align size to end of page */
1633 max_data += -dma & (ICE_MAX_READ_REQ_SIZE - 1);
1634 tx_desc->buf_addr = cpu_to_le64(dma);
1635
1636 /* account for data chunks larger than the hardware
1637 * can handle
1638 */
1639 while (unlikely(size > ICE_MAX_DATA_PER_TXD)) {
1640 tx_desc->cmd_type_offset_bsz =
1641 build_ctob(td_cmd, td_offset, max_data, td_tag);
1642
1643 tx_desc++;
1644 i++;
1645
1646 if (i == tx_ring->count) {
1647 tx_desc = ICE_TX_DESC(tx_ring, 0);
1648 i = 0;
1649 }
1650
1651 dma += max_data;
1652 size -= max_data;
1653
1654 max_data = ICE_MAX_DATA_PER_TXD_ALIGNED;
1655 tx_desc->buf_addr = cpu_to_le64(dma);
1656 }
1657
1658 if (likely(!data_len))
1659 break;
1660
1661 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
1662 size, td_tag);
1663
1664 tx_desc++;
1665 i++;
1666
1667 if (i == tx_ring->count) {
1668 tx_desc = ICE_TX_DESC(tx_ring, 0);
1669 i = 0;
1670 }
1671
1672 size = skb_frag_size(frag);
1673 data_len -= size;
1674
1675 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
1676 DMA_TO_DEVICE);
1677
1678 tx_buf = &tx_ring->tx_buf[i];
1679 }
1680
1681 /* record bytecount for BQL */
1682 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
1683
1684 /* record SW timestamp if HW timestamp is not available */
1685 skb_tx_timestamp(first->skb);
1686
1687 i++;
1688 if (i == tx_ring->count)
1689 i = 0;
1690
1691 /* write last descriptor with RS and EOP bits */
1692 td_cmd |= (u64)(ICE_TX_DESC_CMD_EOP | ICE_TX_DESC_CMD_RS);
1693 tx_desc->cmd_type_offset_bsz =
1694 build_ctob(td_cmd, td_offset, size, td_tag);
1695
1696 /* Force memory writes to complete before letting h/w know there
1697 * are new descriptors to fetch.
1698 *
1699 * We also use this memory barrier to make certain all of the
1700 * status bits have been updated before next_to_watch is written.
1701 */
1702 wmb();
1703
1704 /* set next_to_watch value indicating a packet is present */
1705 first->next_to_watch = tx_desc;
1706
1707 tx_ring->next_to_use = i;
1708
1709 ice_maybe_stop_tx(tx_ring, DESC_NEEDED);
1710
1711 /* notify HW of packet */
1712 if (netif_xmit_stopped(txring_txq(tx_ring)) || !netdev_xmit_more()) {
1713 writel(i, tx_ring->tail);
1714 }
1715
1716 return;
1717
1718dma_error:
1719 /* clear DMA mappings for failed tx_buf map */
1720 for (;;) {
1721 tx_buf = &tx_ring->tx_buf[i];
1722 ice_unmap_and_free_tx_buf(tx_ring, tx_buf);
1723 if (tx_buf == first)
1724 break;
1725 if (i == 0)
1726 i = tx_ring->count;
1727 i--;
1728 }
1729
1730 tx_ring->next_to_use = i;
1731}
1732
1733/**
1734 * ice_tx_csum - Enable Tx checksum offloads
1735 * @first: pointer to the first descriptor
1736 * @off: pointer to struct that holds offload parameters
1737 *
1738 * Returns 0 or error (negative) if checksum offload can't happen, 1 otherwise.
1739 */
1740static
1741int ice_tx_csum(struct ice_tx_buf *first, struct ice_tx_offload_params *off)
1742{
1743 u32 l4_len = 0, l3_len = 0, l2_len = 0;
1744 struct sk_buff *skb = first->skb;
1745 union {
1746 struct iphdr *v4;
1747 struct ipv6hdr *v6;
1748 unsigned char *hdr;
1749 } ip;
1750 union {
1751 struct tcphdr *tcp;
1752 unsigned char *hdr;
1753 } l4;
1754 __be16 frag_off, protocol;
1755 unsigned char *exthdr;
1756 u32 offset, cmd = 0;
1757 u8 l4_proto = 0;
1758
1759 if (skb->ip_summed != CHECKSUM_PARTIAL)
1760 return 0;
1761
1762 ip.hdr = skb_network_header(skb);
1763 l4.hdr = skb_transport_header(skb);
1764
1765 /* compute outer L2 header size */
1766 l2_len = ip.hdr - skb->data;
1767 offset = (l2_len / 2) << ICE_TX_DESC_LEN_MACLEN_S;
1768
1769 if (skb->encapsulation)
1770 return -1;
1771
1772 /* Enable IP checksum offloads */
1773 protocol = vlan_get_protocol(skb);
1774 if (protocol == htons(ETH_P_IP)) {
1775 l4_proto = ip.v4->protocol;
1776 /* the stack computes the IP header already, the only time we
1777 * need the hardware to recompute it is in the case of TSO.
1778 */
1779 if (first->tx_flags & ICE_TX_FLAGS_TSO)
1780 cmd |= ICE_TX_DESC_CMD_IIPT_IPV4_CSUM;
1781 else
1782 cmd |= ICE_TX_DESC_CMD_IIPT_IPV4;
1783
1784 } else if (protocol == htons(ETH_P_IPV6)) {
1785 cmd |= ICE_TX_DESC_CMD_IIPT_IPV6;
1786 exthdr = ip.hdr + sizeof(*ip.v6);
1787 l4_proto = ip.v6->nexthdr;
1788 if (l4.hdr != exthdr)
1789 ipv6_skip_exthdr(skb, exthdr - skb->data, &l4_proto,
1790 &frag_off);
1791 } else {
1792 return -1;
1793 }
1794
1795 /* compute inner L3 header size */
1796 l3_len = l4.hdr - ip.hdr;
1797 offset |= (l3_len / 4) << ICE_TX_DESC_LEN_IPLEN_S;
1798
1799 /* Enable L4 checksum offloads */
1800 switch (l4_proto) {
1801 case IPPROTO_TCP:
1802 /* enable checksum offloads */
1803 cmd |= ICE_TX_DESC_CMD_L4T_EOFT_TCP;
1804 l4_len = l4.tcp->doff;
1805 offset |= l4_len << ICE_TX_DESC_LEN_L4_LEN_S;
1806 break;
1807 case IPPROTO_UDP:
1808 /* enable UDP checksum offload */
1809 cmd |= ICE_TX_DESC_CMD_L4T_EOFT_UDP;
1810 l4_len = (sizeof(struct udphdr) >> 2);
1811 offset |= l4_len << ICE_TX_DESC_LEN_L4_LEN_S;
1812 break;
1813 case IPPROTO_SCTP:
1814 /* enable SCTP checksum offload */
1815 cmd |= ICE_TX_DESC_CMD_L4T_EOFT_SCTP;
1816 l4_len = sizeof(struct sctphdr) >> 2;
1817 offset |= l4_len << ICE_TX_DESC_LEN_L4_LEN_S;
1818 break;
1819
1820 default:
1821 if (first->tx_flags & ICE_TX_FLAGS_TSO)
1822 return -1;
1823 skb_checksum_help(skb);
1824 return 0;
1825 }
1826
1827 off->td_cmd |= cmd;
1828 off->td_offset |= offset;
1829 return 1;
1830}
1831
1832/**
1833 * ice_tx_prepare_vlan_flags - prepare generic Tx VLAN tagging flags for HW
1834 * @tx_ring: ring to send buffer on
1835 * @first: pointer to struct ice_tx_buf
1836 *
1837 * Checks the skb and set up correspondingly several generic transmit flags
1838 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1839 *
1840 * Returns error code indicate the frame should be dropped upon error and the
1841 * otherwise returns 0 to indicate the flags has been set properly.
1842 */
1843static int
1844ice_tx_prepare_vlan_flags(struct ice_ring *tx_ring, struct ice_tx_buf *first)
1845{
1846 struct sk_buff *skb = first->skb;
1847 __be16 protocol = skb->protocol;
1848
1849 if (protocol == htons(ETH_P_8021Q) &&
1850 !(tx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_TX)) {
1851 /* when HW VLAN acceleration is turned off by the user the
1852 * stack sets the protocol to 8021q so that the driver
1853 * can take any steps required to support the SW only
1854 * VLAN handling. In our case the driver doesn't need
1855 * to take any further steps so just set the protocol
1856 * to the encapsulated ethertype.
1857 */
1858 skb->protocol = vlan_get_protocol(skb);
1859 return 0;
1860 }
1861
1862 /* if we have a HW VLAN tag being added, default to the HW one */
1863 if (skb_vlan_tag_present(skb)) {
1864 first->tx_flags |= skb_vlan_tag_get(skb) << ICE_TX_FLAGS_VLAN_S;
1865 first->tx_flags |= ICE_TX_FLAGS_HW_VLAN;
1866 } else if (protocol == htons(ETH_P_8021Q)) {
1867 struct vlan_hdr *vhdr, _vhdr;
1868
1869 /* for SW VLAN, check the next protocol and store the tag */
1870 vhdr = (struct vlan_hdr *)skb_header_pointer(skb, ETH_HLEN,
1871 sizeof(_vhdr),
1872 &_vhdr);
1873 if (!vhdr)
1874 return -EINVAL;
1875
1876 first->tx_flags |= ntohs(vhdr->h_vlan_TCI) <<
1877 ICE_TX_FLAGS_VLAN_S;
1878 first->tx_flags |= ICE_TX_FLAGS_SW_VLAN;
1879 }
1880
1881 return ice_tx_prepare_vlan_flags_dcb(tx_ring, first);
1882}
1883
1884/**
1885 * ice_tso - computes mss and TSO length to prepare for TSO
1886 * @first: pointer to struct ice_tx_buf
1887 * @off: pointer to struct that holds offload parameters
1888 *
1889 * Returns 0 or error (negative) if TSO can't happen, 1 otherwise.
1890 */
1891static
1892int ice_tso(struct ice_tx_buf *first, struct ice_tx_offload_params *off)
1893{
1894 struct sk_buff *skb = first->skb;
1895 union {
1896 struct iphdr *v4;
1897 struct ipv6hdr *v6;
1898 unsigned char *hdr;
1899 } ip;
1900 union {
1901 struct tcphdr *tcp;
1902 unsigned char *hdr;
1903 } l4;
1904 u64 cd_mss, cd_tso_len;
1905 u32 paylen, l4_start;
1906 int err;
1907
1908 if (skb->ip_summed != CHECKSUM_PARTIAL)
1909 return 0;
1910
1911 if (!skb_is_gso(skb))
1912 return 0;
1913
1914 err = skb_cow_head(skb, 0);
1915 if (err < 0)
1916 return err;
1917
1918 /* cppcheck-suppress unreadVariable */
1919 ip.hdr = skb_network_header(skb);
1920 l4.hdr = skb_transport_header(skb);
1921
1922 /* initialize outer IP header fields */
1923 if (ip.v4->version == 4) {
1924 ip.v4->tot_len = 0;
1925 ip.v4->check = 0;
1926 } else {
1927 ip.v6->payload_len = 0;
1928 }
1929
1930 /* determine offset of transport header */
1931 l4_start = l4.hdr - skb->data;
1932
1933 /* remove payload length from checksum */
1934 paylen = skb->len - l4_start;
1935 csum_replace_by_diff(&l4.tcp->check, (__force __wsum)htonl(paylen));
1936
1937 /* compute length of segmentation header */
1938 off->header_len = (l4.tcp->doff * 4) + l4_start;
1939
1940 /* update gso_segs and bytecount */
1941 first->gso_segs = skb_shinfo(skb)->gso_segs;
1942 first->bytecount += (first->gso_segs - 1) * off->header_len;
1943
1944 cd_tso_len = skb->len - off->header_len;
1945 cd_mss = skb_shinfo(skb)->gso_size;
1946
1947 /* record cdesc_qw1 with TSO parameters */
1948 off->cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX |
1949 (ICE_TX_CTX_DESC_TSO << ICE_TXD_CTX_QW1_CMD_S) |
1950 (cd_tso_len << ICE_TXD_CTX_QW1_TSO_LEN_S) |
1951 (cd_mss << ICE_TXD_CTX_QW1_MSS_S));
1952 first->tx_flags |= ICE_TX_FLAGS_TSO;
1953 return 1;
1954}
1955
1956/**
1957 * ice_txd_use_count - estimate the number of descriptors needed for Tx
1958 * @size: transmit request size in bytes
1959 *
1960 * Due to hardware alignment restrictions (4K alignment), we need to
1961 * assume that we can have no more than 12K of data per descriptor, even
1962 * though each descriptor can take up to 16K - 1 bytes of aligned memory.
1963 * Thus, we need to divide by 12K. But division is slow! Instead,
1964 * we decompose the operation into shifts and one relatively cheap
1965 * multiply operation.
1966 *
1967 * To divide by 12K, we first divide by 4K, then divide by 3:
1968 * To divide by 4K, shift right by 12 bits
1969 * To divide by 3, multiply by 85, then divide by 256
1970 * (Divide by 256 is done by shifting right by 8 bits)
1971 * Finally, we add one to round up. Because 256 isn't an exact multiple of
1972 * 3, we'll underestimate near each multiple of 12K. This is actually more
1973 * accurate as we have 4K - 1 of wiggle room that we can fit into the last
1974 * segment. For our purposes this is accurate out to 1M which is orders of
1975 * magnitude greater than our largest possible GSO size.
1976 *
1977 * This would then be implemented as:
1978 * return (((size >> 12) * 85) >> 8) + ICE_DESCS_FOR_SKB_DATA_PTR;
1979 *
1980 * Since multiplication and division are commutative, we can reorder
1981 * operations into:
1982 * return ((size * 85) >> 20) + ICE_DESCS_FOR_SKB_DATA_PTR;
1983 */
1984static unsigned int ice_txd_use_count(unsigned int size)
1985{
1986 return ((size * 85) >> 20) + ICE_DESCS_FOR_SKB_DATA_PTR;
1987}
1988
1989/**
1990 * ice_xmit_desc_count - calculate number of Tx descriptors needed
1991 * @skb: send buffer
1992 *
1993 * Returns number of data descriptors needed for this skb.
1994 */
1995static unsigned int ice_xmit_desc_count(struct sk_buff *skb)
1996{
1997 const skb_frag_t *frag = &skb_shinfo(skb)->frags[0];
1998 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
1999 unsigned int count = 0, size = skb_headlen(skb);
2000
2001 for (;;) {
2002 count += ice_txd_use_count(size);
2003
2004 if (!nr_frags--)
2005 break;
2006
2007 size = skb_frag_size(frag++);
2008 }
2009
2010 return count;
2011}
2012
2013/**
2014 * __ice_chk_linearize - Check if there are more than 8 buffers per packet
2015 * @skb: send buffer
2016 *
2017 * Note: This HW can't DMA more than 8 buffers to build a packet on the wire
2018 * and so we need to figure out the cases where we need to linearize the skb.
2019 *
2020 * For TSO we need to count the TSO header and segment payload separately.
2021 * As such we need to check cases where we have 7 fragments or more as we
2022 * can potentially require 9 DMA transactions, 1 for the TSO header, 1 for
2023 * the segment payload in the first descriptor, and another 7 for the
2024 * fragments.
2025 */
2026static bool __ice_chk_linearize(struct sk_buff *skb)
2027{
2028 const skb_frag_t *frag, *stale;
2029 int nr_frags, sum;
2030
2031 /* no need to check if number of frags is less than 7 */
2032 nr_frags = skb_shinfo(skb)->nr_frags;
2033 if (nr_frags < (ICE_MAX_BUF_TXD - 1))
2034 return false;
2035
2036 /* We need to walk through the list and validate that each group
2037 * of 6 fragments totals at least gso_size.
2038 */
2039 nr_frags -= ICE_MAX_BUF_TXD - 2;
2040 frag = &skb_shinfo(skb)->frags[0];
2041
2042 /* Initialize size to the negative value of gso_size minus 1. We
2043 * use this as the worst case scenerio in which the frag ahead
2044 * of us only provides one byte which is why we are limited to 6
2045 * descriptors for a single transmit as the header and previous
2046 * fragment are already consuming 2 descriptors.
2047 */
2048 sum = 1 - skb_shinfo(skb)->gso_size;
2049
2050 /* Add size of frags 0 through 4 to create our initial sum */
2051 sum += skb_frag_size(frag++);
2052 sum += skb_frag_size(frag++);
2053 sum += skb_frag_size(frag++);
2054 sum += skb_frag_size(frag++);
2055 sum += skb_frag_size(frag++);
2056
2057 /* Walk through fragments adding latest fragment, testing it, and
2058 * then removing stale fragments from the sum.
2059 */
2060 stale = &skb_shinfo(skb)->frags[0];
2061 for (;;) {
2062 sum += skb_frag_size(frag++);
2063
2064 /* if sum is negative we failed to make sufficient progress */
2065 if (sum < 0)
2066 return true;
2067
2068 if (!nr_frags--)
2069 break;
2070
2071 sum -= skb_frag_size(stale++);
2072 }
2073
2074 return false;
2075}
2076
2077/**
2078 * ice_chk_linearize - Check if there are more than 8 fragments per packet
2079 * @skb: send buffer
2080 * @count: number of buffers used
2081 *
2082 * Note: Our HW can't scatter-gather more than 8 fragments to build
2083 * a packet on the wire and so we need to figure out the cases where we
2084 * need to linearize the skb.
2085 */
2086static bool ice_chk_linearize(struct sk_buff *skb, unsigned int count)
2087{
2088 /* Both TSO and single send will work if count is less than 8 */
2089 if (likely(count < ICE_MAX_BUF_TXD))
2090 return false;
2091
2092 if (skb_is_gso(skb))
2093 return __ice_chk_linearize(skb);
2094
2095 /* we can support up to 8 data buffers for a single send */
2096 return count != ICE_MAX_BUF_TXD;
2097}
2098
2099/**
2100 * ice_xmit_frame_ring - Sends buffer on Tx ring
2101 * @skb: send buffer
2102 * @tx_ring: ring to send buffer on
2103 *
2104 * Returns NETDEV_TX_OK if sent, else an error code
2105 */
2106static netdev_tx_t
2107ice_xmit_frame_ring(struct sk_buff *skb, struct ice_ring *tx_ring)
2108{
2109 struct ice_tx_offload_params offload = { 0 };
2110 struct ice_vsi *vsi = tx_ring->vsi;
2111 struct ice_tx_buf *first;
2112 unsigned int count;
2113 int tso, csum;
2114
2115 count = ice_xmit_desc_count(skb);
2116 if (ice_chk_linearize(skb, count)) {
2117 if (__skb_linearize(skb))
2118 goto out_drop;
2119 count = ice_txd_use_count(skb->len);
2120 tx_ring->tx_stats.tx_linearize++;
2121 }
2122
2123 /* need: 1 descriptor per page * PAGE_SIZE/ICE_MAX_DATA_PER_TXD,
2124 * + 1 desc for skb_head_len/ICE_MAX_DATA_PER_TXD,
2125 * + 4 desc gap to avoid the cache line where head is,
2126 * + 1 desc for context descriptor,
2127 * otherwise try next time
2128 */
2129 if (ice_maybe_stop_tx(tx_ring, count + ICE_DESCS_PER_CACHE_LINE +
2130 ICE_DESCS_FOR_CTX_DESC)) {
2131 tx_ring->tx_stats.tx_busy++;
2132 return NETDEV_TX_BUSY;
2133 }
2134
2135 offload.tx_ring = tx_ring;
2136
2137 /* record the location of the first descriptor for this packet */
2138 first = &tx_ring->tx_buf[tx_ring->next_to_use];
2139 first->skb = skb;
2140 first->bytecount = max_t(unsigned int, skb->len, ETH_ZLEN);
2141 first->gso_segs = 1;
2142 first->tx_flags = 0;
2143
2144 /* prepare the VLAN tagging flags for Tx */
2145 if (ice_tx_prepare_vlan_flags(tx_ring, first))
2146 goto out_drop;
2147
2148 /* set up TSO offload */
2149 tso = ice_tso(first, &offload);
2150 if (tso < 0)
2151 goto out_drop;
2152
2153 /* always set up Tx checksum offload */
2154 csum = ice_tx_csum(first, &offload);
2155 if (csum < 0)
2156 goto out_drop;
2157
2158 /* allow CONTROL frames egress from main VSI if FW LLDP disabled */
2159 if (unlikely(skb->priority == TC_PRIO_CONTROL &&
2160 vsi->type == ICE_VSI_PF &&
2161 vsi->port_info->is_sw_lldp))
2162 offload.cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX |
2163 ICE_TX_CTX_DESC_SWTCH_UPLINK <<
2164 ICE_TXD_CTX_QW1_CMD_S);
2165
2166 if (offload.cd_qw1 & ICE_TX_DESC_DTYPE_CTX) {
2167 struct ice_tx_ctx_desc *cdesc;
2168 int i = tx_ring->next_to_use;
2169
2170 /* grab the next descriptor */
2171 cdesc = ICE_TX_CTX_DESC(tx_ring, i);
2172 i++;
2173 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
2174
2175 /* setup context descriptor */
2176 cdesc->tunneling_params = cpu_to_le32(offload.cd_tunnel_params);
2177 cdesc->l2tag2 = cpu_to_le16(offload.cd_l2tag2);
2178 cdesc->rsvd = cpu_to_le16(0);
2179 cdesc->qw1 = cpu_to_le64(offload.cd_qw1);
2180 }
2181
2182 ice_tx_map(tx_ring, first, &offload);
2183 return NETDEV_TX_OK;
2184
2185out_drop:
2186 dev_kfree_skb_any(skb);
2187 return NETDEV_TX_OK;
2188}
2189
2190/**
2191 * ice_start_xmit - Selects the correct VSI and Tx queue to send buffer
2192 * @skb: send buffer
2193 * @netdev: network interface device structure
2194 *
2195 * Returns NETDEV_TX_OK if sent, else an error code
2196 */
2197netdev_tx_t ice_start_xmit(struct sk_buff *skb, struct net_device *netdev)
2198{
2199 struct ice_netdev_priv *np = netdev_priv(netdev);
2200 struct ice_vsi *vsi = np->vsi;
2201 struct ice_ring *tx_ring;
2202
2203 tx_ring = vsi->tx_rings[skb->queue_mapping];
2204
2205 /* hardware can't handle really short frames, hardware padding works
2206 * beyond this point
2207 */
2208 if (skb_put_padto(skb, ICE_MIN_TX_LEN))
2209 return NETDEV_TX_OK;
2210
2211 return ice_xmit_frame_ring(skb, tx_ring);
2212}
1// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018, Intel Corporation. */
3
4/* The driver transmit and receive code */
5
6#include <linux/mm.h>
7#include <linux/netdevice.h>
8#include <linux/prefetch.h>
9#include <linux/bpf_trace.h>
10#include <net/dsfield.h>
11#include <net/mpls.h>
12#include <net/xdp.h>
13#include "ice_txrx_lib.h"
14#include "ice_lib.h"
15#include "ice.h"
16#include "ice_trace.h"
17#include "ice_dcb_lib.h"
18#include "ice_xsk.h"
19#include "ice_eswitch.h"
20
21#define ICE_RX_HDR_SIZE 256
22
23#define FDIR_DESC_RXDID 0x40
24#define ICE_FDIR_CLEAN_DELAY 10
25
26/**
27 * ice_prgm_fdir_fltr - Program a Flow Director filter
28 * @vsi: VSI to send dummy packet
29 * @fdir_desc: flow director descriptor
30 * @raw_packet: allocated buffer for flow director
31 */
32int
33ice_prgm_fdir_fltr(struct ice_vsi *vsi, struct ice_fltr_desc *fdir_desc,
34 u8 *raw_packet)
35{
36 struct ice_tx_buf *tx_buf, *first;
37 struct ice_fltr_desc *f_desc;
38 struct ice_tx_desc *tx_desc;
39 struct ice_tx_ring *tx_ring;
40 struct device *dev;
41 dma_addr_t dma;
42 u32 td_cmd;
43 u16 i;
44
45 /* VSI and Tx ring */
46 if (!vsi)
47 return -ENOENT;
48 tx_ring = vsi->tx_rings[0];
49 if (!tx_ring || !tx_ring->desc)
50 return -ENOENT;
51 dev = tx_ring->dev;
52
53 /* we are using two descriptors to add/del a filter and we can wait */
54 for (i = ICE_FDIR_CLEAN_DELAY; ICE_DESC_UNUSED(tx_ring) < 2; i--) {
55 if (!i)
56 return -EAGAIN;
57 msleep_interruptible(1);
58 }
59
60 dma = dma_map_single(dev, raw_packet, ICE_FDIR_MAX_RAW_PKT_SIZE,
61 DMA_TO_DEVICE);
62
63 if (dma_mapping_error(dev, dma))
64 return -EINVAL;
65
66 /* grab the next descriptor */
67 i = tx_ring->next_to_use;
68 first = &tx_ring->tx_buf[i];
69 f_desc = ICE_TX_FDIRDESC(tx_ring, i);
70 memcpy(f_desc, fdir_desc, sizeof(*f_desc));
71
72 i++;
73 i = (i < tx_ring->count) ? i : 0;
74 tx_desc = ICE_TX_DESC(tx_ring, i);
75 tx_buf = &tx_ring->tx_buf[i];
76
77 i++;
78 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
79
80 memset(tx_buf, 0, sizeof(*tx_buf));
81 dma_unmap_len_set(tx_buf, len, ICE_FDIR_MAX_RAW_PKT_SIZE);
82 dma_unmap_addr_set(tx_buf, dma, dma);
83
84 tx_desc->buf_addr = cpu_to_le64(dma);
85 td_cmd = ICE_TXD_LAST_DESC_CMD | ICE_TX_DESC_CMD_DUMMY |
86 ICE_TX_DESC_CMD_RE;
87
88 tx_buf->tx_flags = ICE_TX_FLAGS_DUMMY_PKT;
89 tx_buf->raw_buf = raw_packet;
90
91 tx_desc->cmd_type_offset_bsz =
92 ice_build_ctob(td_cmd, 0, ICE_FDIR_MAX_RAW_PKT_SIZE, 0);
93
94 /* Force memory write to complete before letting h/w know
95 * there are new descriptors to fetch.
96 */
97 wmb();
98
99 /* mark the data descriptor to be watched */
100 first->next_to_watch = tx_desc;
101
102 writel(tx_ring->next_to_use, tx_ring->tail);
103
104 return 0;
105}
106
107/**
108 * ice_unmap_and_free_tx_buf - Release a Tx buffer
109 * @ring: the ring that owns the buffer
110 * @tx_buf: the buffer to free
111 */
112static void
113ice_unmap_and_free_tx_buf(struct ice_tx_ring *ring, struct ice_tx_buf *tx_buf)
114{
115 if (tx_buf->skb) {
116 if (tx_buf->tx_flags & ICE_TX_FLAGS_DUMMY_PKT)
117 devm_kfree(ring->dev, tx_buf->raw_buf);
118 else if (ice_ring_is_xdp(ring))
119 page_frag_free(tx_buf->raw_buf);
120 else
121 dev_kfree_skb_any(tx_buf->skb);
122 if (dma_unmap_len(tx_buf, len))
123 dma_unmap_single(ring->dev,
124 dma_unmap_addr(tx_buf, dma),
125 dma_unmap_len(tx_buf, len),
126 DMA_TO_DEVICE);
127 } else if (dma_unmap_len(tx_buf, len)) {
128 dma_unmap_page(ring->dev,
129 dma_unmap_addr(tx_buf, dma),
130 dma_unmap_len(tx_buf, len),
131 DMA_TO_DEVICE);
132 }
133
134 tx_buf->next_to_watch = NULL;
135 tx_buf->skb = NULL;
136 dma_unmap_len_set(tx_buf, len, 0);
137 /* tx_buf must be completely set up in the transmit path */
138}
139
140static struct netdev_queue *txring_txq(const struct ice_tx_ring *ring)
141{
142 return netdev_get_tx_queue(ring->netdev, ring->q_index);
143}
144
145/**
146 * ice_clean_tx_ring - Free any empty Tx buffers
147 * @tx_ring: ring to be cleaned
148 */
149void ice_clean_tx_ring(struct ice_tx_ring *tx_ring)
150{
151 u32 size;
152 u16 i;
153
154 if (ice_ring_is_xdp(tx_ring) && tx_ring->xsk_pool) {
155 ice_xsk_clean_xdp_ring(tx_ring);
156 goto tx_skip_free;
157 }
158
159 /* ring already cleared, nothing to do */
160 if (!tx_ring->tx_buf)
161 return;
162
163 /* Free all the Tx ring sk_buffs */
164 for (i = 0; i < tx_ring->count; i++)
165 ice_unmap_and_free_tx_buf(tx_ring, &tx_ring->tx_buf[i]);
166
167tx_skip_free:
168 memset(tx_ring->tx_buf, 0, sizeof(*tx_ring->tx_buf) * tx_ring->count);
169
170 size = ALIGN(tx_ring->count * sizeof(struct ice_tx_desc),
171 PAGE_SIZE);
172 /* Zero out the descriptor ring */
173 memset(tx_ring->desc, 0, size);
174
175 tx_ring->next_to_use = 0;
176 tx_ring->next_to_clean = 0;
177 tx_ring->next_dd = ICE_RING_QUARTER(tx_ring) - 1;
178 tx_ring->next_rs = ICE_RING_QUARTER(tx_ring) - 1;
179
180 if (!tx_ring->netdev)
181 return;
182
183 /* cleanup Tx queue statistics */
184 netdev_tx_reset_queue(txring_txq(tx_ring));
185}
186
187/**
188 * ice_free_tx_ring - Free Tx resources per queue
189 * @tx_ring: Tx descriptor ring for a specific queue
190 *
191 * Free all transmit software resources
192 */
193void ice_free_tx_ring(struct ice_tx_ring *tx_ring)
194{
195 u32 size;
196
197 ice_clean_tx_ring(tx_ring);
198 devm_kfree(tx_ring->dev, tx_ring->tx_buf);
199 tx_ring->tx_buf = NULL;
200
201 if (tx_ring->desc) {
202 size = ALIGN(tx_ring->count * sizeof(struct ice_tx_desc),
203 PAGE_SIZE);
204 dmam_free_coherent(tx_ring->dev, size,
205 tx_ring->desc, tx_ring->dma);
206 tx_ring->desc = NULL;
207 }
208}
209
210/**
211 * ice_clean_tx_irq - Reclaim resources after transmit completes
212 * @tx_ring: Tx ring to clean
213 * @napi_budget: Used to determine if we are in netpoll
214 *
215 * Returns true if there's any budget left (e.g. the clean is finished)
216 */
217static bool ice_clean_tx_irq(struct ice_tx_ring *tx_ring, int napi_budget)
218{
219 unsigned int total_bytes = 0, total_pkts = 0;
220 unsigned int budget = ICE_DFLT_IRQ_WORK;
221 struct ice_vsi *vsi = tx_ring->vsi;
222 s16 i = tx_ring->next_to_clean;
223 struct ice_tx_desc *tx_desc;
224 struct ice_tx_buf *tx_buf;
225
226 /* get the bql data ready */
227 netdev_txq_bql_complete_prefetchw(txring_txq(tx_ring));
228
229 tx_buf = &tx_ring->tx_buf[i];
230 tx_desc = ICE_TX_DESC(tx_ring, i);
231 i -= tx_ring->count;
232
233 prefetch(&vsi->state);
234
235 do {
236 struct ice_tx_desc *eop_desc = tx_buf->next_to_watch;
237
238 /* if next_to_watch is not set then there is no work pending */
239 if (!eop_desc)
240 break;
241
242 /* follow the guidelines of other drivers */
243 prefetchw(&tx_buf->skb->users);
244
245 smp_rmb(); /* prevent any other reads prior to eop_desc */
246
247 ice_trace(clean_tx_irq, tx_ring, tx_desc, tx_buf);
248 /* if the descriptor isn't done, no work yet to do */
249 if (!(eop_desc->cmd_type_offset_bsz &
250 cpu_to_le64(ICE_TX_DESC_DTYPE_DESC_DONE)))
251 break;
252
253 /* clear next_to_watch to prevent false hangs */
254 tx_buf->next_to_watch = NULL;
255
256 /* update the statistics for this packet */
257 total_bytes += tx_buf->bytecount;
258 total_pkts += tx_buf->gso_segs;
259
260 /* free the skb */
261 napi_consume_skb(tx_buf->skb, napi_budget);
262
263 /* unmap skb header data */
264 dma_unmap_single(tx_ring->dev,
265 dma_unmap_addr(tx_buf, dma),
266 dma_unmap_len(tx_buf, len),
267 DMA_TO_DEVICE);
268
269 /* clear tx_buf data */
270 tx_buf->skb = NULL;
271 dma_unmap_len_set(tx_buf, len, 0);
272
273 /* unmap remaining buffers */
274 while (tx_desc != eop_desc) {
275 ice_trace(clean_tx_irq_unmap, tx_ring, tx_desc, tx_buf);
276 tx_buf++;
277 tx_desc++;
278 i++;
279 if (unlikely(!i)) {
280 i -= tx_ring->count;
281 tx_buf = tx_ring->tx_buf;
282 tx_desc = ICE_TX_DESC(tx_ring, 0);
283 }
284
285 /* unmap any remaining paged data */
286 if (dma_unmap_len(tx_buf, len)) {
287 dma_unmap_page(tx_ring->dev,
288 dma_unmap_addr(tx_buf, dma),
289 dma_unmap_len(tx_buf, len),
290 DMA_TO_DEVICE);
291 dma_unmap_len_set(tx_buf, len, 0);
292 }
293 }
294 ice_trace(clean_tx_irq_unmap_eop, tx_ring, tx_desc, tx_buf);
295
296 /* move us one more past the eop_desc for start of next pkt */
297 tx_buf++;
298 tx_desc++;
299 i++;
300 if (unlikely(!i)) {
301 i -= tx_ring->count;
302 tx_buf = tx_ring->tx_buf;
303 tx_desc = ICE_TX_DESC(tx_ring, 0);
304 }
305
306 prefetch(tx_desc);
307
308 /* update budget accounting */
309 budget--;
310 } while (likely(budget));
311
312 i += tx_ring->count;
313 tx_ring->next_to_clean = i;
314
315 ice_update_tx_ring_stats(tx_ring, total_pkts, total_bytes);
316 netdev_tx_completed_queue(txring_txq(tx_ring), total_pkts, total_bytes);
317
318#define TX_WAKE_THRESHOLD ((s16)(DESC_NEEDED * 2))
319 if (unlikely(total_pkts && netif_carrier_ok(tx_ring->netdev) &&
320 (ICE_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
321 /* Make sure that anybody stopping the queue after this
322 * sees the new next_to_clean.
323 */
324 smp_mb();
325 if (netif_tx_queue_stopped(txring_txq(tx_ring)) &&
326 !test_bit(ICE_VSI_DOWN, vsi->state)) {
327 netif_tx_wake_queue(txring_txq(tx_ring));
328 ++tx_ring->ring_stats->tx_stats.restart_q;
329 }
330 }
331
332 return !!budget;
333}
334
335/**
336 * ice_setup_tx_ring - Allocate the Tx descriptors
337 * @tx_ring: the Tx ring to set up
338 *
339 * Return 0 on success, negative on error
340 */
341int ice_setup_tx_ring(struct ice_tx_ring *tx_ring)
342{
343 struct device *dev = tx_ring->dev;
344 u32 size;
345
346 if (!dev)
347 return -ENOMEM;
348
349 /* warn if we are about to overwrite the pointer */
350 WARN_ON(tx_ring->tx_buf);
351 tx_ring->tx_buf =
352 devm_kcalloc(dev, sizeof(*tx_ring->tx_buf), tx_ring->count,
353 GFP_KERNEL);
354 if (!tx_ring->tx_buf)
355 return -ENOMEM;
356
357 /* round up to nearest page */
358 size = ALIGN(tx_ring->count * sizeof(struct ice_tx_desc),
359 PAGE_SIZE);
360 tx_ring->desc = dmam_alloc_coherent(dev, size, &tx_ring->dma,
361 GFP_KERNEL);
362 if (!tx_ring->desc) {
363 dev_err(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
364 size);
365 goto err;
366 }
367
368 tx_ring->next_to_use = 0;
369 tx_ring->next_to_clean = 0;
370 tx_ring->ring_stats->tx_stats.prev_pkt = -1;
371 return 0;
372
373err:
374 devm_kfree(dev, tx_ring->tx_buf);
375 tx_ring->tx_buf = NULL;
376 return -ENOMEM;
377}
378
379/**
380 * ice_clean_rx_ring - Free Rx buffers
381 * @rx_ring: ring to be cleaned
382 */
383void ice_clean_rx_ring(struct ice_rx_ring *rx_ring)
384{
385 struct device *dev = rx_ring->dev;
386 u32 size;
387 u16 i;
388
389 /* ring already cleared, nothing to do */
390 if (!rx_ring->rx_buf)
391 return;
392
393 if (rx_ring->skb) {
394 dev_kfree_skb(rx_ring->skb);
395 rx_ring->skb = NULL;
396 }
397
398 if (rx_ring->xsk_pool) {
399 ice_xsk_clean_rx_ring(rx_ring);
400 goto rx_skip_free;
401 }
402
403 /* Free all the Rx ring sk_buffs */
404 for (i = 0; i < rx_ring->count; i++) {
405 struct ice_rx_buf *rx_buf = &rx_ring->rx_buf[i];
406
407 if (!rx_buf->page)
408 continue;
409
410 /* Invalidate cache lines that may have been written to by
411 * device so that we avoid corrupting memory.
412 */
413 dma_sync_single_range_for_cpu(dev, rx_buf->dma,
414 rx_buf->page_offset,
415 rx_ring->rx_buf_len,
416 DMA_FROM_DEVICE);
417
418 /* free resources associated with mapping */
419 dma_unmap_page_attrs(dev, rx_buf->dma, ice_rx_pg_size(rx_ring),
420 DMA_FROM_DEVICE, ICE_RX_DMA_ATTR);
421 __page_frag_cache_drain(rx_buf->page, rx_buf->pagecnt_bias);
422
423 rx_buf->page = NULL;
424 rx_buf->page_offset = 0;
425 }
426
427rx_skip_free:
428 if (rx_ring->xsk_pool)
429 memset(rx_ring->xdp_buf, 0, array_size(rx_ring->count, sizeof(*rx_ring->xdp_buf)));
430 else
431 memset(rx_ring->rx_buf, 0, array_size(rx_ring->count, sizeof(*rx_ring->rx_buf)));
432
433 /* Zero out the descriptor ring */
434 size = ALIGN(rx_ring->count * sizeof(union ice_32byte_rx_desc),
435 PAGE_SIZE);
436 memset(rx_ring->desc, 0, size);
437
438 rx_ring->next_to_alloc = 0;
439 rx_ring->next_to_clean = 0;
440 rx_ring->next_to_use = 0;
441}
442
443/**
444 * ice_free_rx_ring - Free Rx resources
445 * @rx_ring: ring to clean the resources from
446 *
447 * Free all receive software resources
448 */
449void ice_free_rx_ring(struct ice_rx_ring *rx_ring)
450{
451 u32 size;
452
453 ice_clean_rx_ring(rx_ring);
454 if (rx_ring->vsi->type == ICE_VSI_PF)
455 if (xdp_rxq_info_is_reg(&rx_ring->xdp_rxq))
456 xdp_rxq_info_unreg(&rx_ring->xdp_rxq);
457 rx_ring->xdp_prog = NULL;
458 if (rx_ring->xsk_pool) {
459 kfree(rx_ring->xdp_buf);
460 rx_ring->xdp_buf = NULL;
461 } else {
462 kfree(rx_ring->rx_buf);
463 rx_ring->rx_buf = NULL;
464 }
465
466 if (rx_ring->desc) {
467 size = ALIGN(rx_ring->count * sizeof(union ice_32byte_rx_desc),
468 PAGE_SIZE);
469 dmam_free_coherent(rx_ring->dev, size,
470 rx_ring->desc, rx_ring->dma);
471 rx_ring->desc = NULL;
472 }
473}
474
475/**
476 * ice_setup_rx_ring - Allocate the Rx descriptors
477 * @rx_ring: the Rx ring to set up
478 *
479 * Return 0 on success, negative on error
480 */
481int ice_setup_rx_ring(struct ice_rx_ring *rx_ring)
482{
483 struct device *dev = rx_ring->dev;
484 u32 size;
485
486 if (!dev)
487 return -ENOMEM;
488
489 /* warn if we are about to overwrite the pointer */
490 WARN_ON(rx_ring->rx_buf);
491 rx_ring->rx_buf =
492 kcalloc(rx_ring->count, sizeof(*rx_ring->rx_buf), GFP_KERNEL);
493 if (!rx_ring->rx_buf)
494 return -ENOMEM;
495
496 /* round up to nearest page */
497 size = ALIGN(rx_ring->count * sizeof(union ice_32byte_rx_desc),
498 PAGE_SIZE);
499 rx_ring->desc = dmam_alloc_coherent(dev, size, &rx_ring->dma,
500 GFP_KERNEL);
501 if (!rx_ring->desc) {
502 dev_err(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
503 size);
504 goto err;
505 }
506
507 rx_ring->next_to_use = 0;
508 rx_ring->next_to_clean = 0;
509
510 if (ice_is_xdp_ena_vsi(rx_ring->vsi))
511 WRITE_ONCE(rx_ring->xdp_prog, rx_ring->vsi->xdp_prog);
512
513 if (rx_ring->vsi->type == ICE_VSI_PF &&
514 !xdp_rxq_info_is_reg(&rx_ring->xdp_rxq))
515 if (xdp_rxq_info_reg(&rx_ring->xdp_rxq, rx_ring->netdev,
516 rx_ring->q_index, rx_ring->q_vector->napi.napi_id))
517 goto err;
518 return 0;
519
520err:
521 kfree(rx_ring->rx_buf);
522 rx_ring->rx_buf = NULL;
523 return -ENOMEM;
524}
525
526static unsigned int
527ice_rx_frame_truesize(struct ice_rx_ring *rx_ring, unsigned int __maybe_unused size)
528{
529 unsigned int truesize;
530
531#if (PAGE_SIZE < 8192)
532 truesize = ice_rx_pg_size(rx_ring) / 2; /* Must be power-of-2 */
533#else
534 truesize = rx_ring->rx_offset ?
535 SKB_DATA_ALIGN(rx_ring->rx_offset + size) +
536 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) :
537 SKB_DATA_ALIGN(size);
538#endif
539 return truesize;
540}
541
542/**
543 * ice_run_xdp - Executes an XDP program on initialized xdp_buff
544 * @rx_ring: Rx ring
545 * @xdp: xdp_buff used as input to the XDP program
546 * @xdp_prog: XDP program to run
547 * @xdp_ring: ring to be used for XDP_TX action
548 *
549 * Returns any of ICE_XDP_{PASS, CONSUMED, TX, REDIR}
550 */
551static int
552ice_run_xdp(struct ice_rx_ring *rx_ring, struct xdp_buff *xdp,
553 struct bpf_prog *xdp_prog, struct ice_tx_ring *xdp_ring)
554{
555 int err;
556 u32 act;
557
558 act = bpf_prog_run_xdp(xdp_prog, xdp);
559 switch (act) {
560 case XDP_PASS:
561 return ICE_XDP_PASS;
562 case XDP_TX:
563 if (static_branch_unlikely(&ice_xdp_locking_key))
564 spin_lock(&xdp_ring->tx_lock);
565 err = ice_xmit_xdp_ring(xdp->data, xdp->data_end - xdp->data, xdp_ring);
566 if (static_branch_unlikely(&ice_xdp_locking_key))
567 spin_unlock(&xdp_ring->tx_lock);
568 if (err == ICE_XDP_CONSUMED)
569 goto out_failure;
570 return err;
571 case XDP_REDIRECT:
572 err = xdp_do_redirect(rx_ring->netdev, xdp, xdp_prog);
573 if (err)
574 goto out_failure;
575 return ICE_XDP_REDIR;
576 default:
577 bpf_warn_invalid_xdp_action(rx_ring->netdev, xdp_prog, act);
578 fallthrough;
579 case XDP_ABORTED:
580out_failure:
581 trace_xdp_exception(rx_ring->netdev, xdp_prog, act);
582 fallthrough;
583 case XDP_DROP:
584 return ICE_XDP_CONSUMED;
585 }
586}
587
588/**
589 * ice_xdp_xmit - submit packets to XDP ring for transmission
590 * @dev: netdev
591 * @n: number of XDP frames to be transmitted
592 * @frames: XDP frames to be transmitted
593 * @flags: transmit flags
594 *
595 * Returns number of frames successfully sent. Failed frames
596 * will be free'ed by XDP core.
597 * For error cases, a negative errno code is returned and no-frames
598 * are transmitted (caller must handle freeing frames).
599 */
600int
601ice_xdp_xmit(struct net_device *dev, int n, struct xdp_frame **frames,
602 u32 flags)
603{
604 struct ice_netdev_priv *np = netdev_priv(dev);
605 unsigned int queue_index = smp_processor_id();
606 struct ice_vsi *vsi = np->vsi;
607 struct ice_tx_ring *xdp_ring;
608 int nxmit = 0, i;
609
610 if (test_bit(ICE_VSI_DOWN, vsi->state))
611 return -ENETDOWN;
612
613 if (!ice_is_xdp_ena_vsi(vsi))
614 return -ENXIO;
615
616 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
617 return -EINVAL;
618
619 if (static_branch_unlikely(&ice_xdp_locking_key)) {
620 queue_index %= vsi->num_xdp_txq;
621 xdp_ring = vsi->xdp_rings[queue_index];
622 spin_lock(&xdp_ring->tx_lock);
623 } else {
624 /* Generally, should not happen */
625 if (unlikely(queue_index >= vsi->num_xdp_txq))
626 return -ENXIO;
627 xdp_ring = vsi->xdp_rings[queue_index];
628 }
629
630 for (i = 0; i < n; i++) {
631 struct xdp_frame *xdpf = frames[i];
632 int err;
633
634 err = ice_xmit_xdp_ring(xdpf->data, xdpf->len, xdp_ring);
635 if (err != ICE_XDP_TX)
636 break;
637 nxmit++;
638 }
639
640 if (unlikely(flags & XDP_XMIT_FLUSH))
641 ice_xdp_ring_update_tail(xdp_ring);
642
643 if (static_branch_unlikely(&ice_xdp_locking_key))
644 spin_unlock(&xdp_ring->tx_lock);
645
646 return nxmit;
647}
648
649/**
650 * ice_alloc_mapped_page - recycle or make a new page
651 * @rx_ring: ring to use
652 * @bi: rx_buf struct to modify
653 *
654 * Returns true if the page was successfully allocated or
655 * reused.
656 */
657static bool
658ice_alloc_mapped_page(struct ice_rx_ring *rx_ring, struct ice_rx_buf *bi)
659{
660 struct page *page = bi->page;
661 dma_addr_t dma;
662
663 /* since we are recycling buffers we should seldom need to alloc */
664 if (likely(page))
665 return true;
666
667 /* alloc new page for storage */
668 page = dev_alloc_pages(ice_rx_pg_order(rx_ring));
669 if (unlikely(!page)) {
670 rx_ring->ring_stats->rx_stats.alloc_page_failed++;
671 return false;
672 }
673
674 /* map page for use */
675 dma = dma_map_page_attrs(rx_ring->dev, page, 0, ice_rx_pg_size(rx_ring),
676 DMA_FROM_DEVICE, ICE_RX_DMA_ATTR);
677
678 /* if mapping failed free memory back to system since
679 * there isn't much point in holding memory we can't use
680 */
681 if (dma_mapping_error(rx_ring->dev, dma)) {
682 __free_pages(page, ice_rx_pg_order(rx_ring));
683 rx_ring->ring_stats->rx_stats.alloc_page_failed++;
684 return false;
685 }
686
687 bi->dma = dma;
688 bi->page = page;
689 bi->page_offset = rx_ring->rx_offset;
690 page_ref_add(page, USHRT_MAX - 1);
691 bi->pagecnt_bias = USHRT_MAX;
692
693 return true;
694}
695
696/**
697 * ice_alloc_rx_bufs - Replace used receive buffers
698 * @rx_ring: ring to place buffers on
699 * @cleaned_count: number of buffers to replace
700 *
701 * Returns false if all allocations were successful, true if any fail. Returning
702 * true signals to the caller that we didn't replace cleaned_count buffers and
703 * there is more work to do.
704 *
705 * First, try to clean "cleaned_count" Rx buffers. Then refill the cleaned Rx
706 * buffers. Then bump tail at most one time. Grouping like this lets us avoid
707 * multiple tail writes per call.
708 */
709bool ice_alloc_rx_bufs(struct ice_rx_ring *rx_ring, u16 cleaned_count)
710{
711 union ice_32b_rx_flex_desc *rx_desc;
712 u16 ntu = rx_ring->next_to_use;
713 struct ice_rx_buf *bi;
714
715 /* do nothing if no valid netdev defined */
716 if ((!rx_ring->netdev && rx_ring->vsi->type != ICE_VSI_CTRL) ||
717 !cleaned_count)
718 return false;
719
720 /* get the Rx descriptor and buffer based on next_to_use */
721 rx_desc = ICE_RX_DESC(rx_ring, ntu);
722 bi = &rx_ring->rx_buf[ntu];
723
724 do {
725 /* if we fail here, we have work remaining */
726 if (!ice_alloc_mapped_page(rx_ring, bi))
727 break;
728
729 /* sync the buffer for use by the device */
730 dma_sync_single_range_for_device(rx_ring->dev, bi->dma,
731 bi->page_offset,
732 rx_ring->rx_buf_len,
733 DMA_FROM_DEVICE);
734
735 /* Refresh the desc even if buffer_addrs didn't change
736 * because each write-back erases this info.
737 */
738 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
739
740 rx_desc++;
741 bi++;
742 ntu++;
743 if (unlikely(ntu == rx_ring->count)) {
744 rx_desc = ICE_RX_DESC(rx_ring, 0);
745 bi = rx_ring->rx_buf;
746 ntu = 0;
747 }
748
749 /* clear the status bits for the next_to_use descriptor */
750 rx_desc->wb.status_error0 = 0;
751
752 cleaned_count--;
753 } while (cleaned_count);
754
755 if (rx_ring->next_to_use != ntu)
756 ice_release_rx_desc(rx_ring, ntu);
757
758 return !!cleaned_count;
759}
760
761/**
762 * ice_rx_buf_adjust_pg_offset - Prepare Rx buffer for reuse
763 * @rx_buf: Rx buffer to adjust
764 * @size: Size of adjustment
765 *
766 * Update the offset within page so that Rx buf will be ready to be reused.
767 * For systems with PAGE_SIZE < 8192 this function will flip the page offset
768 * so the second half of page assigned to Rx buffer will be used, otherwise
769 * the offset is moved by "size" bytes
770 */
771static void
772ice_rx_buf_adjust_pg_offset(struct ice_rx_buf *rx_buf, unsigned int size)
773{
774#if (PAGE_SIZE < 8192)
775 /* flip page offset to other buffer */
776 rx_buf->page_offset ^= size;
777#else
778 /* move offset up to the next cache line */
779 rx_buf->page_offset += size;
780#endif
781}
782
783/**
784 * ice_can_reuse_rx_page - Determine if page can be reused for another Rx
785 * @rx_buf: buffer containing the page
786 * @rx_buf_pgcnt: rx_buf page refcount pre xdp_do_redirect() call
787 *
788 * If page is reusable, we have a green light for calling ice_reuse_rx_page,
789 * which will assign the current buffer to the buffer that next_to_alloc is
790 * pointing to; otherwise, the DMA mapping needs to be destroyed and
791 * page freed
792 */
793static bool
794ice_can_reuse_rx_page(struct ice_rx_buf *rx_buf, int rx_buf_pgcnt)
795{
796 unsigned int pagecnt_bias = rx_buf->pagecnt_bias;
797 struct page *page = rx_buf->page;
798
799 /* avoid re-using remote and pfmemalloc pages */
800 if (!dev_page_is_reusable(page))
801 return false;
802
803#if (PAGE_SIZE < 8192)
804 /* if we are only owner of page we can reuse it */
805 if (unlikely((rx_buf_pgcnt - pagecnt_bias) > 1))
806 return false;
807#else
808#define ICE_LAST_OFFSET \
809 (SKB_WITH_OVERHEAD(PAGE_SIZE) - ICE_RXBUF_2048)
810 if (rx_buf->page_offset > ICE_LAST_OFFSET)
811 return false;
812#endif /* PAGE_SIZE < 8192) */
813
814 /* If we have drained the page fragment pool we need to update
815 * the pagecnt_bias and page count so that we fully restock the
816 * number of references the driver holds.
817 */
818 if (unlikely(pagecnt_bias == 1)) {
819 page_ref_add(page, USHRT_MAX - 1);
820 rx_buf->pagecnt_bias = USHRT_MAX;
821 }
822
823 return true;
824}
825
826/**
827 * ice_add_rx_frag - Add contents of Rx buffer to sk_buff as a frag
828 * @rx_ring: Rx descriptor ring to transact packets on
829 * @rx_buf: buffer containing page to add
830 * @skb: sk_buff to place the data into
831 * @size: packet length from rx_desc
832 *
833 * This function will add the data contained in rx_buf->page to the skb.
834 * It will just attach the page as a frag to the skb.
835 * The function will then update the page offset.
836 */
837static void
838ice_add_rx_frag(struct ice_rx_ring *rx_ring, struct ice_rx_buf *rx_buf,
839 struct sk_buff *skb, unsigned int size)
840{
841#if (PAGE_SIZE >= 8192)
842 unsigned int truesize = SKB_DATA_ALIGN(size + rx_ring->rx_offset);
843#else
844 unsigned int truesize = ice_rx_pg_size(rx_ring) / 2;
845#endif
846
847 if (!size)
848 return;
849 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buf->page,
850 rx_buf->page_offset, size, truesize);
851
852 /* page is being used so we must update the page offset */
853 ice_rx_buf_adjust_pg_offset(rx_buf, truesize);
854}
855
856/**
857 * ice_reuse_rx_page - page flip buffer and store it back on the ring
858 * @rx_ring: Rx descriptor ring to store buffers on
859 * @old_buf: donor buffer to have page reused
860 *
861 * Synchronizes page for reuse by the adapter
862 */
863static void
864ice_reuse_rx_page(struct ice_rx_ring *rx_ring, struct ice_rx_buf *old_buf)
865{
866 u16 nta = rx_ring->next_to_alloc;
867 struct ice_rx_buf *new_buf;
868
869 new_buf = &rx_ring->rx_buf[nta];
870
871 /* update, and store next to alloc */
872 nta++;
873 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
874
875 /* Transfer page from old buffer to new buffer.
876 * Move each member individually to avoid possible store
877 * forwarding stalls and unnecessary copy of skb.
878 */
879 new_buf->dma = old_buf->dma;
880 new_buf->page = old_buf->page;
881 new_buf->page_offset = old_buf->page_offset;
882 new_buf->pagecnt_bias = old_buf->pagecnt_bias;
883}
884
885/**
886 * ice_get_rx_buf - Fetch Rx buffer and synchronize data for use
887 * @rx_ring: Rx descriptor ring to transact packets on
888 * @size: size of buffer to add to skb
889 * @rx_buf_pgcnt: rx_buf page refcount
890 *
891 * This function will pull an Rx buffer from the ring and synchronize it
892 * for use by the CPU.
893 */
894static struct ice_rx_buf *
895ice_get_rx_buf(struct ice_rx_ring *rx_ring, const unsigned int size,
896 int *rx_buf_pgcnt)
897{
898 struct ice_rx_buf *rx_buf;
899
900 rx_buf = &rx_ring->rx_buf[rx_ring->next_to_clean];
901 *rx_buf_pgcnt =
902#if (PAGE_SIZE < 8192)
903 page_count(rx_buf->page);
904#else
905 0;
906#endif
907 prefetchw(rx_buf->page);
908
909 if (!size)
910 return rx_buf;
911 /* we are reusing so sync this buffer for CPU use */
912 dma_sync_single_range_for_cpu(rx_ring->dev, rx_buf->dma,
913 rx_buf->page_offset, size,
914 DMA_FROM_DEVICE);
915
916 /* We have pulled a buffer for use, so decrement pagecnt_bias */
917 rx_buf->pagecnt_bias--;
918
919 return rx_buf;
920}
921
922/**
923 * ice_build_skb - Build skb around an existing buffer
924 * @rx_ring: Rx descriptor ring to transact packets on
925 * @rx_buf: Rx buffer to pull data from
926 * @xdp: xdp_buff pointing to the data
927 *
928 * This function builds an skb around an existing Rx buffer, taking care
929 * to set up the skb correctly and avoid any memcpy overhead.
930 */
931static struct sk_buff *
932ice_build_skb(struct ice_rx_ring *rx_ring, struct ice_rx_buf *rx_buf,
933 struct xdp_buff *xdp)
934{
935 u8 metasize = xdp->data - xdp->data_meta;
936#if (PAGE_SIZE < 8192)
937 unsigned int truesize = ice_rx_pg_size(rx_ring) / 2;
938#else
939 unsigned int truesize = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) +
940 SKB_DATA_ALIGN(xdp->data_end -
941 xdp->data_hard_start);
942#endif
943 struct sk_buff *skb;
944
945 /* Prefetch first cache line of first page. If xdp->data_meta
946 * is unused, this points exactly as xdp->data, otherwise we
947 * likely have a consumer accessing first few bytes of meta
948 * data, and then actual data.
949 */
950 net_prefetch(xdp->data_meta);
951 /* build an skb around the page buffer */
952 skb = napi_build_skb(xdp->data_hard_start, truesize);
953 if (unlikely(!skb))
954 return NULL;
955
956 /* must to record Rx queue, otherwise OS features such as
957 * symmetric queue won't work
958 */
959 skb_record_rx_queue(skb, rx_ring->q_index);
960
961 /* update pointers within the skb to store the data */
962 skb_reserve(skb, xdp->data - xdp->data_hard_start);
963 __skb_put(skb, xdp->data_end - xdp->data);
964 if (metasize)
965 skb_metadata_set(skb, metasize);
966
967 /* buffer is used by skb, update page_offset */
968 ice_rx_buf_adjust_pg_offset(rx_buf, truesize);
969
970 return skb;
971}
972
973/**
974 * ice_construct_skb - Allocate skb and populate it
975 * @rx_ring: Rx descriptor ring to transact packets on
976 * @rx_buf: Rx buffer to pull data from
977 * @xdp: xdp_buff pointing to the data
978 *
979 * This function allocates an skb. It then populates it with the page
980 * data from the current receive descriptor, taking care to set up the
981 * skb correctly.
982 */
983static struct sk_buff *
984ice_construct_skb(struct ice_rx_ring *rx_ring, struct ice_rx_buf *rx_buf,
985 struct xdp_buff *xdp)
986{
987 unsigned int metasize = xdp->data - xdp->data_meta;
988 unsigned int size = xdp->data_end - xdp->data;
989 unsigned int headlen;
990 struct sk_buff *skb;
991
992 /* prefetch first cache line of first page */
993 net_prefetch(xdp->data_meta);
994
995 /* allocate a skb to store the frags */
996 skb = __napi_alloc_skb(&rx_ring->q_vector->napi,
997 ICE_RX_HDR_SIZE + metasize,
998 GFP_ATOMIC | __GFP_NOWARN);
999 if (unlikely(!skb))
1000 return NULL;
1001
1002 skb_record_rx_queue(skb, rx_ring->q_index);
1003 /* Determine available headroom for copy */
1004 headlen = size;
1005 if (headlen > ICE_RX_HDR_SIZE)
1006 headlen = eth_get_headlen(skb->dev, xdp->data, ICE_RX_HDR_SIZE);
1007
1008 /* align pull length to size of long to optimize memcpy performance */
1009 memcpy(__skb_put(skb, headlen + metasize), xdp->data_meta,
1010 ALIGN(headlen + metasize, sizeof(long)));
1011
1012 if (metasize) {
1013 skb_metadata_set(skb, metasize);
1014 __skb_pull(skb, metasize);
1015 }
1016
1017 /* if we exhaust the linear part then add what is left as a frag */
1018 size -= headlen;
1019 if (size) {
1020#if (PAGE_SIZE >= 8192)
1021 unsigned int truesize = SKB_DATA_ALIGN(size);
1022#else
1023 unsigned int truesize = ice_rx_pg_size(rx_ring) / 2;
1024#endif
1025 skb_add_rx_frag(skb, 0, rx_buf->page,
1026 rx_buf->page_offset + headlen, size, truesize);
1027 /* buffer is used by skb, update page_offset */
1028 ice_rx_buf_adjust_pg_offset(rx_buf, truesize);
1029 } else {
1030 /* buffer is unused, reset bias back to rx_buf; data was copied
1031 * onto skb's linear part so there's no need for adjusting
1032 * page offset and we can reuse this buffer as-is
1033 */
1034 rx_buf->pagecnt_bias++;
1035 }
1036
1037 return skb;
1038}
1039
1040/**
1041 * ice_put_rx_buf - Clean up used buffer and either recycle or free
1042 * @rx_ring: Rx descriptor ring to transact packets on
1043 * @rx_buf: Rx buffer to pull data from
1044 * @rx_buf_pgcnt: Rx buffer page count pre xdp_do_redirect()
1045 *
1046 * This function will update next_to_clean and then clean up the contents
1047 * of the rx_buf. It will either recycle the buffer or unmap it and free
1048 * the associated resources.
1049 */
1050static void
1051ice_put_rx_buf(struct ice_rx_ring *rx_ring, struct ice_rx_buf *rx_buf,
1052 int rx_buf_pgcnt)
1053{
1054 u16 ntc = rx_ring->next_to_clean + 1;
1055
1056 /* fetch, update, and store next to clean */
1057 ntc = (ntc < rx_ring->count) ? ntc : 0;
1058 rx_ring->next_to_clean = ntc;
1059
1060 if (!rx_buf)
1061 return;
1062
1063 if (ice_can_reuse_rx_page(rx_buf, rx_buf_pgcnt)) {
1064 /* hand second half of page back to the ring */
1065 ice_reuse_rx_page(rx_ring, rx_buf);
1066 } else {
1067 /* we are not reusing the buffer so unmap it */
1068 dma_unmap_page_attrs(rx_ring->dev, rx_buf->dma,
1069 ice_rx_pg_size(rx_ring), DMA_FROM_DEVICE,
1070 ICE_RX_DMA_ATTR);
1071 __page_frag_cache_drain(rx_buf->page, rx_buf->pagecnt_bias);
1072 }
1073
1074 /* clear contents of buffer_info */
1075 rx_buf->page = NULL;
1076}
1077
1078/**
1079 * ice_is_non_eop - process handling of non-EOP buffers
1080 * @rx_ring: Rx ring being processed
1081 * @rx_desc: Rx descriptor for current buffer
1082 *
1083 * If the buffer is an EOP buffer, this function exits returning false,
1084 * otherwise return true indicating that this is in fact a non-EOP buffer.
1085 */
1086static bool
1087ice_is_non_eop(struct ice_rx_ring *rx_ring, union ice_32b_rx_flex_desc *rx_desc)
1088{
1089 /* if we are the last buffer then there is nothing else to do */
1090#define ICE_RXD_EOF BIT(ICE_RX_FLEX_DESC_STATUS0_EOF_S)
1091 if (likely(ice_test_staterr(rx_desc->wb.status_error0, ICE_RXD_EOF)))
1092 return false;
1093
1094 rx_ring->ring_stats->rx_stats.non_eop_descs++;
1095
1096 return true;
1097}
1098
1099/**
1100 * ice_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1101 * @rx_ring: Rx descriptor ring to transact packets on
1102 * @budget: Total limit on number of packets to process
1103 *
1104 * This function provides a "bounce buffer" approach to Rx interrupt
1105 * processing. The advantage to this is that on systems that have
1106 * expensive overhead for IOMMU access this provides a means of avoiding
1107 * it by maintaining the mapping of the page to the system.
1108 *
1109 * Returns amount of work completed
1110 */
1111int ice_clean_rx_irq(struct ice_rx_ring *rx_ring, int budget)
1112{
1113 unsigned int total_rx_bytes = 0, total_rx_pkts = 0, frame_sz = 0;
1114 u16 cleaned_count = ICE_DESC_UNUSED(rx_ring);
1115 unsigned int offset = rx_ring->rx_offset;
1116 struct ice_tx_ring *xdp_ring = NULL;
1117 unsigned int xdp_res, xdp_xmit = 0;
1118 struct sk_buff *skb = rx_ring->skb;
1119 struct bpf_prog *xdp_prog = NULL;
1120 struct xdp_buff xdp;
1121 bool failure;
1122
1123 /* Frame size depend on rx_ring setup when PAGE_SIZE=4K */
1124#if (PAGE_SIZE < 8192)
1125 frame_sz = ice_rx_frame_truesize(rx_ring, 0);
1126#endif
1127 xdp_init_buff(&xdp, frame_sz, &rx_ring->xdp_rxq);
1128
1129 xdp_prog = READ_ONCE(rx_ring->xdp_prog);
1130 if (xdp_prog)
1131 xdp_ring = rx_ring->xdp_ring;
1132
1133 /* start the loop to process Rx packets bounded by 'budget' */
1134 while (likely(total_rx_pkts < (unsigned int)budget)) {
1135 union ice_32b_rx_flex_desc *rx_desc;
1136 struct ice_rx_buf *rx_buf;
1137 unsigned char *hard_start;
1138 unsigned int size;
1139 u16 stat_err_bits;
1140 int rx_buf_pgcnt;
1141 u16 vlan_tag = 0;
1142 u16 rx_ptype;
1143
1144 /* get the Rx desc from Rx ring based on 'next_to_clean' */
1145 rx_desc = ICE_RX_DESC(rx_ring, rx_ring->next_to_clean);
1146
1147 /* status_error_len will always be zero for unused descriptors
1148 * because it's cleared in cleanup, and overlaps with hdr_addr
1149 * which is always zero because packet split isn't used, if the
1150 * hardware wrote DD then it will be non-zero
1151 */
1152 stat_err_bits = BIT(ICE_RX_FLEX_DESC_STATUS0_DD_S);
1153 if (!ice_test_staterr(rx_desc->wb.status_error0, stat_err_bits))
1154 break;
1155
1156 /* This memory barrier is needed to keep us from reading
1157 * any other fields out of the rx_desc until we know the
1158 * DD bit is set.
1159 */
1160 dma_rmb();
1161
1162 ice_trace(clean_rx_irq, rx_ring, rx_desc);
1163 if (rx_desc->wb.rxdid == FDIR_DESC_RXDID || !rx_ring->netdev) {
1164 struct ice_vsi *ctrl_vsi = rx_ring->vsi;
1165
1166 if (rx_desc->wb.rxdid == FDIR_DESC_RXDID &&
1167 ctrl_vsi->vf)
1168 ice_vc_fdir_irq_handler(ctrl_vsi, rx_desc);
1169 ice_put_rx_buf(rx_ring, NULL, 0);
1170 cleaned_count++;
1171 continue;
1172 }
1173
1174 size = le16_to_cpu(rx_desc->wb.pkt_len) &
1175 ICE_RX_FLX_DESC_PKT_LEN_M;
1176
1177 /* retrieve a buffer from the ring */
1178 rx_buf = ice_get_rx_buf(rx_ring, size, &rx_buf_pgcnt);
1179
1180 if (!size) {
1181 xdp.data = NULL;
1182 xdp.data_end = NULL;
1183 xdp.data_hard_start = NULL;
1184 xdp.data_meta = NULL;
1185 goto construct_skb;
1186 }
1187
1188 hard_start = page_address(rx_buf->page) + rx_buf->page_offset -
1189 offset;
1190 xdp_prepare_buff(&xdp, hard_start, offset, size, true);
1191#if (PAGE_SIZE > 4096)
1192 /* At larger PAGE_SIZE, frame_sz depend on len size */
1193 xdp.frame_sz = ice_rx_frame_truesize(rx_ring, size);
1194#endif
1195
1196 if (!xdp_prog)
1197 goto construct_skb;
1198
1199 xdp_res = ice_run_xdp(rx_ring, &xdp, xdp_prog, xdp_ring);
1200 if (!xdp_res)
1201 goto construct_skb;
1202 if (xdp_res & (ICE_XDP_TX | ICE_XDP_REDIR)) {
1203 xdp_xmit |= xdp_res;
1204 ice_rx_buf_adjust_pg_offset(rx_buf, xdp.frame_sz);
1205 } else {
1206 rx_buf->pagecnt_bias++;
1207 }
1208 total_rx_bytes += size;
1209 total_rx_pkts++;
1210
1211 cleaned_count++;
1212 ice_put_rx_buf(rx_ring, rx_buf, rx_buf_pgcnt);
1213 continue;
1214construct_skb:
1215 if (skb) {
1216 ice_add_rx_frag(rx_ring, rx_buf, skb, size);
1217 } else if (likely(xdp.data)) {
1218 if (ice_ring_uses_build_skb(rx_ring))
1219 skb = ice_build_skb(rx_ring, rx_buf, &xdp);
1220 else
1221 skb = ice_construct_skb(rx_ring, rx_buf, &xdp);
1222 }
1223 /* exit if we failed to retrieve a buffer */
1224 if (!skb) {
1225 rx_ring->ring_stats->rx_stats.alloc_buf_failed++;
1226 if (rx_buf)
1227 rx_buf->pagecnt_bias++;
1228 break;
1229 }
1230
1231 ice_put_rx_buf(rx_ring, rx_buf, rx_buf_pgcnt);
1232 cleaned_count++;
1233
1234 /* skip if it is NOP desc */
1235 if (ice_is_non_eop(rx_ring, rx_desc))
1236 continue;
1237
1238 stat_err_bits = BIT(ICE_RX_FLEX_DESC_STATUS0_RXE_S);
1239 if (unlikely(ice_test_staterr(rx_desc->wb.status_error0,
1240 stat_err_bits))) {
1241 dev_kfree_skb_any(skb);
1242 continue;
1243 }
1244
1245 vlan_tag = ice_get_vlan_tag_from_rx_desc(rx_desc);
1246
1247 /* pad the skb if needed, to make a valid ethernet frame */
1248 if (eth_skb_pad(skb)) {
1249 skb = NULL;
1250 continue;
1251 }
1252
1253 /* probably a little skewed due to removing CRC */
1254 total_rx_bytes += skb->len;
1255
1256 /* populate checksum, VLAN, and protocol */
1257 rx_ptype = le16_to_cpu(rx_desc->wb.ptype_flex_flags0) &
1258 ICE_RX_FLEX_DESC_PTYPE_M;
1259
1260 ice_process_skb_fields(rx_ring, rx_desc, skb, rx_ptype);
1261
1262 ice_trace(clean_rx_irq_indicate, rx_ring, rx_desc, skb);
1263 /* send completed skb up the stack */
1264 ice_receive_skb(rx_ring, skb, vlan_tag);
1265 skb = NULL;
1266
1267 /* update budget accounting */
1268 total_rx_pkts++;
1269 }
1270
1271 /* return up to cleaned_count buffers to hardware */
1272 failure = ice_alloc_rx_bufs(rx_ring, cleaned_count);
1273
1274 if (xdp_prog)
1275 ice_finalize_xdp_rx(xdp_ring, xdp_xmit);
1276 rx_ring->skb = skb;
1277
1278 if (rx_ring->ring_stats)
1279 ice_update_rx_ring_stats(rx_ring, total_rx_pkts,
1280 total_rx_bytes);
1281
1282 /* guarantee a trip back through this routine if there was a failure */
1283 return failure ? budget : (int)total_rx_pkts;
1284}
1285
1286static void __ice_update_sample(struct ice_q_vector *q_vector,
1287 struct ice_ring_container *rc,
1288 struct dim_sample *sample,
1289 bool is_tx)
1290{
1291 u64 packets = 0, bytes = 0;
1292
1293 if (is_tx) {
1294 struct ice_tx_ring *tx_ring;
1295
1296 ice_for_each_tx_ring(tx_ring, *rc) {
1297 struct ice_ring_stats *ring_stats;
1298
1299 ring_stats = tx_ring->ring_stats;
1300 if (!ring_stats)
1301 continue;
1302 packets += ring_stats->stats.pkts;
1303 bytes += ring_stats->stats.bytes;
1304 }
1305 } else {
1306 struct ice_rx_ring *rx_ring;
1307
1308 ice_for_each_rx_ring(rx_ring, *rc) {
1309 struct ice_ring_stats *ring_stats;
1310
1311 ring_stats = rx_ring->ring_stats;
1312 if (!ring_stats)
1313 continue;
1314 packets += ring_stats->stats.pkts;
1315 bytes += ring_stats->stats.bytes;
1316 }
1317 }
1318
1319 dim_update_sample(q_vector->total_events, packets, bytes, sample);
1320 sample->comp_ctr = 0;
1321
1322 /* if dim settings get stale, like when not updated for 1
1323 * second or longer, force it to start again. This addresses the
1324 * frequent case of an idle queue being switched to by the
1325 * scheduler. The 1,000 here means 1,000 milliseconds.
1326 */
1327 if (ktime_ms_delta(sample->time, rc->dim.start_sample.time) >= 1000)
1328 rc->dim.state = DIM_START_MEASURE;
1329}
1330
1331/**
1332 * ice_net_dim - Update net DIM algorithm
1333 * @q_vector: the vector associated with the interrupt
1334 *
1335 * Create a DIM sample and notify net_dim() so that it can possibly decide
1336 * a new ITR value based on incoming packets, bytes, and interrupts.
1337 *
1338 * This function is a no-op if the ring is not configured to dynamic ITR.
1339 */
1340static void ice_net_dim(struct ice_q_vector *q_vector)
1341{
1342 struct ice_ring_container *tx = &q_vector->tx;
1343 struct ice_ring_container *rx = &q_vector->rx;
1344
1345 if (ITR_IS_DYNAMIC(tx)) {
1346 struct dim_sample dim_sample;
1347
1348 __ice_update_sample(q_vector, tx, &dim_sample, true);
1349 net_dim(&tx->dim, dim_sample);
1350 }
1351
1352 if (ITR_IS_DYNAMIC(rx)) {
1353 struct dim_sample dim_sample;
1354
1355 __ice_update_sample(q_vector, rx, &dim_sample, false);
1356 net_dim(&rx->dim, dim_sample);
1357 }
1358}
1359
1360/**
1361 * ice_buildreg_itr - build value for writing to the GLINT_DYN_CTL register
1362 * @itr_idx: interrupt throttling index
1363 * @itr: interrupt throttling value in usecs
1364 */
1365static u32 ice_buildreg_itr(u16 itr_idx, u16 itr)
1366{
1367 /* The ITR value is reported in microseconds, and the register value is
1368 * recorded in 2 microsecond units. For this reason we only need to
1369 * shift by the GLINT_DYN_CTL_INTERVAL_S - ICE_ITR_GRAN_S to apply this
1370 * granularity as a shift instead of division. The mask makes sure the
1371 * ITR value is never odd so we don't accidentally write into the field
1372 * prior to the ITR field.
1373 */
1374 itr &= ICE_ITR_MASK;
1375
1376 return GLINT_DYN_CTL_INTENA_M | GLINT_DYN_CTL_CLEARPBA_M |
1377 (itr_idx << GLINT_DYN_CTL_ITR_INDX_S) |
1378 (itr << (GLINT_DYN_CTL_INTERVAL_S - ICE_ITR_GRAN_S));
1379}
1380
1381/**
1382 * ice_enable_interrupt - re-enable MSI-X interrupt
1383 * @q_vector: the vector associated with the interrupt to enable
1384 *
1385 * If the VSI is down, the interrupt will not be re-enabled. Also,
1386 * when enabling the interrupt always reset the wb_on_itr to false
1387 * and trigger a software interrupt to clean out internal state.
1388 */
1389static void ice_enable_interrupt(struct ice_q_vector *q_vector)
1390{
1391 struct ice_vsi *vsi = q_vector->vsi;
1392 bool wb_en = q_vector->wb_on_itr;
1393 u32 itr_val;
1394
1395 if (test_bit(ICE_DOWN, vsi->state))
1396 return;
1397
1398 /* trigger an ITR delayed software interrupt when exiting busy poll, to
1399 * make sure to catch any pending cleanups that might have been missed
1400 * due to interrupt state transition. If busy poll or poll isn't
1401 * enabled, then don't update ITR, and just enable the interrupt.
1402 */
1403 if (!wb_en) {
1404 itr_val = ice_buildreg_itr(ICE_ITR_NONE, 0);
1405 } else {
1406 q_vector->wb_on_itr = false;
1407
1408 /* do two things here with a single write. Set up the third ITR
1409 * index to be used for software interrupt moderation, and then
1410 * trigger a software interrupt with a rate limit of 20K on
1411 * software interrupts, this will help avoid high interrupt
1412 * loads due to frequently polling and exiting polling.
1413 */
1414 itr_val = ice_buildreg_itr(ICE_IDX_ITR2, ICE_ITR_20K);
1415 itr_val |= GLINT_DYN_CTL_SWINT_TRIG_M |
1416 ICE_IDX_ITR2 << GLINT_DYN_CTL_SW_ITR_INDX_S |
1417 GLINT_DYN_CTL_SW_ITR_INDX_ENA_M;
1418 }
1419 wr32(&vsi->back->hw, GLINT_DYN_CTL(q_vector->reg_idx), itr_val);
1420}
1421
1422/**
1423 * ice_set_wb_on_itr - set WB_ON_ITR for this q_vector
1424 * @q_vector: q_vector to set WB_ON_ITR on
1425 *
1426 * We need to tell hardware to write-back completed descriptors even when
1427 * interrupts are disabled. Descriptors will be written back on cache line
1428 * boundaries without WB_ON_ITR enabled, but if we don't enable WB_ON_ITR
1429 * descriptors may not be written back if they don't fill a cache line until
1430 * the next interrupt.
1431 *
1432 * This sets the write-back frequency to whatever was set previously for the
1433 * ITR indices. Also, set the INTENA_MSK bit to make sure hardware knows we
1434 * aren't meddling with the INTENA_M bit.
1435 */
1436static void ice_set_wb_on_itr(struct ice_q_vector *q_vector)
1437{
1438 struct ice_vsi *vsi = q_vector->vsi;
1439
1440 /* already in wb_on_itr mode no need to change it */
1441 if (q_vector->wb_on_itr)
1442 return;
1443
1444 /* use previously set ITR values for all of the ITR indices by
1445 * specifying ICE_ITR_NONE, which will vary in adaptive (AIM) mode and
1446 * be static in non-adaptive mode (user configured)
1447 */
1448 wr32(&vsi->back->hw, GLINT_DYN_CTL(q_vector->reg_idx),
1449 ((ICE_ITR_NONE << GLINT_DYN_CTL_ITR_INDX_S) &
1450 GLINT_DYN_CTL_ITR_INDX_M) | GLINT_DYN_CTL_INTENA_MSK_M |
1451 GLINT_DYN_CTL_WB_ON_ITR_M);
1452
1453 q_vector->wb_on_itr = true;
1454}
1455
1456/**
1457 * ice_napi_poll - NAPI polling Rx/Tx cleanup routine
1458 * @napi: napi struct with our devices info in it
1459 * @budget: amount of work driver is allowed to do this pass, in packets
1460 *
1461 * This function will clean all queues associated with a q_vector.
1462 *
1463 * Returns the amount of work done
1464 */
1465int ice_napi_poll(struct napi_struct *napi, int budget)
1466{
1467 struct ice_q_vector *q_vector =
1468 container_of(napi, struct ice_q_vector, napi);
1469 struct ice_tx_ring *tx_ring;
1470 struct ice_rx_ring *rx_ring;
1471 bool clean_complete = true;
1472 int budget_per_ring;
1473 int work_done = 0;
1474
1475 /* Since the actual Tx work is minimal, we can give the Tx a larger
1476 * budget and be more aggressive about cleaning up the Tx descriptors.
1477 */
1478 ice_for_each_tx_ring(tx_ring, q_vector->tx) {
1479 bool wd;
1480
1481 if (tx_ring->xsk_pool)
1482 wd = ice_xmit_zc(tx_ring);
1483 else if (ice_ring_is_xdp(tx_ring))
1484 wd = true;
1485 else
1486 wd = ice_clean_tx_irq(tx_ring, budget);
1487
1488 if (!wd)
1489 clean_complete = false;
1490 }
1491
1492 /* Handle case where we are called by netpoll with a budget of 0 */
1493 if (unlikely(budget <= 0))
1494 return budget;
1495
1496 /* normally we have 1 Rx ring per q_vector */
1497 if (unlikely(q_vector->num_ring_rx > 1))
1498 /* We attempt to distribute budget to each Rx queue fairly, but
1499 * don't allow the budget to go below 1 because that would exit
1500 * polling early.
1501 */
1502 budget_per_ring = max_t(int, budget / q_vector->num_ring_rx, 1);
1503 else
1504 /* Max of 1 Rx ring in this q_vector so give it the budget */
1505 budget_per_ring = budget;
1506
1507 ice_for_each_rx_ring(rx_ring, q_vector->rx) {
1508 int cleaned;
1509
1510 /* A dedicated path for zero-copy allows making a single
1511 * comparison in the irq context instead of many inside the
1512 * ice_clean_rx_irq function and makes the codebase cleaner.
1513 */
1514 cleaned = rx_ring->xsk_pool ?
1515 ice_clean_rx_irq_zc(rx_ring, budget_per_ring) :
1516 ice_clean_rx_irq(rx_ring, budget_per_ring);
1517 work_done += cleaned;
1518 /* if we clean as many as budgeted, we must not be done */
1519 if (cleaned >= budget_per_ring)
1520 clean_complete = false;
1521 }
1522
1523 /* If work not completed, return budget and polling will return */
1524 if (!clean_complete) {
1525 /* Set the writeback on ITR so partial completions of
1526 * cache-lines will still continue even if we're polling.
1527 */
1528 ice_set_wb_on_itr(q_vector);
1529 return budget;
1530 }
1531
1532 /* Exit the polling mode, but don't re-enable interrupts if stack might
1533 * poll us due to busy-polling
1534 */
1535 if (napi_complete_done(napi, work_done)) {
1536 ice_net_dim(q_vector);
1537 ice_enable_interrupt(q_vector);
1538 } else {
1539 ice_set_wb_on_itr(q_vector);
1540 }
1541
1542 return min_t(int, work_done, budget - 1);
1543}
1544
1545/**
1546 * __ice_maybe_stop_tx - 2nd level check for Tx stop conditions
1547 * @tx_ring: the ring to be checked
1548 * @size: the size buffer we want to assure is available
1549 *
1550 * Returns -EBUSY if a stop is needed, else 0
1551 */
1552static int __ice_maybe_stop_tx(struct ice_tx_ring *tx_ring, unsigned int size)
1553{
1554 netif_tx_stop_queue(txring_txq(tx_ring));
1555 /* Memory barrier before checking head and tail */
1556 smp_mb();
1557
1558 /* Check again in a case another CPU has just made room available. */
1559 if (likely(ICE_DESC_UNUSED(tx_ring) < size))
1560 return -EBUSY;
1561
1562 /* A reprieve! - use start_queue because it doesn't call schedule */
1563 netif_tx_start_queue(txring_txq(tx_ring));
1564 ++tx_ring->ring_stats->tx_stats.restart_q;
1565 return 0;
1566}
1567
1568/**
1569 * ice_maybe_stop_tx - 1st level check for Tx stop conditions
1570 * @tx_ring: the ring to be checked
1571 * @size: the size buffer we want to assure is available
1572 *
1573 * Returns 0 if stop is not needed
1574 */
1575static int ice_maybe_stop_tx(struct ice_tx_ring *tx_ring, unsigned int size)
1576{
1577 if (likely(ICE_DESC_UNUSED(tx_ring) >= size))
1578 return 0;
1579
1580 return __ice_maybe_stop_tx(tx_ring, size);
1581}
1582
1583/**
1584 * ice_tx_map - Build the Tx descriptor
1585 * @tx_ring: ring to send buffer on
1586 * @first: first buffer info buffer to use
1587 * @off: pointer to struct that holds offload parameters
1588 *
1589 * This function loops over the skb data pointed to by *first
1590 * and gets a physical address for each memory location and programs
1591 * it and the length into the transmit descriptor.
1592 */
1593static void
1594ice_tx_map(struct ice_tx_ring *tx_ring, struct ice_tx_buf *first,
1595 struct ice_tx_offload_params *off)
1596{
1597 u64 td_offset, td_tag, td_cmd;
1598 u16 i = tx_ring->next_to_use;
1599 unsigned int data_len, size;
1600 struct ice_tx_desc *tx_desc;
1601 struct ice_tx_buf *tx_buf;
1602 struct sk_buff *skb;
1603 skb_frag_t *frag;
1604 dma_addr_t dma;
1605 bool kick;
1606
1607 td_tag = off->td_l2tag1;
1608 td_cmd = off->td_cmd;
1609 td_offset = off->td_offset;
1610 skb = first->skb;
1611
1612 data_len = skb->data_len;
1613 size = skb_headlen(skb);
1614
1615 tx_desc = ICE_TX_DESC(tx_ring, i);
1616
1617 if (first->tx_flags & ICE_TX_FLAGS_HW_VLAN) {
1618 td_cmd |= (u64)ICE_TX_DESC_CMD_IL2TAG1;
1619 td_tag = (first->tx_flags & ICE_TX_FLAGS_VLAN_M) >>
1620 ICE_TX_FLAGS_VLAN_S;
1621 }
1622
1623 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
1624
1625 tx_buf = first;
1626
1627 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
1628 unsigned int max_data = ICE_MAX_DATA_PER_TXD_ALIGNED;
1629
1630 if (dma_mapping_error(tx_ring->dev, dma))
1631 goto dma_error;
1632
1633 /* record length, and DMA address */
1634 dma_unmap_len_set(tx_buf, len, size);
1635 dma_unmap_addr_set(tx_buf, dma, dma);
1636
1637 /* align size to end of page */
1638 max_data += -dma & (ICE_MAX_READ_REQ_SIZE - 1);
1639 tx_desc->buf_addr = cpu_to_le64(dma);
1640
1641 /* account for data chunks larger than the hardware
1642 * can handle
1643 */
1644 while (unlikely(size > ICE_MAX_DATA_PER_TXD)) {
1645 tx_desc->cmd_type_offset_bsz =
1646 ice_build_ctob(td_cmd, td_offset, max_data,
1647 td_tag);
1648
1649 tx_desc++;
1650 i++;
1651
1652 if (i == tx_ring->count) {
1653 tx_desc = ICE_TX_DESC(tx_ring, 0);
1654 i = 0;
1655 }
1656
1657 dma += max_data;
1658 size -= max_data;
1659
1660 max_data = ICE_MAX_DATA_PER_TXD_ALIGNED;
1661 tx_desc->buf_addr = cpu_to_le64(dma);
1662 }
1663
1664 if (likely(!data_len))
1665 break;
1666
1667 tx_desc->cmd_type_offset_bsz = ice_build_ctob(td_cmd, td_offset,
1668 size, td_tag);
1669
1670 tx_desc++;
1671 i++;
1672
1673 if (i == tx_ring->count) {
1674 tx_desc = ICE_TX_DESC(tx_ring, 0);
1675 i = 0;
1676 }
1677
1678 size = skb_frag_size(frag);
1679 data_len -= size;
1680
1681 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
1682 DMA_TO_DEVICE);
1683
1684 tx_buf = &tx_ring->tx_buf[i];
1685 }
1686
1687 /* record SW timestamp if HW timestamp is not available */
1688 skb_tx_timestamp(first->skb);
1689
1690 i++;
1691 if (i == tx_ring->count)
1692 i = 0;
1693
1694 /* write last descriptor with RS and EOP bits */
1695 td_cmd |= (u64)ICE_TXD_LAST_DESC_CMD;
1696 tx_desc->cmd_type_offset_bsz =
1697 ice_build_ctob(td_cmd, td_offset, size, td_tag);
1698
1699 /* Force memory writes to complete before letting h/w know there
1700 * are new descriptors to fetch.
1701 *
1702 * We also use this memory barrier to make certain all of the
1703 * status bits have been updated before next_to_watch is written.
1704 */
1705 wmb();
1706
1707 /* set next_to_watch value indicating a packet is present */
1708 first->next_to_watch = tx_desc;
1709
1710 tx_ring->next_to_use = i;
1711
1712 ice_maybe_stop_tx(tx_ring, DESC_NEEDED);
1713
1714 /* notify HW of packet */
1715 kick = __netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount,
1716 netdev_xmit_more());
1717 if (kick)
1718 /* notify HW of packet */
1719 writel(i, tx_ring->tail);
1720
1721 return;
1722
1723dma_error:
1724 /* clear DMA mappings for failed tx_buf map */
1725 for (;;) {
1726 tx_buf = &tx_ring->tx_buf[i];
1727 ice_unmap_and_free_tx_buf(tx_ring, tx_buf);
1728 if (tx_buf == first)
1729 break;
1730 if (i == 0)
1731 i = tx_ring->count;
1732 i--;
1733 }
1734
1735 tx_ring->next_to_use = i;
1736}
1737
1738/**
1739 * ice_tx_csum - Enable Tx checksum offloads
1740 * @first: pointer to the first descriptor
1741 * @off: pointer to struct that holds offload parameters
1742 *
1743 * Returns 0 or error (negative) if checksum offload can't happen, 1 otherwise.
1744 */
1745static
1746int ice_tx_csum(struct ice_tx_buf *first, struct ice_tx_offload_params *off)
1747{
1748 u32 l4_len = 0, l3_len = 0, l2_len = 0;
1749 struct sk_buff *skb = first->skb;
1750 union {
1751 struct iphdr *v4;
1752 struct ipv6hdr *v6;
1753 unsigned char *hdr;
1754 } ip;
1755 union {
1756 struct tcphdr *tcp;
1757 unsigned char *hdr;
1758 } l4;
1759 __be16 frag_off, protocol;
1760 unsigned char *exthdr;
1761 u32 offset, cmd = 0;
1762 u8 l4_proto = 0;
1763
1764 if (skb->ip_summed != CHECKSUM_PARTIAL)
1765 return 0;
1766
1767 protocol = vlan_get_protocol(skb);
1768
1769 if (eth_p_mpls(protocol)) {
1770 ip.hdr = skb_inner_network_header(skb);
1771 l4.hdr = skb_checksum_start(skb);
1772 } else {
1773 ip.hdr = skb_network_header(skb);
1774 l4.hdr = skb_transport_header(skb);
1775 }
1776
1777 /* compute outer L2 header size */
1778 l2_len = ip.hdr - skb->data;
1779 offset = (l2_len / 2) << ICE_TX_DESC_LEN_MACLEN_S;
1780
1781 /* set the tx_flags to indicate the IP protocol type. this is
1782 * required so that checksum header computation below is accurate.
1783 */
1784 if (ip.v4->version == 4)
1785 first->tx_flags |= ICE_TX_FLAGS_IPV4;
1786 else if (ip.v6->version == 6)
1787 first->tx_flags |= ICE_TX_FLAGS_IPV6;
1788
1789 if (skb->encapsulation) {
1790 bool gso_ena = false;
1791 u32 tunnel = 0;
1792
1793 /* define outer network header type */
1794 if (first->tx_flags & ICE_TX_FLAGS_IPV4) {
1795 tunnel |= (first->tx_flags & ICE_TX_FLAGS_TSO) ?
1796 ICE_TX_CTX_EIPT_IPV4 :
1797 ICE_TX_CTX_EIPT_IPV4_NO_CSUM;
1798 l4_proto = ip.v4->protocol;
1799 } else if (first->tx_flags & ICE_TX_FLAGS_IPV6) {
1800 int ret;
1801
1802 tunnel |= ICE_TX_CTX_EIPT_IPV6;
1803 exthdr = ip.hdr + sizeof(*ip.v6);
1804 l4_proto = ip.v6->nexthdr;
1805 ret = ipv6_skip_exthdr(skb, exthdr - skb->data,
1806 &l4_proto, &frag_off);
1807 if (ret < 0)
1808 return -1;
1809 }
1810
1811 /* define outer transport */
1812 switch (l4_proto) {
1813 case IPPROTO_UDP:
1814 tunnel |= ICE_TXD_CTX_UDP_TUNNELING;
1815 first->tx_flags |= ICE_TX_FLAGS_TUNNEL;
1816 break;
1817 case IPPROTO_GRE:
1818 tunnel |= ICE_TXD_CTX_GRE_TUNNELING;
1819 first->tx_flags |= ICE_TX_FLAGS_TUNNEL;
1820 break;
1821 case IPPROTO_IPIP:
1822 case IPPROTO_IPV6:
1823 first->tx_flags |= ICE_TX_FLAGS_TUNNEL;
1824 l4.hdr = skb_inner_network_header(skb);
1825 break;
1826 default:
1827 if (first->tx_flags & ICE_TX_FLAGS_TSO)
1828 return -1;
1829
1830 skb_checksum_help(skb);
1831 return 0;
1832 }
1833
1834 /* compute outer L3 header size */
1835 tunnel |= ((l4.hdr - ip.hdr) / 4) <<
1836 ICE_TXD_CTX_QW0_EIPLEN_S;
1837
1838 /* switch IP header pointer from outer to inner header */
1839 ip.hdr = skb_inner_network_header(skb);
1840
1841 /* compute tunnel header size */
1842 tunnel |= ((ip.hdr - l4.hdr) / 2) <<
1843 ICE_TXD_CTX_QW0_NATLEN_S;
1844
1845 gso_ena = skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL;
1846 /* indicate if we need to offload outer UDP header */
1847 if ((first->tx_flags & ICE_TX_FLAGS_TSO) && !gso_ena &&
1848 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM))
1849 tunnel |= ICE_TXD_CTX_QW0_L4T_CS_M;
1850
1851 /* record tunnel offload values */
1852 off->cd_tunnel_params |= tunnel;
1853
1854 /* set DTYP=1 to indicate that it's an Tx context descriptor
1855 * in IPsec tunnel mode with Tx offloads in Quad word 1
1856 */
1857 off->cd_qw1 |= (u64)ICE_TX_DESC_DTYPE_CTX;
1858
1859 /* switch L4 header pointer from outer to inner */
1860 l4.hdr = skb_inner_transport_header(skb);
1861 l4_proto = 0;
1862
1863 /* reset type as we transition from outer to inner headers */
1864 first->tx_flags &= ~(ICE_TX_FLAGS_IPV4 | ICE_TX_FLAGS_IPV6);
1865 if (ip.v4->version == 4)
1866 first->tx_flags |= ICE_TX_FLAGS_IPV4;
1867 if (ip.v6->version == 6)
1868 first->tx_flags |= ICE_TX_FLAGS_IPV6;
1869 }
1870
1871 /* Enable IP checksum offloads */
1872 if (first->tx_flags & ICE_TX_FLAGS_IPV4) {
1873 l4_proto = ip.v4->protocol;
1874 /* the stack computes the IP header already, the only time we
1875 * need the hardware to recompute it is in the case of TSO.
1876 */
1877 if (first->tx_flags & ICE_TX_FLAGS_TSO)
1878 cmd |= ICE_TX_DESC_CMD_IIPT_IPV4_CSUM;
1879 else
1880 cmd |= ICE_TX_DESC_CMD_IIPT_IPV4;
1881
1882 } else if (first->tx_flags & ICE_TX_FLAGS_IPV6) {
1883 cmd |= ICE_TX_DESC_CMD_IIPT_IPV6;
1884 exthdr = ip.hdr + sizeof(*ip.v6);
1885 l4_proto = ip.v6->nexthdr;
1886 if (l4.hdr != exthdr)
1887 ipv6_skip_exthdr(skb, exthdr - skb->data, &l4_proto,
1888 &frag_off);
1889 } else {
1890 return -1;
1891 }
1892
1893 /* compute inner L3 header size */
1894 l3_len = l4.hdr - ip.hdr;
1895 offset |= (l3_len / 4) << ICE_TX_DESC_LEN_IPLEN_S;
1896
1897 /* Enable L4 checksum offloads */
1898 switch (l4_proto) {
1899 case IPPROTO_TCP:
1900 /* enable checksum offloads */
1901 cmd |= ICE_TX_DESC_CMD_L4T_EOFT_TCP;
1902 l4_len = l4.tcp->doff;
1903 offset |= l4_len << ICE_TX_DESC_LEN_L4_LEN_S;
1904 break;
1905 case IPPROTO_UDP:
1906 /* enable UDP checksum offload */
1907 cmd |= ICE_TX_DESC_CMD_L4T_EOFT_UDP;
1908 l4_len = (sizeof(struct udphdr) >> 2);
1909 offset |= l4_len << ICE_TX_DESC_LEN_L4_LEN_S;
1910 break;
1911 case IPPROTO_SCTP:
1912 /* enable SCTP checksum offload */
1913 cmd |= ICE_TX_DESC_CMD_L4T_EOFT_SCTP;
1914 l4_len = sizeof(struct sctphdr) >> 2;
1915 offset |= l4_len << ICE_TX_DESC_LEN_L4_LEN_S;
1916 break;
1917
1918 default:
1919 if (first->tx_flags & ICE_TX_FLAGS_TSO)
1920 return -1;
1921 skb_checksum_help(skb);
1922 return 0;
1923 }
1924
1925 off->td_cmd |= cmd;
1926 off->td_offset |= offset;
1927 return 1;
1928}
1929
1930/**
1931 * ice_tx_prepare_vlan_flags - prepare generic Tx VLAN tagging flags for HW
1932 * @tx_ring: ring to send buffer on
1933 * @first: pointer to struct ice_tx_buf
1934 *
1935 * Checks the skb and set up correspondingly several generic transmit flags
1936 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1937 */
1938static void
1939ice_tx_prepare_vlan_flags(struct ice_tx_ring *tx_ring, struct ice_tx_buf *first)
1940{
1941 struct sk_buff *skb = first->skb;
1942
1943 /* nothing left to do, software offloaded VLAN */
1944 if (!skb_vlan_tag_present(skb) && eth_type_vlan(skb->protocol))
1945 return;
1946
1947 /* the VLAN ethertype/tpid is determined by VSI configuration and netdev
1948 * feature flags, which the driver only allows either 802.1Q or 802.1ad
1949 * VLAN offloads exclusively so we only care about the VLAN ID here
1950 */
1951 if (skb_vlan_tag_present(skb)) {
1952 first->tx_flags |= skb_vlan_tag_get(skb) << ICE_TX_FLAGS_VLAN_S;
1953 if (tx_ring->flags & ICE_TX_FLAGS_RING_VLAN_L2TAG2)
1954 first->tx_flags |= ICE_TX_FLAGS_HW_OUTER_SINGLE_VLAN;
1955 else
1956 first->tx_flags |= ICE_TX_FLAGS_HW_VLAN;
1957 }
1958
1959 ice_tx_prepare_vlan_flags_dcb(tx_ring, first);
1960}
1961
1962/**
1963 * ice_tso - computes mss and TSO length to prepare for TSO
1964 * @first: pointer to struct ice_tx_buf
1965 * @off: pointer to struct that holds offload parameters
1966 *
1967 * Returns 0 or error (negative) if TSO can't happen, 1 otherwise.
1968 */
1969static
1970int ice_tso(struct ice_tx_buf *first, struct ice_tx_offload_params *off)
1971{
1972 struct sk_buff *skb = first->skb;
1973 union {
1974 struct iphdr *v4;
1975 struct ipv6hdr *v6;
1976 unsigned char *hdr;
1977 } ip;
1978 union {
1979 struct tcphdr *tcp;
1980 struct udphdr *udp;
1981 unsigned char *hdr;
1982 } l4;
1983 u64 cd_mss, cd_tso_len;
1984 __be16 protocol;
1985 u32 paylen;
1986 u8 l4_start;
1987 int err;
1988
1989 if (skb->ip_summed != CHECKSUM_PARTIAL)
1990 return 0;
1991
1992 if (!skb_is_gso(skb))
1993 return 0;
1994
1995 err = skb_cow_head(skb, 0);
1996 if (err < 0)
1997 return err;
1998
1999 /* cppcheck-suppress unreadVariable */
2000 protocol = vlan_get_protocol(skb);
2001
2002 if (eth_p_mpls(protocol))
2003 ip.hdr = skb_inner_network_header(skb);
2004 else
2005 ip.hdr = skb_network_header(skb);
2006 l4.hdr = skb_checksum_start(skb);
2007
2008 /* initialize outer IP header fields */
2009 if (ip.v4->version == 4) {
2010 ip.v4->tot_len = 0;
2011 ip.v4->check = 0;
2012 } else {
2013 ip.v6->payload_len = 0;
2014 }
2015
2016 if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE |
2017 SKB_GSO_GRE_CSUM |
2018 SKB_GSO_IPXIP4 |
2019 SKB_GSO_IPXIP6 |
2020 SKB_GSO_UDP_TUNNEL |
2021 SKB_GSO_UDP_TUNNEL_CSUM)) {
2022 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
2023 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) {
2024 l4.udp->len = 0;
2025
2026 /* determine offset of outer transport header */
2027 l4_start = (u8)(l4.hdr - skb->data);
2028
2029 /* remove payload length from outer checksum */
2030 paylen = skb->len - l4_start;
2031 csum_replace_by_diff(&l4.udp->check,
2032 (__force __wsum)htonl(paylen));
2033 }
2034
2035 /* reset pointers to inner headers */
2036
2037 /* cppcheck-suppress unreadVariable */
2038 ip.hdr = skb_inner_network_header(skb);
2039 l4.hdr = skb_inner_transport_header(skb);
2040
2041 /* initialize inner IP header fields */
2042 if (ip.v4->version == 4) {
2043 ip.v4->tot_len = 0;
2044 ip.v4->check = 0;
2045 } else {
2046 ip.v6->payload_len = 0;
2047 }
2048 }
2049
2050 /* determine offset of transport header */
2051 l4_start = (u8)(l4.hdr - skb->data);
2052
2053 /* remove payload length from checksum */
2054 paylen = skb->len - l4_start;
2055
2056 if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_L4) {
2057 csum_replace_by_diff(&l4.udp->check,
2058 (__force __wsum)htonl(paylen));
2059 /* compute length of UDP segmentation header */
2060 off->header_len = (u8)sizeof(l4.udp) + l4_start;
2061 } else {
2062 csum_replace_by_diff(&l4.tcp->check,
2063 (__force __wsum)htonl(paylen));
2064 /* compute length of TCP segmentation header */
2065 off->header_len = (u8)((l4.tcp->doff * 4) + l4_start);
2066 }
2067
2068 /* update gso_segs and bytecount */
2069 first->gso_segs = skb_shinfo(skb)->gso_segs;
2070 first->bytecount += (first->gso_segs - 1) * off->header_len;
2071
2072 cd_tso_len = skb->len - off->header_len;
2073 cd_mss = skb_shinfo(skb)->gso_size;
2074
2075 /* record cdesc_qw1 with TSO parameters */
2076 off->cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX |
2077 (ICE_TX_CTX_DESC_TSO << ICE_TXD_CTX_QW1_CMD_S) |
2078 (cd_tso_len << ICE_TXD_CTX_QW1_TSO_LEN_S) |
2079 (cd_mss << ICE_TXD_CTX_QW1_MSS_S));
2080 first->tx_flags |= ICE_TX_FLAGS_TSO;
2081 return 1;
2082}
2083
2084/**
2085 * ice_txd_use_count - estimate the number of descriptors needed for Tx
2086 * @size: transmit request size in bytes
2087 *
2088 * Due to hardware alignment restrictions (4K alignment), we need to
2089 * assume that we can have no more than 12K of data per descriptor, even
2090 * though each descriptor can take up to 16K - 1 bytes of aligned memory.
2091 * Thus, we need to divide by 12K. But division is slow! Instead,
2092 * we decompose the operation into shifts and one relatively cheap
2093 * multiply operation.
2094 *
2095 * To divide by 12K, we first divide by 4K, then divide by 3:
2096 * To divide by 4K, shift right by 12 bits
2097 * To divide by 3, multiply by 85, then divide by 256
2098 * (Divide by 256 is done by shifting right by 8 bits)
2099 * Finally, we add one to round up. Because 256 isn't an exact multiple of
2100 * 3, we'll underestimate near each multiple of 12K. This is actually more
2101 * accurate as we have 4K - 1 of wiggle room that we can fit into the last
2102 * segment. For our purposes this is accurate out to 1M which is orders of
2103 * magnitude greater than our largest possible GSO size.
2104 *
2105 * This would then be implemented as:
2106 * return (((size >> 12) * 85) >> 8) + ICE_DESCS_FOR_SKB_DATA_PTR;
2107 *
2108 * Since multiplication and division are commutative, we can reorder
2109 * operations into:
2110 * return ((size * 85) >> 20) + ICE_DESCS_FOR_SKB_DATA_PTR;
2111 */
2112static unsigned int ice_txd_use_count(unsigned int size)
2113{
2114 return ((size * 85) >> 20) + ICE_DESCS_FOR_SKB_DATA_PTR;
2115}
2116
2117/**
2118 * ice_xmit_desc_count - calculate number of Tx descriptors needed
2119 * @skb: send buffer
2120 *
2121 * Returns number of data descriptors needed for this skb.
2122 */
2123static unsigned int ice_xmit_desc_count(struct sk_buff *skb)
2124{
2125 const skb_frag_t *frag = &skb_shinfo(skb)->frags[0];
2126 unsigned int nr_frags = skb_shinfo(skb)->nr_frags;
2127 unsigned int count = 0, size = skb_headlen(skb);
2128
2129 for (;;) {
2130 count += ice_txd_use_count(size);
2131
2132 if (!nr_frags--)
2133 break;
2134
2135 size = skb_frag_size(frag++);
2136 }
2137
2138 return count;
2139}
2140
2141/**
2142 * __ice_chk_linearize - Check if there are more than 8 buffers per packet
2143 * @skb: send buffer
2144 *
2145 * Note: This HW can't DMA more than 8 buffers to build a packet on the wire
2146 * and so we need to figure out the cases where we need to linearize the skb.
2147 *
2148 * For TSO we need to count the TSO header and segment payload separately.
2149 * As such we need to check cases where we have 7 fragments or more as we
2150 * can potentially require 9 DMA transactions, 1 for the TSO header, 1 for
2151 * the segment payload in the first descriptor, and another 7 for the
2152 * fragments.
2153 */
2154static bool __ice_chk_linearize(struct sk_buff *skb)
2155{
2156 const skb_frag_t *frag, *stale;
2157 int nr_frags, sum;
2158
2159 /* no need to check if number of frags is less than 7 */
2160 nr_frags = skb_shinfo(skb)->nr_frags;
2161 if (nr_frags < (ICE_MAX_BUF_TXD - 1))
2162 return false;
2163
2164 /* We need to walk through the list and validate that each group
2165 * of 6 fragments totals at least gso_size.
2166 */
2167 nr_frags -= ICE_MAX_BUF_TXD - 2;
2168 frag = &skb_shinfo(skb)->frags[0];
2169
2170 /* Initialize size to the negative value of gso_size minus 1. We
2171 * use this as the worst case scenario in which the frag ahead
2172 * of us only provides one byte which is why we are limited to 6
2173 * descriptors for a single transmit as the header and previous
2174 * fragment are already consuming 2 descriptors.
2175 */
2176 sum = 1 - skb_shinfo(skb)->gso_size;
2177
2178 /* Add size of frags 0 through 4 to create our initial sum */
2179 sum += skb_frag_size(frag++);
2180 sum += skb_frag_size(frag++);
2181 sum += skb_frag_size(frag++);
2182 sum += skb_frag_size(frag++);
2183 sum += skb_frag_size(frag++);
2184
2185 /* Walk through fragments adding latest fragment, testing it, and
2186 * then removing stale fragments from the sum.
2187 */
2188 for (stale = &skb_shinfo(skb)->frags[0];; stale++) {
2189 int stale_size = skb_frag_size(stale);
2190
2191 sum += skb_frag_size(frag++);
2192
2193 /* The stale fragment may present us with a smaller
2194 * descriptor than the actual fragment size. To account
2195 * for that we need to remove all the data on the front and
2196 * figure out what the remainder would be in the last
2197 * descriptor associated with the fragment.
2198 */
2199 if (stale_size > ICE_MAX_DATA_PER_TXD) {
2200 int align_pad = -(skb_frag_off(stale)) &
2201 (ICE_MAX_READ_REQ_SIZE - 1);
2202
2203 sum -= align_pad;
2204 stale_size -= align_pad;
2205
2206 do {
2207 sum -= ICE_MAX_DATA_PER_TXD_ALIGNED;
2208 stale_size -= ICE_MAX_DATA_PER_TXD_ALIGNED;
2209 } while (stale_size > ICE_MAX_DATA_PER_TXD);
2210 }
2211
2212 /* if sum is negative we failed to make sufficient progress */
2213 if (sum < 0)
2214 return true;
2215
2216 if (!nr_frags--)
2217 break;
2218
2219 sum -= stale_size;
2220 }
2221
2222 return false;
2223}
2224
2225/**
2226 * ice_chk_linearize - Check if there are more than 8 fragments per packet
2227 * @skb: send buffer
2228 * @count: number of buffers used
2229 *
2230 * Note: Our HW can't scatter-gather more than 8 fragments to build
2231 * a packet on the wire and so we need to figure out the cases where we
2232 * need to linearize the skb.
2233 */
2234static bool ice_chk_linearize(struct sk_buff *skb, unsigned int count)
2235{
2236 /* Both TSO and single send will work if count is less than 8 */
2237 if (likely(count < ICE_MAX_BUF_TXD))
2238 return false;
2239
2240 if (skb_is_gso(skb))
2241 return __ice_chk_linearize(skb);
2242
2243 /* we can support up to 8 data buffers for a single send */
2244 return count != ICE_MAX_BUF_TXD;
2245}
2246
2247/**
2248 * ice_tstamp - set up context descriptor for hardware timestamp
2249 * @tx_ring: pointer to the Tx ring to send buffer on
2250 * @skb: pointer to the SKB we're sending
2251 * @first: Tx buffer
2252 * @off: Tx offload parameters
2253 */
2254static void
2255ice_tstamp(struct ice_tx_ring *tx_ring, struct sk_buff *skb,
2256 struct ice_tx_buf *first, struct ice_tx_offload_params *off)
2257{
2258 s8 idx;
2259
2260 /* only timestamp the outbound packet if the user has requested it */
2261 if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)))
2262 return;
2263
2264 if (!tx_ring->ptp_tx)
2265 return;
2266
2267 /* Tx timestamps cannot be sampled when doing TSO */
2268 if (first->tx_flags & ICE_TX_FLAGS_TSO)
2269 return;
2270
2271 /* Grab an open timestamp slot */
2272 idx = ice_ptp_request_ts(tx_ring->tx_tstamps, skb);
2273 if (idx < 0) {
2274 tx_ring->vsi->back->ptp.tx_hwtstamp_skipped++;
2275 return;
2276 }
2277
2278 off->cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX |
2279 (ICE_TX_CTX_DESC_TSYN << ICE_TXD_CTX_QW1_CMD_S) |
2280 ((u64)idx << ICE_TXD_CTX_QW1_TSO_LEN_S));
2281 first->tx_flags |= ICE_TX_FLAGS_TSYN;
2282}
2283
2284/**
2285 * ice_xmit_frame_ring - Sends buffer on Tx ring
2286 * @skb: send buffer
2287 * @tx_ring: ring to send buffer on
2288 *
2289 * Returns NETDEV_TX_OK if sent, else an error code
2290 */
2291static netdev_tx_t
2292ice_xmit_frame_ring(struct sk_buff *skb, struct ice_tx_ring *tx_ring)
2293{
2294 struct ice_tx_offload_params offload = { 0 };
2295 struct ice_vsi *vsi = tx_ring->vsi;
2296 struct ice_tx_buf *first;
2297 struct ethhdr *eth;
2298 unsigned int count;
2299 int tso, csum;
2300
2301 ice_trace(xmit_frame_ring, tx_ring, skb);
2302
2303 count = ice_xmit_desc_count(skb);
2304 if (ice_chk_linearize(skb, count)) {
2305 if (__skb_linearize(skb))
2306 goto out_drop;
2307 count = ice_txd_use_count(skb->len);
2308 tx_ring->ring_stats->tx_stats.tx_linearize++;
2309 }
2310
2311 /* need: 1 descriptor per page * PAGE_SIZE/ICE_MAX_DATA_PER_TXD,
2312 * + 1 desc for skb_head_len/ICE_MAX_DATA_PER_TXD,
2313 * + 4 desc gap to avoid the cache line where head is,
2314 * + 1 desc for context descriptor,
2315 * otherwise try next time
2316 */
2317 if (ice_maybe_stop_tx(tx_ring, count + ICE_DESCS_PER_CACHE_LINE +
2318 ICE_DESCS_FOR_CTX_DESC)) {
2319 tx_ring->ring_stats->tx_stats.tx_busy++;
2320 return NETDEV_TX_BUSY;
2321 }
2322
2323 /* prefetch for bql data which is infrequently used */
2324 netdev_txq_bql_enqueue_prefetchw(txring_txq(tx_ring));
2325
2326 offload.tx_ring = tx_ring;
2327
2328 /* record the location of the first descriptor for this packet */
2329 first = &tx_ring->tx_buf[tx_ring->next_to_use];
2330 first->skb = skb;
2331 first->bytecount = max_t(unsigned int, skb->len, ETH_ZLEN);
2332 first->gso_segs = 1;
2333 first->tx_flags = 0;
2334
2335 /* prepare the VLAN tagging flags for Tx */
2336 ice_tx_prepare_vlan_flags(tx_ring, first);
2337 if (first->tx_flags & ICE_TX_FLAGS_HW_OUTER_SINGLE_VLAN) {
2338 offload.cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX |
2339 (ICE_TX_CTX_DESC_IL2TAG2 <<
2340 ICE_TXD_CTX_QW1_CMD_S));
2341 offload.cd_l2tag2 = (first->tx_flags & ICE_TX_FLAGS_VLAN_M) >>
2342 ICE_TX_FLAGS_VLAN_S;
2343 }
2344
2345 /* set up TSO offload */
2346 tso = ice_tso(first, &offload);
2347 if (tso < 0)
2348 goto out_drop;
2349
2350 /* always set up Tx checksum offload */
2351 csum = ice_tx_csum(first, &offload);
2352 if (csum < 0)
2353 goto out_drop;
2354
2355 /* allow CONTROL frames egress from main VSI if FW LLDP disabled */
2356 eth = (struct ethhdr *)skb_mac_header(skb);
2357 if (unlikely((skb->priority == TC_PRIO_CONTROL ||
2358 eth->h_proto == htons(ETH_P_LLDP)) &&
2359 vsi->type == ICE_VSI_PF &&
2360 vsi->port_info->qos_cfg.is_sw_lldp))
2361 offload.cd_qw1 |= (u64)(ICE_TX_DESC_DTYPE_CTX |
2362 ICE_TX_CTX_DESC_SWTCH_UPLINK <<
2363 ICE_TXD_CTX_QW1_CMD_S);
2364
2365 ice_tstamp(tx_ring, skb, first, &offload);
2366 if (ice_is_switchdev_running(vsi->back))
2367 ice_eswitch_set_target_vsi(skb, &offload);
2368
2369 if (offload.cd_qw1 & ICE_TX_DESC_DTYPE_CTX) {
2370 struct ice_tx_ctx_desc *cdesc;
2371 u16 i = tx_ring->next_to_use;
2372
2373 /* grab the next descriptor */
2374 cdesc = ICE_TX_CTX_DESC(tx_ring, i);
2375 i++;
2376 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
2377
2378 /* setup context descriptor */
2379 cdesc->tunneling_params = cpu_to_le32(offload.cd_tunnel_params);
2380 cdesc->l2tag2 = cpu_to_le16(offload.cd_l2tag2);
2381 cdesc->rsvd = cpu_to_le16(0);
2382 cdesc->qw1 = cpu_to_le64(offload.cd_qw1);
2383 }
2384
2385 ice_tx_map(tx_ring, first, &offload);
2386 return NETDEV_TX_OK;
2387
2388out_drop:
2389 ice_trace(xmit_frame_ring_drop, tx_ring, skb);
2390 dev_kfree_skb_any(skb);
2391 return NETDEV_TX_OK;
2392}
2393
2394/**
2395 * ice_start_xmit - Selects the correct VSI and Tx queue to send buffer
2396 * @skb: send buffer
2397 * @netdev: network interface device structure
2398 *
2399 * Returns NETDEV_TX_OK if sent, else an error code
2400 */
2401netdev_tx_t ice_start_xmit(struct sk_buff *skb, struct net_device *netdev)
2402{
2403 struct ice_netdev_priv *np = netdev_priv(netdev);
2404 struct ice_vsi *vsi = np->vsi;
2405 struct ice_tx_ring *tx_ring;
2406
2407 tx_ring = vsi->tx_rings[skb->queue_mapping];
2408
2409 /* hardware can't handle really short frames, hardware padding works
2410 * beyond this point
2411 */
2412 if (skb_put_padto(skb, ICE_MIN_TX_LEN))
2413 return NETDEV_TX_OK;
2414
2415 return ice_xmit_frame_ring(skb, tx_ring);
2416}
2417
2418/**
2419 * ice_get_dscp_up - return the UP/TC value for a SKB
2420 * @dcbcfg: DCB config that contains DSCP to UP/TC mapping
2421 * @skb: SKB to query for info to determine UP/TC
2422 *
2423 * This function is to only be called when the PF is in L3 DSCP PFC mode
2424 */
2425static u8 ice_get_dscp_up(struct ice_dcbx_cfg *dcbcfg, struct sk_buff *skb)
2426{
2427 u8 dscp = 0;
2428
2429 if (skb->protocol == htons(ETH_P_IP))
2430 dscp = ipv4_get_dsfield(ip_hdr(skb)) >> 2;
2431 else if (skb->protocol == htons(ETH_P_IPV6))
2432 dscp = ipv6_get_dsfield(ipv6_hdr(skb)) >> 2;
2433
2434 return dcbcfg->dscp_map[dscp];
2435}
2436
2437u16
2438ice_select_queue(struct net_device *netdev, struct sk_buff *skb,
2439 struct net_device *sb_dev)
2440{
2441 struct ice_pf *pf = ice_netdev_to_pf(netdev);
2442 struct ice_dcbx_cfg *dcbcfg;
2443
2444 dcbcfg = &pf->hw.port_info->qos_cfg.local_dcbx_cfg;
2445 if (dcbcfg->pfc_mode == ICE_QOS_MODE_DSCP)
2446 skb->priority = ice_get_dscp_up(dcbcfg, skb);
2447
2448 return netdev_pick_tx(netdev, skb, sb_dev);
2449}
2450
2451/**
2452 * ice_clean_ctrl_tx_irq - interrupt handler for flow director Tx queue
2453 * @tx_ring: tx_ring to clean
2454 */
2455void ice_clean_ctrl_tx_irq(struct ice_tx_ring *tx_ring)
2456{
2457 struct ice_vsi *vsi = tx_ring->vsi;
2458 s16 i = tx_ring->next_to_clean;
2459 int budget = ICE_DFLT_IRQ_WORK;
2460 struct ice_tx_desc *tx_desc;
2461 struct ice_tx_buf *tx_buf;
2462
2463 tx_buf = &tx_ring->tx_buf[i];
2464 tx_desc = ICE_TX_DESC(tx_ring, i);
2465 i -= tx_ring->count;
2466
2467 do {
2468 struct ice_tx_desc *eop_desc = tx_buf->next_to_watch;
2469
2470 /* if next_to_watch is not set then there is no pending work */
2471 if (!eop_desc)
2472 break;
2473
2474 /* prevent any other reads prior to eop_desc */
2475 smp_rmb();
2476
2477 /* if the descriptor isn't done, no work to do */
2478 if (!(eop_desc->cmd_type_offset_bsz &
2479 cpu_to_le64(ICE_TX_DESC_DTYPE_DESC_DONE)))
2480 break;
2481
2482 /* clear next_to_watch to prevent false hangs */
2483 tx_buf->next_to_watch = NULL;
2484 tx_desc->buf_addr = 0;
2485 tx_desc->cmd_type_offset_bsz = 0;
2486
2487 /* move past filter desc */
2488 tx_buf++;
2489 tx_desc++;
2490 i++;
2491 if (unlikely(!i)) {
2492 i -= tx_ring->count;
2493 tx_buf = tx_ring->tx_buf;
2494 tx_desc = ICE_TX_DESC(tx_ring, 0);
2495 }
2496
2497 /* unmap the data header */
2498 if (dma_unmap_len(tx_buf, len))
2499 dma_unmap_single(tx_ring->dev,
2500 dma_unmap_addr(tx_buf, dma),
2501 dma_unmap_len(tx_buf, len),
2502 DMA_TO_DEVICE);
2503 if (tx_buf->tx_flags & ICE_TX_FLAGS_DUMMY_PKT)
2504 devm_kfree(tx_ring->dev, tx_buf->raw_buf);
2505
2506 /* clear next_to_watch to prevent false hangs */
2507 tx_buf->raw_buf = NULL;
2508 tx_buf->tx_flags = 0;
2509 tx_buf->next_to_watch = NULL;
2510 dma_unmap_len_set(tx_buf, len, 0);
2511 tx_desc->buf_addr = 0;
2512 tx_desc->cmd_type_offset_bsz = 0;
2513
2514 /* move past eop_desc for start of next FD desc */
2515 tx_buf++;
2516 tx_desc++;
2517 i++;
2518 if (unlikely(!i)) {
2519 i -= tx_ring->count;
2520 tx_buf = tx_ring->tx_buf;
2521 tx_desc = ICE_TX_DESC(tx_ring, 0);
2522 }
2523
2524 budget--;
2525 } while (likely(budget));
2526
2527 i += tx_ring->count;
2528 tx_ring->next_to_clean = i;
2529
2530 /* re-enable interrupt if needed */
2531 ice_irq_dynamic_ena(&vsi->back->hw, vsi, vsi->q_vectors[0]);
2532}