blob: 1f130e931077aacc6ffb6e4f35318ebcce003887 [file] [log] [blame]
Greg Rose7f12ad72013-12-21 06:12:51 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -08004 * Copyright(c) 2013 - 2016 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"
Scott Petersoned0980c2017-04-13 04:45:44 -040031#include "i40e_trace.h"
Jesse Brandeburg206812b2014-02-12 01:45:33 +000032#include "i40e_prototype.h"
Greg Rose7f12ad72013-12-21 06:12:51 +000033
34static inline __le64 build_ctob(u32 td_cmd, u32 td_offset, unsigned int size,
35 u32 td_tag)
36{
37 return cpu_to_le64(I40E_TX_DESC_DTYPE_DATA |
38 ((u64)td_cmd << I40E_TXD_QW1_CMD_SHIFT) |
39 ((u64)td_offset << I40E_TXD_QW1_OFFSET_SHIFT) |
40 ((u64)size << I40E_TXD_QW1_TX_BUF_SZ_SHIFT) |
41 ((u64)td_tag << I40E_TXD_QW1_L2TAG1_SHIFT));
42}
43
44#define I40E_TXD_CMD (I40E_TX_DESC_CMD_EOP | I40E_TX_DESC_CMD_RS)
45
46/**
47 * i40e_unmap_and_free_tx_resource - Release a Tx buffer
48 * @ring: the ring that owns the buffer
49 * @tx_buffer: the buffer to free
50 **/
51static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
52 struct i40e_tx_buffer *tx_buffer)
53{
54 if (tx_buffer->skb) {
Alexander Duyck64bfd682016-09-12 14:18:39 -070055 if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
56 kfree(tx_buffer->raw_buf);
57 else
58 dev_kfree_skb_any(tx_buffer->skb);
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 }
Kiran Patila42e7a32015-11-06 15:26:03 -080070
Greg Rose7f12ad72013-12-21 06:12:51 +000071 tx_buffer->next_to_watch = NULL;
72 tx_buffer->skb = NULL;
73 dma_unmap_len_set(tx_buffer, len, 0);
74 /* tx_buffer must be completely set up in the transmit path */
75}
76
77/**
78 * i40evf_clean_tx_ring - Free any empty Tx buffers
79 * @tx_ring: ring to be cleaned
80 **/
81void i40evf_clean_tx_ring(struct i40e_ring *tx_ring)
82{
83 unsigned long bi_size;
84 u16 i;
85
86 /* ring already cleared, nothing to do */
87 if (!tx_ring->tx_bi)
88 return;
89
90 /* Free all the Tx ring sk_buffs */
91 for (i = 0; i < tx_ring->count; i++)
92 i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
93
94 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
95 memset(tx_ring->tx_bi, 0, bi_size);
96
97 /* Zero out the descriptor ring */
98 memset(tx_ring->desc, 0, tx_ring->size);
99
100 tx_ring->next_to_use = 0;
101 tx_ring->next_to_clean = 0;
102
103 if (!tx_ring->netdev)
104 return;
105
106 /* cleanup Tx queue statistics */
Alexander Duycke486bdf2016-09-12 14:18:40 -0700107 netdev_tx_reset_queue(txring_txq(tx_ring));
Greg Rose7f12ad72013-12-21 06:12:51 +0000108}
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
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800132 * @in_sw: is tx_pending being checked in SW or HW
Jesse Brandeburga68de582015-02-24 05:26:03 +0000133 *
Kiran Patil9c6c1252015-11-06 15:26:02 -0800134 * Since there is no access to the ring head register
135 * in XL710, we need to use our local copies
Jesse Brandeburga68de582015-02-24 05:26:03 +0000136 **/
Anjali Singhai Jaindd353102016-01-15 14:33:12 -0800137u32 i40evf_get_tx_pending(struct i40e_ring *ring, bool in_sw)
Jesse Brandeburga68de582015-02-24 05:26:03 +0000138{
Kiran Patil9c6c1252015-11-06 15:26:02 -0800139 u32 head, tail;
Jesse Brandeburga68de582015-02-24 05:26:03 +0000140
Preethi Banalab1cb07d2017-03-10 12:22:00 -0800141 head = ring->next_to_clean;
Kiran Patil9c6c1252015-11-06 15:26:02 -0800142 tail = readl(ring->tail);
143
144 if (head != tail)
145 return (head < tail) ?
146 tail - head : (tail + ring->count - head);
147
148 return 0;
Jesse Brandeburga68de582015-02-24 05:26:03 +0000149}
150
Sudheer Mogilappagari07d44192017-12-18 05:17:25 -0500151/**
152 * i40evf_detect_recover_hung - Function to detect and recover hung_queues
153 * @vsi: pointer to vsi struct with tx queues
154 *
155 * VSI has netdev and netdev has TX queues. This function is to check each of
156 * those TX queues if they are hung, trigger recovery by issuing SW interrupt.
157 **/
158void i40evf_detect_recover_hung(struct i40e_vsi *vsi)
159{
160 struct i40e_ring *tx_ring = NULL;
161 struct net_device *netdev;
162 unsigned int i;
163 int packets;
164
165 if (!vsi)
166 return;
167
168 if (test_bit(__I40E_VSI_DOWN, vsi->state))
169 return;
170
171 netdev = vsi->netdev;
172 if (!netdev)
173 return;
174
175 if (!netif_carrier_ok(netdev))
176 return;
177
178 for (i = 0; i < vsi->back->num_active_queues; i++) {
179 tx_ring = &vsi->back->tx_rings[i];
180 if (tx_ring && tx_ring->desc) {
181 /* If packet counter has not changed the queue is
182 * likely stalled, so force an interrupt for this
183 * queue.
184 *
185 * prev_pkt_ctr would be negative if there was no
186 * pending work.
187 */
188 packets = tx_ring->stats.packets & INT_MAX;
189 if (tx_ring->tx_stats.prev_pkt_ctr == packets) {
190 i40evf_force_wb(vsi, tx_ring->q_vector);
191 continue;
192 }
193
194 /* Memory barrier between read of packet count and call
195 * to i40evf_get_tx_pending()
196 */
197 smp_rmb();
198 tx_ring->tx_stats.prev_pkt_ctr =
199 i40evf_get_tx_pending(tx_ring, false) ? packets : -1;
200 }
201 }
202}
203
Alexander Duyck1dc8b532016-10-11 15:26:54 -0700204#define WB_STRIDE 4
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000205
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000206/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000207 * i40e_clean_tx_irq - Reclaim resources after transmit completes
Alexander Duycka619afe2016-03-07 09:30:03 -0800208 * @vsi: the VSI we care about
209 * @tx_ring: Tx ring to clean
210 * @napi_budget: Used to determine if we are in netpoll
Greg Rose7f12ad72013-12-21 06:12:51 +0000211 *
212 * Returns true if there's any budget left (e.g. the clean is finished)
213 **/
Alexander Duycka619afe2016-03-07 09:30:03 -0800214static bool i40e_clean_tx_irq(struct i40e_vsi *vsi,
215 struct i40e_ring *tx_ring, int napi_budget)
Greg Rose7f12ad72013-12-21 06:12:51 +0000216{
217 u16 i = tx_ring->next_to_clean;
218 struct i40e_tx_buffer *tx_buf;
219 struct i40e_tx_desc *tx_desc;
Alexander Duycka619afe2016-03-07 09:30:03 -0800220 unsigned int total_bytes = 0, total_packets = 0;
221 unsigned int budget = vsi->work_limit;
Greg Rose7f12ad72013-12-21 06:12:51 +0000222
223 tx_buf = &tx_ring->tx_bi[i];
224 tx_desc = I40E_TX_DESC(tx_ring, i);
225 i -= tx_ring->count;
226
227 do {
228 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
229
230 /* if next_to_watch is not set then there is no work pending */
231 if (!eop_desc)
232 break;
233
234 /* prevent any other reads prior to eop_desc */
Brian Kingf72271e2017-11-17 11:05:49 -0600235 smp_rmb();
Greg Rose7f12ad72013-12-21 06:12:51 +0000236
Scott Petersoned0980c2017-04-13 04:45:44 -0400237 i40e_trace(clean_tx_irq, tx_ring, tx_desc, tx_buf);
Preethi Banalab1cb07d2017-03-10 12:22:00 -0800238 /* if the descriptor isn't done, no work yet to do */
239 if (!(eop_desc->cmd_type_offset_bsz &
240 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
Greg Rose7f12ad72013-12-21 06:12:51 +0000241 break;
242
243 /* clear next_to_watch to prevent false hangs */
244 tx_buf->next_to_watch = NULL;
245
246 /* update the statistics for this packet */
247 total_bytes += tx_buf->bytecount;
248 total_packets += tx_buf->gso_segs;
249
250 /* free the skb */
Alexander Duycka619afe2016-03-07 09:30:03 -0800251 napi_consume_skb(tx_buf->skb, napi_budget);
Greg Rose7f12ad72013-12-21 06:12:51 +0000252
253 /* unmap skb header data */
254 dma_unmap_single(tx_ring->dev,
255 dma_unmap_addr(tx_buf, dma),
256 dma_unmap_len(tx_buf, len),
257 DMA_TO_DEVICE);
258
259 /* clear tx_buffer data */
260 tx_buf->skb = NULL;
261 dma_unmap_len_set(tx_buf, len, 0);
262
263 /* unmap remaining buffers */
264 while (tx_desc != eop_desc) {
Scott Petersoned0980c2017-04-13 04:45:44 -0400265 i40e_trace(clean_tx_irq_unmap,
266 tx_ring, tx_desc, tx_buf);
Greg Rose7f12ad72013-12-21 06:12:51 +0000267
268 tx_buf++;
269 tx_desc++;
270 i++;
271 if (unlikely(!i)) {
272 i -= tx_ring->count;
273 tx_buf = tx_ring->tx_bi;
274 tx_desc = I40E_TX_DESC(tx_ring, 0);
275 }
276
277 /* unmap any remaining paged data */
278 if (dma_unmap_len(tx_buf, len)) {
279 dma_unmap_page(tx_ring->dev,
280 dma_unmap_addr(tx_buf, dma),
281 dma_unmap_len(tx_buf, len),
282 DMA_TO_DEVICE);
283 dma_unmap_len_set(tx_buf, len, 0);
284 }
285 }
286
287 /* move us one more past the eop_desc for start of next pkt */
288 tx_buf++;
289 tx_desc++;
290 i++;
291 if (unlikely(!i)) {
292 i -= tx_ring->count;
293 tx_buf = tx_ring->tx_bi;
294 tx_desc = I40E_TX_DESC(tx_ring, 0);
295 }
296
Jesse Brandeburg016890b2015-02-27 09:15:31 +0000297 prefetch(tx_desc);
298
Greg Rose7f12ad72013-12-21 06:12:51 +0000299 /* update budget accounting */
300 budget--;
301 } while (likely(budget));
302
303 i += tx_ring->count;
304 tx_ring->next_to_clean = i;
305 u64_stats_update_begin(&tx_ring->syncp);
306 tx_ring->stats.bytes += total_bytes;
307 tx_ring->stats.packets += total_packets;
308 u64_stats_update_end(&tx_ring->syncp);
309 tx_ring->q_vector->tx.total_bytes += total_bytes;
310 tx_ring->q_vector->tx.total_packets += total_packets;
311
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -0800312 if (tx_ring->flags & I40E_TXR_FLAGS_WB_ON_ITR) {
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -0800313 /* check to see if there are < 4 descriptors
314 * waiting to be written back, then kick the hardware to force
315 * them to be written back in case we stay in NAPI.
316 * In this mode on X722 we do not enable Interrupt.
317 */
Mitch Williams88dc9e62016-06-20 09:10:35 -0700318 unsigned int j = i40evf_get_tx_pending(tx_ring, false);
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -0800319
320 if (budget &&
Alexander Duyck1dc8b532016-10-11 15:26:54 -0700321 ((j / WB_STRIDE) == 0) && (j > 0) &&
Jacob Keller0da36b92017-04-19 09:25:55 -0400322 !test_bit(__I40E_VSI_DOWN, vsi->state) &&
Anjali Singhai Jainf6d83d12015-12-22 14:25:07 -0800323 (I40E_DESC_UNUSED(tx_ring) != tx_ring->count))
324 tx_ring->arm_wb = true;
325 }
326
Alexander Duycke486bdf2016-09-12 14:18:40 -0700327 /* notify netdev of completed buffers */
328 netdev_tx_completed_queue(txring_txq(tx_ring),
Greg Rose7f12ad72013-12-21 06:12:51 +0000329 total_packets, total_bytes);
330
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -0700331#define TX_WAKE_THRESHOLD ((s16)(DESC_NEEDED * 2))
Greg Rose7f12ad72013-12-21 06:12:51 +0000332 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
333 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
334 /* Make sure that anybody stopping the queue after this
335 * sees the new next_to_clean.
336 */
337 smp_mb();
338 if (__netif_subqueue_stopped(tx_ring->netdev,
339 tx_ring->queue_index) &&
Jacob Keller0da36b92017-04-19 09:25:55 -0400340 !test_bit(__I40E_VSI_DOWN, vsi->state)) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000341 netif_wake_subqueue(tx_ring->netdev,
342 tx_ring->queue_index);
343 ++tx_ring->tx_stats.restart_queue;
344 }
345 }
346
Kiran Patilb03a8c12015-09-24 18:13:15 -0400347 return !!budget;
Greg Rose7f12ad72013-12-21 06:12:51 +0000348}
349
350/**
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -0800351 * i40evf_enable_wb_on_itr - Arm hardware to do a wb, interrupts are not enabled
352 * @vsi: the VSI we care about
353 * @q_vector: the vector on which to enable writeback
354 *
355 **/
356static void i40e_enable_wb_on_itr(struct i40e_vsi *vsi,
357 struct i40e_q_vector *q_vector)
358{
359 u16 flags = q_vector->tx.ring[0].flags;
360 u32 val;
361
362 if (!(flags & I40E_TXR_FLAGS_WB_ON_ITR))
363 return;
364
365 if (q_vector->arm_wb_state)
366 return;
367
368 val = I40E_VFINT_DYN_CTLN1_WB_ON_ITR_MASK |
369 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK; /* set noitr */
370
371 wr32(&vsi->back->hw,
Alexander Duycka3f9fb52017-12-29 08:48:53 -0500372 I40E_VFINT_DYN_CTLN1(q_vector->reg_idx), val);
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -0800373 q_vector->arm_wb_state = true;
374}
375
376/**
377 * i40evf_force_wb - Issue SW Interrupt so HW does a wb
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000378 * @vsi: the VSI we care about
379 * @q_vector: the vector on which to force writeback
380 *
381 **/
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -0800382void i40evf_force_wb(struct i40e_vsi *vsi, struct i40e_q_vector *q_vector)
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000383{
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -0800384 u32 val = I40E_VFINT_DYN_CTLN1_INTENA_MASK |
385 I40E_VFINT_DYN_CTLN1_ITR_INDX_MASK | /* set noitr */
386 I40E_VFINT_DYN_CTLN1_SWINT_TRIG_MASK |
387 I40E_VFINT_DYN_CTLN1_SW_ITR_INDX_ENA_MASK
388 /* allow 00 to be written to the index */;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000389
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -0800390 wr32(&vsi->back->hw,
Alexander Duycka3f9fb52017-12-29 08:48:53 -0500391 I40E_VFINT_DYN_CTLN1(q_vector->reg_idx),
Anjali Singhai Jainecc6a232016-01-13 16:51:43 -0800392 val);
Anjali Singhai Jainc29af372015-01-10 01:07:19 +0000393}
394
395/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000396 * i40e_set_new_dynamic_itr - Find new ITR level
397 * @rc: structure containing ring performance data
398 *
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400399 * Returns true if ITR changed, false if not
400 *
Greg Rose7f12ad72013-12-21 06:12:51 +0000401 * Stores a new ITR value based on packets and byte counts during
402 * the last interrupt. The advantage of per interrupt computation
403 * is faster updates and more accurate ITR for the current traffic
404 * pattern. Constants in this function were computed based on
405 * theoretical maximum wire speed and thresholds were set based on
406 * testing data as well as attempting to minimize response time
407 * while increasing bulk throughput.
408 **/
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400409static bool i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
Greg Rose7f12ad72013-12-21 06:12:51 +0000410{
411 enum i40e_latency_range new_latency_range = rc->latency_range;
Jacob Keller2b634bb2017-07-14 09:10:14 -0400412 int bytes_per_usec;
Jacob Keller742c9872017-07-14 09:10:13 -0400413 unsigned int usecs, estimated_usecs;
Greg Rose7f12ad72013-12-21 06:12:51 +0000414
Alexander Duyck71dc3712017-12-29 08:49:53 -0500415 if (!rc->ring || !ITR_IS_DYNAMIC(rc->ring->itr_setting))
416 return false;
417
Alexander Duyck556fdfd2017-12-29 08:51:25 -0500418 if (!rc->total_packets || !rc->current_itr)
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400419 return false;
Greg Rose7f12ad72013-12-21 06:12:51 +0000420
Alexander Duyck556fdfd2017-12-29 08:51:25 -0500421 usecs = (rc->current_itr << 1) * ITR_COUNTDOWN_START;
Jacob Keller2b634bb2017-07-14 09:10:14 -0400422 bytes_per_usec = rc->total_bytes / usecs;
Jacob Keller742c9872017-07-14 09:10:13 -0400423
424 /* The calculations in this algorithm depend on interrupts actually
425 * firing at the ITR rate. This may not happen if the packet rate is
426 * really low, or if we've been napi polling. Check to make sure
427 * that's not the case before we continue.
428 */
429 estimated_usecs = jiffies_to_usecs(jiffies - rc->last_itr_update);
430 if (estimated_usecs > usecs) {
431 new_latency_range = I40E_LOW_LATENCY;
432 goto reset_latency;
433 }
434
Greg Rose7f12ad72013-12-21 06:12:51 +0000435 /* simple throttlerate management
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400436 * 0-10MB/s lowest (50000 ints/s)
Greg Rose7f12ad72013-12-21 06:12:51 +0000437 * 10-20MB/s low (20000 ints/s)
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400438 * 20-1249MB/s bulk (18000 ints/s)
Jesse Brandeburg51cc6d92015-09-28 14:16:52 -0400439 *
440 * The math works out because the divisor is in 10^(-6) which
441 * turns the bytes/us input value into MB/s values, but
442 * make sure to use usecs, as the register values written
Jesse Brandeburgee2319c2015-09-28 14:16:54 -0400443 * are in 2 usec increments in the ITR registers, and make sure
444 * to use the smoothed values that the countdown timer gives us.
Greg Rose7f12ad72013-12-21 06:12:51 +0000445 */
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400446 switch (new_latency_range) {
Greg Rose7f12ad72013-12-21 06:12:51 +0000447 case I40E_LOWEST_LATENCY:
Jacob Keller2b634bb2017-07-14 09:10:14 -0400448 if (bytes_per_usec > 10)
Greg Rose7f12ad72013-12-21 06:12:51 +0000449 new_latency_range = I40E_LOW_LATENCY;
450 break;
451 case I40E_LOW_LATENCY:
Jacob Keller2b634bb2017-07-14 09:10:14 -0400452 if (bytes_per_usec > 20)
Greg Rose7f12ad72013-12-21 06:12:51 +0000453 new_latency_range = I40E_BULK_LATENCY;
Jacob Keller2b634bb2017-07-14 09:10:14 -0400454 else if (bytes_per_usec <= 10)
Greg Rose7f12ad72013-12-21 06:12:51 +0000455 new_latency_range = I40E_LOWEST_LATENCY;
456 break;
457 case I40E_BULK_LATENCY:
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400458 default:
Jacob Keller2b634bb2017-07-14 09:10:14 -0400459 if (bytes_per_usec <= 20)
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400460 new_latency_range = I40E_LOW_LATENCY;
Greg Rose7f12ad72013-12-21 06:12:51 +0000461 break;
462 }
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400463
Jacob Keller742c9872017-07-14 09:10:13 -0400464reset_latency:
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -0400465 rc->latency_range = new_latency_range;
Greg Rose7f12ad72013-12-21 06:12:51 +0000466
467 switch (new_latency_range) {
468 case I40E_LOWEST_LATENCY:
Alexander Duyck556fdfd2017-12-29 08:51:25 -0500469 rc->target_itr = I40E_ITR_50K;
Greg Rose7f12ad72013-12-21 06:12:51 +0000470 break;
471 case I40E_LOW_LATENCY:
Alexander Duyck556fdfd2017-12-29 08:51:25 -0500472 rc->target_itr = I40E_ITR_20K;
Greg Rose7f12ad72013-12-21 06:12:51 +0000473 break;
474 case I40E_BULK_LATENCY:
Alexander Duyck556fdfd2017-12-29 08:51:25 -0500475 rc->target_itr = I40E_ITR_18K;
Jesse Brandeburgc56625d2015-09-28 14:16:53 -0400476 break;
Greg Rose7f12ad72013-12-21 06:12:51 +0000477 default:
478 break;
479 }
480
Greg Rose7f12ad72013-12-21 06:12:51 +0000481 rc->total_bytes = 0;
482 rc->total_packets = 0;
Jacob Keller742c9872017-07-14 09:10:13 -0400483 rc->last_itr_update = jiffies;
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -0400484
Alexander Duyck556fdfd2017-12-29 08:51:25 -0500485 return rc->target_itr != rc->current_itr;
Greg Rose7f12ad72013-12-21 06:12:51 +0000486}
487
Jesse Brandeburg4eeb1ff2015-11-18 17:35:42 -0800488/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000489 * i40evf_setup_tx_descriptors - Allocate the Tx descriptors
490 * @tx_ring: the tx ring to set up
491 *
492 * Return 0 on success, negative on error
493 **/
494int i40evf_setup_tx_descriptors(struct i40e_ring *tx_ring)
495{
496 struct device *dev = tx_ring->dev;
497 int bi_size;
498
499 if (!dev)
500 return -ENOMEM;
501
Mitch Williams67c818a2015-06-19 08:56:30 -0700502 /* warn if we are about to overwrite the pointer */
503 WARN_ON(tx_ring->tx_bi);
Greg Rose7f12ad72013-12-21 06:12:51 +0000504 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
505 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
506 if (!tx_ring->tx_bi)
507 goto err;
508
509 /* round up to nearest 4K */
510 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
511 tx_ring->size = ALIGN(tx_ring->size, 4096);
512 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
513 &tx_ring->dma, GFP_KERNEL);
514 if (!tx_ring->desc) {
515 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
516 tx_ring->size);
517 goto err;
518 }
519
520 tx_ring->next_to_use = 0;
521 tx_ring->next_to_clean = 0;
Sudheer Mogilappagari07d44192017-12-18 05:17:25 -0500522 tx_ring->tx_stats.prev_pkt_ctr = -1;
Greg Rose7f12ad72013-12-21 06:12:51 +0000523 return 0;
524
525err:
526 kfree(tx_ring->tx_bi);
527 tx_ring->tx_bi = NULL;
528 return -ENOMEM;
529}
530
531/**
532 * i40evf_clean_rx_ring - Free Rx buffers
533 * @rx_ring: ring to be cleaned
534 **/
535void i40evf_clean_rx_ring(struct i40e_ring *rx_ring)
536{
Greg Rose7f12ad72013-12-21 06:12:51 +0000537 unsigned long bi_size;
538 u16 i;
539
540 /* ring already cleared, nothing to do */
541 if (!rx_ring->rx_bi)
542 return;
543
Scott Petersone72e5652017-02-09 23:40:25 -0800544 if (rx_ring->skb) {
545 dev_kfree_skb(rx_ring->skb);
546 rx_ring->skb = NULL;
547 }
548
Greg Rose7f12ad72013-12-21 06:12:51 +0000549 /* Free all the Rx ring sk_buffs */
550 for (i = 0; i < rx_ring->count; i++) {
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700551 struct i40e_rx_buffer *rx_bi = &rx_ring->rx_bi[i];
552
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700553 if (!rx_bi->page)
554 continue;
555
Alexander Duyck59605bc2017-01-30 12:29:35 -0800556 /* Invalidate cache lines that may have been written to by
557 * device so that we avoid corrupting memory.
558 */
559 dma_sync_single_range_for_cpu(rx_ring->dev,
560 rx_bi->dma,
561 rx_bi->page_offset,
Alexander Duyck98efd692017-04-05 07:51:01 -0400562 rx_ring->rx_buf_len,
Alexander Duyck59605bc2017-01-30 12:29:35 -0800563 DMA_FROM_DEVICE);
564
565 /* free resources associated with mapping */
566 dma_unmap_page_attrs(rx_ring->dev, rx_bi->dma,
Alexander Duyck98efd692017-04-05 07:51:01 -0400567 i40e_rx_pg_size(rx_ring),
Alexander Duyck59605bc2017-01-30 12:29:35 -0800568 DMA_FROM_DEVICE,
569 I40E_RX_DMA_ATTR);
Alexander Duyck98efd692017-04-05 07:51:01 -0400570
Alexander Duyck17936682017-02-21 15:55:39 -0800571 __page_frag_cache_drain(rx_bi->page, rx_bi->pagecnt_bias);
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700572
573 rx_bi->page = NULL;
574 rx_bi->page_offset = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +0000575 }
576
577 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
578 memset(rx_ring->rx_bi, 0, bi_size);
579
580 /* Zero out the descriptor ring */
581 memset(rx_ring->desc, 0, rx_ring->size);
582
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700583 rx_ring->next_to_alloc = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +0000584 rx_ring->next_to_clean = 0;
585 rx_ring->next_to_use = 0;
586}
587
588/**
589 * i40evf_free_rx_resources - Free Rx resources
590 * @rx_ring: ring to clean the resources from
591 *
592 * Free all receive software resources
593 **/
594void i40evf_free_rx_resources(struct i40e_ring *rx_ring)
595{
596 i40evf_clean_rx_ring(rx_ring);
597 kfree(rx_ring->rx_bi);
598 rx_ring->rx_bi = NULL;
599
600 if (rx_ring->desc) {
601 dma_free_coherent(rx_ring->dev, rx_ring->size,
602 rx_ring->desc, rx_ring->dma);
603 rx_ring->desc = NULL;
604 }
605}
606
607/**
608 * i40evf_setup_rx_descriptors - Allocate Rx descriptors
609 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
610 *
611 * Returns 0 on success, negative on failure
612 **/
613int i40evf_setup_rx_descriptors(struct i40e_ring *rx_ring)
614{
615 struct device *dev = rx_ring->dev;
616 int bi_size;
617
Mitch Williams67c818a2015-06-19 08:56:30 -0700618 /* warn if we are about to overwrite the pointer */
619 WARN_ON(rx_ring->rx_bi);
Greg Rose7f12ad72013-12-21 06:12:51 +0000620 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
621 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
622 if (!rx_ring->rx_bi)
623 goto err;
624
Carolyn Wybornyf217d6c2015-02-09 17:42:31 -0800625 u64_stats_init(&rx_ring->syncp);
Carolyn Wyborny638702b2015-01-24 09:58:32 +0000626
Greg Rose7f12ad72013-12-21 06:12:51 +0000627 /* Round up to nearest 4K */
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700628 rx_ring->size = rx_ring->count * sizeof(union i40e_32byte_rx_desc);
Greg Rose7f12ad72013-12-21 06:12:51 +0000629 rx_ring->size = ALIGN(rx_ring->size, 4096);
630 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
631 &rx_ring->dma, GFP_KERNEL);
632
633 if (!rx_ring->desc) {
634 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
635 rx_ring->size);
636 goto err;
637 }
638
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700639 rx_ring->next_to_alloc = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +0000640 rx_ring->next_to_clean = 0;
641 rx_ring->next_to_use = 0;
642
643 return 0;
644err:
645 kfree(rx_ring->rx_bi);
646 rx_ring->rx_bi = NULL;
647 return -ENOMEM;
648}
649
650/**
651 * i40e_release_rx_desc - Store the new tail and head values
652 * @rx_ring: ring to bump
653 * @val: new head index
654 **/
655static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
656{
657 rx_ring->next_to_use = val;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700658
659 /* update next to alloc since we have filled the ring */
660 rx_ring->next_to_alloc = val;
661
Greg Rose7f12ad72013-12-21 06:12:51 +0000662 /* Force memory writes to complete before letting h/w
663 * know there are new descriptors to fetch. (Only
664 * applicable for weak-ordered memory model archs,
665 * such as IA-64).
666 */
667 wmb();
668 writel(val, rx_ring->tail);
669}
670
671/**
Alexander Duyckca9ec082017-04-05 07:51:02 -0400672 * i40e_rx_offset - Return expected offset into page to access data
673 * @rx_ring: Ring we are requesting offset of
674 *
675 * Returns the offset value for ring into the data buffer.
676 */
677static inline unsigned int i40e_rx_offset(struct i40e_ring *rx_ring)
678{
679 return ring_uses_build_skb(rx_ring) ? I40E_SKB_PAD : 0;
680}
681
682/**
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700683 * i40e_alloc_mapped_page - recycle or make a new page
684 * @rx_ring: ring to use
685 * @bi: rx_buffer struct to modify
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -0800686 *
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700687 * Returns true if the page was successfully allocated or
688 * reused.
Greg Rose7f12ad72013-12-21 06:12:51 +0000689 **/
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700690static bool i40e_alloc_mapped_page(struct i40e_ring *rx_ring,
691 struct i40e_rx_buffer *bi)
Mitch Williamsa132af22015-01-24 09:58:35 +0000692{
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700693 struct page *page = bi->page;
694 dma_addr_t dma;
Mitch Williamsa132af22015-01-24 09:58:35 +0000695
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700696 /* since we are recycling buffers we should seldom need to alloc */
697 if (likely(page)) {
698 rx_ring->rx_stats.page_reuse_count++;
699 return true;
Mitch Williamsa132af22015-01-24 09:58:35 +0000700 }
701
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700702 /* alloc new page for storage */
Alexander Duyck98efd692017-04-05 07:51:01 -0400703 page = dev_alloc_pages(i40e_rx_pg_order(rx_ring));
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700704 if (unlikely(!page)) {
705 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -0800706 return false;
Greg Rose7f12ad72013-12-21 06:12:51 +0000707 }
708
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700709 /* map page for use */
Alexander Duyck59605bc2017-01-30 12:29:35 -0800710 dma = dma_map_page_attrs(rx_ring->dev, page, 0,
Alexander Duyck98efd692017-04-05 07:51:01 -0400711 i40e_rx_pg_size(rx_ring),
Alexander Duyck59605bc2017-01-30 12:29:35 -0800712 DMA_FROM_DEVICE,
713 I40E_RX_DMA_ATTR);
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -0800714
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700715 /* if mapping failed free memory back to system since
716 * there isn't much point in holding memory we can't use
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -0800717 */
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700718 if (dma_mapping_error(rx_ring->dev, dma)) {
Alexander Duyck98efd692017-04-05 07:51:01 -0400719 __free_pages(page, i40e_rx_pg_order(rx_ring));
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700720 rx_ring->rx_stats.alloc_page_failed++;
721 return false;
722 }
723
724 bi->dma = dma;
725 bi->page = page;
Alexander Duyckca9ec082017-04-05 07:51:02 -0400726 bi->page_offset = i40e_rx_offset(rx_ring);
Alexander Duycka0cfc312017-03-14 10:15:24 -0700727
728 /* initialize pagecnt_bias to 1 representing we fully own page */
Alexander Duyck17936682017-02-21 15:55:39 -0800729 bi->pagecnt_bias = 1;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700730
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -0800731 return true;
Greg Rose7f12ad72013-12-21 06:12:51 +0000732}
733
734/**
735 * i40e_receive_skb - Send a completed packet up the stack
736 * @rx_ring: rx ring in play
737 * @skb: packet to send up
738 * @vlan_tag: vlan tag for packet
739 **/
740static void i40e_receive_skb(struct i40e_ring *rx_ring,
741 struct sk_buff *skb, u16 vlan_tag)
742{
743 struct i40e_q_vector *q_vector = rx_ring->q_vector;
Greg Rose7f12ad72013-12-21 06:12:51 +0000744
Jesse Brandeburga149f2c2016-04-12 08:30:49 -0700745 if ((rx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
746 (vlan_tag & VLAN_VID_MASK))
Greg Rose7f12ad72013-12-21 06:12:51 +0000747 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
748
Alexander Duyck8b650352015-09-24 09:04:32 -0700749 napi_gro_receive(&q_vector->napi, skb);
Greg Rose7f12ad72013-12-21 06:12:51 +0000750}
751
752/**
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700753 * i40evf_alloc_rx_buffers - Replace used receive buffers
754 * @rx_ring: ring to place buffers on
755 * @cleaned_count: number of buffers to replace
756 *
757 * Returns false if all allocations were successful, true if any fail
758 **/
759bool i40evf_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count)
760{
761 u16 ntu = rx_ring->next_to_use;
762 union i40e_rx_desc *rx_desc;
763 struct i40e_rx_buffer *bi;
764
765 /* do nothing if no valid netdev defined */
766 if (!rx_ring->netdev || !cleaned_count)
767 return false;
768
769 rx_desc = I40E_RX_DESC(rx_ring, ntu);
770 bi = &rx_ring->rx_bi[ntu];
771
772 do {
773 if (!i40e_alloc_mapped_page(rx_ring, bi))
774 goto no_buffers;
775
Alexander Duyck59605bc2017-01-30 12:29:35 -0800776 /* sync the buffer for use by the device */
777 dma_sync_single_range_for_device(rx_ring->dev, bi->dma,
778 bi->page_offset,
Alexander Duyck98efd692017-04-05 07:51:01 -0400779 rx_ring->rx_buf_len,
Alexander Duyck59605bc2017-01-30 12:29:35 -0800780 DMA_FROM_DEVICE);
781
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700782 /* Refresh the desc even if buffer_addrs didn't change
783 * because each write-back erases this info.
784 */
785 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma + bi->page_offset);
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700786
787 rx_desc++;
788 bi++;
789 ntu++;
790 if (unlikely(ntu == rx_ring->count)) {
791 rx_desc = I40E_RX_DESC(rx_ring, 0);
792 bi = rx_ring->rx_bi;
793 ntu = 0;
794 }
795
796 /* clear the status bits for the next_to_use descriptor */
797 rx_desc->wb.qword1.status_error_len = 0;
798
799 cleaned_count--;
800 } while (cleaned_count);
801
802 if (rx_ring->next_to_use != ntu)
803 i40e_release_rx_desc(rx_ring, ntu);
804
805 return false;
806
807no_buffers:
808 if (rx_ring->next_to_use != ntu)
809 i40e_release_rx_desc(rx_ring, ntu);
810
811 /* make sure to come back via polling to try again after
812 * allocation failure
813 */
814 return true;
815}
816
817/**
Greg Rose7f12ad72013-12-21 06:12:51 +0000818 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
819 * @vsi: the VSI we care about
820 * @skb: skb currently being received and modified
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700821 * @rx_desc: the receive descriptor
Greg Rose7f12ad72013-12-21 06:12:51 +0000822 **/
823static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
824 struct sk_buff *skb,
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700825 union i40e_rx_desc *rx_desc)
Greg Rose7f12ad72013-12-21 06:12:51 +0000826{
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700827 struct i40e_rx_ptype_decoded decoded;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700828 u32 rx_error, rx_status;
Alexander Duyck858296c82016-06-14 15:45:42 -0700829 bool ipv4, ipv6;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700830 u8 ptype;
831 u64 qword;
832
833 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
834 ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >> I40E_RXD_QW1_PTYPE_SHIFT;
835 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
836 I40E_RXD_QW1_ERROR_SHIFT;
837 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
838 I40E_RXD_QW1_STATUS_SHIFT;
839 decoded = decode_rx_desc_ptype(ptype);
Greg Rose7f12ad72013-12-21 06:12:51 +0000840
Greg Rose7f12ad72013-12-21 06:12:51 +0000841 skb->ip_summed = CHECKSUM_NONE;
842
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700843 skb_checksum_none_assert(skb);
844
Greg Rose7f12ad72013-12-21 06:12:51 +0000845 /* Rx csum enabled and ip headers found? */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000846 if (!(vsi->netdev->features & NETIF_F_RXCSUM))
Greg Rose7f12ad72013-12-21 06:12:51 +0000847 return;
848
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000849 /* did the hardware decode the packet and checksum? */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400850 if (!(rx_status & BIT(I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000851 return;
852
853 /* both known and outer_ip must be set for the below code to work */
854 if (!(decoded.known && decoded.outer_ip))
855 return;
856
Alexander Duyckfad57332016-01-24 21:17:22 -0800857 ipv4 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) &&
858 (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4);
859 ipv6 = (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP) &&
860 (decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6);
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000861
862 if (ipv4 &&
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400863 (rx_error & (BIT(I40E_RX_DESC_ERROR_IPE_SHIFT) |
864 BIT(I40E_RX_DESC_ERROR_EIPE_SHIFT))))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000865 goto checksum_fail;
866
Jesse Brandeburgddf1d0d2014-02-13 03:48:39 -0800867 /* likely incorrect csum if alternate IP extension headers found */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000868 if (ipv6 &&
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400869 rx_status & BIT(I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000870 /* don't increment checksum err here, non-fatal err */
Greg Rose7f12ad72013-12-21 06:12:51 +0000871 return;
872
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000873 /* there was some L4 error, count error and punt packet to the stack */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400874 if (rx_error & BIT(I40E_RX_DESC_ERROR_L4E_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000875 goto checksum_fail;
Greg Rose7f12ad72013-12-21 06:12:51 +0000876
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000877 /* handle packets that were not able to be checksummed due
878 * to arrival speed, in this case the stack can compute
879 * the csum.
880 */
Jesse Brandeburg41a1d042015-06-04 16:24:02 -0400881 if (rx_error & BIT(I40E_RX_DESC_ERROR_PPRS_SHIFT))
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000882 return;
883
Alexander Duyck858296c82016-06-14 15:45:42 -0700884 /* Only report checksum unnecessary for TCP, UDP, or SCTP */
885 switch (decoded.inner_prot) {
886 case I40E_RX_PTYPE_INNER_PROT_TCP:
887 case I40E_RX_PTYPE_INNER_PROT_UDP:
888 case I40E_RX_PTYPE_INNER_PROT_SCTP:
889 skb->ip_summed = CHECKSUM_UNNECESSARY;
890 /* fall though */
891 default:
892 break;
893 }
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +0000894
895 return;
896
897checksum_fail:
898 vsi->back->hw_csum_rx_error++;
Greg Rose7f12ad72013-12-21 06:12:51 +0000899}
900
901/**
Anjali Singhai Jain857942f2015-12-09 15:50:21 -0800902 * i40e_ptype_to_htype - get a hash type
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000903 * @ptype: the ptype value from the descriptor
904 *
905 * Returns a hash type to be used by skb_set_hash
906 **/
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700907static inline int i40e_ptype_to_htype(u8 ptype)
Jesse Brandeburg206812b2014-02-12 01:45:33 +0000908{
909 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
910
911 if (!decoded.known)
912 return PKT_HASH_TYPE_NONE;
913
914 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
915 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
916 return PKT_HASH_TYPE_L4;
917 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
918 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
919 return PKT_HASH_TYPE_L3;
920 else
921 return PKT_HASH_TYPE_L2;
922}
923
924/**
Anjali Singhai Jain857942f2015-12-09 15:50:21 -0800925 * i40e_rx_hash - set the hash value in the skb
926 * @ring: descriptor ring
927 * @rx_desc: specific descriptor
928 **/
929static inline void i40e_rx_hash(struct i40e_ring *ring,
930 union i40e_rx_desc *rx_desc,
931 struct sk_buff *skb,
932 u8 rx_ptype)
933{
934 u32 hash;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700935 const __le64 rss_mask =
Anjali Singhai Jain857942f2015-12-09 15:50:21 -0800936 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
937 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
938
939 if (ring->netdev->features & NETIF_F_RXHASH)
940 return;
941
942 if ((rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask) {
943 hash = le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
944 skb_set_hash(skb, hash, i40e_ptype_to_htype(rx_ptype));
945 }
946}
947
948/**
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700949 * i40evf_process_skb_fields - Populate skb header fields from Rx descriptor
950 * @rx_ring: rx descriptor ring packet is being transacted on
951 * @rx_desc: pointer to the EOP Rx descriptor
952 * @skb: pointer to current skb being populated
953 * @rx_ptype: the packet type decoded by hardware
Greg Rose7f12ad72013-12-21 06:12:51 +0000954 *
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700955 * This function checks the ring, descriptor, and packet information in
956 * order to populate the hash, checksum, VLAN, protocol, and
957 * other fields within the skb.
Greg Rose7f12ad72013-12-21 06:12:51 +0000958 **/
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700959static inline
960void i40evf_process_skb_fields(struct i40e_ring *rx_ring,
961 union i40e_rx_desc *rx_desc, struct sk_buff *skb,
962 u8 rx_ptype)
Greg Rose7f12ad72013-12-21 06:12:51 +0000963{
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700964 i40e_rx_hash(rx_ring, rx_desc, skb, rx_ptype);
Greg Rose7f12ad72013-12-21 06:12:51 +0000965
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700966 i40e_rx_checksum(rx_ring->vsi, skb, rx_desc);
Mitch Williamsa132af22015-01-24 09:58:35 +0000967
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700968 skb_record_rx_queue(skb, rx_ring->queue_index);
Alexander Duycka5b268e2017-02-21 15:55:46 -0800969
970 /* modifies the skb - consumes the enet header */
971 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Mitch Williamsa132af22015-01-24 09:58:35 +0000972}
973
974/**
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700975 * i40e_cleanup_headers - Correct empty headers
976 * @rx_ring: rx descriptor ring packet is being transacted on
977 * @skb: pointer to current skb being fixed
978 *
979 * Also address the case where we are pulling data in on pages only
980 * and as such no data is present in the skb header.
981 *
982 * In addition if skb is not at least 60 bytes we need to pad it so that
983 * it is large enough to qualify as a valid Ethernet frame.
984 *
985 * Returns true if an error was encountered and skb was freed.
Mitch Williamsa132af22015-01-24 09:58:35 +0000986 **/
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700987static bool i40e_cleanup_headers(struct i40e_ring *rx_ring, struct sk_buff *skb)
988{
Jesse Brandeburgab9ad982016-04-18 11:33:46 -0700989 /* if eth_skb_pad returns an error the skb was freed */
990 if (eth_skb_pad(skb))
991 return true;
992
993 return false;
994}
995
996/**
997 * i40e_reuse_rx_page - page flip buffer and store it back on the ring
998 * @rx_ring: rx descriptor ring to store buffers on
999 * @old_buff: donor buffer to have page reused
1000 *
1001 * Synchronizes page for reuse by the adapter
1002 **/
1003static void i40e_reuse_rx_page(struct i40e_ring *rx_ring,
1004 struct i40e_rx_buffer *old_buff)
1005{
1006 struct i40e_rx_buffer *new_buff;
1007 u16 nta = rx_ring->next_to_alloc;
1008
1009 new_buff = &rx_ring->rx_bi[nta];
1010
1011 /* update, and store next to alloc */
1012 nta++;
1013 rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
1014
1015 /* transfer page from old buffer to new buffer */
Alexander Duyck17936682017-02-21 15:55:39 -08001016 new_buff->dma = old_buff->dma;
1017 new_buff->page = old_buff->page;
1018 new_buff->page_offset = old_buff->page_offset;
1019 new_buff->pagecnt_bias = old_buff->pagecnt_bias;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001020}
1021
1022/**
Scott Peterson9b37c932017-02-09 23:43:30 -08001023 * i40e_page_is_reusable - check if any reuse is possible
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001024 * @page: page struct to check
Scott Peterson9b37c932017-02-09 23:43:30 -08001025 *
1026 * A page is not reusable if it was allocated under low memory
1027 * conditions, or it's not in the same NUMA node as this CPU.
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001028 */
Scott Peterson9b37c932017-02-09 23:43:30 -08001029static inline bool i40e_page_is_reusable(struct page *page)
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001030{
Scott Peterson9b37c932017-02-09 23:43:30 -08001031 return (page_to_nid(page) == numa_mem_id()) &&
1032 !page_is_pfmemalloc(page);
1033}
1034
1035/**
1036 * i40e_can_reuse_rx_page - Determine if this page can be reused by
1037 * the adapter for another receive
1038 *
1039 * @rx_buffer: buffer containing the page
Scott Peterson9b37c932017-02-09 23:43:30 -08001040 *
1041 * If page is reusable, rx_buffer->page_offset is adjusted to point to
1042 * an unused region in the page.
1043 *
1044 * For small pages, @truesize will be a constant value, half the size
1045 * of the memory at page. We'll attempt to alternate between high and
1046 * low halves of the page, with one half ready for use by the hardware
1047 * and the other half being consumed by the stack. We use the page
1048 * ref count to determine whether the stack has finished consuming the
1049 * portion of this page that was passed up with a previous packet. If
1050 * the page ref count is >1, we'll assume the "other" half page is
1051 * still busy, and this page cannot be reused.
1052 *
1053 * For larger pages, @truesize will be the actual space used by the
1054 * received packet (adjusted upward to an even multiple of the cache
1055 * line size). This will advance through the page by the amount
1056 * actually consumed by the received packets while there is still
1057 * space for a buffer. Each region of larger pages will be used at
1058 * most once, after which the page will not be reused.
1059 *
1060 * In either case, if the page is reusable its refcount is increased.
1061 **/
Alexander Duycka0cfc312017-03-14 10:15:24 -07001062static bool i40e_can_reuse_rx_page(struct i40e_rx_buffer *rx_buffer)
Scott Peterson9b37c932017-02-09 23:43:30 -08001063{
Alexander Duycka0cfc312017-03-14 10:15:24 -07001064 unsigned int pagecnt_bias = rx_buffer->pagecnt_bias;
1065 struct page *page = rx_buffer->page;
Scott Peterson9b37c932017-02-09 23:43:30 -08001066
1067 /* Is any reuse possible? */
1068 if (unlikely(!i40e_page_is_reusable(page)))
1069 return false;
1070
1071#if (PAGE_SIZE < 8192)
1072 /* if we are only owner of page we can reuse it */
Alexander Duycka0cfc312017-03-14 10:15:24 -07001073 if (unlikely((page_count(page) - pagecnt_bias) > 1))
Scott Peterson9b37c932017-02-09 23:43:30 -08001074 return false;
Scott Peterson9b37c932017-02-09 23:43:30 -08001075#else
Alexander Duyck98efd692017-04-05 07:51:01 -04001076#define I40E_LAST_OFFSET \
1077 (SKB_WITH_OVERHEAD(PAGE_SIZE) - I40E_RXBUFFER_2048)
1078 if (rx_buffer->page_offset > I40E_LAST_OFFSET)
Scott Peterson9b37c932017-02-09 23:43:30 -08001079 return false;
1080#endif
1081
Alexander Duyck17936682017-02-21 15:55:39 -08001082 /* If we have drained the page fragment pool we need to update
1083 * the pagecnt_bias and page count so that we fully restock the
1084 * number of references the driver holds.
1085 */
Alexander Duycka0cfc312017-03-14 10:15:24 -07001086 if (unlikely(!pagecnt_bias)) {
Alexander Duyck17936682017-02-21 15:55:39 -08001087 page_ref_add(page, USHRT_MAX);
1088 rx_buffer->pagecnt_bias = USHRT_MAX;
1089 }
Scott Peterson9b37c932017-02-09 23:43:30 -08001090
1091 return true;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001092}
1093
1094/**
1095 * i40e_add_rx_frag - Add contents of Rx buffer to sk_buff
1096 * @rx_ring: rx descriptor ring to transact packets on
1097 * @rx_buffer: buffer containing page to add
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001098 * @skb: sk_buff to place the data into
Alexander Duycka0cfc312017-03-14 10:15:24 -07001099 * @size: packet length from rx_desc
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001100 *
1101 * This function will add the data contained in rx_buffer->page to the skb.
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001102 * It will just attach the page as a frag to the skb.
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001103 *
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001104 * The function will then update the page offset.
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001105 **/
Alexander Duycka0cfc312017-03-14 10:15:24 -07001106static void i40e_add_rx_frag(struct i40e_ring *rx_ring,
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001107 struct i40e_rx_buffer *rx_buffer,
Alexander Duycka0cfc312017-03-14 10:15:24 -07001108 struct sk_buff *skb,
1109 unsigned int size)
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001110{
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001111#if (PAGE_SIZE < 8192)
Alexander Duyck98efd692017-04-05 07:51:01 -04001112 unsigned int truesize = i40e_rx_pg_size(rx_ring) / 2;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001113#else
Alexander Duyckca9ec082017-04-05 07:51:02 -04001114 unsigned int truesize = SKB_DATA_ALIGN(size + i40e_rx_offset(rx_ring));
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001115#endif
Scott Peterson9b37c932017-02-09 23:43:30 -08001116
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001117 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, rx_buffer->page,
1118 rx_buffer->page_offset, size, truesize);
Scott Peterson9b37c932017-02-09 23:43:30 -08001119
Alexander Duycka0cfc312017-03-14 10:15:24 -07001120 /* page is being used so we must update the page offset */
1121#if (PAGE_SIZE < 8192)
1122 rx_buffer->page_offset ^= truesize;
1123#else
1124 rx_buffer->page_offset += truesize;
1125#endif
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001126}
1127
1128/**
Alexander Duyck9a064122017-03-14 10:15:23 -07001129 * i40e_get_rx_buffer - Fetch Rx buffer and synchronize data for use
1130 * @rx_ring: rx descriptor ring to transact packets on
1131 * @size: size of buffer to add to skb
1132 *
1133 * This function will pull an Rx buffer from the ring and synchronize it
1134 * for use by the CPU.
1135 */
1136static struct i40e_rx_buffer *i40e_get_rx_buffer(struct i40e_ring *rx_ring,
1137 const unsigned int size)
1138{
1139 struct i40e_rx_buffer *rx_buffer;
1140
1141 rx_buffer = &rx_ring->rx_bi[rx_ring->next_to_clean];
1142 prefetchw(rx_buffer->page);
1143
1144 /* we are reusing so sync this buffer for CPU use */
1145 dma_sync_single_range_for_cpu(rx_ring->dev,
1146 rx_buffer->dma,
1147 rx_buffer->page_offset,
1148 size,
1149 DMA_FROM_DEVICE);
1150
Alexander Duycka0cfc312017-03-14 10:15:24 -07001151 /* We have pulled a buffer for use, so decrement pagecnt_bias */
1152 rx_buffer->pagecnt_bias--;
1153
Alexander Duyck9a064122017-03-14 10:15:23 -07001154 return rx_buffer;
1155}
1156
1157/**
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001158 * i40e_construct_skb - Allocate skb and populate it
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001159 * @rx_ring: rx descriptor ring to transact packets on
Alexander Duyck9a064122017-03-14 10:15:23 -07001160 * @rx_buffer: rx buffer to pull data from
Alexander Duyckd57c0e02017-03-14 10:15:22 -07001161 * @size: size of buffer to add to skb
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001162 *
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001163 * This function allocates an skb. It then populates it with the page
1164 * data from the current receive descriptor, taking care to set up the
1165 * skb correctly.
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001166 */
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001167static struct sk_buff *i40e_construct_skb(struct i40e_ring *rx_ring,
1168 struct i40e_rx_buffer *rx_buffer,
1169 unsigned int size)
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001170{
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001171 void *va = page_address(rx_buffer->page) + rx_buffer->page_offset;
1172#if (PAGE_SIZE < 8192)
Alexander Duyck98efd692017-04-05 07:51:01 -04001173 unsigned int truesize = i40e_rx_pg_size(rx_ring) / 2;
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001174#else
1175 unsigned int truesize = SKB_DATA_ALIGN(size);
1176#endif
1177 unsigned int headlen;
1178 struct sk_buff *skb;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001179
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001180 /* prefetch first cache line of first page */
1181 prefetch(va);
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001182#if L1_CACHE_BYTES < 128
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001183 prefetch(va + L1_CACHE_BYTES);
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001184#endif
1185
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001186 /* allocate a skb to store the frags */
1187 skb = __napi_alloc_skb(&rx_ring->q_vector->napi,
1188 I40E_RX_HDR_SIZE,
1189 GFP_ATOMIC | __GFP_NOWARN);
1190 if (unlikely(!skb))
1191 return NULL;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001192
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001193 /* Determine available headroom for copy */
1194 headlen = size;
1195 if (headlen > I40E_RX_HDR_SIZE)
1196 headlen = eth_get_headlen(va, I40E_RX_HDR_SIZE);
1197
1198 /* align pull length to size of long to optimize memcpy performance */
1199 memcpy(__skb_put(skb, headlen), va, ALIGN(headlen, sizeof(long)));
1200
1201 /* update all of the pointers */
1202 size -= headlen;
1203 if (size) {
1204 skb_add_rx_frag(skb, 0, rx_buffer->page,
1205 rx_buffer->page_offset + headlen,
1206 size, truesize);
1207
1208 /* buffer is used by skb, update page_offset */
1209#if (PAGE_SIZE < 8192)
1210 rx_buffer->page_offset ^= truesize;
1211#else
1212 rx_buffer->page_offset += truesize;
1213#endif
1214 } else {
1215 /* buffer is unused, reset bias back to rx_buffer */
1216 rx_buffer->pagecnt_bias++;
1217 }
Alexander Duycka0cfc312017-03-14 10:15:24 -07001218
1219 return skb;
1220}
1221
1222/**
Alexander Duyckf8b45b72017-04-05 07:51:03 -04001223 * i40e_build_skb - Build skb around an existing buffer
1224 * @rx_ring: Rx descriptor ring to transact packets on
1225 * @rx_buffer: Rx buffer to pull data from
1226 * @size: size of buffer to add to skb
1227 *
1228 * This function builds an skb around an existing Rx buffer, taking care
1229 * to set up the skb correctly and avoid any memcpy overhead.
1230 */
1231static struct sk_buff *i40e_build_skb(struct i40e_ring *rx_ring,
1232 struct i40e_rx_buffer *rx_buffer,
1233 unsigned int size)
1234{
1235 void *va = page_address(rx_buffer->page) + rx_buffer->page_offset;
1236#if (PAGE_SIZE < 8192)
1237 unsigned int truesize = i40e_rx_pg_size(rx_ring) / 2;
1238#else
Björn Töpel2aae9182017-05-15 06:52:00 +02001239 unsigned int truesize = SKB_DATA_ALIGN(sizeof(struct skb_shared_info)) +
1240 SKB_DATA_ALIGN(I40E_SKB_PAD + size);
Alexander Duyckf8b45b72017-04-05 07:51:03 -04001241#endif
1242 struct sk_buff *skb;
1243
1244 /* prefetch first cache line of first page */
1245 prefetch(va);
1246#if L1_CACHE_BYTES < 128
1247 prefetch(va + L1_CACHE_BYTES);
1248#endif
1249 /* build an skb around the page buffer */
1250 skb = build_skb(va - I40E_SKB_PAD, truesize);
1251 if (unlikely(!skb))
1252 return NULL;
1253
1254 /* update pointers within the skb to store the data */
1255 skb_reserve(skb, I40E_SKB_PAD);
1256 __skb_put(skb, size);
1257
1258 /* buffer is used by skb, update page_offset */
1259#if (PAGE_SIZE < 8192)
1260 rx_buffer->page_offset ^= truesize;
1261#else
1262 rx_buffer->page_offset += truesize;
1263#endif
1264
1265 return skb;
1266}
1267
1268/**
Alexander Duycka0cfc312017-03-14 10:15:24 -07001269 * i40e_put_rx_buffer - Clean up used buffer and either recycle or free
1270 * @rx_ring: rx descriptor ring to transact packets on
1271 * @rx_buffer: rx buffer to pull data from
1272 *
1273 * This function will clean up the contents of the rx_buffer. It will
Alan Brady11a350c2017-12-29 08:48:33 -05001274 * either recycle the buffer or unmap it and free the associated resources.
Alexander Duycka0cfc312017-03-14 10:15:24 -07001275 */
1276static void i40e_put_rx_buffer(struct i40e_ring *rx_ring,
1277 struct i40e_rx_buffer *rx_buffer)
1278{
1279 if (i40e_can_reuse_rx_page(rx_buffer)) {
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001280 /* hand second half of page back to the ring */
1281 i40e_reuse_rx_page(rx_ring, rx_buffer);
1282 rx_ring->rx_stats.page_reuse_count++;
1283 } else {
1284 /* we are not reusing the buffer so unmap it */
Alexander Duyck98efd692017-04-05 07:51:01 -04001285 dma_unmap_page_attrs(rx_ring->dev, rx_buffer->dma,
1286 i40e_rx_pg_size(rx_ring),
Alexander Duyck59605bc2017-01-30 12:29:35 -08001287 DMA_FROM_DEVICE, I40E_RX_DMA_ATTR);
Alexander Duyck17936682017-02-21 15:55:39 -08001288 __page_frag_cache_drain(rx_buffer->page,
1289 rx_buffer->pagecnt_bias);
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001290 }
1291
1292 /* clear contents of buffer_info */
1293 rx_buffer->page = NULL;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001294}
1295
1296/**
1297 * i40e_is_non_eop - process handling of non-EOP buffers
1298 * @rx_ring: Rx ring being processed
1299 * @rx_desc: Rx descriptor for current buffer
1300 * @skb: Current socket buffer containing buffer in progress
1301 *
1302 * This function updates next to clean. If the buffer is an EOP buffer
1303 * this function exits returning false, otherwise it will place the
1304 * sk_buff in the next buffer to be chained and return true indicating
1305 * that this is in fact a non-EOP buffer.
1306 **/
1307static bool i40e_is_non_eop(struct i40e_ring *rx_ring,
1308 union i40e_rx_desc *rx_desc,
1309 struct sk_buff *skb)
1310{
1311 u32 ntc = rx_ring->next_to_clean + 1;
1312
1313 /* fetch, update, and store next to clean */
1314 ntc = (ntc < rx_ring->count) ? ntc : 0;
1315 rx_ring->next_to_clean = ntc;
1316
1317 prefetch(I40E_RX_DESC(rx_ring, ntc));
1318
1319 /* if we are the last buffer then there is nothing else to do */
1320#define I40E_RXD_EOF BIT(I40E_RX_DESC_STATUS_EOF_SHIFT)
1321 if (likely(i40e_test_staterr(rx_desc, I40E_RXD_EOF)))
1322 return false;
1323
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001324 rx_ring->rx_stats.non_eop_descs++;
1325
1326 return true;
1327}
1328
1329/**
1330 * i40e_clean_rx_irq - Clean completed descriptors from Rx ring - bounce buf
1331 * @rx_ring: rx descriptor ring to transact packets on
1332 * @budget: Total limit on number of packets to process
1333 *
1334 * This function provides a "bounce buffer" approach to Rx interrupt
1335 * processing. The advantage to this is that on systems that have
1336 * expensive overhead for IOMMU access this provides a means of avoiding
1337 * it by maintaining the mapping of the page to the system.
1338 *
1339 * Returns amount of work completed
1340 **/
1341static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget)
Mitch Williamsa132af22015-01-24 09:58:35 +00001342{
1343 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
Scott Petersone72e5652017-02-09 23:40:25 -08001344 struct sk_buff *skb = rx_ring->skb;
Mitch Williamsa132af22015-01-24 09:58:35 +00001345 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -08001346 bool failure = false;
Mitch Williamsa132af22015-01-24 09:58:35 +00001347
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07001348 while (likely(total_rx_packets < (unsigned int)budget)) {
Alexander Duyck9a064122017-03-14 10:15:23 -07001349 struct i40e_rx_buffer *rx_buffer;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001350 union i40e_rx_desc *rx_desc;
Alexander Duyckd57c0e02017-03-14 10:15:22 -07001351 unsigned int size;
Mitch Williamsa132af22015-01-24 09:58:35 +00001352 u16 vlan_tag;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001353 u8 rx_ptype;
1354 u64 qword;
1355
Mitch Williamsa132af22015-01-24 09:58:35 +00001356 /* return some buffers to hardware, one at a time is too slow */
1357 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
Jesse Brandeburgc2e245a2016-01-13 16:51:46 -08001358 failure = failure ||
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001359 i40evf_alloc_rx_buffers(rx_ring, cleaned_count);
Mitch Williamsa132af22015-01-24 09:58:35 +00001360 cleaned_count = 0;
1361 }
1362
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001363 rx_desc = I40E_RX_DESC(rx_ring, rx_ring->next_to_clean);
1364
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001365 /* status_error_len will always be zero for unused descriptors
1366 * because it's cleared in cleanup, and overlaps with hdr_addr
1367 * which is always zero because packet split isn't used, if the
Alexander Duyckd57c0e02017-03-14 10:15:22 -07001368 * hardware wrote DD then the length will be non-zero
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001369 */
Alexander Duyckd57c0e02017-03-14 10:15:22 -07001370 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001371
Mitch Williamsa132af22015-01-24 09:58:35 +00001372 /* This memory barrier is needed to keep us from reading
Alexander Duyckd57c0e02017-03-14 10:15:22 -07001373 * any other fields out of the rx_desc until we have
1374 * verified the descriptor has been written back.
Mitch Williamsa132af22015-01-24 09:58:35 +00001375 */
Alexander Duyck67317162015-04-08 18:49:43 -07001376 dma_rmb();
Mitch Williamsa132af22015-01-24 09:58:35 +00001377
Alexander Duyck0e626ff2017-04-10 05:18:43 -04001378 size = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1379 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1380 if (!size)
1381 break;
1382
Scott Petersoned0980c2017-04-13 04:45:44 -04001383 i40e_trace(clean_rx_irq, rx_ring, rx_desc, skb);
Alexander Duyck9a064122017-03-14 10:15:23 -07001384 rx_buffer = i40e_get_rx_buffer(rx_ring, size);
1385
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001386 /* retrieve a buffer from the ring */
1387 if (skb)
1388 i40e_add_rx_frag(rx_ring, rx_buffer, skb, size);
Alexander Duyckf8b45b72017-04-05 07:51:03 -04001389 else if (ring_uses_build_skb(rx_ring))
1390 skb = i40e_build_skb(rx_ring, rx_buffer, size);
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001391 else
1392 skb = i40e_construct_skb(rx_ring, rx_buffer, size);
1393
1394 /* exit if we failed to retrieve a buffer */
1395 if (!skb) {
1396 rx_ring->rx_stats.alloc_buff_failed++;
1397 rx_buffer->pagecnt_bias++;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001398 break;
Alexander Duyckfa2343e2017-03-14 10:15:25 -07001399 }
Mitch Williamsa132af22015-01-24 09:58:35 +00001400
Alexander Duycka0cfc312017-03-14 10:15:24 -07001401 i40e_put_rx_buffer(rx_ring, rx_buffer);
Mitch Williamsa132af22015-01-24 09:58:35 +00001402 cleaned_count++;
1403
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001404 if (i40e_is_non_eop(rx_ring, rx_desc, skb))
Mitch Williamsa132af22015-01-24 09:58:35 +00001405 continue;
Mitch Williamsa132af22015-01-24 09:58:35 +00001406
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001407 /* ERR_MASK will only have valid bits if EOP set, and
1408 * what we are doing here is actually checking
1409 * I40E_RX_DESC_ERROR_RXE_SHIFT, since it is the zeroth bit in
1410 * the error field
1411 */
1412 if (unlikely(i40e_test_staterr(rx_desc, BIT(I40E_RXD_QW1_ERROR_SHIFT)))) {
Mitch Williamsa132af22015-01-24 09:58:35 +00001413 dev_kfree_skb_any(skb);
Alexander Duyck741b8b82017-02-21 15:55:41 -08001414 skb = NULL;
Mitch Williamsa132af22015-01-24 09:58:35 +00001415 continue;
Greg Rose7f12ad72013-12-21 06:12:51 +00001416 }
1417
Scott Petersone72e5652017-02-09 23:40:25 -08001418 if (i40e_cleanup_headers(rx_ring, skb)) {
1419 skb = NULL;
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001420 continue;
Scott Petersone72e5652017-02-09 23:40:25 -08001421 }
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001422
Greg Rose7f12ad72013-12-21 06:12:51 +00001423 /* probably a little skewed due to removing CRC */
1424 total_rx_bytes += skb->len;
Greg Rose7f12ad72013-12-21 06:12:51 +00001425
Alexander Duyck99dad8b2016-09-27 11:28:50 -07001426 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
1427 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1428 I40E_RXD_QW1_PTYPE_SHIFT;
1429
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001430 /* populate checksum, VLAN, and protocol */
1431 i40evf_process_skb_fields(rx_ring, rx_desc, skb, rx_ptype);
Greg Rose7f12ad72013-12-21 06:12:51 +00001432
Greg Rose7f12ad72013-12-21 06:12:51 +00001433
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001434 vlan_tag = (qword & BIT(I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)) ?
1435 le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1) : 0;
1436
Scott Petersoned0980c2017-04-13 04:45:44 -04001437 i40e_trace(clean_rx_irq_rx, rx_ring, rx_desc, skb);
Greg Rose7f12ad72013-12-21 06:12:51 +00001438 i40e_receive_skb(rx_ring, skb, vlan_tag);
Scott Petersone72e5652017-02-09 23:40:25 -08001439 skb = NULL;
Greg Rose7f12ad72013-12-21 06:12:51 +00001440
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001441 /* update budget accounting */
1442 total_rx_packets++;
1443 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001444
Scott Petersone72e5652017-02-09 23:40:25 -08001445 rx_ring->skb = skb;
1446
Greg Rose7f12ad72013-12-21 06:12:51 +00001447 u64_stats_update_begin(&rx_ring->syncp);
1448 rx_ring->stats.packets += total_rx_packets;
1449 rx_ring->stats.bytes += total_rx_bytes;
1450 u64_stats_update_end(&rx_ring->syncp);
1451 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1452 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1453
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001454 /* guarantee a trip back through this routine if there was a failure */
Jesse Brandeburgb85c94b2017-06-20 15:16:59 -07001455 return failure ? budget : (int)total_rx_packets;
Greg Rose7f12ad72013-12-21 06:12:51 +00001456}
1457
Alexander Duyck92418fb2017-12-29 08:51:08 -05001458static inline u32 i40e_buildreg_itr(const int type, u16 itr)
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001459{
1460 u32 val;
1461
Alexander Duyck4ff17922017-12-29 08:50:55 -05001462 /* We don't bother with setting the CLEARPBA bit as the data sheet
1463 * points out doing so is "meaningless since it was already
1464 * auto-cleared". The auto-clearing happens when the interrupt is
1465 * asserted.
1466 *
1467 * Hardware errata 28 for also indicates that writing to a
1468 * xxINT_DYN_CTLx CSR with INTENA_MSK (bit 31) set to 0 will clear
1469 * an event in the PBA anyway so we need to rely on the automask
1470 * to hold pending events for us until the interrupt is re-enabled
Alexander Duyck92418fb2017-12-29 08:51:08 -05001471 *
1472 * The itr value is reported in microseconds, and the register
1473 * value is recorded in 2 microsecond units. For this reason we
1474 * only need to shift by the interval shift - 1 instead of the
1475 * full value.
Alexander Duyck4ff17922017-12-29 08:50:55 -05001476 */
Alexander Duyck92418fb2017-12-29 08:51:08 -05001477 itr &= I40E_ITR_MASK;
1478
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001479 val = I40E_VFINT_DYN_CTLN1_INTENA_MASK |
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001480 (type << I40E_VFINT_DYN_CTLN1_ITR_INDX_SHIFT) |
Alexander Duyck92418fb2017-12-29 08:51:08 -05001481 (itr << (I40E_VFINT_DYN_CTLN1_INTERVAL_SHIFT - 1));
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001482
1483 return val;
1484}
1485
1486/* a small macro to shorten up some long lines */
1487#define INTREG I40E_VFINT_DYN_CTLN1
1488
Greg Rose7f12ad72013-12-21 06:12:51 +00001489/**
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001490 * i40e_update_enable_itr - Update itr and re-enable MSIX interrupt
1491 * @vsi: the VSI we care about
1492 * @q_vector: q_vector for which itr is being updated and interrupt enabled
1493 *
1494 **/
1495static inline void i40e_update_enable_itr(struct i40e_vsi *vsi,
1496 struct i40e_q_vector *q_vector)
1497{
1498 struct i40e_hw *hw = &vsi->back->hw;
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001499 bool rx = false, tx = false;
Alexander Duyck556fdfd2017-12-29 08:51:25 -05001500 u32 intval;
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001501
Alexander Duyck71dc3712017-12-29 08:49:53 -05001502 /* avoid dynamic calculation if in countdown mode */
1503 if (q_vector->itr_countdown > 0)
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001504 goto enable_int;
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001505
Alexander Duyck71dc3712017-12-29 08:49:53 -05001506 /* these will return false if dynamic mode is disabled */
1507 rx = i40e_set_new_dynamic_itr(&q_vector->rx);
1508 tx = i40e_set_new_dynamic_itr(&q_vector->tx);
Jesse Brandeburg4eeb1ff2015-11-18 17:35:42 -08001509
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001510 if (rx || tx) {
1511 /* get the higher of the two ITR adjustments and
1512 * use the same value for both ITR registers
1513 * when in adaptive mode (Rx and/or Tx)
1514 */
Alexander Duyck556fdfd2017-12-29 08:51:25 -05001515 u16 itr = max(q_vector->tx.target_itr,
1516 q_vector->rx.target_itr);
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001517
Alexander Duyck556fdfd2017-12-29 08:51:25 -05001518 q_vector->tx.target_itr = itr;
1519 q_vector->rx.target_itr = itr;
Jesse Brandeburg8f5e39c2015-09-28 14:16:51 -04001520 }
1521
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001522enable_int:
Alexander Duyck556fdfd2017-12-29 08:51:25 -05001523 if (q_vector->rx.target_itr != q_vector->rx.current_itr) {
1524 intval = i40e_buildreg_itr(I40E_RX_ITR,
1525 q_vector->rx.target_itr);
1526 q_vector->rx.current_itr = q_vector->rx.target_itr;
1527
1528 if (q_vector->tx.target_itr != q_vector->tx.current_itr) {
1529 /* set the INTENA_MSK_MASK so that this first write
1530 * won't actually enable the interrupt, instead just
1531 * updating the ITR (it's bit 31 PF and VF)
1532 *
1533 * don't check _DOWN because interrupt isn't being
1534 * enabled
1535 */
1536 wr32(hw, INTREG(q_vector->reg_idx),
1537 intval | BIT(31));
1538 /* now that Rx is done process Tx update */
1539 goto update_tx;
1540 }
1541 } else if (q_vector->tx.target_itr != q_vector->tx.current_itr) {
1542update_tx:
1543 intval = i40e_buildreg_itr(I40E_TX_ITR,
1544 q_vector->tx.target_itr);
1545 q_vector->tx.current_itr = q_vector->tx.target_itr;
1546 } else {
1547 intval = i40e_buildreg_itr(I40E_ITR_NONE, 0);
1548 }
1549
Jacob Keller0da36b92017-04-19 09:25:55 -04001550 if (!test_bit(__I40E_VSI_DOWN, vsi->state))
Alexander Duyck556fdfd2017-12-29 08:51:25 -05001551 wr32(hw, INTREG(q_vector->reg_idx), intval);
Jesse Brandeburgee2319c2015-09-28 14:16:54 -04001552
1553 if (q_vector->itr_countdown)
1554 q_vector->itr_countdown--;
1555 else
1556 q_vector->itr_countdown = ITR_COUNTDOWN_START;
Carolyn Wybornyde32e3e2015-06-10 13:42:07 -04001557}
1558
1559/**
Greg Rose7f12ad72013-12-21 06:12:51 +00001560 * i40evf_napi_poll - NAPI polling Rx/Tx cleanup routine
1561 * @napi: napi struct with our devices info in it
1562 * @budget: amount of work driver is allowed to do this pass, in packets
1563 *
1564 * This function will clean all queues associated with a q_vector.
1565 *
1566 * Returns the amount of work done
1567 **/
1568int i40evf_napi_poll(struct napi_struct *napi, int budget)
1569{
1570 struct i40e_q_vector *q_vector =
1571 container_of(napi, struct i40e_q_vector, napi);
1572 struct i40e_vsi *vsi = q_vector->vsi;
1573 struct i40e_ring *ring;
1574 bool clean_complete = true;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001575 bool arm_wb = false;
Greg Rose7f12ad72013-12-21 06:12:51 +00001576 int budget_per_ring;
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001577 int work_done = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001578
Jacob Keller0da36b92017-04-19 09:25:55 -04001579 if (test_bit(__I40E_VSI_DOWN, vsi->state)) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001580 napi_complete(napi);
1581 return 0;
1582 }
1583
1584 /* Since the actual Tx work is minimal, we can give the Tx a larger
1585 * budget and be more aggressive about cleaning up the Tx descriptors.
1586 */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001587 i40e_for_each_ring(ring, q_vector->tx) {
Alexander Duycka619afe2016-03-07 09:30:03 -08001588 if (!i40e_clean_tx_irq(vsi, ring, budget)) {
Alexander Duyckf2edaaa2016-03-07 09:29:57 -08001589 clean_complete = false;
1590 continue;
1591 }
1592 arm_wb |= ring->arm_wb;
Jesse Brandeburg0deda862015-07-23 16:54:34 -04001593 ring->arm_wb = false;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001594 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001595
Alexander Duyckc67cace2015-09-24 09:04:26 -07001596 /* Handle case where we are called by netpoll with a budget of 0 */
1597 if (budget <= 0)
1598 goto tx_only;
1599
Greg Rose7f12ad72013-12-21 06:12:51 +00001600 /* We attempt to distribute budget to each Rx queue fairly, but don't
1601 * allow the budget to go below 1 because that would exit polling early.
1602 */
1603 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
1604
Mitch Williamsa132af22015-01-24 09:58:35 +00001605 i40e_for_each_ring(ring, q_vector->rx) {
Jesse Brandeburgab9ad982016-04-18 11:33:46 -07001606 int cleaned = i40e_clean_rx_irq(ring, budget_per_ring);
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001607
1608 work_done += cleaned;
Alexander Duyckf2edaaa2016-03-07 09:29:57 -08001609 /* if we clean as many as budgeted, we must not be done */
1610 if (cleaned >= budget_per_ring)
1611 clean_complete = false;
Mitch Williamsa132af22015-01-24 09:58:35 +00001612 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001613
1614 /* If work not completed, return budget and polling will return */
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001615 if (!clean_complete) {
Alan Brady96db7762016-09-14 16:24:38 -07001616 int cpu_id = smp_processor_id();
1617
1618 /* It is possible that the interrupt affinity has changed but,
1619 * if the cpu is pegged at 100%, polling will never exit while
1620 * traffic continues and the interrupt will be stuck on this
1621 * cpu. We check to make sure affinity is correct before we
1622 * continue to poll, otherwise we must stop polling so the
1623 * interrupt can move to the correct cpu.
1624 */
Jacob Keller6d977722017-07-14 09:10:11 -04001625 if (!cpumask_test_cpu(cpu_id, &q_vector->affinity_mask)) {
1626 /* Tell napi that we are done polling */
1627 napi_complete_done(napi, work_done);
1628
1629 /* Force an interrupt */
1630 i40evf_force_wb(vsi, q_vector);
1631
1632 /* Return budget-1 so that polling stops */
1633 return budget - 1;
Anjali Singhai Jain164c9f52015-10-21 19:47:08 -04001634 }
Jacob Keller6d977722017-07-14 09:10:11 -04001635tx_only:
1636 if (arm_wb) {
1637 q_vector->tx.ring[0].tx_stats.tx_force_wb++;
1638 i40e_enable_wb_on_itr(vsi, q_vector);
1639 }
1640 return budget;
Anjali Singhai Jainc29af372015-01-10 01:07:19 +00001641 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001642
Anjali Singhai Jain8e0764b2015-06-05 12:20:30 -04001643 if (vsi->back->flags & I40E_TXR_FLAGS_WB_ON_ITR)
1644 q_vector->arm_wb_state = false;
1645
Greg Rose7f12ad72013-12-21 06:12:51 +00001646 /* Work is done so exit the polling mode and re-enable the interrupt */
Jesse Brandeburg32b3e082015-09-24 16:35:47 -07001647 napi_complete_done(napi, work_done);
Alan Brady96db7762016-09-14 16:24:38 -07001648
Jacob Keller6d977722017-07-14 09:10:11 -04001649 i40e_update_enable_itr(vsi, q_vector);
Alan Brady96db7762016-09-14 16:24:38 -07001650
Alexander Duyck6beb84a2016-11-08 13:05:16 -08001651 return min(work_done, budget - 1);
Greg Rose7f12ad72013-12-21 06:12:51 +00001652}
1653
1654/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001655 * i40evf_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
Greg Rose7f12ad72013-12-21 06:12:51 +00001656 * @skb: send buffer
1657 * @tx_ring: ring to send buffer on
1658 * @flags: the tx flags to be set
1659 *
1660 * Checks the skb and set up correspondingly several generic transmit flags
1661 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1662 *
1663 * Returns error code indicate the frame should be dropped upon error and the
1664 * otherwise returns 0 to indicate the flags has been set properly.
1665 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04001666static inline int i40evf_tx_prepare_vlan_flags(struct sk_buff *skb,
1667 struct i40e_ring *tx_ring,
1668 u32 *flags)
Greg Rose7f12ad72013-12-21 06:12:51 +00001669{
1670 __be16 protocol = skb->protocol;
1671 u32 tx_flags = 0;
1672
Greg Rose31eaacc2015-03-31 00:45:03 -07001673 if (protocol == htons(ETH_P_8021Q) &&
1674 !(tx_ring->netdev->features & NETIF_F_HW_VLAN_CTAG_TX)) {
1675 /* When HW VLAN acceleration is turned off by the user the
1676 * stack sets the protocol to 8021q so that the driver
1677 * can take any steps required to support the SW only
1678 * VLAN handling. In our case the driver doesn't need
1679 * to take any further steps so just set the protocol
1680 * to the encapsulated ethertype.
1681 */
1682 skb->protocol = vlan_get_protocol(skb);
1683 goto out;
1684 }
1685
Greg Rose7f12ad72013-12-21 06:12:51 +00001686 /* if we have a HW VLAN tag being added, default to the HW one */
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01001687 if (skb_vlan_tag_present(skb)) {
1688 tx_flags |= skb_vlan_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001689 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1690 /* else if it is a SW VLAN, check the next protocol and store the tag */
1691 } else if (protocol == htons(ETH_P_8021Q)) {
1692 struct vlan_hdr *vhdr, _vhdr;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04001693
Greg Rose7f12ad72013-12-21 06:12:51 +00001694 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1695 if (!vhdr)
1696 return -EINVAL;
1697
1698 protocol = vhdr->h_vlan_encapsulated_proto;
1699 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1700 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1701 }
1702
Greg Rose31eaacc2015-03-31 00:45:03 -07001703out:
Greg Rose7f12ad72013-12-21 06:12:51 +00001704 *flags = tx_flags;
1705 return 0;
1706}
1707
1708/**
1709 * i40e_tso - set up the tso context descriptor
Alexander Duyck52ea3e82016-11-28 16:05:59 -08001710 * @first: pointer to first Tx buffer for xmit
Greg Rose7f12ad72013-12-21 06:12:51 +00001711 * @hdr_len: ptr to the size of the packet header
Shannon Nelson9c883bd2015-10-21 19:47:02 -04001712 * @cd_type_cmd_tso_mss: Quad Word 1
Greg Rose7f12ad72013-12-21 06:12:51 +00001713 *
1714 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1715 **/
Alexander Duyck52ea3e82016-11-28 16:05:59 -08001716static int i40e_tso(struct i40e_tx_buffer *first, u8 *hdr_len,
1717 u64 *cd_type_cmd_tso_mss)
Greg Rose7f12ad72013-12-21 06:12:51 +00001718{
Alexander Duyck52ea3e82016-11-28 16:05:59 -08001719 struct sk_buff *skb = first->skb;
Alexander Duyck03f9d6a2016-01-24 21:16:20 -08001720 u64 cd_cmd, cd_tso_len, cd_mss;
Alexander Duyckc7770192016-01-24 21:16:35 -08001721 union {
1722 struct iphdr *v4;
1723 struct ipv6hdr *v6;
1724 unsigned char *hdr;
1725 } ip;
Alexander Duyckc49a7bc2016-01-24 21:16:28 -08001726 union {
1727 struct tcphdr *tcp;
Alexander Duyck54532052016-01-24 21:17:29 -08001728 struct udphdr *udp;
Alexander Duyckc49a7bc2016-01-24 21:16:28 -08001729 unsigned char *hdr;
1730 } l4;
1731 u32 paylen, l4_offset;
Alexander Duyck52ea3e82016-11-28 16:05:59 -08001732 u16 gso_segs, gso_size;
Greg Rose7f12ad72013-12-21 06:12:51 +00001733 int err;
Greg Rose7f12ad72013-12-21 06:12:51 +00001734
Shannon Nelsone9f65632016-01-04 10:33:04 -08001735 if (skb->ip_summed != CHECKSUM_PARTIAL)
1736 return 0;
1737
Greg Rose7f12ad72013-12-21 06:12:51 +00001738 if (!skb_is_gso(skb))
1739 return 0;
1740
Francois Romieufe6d4aa2014-03-30 03:14:53 +00001741 err = skb_cow_head(skb, 0);
1742 if (err < 0)
1743 return err;
Greg Rose7f12ad72013-12-21 06:12:51 +00001744
Alexander Duyckc7770192016-01-24 21:16:35 -08001745 ip.hdr = skb_network_header(skb);
1746 l4.hdr = skb_transport_header(skb);
Anjali Singhai85e76d02015-02-21 06:44:16 +00001747
Alexander Duyckc7770192016-01-24 21:16:35 -08001748 /* initialize outer IP header fields */
1749 if (ip.v4->version == 4) {
1750 ip.v4->tot_len = 0;
1751 ip.v4->check = 0;
Alexander Duyckc49a7bc2016-01-24 21:16:28 -08001752 } else {
Alexander Duyckc7770192016-01-24 21:16:35 -08001753 ip.v6->payload_len = 0;
1754 }
1755
Alexander Duyck577389a2016-04-02 00:06:56 -07001756 if (skb_shinfo(skb)->gso_type & (SKB_GSO_GRE |
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04001757 SKB_GSO_GRE_CSUM |
Tom Herbert7e133182016-05-18 09:06:10 -07001758 SKB_GSO_IPXIP4 |
Alexander Duyckbf2d1df2016-05-18 10:44:53 -07001759 SKB_GSO_IPXIP6 |
Alexander Duyck577389a2016-04-02 00:06:56 -07001760 SKB_GSO_UDP_TUNNEL |
Alexander Duyck54532052016-01-24 21:17:29 -08001761 SKB_GSO_UDP_TUNNEL_CSUM)) {
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04001762 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
1763 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM)) {
1764 l4.udp->len = 0;
1765
Alexander Duyck54532052016-01-24 21:17:29 -08001766 /* determine offset of outer transport header */
1767 l4_offset = l4.hdr - skb->data;
1768
1769 /* remove payload length from outer checksum */
Alexander Duyck24d41e52016-03-18 16:06:47 -07001770 paylen = skb->len - l4_offset;
Jacob Kellerb9c015d2016-12-12 15:44:17 -08001771 csum_replace_by_diff(&l4.udp->check,
1772 (__force __wsum)htonl(paylen));
Alexander Duyck54532052016-01-24 21:17:29 -08001773 }
1774
Alexander Duyckc7770192016-01-24 21:16:35 -08001775 /* reset pointers to inner headers */
1776 ip.hdr = skb_inner_network_header(skb);
1777 l4.hdr = skb_inner_transport_header(skb);
1778
1779 /* initialize inner IP header fields */
1780 if (ip.v4->version == 4) {
1781 ip.v4->tot_len = 0;
1782 ip.v4->check = 0;
1783 } else {
1784 ip.v6->payload_len = 0;
1785 }
Greg Rose7f12ad72013-12-21 06:12:51 +00001786 }
1787
Alexander Duyckc49a7bc2016-01-24 21:16:28 -08001788 /* determine offset of inner transport header */
1789 l4_offset = l4.hdr - skb->data;
1790
1791 /* remove payload length from inner checksum */
Alexander Duyck24d41e52016-03-18 16:06:47 -07001792 paylen = skb->len - l4_offset;
Jacob Kellerb9c015d2016-12-12 15:44:17 -08001793 csum_replace_by_diff(&l4.tcp->check, (__force __wsum)htonl(paylen));
Alexander Duyckc49a7bc2016-01-24 21:16:28 -08001794
1795 /* compute length of segmentation header */
1796 *hdr_len = (l4.tcp->doff * 4) + l4_offset;
Greg Rose7f12ad72013-12-21 06:12:51 +00001797
Alexander Duyck52ea3e82016-11-28 16:05:59 -08001798 /* pull values out of skb_shinfo */
1799 gso_size = skb_shinfo(skb)->gso_size;
1800 gso_segs = skb_shinfo(skb)->gso_segs;
1801
1802 /* update GSO size and bytecount with header size */
1803 first->gso_segs = gso_segs;
1804 first->bytecount += (first->gso_segs - 1) * *hdr_len;
1805
Greg Rose7f12ad72013-12-21 06:12:51 +00001806 /* find the field values */
1807 cd_cmd = I40E_TX_CTX_DESC_TSO;
1808 cd_tso_len = skb->len - *hdr_len;
Alexander Duyck52ea3e82016-11-28 16:05:59 -08001809 cd_mss = gso_size;
Alexander Duyck03f9d6a2016-01-24 21:16:20 -08001810 *cd_type_cmd_tso_mss |= (cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
1811 (cd_tso_len << I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
1812 (cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
Greg Rose7f12ad72013-12-21 06:12:51 +00001813 return 1;
1814}
1815
1816/**
1817 * i40e_tx_enable_csum - Enable Tx checksum offloads
1818 * @skb: send buffer
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001819 * @tx_flags: pointer to Tx flags currently set
Greg Rose7f12ad72013-12-21 06:12:51 +00001820 * @td_cmd: Tx descriptor command bits to set
1821 * @td_offset: Tx descriptor header offsets to set
Alexander Duyck529f1f62016-01-24 21:17:10 -08001822 * @tx_ring: Tx descriptor ring
Greg Rose7f12ad72013-12-21 06:12:51 +00001823 * @cd_tunneling: ptr to context desc bits
1824 **/
Alexander Duyck529f1f62016-01-24 21:17:10 -08001825static int i40e_tx_enable_csum(struct sk_buff *skb, u32 *tx_flags,
1826 u32 *td_cmd, u32 *td_offset,
1827 struct i40e_ring *tx_ring,
1828 u32 *cd_tunneling)
Greg Rose7f12ad72013-12-21 06:12:51 +00001829{
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001830 union {
1831 struct iphdr *v4;
1832 struct ipv6hdr *v6;
1833 unsigned char *hdr;
1834 } ip;
1835 union {
1836 struct tcphdr *tcp;
1837 struct udphdr *udp;
1838 unsigned char *hdr;
1839 } l4;
Alexander Duycka3fd9d82016-01-24 21:16:54 -08001840 unsigned char *exthdr;
Jesse Brandeburgd1bd7432016-04-01 03:56:04 -07001841 u32 offset, cmd = 0;
Alexander Duycka3fd9d82016-01-24 21:16:54 -08001842 __be16 frag_off;
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001843 u8 l4_proto = 0;
1844
Alexander Duyck529f1f62016-01-24 21:17:10 -08001845 if (skb->ip_summed != CHECKSUM_PARTIAL)
1846 return 0;
1847
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001848 ip.hdr = skb_network_header(skb);
1849 l4.hdr = skb_transport_header(skb);
Greg Rose7f12ad72013-12-21 06:12:51 +00001850
Alexander Duyck475b4202016-01-24 21:17:01 -08001851 /* compute outer L2 header size */
1852 offset = ((ip.hdr - skb->data) / 2) << I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1853
Greg Rose7f12ad72013-12-21 06:12:51 +00001854 if (skb->encapsulation) {
Jesse Brandeburgd1bd7432016-04-01 03:56:04 -07001855 u32 tunnel = 0;
Alexander Duycka0064722016-01-24 21:16:48 -08001856 /* define outer network header type */
1857 if (*tx_flags & I40E_TX_FLAGS_IPV4) {
Alexander Duyck475b4202016-01-24 21:17:01 -08001858 tunnel |= (*tx_flags & I40E_TX_FLAGS_TSO) ?
1859 I40E_TX_CTX_EXT_IP_IPV4 :
1860 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1861
Alexander Duycka0064722016-01-24 21:16:48 -08001862 l4_proto = ip.v4->protocol;
1863 } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
Alexander Duyck475b4202016-01-24 21:17:01 -08001864 tunnel |= I40E_TX_CTX_EXT_IP_IPV6;
Alexander Duycka3fd9d82016-01-24 21:16:54 -08001865
1866 exthdr = ip.hdr + sizeof(*ip.v6);
Alexander Duycka0064722016-01-24 21:16:48 -08001867 l4_proto = ip.v6->nexthdr;
Alexander Duycka3fd9d82016-01-24 21:16:54 -08001868 if (l4.hdr != exthdr)
1869 ipv6_skip_exthdr(skb, exthdr - skb->data,
1870 &l4_proto, &frag_off);
Alexander Duycka0064722016-01-24 21:16:48 -08001871 }
1872
1873 /* define outer transport */
1874 switch (l4_proto) {
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001875 case IPPROTO_UDP:
Alexander Duyck475b4202016-01-24 21:17:01 -08001876 tunnel |= I40E_TXD_CTX_UDP_TUNNELING;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001877 *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL;
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001878 break;
Alexander Duycka0064722016-01-24 21:16:48 -08001879 case IPPROTO_GRE:
Alexander Duyck475b4202016-01-24 21:17:01 -08001880 tunnel |= I40E_TXD_CTX_GRE_TUNNELING;
Alexander Duycka0064722016-01-24 21:16:48 -08001881 *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL;
1882 break;
Alexander Duyck577389a2016-04-02 00:06:56 -07001883 case IPPROTO_IPIP:
1884 case IPPROTO_IPV6:
1885 *tx_flags |= I40E_TX_FLAGS_VXLAN_TUNNEL;
1886 l4.hdr = skb_inner_network_header(skb);
1887 break;
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001888 default:
Alexander Duyck529f1f62016-01-24 21:17:10 -08001889 if (*tx_flags & I40E_TX_FLAGS_TSO)
1890 return -1;
1891
1892 skb_checksum_help(skb);
1893 return 0;
Anjali Singhai Jain45991202015-02-27 09:15:29 +00001894 }
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001895
Alexander Duyck577389a2016-04-02 00:06:56 -07001896 /* compute outer L3 header size */
1897 tunnel |= ((l4.hdr - ip.hdr) / 4) <<
1898 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT;
1899
1900 /* switch IP header pointer from outer to inner header */
1901 ip.hdr = skb_inner_network_header(skb);
1902
Alexander Duyck475b4202016-01-24 21:17:01 -08001903 /* compute tunnel header size */
1904 tunnel |= ((ip.hdr - l4.hdr) / 2) <<
1905 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
1906
Alexander Duyck54532052016-01-24 21:17:29 -08001907 /* indicate if we need to offload outer UDP header */
1908 if ((*tx_flags & I40E_TX_FLAGS_TSO) &&
Alexander Duyck1c7b4a22016-04-14 17:19:25 -04001909 !(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL) &&
Alexander Duyck54532052016-01-24 21:17:29 -08001910 (skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL_CSUM))
1911 tunnel |= I40E_TXD_CTX_QW0_L4T_CS_MASK;
1912
Alexander Duyck475b4202016-01-24 21:17:01 -08001913 /* record tunnel offload values */
1914 *cd_tunneling |= tunnel;
1915
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001916 /* switch L4 header pointer from outer to inner */
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001917 l4.hdr = skb_inner_transport_header(skb);
Alexander Duycka0064722016-01-24 21:16:48 -08001918 l4_proto = 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001919
Alexander Duycka0064722016-01-24 21:16:48 -08001920 /* reset type as we transition from outer to inner headers */
1921 *tx_flags &= ~(I40E_TX_FLAGS_IPV4 | I40E_TX_FLAGS_IPV6);
1922 if (ip.v4->version == 4)
1923 *tx_flags |= I40E_TX_FLAGS_IPV4;
1924 if (ip.v6->version == 6)
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001925 *tx_flags |= I40E_TX_FLAGS_IPV6;
Greg Rose7f12ad72013-12-21 06:12:51 +00001926 }
1927
1928 /* Enable IP checksum offloads */
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001929 if (*tx_flags & I40E_TX_FLAGS_IPV4) {
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001930 l4_proto = ip.v4->protocol;
Greg Rose7f12ad72013-12-21 06:12:51 +00001931 /* the stack computes the IP header already, the only time we
1932 * need the hardware to recompute it is in the case of TSO.
1933 */
Alexander Duyck475b4202016-01-24 21:17:01 -08001934 cmd |= (*tx_flags & I40E_TX_FLAGS_TSO) ?
1935 I40E_TX_DESC_CMD_IIPT_IPV4_CSUM :
1936 I40E_TX_DESC_CMD_IIPT_IPV4;
Anjali Singhai Jain89232c32015-04-16 20:06:00 -04001937 } else if (*tx_flags & I40E_TX_FLAGS_IPV6) {
Alexander Duyck475b4202016-01-24 21:17:01 -08001938 cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
Alexander Duycka3fd9d82016-01-24 21:16:54 -08001939
1940 exthdr = ip.hdr + sizeof(*ip.v6);
1941 l4_proto = ip.v6->nexthdr;
1942 if (l4.hdr != exthdr)
1943 ipv6_skip_exthdr(skb, exthdr - skb->data,
1944 &l4_proto, &frag_off);
Greg Rose7f12ad72013-12-21 06:12:51 +00001945 }
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001946
Alexander Duyck475b4202016-01-24 21:17:01 -08001947 /* compute inner L3 header size */
1948 offset |= ((l4.hdr - ip.hdr) / 4) << I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001949
1950 /* Enable L4 checksum offloads */
Alexander Duyckb96b78f2016-01-24 21:16:42 -08001951 switch (l4_proto) {
Greg Rose7f12ad72013-12-21 06:12:51 +00001952 case IPPROTO_TCP:
1953 /* enable checksum offloads */
Alexander Duyck475b4202016-01-24 21:17:01 -08001954 cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1955 offset |= l4.tcp->doff << I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001956 break;
1957 case IPPROTO_SCTP:
1958 /* enable SCTP checksum offload */
Alexander Duyck475b4202016-01-24 21:17:01 -08001959 cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
1960 offset |= (sizeof(struct sctphdr) >> 2) <<
1961 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001962 break;
1963 case IPPROTO_UDP:
1964 /* enable UDP checksum offload */
Alexander Duyck475b4202016-01-24 21:17:01 -08001965 cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
1966 offset |= (sizeof(struct udphdr) >> 2) <<
1967 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
Greg Rose7f12ad72013-12-21 06:12:51 +00001968 break;
1969 default:
Alexander Duyck529f1f62016-01-24 21:17:10 -08001970 if (*tx_flags & I40E_TX_FLAGS_TSO)
1971 return -1;
1972 skb_checksum_help(skb);
1973 return 0;
Greg Rose7f12ad72013-12-21 06:12:51 +00001974 }
Alexander Duyck475b4202016-01-24 21:17:01 -08001975
1976 *td_cmd |= cmd;
1977 *td_offset |= offset;
Alexander Duyck529f1f62016-01-24 21:17:10 -08001978
1979 return 1;
Greg Rose7f12ad72013-12-21 06:12:51 +00001980}
1981
1982/**
1983 * i40e_create_tx_ctx Build the Tx context descriptor
1984 * @tx_ring: ring to create the descriptor on
1985 * @cd_type_cmd_tso_mss: Quad Word 1
1986 * @cd_tunneling: Quad Word 0 - bits 0-31
1987 * @cd_l2tag2: Quad Word 0 - bits 32-63
1988 **/
1989static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
1990 const u64 cd_type_cmd_tso_mss,
1991 const u32 cd_tunneling, const u32 cd_l2tag2)
1992{
1993 struct i40e_tx_context_desc *context_desc;
1994 int i = tx_ring->next_to_use;
1995
Jesse Brandeburgff40dd52014-02-14 02:14:41 +00001996 if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
1997 !cd_tunneling && !cd_l2tag2)
Greg Rose7f12ad72013-12-21 06:12:51 +00001998 return;
1999
2000 /* grab the next descriptor */
2001 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
2002
2003 i++;
2004 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
2005
2006 /* cpu_to_le32 and assign to struct fields */
2007 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
2008 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
Jesse Brandeburg3efbbb22014-06-04 20:41:54 +00002009 context_desc->rsvd = cpu_to_le16(0);
Greg Rose7f12ad72013-12-21 06:12:51 +00002010 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
2011}
2012
Jesse Brandeburg4eeb1ff2015-11-18 17:35:42 -08002013/**
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002014 * __i40evf_chk_linearize - Check if there are more than 8 buffers per packet
Anjali Singhai71da6192015-02-21 06:42:35 +00002015 * @skb: send buffer
Anjali Singhai71da6192015-02-21 06:42:35 +00002016 *
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002017 * Note: Our HW can't DMA more than 8 buffers to build a packet on the wire
2018 * and so we need to figure out the cases where we need to linearize the skb.
2019 *
2020 * For TSO we need to count the TSO header and segment payload separately.
2021 * As such we need to check cases where we have 7 fragments or more as we
2022 * can potentially require 9 DMA transactions, 1 for the TSO header, 1 for
2023 * the segment payload in the first descriptor, and another 7 for the
2024 * fragments.
Anjali Singhai71da6192015-02-21 06:42:35 +00002025 **/
Alexander Duyck2d374902016-02-17 11:02:50 -08002026bool __i40evf_chk_linearize(struct sk_buff *skb)
Anjali Singhai71da6192015-02-21 06:42:35 +00002027{
Alexander Duyck2d374902016-02-17 11:02:50 -08002028 const struct skb_frag_struct *frag, *stale;
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002029 int nr_frags, sum;
Anjali Singhai71da6192015-02-21 06:42:35 +00002030
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002031 /* no need to check if number of frags is less than 7 */
Alexander Duyck2d374902016-02-17 11:02:50 -08002032 nr_frags = skb_shinfo(skb)->nr_frags;
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002033 if (nr_frags < (I40E_MAX_BUFFER_TXD - 1))
Alexander Duyck2d374902016-02-17 11:02:50 -08002034 return false;
Anjali Singhai71da6192015-02-21 06:42:35 +00002035
Alexander Duyck2d374902016-02-17 11:02:50 -08002036 /* We need to walk through the list and validate that each group
Alexander Duyck841493a2016-09-06 18:05:04 -07002037 * of 6 fragments totals at least gso_size.
Alexander Duyck2d374902016-02-17 11:02:50 -08002038 */
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002039 nr_frags -= I40E_MAX_BUFFER_TXD - 2;
Alexander Duyck2d374902016-02-17 11:02:50 -08002040 frag = &skb_shinfo(skb)->frags[0];
2041
2042 /* Initialize size to the negative value of gso_size minus 1. We
2043 * use this as the worst case scenerio in which the frag ahead
2044 * of us only provides one byte which is why we are limited to 6
2045 * descriptors for a single transmit as the header and previous
2046 * fragment are already consuming 2 descriptors.
2047 */
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002048 sum = 1 - skb_shinfo(skb)->gso_size;
Alexander Duyck2d374902016-02-17 11:02:50 -08002049
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002050 /* Add size of frags 0 through 4 to create our initial sum */
2051 sum += skb_frag_size(frag++);
2052 sum += skb_frag_size(frag++);
2053 sum += skb_frag_size(frag++);
2054 sum += skb_frag_size(frag++);
2055 sum += skb_frag_size(frag++);
Alexander Duyck2d374902016-02-17 11:02:50 -08002056
2057 /* Walk through fragments adding latest fragment, testing it, and
2058 * then removing stale fragments from the sum.
2059 */
Alexander Duyck248de222017-12-08 10:55:04 -08002060 for (stale = &skb_shinfo(skb)->frags[0];; stale++) {
2061 int stale_size = skb_frag_size(stale);
2062
Alexander Duyck3f3f7cb2016-03-30 16:15:37 -07002063 sum += skb_frag_size(frag++);
Alexander Duyck2d374902016-02-17 11:02:50 -08002064
Alexander Duyck248de222017-12-08 10:55:04 -08002065 /* The stale fragment may present us with a smaller
2066 * descriptor than the actual fragment size. To account
2067 * for that we need to remove all the data on the front and
2068 * figure out what the remainder would be in the last
2069 * descriptor associated with the fragment.
2070 */
2071 if (stale_size > I40E_MAX_DATA_PER_TXD) {
2072 int align_pad = -(stale->page_offset) &
2073 (I40E_MAX_READ_REQ_SIZE - 1);
2074
2075 sum -= align_pad;
2076 stale_size -= align_pad;
2077
2078 do {
2079 sum -= I40E_MAX_DATA_PER_TXD_ALIGNED;
2080 stale_size -= I40E_MAX_DATA_PER_TXD_ALIGNED;
2081 } while (stale_size > I40E_MAX_DATA_PER_TXD);
2082 }
2083
Alexander Duyck2d374902016-02-17 11:02:50 -08002084 /* if sum is negative we failed to make sufficient progress */
2085 if (sum < 0)
2086 return true;
2087
Alexander Duyck841493a2016-09-06 18:05:04 -07002088 if (!nr_frags--)
Alexander Duyck2d374902016-02-17 11:02:50 -08002089 break;
2090
Alexander Duyck248de222017-12-08 10:55:04 -08002091 sum -= stale_size;
Anjali Singhai71da6192015-02-21 06:42:35 +00002092 }
2093
Alexander Duyck2d374902016-02-17 11:02:50 -08002094 return false;
Anjali Singhai71da6192015-02-21 06:42:35 +00002095}
2096
Greg Rose7f12ad72013-12-21 06:12:51 +00002097/**
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04002098 * __i40evf_maybe_stop_tx - 2nd level check for tx stop conditions
2099 * @tx_ring: the ring to be checked
2100 * @size: the size buffer we want to assure is available
2101 *
2102 * Returns -EBUSY if a stop is needed, else 0
2103 **/
Alexander Duyck4ec441d2016-02-17 11:02:43 -08002104int __i40evf_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
Jesse Brandeburg8f6a2b02015-04-16 20:06:09 -04002105{
2106 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
2107 /* Memory barrier before checking head and tail */
2108 smp_mb();
2109
2110 /* Check again in a case another CPU has just made room available. */
2111 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
2112 return -EBUSY;
2113
2114 /* A reprieve! - use start_queue because it doesn't call schedule */
2115 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
2116 ++tx_ring->tx_stats.restart_queue;
2117 return 0;
2118}
2119
2120/**
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002121 * i40evf_tx_map - Build the Tx descriptor
Greg Rose7f12ad72013-12-21 06:12:51 +00002122 * @tx_ring: ring to send buffer on
2123 * @skb: send buffer
2124 * @first: first buffer info buffer to use
2125 * @tx_flags: collected send information
2126 * @hdr_len: size of the packet header
2127 * @td_cmd: the command field in the descriptor
2128 * @td_offset: offset for checksum or crc
2129 **/
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002130static inline void i40evf_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
2131 struct i40e_tx_buffer *first, u32 tx_flags,
2132 const u8 hdr_len, u32 td_cmd, u32 td_offset)
Greg Rose7f12ad72013-12-21 06:12:51 +00002133{
2134 unsigned int data_len = skb->data_len;
2135 unsigned int size = skb_headlen(skb);
2136 struct skb_frag_struct *frag;
2137 struct i40e_tx_buffer *tx_bi;
2138 struct i40e_tx_desc *tx_desc;
2139 u16 i = tx_ring->next_to_use;
2140 u32 td_tag = 0;
2141 dma_addr_t dma;
Greg Rose7f12ad72013-12-21 06:12:51 +00002142
2143 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
2144 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
2145 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
2146 I40E_TX_FLAGS_VLAN_SHIFT;
2147 }
2148
Greg Rose7f12ad72013-12-21 06:12:51 +00002149 first->tx_flags = tx_flags;
2150
2151 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
2152
2153 tx_desc = I40E_TX_DESC(tx_ring, i);
2154 tx_bi = first;
2155
2156 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
Alexander Duyck5c4654d2016-02-19 12:17:08 -08002157 unsigned int max_data = I40E_MAX_DATA_PER_TXD_ALIGNED;
2158
Greg Rose7f12ad72013-12-21 06:12:51 +00002159 if (dma_mapping_error(tx_ring->dev, dma))
2160 goto dma_error;
2161
2162 /* record length, and DMA address */
2163 dma_unmap_len_set(tx_bi, len, size);
2164 dma_unmap_addr_set(tx_bi, dma, dma);
2165
Alexander Duyck5c4654d2016-02-19 12:17:08 -08002166 /* align size to end of page */
2167 max_data += -dma & (I40E_MAX_READ_REQ_SIZE - 1);
Greg Rose7f12ad72013-12-21 06:12:51 +00002168 tx_desc->buffer_addr = cpu_to_le64(dma);
2169
2170 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
2171 tx_desc->cmd_type_offset_bsz =
2172 build_ctob(td_cmd, td_offset,
Alexander Duyck5c4654d2016-02-19 12:17:08 -08002173 max_data, td_tag);
Greg Rose7f12ad72013-12-21 06:12:51 +00002174
2175 tx_desc++;
2176 i++;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002177
Greg Rose7f12ad72013-12-21 06:12:51 +00002178 if (i == tx_ring->count) {
2179 tx_desc = I40E_TX_DESC(tx_ring, 0);
2180 i = 0;
2181 }
2182
Alexander Duyck5c4654d2016-02-19 12:17:08 -08002183 dma += max_data;
2184 size -= max_data;
Greg Rose7f12ad72013-12-21 06:12:51 +00002185
Alexander Duyck5c4654d2016-02-19 12:17:08 -08002186 max_data = I40E_MAX_DATA_PER_TXD_ALIGNED;
Greg Rose7f12ad72013-12-21 06:12:51 +00002187 tx_desc->buffer_addr = cpu_to_le64(dma);
2188 }
2189
2190 if (likely(!data_len))
2191 break;
2192
2193 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
2194 size, td_tag);
2195
2196 tx_desc++;
2197 i++;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002198
Greg Rose7f12ad72013-12-21 06:12:51 +00002199 if (i == tx_ring->count) {
2200 tx_desc = I40E_TX_DESC(tx_ring, 0);
2201 i = 0;
2202 }
2203
2204 size = skb_frag_size(frag);
2205 data_len -= size;
2206
2207 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
2208 DMA_TO_DEVICE);
2209
2210 tx_bi = &tx_ring->tx_bi[i];
2211 }
2212
Alexander Duyck1dc8b532016-10-11 15:26:54 -07002213 netdev_tx_sent_queue(txring_txq(tx_ring), first->bytecount);
Greg Rose7f12ad72013-12-21 06:12:51 +00002214
2215 i++;
2216 if (i == tx_ring->count)
2217 i = 0;
2218
2219 tx_ring->next_to_use = i;
2220
Alexander Duyck4ec441d2016-02-17 11:02:43 -08002221 i40e_maybe_stop_tx(tx_ring, DESC_NEEDED);
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002222
Preethi Banalab1cb07d2017-03-10 12:22:00 -08002223 /* write last descriptor with RS and EOP bits */
2224 td_cmd |= I40E_TXD_CMD;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002225 tx_desc->cmd_type_offset_bsz =
Alexander Duyck1dc8b532016-10-11 15:26:54 -07002226 build_ctob(td_cmd, td_offset, size, td_tag);
2227
2228 /* Force memory writes to complete before letting h/w know there
2229 * are new descriptors to fetch.
2230 *
2231 * We also use this memory barrier to make certain all of the
2232 * status bits have been updated before next_to_watch is written.
2233 */
2234 wmb();
2235
2236 /* set next_to_watch value indicating a packet is present */
2237 first->next_to_watch = tx_desc;
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002238
Greg Rose7f12ad72013-12-21 06:12:51 +00002239 /* notify HW of packet */
Preethi Banalab1cb07d2017-03-10 12:22:00 -08002240 if (netif_xmit_stopped(txring_txq(tx_ring)) || !skb->xmit_more) {
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002241 writel(i, tx_ring->tail);
Alexander Duyck1dc8b532016-10-11 15:26:54 -07002242
2243 /* we need this if more than one processor can write to our tail
2244 * at a time, it synchronizes IO on IA64/Altix systems
2245 */
2246 mmiowb();
Anjali Singhai Jain6a7fded2015-10-26 19:44:29 -04002247 }
Alexander Duyck1dc8b532016-10-11 15:26:54 -07002248
Greg Rose7f12ad72013-12-21 06:12:51 +00002249 return;
2250
2251dma_error:
2252 dev_info(tx_ring->dev, "TX DMA map failed\n");
2253
2254 /* clear dma mappings for failed tx_bi map */
2255 for (;;) {
2256 tx_bi = &tx_ring->tx_bi[i];
2257 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
2258 if (tx_bi == first)
2259 break;
2260 if (i == 0)
2261 i = tx_ring->count;
2262 i--;
2263 }
2264
2265 tx_ring->next_to_use = i;
2266}
2267
2268/**
Greg Rose7f12ad72013-12-21 06:12:51 +00002269 * i40e_xmit_frame_ring - Sends buffer on Tx ring
2270 * @skb: send buffer
2271 * @tx_ring: ring to send buffer on
2272 *
2273 * Returns NETDEV_TX_OK if sent, else an error code
2274 **/
2275static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
2276 struct i40e_ring *tx_ring)
2277{
2278 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
2279 u32 cd_tunneling = 0, cd_l2tag2 = 0;
2280 struct i40e_tx_buffer *first;
2281 u32 td_offset = 0;
2282 u32 tx_flags = 0;
2283 __be16 protocol;
2284 u32 td_cmd = 0;
2285 u8 hdr_len = 0;
Alexander Duyck4ec441d2016-02-17 11:02:43 -08002286 int tso, count;
Jesse Brandeburg6995b362015-08-28 17:55:54 -04002287
Jesse Brandeburgb74118f2015-10-26 19:44:30 -04002288 /* prefetch the data, we'll need it later */
2289 prefetch(skb->data);
2290
Scott Petersoned0980c2017-04-13 04:45:44 -04002291 i40e_trace(xmit_frame_ring, skb, tx_ring);
2292
Alexander Duyck4ec441d2016-02-17 11:02:43 -08002293 count = i40e_xmit_descriptor_count(skb);
Alexander Duyck2d374902016-02-17 11:02:50 -08002294 if (i40e_chk_linearize(skb, count)) {
Alexander Duyck52ea3e82016-11-28 16:05:59 -08002295 if (__skb_linearize(skb)) {
2296 dev_kfree_skb_any(skb);
2297 return NETDEV_TX_OK;
2298 }
Alexander Duyck5c4654d2016-02-19 12:17:08 -08002299 count = i40e_txd_use_count(skb->len);
Alexander Duyck2d374902016-02-17 11:02:50 -08002300 tx_ring->tx_stats.tx_linearize++;
2301 }
Alexander Duyck4ec441d2016-02-17 11:02:43 -08002302
2303 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
2304 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
2305 * + 4 desc gap to avoid the cache line where head is,
2306 * + 1 desc for context descriptor,
2307 * otherwise try next time
2308 */
2309 if (i40e_maybe_stop_tx(tx_ring, count + 4 + 1)) {
2310 tx_ring->tx_stats.tx_busy++;
Greg Rose7f12ad72013-12-21 06:12:51 +00002311 return NETDEV_TX_BUSY;
Alexander Duyck4ec441d2016-02-17 11:02:43 -08002312 }
Greg Rose7f12ad72013-12-21 06:12:51 +00002313
Alexander Duyck52ea3e82016-11-28 16:05:59 -08002314 /* record the location of the first descriptor for this packet */
2315 first = &tx_ring->tx_bi[tx_ring->next_to_use];
2316 first->skb = skb;
2317 first->bytecount = skb->len;
2318 first->gso_segs = 1;
2319
Greg Rose7f12ad72013-12-21 06:12:51 +00002320 /* prepare the xmit flags */
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002321 if (i40evf_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
Greg Rose7f12ad72013-12-21 06:12:51 +00002322 goto out_drop;
2323
2324 /* obtain protocol of skb */
Vlad Yasevicha12c4152014-08-25 10:34:53 -04002325 protocol = vlan_get_protocol(skb);
Greg Rose7f12ad72013-12-21 06:12:51 +00002326
Greg Rose7f12ad72013-12-21 06:12:51 +00002327 /* setup IPv4/IPv6 offloads */
2328 if (protocol == htons(ETH_P_IP))
2329 tx_flags |= I40E_TX_FLAGS_IPV4;
2330 else if (protocol == htons(ETH_P_IPV6))
2331 tx_flags |= I40E_TX_FLAGS_IPV6;
2332
Alexander Duyck52ea3e82016-11-28 16:05:59 -08002333 tso = i40e_tso(first, &hdr_len, &cd_type_cmd_tso_mss);
Greg Rose7f12ad72013-12-21 06:12:51 +00002334
2335 if (tso < 0)
2336 goto out_drop;
2337 else if (tso)
2338 tx_flags |= I40E_TX_FLAGS_TSO;
2339
Greg Rose7f12ad72013-12-21 06:12:51 +00002340 /* Always offload the checksum, since it's in the data descriptor */
Alexander Duyck529f1f62016-01-24 21:17:10 -08002341 tso = i40e_tx_enable_csum(skb, &tx_flags, &td_cmd, &td_offset,
2342 tx_ring, &cd_tunneling);
2343 if (tso < 0)
2344 goto out_drop;
Greg Rose7f12ad72013-12-21 06:12:51 +00002345
Alexander Duyck3bc67972016-02-17 11:02:56 -08002346 skb_tx_timestamp(skb);
2347
2348 /* always enable CRC insertion offload */
2349 td_cmd |= I40E_TX_DESC_CMD_ICRC;
2350
Greg Rose7f12ad72013-12-21 06:12:51 +00002351 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
2352 cd_tunneling, cd_l2tag2);
2353
Jesse Brandeburg3e587cf2015-04-16 20:06:10 -04002354 i40evf_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
2355 td_cmd, td_offset);
Greg Rose7f12ad72013-12-21 06:12:51 +00002356
Greg Rose7f12ad72013-12-21 06:12:51 +00002357 return NETDEV_TX_OK;
2358
2359out_drop:
Scott Petersoned0980c2017-04-13 04:45:44 -04002360 i40e_trace(xmit_frame_ring_drop, first->skb, tx_ring);
Alexander Duyck52ea3e82016-11-28 16:05:59 -08002361 dev_kfree_skb_any(first->skb);
2362 first->skb = NULL;
Greg Rose7f12ad72013-12-21 06:12:51 +00002363 return NETDEV_TX_OK;
2364}
2365
2366/**
2367 * i40evf_xmit_frame - Selects the correct VSI and Tx queue to send buffer
2368 * @skb: send buffer
2369 * @netdev: network interface device structure
2370 *
2371 * Returns NETDEV_TX_OK if sent, else an error code
2372 **/
2373netdev_tx_t i40evf_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
2374{
2375 struct i40evf_adapter *adapter = netdev_priv(netdev);
Mitch Williams0dd438d2015-10-26 19:44:40 -04002376 struct i40e_ring *tx_ring = &adapter->tx_rings[skb->queue_mapping];
Greg Rose7f12ad72013-12-21 06:12:51 +00002377
2378 /* hardware can't handle really short frames, hardware padding works
2379 * beyond this point
2380 */
2381 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
2382 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
2383 return NETDEV_TX_OK;
2384 skb->len = I40E_MIN_TX_LEN;
2385 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
2386 }
2387
2388 return i40e_xmit_frame_ring(skb, tx_ring);
2389}