blob: 60f88e4ad065ebdfe609e5e94cdce94e5a410d3c [file] [log] [blame]
Greg Rose7f12ad72013-12-21 06:12:51 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
Jesse Brandeburgaf1a2a92014-02-13 03:48:41 -08004 * Copyright(c) 2013 - 2014 Intel Corporation.
Greg Rose7f12ad72013-12-21 06:12:51 +00005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
Jesse Brandeburgb8316072014-04-05 07:46:11 +000015 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
Greg Rose7f12ad72013-12-21 06:12:51 +000018 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
Paul Gortmaker7ed3f5f2014-01-11 04:00:31 +000027#include <linux/prefetch.h>
Mitch Williamsa132af22015-01-24 09:58:35 +000028#include <net/busy_poll.h>
Paul Gortmaker7ed3f5f2014-01-11 04:00:31 +000029
Greg Rose7f12ad72013-12-21 06:12:51 +000030#include "i40evf.h"
Jesse Brandeburg206812b2014-02-12 01:45:33 +000031#include "i40e_prototype.h"
Greg Rose7f12ad72013-12-21 06:12:51 +000032
33static inline __le64 build_ctob(u32 td_cmd, u32 td_offset, unsigned int size,
34 u32 td_tag)
35{
36 return cpu_to_le64(I40E_TX_DESC_DTYPE_DATA |
37 ((u64)td_cmd << I40E_TXD_QW1_CMD_SHIFT) |
38 ((u64)td_offset << I40E_TXD_QW1_OFFSET_SHIFT) |
39 ((u64)size << I40E_TXD_QW1_TX_BUF_SZ_SHIFT) |
40 ((u64)td_tag << I40E_TXD_QW1_L2TAG1_SHIFT));
41}
42
43#define I40E_TXD_CMD (I40E_TX_DESC_CMD_EOP | I40E_TX_DESC_CMD_RS)
44
45/**
46 * i40e_unmap_and_free_tx_resource - Release a Tx buffer
47 * @ring: the ring that owns the buffer
48 * @tx_buffer: the buffer to free
49 **/
50static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
51 struct i40e_tx_buffer *tx_buffer)
52{
53 if (tx_buffer->skb) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000054 if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
55 kfree(tx_buffer->raw_buf);
56 else
57 dev_kfree_skb_any(tx_buffer->skb);
58
Greg Rose7f12ad72013-12-21 06:12:51 +000059 if (dma_unmap_len(tx_buffer, len))
60 dma_unmap_single(ring->dev,
61 dma_unmap_addr(tx_buffer, dma),
62 dma_unmap_len(tx_buffer, len),
63 DMA_TO_DEVICE);
64 } else if (dma_unmap_len(tx_buffer, len)) {
65 dma_unmap_page(ring->dev,
66 dma_unmap_addr(tx_buffer, dma),
67 dma_unmap_len(tx_buffer, len),
68 DMA_TO_DEVICE);
69 }
70 tx_buffer->next_to_watch = NULL;
71 tx_buffer->skb = NULL;
72 dma_unmap_len_set(tx_buffer, len, 0);
73 /* tx_buffer must be completely set up in the transmit path */
74}
75
76/**
77 * i40evf_clean_tx_ring - Free any empty Tx buffers
78 * @tx_ring: ring to be cleaned
79 **/
80void i40evf_clean_tx_ring(struct i40e_ring *tx_ring)
81{
82 unsigned long bi_size;
83 u16 i;
84
85 /* ring already cleared, nothing to do */
86 if (!tx_ring->tx_bi)
87 return;
88
89 /* Free all the Tx ring sk_buffs */
90 for (i = 0; i < tx_ring->count; i++)
91 i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
92
93 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
94 memset(tx_ring->tx_bi, 0, bi_size);
95
96 /* Zero out the descriptor ring */
97 memset(tx_ring->desc, 0, tx_ring->size);
98
99 tx_ring->next_to_use = 0;
100 tx_ring->next_to_clean = 0;
101
102 if (!tx_ring->netdev)
103 return;
104
105 /* cleanup Tx queue statistics */
106 netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev,
107 tx_ring->queue_index));
108}
109
110/**
111 * i40evf_free_tx_resources - Free Tx resources per queue
112 * @tx_ring: Tx descriptor ring for a specific queue
113 *
114 * Free all transmit software resources
115 **/
116void i40evf_free_tx_resources(struct i40e_ring *tx_ring)
117{
118 i40evf_clean_tx_ring(tx_ring);
119 kfree(tx_ring->tx_bi);
120 tx_ring->tx_bi = NULL;
121
122 if (tx_ring->desc) {
123 dma_free_coherent(tx_ring->dev, tx_ring->size,
124 tx_ring->desc, tx_ring->dma);
125 tx_ring->desc = NULL;
126 }
127}
128
129/**
Jesse Brandeburga68de582015-02-24 05:26:03 +0000130 * i40e_get_head - Retrieve head from head writeback
131 * @tx_ring: tx ring to fetch head of
132 *
133 * Returns value of Tx ring head based on value stored
134 * in head write-back location
135 **/
136static inline u32 i40e_get_head(struct i40e_ring *tx_ring)
137{
138 void *head = (struct i40e_tx_desc *)tx_ring->desc + tx_ring->count;
139
140 return le32_to_cpu(*(volatile __le32 *)head);
141}
142
143/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000144 * i40e_get_tx_pending - how many tx descriptors not processed
145 * @tx_ring: the ring of descriptors
146 *
147 * Since there is no access to the ring head register
148 * in XL710, we need to use our local copies
149 **/
150static u32 i40e_get_tx_pending(struct i40e_ring *ring)
151{
Jesse Brandeburga68de582015-02-24 05:26:03 +0000152 u32 head, tail;
153
154 head = i40e_get_head(ring);
155 tail = readl(ring->tail);
156
157 if (head != tail)
158 return (head < tail) ?
159 tail - head : (tail + ring->count - head);
160
161 return 0;
Greg Rose7f12ad72013-12-21 06:12:51 +0000162}
163
164/**
165 * i40e_check_tx_hang - Is there a hang in the Tx queue
166 * @tx_ring: the ring of descriptors
167 **/
168static bool i40e_check_tx_hang(struct i40e_ring *tx_ring)
169{
Jesse Brandeburga68de582015-02-24 05:26:03 +0000170 u32 tx_done = tx_ring->stats.packets;
171 u32 tx_done_old = tx_ring->tx_stats.tx_done_old;
Greg Rose7f12ad72013-12-21 06:12:51 +0000172 u32 tx_pending = i40e_get_tx_pending(tx_ring);
173 bool ret = false;
174
175 clear_check_for_tx_hang(tx_ring);
176
177 /* Check for a hung queue, but be thorough. This verifies
178 * that a transmit has been completed since the previous
179 * check AND there is at least one packet pending. The
180 * ARMED bit is set to indicate a potential hang. The
181 * bit is cleared if a pause frame is received to remove
182 * false hang detection due to PFC or 802.3x frames. By
183 * requiring this to fail twice we avoid races with
184 * PFC clearing the ARMED bit and conditions where we
185 * run the check_tx_hang logic with a transmit completion
186 * pending but without time to complete it yet.
187 */
Jesse Brandeburga68de582015-02-24 05:26:03 +0000188 if ((tx_done_old == tx_done) && tx_pending) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000189 /* make sure it is true for two checks in a row */
190 ret = test_and_set_bit(__I40E_HANG_CHECK_ARMED,
191 &tx_ring->state);
Jesse Brandeburga68de582015-02-24 05:26:03 +0000192 } else if (tx_done_old == tx_done &&
193 (tx_pending < I40E_MIN_DESC_PENDING) && (tx_pending > 0)) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000194 /* update completed stats and disarm the hang check */
Jesse Brandeburga68de582015-02-24 05:26:03 +0000195 tx_ring->tx_stats.tx_done_old = tx_done;
Greg Rose7f12ad72013-12-21 06:12:51 +0000196 clear_bit(__I40E_HANG_CHECK_ARMED, &tx_ring->state);
197 }
198
199 return ret;
200}
201
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000202#define WB_STRIDE 0x3
203
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000204/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000205 * i40e_clean_tx_irq - Reclaim resources after transmit completes
206 * @tx_ring: tx ring to clean
207 * @budget: how many cleans we're allowed
208 *
209 * Returns true if there's any budget left (e.g. the clean is finished)
210 **/
211static bool i40e_clean_tx_irq(struct i40e_ring *tx_ring, int budget)
212{
213 u16 i = tx_ring->next_to_clean;
214 struct i40e_tx_buffer *tx_buf;
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000215 struct i40e_tx_desc *tx_head;
Greg Rose7f12ad72013-12-21 06:12:51 +0000216 struct i40e_tx_desc *tx_desc;
217 unsigned int total_packets = 0;
218 unsigned int total_bytes = 0;
219
220 tx_buf = &tx_ring->tx_bi[i];
221 tx_desc = I40E_TX_DESC(tx_ring, i);
222 i -= tx_ring->count;
223
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000224 tx_head = I40E_TX_DESC(tx_ring, i40e_get_head(tx_ring));
225
Greg Rose7f12ad72013-12-21 06:12:51 +0000226 do {
227 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
228
229 /* if next_to_watch is not set then there is no work pending */
230 if (!eop_desc)
231 break;
232
233 /* prevent any other reads prior to eop_desc */
234 read_barrier_depends();
235
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000236 /* we have caught up to head, no work left to do */
237 if (tx_head == tx_desc)
Greg Rose7f12ad72013-12-21 06:12:51 +0000238 break;
239
240 /* clear next_to_watch to prevent false hangs */
241 tx_buf->next_to_watch = NULL;
242
243 /* update the statistics for this packet */
244 total_bytes += tx_buf->bytecount;
245 total_packets += tx_buf->gso_segs;
246
247 /* free the skb */
248 dev_kfree_skb_any(tx_buf->skb);
249
250 /* unmap skb header data */
251 dma_unmap_single(tx_ring->dev,
252 dma_unmap_addr(tx_buf, dma),
253 dma_unmap_len(tx_buf, len),
254 DMA_TO_DEVICE);
255
256 /* clear tx_buffer data */
257 tx_buf->skb = NULL;
258 dma_unmap_len_set(tx_buf, len, 0);
259
260 /* unmap remaining buffers */
261 while (tx_desc != eop_desc) {
262
263 tx_buf++;
264 tx_desc++;
265 i++;
266 if (unlikely(!i)) {
267 i -= tx_ring->count;
268 tx_buf = tx_ring->tx_bi;
269 tx_desc = I40E_TX_DESC(tx_ring, 0);
270 }
271
272 /* unmap any remaining paged data */
273 if (dma_unmap_len(tx_buf, len)) {
274 dma_unmap_page(tx_ring->dev,
275 dma_unmap_addr(tx_buf, dma),
276 dma_unmap_len(tx_buf, len),
277 DMA_TO_DEVICE);
278 dma_unmap_len_set(tx_buf, len, 0);
279 }
280 }
281
282 /* move us one more past the eop_desc for start of next pkt */
283 tx_buf++;
284 tx_desc++;
285 i++;
286 if (unlikely(!i)) {
287 i -= tx_ring->count;
288 tx_buf = tx_ring->tx_bi;
289 tx_desc = I40E_TX_DESC(tx_ring, 0);
290 }
291
Jesse Brandeburg016890b2015-02-27 09:15:31 +0000292 prefetch(tx_desc);
293
Greg Rose7f12ad72013-12-21 06:12:51 +0000294 /* update budget accounting */
295 budget--;
296 } while (likely(budget));
297
298 i += tx_ring->count;
299 tx_ring->next_to_clean = i;
300 u64_stats_update_begin(&tx_ring->syncp);
301 tx_ring->stats.bytes += total_bytes;
302 tx_ring->stats.packets += total_packets;
303 u64_stats_update_end(&tx_ring->syncp);
304 tx_ring->q_vector->tx.total_bytes += total_bytes;
305 tx_ring->q_vector->tx.total_packets += total_packets;
306
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000307 if (budget &&
308 !((i & WB_STRIDE) == WB_STRIDE) &&
309 !test_bit(__I40E_DOWN, &tx_ring->vsi->state) &&
310 (I40E_DESC_UNUSED(tx_ring) != tx_ring->count))
311 tx_ring->arm_wb = true;
312 else
313 tx_ring->arm_wb = false;
314
Greg Rose7f12ad72013-12-21 06:12:51 +0000315 if (check_for_tx_hang(tx_ring) && i40e_check_tx_hang(tx_ring)) {
316 /* schedule immediate reset if we believe we hung */
317 dev_info(tx_ring->dev, "Detected Tx Unit Hang\n"
318 " VSI <%d>\n"
319 " Tx Queue <%d>\n"
320 " next_to_use <%x>\n"
321 " next_to_clean <%x>\n",
322 tx_ring->vsi->seid,
323 tx_ring->queue_index,
324 tx_ring->next_to_use, i);
Greg Rose7f12ad72013-12-21 06:12:51 +0000325
326 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
327
328 dev_info(tx_ring->dev,
329 "tx hang detected on queue %d, resetting adapter\n",
330 tx_ring->queue_index);
331
332 tx_ring->netdev->netdev_ops->ndo_tx_timeout(tx_ring->netdev);
333
334 /* the adapter is about to reset, no point in enabling stuff */
335 return true;
336 }
337
338 netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
339 tx_ring->queue_index),
340 total_packets, total_bytes);
341
342#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
343 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
344 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
345 /* Make sure that anybody stopping the queue after this
346 * sees the new next_to_clean.
347 */
348 smp_mb();
349 if (__netif_subqueue_stopped(tx_ring->netdev,
350 tx_ring->queue_index) &&
351 !test_bit(__I40E_DOWN, &tx_ring->vsi->state)) {
352 netif_wake_subqueue(tx_ring->netdev,
353 tx_ring->queue_index);
354 ++tx_ring->tx_stats.restart_queue;
355 }
356 }
357
358 return budget > 0;
359}
360
361/**
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000362 * i40e_force_wb -Arm hardware to do a wb on noncache aligned descriptors
363 * @vsi: the VSI we care about
364 * @q_vector: the vector on which to force writeback
365 *
366 **/
367static void i40e_force_wb(struct i40e_vsi *vsi, struct i40e_q_vector *q_vector)
368{
369 u32 val = I40E_VFINT_DYN_CTLN_INTENA_MASK |
Jesse Brandeburg97bf75f2015-02-27 09:18:32 +0000370 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK | /* set noitr */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000371 I40E_VFINT_DYN_CTLN_SWINT_TRIG_MASK |
372 I40E_VFINT_DYN_CTLN_SW_ITR_INDX_ENA_MASK;
373 /* allow 00 to be written to the index */
374
375 wr32(&vsi->back->hw,
376 I40E_VFINT_DYN_CTLN1(q_vector->v_idx + vsi->base_vector - 1),
377 val);
378}
379
380/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000381 * i40e_set_new_dynamic_itr - Find new ITR level
382 * @rc: structure containing ring performance data
383 *
384 * Stores a new ITR value based on packets and byte counts during
385 * the last interrupt. The advantage of per interrupt computation
386 * is faster updates and more accurate ITR for the current traffic
387 * pattern. Constants in this function were computed based on
388 * theoretical maximum wire speed and thresholds were set based on
389 * testing data as well as attempting to minimize response time
390 * while increasing bulk throughput.
391 **/
392static void i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
393{
394 enum i40e_latency_range new_latency_range = rc->latency_range;
395 u32 new_itr = rc->itr;
396 int bytes_per_int;
397
398 if (rc->total_packets == 0 || !rc->itr)
399 return;
400
401 /* simple throttlerate management
402 * 0-10MB/s lowest (100000 ints/s)
403 * 10-20MB/s low (20000 ints/s)
404 * 20-1249MB/s bulk (8000 ints/s)
405 */
406 bytes_per_int = rc->total_bytes / rc->itr;
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400407 switch (new_latency_range) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000408 case I40E_LOWEST_LATENCY:
409 if (bytes_per_int > 10)
410 new_latency_range = I40E_LOW_LATENCY;
411 break;
412 case I40E_LOW_LATENCY:
413 if (bytes_per_int > 20)
414 new_latency_range = I40E_BULK_LATENCY;
415 else if (bytes_per_int <= 10)
416 new_latency_range = I40E_LOWEST_LATENCY;
417 break;
418 case I40E_BULK_LATENCY:
419 if (bytes_per_int <= 20)
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400420 new_latency_range = I40E_LOW_LATENCY;
421 break;
422 default:
423 if (bytes_per_int <= 20)
424 new_latency_range = I40E_LOW_LATENCY;
Greg Rose7f12ad72013-12-21 06:12:51 +0000425 break;
426 }
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400427 rc->latency_range = new_latency_range;
Greg Rose7f12ad72013-12-21 06:12:51 +0000428
429 switch (new_latency_range) {
430 case I40E_LOWEST_LATENCY:
431 new_itr = I40E_ITR_100K;
432 break;
433 case I40E_LOW_LATENCY:
434 new_itr = I40E_ITR_20K;
435 break;
436 case I40E_BULK_LATENCY:
437 new_itr = I40E_ITR_8K;
438 break;
439 default:
440 break;
441 }
442
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400443 if (new_itr != rc->itr)
444 rc->itr = new_itr;
Greg Rose7f12ad72013-12-21 06:12:51 +0000445
446 rc->total_bytes = 0;
447 rc->total_packets = 0;
448}
449
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400450/*
Greg Rose7f12ad72013-12-21 06:12:51 +0000451 * i40evf_setup_tx_descriptors - Allocate the Tx descriptors
452 * @tx_ring: the tx ring to set up
453 *
454 * Return 0 on success, negative on error
455 **/
456int i40evf_setup_tx_descriptors(struct i40e_ring *tx_ring)
457{
458 struct device *dev = tx_ring->dev;
459 int bi_size;
460
461 if (!dev)
462 return -ENOMEM;
463
Mitch Williams67c818a2015-06-19 08:56:30 -0700464 /* warn if we are about to overwrite the pointer */
465 WARN_ON(tx_ring->tx_bi);
Greg Rose7f12ad72013-12-21 06:12:51 +0000466 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
467 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
468 if (!tx_ring->tx_bi)
469 goto err;
470
471 /* round up to nearest 4K */
472 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000473 /* add u32 for head writeback, align after this takes care of
474 * guaranteeing this is at least one cache line in size
475 */
476 tx_ring->size += sizeof(u32);
Greg Rose7f12ad72013-12-21 06:12:51 +0000477 tx_ring->size = ALIGN(tx_ring->size, 4096);
478 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
479 &tx_ring->dma, GFP_KERNEL);
480 if (!tx_ring->desc) {
481 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
482 tx_ring->size);
483 goto err;
484 }
485
486 tx_ring->next_to_use = 0;
487 tx_ring->next_to_clean = 0;
488 return 0;
489
490err:
491 kfree(tx_ring->tx_bi);
492 tx_ring->tx_bi = NULL;
493 return -ENOMEM;
494}
495
496/**
497 * i40evf_clean_rx_ring - Free Rx buffers
498 * @rx_ring: ring to be cleaned
499 **/
500void i40evf_clean_rx_ring(struct i40e_ring *rx_ring)
501{
502 struct device *dev = rx_ring->dev;
503 struct i40e_rx_buffer *rx_bi;
504 unsigned long bi_size;
505 u16 i;
506
507 /* ring already cleared, nothing to do */
508 if (!rx_ring->rx_bi)
509 return;
510
Mitch Williamsa132af22015-01-24 09:58:35 +0000511 if (ring_is_ps_enabled(rx_ring)) {
512 int bufsz = ALIGN(rx_ring->rx_hdr_len, 256) * rx_ring->count;
513
514 rx_bi = &rx_ring->rx_bi[0];
515 if (rx_bi->hdr_buf) {
516 dma_free_coherent(dev,
517 bufsz,
518 rx_bi->hdr_buf,
519 rx_bi->dma);
520 for (i = 0; i < rx_ring->count; i++) {
521 rx_bi = &rx_ring->rx_bi[i];
522 rx_bi->dma = 0;
Shannon Nelson37a29732015-02-27 09:15:19 +0000523 rx_bi->hdr_buf = NULL;
Mitch Williamsa132af22015-01-24 09:58:35 +0000524 }
525 }
526 }
Greg Rose7f12ad72013-12-21 06:12:51 +0000527 /* Free all the Rx ring sk_buffs */
528 for (i = 0; i < rx_ring->count; i++) {
529 rx_bi = &rx_ring->rx_bi[i];
530 if (rx_bi->dma) {
531 dma_unmap_single(dev,
532 rx_bi->dma,
533 rx_ring->rx_buf_len,
534 DMA_FROM_DEVICE);
535 rx_bi->dma = 0;
536 }
537 if (rx_bi->skb) {
538 dev_kfree_skb(rx_bi->skb);
539 rx_bi->skb = NULL;
540 }
541 if (rx_bi->page) {
542 if (rx_bi->page_dma) {
543 dma_unmap_page(dev,
544 rx_bi->page_dma,
545 PAGE_SIZE / 2,
546 DMA_FROM_DEVICE);
547 rx_bi->page_dma = 0;
548 }
549 __free_page(rx_bi->page);
550 rx_bi->page = NULL;
551 rx_bi->page_offset = 0;
552 }
553 }
554
555 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
556 memset(rx_ring->rx_bi, 0, bi_size);
557
558 /* Zero out the descriptor ring */
559 memset(rx_ring->desc, 0, rx_ring->size);
560
561 rx_ring->next_to_clean = 0;
562 rx_ring->next_to_use = 0;
563}
564
565/**
566 * i40evf_free_rx_resources - Free Rx resources
567 * @rx_ring: ring to clean the resources from
568 *
569 * Free all receive software resources
570 **/
571void i40evf_free_rx_resources(struct i40e_ring *rx_ring)
572{
573 i40evf_clean_rx_ring(rx_ring);
574 kfree(rx_ring->rx_bi);
575 rx_ring->rx_bi = NULL;
576
577 if (rx_ring->desc) {
578 dma_free_coherent(rx_ring->dev, rx_ring->size,
579 rx_ring->desc, rx_ring->dma);
580 rx_ring->desc = NULL;
581 }
582}
583
584/**
Mitch Williamsa132af22015-01-24 09:58:35 +0000585 * i40evf_alloc_rx_headers - allocate rx header buffers
586 * @rx_ring: ring to alloc buffers
587 *
588 * Allocate rx header buffers for the entire ring. As these are static,
589 * this is only called when setting up a new ring.
590 **/
591void i40evf_alloc_rx_headers(struct i40e_ring *rx_ring)
592{
593 struct device *dev = rx_ring->dev;
594 struct i40e_rx_buffer *rx_bi;
595 dma_addr_t dma;
596 void *buffer;
597 int buf_size;
598 int i;
599
600 if (rx_ring->rx_bi[0].hdr_buf)
601 return;
602 /* Make sure the buffers don't cross cache line boundaries. */
603 buf_size = ALIGN(rx_ring->rx_hdr_len, 256);
604 buffer = dma_alloc_coherent(dev, buf_size * rx_ring->count,
605 &dma, GFP_KERNEL);
606 if (!buffer)
607 return;
608 for (i = 0; i < rx_ring->count; i++) {
609 rx_bi = &rx_ring->rx_bi[i];
610 rx_bi->dma = dma + (i * buf_size);
611 rx_bi->hdr_buf = buffer + (i * buf_size);
612 }
613}
614
615/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000616 * i40evf_setup_rx_descriptors - Allocate Rx descriptors
617 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
618 *
619 * Returns 0 on success, negative on failure
620 **/
621int i40evf_setup_rx_descriptors(struct i40e_ring *rx_ring)
622{
623 struct device *dev = rx_ring->dev;
624 int bi_size;
625
Mitch Williams67c818a2015-06-19 08:56:30 -0700626 /* warn if we are about to overwrite the pointer */
627 WARN_ON(rx_ring->rx_bi);
Greg Rose7f12ad72013-12-21 06:12:51 +0000628 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
629 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
630 if (!rx_ring->rx_bi)
631 goto err;
632
Carolyn Wybornyf217d6c2015-02-09 17:42:31 -0800633 u64_stats_init(&rx_ring->syncp);
Carolyn Wyborny638702b2015-01-24 09:58:32 +0000634
Greg Rose7f12ad72013-12-21 06:12:51 +0000635 /* Round up to nearest 4K */
636 rx_ring->size = ring_is_16byte_desc_enabled(rx_ring)
637 ? rx_ring->count * sizeof(union i40e_16byte_rx_desc)
638 : rx_ring->count * sizeof(union i40e_32byte_rx_desc);
639 rx_ring->size = ALIGN(rx_ring->size, 4096);
640 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
641 &rx_ring->dma, GFP_KERNEL);
642
643 if (!rx_ring->desc) {
644 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
645 rx_ring->size);
646 goto err;
647 }
648
649 rx_ring->next_to_clean = 0;
650 rx_ring->next_to_use = 0;
651
652 return 0;
653err:
654 kfree(rx_ring->rx_bi);
655 rx_ring->rx_bi = NULL;
656 return -ENOMEM;
657}
658
659/**
660 * i40e_release_rx_desc - Store the new tail and head values
661 * @rx_ring: ring to bump
662 * @val: new head index
663 **/
664static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
665{
666 rx_ring->next_to_use = val;
667 /* Force memory writes to complete before letting h/w
668 * know there are new descriptors to fetch. (Only
669 * applicable for weak-ordered memory model archs,
670 * such as IA-64).
671 */
672 wmb();
673 writel(val, rx_ring->tail);
674}
675
676/**
Mitch Williamsa132af22015-01-24 09:58:35 +0000677 * i40evf_alloc_rx_buffers_ps - Replace used receive buffers; packet split
Greg Rose7f12ad72013-12-21 06:12:51 +0000678 * @rx_ring: ring to place buffers on
679 * @cleaned_count: number of buffers to replace
680 **/
Mitch Williamsa132af22015-01-24 09:58:35 +0000681void i40evf_alloc_rx_buffers_ps(struct i40e_ring *rx_ring, u16 cleaned_count)
682{
683 u16 i = rx_ring->next_to_use;
684 union i40e_rx_desc *rx_desc;
685 struct i40e_rx_buffer *bi;
686
687 /* do nothing if no valid netdev defined */
688 if (!rx_ring->netdev || !cleaned_count)
689 return;
690
691 while (cleaned_count--) {
692 rx_desc = I40E_RX_DESC(rx_ring, i);
693 bi = &rx_ring->rx_bi[i];
694
695 if (bi->skb) /* desc is in use */
696 goto no_buffers;
697 if (!bi->page) {
698 bi->page = alloc_page(GFP_ATOMIC);
699 if (!bi->page) {
700 rx_ring->rx_stats.alloc_page_failed++;
701 goto no_buffers;
702 }
703 }
704
705 if (!bi->page_dma) {
706 /* use a half page if we're re-using */
707 bi->page_offset ^= PAGE_SIZE / 2;
708 bi->page_dma = dma_map_page(rx_ring->dev,
709 bi->page,
710 bi->page_offset,
711 PAGE_SIZE / 2,
712 DMA_FROM_DEVICE);
713 if (dma_mapping_error(rx_ring->dev,
714 bi->page_dma)) {
715 rx_ring->rx_stats.alloc_page_failed++;
716 bi->page_dma = 0;
717 goto no_buffers;
718 }
719 }
720
721 dma_sync_single_range_for_device(rx_ring->dev,
722 bi->dma,
723 0,
724 rx_ring->rx_hdr_len,
725 DMA_FROM_DEVICE);
726 /* Refresh the desc even if buffer_addrs didn't change
727 * because each write-back erases this info.
728 */
729 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
730 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
731 i++;
732 if (i == rx_ring->count)
733 i = 0;
734 }
735
736no_buffers:
737 if (rx_ring->next_to_use != i)
738 i40e_release_rx_desc(rx_ring, i);
739}
740
741/**
742 * i40evf_alloc_rx_buffers_1buf - Replace used receive buffers; single buffer
743 * @rx_ring: ring to place buffers on
744 * @cleaned_count: number of buffers to replace
745 **/
746void i40evf_alloc_rx_buffers_1buf(struct i40e_ring *rx_ring, u16 cleaned_count)
Greg Rose7f12ad72013-12-21 06:12:51 +0000747{
748 u16 i = rx_ring->next_to_use;
749 union i40e_rx_desc *rx_desc;
750 struct i40e_rx_buffer *bi;
751 struct sk_buff *skb;
752
753 /* do nothing if no valid netdev defined */
754 if (!rx_ring->netdev || !cleaned_count)
755 return;
756
757 while (cleaned_count--) {
758 rx_desc = I40E_RX_DESC(rx_ring, i);
759 bi = &rx_ring->rx_bi[i];
760 skb = bi->skb;
761
762 if (!skb) {
763 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
764 rx_ring->rx_buf_len);
765 if (!skb) {
766 rx_ring->rx_stats.alloc_buff_failed++;
767 goto no_buffers;
768 }
769 /* initialize queue mapping */
770 skb_record_rx_queue(skb, rx_ring->queue_index);
771 bi->skb = skb;
772 }
773
774 if (!bi->dma) {
775 bi->dma = dma_map_single(rx_ring->dev,
776 skb->data,
777 rx_ring->rx_buf_len,
778 DMA_FROM_DEVICE);
779 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
780 rx_ring->rx_stats.alloc_buff_failed++;
781 bi->dma = 0;
782 goto no_buffers;
783 }
784 }
785
Mitch Williamsa132af22015-01-24 09:58:35 +0000786 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
787 rx_desc->read.hdr_addr = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +0000788 i++;
789 if (i == rx_ring->count)
790 i = 0;
791 }
792
793no_buffers:
794 if (rx_ring->next_to_use != i)
795 i40e_release_rx_desc(rx_ring, i);
796}
797
798/**
799 * i40e_receive_skb - Send a completed packet up the stack
800 * @rx_ring: rx ring in play
801 * @skb: packet to send up
802 * @vlan_tag: vlan tag for packet
803 **/
804static void i40e_receive_skb(struct i40e_ring *rx_ring,
805 struct sk_buff *skb, u16 vlan_tag)
806{
807 struct i40e_q_vector *q_vector = rx_ring->q_vector;
808 struct i40e_vsi *vsi = rx_ring->vsi;
809 u64 flags = vsi->back->flags;
810
811 if (vlan_tag & VLAN_VID_MASK)
812 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
813
814 if (flags & I40E_FLAG_IN_NETPOLL)
815 netif_rx(skb);
816 else
817 napi_gro_receive(&q_vector->napi, skb);
818}
819
820/**
821 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
822 * @vsi: the VSI we care about
823 * @skb: skb currently being received and modified
824 * @rx_status: status value of last descriptor in packet
825 * @rx_error: error value of last descriptor in packet
826 * @rx_ptype: ptype value of last descriptor in packet
827 **/
828static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
829 struct sk_buff *skb,
830 u32 rx_status,
831 u32 rx_error,
832 u16 rx_ptype)
833{
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000834 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(rx_ptype);
835 bool ipv4 = false, ipv6 = false;
Greg Rose7f12ad72013-12-21 06:12:51 +0000836 bool ipv4_tunnel, ipv6_tunnel;
837 __wsum rx_udp_csum;
Greg Rose7f12ad72013-12-21 06:12:51 +0000838 struct iphdr *iph;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000839 __sum16 csum;
Greg Rose7f12ad72013-12-21 06:12:51 +0000840
Anjali Singhai Jainf8faaa42015-02-24 06:58:48 +0000841 ipv4_tunnel = (rx_ptype >= I40E_RX_PTYPE_GRENAT4_MAC_PAY3) &&
842 (rx_ptype <= I40E_RX_PTYPE_GRENAT4_MACVLAN_IPV6_ICMP_PAY4);
843 ipv6_tunnel = (rx_ptype >= I40E_RX_PTYPE_GRENAT6_MAC_PAY3) &&
844 (rx_ptype <= I40E_RX_PTYPE_GRENAT6_MACVLAN_IPV6_ICMP_PAY4);
Greg Rose7f12ad72013-12-21 06:12:51 +0000845
Greg Rose7f12ad72013-12-21 06:12:51 +0000846 skb->ip_summed = CHECKSUM_NONE;
847
848 /* Rx csum enabled and ip headers found? */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000849 if (!(vsi->netdev->features & NETIF_F_RXCSUM))
Greg Rose7f12ad72013-12-21 06:12:51 +0000850 return;
851
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000852 /* did the hardware decode the packet and checksum? */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400853 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000854 return;
855
856 /* both known and outer_ip must be set for the below code to work */
857 if (!(decoded.known && decoded.outer_ip))
858 return;
859
860 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
861 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4)
862 ipv4 = true;
863 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
864 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6)
865 ipv6 = true;
866
867 if (ipv4 &&
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400868 (rx_error & (BIT(I40E_RX_DESC_ERROR_IPE_SHIFT) |
869 BIT(I40E_RX_DESC_ERROR_EIPE_SHIFT))))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000870 goto checksum_fail;
871
Jesse Brandeburgddf1d0d2014-02-13 03:48:39 -0800872 /* likely incorrect csum if alternate IP extension headers found */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000873 if (ipv6 &&
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400874 rx_status & BIT(I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000875 /* don't increment checksum err here, non-fatal err */
Greg Rose7f12ad72013-12-21 06:12:51 +0000876 return;
877
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000878 /* there was some L4 error, count error and punt packet to the stack */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400879 if (rx_error & BIT(I40E_RX_DESC_ERROR_L4E_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000880 goto checksum_fail;
Greg Rose7f12ad72013-12-21 06:12:51 +0000881
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000882 /* handle packets that were not able to be checksummed due
883 * to arrival speed, in this case the stack can compute
884 * the csum.
885 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400886 if (rx_error & BIT(I40E_RX_DESC_ERROR_PPRS_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000887 return;
888
889 /* If VXLAN traffic has an outer UDPv4 checksum we need to check
890 * it in the driver, hardware does not do it for us.
891 * Since L3L4P bit was set we assume a valid IHL value (>=5)
892 * so the total length of IPv4 header is IHL*4 bytes
893 * The UDP_0 bit *may* bet set if the *inner* header is UDP
894 */
Anjali Singhai Jain818f2e72015-03-31 00:44:59 -0700895 if (ipv4_tunnel) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000896 skb->transport_header = skb->mac_header +
897 sizeof(struct ethhdr) +
898 (ip_hdr(skb)->ihl * 4);
899
900 /* Add 4 bytes for VLAN tagged packets */
901 skb->transport_header += (skb->protocol == htons(ETH_P_8021Q) ||
902 skb->protocol == htons(ETH_P_8021AD))
903 ? VLAN_HLEN : 0;
904
Anjali Singhai Jain818f2e72015-03-31 00:44:59 -0700905 if ((ip_hdr(skb)->protocol == IPPROTO_UDP) &&
906 (udp_hdr(skb)->check != 0)) {
907 rx_udp_csum = udp_csum(skb);
908 iph = ip_hdr(skb);
909 csum = csum_tcpudp_magic(iph->saddr, iph->daddr,
910 (skb->len -
911 skb_transport_offset(skb)),
912 IPPROTO_UDP, rx_udp_csum);
Greg Rose7f12ad72013-12-21 06:12:51 +0000913
Anjali Singhai Jain818f2e72015-03-31 00:44:59 -0700914 if (udp_hdr(skb)->check != csum)
915 goto checksum_fail;
916
917 } /* else its GRE and so no outer UDP header */
Greg Rose7f12ad72013-12-21 06:12:51 +0000918 }
919
920 skb->ip_summed = CHECKSUM_UNNECESSARY;
Tom Herbert407fa082014-08-27 21:27:43 -0700921 skb->csum_level = ipv4_tunnel || ipv6_tunnel;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000922
923 return;
924
925checksum_fail:
926 vsi->back->hw_csum_rx_error++;
Greg Rose7f12ad72013-12-21 06:12:51 +0000927}
928
929/**
930 * i40e_rx_hash - returns the hash value from the Rx descriptor
931 * @ring: descriptor ring
932 * @rx_desc: specific descriptor
933 **/
934static inline u32 i40e_rx_hash(struct i40e_ring *ring,
935 union i40e_rx_desc *rx_desc)
936{
937 const __le64 rss_mask =
938 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
939 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
940
941 if ((ring->netdev->features & NETIF_F_RXHASH) &&
942 (rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask)
943 return le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
944 else
945 return 0;
946}
947
948/**
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000949 * i40e_ptype_to_hash - get a hash type
950 * @ptype: the ptype value from the descriptor
951 *
952 * Returns a hash type to be used by skb_set_hash
953 **/
954static inline enum pkt_hash_types i40e_ptype_to_hash(u8 ptype)
955{
956 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
957
958 if (!decoded.known)
959 return PKT_HASH_TYPE_NONE;
960
961 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
962 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
963 return PKT_HASH_TYPE_L4;
964 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
965 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
966 return PKT_HASH_TYPE_L3;
967 else
968 return PKT_HASH_TYPE_L2;
969}
970
971/**
Mitch Williamsa132af22015-01-24 09:58:35 +0000972 * i40e_clean_rx_irq_ps - Reclaim resources after receive; packet split
Greg Rose7f12ad72013-12-21 06:12:51 +0000973 * @rx_ring: rx ring to clean
974 * @budget: how many cleans we're allowed
975 *
976 * Returns true if there's any budget left (e.g. the clean is finished)
977 **/
Mitch Williamsa132af22015-01-24 09:58:35 +0000978static int i40e_clean_rx_irq_ps(struct i40e_ring *rx_ring, int budget)
Greg Rose7f12ad72013-12-21 06:12:51 +0000979{
980 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
981 u16 rx_packet_len, rx_header_len, rx_sph, rx_hbo;
982 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
983 const int current_node = numa_node_id();
984 struct i40e_vsi *vsi = rx_ring->vsi;
985 u16 i = rx_ring->next_to_clean;
986 union i40e_rx_desc *rx_desc;
987 u32 rx_error, rx_status;
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000988 u8 rx_ptype;
Greg Rose7f12ad72013-12-21 06:12:51 +0000989 u64 qword;
Greg Rose7f12ad72013-12-21 06:12:51 +0000990
Mitch Williamsa132af22015-01-24 09:58:35 +0000991 do {
Greg Rose7f12ad72013-12-21 06:12:51 +0000992 struct i40e_rx_buffer *rx_bi;
993 struct sk_buff *skb;
994 u16 vlan_tag;
Mitch Williamsa132af22015-01-24 09:58:35 +0000995 /* return some buffers to hardware, one at a time is too slow */
996 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
997 i40evf_alloc_rx_buffers_ps(rx_ring, cleaned_count);
998 cleaned_count = 0;
999 }
1000
1001 i = rx_ring->next_to_clean;
1002 rx_desc = I40E_RX_DESC(rx_ring, i);
1003 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
1004 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1005 I40E_RXD_QW1_STATUS_SHIFT;
1006
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001007 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_DD_SHIFT)))
Mitch Williamsa132af22015-01-24 09:58:35 +00001008 break;
1009
1010 /* This memory barrier is needed to keep us from reading
1011 * any other fields out of the rx_desc until we know the
1012 * DD bit is set.
1013 */
Alexander Duyck67317162015-04-08 18:49:43 -07001014 dma_rmb();
Greg Rose7f12ad72013-12-21 06:12:51 +00001015 rx_bi = &rx_ring->rx_bi[i];
1016 skb = rx_bi->skb;
Mitch Williamsa132af22015-01-24 09:58:35 +00001017 if (likely(!skb)) {
1018 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1019 rx_ring->rx_hdr_len);
Jesse Brandeburg8b6ed9c2015-03-31 00:45:01 -07001020 if (!skb) {
Mitch Williamsa132af22015-01-24 09:58:35 +00001021 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburg8b6ed9c2015-03-31 00:45:01 -07001022 break;
1023 }
1024
Mitch Williamsa132af22015-01-24 09:58:35 +00001025 /* initialize queue mapping */
1026 skb_record_rx_queue(skb, rx_ring->queue_index);
1027 /* we are reusing so sync this buffer for CPU use */
1028 dma_sync_single_range_for_cpu(rx_ring->dev,
1029 rx_bi->dma,
1030 0,
1031 rx_ring->rx_hdr_len,
1032 DMA_FROM_DEVICE);
1033 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001034 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1035 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1036 rx_header_len = (qword & I40E_RXD_QW1_LENGTH_HBUF_MASK) >>
1037 I40E_RXD_QW1_LENGTH_HBUF_SHIFT;
1038 rx_sph = (qword & I40E_RXD_QW1_LENGTH_SPH_MASK) >>
1039 I40E_RXD_QW1_LENGTH_SPH_SHIFT;
1040
1041 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1042 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001043 rx_hbo = rx_error & BIT(I40E_RX_DESC_ERROR_HBO_SHIFT);
1044 rx_error &= ~BIT(I40E_RX_DESC_ERROR_HBO_SHIFT);
Greg Rose7f12ad72013-12-21 06:12:51 +00001045
1046 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1047 I40E_RXD_QW1_PTYPE_SHIFT;
Mitch Williamsa132af22015-01-24 09:58:35 +00001048 prefetch(rx_bi->page);
Greg Rose7f12ad72013-12-21 06:12:51 +00001049 rx_bi->skb = NULL;
Mitch Williamsa132af22015-01-24 09:58:35 +00001050 cleaned_count++;
1051 if (rx_hbo || rx_sph) {
1052 int len;
Greg Rose7f12ad72013-12-21 06:12:51 +00001053 if (rx_hbo)
1054 len = I40E_RX_HDR_SIZE;
Greg Rose7f12ad72013-12-21 06:12:51 +00001055 else
Mitch Williamsa132af22015-01-24 09:58:35 +00001056 len = rx_header_len;
1057 memcpy(__skb_put(skb, len), rx_bi->hdr_buf, len);
1058 } else if (skb->len == 0) {
1059 int len;
Greg Rose7f12ad72013-12-21 06:12:51 +00001060
Mitch Williamsa132af22015-01-24 09:58:35 +00001061 len = (rx_packet_len > skb_headlen(skb) ?
1062 skb_headlen(skb) : rx_packet_len);
1063 memcpy(__skb_put(skb, len),
1064 rx_bi->page + rx_bi->page_offset,
1065 len);
1066 rx_bi->page_offset += len;
1067 rx_packet_len -= len;
Greg Rose7f12ad72013-12-21 06:12:51 +00001068 }
1069
1070 /* Get the rest of the data if this was a header split */
Mitch Williamsa132af22015-01-24 09:58:35 +00001071 if (rx_packet_len) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001072 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1073 rx_bi->page,
1074 rx_bi->page_offset,
1075 rx_packet_len);
1076
1077 skb->len += rx_packet_len;
1078 skb->data_len += rx_packet_len;
1079 skb->truesize += rx_packet_len;
1080
1081 if ((page_count(rx_bi->page) == 1) &&
1082 (page_to_nid(rx_bi->page) == current_node))
1083 get_page(rx_bi->page);
1084 else
1085 rx_bi->page = NULL;
1086
1087 dma_unmap_page(rx_ring->dev,
1088 rx_bi->page_dma,
1089 PAGE_SIZE / 2,
1090 DMA_FROM_DEVICE);
1091 rx_bi->page_dma = 0;
1092 }
Mitch Williamsa132af22015-01-24 09:58:35 +00001093 I40E_RX_INCREMENT(rx_ring, i);
Greg Rose7f12ad72013-12-21 06:12:51 +00001094
1095 if (unlikely(
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001096 !(rx_status & BIT(I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001097 struct i40e_rx_buffer *next_buffer;
1098
1099 next_buffer = &rx_ring->rx_bi[i];
Mitch Williamsa132af22015-01-24 09:58:35 +00001100 next_buffer->skb = skb;
Greg Rose7f12ad72013-12-21 06:12:51 +00001101 rx_ring->rx_stats.non_eop_descs++;
Mitch Williamsa132af22015-01-24 09:58:35 +00001102 continue;
Greg Rose7f12ad72013-12-21 06:12:51 +00001103 }
1104
1105 /* ERR_MASK will only have valid bits if EOP set */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001106 if (unlikely(rx_error & BIT(I40E_RX_DESC_ERROR_RXE_SHIFT))) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001107 dev_kfree_skb_any(skb);
Mitch Williamsa132af22015-01-24 09:58:35 +00001108 continue;
1109 }
1110
1111 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1112 i40e_ptype_to_hash(rx_ptype));
1113 /* probably a little skewed due to removing CRC */
1114 total_rx_bytes += skb->len;
1115 total_rx_packets++;
1116
1117 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1118
1119 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1120
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001121 vlan_tag = rx_status & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
Mitch Williamsa132af22015-01-24 09:58:35 +00001122 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1123 : 0;
1124#ifdef I40E_FCOE
1125 if (!i40e_fcoe_handle_offload(rx_ring, rx_desc, skb)) {
1126 dev_kfree_skb_any(skb);
1127 continue;
1128 }
1129#endif
1130 skb_mark_napi_id(skb, &rx_ring->q_vector->napi);
1131 i40e_receive_skb(rx_ring, skb, vlan_tag);
1132
Mitch Williamsa132af22015-01-24 09:58:35 +00001133 rx_desc->wb.qword1.status_error_len = 0;
1134
1135 } while (likely(total_rx_packets < budget));
1136
1137 u64_stats_update_begin(&rx_ring->syncp);
1138 rx_ring->stats.packets += total_rx_packets;
1139 rx_ring->stats.bytes += total_rx_bytes;
1140 u64_stats_update_end(&rx_ring->syncp);
1141 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1142 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1143
1144 return total_rx_packets;
1145}
1146
1147/**
1148 * i40e_clean_rx_irq_1buf - Reclaim resources after receive; single buffer
1149 * @rx_ring: rx ring to clean
1150 * @budget: how many cleans we're allowed
1151 *
1152 * Returns number of packets cleaned
1153 **/
1154static int i40e_clean_rx_irq_1buf(struct i40e_ring *rx_ring, int budget)
1155{
1156 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1157 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
1158 struct i40e_vsi *vsi = rx_ring->vsi;
1159 union i40e_rx_desc *rx_desc;
1160 u32 rx_error, rx_status;
1161 u16 rx_packet_len;
1162 u8 rx_ptype;
1163 u64 qword;
1164 u16 i;
1165
1166 do {
1167 struct i40e_rx_buffer *rx_bi;
1168 struct sk_buff *skb;
1169 u16 vlan_tag;
1170 /* return some buffers to hardware, one at a time is too slow */
1171 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
1172 i40evf_alloc_rx_buffers_1buf(rx_ring, cleaned_count);
1173 cleaned_count = 0;
1174 }
1175
1176 i = rx_ring->next_to_clean;
1177 rx_desc = I40E_RX_DESC(rx_ring, i);
1178 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
1179 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1180 I40E_RXD_QW1_STATUS_SHIFT;
1181
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001182 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_DD_SHIFT)))
Mitch Williamsa132af22015-01-24 09:58:35 +00001183 break;
1184
1185 /* This memory barrier is needed to keep us from reading
1186 * any other fields out of the rx_desc until we know the
1187 * DD bit is set.
1188 */
Alexander Duyck67317162015-04-08 18:49:43 -07001189 dma_rmb();
Mitch Williamsa132af22015-01-24 09:58:35 +00001190
1191 rx_bi = &rx_ring->rx_bi[i];
1192 skb = rx_bi->skb;
1193 prefetch(skb->data);
1194
1195 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1196 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1197
1198 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1199 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001200 rx_error &= ~BIT(I40E_RX_DESC_ERROR_HBO_SHIFT);
Mitch Williamsa132af22015-01-24 09:58:35 +00001201
1202 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1203 I40E_RXD_QW1_PTYPE_SHIFT;
1204 rx_bi->skb = NULL;
1205 cleaned_count++;
1206
1207 /* Get the header and possibly the whole packet
1208 * If this is an skb from previous receive dma will be 0
1209 */
1210 skb_put(skb, rx_packet_len);
1211 dma_unmap_single(rx_ring->dev, rx_bi->dma, rx_ring->rx_buf_len,
1212 DMA_FROM_DEVICE);
1213 rx_bi->dma = 0;
1214
1215 I40E_RX_INCREMENT(rx_ring, i);
1216
1217 if (unlikely(
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001218 !(rx_status & BIT(I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
Mitch Williamsa132af22015-01-24 09:58:35 +00001219 rx_ring->rx_stats.non_eop_descs++;
1220 continue;
1221 }
1222
1223 /* ERR_MASK will only have valid bits if EOP set */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001224 if (unlikely(rx_error & BIT(I40E_RX_DESC_ERROR_RXE_SHIFT))) {
Mitch Williamsa132af22015-01-24 09:58:35 +00001225 dev_kfree_skb_any(skb);
1226 /* TODO: shouldn't we increment a counter indicating the
1227 * drop?
1228 */
1229 continue;
Greg Rose7f12ad72013-12-21 06:12:51 +00001230 }
1231
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001232 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1233 i40e_ptype_to_hash(rx_ptype));
Greg Rose7f12ad72013-12-21 06:12:51 +00001234 /* probably a little skewed due to removing CRC */
1235 total_rx_bytes += skb->len;
1236 total_rx_packets++;
1237
1238 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1239
1240 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1241
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001242 vlan_tag = rx_status & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
Greg Rose7f12ad72013-12-21 06:12:51 +00001243 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1244 : 0;
1245 i40e_receive_skb(rx_ring, skb, vlan_tag);
1246
Greg Rose7f12ad72013-12-21 06:12:51 +00001247 rx_desc->wb.qword1.status_error_len = 0;
Mitch Williamsa132af22015-01-24 09:58:35 +00001248 } while (likely(total_rx_packets < budget));
Greg Rose7f12ad72013-12-21 06:12:51 +00001249
Greg Rose7f12ad72013-12-21 06:12:51 +00001250 u64_stats_update_begin(&rx_ring->syncp);
1251 rx_ring->stats.packets += total_rx_packets;
1252 rx_ring->stats.bytes += total_rx_bytes;
1253 u64_stats_update_end(&rx_ring->syncp);
1254 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1255 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1256
Mitch Williamsa132af22015-01-24 09:58:35 +00001257 return total_rx_packets;
Greg Rose7f12ad72013-12-21 06:12:51 +00001258}
1259
1260/**
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001261 * i40e_update_enable_itr - Update itr and re-enable MSIX interrupt
1262 * @vsi: the VSI we care about
1263 * @q_vector: q_vector for which itr is being updated and interrupt enabled
1264 *
1265 **/
1266static inline void i40e_update_enable_itr(struct i40e_vsi *vsi,
1267 struct i40e_q_vector *q_vector)
1268{
1269 struct i40e_hw *hw = &vsi->back->hw;
1270 u16 old_itr;
1271 int vector;
1272 u32 val;
1273
1274 vector = (q_vector->v_idx + vsi->base_vector);
1275 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting)) {
1276 old_itr = q_vector->rx.itr;
1277 i40e_set_new_dynamic_itr(&q_vector->rx);
1278 if (old_itr != q_vector->rx.itr) {
1279 val = I40E_VFINT_DYN_CTLN_INTENA_MASK |
1280 I40E_VFINT_DYN_CTLN_CLEARPBA_MASK |
1281 (I40E_RX_ITR <<
1282 I40E_VFINT_DYN_CTLN_ITR_INDX_SHIFT) |
1283 (q_vector->rx.itr <<
1284 I40E_VFINT_DYN_CTLN_INTERVAL_SHIFT);
1285 } else {
1286 val = I40E_VFINT_DYN_CTLN_INTENA_MASK |
1287 I40E_VFINT_DYN_CTLN_CLEARPBA_MASK |
1288 (I40E_ITR_NONE <<
1289 I40E_VFINT_DYN_CTLN_ITR_INDX_SHIFT);
1290 }
1291 if (!test_bit(__I40E_DOWN, &vsi->state))
1292 wr32(hw, I40E_VFINT_DYN_CTLN1(vector - 1), val);
1293 } else {
1294 i40evf_irq_enable_queues(vsi->back, 1
1295 << q_vector->v_idx);
1296 }
1297 if (ITR_IS_DYNAMIC(vsi->tx_itr_setting)) {
1298 old_itr = q_vector->tx.itr;
1299 i40e_set_new_dynamic_itr(&q_vector->tx);
1300 if (old_itr != q_vector->tx.itr) {
1301 val = I40E_VFINT_DYN_CTLN_INTENA_MASK |
1302 I40E_VFINT_DYN_CTLN_CLEARPBA_MASK |
1303 (I40E_TX_ITR <<
1304 I40E_VFINT_DYN_CTLN_ITR_INDX_SHIFT) |
1305 (q_vector->tx.itr <<
1306 I40E_VFINT_DYN_CTLN_INTERVAL_SHIFT);
1307
1308 } else {
1309 val = I40E_VFINT_DYN_CTLN_INTENA_MASK |
1310 I40E_VFINT_DYN_CTLN_CLEARPBA_MASK |
1311 (I40E_ITR_NONE <<
1312 I40E_VFINT_DYN_CTLN_ITR_INDX_SHIFT);
1313 }
1314 if (!test_bit(__I40E_DOWN, &vsi->state))
1315 wr32(hw, I40E_VFINT_DYN_CTLN1(vector - 1), val);
1316 } else {
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001317 i40evf_irq_enable_queues(vsi->back, BIT(q_vector->v_idx));
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001318 }
1319}
1320
1321/**
Greg Rose7f12ad72013-12-21 06:12:51 +00001322 * i40evf_napi_poll - NAPI polling Rx/Tx cleanup routine
1323 * @napi: napi struct with our devices info in it
1324 * @budget: amount of work driver is allowed to do this pass, in packets
1325 *
1326 * This function will clean all queues associated with a q_vector.
1327 *
1328 * Returns the amount of work done
1329 **/
1330int i40evf_napi_poll(struct napi_struct *napi, int budget)
1331{
1332 struct i40e_q_vector *q_vector =
1333 container_of(napi, struct i40e_q_vector, napi);
1334 struct i40e_vsi *vsi = q_vector->vsi;
1335 struct i40e_ring *ring;
1336 bool clean_complete = true;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001337 bool arm_wb = false;
Greg Rose7f12ad72013-12-21 06:12:51 +00001338 int budget_per_ring;
Mitch Williamsa132af22015-01-24 09:58:35 +00001339 int cleaned;
Greg Rose7f12ad72013-12-21 06:12:51 +00001340
1341 if (test_bit(__I40E_DOWN, &vsi->state)) {
1342 napi_complete(napi);
1343 return 0;
1344 }
1345
1346 /* Since the actual Tx work is minimal, we can give the Tx a larger
1347 * budget and be more aggressive about cleaning up the Tx descriptors.
1348 */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001349 i40e_for_each_ring(ring, q_vector->tx) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001350 clean_complete &= i40e_clean_tx_irq(ring, vsi->work_limit);
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001351 arm_wb |= ring->arm_wb;
1352 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001353
1354 /* We attempt to distribute budget to each Rx queue fairly, but don't
1355 * allow the budget to go below 1 because that would exit polling early.
1356 */
1357 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
1358
Mitch Williamsa132af22015-01-24 09:58:35 +00001359 i40e_for_each_ring(ring, q_vector->rx) {
1360 if (ring_is_ps_enabled(ring))
1361 cleaned = i40e_clean_rx_irq_ps(ring, budget_per_ring);
1362 else
1363 cleaned = i40e_clean_rx_irq_1buf(ring, budget_per_ring);
1364 /* if we didn't clean as many as budgeted, we must be done */
1365 clean_complete &= (budget_per_ring != cleaned);
1366 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001367
1368 /* If work not completed, return budget and polling will return */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001369 if (!clean_complete) {
1370 if (arm_wb)
1371 i40e_force_wb(vsi, q_vector);
Greg Rose7f12ad72013-12-21 06:12:51 +00001372 return budget;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001373 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001374
1375 /* Work is done so exit the polling mode and re-enable the interrupt */
1376 napi_complete(napi);
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001377 i40e_update_enable_itr(vsi, q_vector);
Greg Rose7f12ad72013-12-21 06:12:51 +00001378 return 0;
1379}
1380
1381/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001382 * i40evf_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
Greg Rose7f12ad72013-12-21 06:12:51 +00001383 * @skb: send buffer
1384 * @tx_ring: ring to send buffer on
1385 * @flags: the tx flags to be set
1386 *
1387 * Checks the skb and set up correspondingly several generic transmit flags
1388 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1389 *
1390 * Returns error code indicate the frame should be dropped upon error and the
1391 * otherwise returns 0 to indicate the flags has been set properly.
1392 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001393static inline int i40evf_tx_prepare_vlan_flags(struct sk_buff *skb,
1394 struct i40e_ring *tx_ring,
1395 u32 *flags)
Greg Rose7f12ad72013-12-21 06:12:51 +00001396{
1397 __be16 protocol = skb->protocol;
1398 u32 tx_flags = 0;
1399
Greg Rose31eaacc2015-03-31 00:45:03 -07001400 if (protocol == htons(ETH_P_8021Q) &&
1401 !(tx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_TX)) {
1402 /* When HW VLAN acceleration is turned off by the user the
1403 * stack sets the protocol to 8021q so that the driver
1404 * can take any steps required to support the SW only
1405 * VLAN handling. In our case the driver doesn't need
1406 * to take any further steps so just set the protocol
1407 * to the encapsulated ethertype.
1408 */
1409 skb->protocol = vlan_get_protocol(skb);
1410 goto out;
1411 }
1412
Greg Rose7f12ad72013-12-21 06:12:51 +00001413 /* if we have a HW VLAN tag being added, default to the HW one */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001414 if (skb_vlan_tag_present(skb)) {
1415 tx_flags |= skb_vlan_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001416 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1417 /* else if it is a SW VLAN, check the next protocol and store the tag */
1418 } else if (protocol == htons(ETH_P_8021Q)) {
1419 struct vlan_hdr *vhdr, _vhdr;
1420 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1421 if (!vhdr)
1422 return -EINVAL;
1423
1424 protocol = vhdr->h_vlan_encapsulated_proto;
1425 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1426 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1427 }
1428
Greg Rose31eaacc2015-03-31 00:45:03 -07001429out:
Greg Rose7f12ad72013-12-21 06:12:51 +00001430 *flags = tx_flags;
1431 return 0;
1432}
1433
1434/**
1435 * i40e_tso - set up the tso context descriptor
1436 * @tx_ring: ptr to the ring to send
1437 * @skb: ptr to the skb we're sending
Greg Rose7f12ad72013-12-21 06:12:51 +00001438 * @hdr_len: ptr to the size of the packet header
1439 * @cd_tunneling: ptr to context descriptor bits
1440 *
1441 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1442 **/
1443static int i40e_tso(struct i40e_ring *tx_ring, struct sk_buff *skb,
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001444 u8 *hdr_len, u64 *cd_type_cmd_tso_mss,
1445 u32 *cd_tunneling)
Greg Rose7f12ad72013-12-21 06:12:51 +00001446{
1447 u32 cd_cmd, cd_tso_len, cd_mss;
Francois Romieufe6d4aa2014-03-30 03:14:53 +00001448 struct ipv6hdr *ipv6h;
Greg Rose7f12ad72013-12-21 06:12:51 +00001449 struct tcphdr *tcph;
1450 struct iphdr *iph;
1451 u32 l4len;
1452 int err;
Greg Rose7f12ad72013-12-21 06:12:51 +00001453
1454 if (!skb_is_gso(skb))
1455 return 0;
1456
Francois Romieufe6d4aa2014-03-30 03:14:53 +00001457 err = skb_cow_head(skb, 0);
1458 if (err < 0)
1459 return err;
Greg Rose7f12ad72013-12-21 06:12:51 +00001460
Anjali Singhai85e76d02015-02-21 06:44:16 +00001461 iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
1462 ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb) : ipv6_hdr(skb);
1463
1464 if (iph->version == 4) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001465 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1466 iph->tot_len = 0;
1467 iph->check = 0;
1468 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1469 0, IPPROTO_TCP, 0);
Anjali Singhai85e76d02015-02-21 06:44:16 +00001470 } else if (ipv6h->version == 6) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001471 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1472 ipv6h->payload_len = 0;
1473 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
1474 0, IPPROTO_TCP, 0);
1475 }
1476
1477 l4len = skb->encapsulation ? inner_tcp_hdrlen(skb) : tcp_hdrlen(skb);
1478 *hdr_len = (skb->encapsulation
1479 ? (skb_inner_transport_header(skb) - skb->data)
1480 : skb_transport_offset(skb)) + l4len;
1481
1482 /* find the field values */
1483 cd_cmd = I40E_TX_CTX_DESC_TSO;
1484 cd_tso_len = skb->len - *hdr_len;
1485 cd_mss = skb_shinfo(skb)->gso_size;
1486 *cd_type_cmd_tso_mss |= ((u64)cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
1487 ((u64)cd_tso_len <<
1488 I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
1489 ((u64)cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
1490 return 1;
1491}
1492
1493/**
1494 * i40e_tx_enable_csum - Enable Tx checksum offloads
1495 * @skb: send buffer
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001496 * @tx_flags: pointer to Tx flags currently set
Greg Rose7f12ad72013-12-21 06:12:51 +00001497 * @td_cmd: Tx descriptor command bits to set
1498 * @td_offset: Tx descriptor header offsets to set
1499 * @cd_tunneling: ptr to context desc bits
1500 **/
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001501static void i40e_tx_enable_csum(struct sk_buff *skb, u32 *tx_flags,
Greg Rose7f12ad72013-12-21 06:12:51 +00001502 u32 *td_cmd, u32 *td_offset,
1503 struct i40e_ring *tx_ring,
1504 u32 *cd_tunneling)
1505{
1506 struct ipv6hdr *this_ipv6_hdr;
1507 unsigned int this_tcp_hdrlen;
1508 struct iphdr *this_ip_hdr;
1509 u32 network_hdr_len;
1510 u8 l4_hdr = 0;
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001511 u32 l4_tunnel = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001512
1513 if (skb->encapsulation) {
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001514 switch (ip_hdr(skb)->protocol) {
1515 case IPPROTO_UDP:
1516 l4_tunnel = I40E_TXD_CTX_UDP_TUNNELING;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001517 *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL;
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001518 break;
1519 default:
1520 return;
1521 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001522 network_hdr_len = skb_inner_network_header_len(skb);
1523 this_ip_hdr = inner_ip_hdr(skb);
1524 this_ipv6_hdr = inner_ipv6_hdr(skb);
1525 this_tcp_hdrlen = inner_tcp_hdrlen(skb);
1526
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001527 if (*tx_flags & I40E_TX_FLAGS_IPV4) {
1528 if (*tx_flags & I40E_TX_FLAGS_TSO) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001529 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV4;
1530 ip_hdr(skb)->check = 0;
1531 } else {
1532 *cd_tunneling |=
1533 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1534 }
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001535 } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
Anjali Singhai85e76d02015-02-21 06:44:16 +00001536 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV6;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001537 if (*tx_flags & I40E_TX_FLAGS_TSO)
Greg Rose7f12ad72013-12-21 06:12:51 +00001538 ip_hdr(skb)->check = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001539 }
1540
1541 /* Now set the ctx descriptor fields */
1542 *cd_tunneling |= (skb_network_header_len(skb) >> 2) <<
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001543 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT |
1544 l4_tunnel |
Greg Rose7f12ad72013-12-21 06:12:51 +00001545 ((skb_inner_network_offset(skb) -
1546 skb_transport_offset(skb)) >> 1) <<
1547 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
Anjali Singhai85e76d02015-02-21 06:44:16 +00001548 if (this_ip_hdr->version == 6) {
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001549 *tx_flags &= ~I40E_TX_FLAGS_IPV4;
1550 *tx_flags |= I40E_TX_FLAGS_IPV6;
Anjali Singhai85e76d02015-02-21 06:44:16 +00001551 }
1552
Greg Rose7f12ad72013-12-21 06:12:51 +00001553
1554 } else {
1555 network_hdr_len = skb_network_header_len(skb);
1556 this_ip_hdr = ip_hdr(skb);
1557 this_ipv6_hdr = ipv6_hdr(skb);
1558 this_tcp_hdrlen = tcp_hdrlen(skb);
1559 }
1560
1561 /* Enable IP checksum offloads */
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001562 if (*tx_flags & I40E_TX_FLAGS_IPV4) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001563 l4_hdr = this_ip_hdr->protocol;
1564 /* the stack computes the IP header already, the only time we
1565 * need the hardware to recompute it is in the case of TSO.
1566 */
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001567 if (*tx_flags & I40E_TX_FLAGS_TSO) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001568 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4_CSUM;
1569 this_ip_hdr->check = 0;
1570 } else {
1571 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4;
1572 }
1573 /* Now set the td_offset for IP header length */
1574 *td_offset = (network_hdr_len >> 2) <<
1575 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001576 } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001577 l4_hdr = this_ipv6_hdr->nexthdr;
1578 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
1579 /* Now set the td_offset for IP header length */
1580 *td_offset = (network_hdr_len >> 2) <<
1581 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1582 }
1583 /* words in MACLEN + dwords in IPLEN + dwords in L4Len */
1584 *td_offset |= (skb_network_offset(skb) >> 1) <<
1585 I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1586
1587 /* Enable L4 checksum offloads */
1588 switch (l4_hdr) {
1589 case IPPROTO_TCP:
1590 /* enable checksum offloads */
1591 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1592 *td_offset |= (this_tcp_hdrlen >> 2) <<
1593 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1594 break;
1595 case IPPROTO_SCTP:
1596 /* enable SCTP checksum offload */
1597 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
1598 *td_offset |= (sizeof(struct sctphdr) >> 2) <<
1599 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1600 break;
1601 case IPPROTO_UDP:
1602 /* enable UDP checksum offload */
1603 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
1604 *td_offset |= (sizeof(struct udphdr) >> 2) <<
1605 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1606 break;
1607 default:
1608 break;
1609 }
1610}
1611
1612/**
1613 * i40e_create_tx_ctx Build the Tx context descriptor
1614 * @tx_ring: ring to create the descriptor on
1615 * @cd_type_cmd_tso_mss: Quad Word 1
1616 * @cd_tunneling: Quad Word 0 - bits 0-31
1617 * @cd_l2tag2: Quad Word 0 - bits 32-63
1618 **/
1619static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
1620 const u64 cd_type_cmd_tso_mss,
1621 const u32 cd_tunneling, const u32 cd_l2tag2)
1622{
1623 struct i40e_tx_context_desc *context_desc;
1624 int i = tx_ring->next_to_use;
1625
Jesse Brandeburgff40dd52014-02-14 02:14:41 +00001626 if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
1627 !cd_tunneling && !cd_l2tag2)
Greg Rose7f12ad72013-12-21 06:12:51 +00001628 return;
1629
1630 /* grab the next descriptor */
1631 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
1632
1633 i++;
1634 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
1635
1636 /* cpu_to_le32 and assign to struct fields */
1637 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
1638 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
Jesse Brandeburg3efbbb22014-06-04 20:41:54 +00001639 context_desc->rsvd = cpu_to_le16(0);
Greg Rose7f12ad72013-12-21 06:12:51 +00001640 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
1641}
1642
Anjali Singhai71da6192015-02-21 06:42:35 +00001643 /**
1644 * i40e_chk_linearize - Check if there are more than 8 fragments per packet
1645 * @skb: send buffer
1646 * @tx_flags: collected send information
Anjali Singhai71da6192015-02-21 06:42:35 +00001647 *
1648 * Note: Our HW can't scatter-gather more than 8 fragments to build
1649 * a packet on the wire and so we need to figure out the cases where we
1650 * need to linearize the skb.
1651 **/
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001652static bool i40e_chk_linearize(struct sk_buff *skb, u32 tx_flags)
Anjali Singhai71da6192015-02-21 06:42:35 +00001653{
1654 struct skb_frag_struct *frag;
1655 bool linearize = false;
1656 unsigned int size = 0;
1657 u16 num_frags;
1658 u16 gso_segs;
1659
1660 num_frags = skb_shinfo(skb)->nr_frags;
1661 gso_segs = skb_shinfo(skb)->gso_segs;
1662
1663 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO)) {
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001664 u16 j = 0;
Anjali Singhai71da6192015-02-21 06:42:35 +00001665
1666 if (num_frags < (I40E_MAX_BUFFER_TXD))
1667 goto linearize_chk_done;
1668 /* try the simple math, if we have too many frags per segment */
1669 if (DIV_ROUND_UP((num_frags + gso_segs), gso_segs) >
1670 I40E_MAX_BUFFER_TXD) {
1671 linearize = true;
1672 goto linearize_chk_done;
1673 }
1674 frag = &skb_shinfo(skb)->frags[0];
Anjali Singhai71da6192015-02-21 06:42:35 +00001675 /* we might still have more fragments per segment */
1676 do {
1677 size += skb_frag_size(frag);
1678 frag++; j++;
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001679 if ((size >= skb_shinfo(skb)->gso_size) &&
1680 (j < I40E_MAX_BUFFER_TXD)) {
1681 size = (size % skb_shinfo(skb)->gso_size);
1682 j = (size) ? 1 : 0;
1683 }
Anjali Singhai71da6192015-02-21 06:42:35 +00001684 if (j == I40E_MAX_BUFFER_TXD) {
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001685 linearize = true;
1686 break;
Anjali Singhai71da6192015-02-21 06:42:35 +00001687 }
1688 num_frags--;
1689 } while (num_frags);
1690 } else {
1691 if (num_frags >= I40E_MAX_BUFFER_TXD)
1692 linearize = true;
1693 }
1694
1695linearize_chk_done:
1696 return linearize;
1697}
1698
Greg Rose7f12ad72013-12-21 06:12:51 +00001699/**
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001700 * __i40evf_maybe_stop_tx - 2nd level check for tx stop conditions
1701 * @tx_ring: the ring to be checked
1702 * @size: the size buffer we want to assure is available
1703 *
1704 * Returns -EBUSY if a stop is needed, else 0
1705 **/
1706static inline int __i40evf_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
1707{
1708 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1709 /* Memory barrier before checking head and tail */
1710 smp_mb();
1711
1712 /* Check again in a case another CPU has just made room available. */
1713 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
1714 return -EBUSY;
1715
1716 /* A reprieve! - use start_queue because it doesn't call schedule */
1717 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
1718 ++tx_ring->tx_stats.restart_queue;
1719 return 0;
1720}
1721
1722/**
1723 * i40evf_maybe_stop_tx - 1st level check for tx stop conditions
1724 * @tx_ring: the ring to be checked
1725 * @size: the size buffer we want to assure is available
1726 *
1727 * Returns 0 if stop is not needed
1728 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001729static inline int i40evf_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001730{
1731 if (likely(I40E_DESC_UNUSED(tx_ring) >= size))
1732 return 0;
1733 return __i40evf_maybe_stop_tx(tx_ring, size);
1734}
1735
1736/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001737 * i40evf_tx_map - Build the Tx descriptor
Greg Rose7f12ad72013-12-21 06:12:51 +00001738 * @tx_ring: ring to send buffer on
1739 * @skb: send buffer
1740 * @first: first buffer info buffer to use
1741 * @tx_flags: collected send information
1742 * @hdr_len: size of the packet header
1743 * @td_cmd: the command field in the descriptor
1744 * @td_offset: offset for checksum or crc
1745 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001746static inline void i40evf_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
1747 struct i40e_tx_buffer *first, u32 tx_flags,
1748 const u8 hdr_len, u32 td_cmd, u32 td_offset)
Greg Rose7f12ad72013-12-21 06:12:51 +00001749{
1750 unsigned int data_len = skb->data_len;
1751 unsigned int size = skb_headlen(skb);
1752 struct skb_frag_struct *frag;
1753 struct i40e_tx_buffer *tx_bi;
1754 struct i40e_tx_desc *tx_desc;
1755 u16 i = tx_ring->next_to_use;
1756 u32 td_tag = 0;
1757 dma_addr_t dma;
1758 u16 gso_segs;
1759
1760 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
1761 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
1762 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
1763 I40E_TX_FLAGS_VLAN_SHIFT;
1764 }
1765
1766 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
1767 gso_segs = skb_shinfo(skb)->gso_segs;
1768 else
1769 gso_segs = 1;
1770
1771 /* multiply data chunks by size of headers */
1772 first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
1773 first->gso_segs = gso_segs;
1774 first->skb = skb;
1775 first->tx_flags = tx_flags;
1776
1777 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
1778
1779 tx_desc = I40E_TX_DESC(tx_ring, i);
1780 tx_bi = first;
1781
1782 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
1783 if (dma_mapping_error(tx_ring->dev, dma))
1784 goto dma_error;
1785
1786 /* record length, and DMA address */
1787 dma_unmap_len_set(tx_bi, len, size);
1788 dma_unmap_addr_set(tx_bi, dma, dma);
1789
1790 tx_desc->buffer_addr = cpu_to_le64(dma);
1791
1792 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
1793 tx_desc->cmd_type_offset_bsz =
1794 build_ctob(td_cmd, td_offset,
1795 I40E_MAX_DATA_PER_TXD, td_tag);
1796
1797 tx_desc++;
1798 i++;
1799 if (i == tx_ring->count) {
1800 tx_desc = I40E_TX_DESC(tx_ring, 0);
1801 i = 0;
1802 }
1803
1804 dma += I40E_MAX_DATA_PER_TXD;
1805 size -= I40E_MAX_DATA_PER_TXD;
1806
1807 tx_desc->buffer_addr = cpu_to_le64(dma);
1808 }
1809
1810 if (likely(!data_len))
1811 break;
1812
1813 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
1814 size, td_tag);
1815
1816 tx_desc++;
1817 i++;
1818 if (i == tx_ring->count) {
1819 tx_desc = I40E_TX_DESC(tx_ring, 0);
1820 i = 0;
1821 }
1822
1823 size = skb_frag_size(frag);
1824 data_len -= size;
1825
1826 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
1827 DMA_TO_DEVICE);
1828
1829 tx_bi = &tx_ring->tx_bi[i];
1830 }
1831
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00001832 /* Place RS bit on last descriptor of any packet that spans across the
1833 * 4th descriptor (WB_STRIDE aka 0x3) in a 64B cacheline.
1834 */
1835#define WB_STRIDE 0x3
1836 if (((i & WB_STRIDE) != WB_STRIDE) &&
1837 (first <= &tx_ring->tx_bi[i]) &&
1838 (first >= &tx_ring->tx_bi[i & ~WB_STRIDE])) {
1839 tx_desc->cmd_type_offset_bsz =
1840 build_ctob(td_cmd, td_offset, size, td_tag) |
1841 cpu_to_le64((u64)I40E_TX_DESC_CMD_EOP <<
1842 I40E_TXD_QW1_CMD_SHIFT);
1843 } else {
1844 tx_desc->cmd_type_offset_bsz =
1845 build_ctob(td_cmd, td_offset, size, td_tag) |
1846 cpu_to_le64((u64)I40E_TXD_CMD <<
1847 I40E_TXD_QW1_CMD_SHIFT);
1848 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001849
1850 netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
1851 tx_ring->queue_index),
1852 first->bytecount);
1853
Greg Rose7f12ad72013-12-21 06:12:51 +00001854 /* Force memory writes to complete before letting h/w
1855 * know there are new descriptors to fetch. (Only
1856 * applicable for weak-ordered memory model archs,
1857 * such as IA-64).
1858 */
1859 wmb();
1860
1861 /* set next_to_watch value indicating a packet is present */
1862 first->next_to_watch = tx_desc;
1863
1864 i++;
1865 if (i == tx_ring->count)
1866 i = 0;
1867
1868 tx_ring->next_to_use = i;
1869
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001870 i40evf_maybe_stop_tx(tx_ring, DESC_NEEDED);
Greg Rose7f12ad72013-12-21 06:12:51 +00001871 /* notify HW of packet */
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001872 if (!skb->xmit_more ||
1873 netif_xmit_stopped(netdev_get_tx_queue(tx_ring->netdev,
1874 tx_ring->queue_index)))
1875 writel(i, tx_ring->tail);
Jesse Brandeburg489ce7a2015-04-27 14:57:08 -04001876 else
1877 prefetchw(tx_desc + 1);
Greg Rose7f12ad72013-12-21 06:12:51 +00001878
1879 return;
1880
1881dma_error:
1882 dev_info(tx_ring->dev, "TX DMA map failed\n");
1883
1884 /* clear dma mappings for failed tx_bi map */
1885 for (;;) {
1886 tx_bi = &tx_ring->tx_bi[i];
1887 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
1888 if (tx_bi == first)
1889 break;
1890 if (i == 0)
1891 i = tx_ring->count;
1892 i--;
1893 }
1894
1895 tx_ring->next_to_use = i;
1896}
1897
1898/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001899 * i40evf_xmit_descriptor_count - calculate number of tx descriptors needed
Greg Rose7f12ad72013-12-21 06:12:51 +00001900 * @skb: send buffer
1901 * @tx_ring: ring to send buffer on
1902 *
1903 * Returns number of data descriptors needed for this skb. Returns 0 to indicate
1904 * there is not enough descriptors available in this ring since we need at least
1905 * one descriptor.
1906 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001907static inline int i40evf_xmit_descriptor_count(struct sk_buff *skb,
1908 struct i40e_ring *tx_ring)
Greg Rose7f12ad72013-12-21 06:12:51 +00001909{
Greg Rose7f12ad72013-12-21 06:12:51 +00001910 unsigned int f;
Greg Rose7f12ad72013-12-21 06:12:51 +00001911 int count = 0;
1912
1913 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
1914 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
Jesse Brandeburgbe560522014-02-06 05:51:13 +00001915 * + 4 desc gap to avoid the cache line where head is,
Greg Rose7f12ad72013-12-21 06:12:51 +00001916 * + 1 desc for context descriptor,
1917 * otherwise try next time
1918 */
Greg Rose7f12ad72013-12-21 06:12:51 +00001919 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1920 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Jesse Brandeburg980093e2014-05-10 04:49:12 +00001921
Greg Rose7f12ad72013-12-21 06:12:51 +00001922 count += TXD_USE_COUNT(skb_headlen(skb));
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001923 if (i40evf_maybe_stop_tx(tx_ring, count + 4 + 1)) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001924 tx_ring->tx_stats.tx_busy++;
1925 return 0;
1926 }
1927 return count;
1928}
1929
1930/**
1931 * i40e_xmit_frame_ring - Sends buffer on Tx ring
1932 * @skb: send buffer
1933 * @tx_ring: ring to send buffer on
1934 *
1935 * Returns NETDEV_TX_OK if sent, else an error code
1936 **/
1937static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
1938 struct i40e_ring *tx_ring)
1939{
1940 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
1941 u32 cd_tunneling = 0, cd_l2tag2 = 0;
1942 struct i40e_tx_buffer *first;
1943 u32 td_offset = 0;
1944 u32 tx_flags = 0;
1945 __be16 protocol;
1946 u32 td_cmd = 0;
1947 u8 hdr_len = 0;
1948 int tso;
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001949 if (0 == i40evf_xmit_descriptor_count(skb, tx_ring))
Greg Rose7f12ad72013-12-21 06:12:51 +00001950 return NETDEV_TX_BUSY;
1951
1952 /* prepare the xmit flags */
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001953 if (i40evf_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
Greg Rose7f12ad72013-12-21 06:12:51 +00001954 goto out_drop;
1955
1956 /* obtain protocol of skb */
Vlad Yasevicha12c4152014-08-25 10:34:53 -04001957 protocol = vlan_get_protocol(skb);
Greg Rose7f12ad72013-12-21 06:12:51 +00001958
1959 /* record the location of the first descriptor for this packet */
1960 first = &tx_ring->tx_bi[tx_ring->next_to_use];
1961
1962 /* setup IPv4/IPv6 offloads */
1963 if (protocol == htons(ETH_P_IP))
1964 tx_flags |= I40E_TX_FLAGS_IPV4;
1965 else if (protocol == htons(ETH_P_IPV6))
1966 tx_flags |= I40E_TX_FLAGS_IPV6;
1967
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001968 tso = i40e_tso(tx_ring, skb, &hdr_len,
Greg Rose7f12ad72013-12-21 06:12:51 +00001969 &cd_type_cmd_tso_mss, &cd_tunneling);
1970
1971 if (tso < 0)
1972 goto out_drop;
1973 else if (tso)
1974 tx_flags |= I40E_TX_FLAGS_TSO;
1975
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001976 if (i40e_chk_linearize(skb, tx_flags))
Anjali Singhai71da6192015-02-21 06:42:35 +00001977 if (skb_linearize(skb))
1978 goto out_drop;
1979
Greg Rose7f12ad72013-12-21 06:12:51 +00001980 skb_tx_timestamp(skb);
1981
1982 /* always enable CRC insertion offload */
1983 td_cmd |= I40E_TX_DESC_CMD_ICRC;
1984
1985 /* Always offload the checksum, since it's in the data descriptor */
1986 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1987 tx_flags |= I40E_TX_FLAGS_CSUM;
1988
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001989 i40e_tx_enable_csum(skb, &tx_flags, &td_cmd, &td_offset,
Greg Rose7f12ad72013-12-21 06:12:51 +00001990 tx_ring, &cd_tunneling);
1991 }
1992
1993 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
1994 cd_tunneling, cd_l2tag2);
1995
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001996 i40evf_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
1997 td_cmd, td_offset);
Greg Rose7f12ad72013-12-21 06:12:51 +00001998
Greg Rose7f12ad72013-12-21 06:12:51 +00001999 return NETDEV_TX_OK;
2000
2001out_drop:
2002 dev_kfree_skb_any(skb);
2003 return NETDEV_TX_OK;
2004}
2005
2006/**
2007 * i40evf_xmit_frame - Selects the correct VSI and Tx queue to send buffer
2008 * @skb: send buffer
2009 * @netdev: network interface device structure
2010 *
2011 * Returns NETDEV_TX_OK if sent, else an error code
2012 **/
2013netdev_tx_t i40evf_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
2014{
2015 struct i40evf_adapter *adapter = netdev_priv(netdev);
2016 struct i40e_ring *tx_ring = adapter->tx_rings[skb->queue_mapping];
2017
2018 /* hardware can't handle really short frames, hardware padding works
2019 * beyond this point
2020 */
2021 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
2022 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
2023 return NETDEV_TX_OK;
2024 skb->len = I40E_MIN_TX_LEN;
2025 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
2026 }
2027
2028 return i40e_xmit_frame_ring(skb, tx_ring);
2029}