blob: fac4fb37f87b23a48f171b321354a040024b0c9f [file] [log] [blame]
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
4 * Copyright(c) 2013 Intel Corporation.
5 *
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 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * The full GNU General Public License is included in this distribution in
20 * the file called "COPYING".
21 *
22 * Contact Information:
23 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25 *
26 ******************************************************************************/
27
28#include "i40e.h"
29
30static inline __le64 build_ctob(u32 td_cmd, u32 td_offset, unsigned int size,
31 u32 td_tag)
32{
33 return cpu_to_le64(I40E_TX_DESC_DTYPE_DATA |
34 ((u64)td_cmd << I40E_TXD_QW1_CMD_SHIFT) |
35 ((u64)td_offset << I40E_TXD_QW1_OFFSET_SHIFT) |
36 ((u64)size << I40E_TXD_QW1_TX_BUF_SZ_SHIFT) |
37 ((u64)td_tag << I40E_TXD_QW1_L2TAG1_SHIFT));
38}
39
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000040#define I40E_TXD_CMD (I40E_TX_DESC_CMD_EOP | I40E_TX_DESC_CMD_RS)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000041/**
42 * i40e_program_fdir_filter - Program a Flow Director filter
43 * @fdir_input: Packet data that will be filter parameters
44 * @pf: The pf pointer
45 * @add: True for add/update, False for remove
46 **/
47int i40e_program_fdir_filter(struct i40e_fdir_data *fdir_data,
48 struct i40e_pf *pf, bool add)
49{
50 struct i40e_filter_program_desc *fdir_desc;
51 struct i40e_tx_buffer *tx_buf;
52 struct i40e_tx_desc *tx_desc;
53 struct i40e_ring *tx_ring;
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000054 unsigned int fpt, dcc;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000055 struct i40e_vsi *vsi;
56 struct device *dev;
57 dma_addr_t dma;
58 u32 td_cmd = 0;
59 u16 i;
60
61 /* find existing FDIR VSI */
62 vsi = NULL;
63 for (i = 0; i < pf->hw.func_caps.num_vsis; i++)
64 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR)
65 vsi = pf->vsi[i];
66 if (!vsi)
67 return -ENOENT;
68
Alexander Duyck9f65e152013-09-28 06:00:58 +000069 tx_ring = vsi->tx_rings[0];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000070 dev = tx_ring->dev;
71
72 dma = dma_map_single(dev, fdir_data->raw_packet,
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000073 I40E_FDIR_MAX_RAW_PACKET_LOOKUP, DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000074 if (dma_mapping_error(dev, dma))
75 goto dma_fail;
76
77 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +000078 i = tx_ring->next_to_use;
79 fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
Alexander Duyckfc4ac672013-09-28 06:00:22 +000080
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000081 tx_ring->next_to_use = (i + 1 < tx_ring->count) ? i + 1 : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000082
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000083 fpt = (fdir_data->q_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
84 I40E_TXD_FLTR_QW0_QINDEX_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000085
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000086 fpt |= (fdir_data->flex_off << I40E_TXD_FLTR_QW0_FLEXOFF_SHIFT) &
87 I40E_TXD_FLTR_QW0_FLEXOFF_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000088
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000089 fpt |= (fdir_data->pctype << I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) &
90 I40E_TXD_FLTR_QW0_PCTYPE_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000091
92 /* Use LAN VSI Id if not programmed by user */
93 if (fdir_data->dest_vsi == 0)
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000094 fpt |= (pf->vsi[pf->lan_vsi]->id) <<
95 I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000096 else
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000097 fpt |= ((u32)fdir_data->dest_vsi <<
98 I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT) &
99 I40E_TXD_FLTR_QW0_DEST_VSI_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000100
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000101 fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(fpt);
102
103 dcc = I40E_TX_DESC_DTYPE_FILTER_PROG;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000104
105 if (add)
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000106 dcc |= I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
107 I40E_TXD_FLTR_QW1_PCMD_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000108 else
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000109 dcc |= I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
110 I40E_TXD_FLTR_QW1_PCMD_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000111
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000112 dcc |= (fdir_data->dest_ctl << I40E_TXD_FLTR_QW1_DEST_SHIFT) &
113 I40E_TXD_FLTR_QW1_DEST_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000114
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000115 dcc |= (fdir_data->fd_status << I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT) &
116 I40E_TXD_FLTR_QW1_FD_STATUS_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000117
118 if (fdir_data->cnt_index != 0) {
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000119 dcc |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
120 dcc |= ((u32)fdir_data->cnt_index <<
121 I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
122 I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000123 }
124
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000125 fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dcc);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000126 fdir_desc->fd_id = cpu_to_le32(fdir_data->fd_id);
127
128 /* Now program a dummy descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000129 i = tx_ring->next_to_use;
130 tx_desc = I40E_TX_DESC(tx_ring, i);
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000131 tx_buf = &tx_ring->tx_bi[i];
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000132
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000133 tx_ring->next_to_use = (i + 1 < tx_ring->count) ? i + 1 : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000134
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000135 /* record length, and DMA address */
136 dma_unmap_len_set(tx_buf, len, I40E_FDIR_MAX_RAW_PACKET_LOOKUP);
137 dma_unmap_addr_set(tx_buf, dma, dma);
138
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000139 tx_desc->buffer_addr = cpu_to_le64(dma);
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000140 td_cmd = I40E_TXD_CMD | I40E_TX_DESC_CMD_DUMMY;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000141
142 tx_desc->cmd_type_offset_bsz =
143 build_ctob(td_cmd, 0, I40E_FDIR_MAX_RAW_PACKET_LOOKUP, 0);
144
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000145 /* set the timestamp */
146 tx_buf->time_stamp = jiffies;
147
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000148 /* Force memory writes to complete before letting h/w
149 * know there are new descriptors to fetch. (Only
150 * applicable for weak-ordered memory model archs,
151 * such as IA-64).
152 */
153 wmb();
154
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000155 /* Mark the data descriptor to be watched */
156 tx_buf->next_to_watch = tx_desc;
157
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000158 writel(tx_ring->next_to_use, tx_ring->tail);
159 return 0;
160
161dma_fail:
162 return -1;
163}
164
165/**
166 * i40e_fd_handle_status - check the Programming Status for FD
167 * @rx_ring: the Rx ring for this descriptor
168 * @qw: the descriptor data
169 * @prog_id: the id originally used for programming
170 *
171 * This is used to verify if the FD programming or invalidation
172 * requested by SW to the HW is successful or not and take actions accordingly.
173 **/
174static void i40e_fd_handle_status(struct i40e_ring *rx_ring, u32 qw, u8 prog_id)
175{
176 struct pci_dev *pdev = rx_ring->vsi->back->pdev;
177 u32 error;
178
179 error = (qw & I40E_RX_PROG_STATUS_DESC_QW1_ERROR_MASK) >>
180 I40E_RX_PROG_STATUS_DESC_QW1_ERROR_SHIFT;
181
182 /* for now just print the Status */
183 dev_info(&pdev->dev, "FD programming id %02x, Status %08x\n",
184 prog_id, error);
185}
186
187/**
Alexander Duycka5e9c572013-09-28 06:00:27 +0000188 * i40e_unmap_and_free_tx_resource - Release a Tx buffer
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000189 * @ring: the ring that owns the buffer
190 * @tx_buffer: the buffer to free
191 **/
Alexander Duycka5e9c572013-09-28 06:00:27 +0000192static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
193 struct i40e_tx_buffer *tx_buffer)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000194{
Alexander Duycka5e9c572013-09-28 06:00:27 +0000195 if (tx_buffer->skb) {
196 dev_kfree_skb_any(tx_buffer->skb);
197 if (dma_unmap_len(tx_buffer, len))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000198 dma_unmap_single(ring->dev,
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000199 dma_unmap_addr(tx_buffer, dma),
200 dma_unmap_len(tx_buffer, len),
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000201 DMA_TO_DEVICE);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000202 } else if (dma_unmap_len(tx_buffer, len)) {
203 dma_unmap_page(ring->dev,
204 dma_unmap_addr(tx_buffer, dma),
205 dma_unmap_len(tx_buffer, len),
206 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000207 }
Alexander Duycka5e9c572013-09-28 06:00:27 +0000208 tx_buffer->next_to_watch = NULL;
209 tx_buffer->skb = NULL;
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000210 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000211 /* tx_buffer must be completely set up in the transmit path */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000212}
213
214/**
215 * i40e_clean_tx_ring - Free any empty Tx buffers
216 * @tx_ring: ring to be cleaned
217 **/
218void i40e_clean_tx_ring(struct i40e_ring *tx_ring)
219{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000220 unsigned long bi_size;
221 u16 i;
222
223 /* ring already cleared, nothing to do */
224 if (!tx_ring->tx_bi)
225 return;
226
227 /* Free all the Tx ring sk_buffs */
Alexander Duycka5e9c572013-09-28 06:00:27 +0000228 for (i = 0; i < tx_ring->count; i++)
229 i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000230
231 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
232 memset(tx_ring->tx_bi, 0, bi_size);
233
234 /* Zero out the descriptor ring */
235 memset(tx_ring->desc, 0, tx_ring->size);
236
237 tx_ring->next_to_use = 0;
238 tx_ring->next_to_clean = 0;
Alexander Duyck7070ce02013-09-28 06:00:37 +0000239
240 if (!tx_ring->netdev)
241 return;
242
243 /* cleanup Tx queue statistics */
244 netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev,
245 tx_ring->queue_index));
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000246}
247
248/**
249 * i40e_free_tx_resources - Free Tx resources per queue
250 * @tx_ring: Tx descriptor ring for a specific queue
251 *
252 * Free all transmit software resources
253 **/
254void i40e_free_tx_resources(struct i40e_ring *tx_ring)
255{
256 i40e_clean_tx_ring(tx_ring);
257 kfree(tx_ring->tx_bi);
258 tx_ring->tx_bi = NULL;
259
260 if (tx_ring->desc) {
261 dma_free_coherent(tx_ring->dev, tx_ring->size,
262 tx_ring->desc, tx_ring->dma);
263 tx_ring->desc = NULL;
264 }
265}
266
267/**
268 * i40e_get_tx_pending - how many tx descriptors not processed
269 * @tx_ring: the ring of descriptors
270 *
271 * Since there is no access to the ring head register
272 * in XL710, we need to use our local copies
273 **/
274static u32 i40e_get_tx_pending(struct i40e_ring *ring)
275{
276 u32 ntu = ((ring->next_to_clean <= ring->next_to_use)
277 ? ring->next_to_use
278 : ring->next_to_use + ring->count);
279 return ntu - ring->next_to_clean;
280}
281
282/**
283 * i40e_check_tx_hang - Is there a hang in the Tx queue
284 * @tx_ring: the ring of descriptors
285 **/
286static bool i40e_check_tx_hang(struct i40e_ring *tx_ring)
287{
288 u32 tx_pending = i40e_get_tx_pending(tx_ring);
289 bool ret = false;
290
291 clear_check_for_tx_hang(tx_ring);
292
293 /* Check for a hung queue, but be thorough. This verifies
294 * that a transmit has been completed since the previous
295 * check AND there is at least one packet pending. The
296 * ARMED bit is set to indicate a potential hang. The
297 * bit is cleared if a pause frame is received to remove
298 * false hang detection due to PFC or 802.3x frames. By
299 * requiring this to fail twice we avoid races with
300 * PFC clearing the ARMED bit and conditions where we
301 * run the check_tx_hang logic with a transmit completion
302 * pending but without time to complete it yet.
303 */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000304 if ((tx_ring->tx_stats.tx_done_old == tx_ring->stats.packets) &&
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000305 tx_pending) {
306 /* make sure it is true for two checks in a row */
307 ret = test_and_set_bit(__I40E_HANG_CHECK_ARMED,
308 &tx_ring->state);
309 } else {
310 /* update completed stats and disarm the hang check */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000311 tx_ring->tx_stats.tx_done_old = tx_ring->stats.packets;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000312 clear_bit(__I40E_HANG_CHECK_ARMED, &tx_ring->state);
313 }
314
315 return ret;
316}
317
318/**
319 * i40e_clean_tx_irq - Reclaim resources after transmit completes
320 * @tx_ring: tx ring to clean
321 * @budget: how many cleans we're allowed
322 *
323 * Returns true if there's any budget left (e.g. the clean is finished)
324 **/
325static bool i40e_clean_tx_irq(struct i40e_ring *tx_ring, int budget)
326{
327 u16 i = tx_ring->next_to_clean;
328 struct i40e_tx_buffer *tx_buf;
329 struct i40e_tx_desc *tx_desc;
330 unsigned int total_packets = 0;
331 unsigned int total_bytes = 0;
332
333 tx_buf = &tx_ring->tx_bi[i];
334 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000335 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000336
Alexander Duycka5e9c572013-09-28 06:00:27 +0000337 do {
338 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000339
340 /* if next_to_watch is not set then there is no work pending */
341 if (!eop_desc)
342 break;
343
Alexander Duycka5e9c572013-09-28 06:00:27 +0000344 /* prevent any other reads prior to eop_desc */
345 read_barrier_depends();
346
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000347 /* if the descriptor isn't done, no work yet to do */
348 if (!(eop_desc->cmd_type_offset_bsz &
349 cpu_to_le64(I40E_TX_DESC_DTYPE_DESC_DONE)))
350 break;
351
Alexander Duyckc304fda2013-09-28 06:00:12 +0000352 /* clear next_to_watch to prevent false hangs */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000353 tx_buf->next_to_watch = NULL;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000354
Alexander Duycka5e9c572013-09-28 06:00:27 +0000355 /* update the statistics for this packet */
356 total_bytes += tx_buf->bytecount;
357 total_packets += tx_buf->gso_segs;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000358
Alexander Duycka5e9c572013-09-28 06:00:27 +0000359 /* free the skb */
360 dev_kfree_skb_any(tx_buf->skb);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000361
Alexander Duycka5e9c572013-09-28 06:00:27 +0000362 /* unmap skb header data */
363 dma_unmap_single(tx_ring->dev,
364 dma_unmap_addr(tx_buf, dma),
365 dma_unmap_len(tx_buf, len),
366 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000367
Alexander Duycka5e9c572013-09-28 06:00:27 +0000368 /* clear tx_buffer data */
369 tx_buf->skb = NULL;
370 dma_unmap_len_set(tx_buf, len, 0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000371
Alexander Duycka5e9c572013-09-28 06:00:27 +0000372 /* unmap remaining buffers */
373 while (tx_desc != eop_desc) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000374
375 tx_buf++;
376 tx_desc++;
377 i++;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000378 if (unlikely(!i)) {
379 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000380 tx_buf = tx_ring->tx_bi;
381 tx_desc = I40E_TX_DESC(tx_ring, 0);
382 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000383
Alexander Duycka5e9c572013-09-28 06:00:27 +0000384 /* unmap any remaining paged data */
385 if (dma_unmap_len(tx_buf, len)) {
386 dma_unmap_page(tx_ring->dev,
387 dma_unmap_addr(tx_buf, dma),
388 dma_unmap_len(tx_buf, len),
389 DMA_TO_DEVICE);
390 dma_unmap_len_set(tx_buf, len, 0);
391 }
392 }
393
394 /* move us one more past the eop_desc for start of next pkt */
395 tx_buf++;
396 tx_desc++;
397 i++;
398 if (unlikely(!i)) {
399 i -= tx_ring->count;
400 tx_buf = tx_ring->tx_bi;
401 tx_desc = I40E_TX_DESC(tx_ring, 0);
402 }
403
404 /* update budget accounting */
405 budget--;
406 } while (likely(budget));
407
408 i += tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000409 tx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000410 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +0000411 tx_ring->stats.bytes += total_bytes;
412 tx_ring->stats.packets += total_packets;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000413 u64_stats_update_end(&tx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000414 tx_ring->q_vector->tx.total_bytes += total_bytes;
415 tx_ring->q_vector->tx.total_packets += total_packets;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000416
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000417 if (check_for_tx_hang(tx_ring) && i40e_check_tx_hang(tx_ring)) {
418 /* schedule immediate reset if we believe we hung */
419 dev_info(tx_ring->dev, "Detected Tx Unit Hang\n"
420 " VSI <%d>\n"
421 " Tx Queue <%d>\n"
422 " next_to_use <%x>\n"
423 " next_to_clean <%x>\n",
424 tx_ring->vsi->seid,
425 tx_ring->queue_index,
426 tx_ring->next_to_use, i);
427 dev_info(tx_ring->dev, "tx_bi[next_to_clean]\n"
428 " time_stamp <%lx>\n"
429 " jiffies <%lx>\n",
430 tx_ring->tx_bi[i].time_stamp, jiffies);
431
432 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
433
434 dev_info(tx_ring->dev,
435 "tx hang detected on queue %d, resetting adapter\n",
436 tx_ring->queue_index);
437
438 tx_ring->netdev->netdev_ops->ndo_tx_timeout(tx_ring->netdev);
439
440 /* the adapter is about to reset, no point in enabling stuff */
441 return true;
442 }
443
Alexander Duyck7070ce02013-09-28 06:00:37 +0000444 netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
445 tx_ring->queue_index),
446 total_packets, total_bytes);
447
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000448#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
449 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
450 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
451 /* Make sure that anybody stopping the queue after this
452 * sees the new next_to_clean.
453 */
454 smp_mb();
455 if (__netif_subqueue_stopped(tx_ring->netdev,
456 tx_ring->queue_index) &&
457 !test_bit(__I40E_DOWN, &tx_ring->vsi->state)) {
458 netif_wake_subqueue(tx_ring->netdev,
459 tx_ring->queue_index);
460 ++tx_ring->tx_stats.restart_queue;
461 }
462 }
463
464 return budget > 0;
465}
466
467/**
468 * i40e_set_new_dynamic_itr - Find new ITR level
469 * @rc: structure containing ring performance data
470 *
471 * Stores a new ITR value based on packets and byte counts during
472 * the last interrupt. The advantage of per interrupt computation
473 * is faster updates and more accurate ITR for the current traffic
474 * pattern. Constants in this function were computed based on
475 * theoretical maximum wire speed and thresholds were set based on
476 * testing data as well as attempting to minimize response time
477 * while increasing bulk throughput.
478 **/
479static void i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
480{
481 enum i40e_latency_range new_latency_range = rc->latency_range;
482 u32 new_itr = rc->itr;
483 int bytes_per_int;
484
485 if (rc->total_packets == 0 || !rc->itr)
486 return;
487
488 /* simple throttlerate management
489 * 0-10MB/s lowest (100000 ints/s)
490 * 10-20MB/s low (20000 ints/s)
491 * 20-1249MB/s bulk (8000 ints/s)
492 */
493 bytes_per_int = rc->total_bytes / rc->itr;
494 switch (rc->itr) {
495 case I40E_LOWEST_LATENCY:
496 if (bytes_per_int > 10)
497 new_latency_range = I40E_LOW_LATENCY;
498 break;
499 case I40E_LOW_LATENCY:
500 if (bytes_per_int > 20)
501 new_latency_range = I40E_BULK_LATENCY;
502 else if (bytes_per_int <= 10)
503 new_latency_range = I40E_LOWEST_LATENCY;
504 break;
505 case I40E_BULK_LATENCY:
506 if (bytes_per_int <= 20)
507 rc->latency_range = I40E_LOW_LATENCY;
508 break;
509 }
510
511 switch (new_latency_range) {
512 case I40E_LOWEST_LATENCY:
513 new_itr = I40E_ITR_100K;
514 break;
515 case I40E_LOW_LATENCY:
516 new_itr = I40E_ITR_20K;
517 break;
518 case I40E_BULK_LATENCY:
519 new_itr = I40E_ITR_8K;
520 break;
521 default:
522 break;
523 }
524
525 if (new_itr != rc->itr) {
526 /* do an exponential smoothing */
527 new_itr = (10 * new_itr * rc->itr) /
528 ((9 * new_itr) + rc->itr);
529 rc->itr = new_itr & I40E_MAX_ITR;
530 }
531
532 rc->total_bytes = 0;
533 rc->total_packets = 0;
534}
535
536/**
537 * i40e_update_dynamic_itr - Adjust ITR based on bytes per int
538 * @q_vector: the vector to adjust
539 **/
540static void i40e_update_dynamic_itr(struct i40e_q_vector *q_vector)
541{
542 u16 vector = q_vector->vsi->base_vector + q_vector->v_idx;
543 struct i40e_hw *hw = &q_vector->vsi->back->hw;
544 u32 reg_addr;
545 u16 old_itr;
546
547 reg_addr = I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1);
548 old_itr = q_vector->rx.itr;
549 i40e_set_new_dynamic_itr(&q_vector->rx);
550 if (old_itr != q_vector->rx.itr)
551 wr32(hw, reg_addr, q_vector->rx.itr);
552
553 reg_addr = I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1);
554 old_itr = q_vector->tx.itr;
555 i40e_set_new_dynamic_itr(&q_vector->tx);
556 if (old_itr != q_vector->tx.itr)
557 wr32(hw, reg_addr, q_vector->tx.itr);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000558}
559
560/**
561 * i40e_clean_programming_status - clean the programming status descriptor
562 * @rx_ring: the rx ring that has this descriptor
563 * @rx_desc: the rx descriptor written back by HW
564 *
565 * Flow director should handle FD_FILTER_STATUS to check its filter programming
566 * status being successful or not and take actions accordingly. FCoE should
567 * handle its context/filter programming/invalidation status and take actions.
568 *
569 **/
570static void i40e_clean_programming_status(struct i40e_ring *rx_ring,
571 union i40e_rx_desc *rx_desc)
572{
573 u64 qw;
574 u8 id;
575
576 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
577 id = (qw & I40E_RX_PROG_STATUS_DESC_QW1_PROGID_MASK) >>
578 I40E_RX_PROG_STATUS_DESC_QW1_PROGID_SHIFT;
579
580 if (id == I40E_RX_PROG_STATUS_DESC_FD_FILTER_STATUS)
581 i40e_fd_handle_status(rx_ring, qw, id);
582}
583
584/**
585 * i40e_setup_tx_descriptors - Allocate the Tx descriptors
586 * @tx_ring: the tx ring to set up
587 *
588 * Return 0 on success, negative on error
589 **/
590int i40e_setup_tx_descriptors(struct i40e_ring *tx_ring)
591{
592 struct device *dev = tx_ring->dev;
593 int bi_size;
594
595 if (!dev)
596 return -ENOMEM;
597
598 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
599 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
600 if (!tx_ring->tx_bi)
601 goto err;
602
603 /* round up to nearest 4K */
604 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
605 tx_ring->size = ALIGN(tx_ring->size, 4096);
606 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
607 &tx_ring->dma, GFP_KERNEL);
608 if (!tx_ring->desc) {
609 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
610 tx_ring->size);
611 goto err;
612 }
613
614 tx_ring->next_to_use = 0;
615 tx_ring->next_to_clean = 0;
616 return 0;
617
618err:
619 kfree(tx_ring->tx_bi);
620 tx_ring->tx_bi = NULL;
621 return -ENOMEM;
622}
623
624/**
625 * i40e_clean_rx_ring - Free Rx buffers
626 * @rx_ring: ring to be cleaned
627 **/
628void i40e_clean_rx_ring(struct i40e_ring *rx_ring)
629{
630 struct device *dev = rx_ring->dev;
631 struct i40e_rx_buffer *rx_bi;
632 unsigned long bi_size;
633 u16 i;
634
635 /* ring already cleared, nothing to do */
636 if (!rx_ring->rx_bi)
637 return;
638
639 /* Free all the Rx ring sk_buffs */
640 for (i = 0; i < rx_ring->count; i++) {
641 rx_bi = &rx_ring->rx_bi[i];
642 if (rx_bi->dma) {
643 dma_unmap_single(dev,
644 rx_bi->dma,
645 rx_ring->rx_buf_len,
646 DMA_FROM_DEVICE);
647 rx_bi->dma = 0;
648 }
649 if (rx_bi->skb) {
650 dev_kfree_skb(rx_bi->skb);
651 rx_bi->skb = NULL;
652 }
653 if (rx_bi->page) {
654 if (rx_bi->page_dma) {
655 dma_unmap_page(dev,
656 rx_bi->page_dma,
657 PAGE_SIZE / 2,
658 DMA_FROM_DEVICE);
659 rx_bi->page_dma = 0;
660 }
661 __free_page(rx_bi->page);
662 rx_bi->page = NULL;
663 rx_bi->page_offset = 0;
664 }
665 }
666
667 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
668 memset(rx_ring->rx_bi, 0, bi_size);
669
670 /* Zero out the descriptor ring */
671 memset(rx_ring->desc, 0, rx_ring->size);
672
673 rx_ring->next_to_clean = 0;
674 rx_ring->next_to_use = 0;
675}
676
677/**
678 * i40e_free_rx_resources - Free Rx resources
679 * @rx_ring: ring to clean the resources from
680 *
681 * Free all receive software resources
682 **/
683void i40e_free_rx_resources(struct i40e_ring *rx_ring)
684{
685 i40e_clean_rx_ring(rx_ring);
686 kfree(rx_ring->rx_bi);
687 rx_ring->rx_bi = NULL;
688
689 if (rx_ring->desc) {
690 dma_free_coherent(rx_ring->dev, rx_ring->size,
691 rx_ring->desc, rx_ring->dma);
692 rx_ring->desc = NULL;
693 }
694}
695
696/**
697 * i40e_setup_rx_descriptors - Allocate Rx descriptors
698 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
699 *
700 * Returns 0 on success, negative on failure
701 **/
702int i40e_setup_rx_descriptors(struct i40e_ring *rx_ring)
703{
704 struct device *dev = rx_ring->dev;
705 int bi_size;
706
707 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
708 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
709 if (!rx_ring->rx_bi)
710 goto err;
711
712 /* Round up to nearest 4K */
713 rx_ring->size = ring_is_16byte_desc_enabled(rx_ring)
714 ? rx_ring->count * sizeof(union i40e_16byte_rx_desc)
715 : rx_ring->count * sizeof(union i40e_32byte_rx_desc);
716 rx_ring->size = ALIGN(rx_ring->size, 4096);
717 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
718 &rx_ring->dma, GFP_KERNEL);
719
720 if (!rx_ring->desc) {
721 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
722 rx_ring->size);
723 goto err;
724 }
725
726 rx_ring->next_to_clean = 0;
727 rx_ring->next_to_use = 0;
728
729 return 0;
730err:
731 kfree(rx_ring->rx_bi);
732 rx_ring->rx_bi = NULL;
733 return -ENOMEM;
734}
735
736/**
737 * i40e_release_rx_desc - Store the new tail and head values
738 * @rx_ring: ring to bump
739 * @val: new head index
740 **/
741static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
742{
743 rx_ring->next_to_use = val;
744 /* Force memory writes to complete before letting h/w
745 * know there are new descriptors to fetch. (Only
746 * applicable for weak-ordered memory model archs,
747 * such as IA-64).
748 */
749 wmb();
750 writel(val, rx_ring->tail);
751}
752
753/**
754 * i40e_alloc_rx_buffers - Replace used receive buffers; packet split
755 * @rx_ring: ring to place buffers on
756 * @cleaned_count: number of buffers to replace
757 **/
758void i40e_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count)
759{
760 u16 i = rx_ring->next_to_use;
761 union i40e_rx_desc *rx_desc;
762 struct i40e_rx_buffer *bi;
763 struct sk_buff *skb;
764
765 /* do nothing if no valid netdev defined */
766 if (!rx_ring->netdev || !cleaned_count)
767 return;
768
769 while (cleaned_count--) {
770 rx_desc = I40E_RX_DESC(rx_ring, i);
771 bi = &rx_ring->rx_bi[i];
772 skb = bi->skb;
773
774 if (!skb) {
775 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
776 rx_ring->rx_buf_len);
777 if (!skb) {
778 rx_ring->rx_stats.alloc_rx_buff_failed++;
779 goto no_buffers;
780 }
781 /* initialize queue mapping */
782 skb_record_rx_queue(skb, rx_ring->queue_index);
783 bi->skb = skb;
784 }
785
786 if (!bi->dma) {
787 bi->dma = dma_map_single(rx_ring->dev,
788 skb->data,
789 rx_ring->rx_buf_len,
790 DMA_FROM_DEVICE);
791 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
792 rx_ring->rx_stats.alloc_rx_buff_failed++;
793 bi->dma = 0;
794 goto no_buffers;
795 }
796 }
797
798 if (ring_is_ps_enabled(rx_ring)) {
799 if (!bi->page) {
800 bi->page = alloc_page(GFP_ATOMIC);
801 if (!bi->page) {
802 rx_ring->rx_stats.alloc_rx_page_failed++;
803 goto no_buffers;
804 }
805 }
806
807 if (!bi->page_dma) {
808 /* use a half page if we're re-using */
809 bi->page_offset ^= PAGE_SIZE / 2;
810 bi->page_dma = dma_map_page(rx_ring->dev,
811 bi->page,
812 bi->page_offset,
813 PAGE_SIZE / 2,
814 DMA_FROM_DEVICE);
815 if (dma_mapping_error(rx_ring->dev,
816 bi->page_dma)) {
817 rx_ring->rx_stats.alloc_rx_page_failed++;
818 bi->page_dma = 0;
819 goto no_buffers;
820 }
821 }
822
823 /* Refresh the desc even if buffer_addrs didn't change
824 * because each write-back erases this info.
825 */
826 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
827 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
828 } else {
829 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
830 rx_desc->read.hdr_addr = 0;
831 }
832 i++;
833 if (i == rx_ring->count)
834 i = 0;
835 }
836
837no_buffers:
838 if (rx_ring->next_to_use != i)
839 i40e_release_rx_desc(rx_ring, i);
840}
841
842/**
843 * i40e_receive_skb - Send a completed packet up the stack
844 * @rx_ring: rx ring in play
845 * @skb: packet to send up
846 * @vlan_tag: vlan tag for packet
847 **/
848static void i40e_receive_skb(struct i40e_ring *rx_ring,
849 struct sk_buff *skb, u16 vlan_tag)
850{
851 struct i40e_q_vector *q_vector = rx_ring->q_vector;
852 struct i40e_vsi *vsi = rx_ring->vsi;
853 u64 flags = vsi->back->flags;
854
855 if (vlan_tag & VLAN_VID_MASK)
856 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
857
858 if (flags & I40E_FLAG_IN_NETPOLL)
859 netif_rx(skb);
860 else
861 napi_gro_receive(&q_vector->napi, skb);
862}
863
864/**
865 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
866 * @vsi: the VSI we care about
867 * @skb: skb currently being received and modified
868 * @rx_status: status value of last descriptor in packet
869 * @rx_error: error value of last descriptor in packet
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000870 * @rx_ptype: ptype value of last descriptor in packet
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000871 **/
872static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
873 struct sk_buff *skb,
874 u32 rx_status,
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000875 u32 rx_error,
876 u16 rx_ptype)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000877{
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000878 bool ipv4_tunnel, ipv6_tunnel;
879 __wsum rx_udp_csum;
880 __sum16 csum;
881 struct iphdr *iph;
882
883 ipv4_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT4_MAC_PAY3) &&
884 (rx_ptype < I40E_RX_PTYPE_GRENAT4_MACVLAN_IPV6_ICMP_PAY4);
885 ipv6_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT6_MAC_PAY3) &&
886 (rx_ptype < I40E_RX_PTYPE_GRENAT6_MACVLAN_IPV6_ICMP_PAY4);
887
888 skb->encapsulation = ipv4_tunnel || ipv6_tunnel;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000889 skb->ip_summed = CHECKSUM_NONE;
890
891 /* Rx csum enabled and ip headers found? */
892 if (!(vsi->netdev->features & NETIF_F_RXCSUM &&
893 rx_status & (1 << I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
894 return;
895
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000896 /* IP or L4 or outmost IP checksum error */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000897 if (rx_error & ((1 << I40E_RX_DESC_ERROR_IPE_SHIFT) |
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000898 (1 << I40E_RX_DESC_ERROR_L4E_SHIFT) |
899 (1 << I40E_RX_DESC_ERROR_EIPE_SHIFT))) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000900 vsi->back->hw_csum_rx_error++;
901 return;
902 }
903
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000904 if (ipv4_tunnel &&
905 !(rx_status & (1 << I40E_RX_DESC_STATUS_UDP_0_SHIFT))) {
906 /* If VXLAN traffic has an outer UDPv4 checksum we need to check
907 * it in the driver, hardware does not do it for us.
908 * Since L3L4P bit was set we assume a valid IHL value (>=5)
909 * so the total length of IPv4 header is IHL*4 bytes
910 */
911 skb->transport_header = skb->mac_header +
912 sizeof(struct ethhdr) +
913 (ip_hdr(skb)->ihl * 4);
914
915 /* Add 4 bytes for VLAN tagged packets */
916 skb->transport_header += (skb->protocol == htons(ETH_P_8021Q) ||
917 skb->protocol == htons(ETH_P_8021AD))
918 ? VLAN_HLEN : 0;
919
920 rx_udp_csum = udp_csum(skb);
921 iph = ip_hdr(skb);
922 csum = csum_tcpudp_magic(
923 iph->saddr, iph->daddr,
924 (skb->len - skb_transport_offset(skb)),
925 IPPROTO_UDP, rx_udp_csum);
926
927 if (udp_hdr(skb)->check != csum) {
928 vsi->back->hw_csum_rx_error++;
929 return;
930 }
931 }
932
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000933 skb->ip_summed = CHECKSUM_UNNECESSARY;
934}
935
936/**
937 * i40e_rx_hash - returns the hash value from the Rx descriptor
938 * @ring: descriptor ring
939 * @rx_desc: specific descriptor
940 **/
941static inline u32 i40e_rx_hash(struct i40e_ring *ring,
942 union i40e_rx_desc *rx_desc)
943{
Jesse Brandeburg8a494922013-11-20 10:02:49 +0000944 const __le64 rss_mask =
945 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
946 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
947
948 if ((ring->netdev->features & NETIF_F_RXHASH) &&
949 (rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask)
950 return le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
951 else
952 return 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000953}
954
955/**
956 * i40e_clean_rx_irq - Reclaim resources after receive completes
957 * @rx_ring: rx ring to clean
958 * @budget: how many cleans we're allowed
959 *
960 * Returns true if there's any budget left (e.g. the clean is finished)
961 **/
962static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget)
963{
964 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
965 u16 rx_packet_len, rx_header_len, rx_sph, rx_hbo;
966 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
967 const int current_node = numa_node_id();
968 struct i40e_vsi *vsi = rx_ring->vsi;
969 u16 i = rx_ring->next_to_clean;
970 union i40e_rx_desc *rx_desc;
971 u32 rx_error, rx_status;
972 u64 qword;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +0000973 u16 rx_ptype;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000974
975 rx_desc = I40E_RX_DESC(rx_ring, i);
976 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
977 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK)
978 >> I40E_RXD_QW1_STATUS_SHIFT;
979
980 while (rx_status & (1 << I40E_RX_DESC_STATUS_DD_SHIFT)) {
981 union i40e_rx_desc *next_rxd;
982 struct i40e_rx_buffer *rx_bi;
983 struct sk_buff *skb;
984 u16 vlan_tag;
985 if (i40e_rx_is_programming_status(qword)) {
986 i40e_clean_programming_status(rx_ring, rx_desc);
987 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
988 goto next_desc;
989 }
990 rx_bi = &rx_ring->rx_bi[i];
991 skb = rx_bi->skb;
992 prefetch(skb->data);
993
994 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK)
995 >> I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
996 rx_header_len = (qword & I40E_RXD_QW1_LENGTH_HBUF_MASK)
997 >> I40E_RXD_QW1_LENGTH_HBUF_SHIFT;
998 rx_sph = (qword & I40E_RXD_QW1_LENGTH_SPH_MASK)
999 >> I40E_RXD_QW1_LENGTH_SPH_SHIFT;
1000
1001 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK)
1002 >> I40E_RXD_QW1_ERROR_SHIFT;
1003 rx_hbo = rx_error & (1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1004 rx_error &= ~(1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1005
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001006 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1007 I40E_RXD_QW1_PTYPE_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001008 rx_bi->skb = NULL;
1009
1010 /* This memory barrier is needed to keep us from reading
1011 * any other fields out of the rx_desc until we know the
1012 * STATUS_DD bit is set
1013 */
1014 rmb();
1015
1016 /* Get the header and possibly the whole packet
1017 * If this is an skb from previous receive dma will be 0
1018 */
1019 if (rx_bi->dma) {
1020 u16 len;
1021
1022 if (rx_hbo)
1023 len = I40E_RX_HDR_SIZE;
1024 else if (rx_sph)
1025 len = rx_header_len;
1026 else if (rx_packet_len)
1027 len = rx_packet_len; /* 1buf/no split found */
1028 else
1029 len = rx_header_len; /* split always mode */
1030
1031 skb_put(skb, len);
1032 dma_unmap_single(rx_ring->dev,
1033 rx_bi->dma,
1034 rx_ring->rx_buf_len,
1035 DMA_FROM_DEVICE);
1036 rx_bi->dma = 0;
1037 }
1038
1039 /* Get the rest of the data if this was a header split */
1040 if (ring_is_ps_enabled(rx_ring) && rx_packet_len) {
1041
1042 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1043 rx_bi->page,
1044 rx_bi->page_offset,
1045 rx_packet_len);
1046
1047 skb->len += rx_packet_len;
1048 skb->data_len += rx_packet_len;
1049 skb->truesize += rx_packet_len;
1050
1051 if ((page_count(rx_bi->page) == 1) &&
1052 (page_to_nid(rx_bi->page) == current_node))
1053 get_page(rx_bi->page);
1054 else
1055 rx_bi->page = NULL;
1056
1057 dma_unmap_page(rx_ring->dev,
1058 rx_bi->page_dma,
1059 PAGE_SIZE / 2,
1060 DMA_FROM_DEVICE);
1061 rx_bi->page_dma = 0;
1062 }
1063 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1064
1065 if (unlikely(
1066 !(rx_status & (1 << I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
1067 struct i40e_rx_buffer *next_buffer;
1068
1069 next_buffer = &rx_ring->rx_bi[i];
1070
1071 if (ring_is_ps_enabled(rx_ring)) {
1072 rx_bi->skb = next_buffer->skb;
1073 rx_bi->dma = next_buffer->dma;
1074 next_buffer->skb = skb;
1075 next_buffer->dma = 0;
1076 }
1077 rx_ring->rx_stats.non_eop_descs++;
1078 goto next_desc;
1079 }
1080
1081 /* ERR_MASK will only have valid bits if EOP set */
1082 if (unlikely(rx_error & (1 << I40E_RX_DESC_ERROR_RXE_SHIFT))) {
1083 dev_kfree_skb_any(skb);
1084 goto next_desc;
1085 }
1086
1087 skb->rxhash = i40e_rx_hash(rx_ring, rx_desc);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001088 /* probably a little skewed due to removing CRC */
1089 total_rx_bytes += skb->len;
1090 total_rx_packets++;
1091
1092 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001093
1094 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1095
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001096 vlan_tag = rx_status & (1 << I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
1097 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1098 : 0;
1099 i40e_receive_skb(rx_ring, skb, vlan_tag);
1100
1101 rx_ring->netdev->last_rx = jiffies;
1102 budget--;
1103next_desc:
1104 rx_desc->wb.qword1.status_error_len = 0;
1105 if (!budget)
1106 break;
1107
1108 cleaned_count++;
1109 /* return some buffers to hardware, one at a time is too slow */
1110 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
1111 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1112 cleaned_count = 0;
1113 }
1114
1115 /* use prefetched values */
1116 rx_desc = next_rxd;
1117 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
1118 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK)
1119 >> I40E_RXD_QW1_STATUS_SHIFT;
1120 }
1121
1122 rx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001123 u64_stats_update_begin(&rx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +00001124 rx_ring->stats.packets += total_rx_packets;
1125 rx_ring->stats.bytes += total_rx_bytes;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001126 u64_stats_update_end(&rx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001127 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1128 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1129
1130 if (cleaned_count)
1131 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1132
1133 return budget > 0;
1134}
1135
1136/**
1137 * i40e_napi_poll - NAPI polling Rx/Tx cleanup routine
1138 * @napi: napi struct with our devices info in it
1139 * @budget: amount of work driver is allowed to do this pass, in packets
1140 *
1141 * This function will clean all queues associated with a q_vector.
1142 *
1143 * Returns the amount of work done
1144 **/
1145int i40e_napi_poll(struct napi_struct *napi, int budget)
1146{
1147 struct i40e_q_vector *q_vector =
1148 container_of(napi, struct i40e_q_vector, napi);
1149 struct i40e_vsi *vsi = q_vector->vsi;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001150 struct i40e_ring *ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001151 bool clean_complete = true;
1152 int budget_per_ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001153
1154 if (test_bit(__I40E_DOWN, &vsi->state)) {
1155 napi_complete(napi);
1156 return 0;
1157 }
1158
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001159 /* Since the actual Tx work is minimal, we can give the Tx a larger
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001160 * budget and be more aggressive about cleaning up the Tx descriptors.
1161 */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001162 i40e_for_each_ring(ring, q_vector->tx)
1163 clean_complete &= i40e_clean_tx_irq(ring, vsi->work_limit);
1164
1165 /* We attempt to distribute budget to each Rx queue fairly, but don't
1166 * allow the budget to go below 1 because that would exit polling early.
1167 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001168 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001169
1170 i40e_for_each_ring(ring, q_vector->rx)
1171 clean_complete &= i40e_clean_rx_irq(ring, budget_per_ring);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001172
1173 /* If work not completed, return budget and polling will return */
1174 if (!clean_complete)
1175 return budget;
1176
1177 /* Work is done so exit the polling mode and re-enable the interrupt */
1178 napi_complete(napi);
1179 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting) ||
1180 ITR_IS_DYNAMIC(vsi->tx_itr_setting))
1181 i40e_update_dynamic_itr(q_vector);
1182
1183 if (!test_bit(__I40E_DOWN, &vsi->state)) {
1184 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
1185 i40e_irq_dynamic_enable(vsi,
1186 q_vector->v_idx + vsi->base_vector);
1187 } else {
1188 struct i40e_hw *hw = &vsi->back->hw;
1189 /* We re-enable the queue 0 cause, but
1190 * don't worry about dynamic_enable
1191 * because we left it on for the other
1192 * possible interrupts during napi
1193 */
1194 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
1195 qval |= I40E_QINT_RQCTL_CAUSE_ENA_MASK;
1196 wr32(hw, I40E_QINT_RQCTL(0), qval);
1197
1198 qval = rd32(hw, I40E_QINT_TQCTL(0));
1199 qval |= I40E_QINT_TQCTL_CAUSE_ENA_MASK;
1200 wr32(hw, I40E_QINT_TQCTL(0), qval);
Shannon Nelson116a57d2013-09-28 07:13:59 +00001201
1202 i40e_irq_dynamic_enable_icr0(vsi->back);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001203 }
1204 }
1205
1206 return 0;
1207}
1208
1209/**
1210 * i40e_atr - Add a Flow Director ATR filter
1211 * @tx_ring: ring to add programming descriptor to
1212 * @skb: send buffer
1213 * @flags: send flags
1214 * @protocol: wire protocol
1215 **/
1216static void i40e_atr(struct i40e_ring *tx_ring, struct sk_buff *skb,
1217 u32 flags, __be16 protocol)
1218{
1219 struct i40e_filter_program_desc *fdir_desc;
1220 struct i40e_pf *pf = tx_ring->vsi->back;
1221 union {
1222 unsigned char *network;
1223 struct iphdr *ipv4;
1224 struct ipv6hdr *ipv6;
1225 } hdr;
1226 struct tcphdr *th;
1227 unsigned int hlen;
1228 u32 flex_ptype, dtype_cmd;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001229 u16 i;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001230
1231 /* make sure ATR is enabled */
1232 if (!(pf->flags & I40E_FLAG_FDIR_ATR_ENABLED))
1233 return;
1234
1235 /* if sampling is disabled do nothing */
1236 if (!tx_ring->atr_sample_rate)
1237 return;
1238
1239 tx_ring->atr_count++;
1240
1241 /* snag network header to get L4 type and address */
1242 hdr.network = skb_network_header(skb);
1243
1244 /* Currently only IPv4/IPv6 with TCP is supported */
1245 if (protocol == htons(ETH_P_IP)) {
1246 if (hdr.ipv4->protocol != IPPROTO_TCP)
1247 return;
1248
1249 /* access ihl as a u8 to avoid unaligned access on ia64 */
1250 hlen = (hdr.network[0] & 0x0F) << 2;
1251 } else if (protocol == htons(ETH_P_IPV6)) {
1252 if (hdr.ipv6->nexthdr != IPPROTO_TCP)
1253 return;
1254
1255 hlen = sizeof(struct ipv6hdr);
1256 } else {
1257 return;
1258 }
1259
1260 th = (struct tcphdr *)(hdr.network + hlen);
1261
1262 /* sample on all syn/fin packets or once every atr sample rate */
1263 if (!th->fin && !th->syn && (tx_ring->atr_count < tx_ring->atr_sample_rate))
1264 return;
1265
1266 tx_ring->atr_count = 0;
1267
1268 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001269 i = tx_ring->next_to_use;
1270 fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
1271
1272 i++;
1273 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001274
1275 flex_ptype = (tx_ring->queue_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
1276 I40E_TXD_FLTR_QW0_QINDEX_MASK;
1277 flex_ptype |= (protocol == htons(ETH_P_IP)) ?
1278 (I40E_FILTER_PCTYPE_NONF_IPV4_TCP <<
1279 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) :
1280 (I40E_FILTER_PCTYPE_NONF_IPV6_TCP <<
1281 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT);
1282
1283 flex_ptype |= tx_ring->vsi->id << I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
1284
1285 dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG;
1286
1287 dtype_cmd |= th->fin ?
1288 (I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
1289 I40E_TXD_FLTR_QW1_PCMD_SHIFT) :
1290 (I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
1291 I40E_TXD_FLTR_QW1_PCMD_SHIFT);
1292
1293 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX <<
1294 I40E_TXD_FLTR_QW1_DEST_SHIFT;
1295
1296 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID <<
1297 I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT;
1298
1299 fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(flex_ptype);
1300 fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dtype_cmd);
1301}
1302
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001303/**
1304 * i40e_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
1305 * @skb: send buffer
1306 * @tx_ring: ring to send buffer on
1307 * @flags: the tx flags to be set
1308 *
1309 * Checks the skb and set up correspondingly several generic transmit flags
1310 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1311 *
1312 * Returns error code indicate the frame should be dropped upon error and the
1313 * otherwise returns 0 to indicate the flags has been set properly.
1314 **/
1315static int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
1316 struct i40e_ring *tx_ring,
1317 u32 *flags)
1318{
1319 __be16 protocol = skb->protocol;
1320 u32 tx_flags = 0;
1321
1322 /* if we have a HW VLAN tag being added, default to the HW one */
1323 if (vlan_tx_tag_present(skb)) {
1324 tx_flags |= vlan_tx_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
1325 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1326 /* else if it is a SW VLAN, check the next protocol and store the tag */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001327 } else if (protocol == htons(ETH_P_8021Q)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001328 struct vlan_hdr *vhdr, _vhdr;
1329 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1330 if (!vhdr)
1331 return -EINVAL;
1332
1333 protocol = vhdr->h_vlan_encapsulated_proto;
1334 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1335 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1336 }
1337
1338 /* Insert 802.1p priority into VLAN header */
1339 if ((tx_ring->vsi->back->flags & I40E_FLAG_DCB_ENABLED) &&
1340 ((tx_flags & (I40E_TX_FLAGS_HW_VLAN | I40E_TX_FLAGS_SW_VLAN)) ||
1341 (skb->priority != TC_PRIO_CONTROL))) {
1342 tx_flags &= ~I40E_TX_FLAGS_VLAN_PRIO_MASK;
1343 tx_flags |= (skb->priority & 0x7) <<
1344 I40E_TX_FLAGS_VLAN_PRIO_SHIFT;
1345 if (tx_flags & I40E_TX_FLAGS_SW_VLAN) {
1346 struct vlan_ethhdr *vhdr;
1347 if (skb_header_cloned(skb) &&
1348 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
1349 return -ENOMEM;
1350 vhdr = (struct vlan_ethhdr *)skb->data;
1351 vhdr->h_vlan_TCI = htons(tx_flags >>
1352 I40E_TX_FLAGS_VLAN_SHIFT);
1353 } else {
1354 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1355 }
1356 }
1357 *flags = tx_flags;
1358 return 0;
1359}
1360
1361/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001362 * i40e_tso - set up the tso context descriptor
1363 * @tx_ring: ptr to the ring to send
1364 * @skb: ptr to the skb we're sending
1365 * @tx_flags: the collected send information
1366 * @protocol: the send protocol
1367 * @hdr_len: ptr to the size of the packet header
1368 * @cd_tunneling: ptr to context descriptor bits
1369 *
1370 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1371 **/
1372static int i40e_tso(struct i40e_ring *tx_ring, struct sk_buff *skb,
1373 u32 tx_flags, __be16 protocol, u8 *hdr_len,
1374 u64 *cd_type_cmd_tso_mss, u32 *cd_tunneling)
1375{
1376 u32 cd_cmd, cd_tso_len, cd_mss;
1377 struct tcphdr *tcph;
1378 struct iphdr *iph;
1379 u32 l4len;
1380 int err;
1381 struct ipv6hdr *ipv6h;
1382
1383 if (!skb_is_gso(skb))
1384 return 0;
1385
1386 if (skb_header_cloned(skb)) {
1387 err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
1388 if (err)
1389 return err;
1390 }
1391
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001392 if (protocol == htons(ETH_P_IP)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001393 iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
1394 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1395 iph->tot_len = 0;
1396 iph->check = 0;
1397 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1398 0, IPPROTO_TCP, 0);
1399 } else if (skb_is_gso_v6(skb)) {
1400
1401 ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb)
1402 : ipv6_hdr(skb);
1403 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1404 ipv6h->payload_len = 0;
1405 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
1406 0, IPPROTO_TCP, 0);
1407 }
1408
1409 l4len = skb->encapsulation ? inner_tcp_hdrlen(skb) : tcp_hdrlen(skb);
1410 *hdr_len = (skb->encapsulation
1411 ? (skb_inner_transport_header(skb) - skb->data)
1412 : skb_transport_offset(skb)) + l4len;
1413
1414 /* find the field values */
1415 cd_cmd = I40E_TX_CTX_DESC_TSO;
1416 cd_tso_len = skb->len - *hdr_len;
1417 cd_mss = skb_shinfo(skb)->gso_size;
1418 *cd_type_cmd_tso_mss |= ((u64)cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT)
1419 | ((u64)cd_tso_len
1420 << I40E_TXD_CTX_QW1_TSO_LEN_SHIFT)
1421 | ((u64)cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
1422 return 1;
1423}
1424
1425/**
1426 * i40e_tx_enable_csum - Enable Tx checksum offloads
1427 * @skb: send buffer
1428 * @tx_flags: Tx flags currently set
1429 * @td_cmd: Tx descriptor command bits to set
1430 * @td_offset: Tx descriptor header offsets to set
1431 * @cd_tunneling: ptr to context desc bits
1432 **/
1433static void i40e_tx_enable_csum(struct sk_buff *skb, u32 tx_flags,
1434 u32 *td_cmd, u32 *td_offset,
1435 struct i40e_ring *tx_ring,
1436 u32 *cd_tunneling)
1437{
1438 struct ipv6hdr *this_ipv6_hdr;
1439 unsigned int this_tcp_hdrlen;
1440 struct iphdr *this_ip_hdr;
1441 u32 network_hdr_len;
1442 u8 l4_hdr = 0;
1443
1444 if (skb->encapsulation) {
1445 network_hdr_len = skb_inner_network_header_len(skb);
1446 this_ip_hdr = inner_ip_hdr(skb);
1447 this_ipv6_hdr = inner_ipv6_hdr(skb);
1448 this_tcp_hdrlen = inner_tcp_hdrlen(skb);
1449
1450 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1451
1452 if (tx_flags & I40E_TX_FLAGS_TSO) {
1453 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV4;
1454 ip_hdr(skb)->check = 0;
1455 } else {
1456 *cd_tunneling |=
1457 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1458 }
1459 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1460 if (tx_flags & I40E_TX_FLAGS_TSO) {
1461 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV6;
1462 ip_hdr(skb)->check = 0;
1463 } else {
1464 *cd_tunneling |=
1465 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1466 }
1467 }
1468
1469 /* Now set the ctx descriptor fields */
1470 *cd_tunneling |= (skb_network_header_len(skb) >> 2) <<
1471 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT |
1472 I40E_TXD_CTX_UDP_TUNNELING |
1473 ((skb_inner_network_offset(skb) -
1474 skb_transport_offset(skb)) >> 1) <<
1475 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
1476
1477 } else {
1478 network_hdr_len = skb_network_header_len(skb);
1479 this_ip_hdr = ip_hdr(skb);
1480 this_ipv6_hdr = ipv6_hdr(skb);
1481 this_tcp_hdrlen = tcp_hdrlen(skb);
1482 }
1483
1484 /* Enable IP checksum offloads */
1485 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1486 l4_hdr = this_ip_hdr->protocol;
1487 /* the stack computes the IP header already, the only time we
1488 * need the hardware to recompute it is in the case of TSO.
1489 */
1490 if (tx_flags & I40E_TX_FLAGS_TSO) {
1491 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4_CSUM;
1492 this_ip_hdr->check = 0;
1493 } else {
1494 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4;
1495 }
1496 /* Now set the td_offset for IP header length */
1497 *td_offset = (network_hdr_len >> 2) <<
1498 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1499 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1500 l4_hdr = this_ipv6_hdr->nexthdr;
1501 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
1502 /* Now set the td_offset for IP header length */
1503 *td_offset = (network_hdr_len >> 2) <<
1504 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1505 }
1506 /* words in MACLEN + dwords in IPLEN + dwords in L4Len */
1507 *td_offset |= (skb_network_offset(skb) >> 1) <<
1508 I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1509
1510 /* Enable L4 checksum offloads */
1511 switch (l4_hdr) {
1512 case IPPROTO_TCP:
1513 /* enable checksum offloads */
1514 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1515 *td_offset |= (this_tcp_hdrlen >> 2) <<
1516 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1517 break;
1518 case IPPROTO_SCTP:
1519 /* enable SCTP checksum offload */
1520 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
1521 *td_offset |= (sizeof(struct sctphdr) >> 2) <<
1522 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1523 break;
1524 case IPPROTO_UDP:
1525 /* enable UDP checksum offload */
1526 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
1527 *td_offset |= (sizeof(struct udphdr) >> 2) <<
1528 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1529 break;
1530 default:
1531 break;
1532 }
1533}
1534
1535/**
1536 * i40e_create_tx_ctx Build the Tx context descriptor
1537 * @tx_ring: ring to create the descriptor on
1538 * @cd_type_cmd_tso_mss: Quad Word 1
1539 * @cd_tunneling: Quad Word 0 - bits 0-31
1540 * @cd_l2tag2: Quad Word 0 - bits 32-63
1541 **/
1542static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
1543 const u64 cd_type_cmd_tso_mss,
1544 const u32 cd_tunneling, const u32 cd_l2tag2)
1545{
1546 struct i40e_tx_context_desc *context_desc;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001547 int i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001548
1549 if (!cd_type_cmd_tso_mss && !cd_tunneling && !cd_l2tag2)
1550 return;
1551
1552 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001553 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
1554
1555 i++;
1556 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001557
1558 /* cpu_to_le32 and assign to struct fields */
1559 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
1560 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
1561 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
1562}
1563
1564/**
1565 * i40e_tx_map - Build the Tx descriptor
1566 * @tx_ring: ring to send buffer on
1567 * @skb: send buffer
1568 * @first: first buffer info buffer to use
1569 * @tx_flags: collected send information
1570 * @hdr_len: size of the packet header
1571 * @td_cmd: the command field in the descriptor
1572 * @td_offset: offset for checksum or crc
1573 **/
1574static void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
1575 struct i40e_tx_buffer *first, u32 tx_flags,
1576 const u8 hdr_len, u32 td_cmd, u32 td_offset)
1577{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001578 unsigned int data_len = skb->data_len;
1579 unsigned int size = skb_headlen(skb);
Alexander Duycka5e9c572013-09-28 06:00:27 +00001580 struct skb_frag_struct *frag;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001581 struct i40e_tx_buffer *tx_bi;
1582 struct i40e_tx_desc *tx_desc;
Alexander Duycka5e9c572013-09-28 06:00:27 +00001583 u16 i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001584 u32 td_tag = 0;
1585 dma_addr_t dma;
1586 u16 gso_segs;
1587
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001588 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
1589 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
1590 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
1591 I40E_TX_FLAGS_VLAN_SHIFT;
1592 }
1593
Alexander Duycka5e9c572013-09-28 06:00:27 +00001594 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
1595 gso_segs = skb_shinfo(skb)->gso_segs;
1596 else
1597 gso_segs = 1;
1598
1599 /* multiply data chunks by size of headers */
1600 first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
1601 first->gso_segs = gso_segs;
1602 first->skb = skb;
1603 first->tx_flags = tx_flags;
1604
1605 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
1606
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001607 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +00001608 tx_bi = first;
1609
1610 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
1611 if (dma_mapping_error(tx_ring->dev, dma))
1612 goto dma_error;
1613
1614 /* record length, and DMA address */
1615 dma_unmap_len_set(tx_bi, len, size);
1616 dma_unmap_addr_set(tx_bi, dma, dma);
1617
1618 tx_desc->buffer_addr = cpu_to_le64(dma);
1619
1620 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001621 tx_desc->cmd_type_offset_bsz =
1622 build_ctob(td_cmd, td_offset,
1623 I40E_MAX_DATA_PER_TXD, td_tag);
1624
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001625 tx_desc++;
1626 i++;
1627 if (i == tx_ring->count) {
1628 tx_desc = I40E_TX_DESC(tx_ring, 0);
1629 i = 0;
1630 }
Alexander Duycka5e9c572013-09-28 06:00:27 +00001631
1632 dma += I40E_MAX_DATA_PER_TXD;
1633 size -= I40E_MAX_DATA_PER_TXD;
1634
1635 tx_desc->buffer_addr = cpu_to_le64(dma);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001636 }
1637
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001638 if (likely(!data_len))
1639 break;
1640
Alexander Duycka5e9c572013-09-28 06:00:27 +00001641 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
1642 size, td_tag);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001643
1644 tx_desc++;
1645 i++;
1646 if (i == tx_ring->count) {
1647 tx_desc = I40E_TX_DESC(tx_ring, 0);
1648 i = 0;
1649 }
1650
Alexander Duycka5e9c572013-09-28 06:00:27 +00001651 size = skb_frag_size(frag);
1652 data_len -= size;
1653
1654 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
1655 DMA_TO_DEVICE);
1656
1657 tx_bi = &tx_ring->tx_bi[i];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001658 }
1659
Alexander Duycka5e9c572013-09-28 06:00:27 +00001660 tx_desc->cmd_type_offset_bsz =
1661 build_ctob(td_cmd, td_offset, size, td_tag) |
1662 cpu_to_le64((u64)I40E_TXD_CMD << I40E_TXD_QW1_CMD_SHIFT);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001663
Alexander Duyck7070ce02013-09-28 06:00:37 +00001664 netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
1665 tx_ring->queue_index),
1666 first->bytecount);
1667
Alexander Duycka5e9c572013-09-28 06:00:27 +00001668 /* set the timestamp */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001669 first->time_stamp = jiffies;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001670
1671 /* Force memory writes to complete before letting h/w
1672 * know there are new descriptors to fetch. (Only
1673 * applicable for weak-ordered memory model archs,
1674 * such as IA-64).
1675 */
1676 wmb();
1677
Alexander Duycka5e9c572013-09-28 06:00:27 +00001678 /* set next_to_watch value indicating a packet is present */
1679 first->next_to_watch = tx_desc;
1680
1681 i++;
1682 if (i == tx_ring->count)
1683 i = 0;
1684
1685 tx_ring->next_to_use = i;
1686
1687 /* notify HW of packet */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001688 writel(i, tx_ring->tail);
Alexander Duycka5e9c572013-09-28 06:00:27 +00001689
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001690 return;
1691
1692dma_error:
Alexander Duycka5e9c572013-09-28 06:00:27 +00001693 dev_info(tx_ring->dev, "TX DMA map failed\n");
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001694
1695 /* clear dma mappings for failed tx_bi map */
1696 for (;;) {
1697 tx_bi = &tx_ring->tx_bi[i];
Alexander Duycka5e9c572013-09-28 06:00:27 +00001698 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001699 if (tx_bi == first)
1700 break;
1701 if (i == 0)
1702 i = tx_ring->count;
1703 i--;
1704 }
1705
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001706 tx_ring->next_to_use = i;
1707}
1708
1709/**
1710 * __i40e_maybe_stop_tx - 2nd level check for tx stop conditions
1711 * @tx_ring: the ring to be checked
1712 * @size: the size buffer we want to assure is available
1713 *
1714 * Returns -EBUSY if a stop is needed, else 0
1715 **/
1716static inline int __i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
1717{
1718 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
1719 smp_mb();
1720
1721 /* Check again in a case another CPU has just made room available. */
1722 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
1723 return -EBUSY;
1724
1725 /* A reprieve! - use start_queue because it doesn't call schedule */
1726 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
1727 ++tx_ring->tx_stats.restart_queue;
1728 return 0;
1729}
1730
1731/**
1732 * i40e_maybe_stop_tx - 1st level check for tx stop conditions
1733 * @tx_ring: the ring to be checked
1734 * @size: the size buffer we want to assure is available
1735 *
1736 * Returns 0 if stop is not needed
1737 **/
1738static int i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
1739{
1740 if (likely(I40E_DESC_UNUSED(tx_ring) >= size))
1741 return 0;
1742 return __i40e_maybe_stop_tx(tx_ring, size);
1743}
1744
1745/**
1746 * i40e_xmit_descriptor_count - calculate number of tx descriptors needed
1747 * @skb: send buffer
1748 * @tx_ring: ring to send buffer on
1749 *
1750 * Returns number of data descriptors needed for this skb. Returns 0 to indicate
1751 * there is not enough descriptors available in this ring since we need at least
1752 * one descriptor.
1753 **/
1754static int i40e_xmit_descriptor_count(struct sk_buff *skb,
1755 struct i40e_ring *tx_ring)
1756{
1757#if PAGE_SIZE > I40E_MAX_DATA_PER_TXD
1758 unsigned int f;
1759#endif
1760 int count = 0;
1761
1762 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
1763 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
1764 * + 2 desc gap to keep tail from touching head,
1765 * + 1 desc for context descriptor,
1766 * otherwise try next time
1767 */
1768#if PAGE_SIZE > I40E_MAX_DATA_PER_TXD
1769 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1770 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
1771#else
1772 count += skb_shinfo(skb)->nr_frags;
1773#endif
1774 count += TXD_USE_COUNT(skb_headlen(skb));
1775 if (i40e_maybe_stop_tx(tx_ring, count + 3)) {
1776 tx_ring->tx_stats.tx_busy++;
1777 return 0;
1778 }
1779 return count;
1780}
1781
1782/**
1783 * i40e_xmit_frame_ring - Sends buffer on Tx ring
1784 * @skb: send buffer
1785 * @tx_ring: ring to send buffer on
1786 *
1787 * Returns NETDEV_TX_OK if sent, else an error code
1788 **/
1789static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
1790 struct i40e_ring *tx_ring)
1791{
1792 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
1793 u32 cd_tunneling = 0, cd_l2tag2 = 0;
1794 struct i40e_tx_buffer *first;
1795 u32 td_offset = 0;
1796 u32 tx_flags = 0;
1797 __be16 protocol;
1798 u32 td_cmd = 0;
1799 u8 hdr_len = 0;
1800 int tso;
1801 if (0 == i40e_xmit_descriptor_count(skb, tx_ring))
1802 return NETDEV_TX_BUSY;
1803
1804 /* prepare the xmit flags */
1805 if (i40e_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
1806 goto out_drop;
1807
1808 /* obtain protocol of skb */
1809 protocol = skb->protocol;
1810
1811 /* record the location of the first descriptor for this packet */
1812 first = &tx_ring->tx_bi[tx_ring->next_to_use];
1813
1814 /* setup IPv4/IPv6 offloads */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001815 if (protocol == htons(ETH_P_IP))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001816 tx_flags |= I40E_TX_FLAGS_IPV4;
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001817 else if (protocol == htons(ETH_P_IPV6))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001818 tx_flags |= I40E_TX_FLAGS_IPV6;
1819
1820 tso = i40e_tso(tx_ring, skb, tx_flags, protocol, &hdr_len,
1821 &cd_type_cmd_tso_mss, &cd_tunneling);
1822
1823 if (tso < 0)
1824 goto out_drop;
1825 else if (tso)
1826 tx_flags |= I40E_TX_FLAGS_TSO;
1827
1828 skb_tx_timestamp(skb);
1829
Alexander Duyckb1941302013-09-28 06:00:32 +00001830 /* always enable CRC insertion offload */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001831 td_cmd |= I40E_TX_DESC_CMD_ICRC;
1832
Alexander Duyckb1941302013-09-28 06:00:32 +00001833 /* Always offload the checksum, since it's in the data descriptor */
1834 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1835 tx_flags |= I40E_TX_FLAGS_CSUM;
1836
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001837 i40e_tx_enable_csum(skb, tx_flags, &td_cmd, &td_offset,
1838 tx_ring, &cd_tunneling);
Alexander Duyckb1941302013-09-28 06:00:32 +00001839 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001840
1841 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
1842 cd_tunneling, cd_l2tag2);
1843
1844 /* Add Flow Director ATR if it's enabled.
1845 *
1846 * NOTE: this must always be directly before the data descriptor.
1847 */
1848 i40e_atr(tx_ring, skb, tx_flags, protocol);
1849
1850 i40e_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
1851 td_cmd, td_offset);
1852
1853 i40e_maybe_stop_tx(tx_ring, DESC_NEEDED);
1854
1855 return NETDEV_TX_OK;
1856
1857out_drop:
1858 dev_kfree_skb_any(skb);
1859 return NETDEV_TX_OK;
1860}
1861
1862/**
1863 * i40e_lan_xmit_frame - Selects the correct VSI and Tx queue to send buffer
1864 * @skb: send buffer
1865 * @netdev: network interface device structure
1866 *
1867 * Returns NETDEV_TX_OK if sent, else an error code
1868 **/
1869netdev_tx_t i40e_lan_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
1870{
1871 struct i40e_netdev_priv *np = netdev_priv(netdev);
1872 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck9f65e152013-09-28 06:00:58 +00001873 struct i40e_ring *tx_ring = vsi->tx_rings[skb->queue_mapping];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001874
1875 /* hardware can't handle really short frames, hardware padding works
1876 * beyond this point
1877 */
1878 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
1879 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
1880 return NETDEV_TX_OK;
1881 skb->len = I40E_MIN_TX_LEN;
1882 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
1883 }
1884
1885 return i40e_xmit_frame_ring(skb, tx_ring);
1886}