blob: b53333a4e10b9e788da9558c034d6201fb020cdd [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) {
Kiran Patila42e7a32015-11-06 15:26:03 -080054 dev_kfree_skb_any(tx_buffer->skb);
Greg Rose7f12ad72013-12-21 06:12:51 +000055 if (dma_unmap_len(tx_buffer, len))
56 dma_unmap_single(ring->dev,
57 dma_unmap_addr(tx_buffer, dma),
58 dma_unmap_len(tx_buffer, len),
59 DMA_TO_DEVICE);
60 } else if (dma_unmap_len(tx_buffer, len)) {
61 dma_unmap_page(ring->dev,
62 dma_unmap_addr(tx_buffer, dma),
63 dma_unmap_len(tx_buffer, len),
64 DMA_TO_DEVICE);
65 }
Kiran Patila42e7a32015-11-06 15:26:03 -080066
67 if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
68 kfree(tx_buffer->raw_buf);
69
Greg Rose7f12ad72013-12-21 06:12:51 +000070 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/**
Kiran Patil9c6c1252015-11-06 15:26:02 -0800130 * i40evf_get_tx_pending - how many Tx descriptors not processed
131 * @tx_ring: the ring of descriptors
Jesse Brandeburga68de582015-02-24 05:26:03 +0000132 *
Kiran Patil9c6c1252015-11-06 15:26:02 -0800133 * Since there is no access to the ring head register
134 * in XL710, we need to use our local copies
Jesse Brandeburga68de582015-02-24 05:26:03 +0000135 **/
Kiran Patil9c6c1252015-11-06 15:26:02 -0800136u32 i40evf_get_tx_pending(struct i40e_ring *ring)
Jesse Brandeburga68de582015-02-24 05:26:03 +0000137{
Kiran Patil9c6c1252015-11-06 15:26:02 -0800138 u32 head, tail;
Jesse Brandeburga68de582015-02-24 05:26:03 +0000139
Kiran Patil9c6c1252015-11-06 15:26:02 -0800140 head = i40e_get_head(ring);
141 tail = readl(ring->tail);
142
143 if (head != tail)
144 return (head < tail) ?
145 tail - head : (tail + ring->count - head);
146
147 return 0;
Jesse Brandeburga68de582015-02-24 05:26:03 +0000148}
149
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000150#define WB_STRIDE 0x3
151
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000152/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000153 * i40e_clean_tx_irq - Reclaim resources after transmit completes
154 * @tx_ring: tx ring to clean
155 * @budget: how many cleans we're allowed
156 *
157 * Returns true if there's any budget left (e.g. the clean is finished)
158 **/
159static bool i40e_clean_tx_irq(struct i40e_ring *tx_ring, int budget)
160{
161 u16 i = tx_ring->next_to_clean;
162 struct i40e_tx_buffer *tx_buf;
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000163 struct i40e_tx_desc *tx_head;
Greg Rose7f12ad72013-12-21 06:12:51 +0000164 struct i40e_tx_desc *tx_desc;
165 unsigned int total_packets = 0;
166 unsigned int total_bytes = 0;
167
168 tx_buf = &tx_ring->tx_bi[i];
169 tx_desc = I40E_TX_DESC(tx_ring, i);
170 i -= tx_ring->count;
171
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000172 tx_head = I40E_TX_DESC(tx_ring, i40e_get_head(tx_ring));
173
Greg Rose7f12ad72013-12-21 06:12:51 +0000174 do {
175 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
176
177 /* if next_to_watch is not set then there is no work pending */
178 if (!eop_desc)
179 break;
180
181 /* prevent any other reads prior to eop_desc */
182 read_barrier_depends();
183
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000184 /* we have caught up to head, no work left to do */
185 if (tx_head == tx_desc)
Greg Rose7f12ad72013-12-21 06:12:51 +0000186 break;
187
188 /* clear next_to_watch to prevent false hangs */
189 tx_buf->next_to_watch = NULL;
190
191 /* update the statistics for this packet */
192 total_bytes += tx_buf->bytecount;
193 total_packets += tx_buf->gso_segs;
194
195 /* free the skb */
196 dev_kfree_skb_any(tx_buf->skb);
197
198 /* unmap skb header data */
199 dma_unmap_single(tx_ring->dev,
200 dma_unmap_addr(tx_buf, dma),
201 dma_unmap_len(tx_buf, len),
202 DMA_TO_DEVICE);
203
204 /* clear tx_buffer data */
205 tx_buf->skb = NULL;
206 dma_unmap_len_set(tx_buf, len, 0);
207
208 /* unmap remaining buffers */
209 while (tx_desc != eop_desc) {
210
211 tx_buf++;
212 tx_desc++;
213 i++;
214 if (unlikely(!i)) {
215 i -= tx_ring->count;
216 tx_buf = tx_ring->tx_bi;
217 tx_desc = I40E_TX_DESC(tx_ring, 0);
218 }
219
220 /* unmap any remaining paged data */
221 if (dma_unmap_len(tx_buf, len)) {
222 dma_unmap_page(tx_ring->dev,
223 dma_unmap_addr(tx_buf, dma),
224 dma_unmap_len(tx_buf, len),
225 DMA_TO_DEVICE);
226 dma_unmap_len_set(tx_buf, len, 0);
227 }
228 }
229
230 /* move us one more past the eop_desc for start of next pkt */
231 tx_buf++;
232 tx_desc++;
233 i++;
234 if (unlikely(!i)) {
235 i -= tx_ring->count;
236 tx_buf = tx_ring->tx_bi;
237 tx_desc = I40E_TX_DESC(tx_ring, 0);
238 }
239
Jesse Brandeburg016890b2015-02-27 09:15:31 +0000240 prefetch(tx_desc);
241
Greg Rose7f12ad72013-12-21 06:12:51 +0000242 /* update budget accounting */
243 budget--;
244 } while (likely(budget));
245
246 i += tx_ring->count;
247 tx_ring->next_to_clean = i;
248 u64_stats_update_begin(&tx_ring->syncp);
249 tx_ring->stats.bytes += total_bytes;
250 tx_ring->stats.packets += total_packets;
251 u64_stats_update_end(&tx_ring->syncp);
252 tx_ring->q_vector->tx.total_bytes += total_bytes;
253 tx_ring->q_vector->tx.total_packets += total_packets;
254
Greg Rose7f12ad72013-12-21 06:12:51 +0000255 netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
256 tx_ring->queue_index),
257 total_packets, total_bytes);
258
259#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
260 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
261 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
262 /* Make sure that anybody stopping the queue after this
263 * sees the new next_to_clean.
264 */
265 smp_mb();
266 if (__netif_subqueue_stopped(tx_ring->netdev,
267 tx_ring->queue_index) &&
268 !test_bit(__I40E_DOWN, &tx_ring->vsi->state)) {
269 netif_wake_subqueue(tx_ring->netdev,
270 tx_ring->queue_index);
271 ++tx_ring->tx_stats.restart_queue;
272 }
273 }
274
Kiran Patilb03a8c12015-09-24 18:13:15 -0400275 return !!budget;
Greg Rose7f12ad72013-12-21 06:12:51 +0000276}
277
278/**
Kiran Patilb03a8c12015-09-24 18:13:15 -0400279 * i40evf_force_wb -Arm hardware to do a wb on noncache aligned descriptors
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000280 * @vsi: the VSI we care about
281 * @q_vector: the vector on which to force writeback
282 *
283 **/
Kiran Patilb03a8c12015-09-24 18:13:15 -0400284static void i40evf_force_wb(struct i40e_vsi *vsi, struct i40e_q_vector *q_vector)
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000285{
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -0400286 u16 flags = q_vector->tx.ring[0].flags;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000287
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -0400288 if (flags & I40E_TXR_FLAGS_WB_ON_ITR) {
289 u32 val;
290
291 if (q_vector->arm_wb_state)
292 return;
293
294 val = I40E_VFINT_DYN_CTLN1_WB_ON_ITR_MASK;
295
296 wr32(&vsi->back->hw,
297 I40E_VFINT_DYN_CTLN1(q_vector->v_idx +
298 vsi->base_vector - 1),
299 val);
300 q_vector->arm_wb_state = true;
301 } else {
302 u32 val = I40E_VFINT_DYN_CTLN1_INTENA_MASK |
303 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK | /* set noitr */
304 I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK |
305 I40E_VFINT_DYN_CTLN1_SW_ITR_INDX_ENA_MASK;
306 /* allow 00 to be written to the index */
307
308 wr32(&vsi->back->hw,
309 I40E_VFINT_DYN_CTLN1(q_vector->v_idx +
310 vsi->base_vector - 1), val);
311 }
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000312}
313
314/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000315 * i40e_set_new_dynamic_itr - Find new ITR level
316 * @rc: structure containing ring performance data
317 *
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400318 * Returns true if ITR changed, false if not
319 *
Greg Rose7f12ad72013-12-21 06:12:51 +0000320 * Stores a new ITR value based on packets and byte counts during
321 * the last interrupt. The advantage of per interrupt computation
322 * is faster updates and more accurate ITR for the current traffic
323 * pattern. Constants in this function were computed based on
324 * theoretical maximum wire speed and thresholds were set based on
325 * testing data as well as attempting to minimize response time
326 * while increasing bulk throughput.
327 **/
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400328static bool i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
Greg Rose7f12ad72013-12-21 06:12:51 +0000329{
330 enum i40e_latency_range new_latency_range = rc->latency_range;
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400331 struct i40e_q_vector *qv = rc->ring->q_vector;
Greg Rose7f12ad72013-12-21 06:12:51 +0000332 u32 new_itr = rc->itr;
333 int bytes_per_int;
Jesse Brandeburg51cc6d92015-09-28 14:16:52 -0400334 int usecs;
Greg Rose7f12ad72013-12-21 06:12:51 +0000335
336 if (rc->total_packets == 0 || !rc->itr)
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400337 return false;
Greg Rose7f12ad72013-12-21 06:12:51 +0000338
339 /* simple throttlerate management
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400340 * 0-10MB/s lowest (50000 ints/s)
Greg Rose7f12ad72013-12-21 06:12:51 +0000341 * 10-20MB/s low (20000 ints/s)
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400342 * 20-1249MB/s bulk (18000 ints/s)
343 * > 40000 Rx packets per second (8000 ints/s)
Jesse Brandeburg51cc6d92015-09-28 14:16:52 -0400344 *
345 * The math works out because the divisor is in 10^(-6) which
346 * turns the bytes/us input value into MB/s values, but
347 * make sure to use usecs, as the register values written
Jesse Brandeburgee2319c2015-09-28 14:16:54 -0400348 * are in 2 usec increments in the ITR registers, and make sure
349 * to use the smoothed values that the countdown timer gives us.
Greg Rose7f12ad72013-12-21 06:12:51 +0000350 */
Jesse Brandeburgee2319c2015-09-28 14:16:54 -0400351 usecs = (rc->itr << 1) * ITR_COUNTDOWN_START;
Jesse Brandeburg51cc6d92015-09-28 14:16:52 -0400352 bytes_per_int = rc->total_bytes / usecs;
Jesse Brandeburgee2319c2015-09-28 14:16:54 -0400353
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400354 switch (new_latency_range) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000355 case I40E_LOWEST_LATENCY:
356 if (bytes_per_int > 10)
357 new_latency_range = I40E_LOW_LATENCY;
358 break;
359 case I40E_LOW_LATENCY:
360 if (bytes_per_int > 20)
361 new_latency_range = I40E_BULK_LATENCY;
362 else if (bytes_per_int <= 10)
363 new_latency_range = I40E_LOWEST_LATENCY;
364 break;
365 case I40E_BULK_LATENCY:
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400366 case I40E_ULTRA_LATENCY:
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400367 default:
368 if (bytes_per_int <= 20)
369 new_latency_range = I40E_LOW_LATENCY;
Greg Rose7f12ad72013-12-21 06:12:51 +0000370 break;
371 }
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400372
373 /* this is to adjust RX more aggressively when streaming small
374 * packets. The value of 40000 was picked as it is just beyond
375 * what the hardware can receive per second if in low latency
376 * mode.
377 */
378#define RX_ULTRA_PACKET_RATE 40000
379
380 if ((((rc->total_packets * 1000000) / usecs) > RX_ULTRA_PACKET_RATE) &&
381 (&qv->rx == rc))
382 new_latency_range = I40E_ULTRA_LATENCY;
383
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400384 rc->latency_range = new_latency_range;
Greg Rose7f12ad72013-12-21 06:12:51 +0000385
386 switch (new_latency_range) {
387 case I40E_LOWEST_LATENCY:
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400388 new_itr = I40E_ITR_50K;
Greg Rose7f12ad72013-12-21 06:12:51 +0000389 break;
390 case I40E_LOW_LATENCY:
391 new_itr = I40E_ITR_20K;
392 break;
393 case I40E_BULK_LATENCY:
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400394 new_itr = I40E_ITR_18K;
395 break;
396 case I40E_ULTRA_LATENCY:
Greg Rose7f12ad72013-12-21 06:12:51 +0000397 new_itr = I40E_ITR_8K;
398 break;
399 default:
400 break;
401 }
402
Greg Rose7f12ad72013-12-21 06:12:51 +0000403 rc->total_bytes = 0;
404 rc->total_packets = 0;
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400405
406 if (new_itr != rc->itr) {
407 rc->itr = new_itr;
408 return true;
409 }
410
411 return false;
Greg Rose7f12ad72013-12-21 06:12:51 +0000412}
413
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400414/*
Greg Rose7f12ad72013-12-21 06:12:51 +0000415 * i40evf_setup_tx_descriptors - Allocate the Tx descriptors
416 * @tx_ring: the tx ring to set up
417 *
418 * Return 0 on success, negative on error
419 **/
420int i40evf_setup_tx_descriptors(struct i40e_ring *tx_ring)
421{
422 struct device *dev = tx_ring->dev;
423 int bi_size;
424
425 if (!dev)
426 return -ENOMEM;
427
Mitch Williams67c818a2015-06-19 08:56:30 -0700428 /* warn if we are about to overwrite the pointer */
429 WARN_ON(tx_ring->tx_bi);
Greg Rose7f12ad72013-12-21 06:12:51 +0000430 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
431 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
432 if (!tx_ring->tx_bi)
433 goto err;
434
435 /* round up to nearest 4K */
436 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000437 /* add u32 for head writeback, align after this takes care of
438 * guaranteeing this is at least one cache line in size
439 */
440 tx_ring->size += sizeof(u32);
Greg Rose7f12ad72013-12-21 06:12:51 +0000441 tx_ring->size = ALIGN(tx_ring->size, 4096);
442 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
443 &tx_ring->dma, GFP_KERNEL);
444 if (!tx_ring->desc) {
445 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
446 tx_ring->size);
447 goto err;
448 }
449
450 tx_ring->next_to_use = 0;
451 tx_ring->next_to_clean = 0;
452 return 0;
453
454err:
455 kfree(tx_ring->tx_bi);
456 tx_ring->tx_bi = NULL;
457 return -ENOMEM;
458}
459
460/**
461 * i40evf_clean_rx_ring - Free Rx buffers
462 * @rx_ring: ring to be cleaned
463 **/
464void i40evf_clean_rx_ring(struct i40e_ring *rx_ring)
465{
466 struct device *dev = rx_ring->dev;
467 struct i40e_rx_buffer *rx_bi;
468 unsigned long bi_size;
469 u16 i;
470
471 /* ring already cleared, nothing to do */
472 if (!rx_ring->rx_bi)
473 return;
474
Mitch Williamsa132af22015-01-24 09:58:35 +0000475 if (ring_is_ps_enabled(rx_ring)) {
476 int bufsz = ALIGN(rx_ring->rx_hdr_len, 256) * rx_ring->count;
477
478 rx_bi = &rx_ring->rx_bi[0];
479 if (rx_bi->hdr_buf) {
480 dma_free_coherent(dev,
481 bufsz,
482 rx_bi->hdr_buf,
483 rx_bi->dma);
484 for (i = 0; i < rx_ring->count; i++) {
485 rx_bi = &rx_ring->rx_bi[i];
486 rx_bi->dma = 0;
Shannon Nelson37a29732015-02-27 09:15:19 +0000487 rx_bi->hdr_buf = NULL;
Mitch Williamsa132af22015-01-24 09:58:35 +0000488 }
489 }
490 }
Greg Rose7f12ad72013-12-21 06:12:51 +0000491 /* Free all the Rx ring sk_buffs */
492 for (i = 0; i < rx_ring->count; i++) {
493 rx_bi = &rx_ring->rx_bi[i];
494 if (rx_bi->dma) {
495 dma_unmap_single(dev,
496 rx_bi->dma,
497 rx_ring->rx_buf_len,
498 DMA_FROM_DEVICE);
499 rx_bi->dma = 0;
500 }
501 if (rx_bi->skb) {
502 dev_kfree_skb(rx_bi->skb);
503 rx_bi->skb = NULL;
504 }
505 if (rx_bi->page) {
506 if (rx_bi->page_dma) {
507 dma_unmap_page(dev,
508 rx_bi->page_dma,
509 PAGE_SIZE / 2,
510 DMA_FROM_DEVICE);
511 rx_bi->page_dma = 0;
512 }
513 __free_page(rx_bi->page);
514 rx_bi->page = NULL;
515 rx_bi->page_offset = 0;
516 }
517 }
518
519 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
520 memset(rx_ring->rx_bi, 0, bi_size);
521
522 /* Zero out the descriptor ring */
523 memset(rx_ring->desc, 0, rx_ring->size);
524
525 rx_ring->next_to_clean = 0;
526 rx_ring->next_to_use = 0;
527}
528
529/**
530 * i40evf_free_rx_resources - Free Rx resources
531 * @rx_ring: ring to clean the resources from
532 *
533 * Free all receive software resources
534 **/
535void i40evf_free_rx_resources(struct i40e_ring *rx_ring)
536{
537 i40evf_clean_rx_ring(rx_ring);
538 kfree(rx_ring->rx_bi);
539 rx_ring->rx_bi = NULL;
540
541 if (rx_ring->desc) {
542 dma_free_coherent(rx_ring->dev, rx_ring->size,
543 rx_ring->desc, rx_ring->dma);
544 rx_ring->desc = NULL;
545 }
546}
547
548/**
Mitch Williamsa132af22015-01-24 09:58:35 +0000549 * i40evf_alloc_rx_headers - allocate rx header buffers
550 * @rx_ring: ring to alloc buffers
551 *
552 * Allocate rx header buffers for the entire ring. As these are static,
553 * this is only called when setting up a new ring.
554 **/
555void i40evf_alloc_rx_headers(struct i40e_ring *rx_ring)
556{
557 struct device *dev = rx_ring->dev;
558 struct i40e_rx_buffer *rx_bi;
559 dma_addr_t dma;
560 void *buffer;
561 int buf_size;
562 int i;
563
564 if (rx_ring->rx_bi[0].hdr_buf)
565 return;
566 /* Make sure the buffers don't cross cache line boundaries. */
567 buf_size = ALIGN(rx_ring->rx_hdr_len, 256);
568 buffer = dma_alloc_coherent(dev, buf_size * rx_ring->count,
569 &dma, GFP_KERNEL);
570 if (!buffer)
571 return;
572 for (i = 0; i < rx_ring->count; i++) {
573 rx_bi = &rx_ring->rx_bi[i];
574 rx_bi->dma = dma + (i * buf_size);
575 rx_bi->hdr_buf = buffer + (i * buf_size);
576 }
577}
578
579/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000580 * i40evf_setup_rx_descriptors - Allocate Rx descriptors
581 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
582 *
583 * Returns 0 on success, negative on failure
584 **/
585int i40evf_setup_rx_descriptors(struct i40e_ring *rx_ring)
586{
587 struct device *dev = rx_ring->dev;
588 int bi_size;
589
Mitch Williams67c818a2015-06-19 08:56:30 -0700590 /* warn if we are about to overwrite the pointer */
591 WARN_ON(rx_ring->rx_bi);
Greg Rose7f12ad72013-12-21 06:12:51 +0000592 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
593 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
594 if (!rx_ring->rx_bi)
595 goto err;
596
Carolyn Wybornyf217d6c2015-02-09 17:42:31 -0800597 u64_stats_init(&rx_ring->syncp);
Carolyn Wyborny638702b2015-01-24 09:58:32 +0000598
Greg Rose7f12ad72013-12-21 06:12:51 +0000599 /* Round up to nearest 4K */
600 rx_ring->size = ring_is_16byte_desc_enabled(rx_ring)
601 ? rx_ring->count * sizeof(union i40e_16byte_rx_desc)
602 : rx_ring->count * sizeof(union i40e_32byte_rx_desc);
603 rx_ring->size = ALIGN(rx_ring->size, 4096);
604 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
605 &rx_ring->dma, GFP_KERNEL);
606
607 if (!rx_ring->desc) {
608 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
609 rx_ring->size);
610 goto err;
611 }
612
613 rx_ring->next_to_clean = 0;
614 rx_ring->next_to_use = 0;
615
616 return 0;
617err:
618 kfree(rx_ring->rx_bi);
619 rx_ring->rx_bi = NULL;
620 return -ENOMEM;
621}
622
623/**
624 * i40e_release_rx_desc - Store the new tail and head values
625 * @rx_ring: ring to bump
626 * @val: new head index
627 **/
628static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
629{
630 rx_ring->next_to_use = val;
631 /* Force memory writes to complete before letting h/w
632 * know there are new descriptors to fetch. (Only
633 * applicable for weak-ordered memory model archs,
634 * such as IA-64).
635 */
636 wmb();
637 writel(val, rx_ring->tail);
638}
639
640/**
Mitch Williamsa132af22015-01-24 09:58:35 +0000641 * i40evf_alloc_rx_buffers_ps - Replace used receive buffers; packet split
Greg Rose7f12ad72013-12-21 06:12:51 +0000642 * @rx_ring: ring to place buffers on
643 * @cleaned_count: number of buffers to replace
644 **/
Mitch Williamsa132af22015-01-24 09:58:35 +0000645void i40evf_alloc_rx_buffers_ps(struct i40e_ring *rx_ring, u16 cleaned_count)
646{
647 u16 i = rx_ring->next_to_use;
648 union i40e_rx_desc *rx_desc;
649 struct i40e_rx_buffer *bi;
650
651 /* do nothing if no valid netdev defined */
652 if (!rx_ring->netdev || !cleaned_count)
653 return;
654
655 while (cleaned_count--) {
656 rx_desc = I40E_RX_DESC(rx_ring, i);
657 bi = &rx_ring->rx_bi[i];
658
659 if (bi->skb) /* desc is in use */
660 goto no_buffers;
661 if (!bi->page) {
662 bi->page = alloc_page(GFP_ATOMIC);
663 if (!bi->page) {
664 rx_ring->rx_stats.alloc_page_failed++;
665 goto no_buffers;
666 }
667 }
668
669 if (!bi->page_dma) {
670 /* use a half page if we're re-using */
671 bi->page_offset ^= PAGE_SIZE / 2;
672 bi->page_dma = dma_map_page(rx_ring->dev,
673 bi->page,
674 bi->page_offset,
675 PAGE_SIZE / 2,
676 DMA_FROM_DEVICE);
677 if (dma_mapping_error(rx_ring->dev,
678 bi->page_dma)) {
679 rx_ring->rx_stats.alloc_page_failed++;
680 bi->page_dma = 0;
681 goto no_buffers;
682 }
683 }
684
685 dma_sync_single_range_for_device(rx_ring->dev,
686 bi->dma,
687 0,
688 rx_ring->rx_hdr_len,
689 DMA_FROM_DEVICE);
690 /* Refresh the desc even if buffer_addrs didn't change
691 * because each write-back erases this info.
692 */
693 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
694 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
695 i++;
696 if (i == rx_ring->count)
697 i = 0;
698 }
699
700no_buffers:
701 if (rx_ring->next_to_use != i)
702 i40e_release_rx_desc(rx_ring, i);
703}
704
705/**
706 * i40evf_alloc_rx_buffers_1buf - Replace used receive buffers; single buffer
707 * @rx_ring: ring to place buffers on
708 * @cleaned_count: number of buffers to replace
709 **/
710void i40evf_alloc_rx_buffers_1buf(struct i40e_ring *rx_ring, u16 cleaned_count)
Greg Rose7f12ad72013-12-21 06:12:51 +0000711{
712 u16 i = rx_ring->next_to_use;
713 union i40e_rx_desc *rx_desc;
714 struct i40e_rx_buffer *bi;
715 struct sk_buff *skb;
716
717 /* do nothing if no valid netdev defined */
718 if (!rx_ring->netdev || !cleaned_count)
719 return;
720
721 while (cleaned_count--) {
722 rx_desc = I40E_RX_DESC(rx_ring, i);
723 bi = &rx_ring->rx_bi[i];
724 skb = bi->skb;
725
726 if (!skb) {
727 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
728 rx_ring->rx_buf_len);
729 if (!skb) {
730 rx_ring->rx_stats.alloc_buff_failed++;
731 goto no_buffers;
732 }
733 /* initialize queue mapping */
734 skb_record_rx_queue(skb, rx_ring->queue_index);
735 bi->skb = skb;
736 }
737
738 if (!bi->dma) {
739 bi->dma = dma_map_single(rx_ring->dev,
740 skb->data,
741 rx_ring->rx_buf_len,
742 DMA_FROM_DEVICE);
743 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
744 rx_ring->rx_stats.alloc_buff_failed++;
745 bi->dma = 0;
746 goto no_buffers;
747 }
748 }
749
Mitch Williamsa132af22015-01-24 09:58:35 +0000750 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
751 rx_desc->read.hdr_addr = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +0000752 i++;
753 if (i == rx_ring->count)
754 i = 0;
755 }
756
757no_buffers:
758 if (rx_ring->next_to_use != i)
759 i40e_release_rx_desc(rx_ring, i);
760}
761
762/**
763 * i40e_receive_skb - Send a completed packet up the stack
764 * @rx_ring: rx ring in play
765 * @skb: packet to send up
766 * @vlan_tag: vlan tag for packet
767 **/
768static void i40e_receive_skb(struct i40e_ring *rx_ring,
769 struct sk_buff *skb, u16 vlan_tag)
770{
771 struct i40e_q_vector *q_vector = rx_ring->q_vector;
Greg Rose7f12ad72013-12-21 06:12:51 +0000772
773 if (vlan_tag & VLAN_VID_MASK)
774 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
775
Alexander Duyck8b650352015-09-24 09:04:32 -0700776 napi_gro_receive(&q_vector->napi, skb);
Greg Rose7f12ad72013-12-21 06:12:51 +0000777}
778
779/**
780 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
781 * @vsi: the VSI we care about
782 * @skb: skb currently being received and modified
783 * @rx_status: status value of last descriptor in packet
784 * @rx_error: error value of last descriptor in packet
785 * @rx_ptype: ptype value of last descriptor in packet
786 **/
787static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
788 struct sk_buff *skb,
789 u32 rx_status,
790 u32 rx_error,
791 u16 rx_ptype)
792{
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000793 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(rx_ptype);
794 bool ipv4 = false, ipv6 = false;
Greg Rose7f12ad72013-12-21 06:12:51 +0000795 bool ipv4_tunnel, ipv6_tunnel;
796 __wsum rx_udp_csum;
Greg Rose7f12ad72013-12-21 06:12:51 +0000797 struct iphdr *iph;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000798 __sum16 csum;
Greg Rose7f12ad72013-12-21 06:12:51 +0000799
Anjali Singhai Jainf8faaa42015-02-24 06:58:48 +0000800 ipv4_tunnel = (rx_ptype >= I40E_RX_PTYPE_GRENAT4_MAC_PAY3) &&
801 (rx_ptype <= I40E_RX_PTYPE_GRENAT4_MACVLAN_IPV6_ICMP_PAY4);
802 ipv6_tunnel = (rx_ptype >= I40E_RX_PTYPE_GRENAT6_MAC_PAY3) &&
803 (rx_ptype <= I40E_RX_PTYPE_GRENAT6_MACVLAN_IPV6_ICMP_PAY4);
Greg Rose7f12ad72013-12-21 06:12:51 +0000804
Greg Rose7f12ad72013-12-21 06:12:51 +0000805 skb->ip_summed = CHECKSUM_NONE;
806
807 /* Rx csum enabled and ip headers found? */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000808 if (!(vsi->netdev->features & NETIF_F_RXCSUM))
Greg Rose7f12ad72013-12-21 06:12:51 +0000809 return;
810
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000811 /* did the hardware decode the packet and checksum? */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400812 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000813 return;
814
815 /* both known and outer_ip must be set for the below code to work */
816 if (!(decoded.known && decoded.outer_ip))
817 return;
818
819 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
820 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4)
821 ipv4 = true;
822 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
823 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6)
824 ipv6 = true;
825
826 if (ipv4 &&
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400827 (rx_error & (BIT(I40E_RX_DESC_ERROR_IPE_SHIFT) |
828 BIT(I40E_RX_DESC_ERROR_EIPE_SHIFT))))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000829 goto checksum_fail;
830
Jesse Brandeburgddf1d0d2014-02-13 03:48:39 -0800831 /* likely incorrect csum if alternate IP extension headers found */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000832 if (ipv6 &&
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400833 rx_status & BIT(I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000834 /* don't increment checksum err here, non-fatal err */
Greg Rose7f12ad72013-12-21 06:12:51 +0000835 return;
836
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000837 /* there was some L4 error, count error and punt packet to the stack */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400838 if (rx_error & BIT(I40E_RX_DESC_ERROR_L4E_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000839 goto checksum_fail;
Greg Rose7f12ad72013-12-21 06:12:51 +0000840
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000841 /* handle packets that were not able to be checksummed due
842 * to arrival speed, in this case the stack can compute
843 * the csum.
844 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400845 if (rx_error & BIT(I40E_RX_DESC_ERROR_PPRS_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000846 return;
847
848 /* If VXLAN traffic has an outer UDPv4 checksum we need to check
849 * it in the driver, hardware does not do it for us.
850 * Since L3L4P bit was set we assume a valid IHL value (>=5)
851 * so the total length of IPv4 header is IHL*4 bytes
852 * The UDP_0 bit *may* bet set if the *inner* header is UDP
853 */
Anjali Singhai Jain818f2e72015-03-31 00:44:59 -0700854 if (ipv4_tunnel) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000855 skb->transport_header = skb->mac_header +
856 sizeof(struct ethhdr) +
857 (ip_hdr(skb)->ihl * 4);
858
859 /* Add 4 bytes for VLAN tagged packets */
860 skb->transport_header += (skb->protocol == htons(ETH_P_8021Q) ||
861 skb->protocol == htons(ETH_P_8021AD))
862 ? VLAN_HLEN : 0;
863
Anjali Singhai Jain818f2e72015-03-31 00:44:59 -0700864 if ((ip_hdr(skb)->protocol == IPPROTO_UDP) &&
865 (udp_hdr(skb)->check != 0)) {
866 rx_udp_csum = udp_csum(skb);
867 iph = ip_hdr(skb);
868 csum = csum_tcpudp_magic(iph->saddr, iph->daddr,
869 (skb->len -
870 skb_transport_offset(skb)),
871 IPPROTO_UDP, rx_udp_csum);
Greg Rose7f12ad72013-12-21 06:12:51 +0000872
Anjali Singhai Jain818f2e72015-03-31 00:44:59 -0700873 if (udp_hdr(skb)->check != csum)
874 goto checksum_fail;
875
876 } /* else its GRE and so no outer UDP header */
Greg Rose7f12ad72013-12-21 06:12:51 +0000877 }
878
879 skb->ip_summed = CHECKSUM_UNNECESSARY;
Tom Herbert407fa082014-08-27 21:27:43 -0700880 skb->csum_level = ipv4_tunnel || ipv6_tunnel;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000881
882 return;
883
884checksum_fail:
885 vsi->back->hw_csum_rx_error++;
Greg Rose7f12ad72013-12-21 06:12:51 +0000886}
887
888/**
889 * i40e_rx_hash - returns the hash value from the Rx descriptor
890 * @ring: descriptor ring
891 * @rx_desc: specific descriptor
892 **/
893static inline u32 i40e_rx_hash(struct i40e_ring *ring,
894 union i40e_rx_desc *rx_desc)
895{
896 const __le64 rss_mask =
897 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
898 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
899
900 if ((ring->netdev->features & NETIF_F_RXHASH) &&
901 (rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask)
902 return le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
903 else
904 return 0;
905}
906
907/**
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000908 * i40e_ptype_to_hash - get a hash type
909 * @ptype: the ptype value from the descriptor
910 *
911 * Returns a hash type to be used by skb_set_hash
912 **/
913static inline enum pkt_hash_types i40e_ptype_to_hash(u8 ptype)
914{
915 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
916
917 if (!decoded.known)
918 return PKT_HASH_TYPE_NONE;
919
920 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
921 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
922 return PKT_HASH_TYPE_L4;
923 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
924 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
925 return PKT_HASH_TYPE_L3;
926 else
927 return PKT_HASH_TYPE_L2;
928}
929
930/**
Mitch Williamsa132af22015-01-24 09:58:35 +0000931 * i40e_clean_rx_irq_ps - Reclaim resources after receive; packet split
Greg Rose7f12ad72013-12-21 06:12:51 +0000932 * @rx_ring: rx ring to clean
933 * @budget: how many cleans we're allowed
934 *
935 * Returns true if there's any budget left (e.g. the clean is finished)
936 **/
Mitch Williamsa132af22015-01-24 09:58:35 +0000937static int i40e_clean_rx_irq_ps(struct i40e_ring *rx_ring, int budget)
Greg Rose7f12ad72013-12-21 06:12:51 +0000938{
939 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
940 u16 rx_packet_len, rx_header_len, rx_sph, rx_hbo;
941 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
Jiang Liu27ca2752015-08-17 11:19:03 +0800942 const int current_node = numa_mem_id();
Greg Rose7f12ad72013-12-21 06:12:51 +0000943 struct i40e_vsi *vsi = rx_ring->vsi;
944 u16 i = rx_ring->next_to_clean;
945 union i40e_rx_desc *rx_desc;
946 u32 rx_error, rx_status;
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000947 u8 rx_ptype;
Greg Rose7f12ad72013-12-21 06:12:51 +0000948 u64 qword;
Greg Rose7f12ad72013-12-21 06:12:51 +0000949
Mitch Williamsa132af22015-01-24 09:58:35 +0000950 do {
Greg Rose7f12ad72013-12-21 06:12:51 +0000951 struct i40e_rx_buffer *rx_bi;
952 struct sk_buff *skb;
953 u16 vlan_tag;
Mitch Williamsa132af22015-01-24 09:58:35 +0000954 /* return some buffers to hardware, one at a time is too slow */
955 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
956 i40evf_alloc_rx_buffers_ps(rx_ring, cleaned_count);
957 cleaned_count = 0;
958 }
959
960 i = rx_ring->next_to_clean;
961 rx_desc = I40E_RX_DESC(rx_ring, i);
962 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
963 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
964 I40E_RXD_QW1_STATUS_SHIFT;
965
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400966 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_DD_SHIFT)))
Mitch Williamsa132af22015-01-24 09:58:35 +0000967 break;
968
969 /* This memory barrier is needed to keep us from reading
970 * any other fields out of the rx_desc until we know the
971 * DD bit is set.
972 */
Alexander Duyck67317162015-04-08 18:49:43 -0700973 dma_rmb();
Greg Rose7f12ad72013-12-21 06:12:51 +0000974 rx_bi = &rx_ring->rx_bi[i];
975 skb = rx_bi->skb;
Mitch Williamsa132af22015-01-24 09:58:35 +0000976 if (likely(!skb)) {
977 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
978 rx_ring->rx_hdr_len);
Jesse Brandeburg8b6ed9c2015-03-31 00:45:01 -0700979 if (!skb) {
Mitch Williamsa132af22015-01-24 09:58:35 +0000980 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburg8b6ed9c2015-03-31 00:45:01 -0700981 break;
982 }
983
Mitch Williamsa132af22015-01-24 09:58:35 +0000984 /* initialize queue mapping */
985 skb_record_rx_queue(skb, rx_ring->queue_index);
986 /* we are reusing so sync this buffer for CPU use */
987 dma_sync_single_range_for_cpu(rx_ring->dev,
988 rx_bi->dma,
989 0,
990 rx_ring->rx_hdr_len,
991 DMA_FROM_DEVICE);
992 }
Greg Rose7f12ad72013-12-21 06:12:51 +0000993 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
994 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
995 rx_header_len = (qword & I40E_RXD_QW1_LENGTH_HBUF_MASK) >>
996 I40E_RXD_QW1_LENGTH_HBUF_SHIFT;
997 rx_sph = (qword & I40E_RXD_QW1_LENGTH_SPH_MASK) >>
998 I40E_RXD_QW1_LENGTH_SPH_SHIFT;
999
1000 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1001 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001002 rx_hbo = rx_error & BIT(I40E_RX_DESC_ERROR_HBO_SHIFT);
1003 rx_error &= ~BIT(I40E_RX_DESC_ERROR_HBO_SHIFT);
Greg Rose7f12ad72013-12-21 06:12:51 +00001004
1005 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1006 I40E_RXD_QW1_PTYPE_SHIFT;
Mitch Williamsa132af22015-01-24 09:58:35 +00001007 prefetch(rx_bi->page);
Greg Rose7f12ad72013-12-21 06:12:51 +00001008 rx_bi->skb = NULL;
Mitch Williamsa132af22015-01-24 09:58:35 +00001009 cleaned_count++;
1010 if (rx_hbo || rx_sph) {
1011 int len;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001012
Greg Rose7f12ad72013-12-21 06:12:51 +00001013 if (rx_hbo)
1014 len = I40E_RX_HDR_SIZE;
Greg Rose7f12ad72013-12-21 06:12:51 +00001015 else
Mitch Williamsa132af22015-01-24 09:58:35 +00001016 len = rx_header_len;
1017 memcpy(__skb_put(skb, len), rx_bi->hdr_buf, len);
1018 } else if (skb->len == 0) {
1019 int len;
Greg Rose7f12ad72013-12-21 06:12:51 +00001020
Mitch Williamsa132af22015-01-24 09:58:35 +00001021 len = (rx_packet_len > skb_headlen(skb) ?
1022 skb_headlen(skb) : rx_packet_len);
1023 memcpy(__skb_put(skb, len),
1024 rx_bi->page + rx_bi->page_offset,
1025 len);
1026 rx_bi->page_offset += len;
1027 rx_packet_len -= len;
Greg Rose7f12ad72013-12-21 06:12:51 +00001028 }
1029
1030 /* Get the rest of the data if this was a header split */
Mitch Williamsa132af22015-01-24 09:58:35 +00001031 if (rx_packet_len) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001032 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1033 rx_bi->page,
1034 rx_bi->page_offset,
1035 rx_packet_len);
1036
1037 skb->len += rx_packet_len;
1038 skb->data_len += rx_packet_len;
1039 skb->truesize += rx_packet_len;
1040
1041 if ((page_count(rx_bi->page) == 1) &&
1042 (page_to_nid(rx_bi->page) == current_node))
1043 get_page(rx_bi->page);
1044 else
1045 rx_bi->page = NULL;
1046
1047 dma_unmap_page(rx_ring->dev,
1048 rx_bi->page_dma,
1049 PAGE_SIZE / 2,
1050 DMA_FROM_DEVICE);
1051 rx_bi->page_dma = 0;
1052 }
Mitch Williamsa132af22015-01-24 09:58:35 +00001053 I40E_RX_INCREMENT(rx_ring, i);
Greg Rose7f12ad72013-12-21 06:12:51 +00001054
1055 if (unlikely(
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001056 !(rx_status & BIT(I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001057 struct i40e_rx_buffer *next_buffer;
1058
1059 next_buffer = &rx_ring->rx_bi[i];
Mitch Williamsa132af22015-01-24 09:58:35 +00001060 next_buffer->skb = skb;
Greg Rose7f12ad72013-12-21 06:12:51 +00001061 rx_ring->rx_stats.non_eop_descs++;
Mitch Williamsa132af22015-01-24 09:58:35 +00001062 continue;
Greg Rose7f12ad72013-12-21 06:12:51 +00001063 }
1064
1065 /* ERR_MASK will only have valid bits if EOP set */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001066 if (unlikely(rx_error & BIT(I40E_RX_DESC_ERROR_RXE_SHIFT))) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001067 dev_kfree_skb_any(skb);
Mitch Williamsa132af22015-01-24 09:58:35 +00001068 continue;
1069 }
1070
1071 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1072 i40e_ptype_to_hash(rx_ptype));
1073 /* probably a little skewed due to removing CRC */
1074 total_rx_bytes += skb->len;
1075 total_rx_packets++;
1076
1077 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1078
1079 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1080
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001081 vlan_tag = rx_status & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
Mitch Williamsa132af22015-01-24 09:58:35 +00001082 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1083 : 0;
1084#ifdef I40E_FCOE
1085 if (!i40e_fcoe_handle_offload(rx_ring, rx_desc, skb)) {
1086 dev_kfree_skb_any(skb);
1087 continue;
1088 }
1089#endif
Mitch Williamsa132af22015-01-24 09:58:35 +00001090 i40e_receive_skb(rx_ring, skb, vlan_tag);
1091
Mitch Williamsa132af22015-01-24 09:58:35 +00001092 rx_desc->wb.qword1.status_error_len = 0;
1093
1094 } while (likely(total_rx_packets < budget));
1095
1096 u64_stats_update_begin(&rx_ring->syncp);
1097 rx_ring->stats.packets += total_rx_packets;
1098 rx_ring->stats.bytes += total_rx_bytes;
1099 u64_stats_update_end(&rx_ring->syncp);
1100 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1101 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1102
1103 return total_rx_packets;
1104}
1105
1106/**
1107 * i40e_clean_rx_irq_1buf - Reclaim resources after receive; single buffer
1108 * @rx_ring: rx ring to clean
1109 * @budget: how many cleans we're allowed
1110 *
1111 * Returns number of packets cleaned
1112 **/
1113static int i40e_clean_rx_irq_1buf(struct i40e_ring *rx_ring, int budget)
1114{
1115 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1116 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
1117 struct i40e_vsi *vsi = rx_ring->vsi;
1118 union i40e_rx_desc *rx_desc;
1119 u32 rx_error, rx_status;
1120 u16 rx_packet_len;
1121 u8 rx_ptype;
1122 u64 qword;
1123 u16 i;
1124
1125 do {
1126 struct i40e_rx_buffer *rx_bi;
1127 struct sk_buff *skb;
1128 u16 vlan_tag;
1129 /* return some buffers to hardware, one at a time is too slow */
1130 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
1131 i40evf_alloc_rx_buffers_1buf(rx_ring, cleaned_count);
1132 cleaned_count = 0;
1133 }
1134
1135 i = rx_ring->next_to_clean;
1136 rx_desc = I40E_RX_DESC(rx_ring, i);
1137 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
1138 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1139 I40E_RXD_QW1_STATUS_SHIFT;
1140
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001141 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_DD_SHIFT)))
Mitch Williamsa132af22015-01-24 09:58:35 +00001142 break;
1143
1144 /* This memory barrier is needed to keep us from reading
1145 * any other fields out of the rx_desc until we know the
1146 * DD bit is set.
1147 */
Alexander Duyck67317162015-04-08 18:49:43 -07001148 dma_rmb();
Mitch Williamsa132af22015-01-24 09:58:35 +00001149
1150 rx_bi = &rx_ring->rx_bi[i];
1151 skb = rx_bi->skb;
1152 prefetch(skb->data);
1153
1154 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1155 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1156
1157 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1158 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001159 rx_error &= ~BIT(I40E_RX_DESC_ERROR_HBO_SHIFT);
Mitch Williamsa132af22015-01-24 09:58:35 +00001160
1161 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1162 I40E_RXD_QW1_PTYPE_SHIFT;
1163 rx_bi->skb = NULL;
1164 cleaned_count++;
1165
1166 /* Get the header and possibly the whole packet
1167 * If this is an skb from previous receive dma will be 0
1168 */
1169 skb_put(skb, rx_packet_len);
1170 dma_unmap_single(rx_ring->dev, rx_bi->dma, rx_ring->rx_buf_len,
1171 DMA_FROM_DEVICE);
1172 rx_bi->dma = 0;
1173
1174 I40E_RX_INCREMENT(rx_ring, i);
1175
1176 if (unlikely(
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001177 !(rx_status & BIT(I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
Mitch Williamsa132af22015-01-24 09:58:35 +00001178 rx_ring->rx_stats.non_eop_descs++;
1179 continue;
1180 }
1181
1182 /* ERR_MASK will only have valid bits if EOP set */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001183 if (unlikely(rx_error & BIT(I40E_RX_DESC_ERROR_RXE_SHIFT))) {
Mitch Williamsa132af22015-01-24 09:58:35 +00001184 dev_kfree_skb_any(skb);
Mitch Williamsa132af22015-01-24 09:58:35 +00001185 continue;
Greg Rose7f12ad72013-12-21 06:12:51 +00001186 }
1187
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001188 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1189 i40e_ptype_to_hash(rx_ptype));
Greg Rose7f12ad72013-12-21 06:12:51 +00001190 /* probably a little skewed due to removing CRC */
1191 total_rx_bytes += skb->len;
1192 total_rx_packets++;
1193
1194 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
1195
1196 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1197
Jesse Brandeburg41a1d042015-06-04 16:24:02 -04001198 vlan_tag = rx_status & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
Greg Rose7f12ad72013-12-21 06:12:51 +00001199 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1200 : 0;
1201 i40e_receive_skb(rx_ring, skb, vlan_tag);
1202
Greg Rose7f12ad72013-12-21 06:12:51 +00001203 rx_desc->wb.qword1.status_error_len = 0;
Mitch Williamsa132af22015-01-24 09:58:35 +00001204 } while (likely(total_rx_packets < budget));
Greg Rose7f12ad72013-12-21 06:12:51 +00001205
Greg Rose7f12ad72013-12-21 06:12:51 +00001206 u64_stats_update_begin(&rx_ring->syncp);
1207 rx_ring->stats.packets += total_rx_packets;
1208 rx_ring->stats.bytes += total_rx_bytes;
1209 u64_stats_update_end(&rx_ring->syncp);
1210 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1211 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1212
Mitch Williamsa132af22015-01-24 09:58:35 +00001213 return total_rx_packets;
Greg Rose7f12ad72013-12-21 06:12:51 +00001214}
1215
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001216static u32 i40e_buildreg_itr(const int type, const u16 itr)
1217{
1218 u32 val;
1219
1220 val = I40E_VFINT_DYN_CTLN1_INTENA_MASK |
1221 I40E_VFINT_DYN_CTLN1_CLEARPBA_MASK |
1222 (type << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) |
1223 (itr << I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT);
1224
1225 return val;
1226}
1227
1228/* a small macro to shorten up some long lines */
1229#define INTREG I40E_VFINT_DYN_CTLN1
1230
Greg Rose7f12ad72013-12-21 06:12:51 +00001231/**
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001232 * i40e_update_enable_itr - Update itr and re-enable MSIX interrupt
1233 * @vsi: the VSI we care about
1234 * @q_vector: q_vector for which itr is being updated and interrupt enabled
1235 *
1236 **/
1237static inline void i40e_update_enable_itr(struct i40e_vsi *vsi,
1238 struct i40e_q_vector *q_vector)
1239{
1240 struct i40e_hw *hw = &vsi->back->hw;
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001241 bool rx = false, tx = false;
1242 u32 rxval, txval;
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001243 int vector;
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001244
1245 vector = (q_vector->v_idx + vsi->base_vector);
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001246
1247 /* avoid dynamic calculation if in countdown mode OR if
1248 * all dynamic is disabled
1249 */
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001250 rxval = txval = i40e_buildreg_itr(I40E_ITR_NONE, 0);
1251
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001252 if (q_vector->itr_countdown > 0 ||
1253 (!ITR_IS_DYNAMIC(vsi->rx_itr_setting) &&
1254 !ITR_IS_DYNAMIC(vsi->tx_itr_setting))) {
1255 goto enable_int;
1256 }
1257
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001258 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting)) {
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001259 rx = i40e_set_new_dynamic_itr(&q_vector->rx);
1260 rxval = i40e_buildreg_itr(I40E_RX_ITR, q_vector->rx.itr);
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001261 }
1262 if (ITR_IS_DYNAMIC(vsi->tx_itr_setting)) {
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001263 tx = i40e_set_new_dynamic_itr(&q_vector->tx);
1264 txval = i40e_buildreg_itr(I40E_TX_ITR, q_vector->tx.itr);
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001265 }
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001266 if (rx || tx) {
1267 /* get the higher of the two ITR adjustments and
1268 * use the same value for both ITR registers
1269 * when in adaptive mode (Rx and/or Tx)
1270 */
1271 u16 itr = max(q_vector->tx.itr, q_vector->rx.itr);
1272
1273 q_vector->tx.itr = q_vector->rx.itr = itr;
1274 txval = i40e_buildreg_itr(I40E_TX_ITR, itr);
1275 tx = true;
1276 rxval = i40e_buildreg_itr(I40E_RX_ITR, itr);
1277 rx = true;
1278 }
1279
1280 /* only need to enable the interrupt once, but need
1281 * to possibly update both ITR values
1282 */
1283 if (rx) {
1284 /* set the INTENA_MSK_MASK so that this first write
1285 * won't actually enable the interrupt, instead just
1286 * updating the ITR (it's bit 31 PF and VF)
1287 */
1288 rxval |= BIT(31);
1289 /* don't check _DOWN because interrupt isn't being enabled */
1290 wr32(hw, INTREG(vector - 1), rxval);
1291 }
1292
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001293enable_int:
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001294 if (!test_bit(__I40E_DOWN, &vsi->state))
1295 wr32(hw, INTREG(vector - 1), txval);
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001296
1297 if (q_vector->itr_countdown)
1298 q_vector->itr_countdown--;
1299 else
1300 q_vector->itr_countdown = ITR_COUNTDOWN_START;
1301
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001302}
1303
1304/**
Greg Rose7f12ad72013-12-21 06:12:51 +00001305 * i40evf_napi_poll - NAPI polling Rx/Tx cleanup routine
1306 * @napi: napi struct with our devices info in it
1307 * @budget: amount of work driver is allowed to do this pass, in packets
1308 *
1309 * This function will clean all queues associated with a q_vector.
1310 *
1311 * Returns the amount of work done
1312 **/
1313int i40evf_napi_poll(struct napi_struct *napi, int budget)
1314{
1315 struct i40e_q_vector *q_vector =
1316 container_of(napi, struct i40e_q_vector, napi);
1317 struct i40e_vsi *vsi = q_vector->vsi;
1318 struct i40e_ring *ring;
1319 bool clean_complete = true;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001320 bool arm_wb = false;
Greg Rose7f12ad72013-12-21 06:12:51 +00001321 int budget_per_ring;
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001322 int work_done = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001323
1324 if (test_bit(__I40E_DOWN, &vsi->state)) {
1325 napi_complete(napi);
1326 return 0;
1327 }
1328
1329 /* Since the actual Tx work is minimal, we can give the Tx a larger
1330 * budget and be more aggressive about cleaning up the Tx descriptors.
1331 */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001332 i40e_for_each_ring(ring, q_vector->tx) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001333 clean_complete &= i40e_clean_tx_irq(ring, vsi->work_limit);
Mitch Williams44cdb792015-11-06 15:26:11 -08001334 arm_wb = arm_wb || ring->arm_wb;
Jesse Brandeburg0deda862015-07-23 16:54:34 -04001335 ring->arm_wb = false;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001336 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001337
Alexander Duyckc67cace2015-09-24 09:04:26 -07001338 /* Handle case where we are called by netpoll with a budget of 0 */
1339 if (budget <= 0)
1340 goto tx_only;
1341
Greg Rose7f12ad72013-12-21 06:12:51 +00001342 /* We attempt to distribute budget to each Rx queue fairly, but don't
1343 * allow the budget to go below 1 because that would exit polling early.
1344 */
1345 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
1346
Mitch Williamsa132af22015-01-24 09:58:35 +00001347 i40e_for_each_ring(ring, q_vector->rx) {
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001348 int cleaned;
1349
Mitch Williamsa132af22015-01-24 09:58:35 +00001350 if (ring_is_ps_enabled(ring))
1351 cleaned = i40e_clean_rx_irq_ps(ring, budget_per_ring);
1352 else
1353 cleaned = i40e_clean_rx_irq_1buf(ring, budget_per_ring);
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001354
1355 work_done += cleaned;
Mitch Williamsa132af22015-01-24 09:58:35 +00001356 /* if we didn't clean as many as budgeted, we must be done */
1357 clean_complete &= (budget_per_ring != cleaned);
1358 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001359
1360 /* If work not completed, return budget and polling will return */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001361 if (!clean_complete) {
Alexander Duyckc67cace2015-09-24 09:04:26 -07001362tx_only:
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -04001363 if (arm_wb) {
1364 q_vector->tx.ring[0].tx_stats.tx_force_wb++;
Kiran Patilb03a8c12015-09-24 18:13:15 -04001365 i40evf_force_wb(vsi, q_vector);
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -04001366 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001367 return budget;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001368 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001369
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04001370 if (vsi->back->flags & I40E_TXR_FLAGS_WB_ON_ITR)
1371 q_vector->arm_wb_state = false;
1372
Greg Rose7f12ad72013-12-21 06:12:51 +00001373 /* Work is done so exit the polling mode and re-enable the interrupt */
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001374 napi_complete_done(napi, work_done);
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001375 i40e_update_enable_itr(vsi, q_vector);
Greg Rose7f12ad72013-12-21 06:12:51 +00001376 return 0;
1377}
1378
1379/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001380 * i40evf_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
Greg Rose7f12ad72013-12-21 06:12:51 +00001381 * @skb: send buffer
1382 * @tx_ring: ring to send buffer on
1383 * @flags: the tx flags to be set
1384 *
1385 * Checks the skb and set up correspondingly several generic transmit flags
1386 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1387 *
1388 * Returns error code indicate the frame should be dropped upon error and the
1389 * otherwise returns 0 to indicate the flags has been set properly.
1390 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001391static inline int i40evf_tx_prepare_vlan_flags(struct sk_buff *skb,
1392 struct i40e_ring *tx_ring,
1393 u32 *flags)
Greg Rose7f12ad72013-12-21 06:12:51 +00001394{
1395 __be16 protocol = skb->protocol;
1396 u32 tx_flags = 0;
1397
Greg Rose31eaacc2015-03-31 00:45:03 -07001398 if (protocol == htons(ETH_P_8021Q) &&
1399 !(tx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_TX)) {
1400 /* When HW VLAN acceleration is turned off by the user the
1401 * stack sets the protocol to 8021q so that the driver
1402 * can take any steps required to support the SW only
1403 * VLAN handling. In our case the driver doesn't need
1404 * to take any further steps so just set the protocol
1405 * to the encapsulated ethertype.
1406 */
1407 skb->protocol = vlan_get_protocol(skb);
1408 goto out;
1409 }
1410
Greg Rose7f12ad72013-12-21 06:12:51 +00001411 /* if we have a HW VLAN tag being added, default to the HW one */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001412 if (skb_vlan_tag_present(skb)) {
1413 tx_flags |= skb_vlan_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001414 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1415 /* else if it is a SW VLAN, check the next protocol and store the tag */
1416 } else if (protocol == htons(ETH_P_8021Q)) {
1417 struct vlan_hdr *vhdr, _vhdr;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001418
Greg Rose7f12ad72013-12-21 06:12:51 +00001419 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1420 if (!vhdr)
1421 return -EINVAL;
1422
1423 protocol = vhdr->h_vlan_encapsulated_proto;
1424 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1425 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1426 }
1427
Greg Rose31eaacc2015-03-31 00:45:03 -07001428out:
Greg Rose7f12ad72013-12-21 06:12:51 +00001429 *flags = tx_flags;
1430 return 0;
1431}
1432
1433/**
1434 * i40e_tso - set up the tso context descriptor
1435 * @tx_ring: ptr to the ring to send
1436 * @skb: ptr to the skb we're sending
Greg Rose7f12ad72013-12-21 06:12:51 +00001437 * @hdr_len: ptr to the size of the packet header
Shannon Nelson9c883bd2015-10-21 19:47:02 -04001438 * @cd_type_cmd_tso_mss: Quad Word 1
Greg Rose7f12ad72013-12-21 06:12:51 +00001439 *
1440 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1441 **/
1442static int i40e_tso(struct i40e_ring *tx_ring, struct sk_buff *skb,
Shannon Nelson9c883bd2015-10-21 19:47:02 -04001443 u8 *hdr_len, u64 *cd_type_cmd_tso_mss)
Greg Rose7f12ad72013-12-21 06:12:51 +00001444{
1445 u32 cd_cmd, cd_tso_len, cd_mss;
Francois Romieufe6d4aa2014-03-30 03:14:53 +00001446 struct ipv6hdr *ipv6h;
Greg Rose7f12ad72013-12-21 06:12:51 +00001447 struct tcphdr *tcph;
1448 struct iphdr *iph;
1449 u32 l4len;
1450 int err;
Greg Rose7f12ad72013-12-21 06:12:51 +00001451
1452 if (!skb_is_gso(skb))
1453 return 0;
1454
Francois Romieufe6d4aa2014-03-30 03:14:53 +00001455 err = skb_cow_head(skb, 0);
1456 if (err < 0)
1457 return err;
Greg Rose7f12ad72013-12-21 06:12:51 +00001458
Anjali Singhai85e76d02015-02-21 06:44:16 +00001459 iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
1460 ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb) : ipv6_hdr(skb);
1461
1462 if (iph->version == 4) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001463 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1464 iph->tot_len = 0;
1465 iph->check = 0;
1466 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1467 0, IPPROTO_TCP, 0);
Anjali Singhai85e76d02015-02-21 06:44:16 +00001468 } else if (ipv6h->version == 6) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001469 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1470 ipv6h->payload_len = 0;
1471 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
1472 0, IPPROTO_TCP, 0);
1473 }
1474
1475 l4len = skb->encapsulation ? inner_tcp_hdrlen(skb) : tcp_hdrlen(skb);
1476 *hdr_len = (skb->encapsulation
1477 ? (skb_inner_transport_header(skb) - skb->data)
1478 : skb_transport_offset(skb)) + l4len;
1479
1480 /* find the field values */
1481 cd_cmd = I40E_TX_CTX_DESC_TSO;
1482 cd_tso_len = skb->len - *hdr_len;
1483 cd_mss = skb_shinfo(skb)->gso_size;
1484 *cd_type_cmd_tso_mss |= ((u64)cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
1485 ((u64)cd_tso_len <<
1486 I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
1487 ((u64)cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
1488 return 1;
1489}
1490
1491/**
1492 * i40e_tx_enable_csum - Enable Tx checksum offloads
1493 * @skb: send buffer
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001494 * @tx_flags: pointer to Tx flags currently set
Greg Rose7f12ad72013-12-21 06:12:51 +00001495 * @td_cmd: Tx descriptor command bits to set
1496 * @td_offset: Tx descriptor header offsets to set
1497 * @cd_tunneling: ptr to context desc bits
1498 **/
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001499static void i40e_tx_enable_csum(struct sk_buff *skb, u32 *tx_flags,
Greg Rose7f12ad72013-12-21 06:12:51 +00001500 u32 *td_cmd, u32 *td_offset,
1501 struct i40e_ring *tx_ring,
1502 u32 *cd_tunneling)
1503{
1504 struct ipv6hdr *this_ipv6_hdr;
1505 unsigned int this_tcp_hdrlen;
1506 struct iphdr *this_ip_hdr;
1507 u32 network_hdr_len;
1508 u8 l4_hdr = 0;
Anjali Singhai Jain527274c2015-06-05 12:20:31 -04001509 struct udphdr *oudph;
1510 struct iphdr *oiph;
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:
Anjali Singhai Jain527274c2015-06-05 12:20:31 -04001516 oudph = udp_hdr(skb);
1517 oiph = ip_hdr(skb);
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001518 l4_tunnel = I40E_TXD_CTX_UDP_TUNNELING;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001519 *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL;
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001520 break;
1521 default:
1522 return;
1523 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001524 network_hdr_len = skb_inner_network_header_len(skb);
1525 this_ip_hdr = inner_ip_hdr(skb);
1526 this_ipv6_hdr = inner_ipv6_hdr(skb);
1527 this_tcp_hdrlen = inner_tcp_hdrlen(skb);
1528
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001529 if (*tx_flags & I40E_TX_FLAGS_IPV4) {
1530 if (*tx_flags & I40E_TX_FLAGS_TSO) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001531 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV4;
1532 ip_hdr(skb)->check = 0;
1533 } else {
1534 *cd_tunneling |=
1535 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1536 }
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001537 } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
Anjali Singhai85e76d02015-02-21 06:44:16 +00001538 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV6;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001539 if (*tx_flags & I40E_TX_FLAGS_TSO)
Greg Rose7f12ad72013-12-21 06:12:51 +00001540 ip_hdr(skb)->check = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001541 }
1542
1543 /* Now set the ctx descriptor fields */
1544 *cd_tunneling |= (skb_network_header_len(skb) >> 2) <<
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001545 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT |
1546 l4_tunnel |
Greg Rose7f12ad72013-12-21 06:12:51 +00001547 ((skb_inner_network_offset(skb) -
1548 skb_transport_offset(skb)) >> 1) <<
1549 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
Anjali Singhai85e76d02015-02-21 06:44:16 +00001550 if (this_ip_hdr->version == 6) {
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001551 *tx_flags &= ~I40E_TX_FLAGS_IPV4;
1552 *tx_flags |= I40E_TX_FLAGS_IPV6;
Anjali Singhai85e76d02015-02-21 06:44:16 +00001553 }
1554
Greg Rose7f12ad72013-12-21 06:12:51 +00001555
Anjali Singhai Jain527274c2015-06-05 12:20:31 -04001556 if ((tx_ring->flags & I40E_TXR_FLAGS_OUTER_UDP_CSUM) &&
1557 (l4_tunnel == I40E_TXD_CTX_UDP_TUNNELING) &&
1558 (*cd_tunneling & I40E_TXD_CTX_QW0_EXT_IP_MASK)) {
1559 oudph->check = ~csum_tcpudp_magic(oiph->saddr,
1560 oiph->daddr,
1561 (skb->len - skb_transport_offset(skb)),
1562 IPPROTO_UDP, 0);
1563 *cd_tunneling |= I40E_TXD_CTX_QW0_L4T_CS_MASK;
1564 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001565 } else {
1566 network_hdr_len = skb_network_header_len(skb);
1567 this_ip_hdr = ip_hdr(skb);
1568 this_ipv6_hdr = ipv6_hdr(skb);
1569 this_tcp_hdrlen = tcp_hdrlen(skb);
1570 }
1571
1572 /* Enable IP checksum offloads */
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001573 if (*tx_flags & I40E_TX_FLAGS_IPV4) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001574 l4_hdr = this_ip_hdr->protocol;
1575 /* the stack computes the IP header already, the only time we
1576 * need the hardware to recompute it is in the case of TSO.
1577 */
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001578 if (*tx_flags & I40E_TX_FLAGS_TSO) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001579 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4_CSUM;
1580 this_ip_hdr->check = 0;
1581 } else {
1582 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4;
1583 }
1584 /* Now set the td_offset for IP header length */
1585 *td_offset = (network_hdr_len >> 2) <<
1586 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001587 } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001588 l4_hdr = this_ipv6_hdr->nexthdr;
1589 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
1590 /* Now set the td_offset for IP header length */
1591 *td_offset = (network_hdr_len >> 2) <<
1592 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1593 }
1594 /* words in MACLEN + dwords in IPLEN + dwords in L4Len */
1595 *td_offset |= (skb_network_offset(skb) >> 1) <<
1596 I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1597
1598 /* Enable L4 checksum offloads */
1599 switch (l4_hdr) {
1600 case IPPROTO_TCP:
1601 /* enable checksum offloads */
1602 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1603 *td_offset |= (this_tcp_hdrlen >> 2) <<
1604 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1605 break;
1606 case IPPROTO_SCTP:
1607 /* enable SCTP checksum offload */
1608 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
1609 *td_offset |= (sizeof(struct sctphdr) >> 2) <<
1610 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1611 break;
1612 case IPPROTO_UDP:
1613 /* enable UDP checksum offload */
1614 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
1615 *td_offset |= (sizeof(struct udphdr) >> 2) <<
1616 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1617 break;
1618 default:
1619 break;
1620 }
1621}
1622
1623/**
1624 * i40e_create_tx_ctx Build the Tx context descriptor
1625 * @tx_ring: ring to create the descriptor on
1626 * @cd_type_cmd_tso_mss: Quad Word 1
1627 * @cd_tunneling: Quad Word 0 - bits 0-31
1628 * @cd_l2tag2: Quad Word 0 - bits 32-63
1629 **/
1630static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
1631 const u64 cd_type_cmd_tso_mss,
1632 const u32 cd_tunneling, const u32 cd_l2tag2)
1633{
1634 struct i40e_tx_context_desc *context_desc;
1635 int i = tx_ring->next_to_use;
1636
Jesse Brandeburgff40dd52014-02-14 02:14:41 +00001637 if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
1638 !cd_tunneling && !cd_l2tag2)
Greg Rose7f12ad72013-12-21 06:12:51 +00001639 return;
1640
1641 /* grab the next descriptor */
1642 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
1643
1644 i++;
1645 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
1646
1647 /* cpu_to_le32 and assign to struct fields */
1648 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
1649 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
Jesse Brandeburg3efbbb22014-06-04 20:41:54 +00001650 context_desc->rsvd = cpu_to_le16(0);
Greg Rose7f12ad72013-12-21 06:12:51 +00001651 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
1652}
1653
Anjali Singhai71da6192015-02-21 06:42:35 +00001654 /**
1655 * i40e_chk_linearize - Check if there are more than 8 fragments per packet
1656 * @skb: send buffer
1657 * @tx_flags: collected send information
Anjali Singhai71da6192015-02-21 06:42:35 +00001658 *
1659 * Note: Our HW can't scatter-gather more than 8 fragments to build
1660 * a packet on the wire and so we need to figure out the cases where we
1661 * need to linearize the skb.
1662 **/
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001663static bool i40e_chk_linearize(struct sk_buff *skb, u32 tx_flags)
Anjali Singhai71da6192015-02-21 06:42:35 +00001664{
1665 struct skb_frag_struct *frag;
1666 bool linearize = false;
1667 unsigned int size = 0;
1668 u16 num_frags;
1669 u16 gso_segs;
1670
1671 num_frags = skb_shinfo(skb)->nr_frags;
1672 gso_segs = skb_shinfo(skb)->gso_segs;
1673
1674 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO)) {
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001675 u16 j = 0;
Anjali Singhai71da6192015-02-21 06:42:35 +00001676
1677 if (num_frags < (I40E_MAX_BUFFER_TXD))
1678 goto linearize_chk_done;
1679 /* try the simple math, if we have too many frags per segment */
1680 if (DIV_ROUND_UP((num_frags + gso_segs), gso_segs) >
1681 I40E_MAX_BUFFER_TXD) {
1682 linearize = true;
1683 goto linearize_chk_done;
1684 }
1685 frag = &skb_shinfo(skb)->frags[0];
Anjali Singhai71da6192015-02-21 06:42:35 +00001686 /* we might still have more fragments per segment */
1687 do {
1688 size += skb_frag_size(frag);
1689 frag++; j++;
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001690 if ((size >= skb_shinfo(skb)->gso_size) &&
1691 (j < I40E_MAX_BUFFER_TXD)) {
1692 size = (size % skb_shinfo(skb)->gso_size);
1693 j = (size) ? 1 : 0;
1694 }
Anjali Singhai71da6192015-02-21 06:42:35 +00001695 if (j == I40E_MAX_BUFFER_TXD) {
Anjali Singhai Jain30520832015-05-08 15:35:52 -07001696 linearize = true;
1697 break;
Anjali Singhai71da6192015-02-21 06:42:35 +00001698 }
1699 num_frags--;
1700 } while (num_frags);
1701 } else {
1702 if (num_frags >= I40E_MAX_BUFFER_TXD)
1703 linearize = true;
1704 }
1705
1706linearize_chk_done:
1707 return linearize;
1708}
1709
Greg Rose7f12ad72013-12-21 06:12:51 +00001710/**
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001711 * __i40evf_maybe_stop_tx - 2nd level check for tx stop conditions
1712 * @tx_ring: the ring to be checked
1713 * @size: the size buffer we want to assure is available
1714 *
1715 * Returns -EBUSY if a stop is needed, else 0
1716 **/
1717static inline int __i40evf_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
1718{
1719 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1720 /* Memory barrier before checking head and tail */
1721 smp_mb();
1722
1723 /* Check again in a case another CPU has just made room available. */
1724 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
1725 return -EBUSY;
1726
1727 /* A reprieve! - use start_queue because it doesn't call schedule */
1728 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
1729 ++tx_ring->tx_stats.restart_queue;
1730 return 0;
1731}
1732
1733/**
1734 * i40evf_maybe_stop_tx - 1st level check for tx stop conditions
1735 * @tx_ring: the ring to be checked
1736 * @size: the size buffer we want to assure is available
1737 *
1738 * Returns 0 if stop is not needed
1739 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001740static inline int i40evf_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001741{
1742 if (likely(I40E_DESC_UNUSED(tx_ring) >= size))
1743 return 0;
1744 return __i40evf_maybe_stop_tx(tx_ring, size);
1745}
1746
1747/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001748 * i40evf_tx_map - Build the Tx descriptor
Greg Rose7f12ad72013-12-21 06:12:51 +00001749 * @tx_ring: ring to send buffer on
1750 * @skb: send buffer
1751 * @first: first buffer info buffer to use
1752 * @tx_flags: collected send information
1753 * @hdr_len: size of the packet header
1754 * @td_cmd: the command field in the descriptor
1755 * @td_offset: offset for checksum or crc
1756 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001757static inline void i40evf_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
1758 struct i40e_tx_buffer *first, u32 tx_flags,
1759 const u8 hdr_len, u32 td_cmd, u32 td_offset)
Greg Rose7f12ad72013-12-21 06:12:51 +00001760{
1761 unsigned int data_len = skb->data_len;
1762 unsigned int size = skb_headlen(skb);
1763 struct skb_frag_struct *frag;
1764 struct i40e_tx_buffer *tx_bi;
1765 struct i40e_tx_desc *tx_desc;
1766 u16 i = tx_ring->next_to_use;
1767 u32 td_tag = 0;
1768 dma_addr_t dma;
1769 u16 gso_segs;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001770 u16 desc_count = 0;
1771 bool tail_bump = true;
1772 bool do_rs = false;
Greg Rose7f12ad72013-12-21 06:12:51 +00001773
1774 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
1775 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
1776 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
1777 I40E_TX_FLAGS_VLAN_SHIFT;
1778 }
1779
1780 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
1781 gso_segs = skb_shinfo(skb)->gso_segs;
1782 else
1783 gso_segs = 1;
1784
1785 /* multiply data chunks by size of headers */
1786 first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
1787 first->gso_segs = gso_segs;
1788 first->skb = skb;
1789 first->tx_flags = tx_flags;
1790
1791 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
1792
1793 tx_desc = I40E_TX_DESC(tx_ring, i);
1794 tx_bi = first;
1795
1796 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
1797 if (dma_mapping_error(tx_ring->dev, dma))
1798 goto dma_error;
1799
1800 /* record length, and DMA address */
1801 dma_unmap_len_set(tx_bi, len, size);
1802 dma_unmap_addr_set(tx_bi, dma, dma);
1803
1804 tx_desc->buffer_addr = cpu_to_le64(dma);
1805
1806 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
1807 tx_desc->cmd_type_offset_bsz =
1808 build_ctob(td_cmd, td_offset,
1809 I40E_MAX_DATA_PER_TXD, td_tag);
1810
1811 tx_desc++;
1812 i++;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001813 desc_count++;
1814
Greg Rose7f12ad72013-12-21 06:12:51 +00001815 if (i == tx_ring->count) {
1816 tx_desc = I40E_TX_DESC(tx_ring, 0);
1817 i = 0;
1818 }
1819
1820 dma += I40E_MAX_DATA_PER_TXD;
1821 size -= I40E_MAX_DATA_PER_TXD;
1822
1823 tx_desc->buffer_addr = cpu_to_le64(dma);
1824 }
1825
1826 if (likely(!data_len))
1827 break;
1828
1829 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
1830 size, td_tag);
1831
1832 tx_desc++;
1833 i++;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001834 desc_count++;
1835
Greg Rose7f12ad72013-12-21 06:12:51 +00001836 if (i == tx_ring->count) {
1837 tx_desc = I40E_TX_DESC(tx_ring, 0);
1838 i = 0;
1839 }
1840
1841 size = skb_frag_size(frag);
1842 data_len -= size;
1843
1844 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
1845 DMA_TO_DEVICE);
1846
1847 tx_bi = &tx_ring->tx_bi[i];
1848 }
1849
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00001850#define WB_STRIDE 0x3
Greg Rose7f12ad72013-12-21 06:12:51 +00001851 /* set next_to_watch value indicating a packet is present */
1852 first->next_to_watch = tx_desc;
1853
1854 i++;
1855 if (i == tx_ring->count)
1856 i = 0;
1857
1858 tx_ring->next_to_use = i;
1859
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001860 netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
1861 tx_ring->queue_index),
1862 first->bytecount);
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001863 i40evf_maybe_stop_tx(tx_ring, DESC_NEEDED);
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001864
1865 /* Algorithm to optimize tail and RS bit setting:
1866 * if xmit_more is supported
1867 * if xmit_more is true
1868 * do not update tail and do not mark RS bit.
1869 * if xmit_more is false and last xmit_more was false
1870 * if every packet spanned less than 4 desc
1871 * then set RS bit on 4th packet and update tail
1872 * on every packet
1873 * else
1874 * update tail and set RS bit on every packet.
1875 * if xmit_more is false and last_xmit_more was true
1876 * update tail and set RS bit.
1877 * else (kernel < 3.18)
1878 * if every packet spanned less than 4 desc
1879 * then set RS bit on 4th packet and update tail
1880 * on every packet
1881 * else
1882 * set RS bit on EOP for every packet and update tail
1883 *
1884 * Optimization: wmb to be issued only in case of tail update.
1885 * Also optimize the Descriptor WB path for RS bit with the same
1886 * algorithm.
1887 *
1888 * Note: If there are less than 4 packets
1889 * pending and interrupts were disabled the service task will
1890 * trigger a force WB.
1891 */
1892 if (skb->xmit_more &&
1893 !netif_xmit_stopped(netdev_get_tx_queue(tx_ring->netdev,
1894 tx_ring->queue_index))) {
1895 tx_ring->flags |= I40E_TXR_FLAGS_LAST_XMIT_MORE_SET;
1896 tail_bump = false;
1897 } else if (!skb->xmit_more &&
1898 !netif_xmit_stopped(netdev_get_tx_queue(tx_ring->netdev,
1899 tx_ring->queue_index)) &&
1900 (!(tx_ring->flags & I40E_TXR_FLAGS_LAST_XMIT_MORE_SET)) &&
1901 (tx_ring->packet_stride < WB_STRIDE) &&
1902 (desc_count < WB_STRIDE)) {
1903 tx_ring->packet_stride++;
1904 } else {
1905 tx_ring->packet_stride = 0;
1906 tx_ring->flags &= ~I40E_TXR_FLAGS_LAST_XMIT_MORE_SET;
1907 do_rs = true;
1908 }
1909 if (do_rs)
1910 tx_ring->packet_stride = 0;
1911
1912 tx_desc->cmd_type_offset_bsz =
1913 build_ctob(td_cmd, td_offset, size, td_tag) |
1914 cpu_to_le64((u64)(do_rs ? I40E_TXD_CMD :
1915 I40E_TX_DESC_CMD_EOP) <<
1916 I40E_TXD_QW1_CMD_SHIFT);
1917
Greg Rose7f12ad72013-12-21 06:12:51 +00001918 /* notify HW of packet */
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001919 if (!tail_bump)
Jesse Brandeburg489ce7a2015-04-27 14:57:08 -04001920 prefetchw(tx_desc + 1);
Greg Rose7f12ad72013-12-21 06:12:51 +00001921
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04001922 if (tail_bump) {
1923 /* Force memory writes to complete before letting h/w
1924 * know there are new descriptors to fetch. (Only
1925 * applicable for weak-ordered memory model archs,
1926 * such as IA-64).
1927 */
1928 wmb();
1929 writel(i, tx_ring->tail);
1930 }
1931
Greg Rose7f12ad72013-12-21 06:12:51 +00001932 return;
1933
1934dma_error:
1935 dev_info(tx_ring->dev, "TX DMA map failed\n");
1936
1937 /* clear dma mappings for failed tx_bi map */
1938 for (;;) {
1939 tx_bi = &tx_ring->tx_bi[i];
1940 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
1941 if (tx_bi == first)
1942 break;
1943 if (i == 0)
1944 i = tx_ring->count;
1945 i--;
1946 }
1947
1948 tx_ring->next_to_use = i;
1949}
1950
1951/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001952 * i40evf_xmit_descriptor_count - calculate number of tx descriptors needed
Greg Rose7f12ad72013-12-21 06:12:51 +00001953 * @skb: send buffer
1954 * @tx_ring: ring to send buffer on
1955 *
1956 * Returns number of data descriptors needed for this skb. Returns 0 to indicate
1957 * there is not enough descriptors available in this ring since we need at least
1958 * one descriptor.
1959 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001960static inline int i40evf_xmit_descriptor_count(struct sk_buff *skb,
1961 struct i40e_ring *tx_ring)
Greg Rose7f12ad72013-12-21 06:12:51 +00001962{
Greg Rose7f12ad72013-12-21 06:12:51 +00001963 unsigned int f;
Greg Rose7f12ad72013-12-21 06:12:51 +00001964 int count = 0;
1965
1966 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
1967 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
Jesse Brandeburgbe560522014-02-06 05:51:13 +00001968 * + 4 desc gap to avoid the cache line where head is,
Greg Rose7f12ad72013-12-21 06:12:51 +00001969 * + 1 desc for context descriptor,
1970 * otherwise try next time
1971 */
Greg Rose7f12ad72013-12-21 06:12:51 +00001972 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1973 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Jesse Brandeburg980093e2014-05-10 04:49:12 +00001974
Greg Rose7f12ad72013-12-21 06:12:51 +00001975 count += TXD_USE_COUNT(skb_headlen(skb));
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04001976 if (i40evf_maybe_stop_tx(tx_ring, count + 4 + 1)) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001977 tx_ring->tx_stats.tx_busy++;
1978 return 0;
1979 }
1980 return count;
1981}
1982
1983/**
1984 * i40e_xmit_frame_ring - Sends buffer on Tx ring
1985 * @skb: send buffer
1986 * @tx_ring: ring to send buffer on
1987 *
1988 * Returns NETDEV_TX_OK if sent, else an error code
1989 **/
1990static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
1991 struct i40e_ring *tx_ring)
1992{
1993 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
1994 u32 cd_tunneling = 0, cd_l2tag2 = 0;
1995 struct i40e_tx_buffer *first;
1996 u32 td_offset = 0;
1997 u32 tx_flags = 0;
1998 __be16 protocol;
1999 u32 td_cmd = 0;
2000 u8 hdr_len = 0;
2001 int tso;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002002
Jesse Brandeburgb74118f2015-10-26 19:44:30 -04002003 /* prefetch the data, we'll need it later */
2004 prefetch(skb->data);
2005
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002006 if (0 == i40evf_xmit_descriptor_count(skb, tx_ring))
Greg Rose7f12ad72013-12-21 06:12:51 +00002007 return NETDEV_TX_BUSY;
2008
2009 /* prepare the xmit flags */
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002010 if (i40evf_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
Greg Rose7f12ad72013-12-21 06:12:51 +00002011 goto out_drop;
2012
2013 /* obtain protocol of skb */
Vlad Yasevicha12c4152014-08-25 10:34:53 -04002014 protocol = vlan_get_protocol(skb);
Greg Rose7f12ad72013-12-21 06:12:51 +00002015
2016 /* record the location of the first descriptor for this packet */
2017 first = &tx_ring->tx_bi[tx_ring->next_to_use];
2018
2019 /* setup IPv4/IPv6 offloads */
2020 if (protocol == htons(ETH_P_IP))
2021 tx_flags |= I40E_TX_FLAGS_IPV4;
2022 else if (protocol == htons(ETH_P_IPV6))
2023 tx_flags |= I40E_TX_FLAGS_IPV6;
2024
Shannon Nelson9c883bd2015-10-21 19:47:02 -04002025 tso = i40e_tso(tx_ring, skb, &hdr_len, &cd_type_cmd_tso_mss);
Greg Rose7f12ad72013-12-21 06:12:51 +00002026
2027 if (tso < 0)
2028 goto out_drop;
2029 else if (tso)
2030 tx_flags |= I40E_TX_FLAGS_TSO;
2031
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -04002032 if (i40e_chk_linearize(skb, tx_flags)) {
Anjali Singhai71da6192015-02-21 06:42:35 +00002033 if (skb_linearize(skb))
2034 goto out_drop;
Anjali Singhai Jain2fc3d712015-08-27 11:42:29 -04002035 tx_ring->tx_stats.tx_linearize++;
2036 }
Greg Rose7f12ad72013-12-21 06:12:51 +00002037 skb_tx_timestamp(skb);
2038
2039 /* always enable CRC insertion offload */
2040 td_cmd |= I40E_TX_DESC_CMD_ICRC;
2041
2042 /* Always offload the checksum, since it's in the data descriptor */
2043 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2044 tx_flags |= I40E_TX_FLAGS_CSUM;
2045
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04002046 i40e_tx_enable_csum(skb, &tx_flags, &td_cmd, &td_offset,
Greg Rose7f12ad72013-12-21 06:12:51 +00002047 tx_ring, &cd_tunneling);
2048 }
2049
2050 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
2051 cd_tunneling, cd_l2tag2);
2052
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002053 i40evf_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
2054 td_cmd, td_offset);
Greg Rose7f12ad72013-12-21 06:12:51 +00002055
Greg Rose7f12ad72013-12-21 06:12:51 +00002056 return NETDEV_TX_OK;
2057
2058out_drop:
2059 dev_kfree_skb_any(skb);
2060 return NETDEV_TX_OK;
2061}
2062
2063/**
2064 * i40evf_xmit_frame - Selects the correct VSI and Tx queue to send buffer
2065 * @skb: send buffer
2066 * @netdev: network interface device structure
2067 *
2068 * Returns NETDEV_TX_OK if sent, else an error code
2069 **/
2070netdev_tx_t i40evf_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
2071{
2072 struct i40evf_adapter *adapter = netdev_priv(netdev);
Mitch Williams0dd438d2015-10-26 19:44:40 -04002073 struct i40e_ring *tx_ring = &adapter->tx_rings[skb->queue_mapping];
Greg Rose7f12ad72013-12-21 06:12:51 +00002074
2075 /* hardware can't handle really short frames, hardware padding works
2076 * beyond this point
2077 */
2078 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
2079 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
2080 return NETDEV_TX_OK;
2081 skb->len = I40E_MIN_TX_LEN;
2082 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
2083 }
2084
2085 return i40e_xmit_frame_ring(skb, tx_ring);
2086}