blob: d26d6836689da4d3febaf686d76fe1fd58bb6e02 [file] [log] [blame]
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001/*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
Greg Rosedc641b72013-12-18 13:45:51 +00004 * Copyright(c) 2013 - 2014 Intel Corporation.
Jesse Brandeburgfd0a05c2013-09-11 08:39: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 *
Greg Rosedc641b72013-12-18 13:45:51 +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/>.
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000017 *
18 * 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
Mitch Williams1c112a62014-04-04 04:43:06 +000027#include <linux/prefetch.h>
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000028#include "i40e.h"
Jesse Brandeburg206812b2014-02-12 01:45:33 +000029#include "i40e_prototype.h"
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000030
31static inline __le64 build_ctob(u32 td_cmd, u32 td_offset, unsigned int size,
32 u32 td_tag)
33{
34 return cpu_to_le64(I40E_TX_DESC_DTYPE_DATA |
35 ((u64)td_cmd << I40E_TXD_QW1_CMD_SHIFT) |
36 ((u64)td_offset << I40E_TXD_QW1_OFFSET_SHIFT) |
37 ((u64)size << I40E_TXD_QW1_TX_BUF_SZ_SHIFT) |
38 ((u64)td_tag << I40E_TXD_QW1_L2TAG1_SHIFT));
39}
40
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000041#define I40E_TXD_CMD (I40E_TX_DESC_CMD_EOP | I40E_TX_DESC_CMD_RS)
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000042#define I40E_FD_CLEAN_DELAY 10
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000043/**
44 * i40e_program_fdir_filter - Program a Flow Director filter
Joseph Gasparakis17a73f62014-02-12 01:45:30 +000045 * @fdir_data: Packet data that will be filter parameters
46 * @raw_packet: the pre-allocated packet buffer for FDir
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000047 * @pf: The pf pointer
48 * @add: True for add/update, False for remove
49 **/
Joseph Gasparakis17a73f62014-02-12 01:45:30 +000050int i40e_program_fdir_filter(struct i40e_fdir_filter *fdir_data, u8 *raw_packet,
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000051 struct i40e_pf *pf, bool add)
52{
53 struct i40e_filter_program_desc *fdir_desc;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000054 struct i40e_tx_buffer *tx_buf, *first;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000055 struct i40e_tx_desc *tx_desc;
56 struct i40e_ring *tx_ring;
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +000057 unsigned int fpt, dcc;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000058 struct i40e_vsi *vsi;
59 struct device *dev;
60 dma_addr_t dma;
61 u32 td_cmd = 0;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000062 u16 delay = 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000063 u16 i;
64
65 /* find existing FDIR VSI */
66 vsi = NULL;
Mitch Williams505682c2014-05-20 08:01:37 +000067 for (i = 0; i < pf->num_alloc_vsi; i++)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000068 if (pf->vsi[i] && pf->vsi[i]->type == I40E_VSI_FDIR)
69 vsi = pf->vsi[i];
70 if (!vsi)
71 return -ENOENT;
72
Alexander Duyck9f65e15b2013-09-28 06:00:58 +000073 tx_ring = vsi->tx_rings[0];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000074 dev = tx_ring->dev;
75
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000076 /* we need two descriptors to add/del a filter and we can wait */
77 do {
78 if (I40E_DESC_UNUSED(tx_ring) > 1)
79 break;
80 msleep_interruptible(1);
81 delay++;
82 } while (delay < I40E_FD_CLEAN_DELAY);
83
84 if (!(I40E_DESC_UNUSED(tx_ring) > 1))
85 return -EAGAIN;
86
Joseph Gasparakis17a73f62014-02-12 01:45:30 +000087 dma = dma_map_single(dev, raw_packet,
88 I40E_FDIR_MAX_RAW_PACKET_SIZE, DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000089 if (dma_mapping_error(dev, dma))
90 goto dma_fail;
91
92 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +000093 i = tx_ring->next_to_use;
94 fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000095 first = &tx_ring->tx_bi[i];
96 memset(first, 0, sizeof(struct i40e_tx_buffer));
Alexander Duyckfc4ac672013-09-28 06:00:22 +000097
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +000098 tx_ring->next_to_use = ((i + 1) < tx_ring->count) ? i + 1 : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +000099
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000100 fpt = (fdir_data->q_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
101 I40E_TXD_FLTR_QW0_QINDEX_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000102
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000103 fpt |= (fdir_data->flex_off << I40E_TXD_FLTR_QW0_FLEXOFF_SHIFT) &
104 I40E_TXD_FLTR_QW0_FLEXOFF_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000105
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000106 fpt |= (fdir_data->pctype << I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) &
107 I40E_TXD_FLTR_QW0_PCTYPE_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000108
109 /* Use LAN VSI Id if not programmed by user */
110 if (fdir_data->dest_vsi == 0)
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000111 fpt |= (pf->vsi[pf->lan_vsi]->id) <<
112 I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000113 else
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000114 fpt |= ((u32)fdir_data->dest_vsi <<
115 I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT) &
116 I40E_TXD_FLTR_QW0_DEST_VSI_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000117
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000118 dcc = I40E_TX_DESC_DTYPE_FILTER_PROG;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000119
120 if (add)
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000121 dcc |= I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
122 I40E_TXD_FLTR_QW1_PCMD_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000123 else
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000124 dcc |= I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
125 I40E_TXD_FLTR_QW1_PCMD_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000126
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000127 dcc |= (fdir_data->dest_ctl << I40E_TXD_FLTR_QW1_DEST_SHIFT) &
128 I40E_TXD_FLTR_QW1_DEST_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000129
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000130 dcc |= (fdir_data->fd_status << I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT) &
131 I40E_TXD_FLTR_QW1_FD_STATUS_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000132
133 if (fdir_data->cnt_index != 0) {
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000134 dcc |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
135 dcc |= ((u32)fdir_data->cnt_index <<
136 I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +0000137 I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000138 }
139
Jesse Brandeburg99753ea2014-06-04 04:22:49 +0000140 fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(fpt);
141 fdir_desc->rsvd = cpu_to_le32(0);
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000142 fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dcc);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000143 fdir_desc->fd_id = cpu_to_le32(fdir_data->fd_id);
144
145 /* Now program a dummy descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000146 i = tx_ring->next_to_use;
147 tx_desc = I40E_TX_DESC(tx_ring, i);
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000148 tx_buf = &tx_ring->tx_bi[i];
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000149
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000150 tx_ring->next_to_use = ((i + 1) < tx_ring->count) ? i + 1 : 0;
151
152 memset(tx_buf, 0, sizeof(struct i40e_tx_buffer));
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000153
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000154 /* record length, and DMA address */
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000155 dma_unmap_len_set(tx_buf, len, I40E_FDIR_MAX_RAW_PACKET_SIZE);
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000156 dma_unmap_addr_set(tx_buf, dma, dma);
157
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000158 tx_desc->buffer_addr = cpu_to_le64(dma);
Jesse Brandeburgeaefbd02013-09-28 07:13:54 +0000159 td_cmd = I40E_TXD_CMD | I40E_TX_DESC_CMD_DUMMY;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000160
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000161 tx_buf->tx_flags = I40E_TX_FLAGS_FD_SB;
162 tx_buf->raw_buf = (void *)raw_packet;
163
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000164 tx_desc->cmd_type_offset_bsz =
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000165 build_ctob(td_cmd, 0, I40E_FDIR_MAX_RAW_PACKET_SIZE, 0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000166
Anjali Singhai Jain298deef2013-11-28 06:39:33 +0000167 /* set the timestamp */
168 tx_buf->time_stamp = jiffies;
169
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000170 /* Force memory writes to complete before letting h/w
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000171 * know there are new descriptors to fetch.
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000172 */
173 wmb();
174
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000175 /* Mark the data descriptor to be watched */
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000176 first->next_to_watch = tx_desc;
Alexander Duyckfc4ac672013-09-28 06:00:22 +0000177
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000178 writel(tx_ring->next_to_use, tx_ring->tail);
179 return 0;
180
181dma_fail:
182 return -1;
183}
184
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000185#define IP_HEADER_OFFSET 14
186#define I40E_UDPIP_DUMMY_PACKET_LEN 42
187/**
188 * i40e_add_del_fdir_udpv4 - Add/Remove UDPv4 filters
189 * @vsi: pointer to the targeted VSI
190 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000191 * @add: true adds a filter, false removes it
192 *
193 * Returns 0 if the filters were successfully added or removed
194 **/
195static int i40e_add_del_fdir_udpv4(struct i40e_vsi *vsi,
196 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000197 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000198{
199 struct i40e_pf *pf = vsi->back;
200 struct udphdr *udp;
201 struct iphdr *ip;
202 bool err = false;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000203 u8 *raw_packet;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000204 int ret;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000205 static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
206 0x45, 0, 0, 0x1c, 0, 0, 0x40, 0, 0x40, 0x11, 0, 0, 0, 0, 0, 0,
207 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
208
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000209 raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
210 if (!raw_packet)
211 return -ENOMEM;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000212 memcpy(raw_packet, packet, I40E_UDPIP_DUMMY_PACKET_LEN);
213
214 ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
215 udp = (struct udphdr *)(raw_packet + IP_HEADER_OFFSET
216 + sizeof(struct iphdr));
217
218 ip->daddr = fd_data->dst_ip[0];
219 udp->dest = fd_data->dst_port;
220 ip->saddr = fd_data->src_ip[0];
221 udp->source = fd_data->src_port;
222
Kevin Scottb2d36c02014-04-09 05:58:59 +0000223 fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
224 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
225 if (ret) {
226 dev_info(&pf->pdev->dev,
227 "Filter command send failed for PCTYPE %d (ret = %d)\n",
228 fd_data->pctype, ret);
229 err = true;
230 } else {
231 dev_info(&pf->pdev->dev,
232 "Filter OK for PCTYPE %d (ret = %d)\n",
233 fd_data->pctype, ret);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000234 }
235
236 return err ? -EOPNOTSUPP : 0;
237}
238
239#define I40E_TCPIP_DUMMY_PACKET_LEN 54
240/**
241 * i40e_add_del_fdir_tcpv4 - Add/Remove TCPv4 filters
242 * @vsi: pointer to the targeted VSI
243 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000244 * @add: true adds a filter, false removes it
245 *
246 * Returns 0 if the filters were successfully added or removed
247 **/
248static int i40e_add_del_fdir_tcpv4(struct i40e_vsi *vsi,
249 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000250 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000251{
252 struct i40e_pf *pf = vsi->back;
253 struct tcphdr *tcp;
254 struct iphdr *ip;
255 bool err = false;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000256 u8 *raw_packet;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000257 int ret;
258 /* Dummy packet */
259 static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
260 0x45, 0, 0, 0x28, 0, 0, 0x40, 0, 0x40, 0x6, 0, 0, 0, 0, 0, 0,
261 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x80, 0x11,
262 0x0, 0x72, 0, 0, 0, 0};
263
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000264 raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
265 if (!raw_packet)
266 return -ENOMEM;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000267 memcpy(raw_packet, packet, I40E_TCPIP_DUMMY_PACKET_LEN);
268
269 ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
270 tcp = (struct tcphdr *)(raw_packet + IP_HEADER_OFFSET
271 + sizeof(struct iphdr));
272
273 ip->daddr = fd_data->dst_ip[0];
274 tcp->dest = fd_data->dst_port;
275 ip->saddr = fd_data->src_ip[0];
276 tcp->source = fd_data->src_port;
277
278 if (add) {
279 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED) {
280 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 flow being applied\n");
281 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
282 }
283 }
284
Kevin Scottb2d36c02014-04-09 05:58:59 +0000285 fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000286 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
287
288 if (ret) {
289 dev_info(&pf->pdev->dev,
290 "Filter command send failed for PCTYPE %d (ret = %d)\n",
291 fd_data->pctype, ret);
292 err = true;
293 } else {
294 dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d (ret = %d)\n",
295 fd_data->pctype, ret);
296 }
297
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000298 return err ? -EOPNOTSUPP : 0;
299}
300
301/**
302 * i40e_add_del_fdir_sctpv4 - Add/Remove SCTPv4 Flow Director filters for
303 * a specific flow spec
304 * @vsi: pointer to the targeted VSI
305 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000306 * @add: true adds a filter, false removes it
307 *
Jean Sacren21d3efd2014-03-17 18:14:39 +0000308 * Always returns -EOPNOTSUPP
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000309 **/
310static int i40e_add_del_fdir_sctpv4(struct i40e_vsi *vsi,
311 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000312 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000313{
314 return -EOPNOTSUPP;
315}
316
317#define I40E_IP_DUMMY_PACKET_LEN 34
318/**
319 * i40e_add_del_fdir_ipv4 - Add/Remove IPv4 Flow Director filters for
320 * a specific flow spec
321 * @vsi: pointer to the targeted VSI
322 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000323 * @add: true adds a filter, false removes it
324 *
325 * Returns 0 if the filters were successfully added or removed
326 **/
327static int i40e_add_del_fdir_ipv4(struct i40e_vsi *vsi,
328 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000329 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000330{
331 struct i40e_pf *pf = vsi->back;
332 struct iphdr *ip;
333 bool err = false;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000334 u8 *raw_packet;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000335 int ret;
336 int i;
337 static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
338 0x45, 0, 0, 0x14, 0, 0, 0x40, 0, 0x40, 0x10, 0, 0, 0, 0, 0, 0,
339 0, 0, 0, 0};
340
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000341 for (i = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
342 i <= I40E_FILTER_PCTYPE_FRAG_IPV4; i++) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000343 raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
344 if (!raw_packet)
345 return -ENOMEM;
346 memcpy(raw_packet, packet, I40E_IP_DUMMY_PACKET_LEN);
347 ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
348
349 ip->saddr = fd_data->src_ip[0];
350 ip->daddr = fd_data->dst_ip[0];
351 ip->protocol = 0;
352
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000353 fd_data->pctype = i;
354 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
355
356 if (ret) {
357 dev_info(&pf->pdev->dev,
358 "Filter command send failed for PCTYPE %d (ret = %d)\n",
359 fd_data->pctype, ret);
360 err = true;
361 } else {
362 dev_info(&pf->pdev->dev,
363 "Filter OK for PCTYPE %d (ret = %d)\n",
364 fd_data->pctype, ret);
365 }
366 }
367
368 return err ? -EOPNOTSUPP : 0;
369}
370
371/**
372 * i40e_add_del_fdir - Build raw packets to add/del fdir filter
373 * @vsi: pointer to the targeted VSI
374 * @cmd: command to get or set RX flow classification rules
375 * @add: true adds a filter, false removes it
376 *
377 **/
378int i40e_add_del_fdir(struct i40e_vsi *vsi,
379 struct i40e_fdir_filter *input, bool add)
380{
381 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000382 int ret;
383
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000384 switch (input->flow_type & ~FLOW_EXT) {
385 case TCP_V4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000386 ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000387 break;
388 case UDP_V4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000389 ret = i40e_add_del_fdir_udpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000390 break;
391 case SCTP_V4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000392 ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000393 break;
394 case IPV4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000395 ret = i40e_add_del_fdir_ipv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000396 break;
397 case IP_USER_FLOW:
398 switch (input->ip4_proto) {
399 case IPPROTO_TCP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000400 ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000401 break;
402 case IPPROTO_UDP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000403 ret = i40e_add_del_fdir_udpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000404 break;
405 case IPPROTO_SCTP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000406 ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000407 break;
408 default:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000409 ret = i40e_add_del_fdir_ipv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000410 break;
411 }
412 break;
413 default:
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +0000414 dev_info(&pf->pdev->dev, "Could not specify spec type %d\n",
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000415 input->flow_type);
416 ret = -EINVAL;
417 }
418
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000419 /* The buffer allocated here is freed by the i40e_clean_tx_ring() */
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000420 return ret;
421}
422
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000423/**
424 * i40e_fd_handle_status - check the Programming Status for FD
425 * @rx_ring: the Rx ring for this descriptor
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000426 * @rx_desc: the Rx descriptor for programming Status, not a packet descriptor.
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000427 * @prog_id: the id originally used for programming
428 *
429 * This is used to verify if the FD programming or invalidation
430 * requested by SW to the HW is successful or not and take actions accordingly.
431 **/
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000432static void i40e_fd_handle_status(struct i40e_ring *rx_ring,
433 union i40e_rx_desc *rx_desc, u8 prog_id)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000434{
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000435 struct i40e_pf *pf = rx_ring->vsi->back;
436 struct pci_dev *pdev = pf->pdev;
437 u32 fcnt_prog, fcnt_avail;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000438 u32 error;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000439 u64 qw;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000440
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000441 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000442 error = (qw & I40E_RX_PROG_STATUS_DESC_QW1_ERROR_MASK) >>
443 I40E_RX_PROG_STATUS_DESC_QW1_ERROR_SHIFT;
444
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000445 if (error == (0x1 << I40E_RX_PROG_STATUS_DESC_FD_TBL_FULL_SHIFT)) {
446 dev_warn(&pdev->dev, "ntuple filter loc = %d, could not be added\n",
447 rx_desc->wb.qword0.hi_dword.fd_id);
448
449 /* filter programming failed most likely due to table full */
Anjali Singhai Jain12957382014-06-04 04:22:47 +0000450 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
451 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000452 /* If ATR is running fcnt_prog can quickly change,
453 * if we are very close to full, it makes sense to disable
454 * FD ATR/SB and then re-enable it when there is room.
455 */
456 if (fcnt_prog >= (fcnt_avail - I40E_FDIR_BUFFER_FULL_MARGIN)) {
457 /* Turn off ATR first */
Anjali Singhai Jainb814ba62014-06-04 20:41:48 +0000458 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
459 !(pf->auto_disable_flags &
460 I40E_FLAG_FD_ATR_ENABLED)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000461 dev_warn(&pdev->dev, "FD filter space full, ATR for further flows will be turned off\n");
462 pf->auto_disable_flags |=
463 I40E_FLAG_FD_ATR_ENABLED;
464 pf->flags |= I40E_FLAG_FDIR_REQUIRES_REINIT;
Anjali Singhai Jainb814ba62014-06-04 20:41:48 +0000465 } else if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
466 !(pf->auto_disable_flags &
467 I40E_FLAG_FD_SB_ENABLED)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000468 dev_warn(&pdev->dev, "FD filter space full, new ntuple rules will not be added\n");
469 pf->auto_disable_flags |=
470 I40E_FLAG_FD_SB_ENABLED;
471 pf->flags |= I40E_FLAG_FDIR_REQUIRES_REINIT;
472 }
473 } else {
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +0000474 dev_info(&pdev->dev, "FD filter programming error\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000475 }
476 } else if (error ==
477 (0x1 << I40E_RX_PROG_STATUS_DESC_NO_FD_ENTRY_SHIFT)) {
Anjali Singhai Jain13c28842014-03-06 09:00:04 +0000478 if (I40E_DEBUG_FD & pf->hw.debug_mask)
479 dev_info(&pdev->dev, "ntuple filter loc = %d, could not be removed\n",
480 rx_desc->wb.qword0.hi_dword.fd_id);
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000481 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000482}
483
484/**
Alexander Duycka5e9c572013-09-28 06:00:27 +0000485 * i40e_unmap_and_free_tx_resource - Release a Tx buffer
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000486 * @ring: the ring that owns the buffer
487 * @tx_buffer: the buffer to free
488 **/
Alexander Duycka5e9c572013-09-28 06:00:27 +0000489static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
490 struct i40e_tx_buffer *tx_buffer)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000491{
Alexander Duycka5e9c572013-09-28 06:00:27 +0000492 if (tx_buffer->skb) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000493 if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
494 kfree(tx_buffer->raw_buf);
495 else
496 dev_kfree_skb_any(tx_buffer->skb);
497
Alexander Duycka5e9c572013-09-28 06:00:27 +0000498 if (dma_unmap_len(tx_buffer, len))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000499 dma_unmap_single(ring->dev,
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000500 dma_unmap_addr(tx_buffer, dma),
501 dma_unmap_len(tx_buffer, len),
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000502 DMA_TO_DEVICE);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000503 } else if (dma_unmap_len(tx_buffer, len)) {
504 dma_unmap_page(ring->dev,
505 dma_unmap_addr(tx_buffer, dma),
506 dma_unmap_len(tx_buffer, len),
507 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000508 }
Alexander Duycka5e9c572013-09-28 06:00:27 +0000509 tx_buffer->next_to_watch = NULL;
510 tx_buffer->skb = NULL;
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000511 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000512 /* tx_buffer must be completely set up in the transmit path */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000513}
514
515/**
516 * i40e_clean_tx_ring - Free any empty Tx buffers
517 * @tx_ring: ring to be cleaned
518 **/
519void i40e_clean_tx_ring(struct i40e_ring *tx_ring)
520{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000521 unsigned long bi_size;
522 u16 i;
523
524 /* ring already cleared, nothing to do */
525 if (!tx_ring->tx_bi)
526 return;
527
528 /* Free all the Tx ring sk_buffs */
Alexander Duycka5e9c572013-09-28 06:00:27 +0000529 for (i = 0; i < tx_ring->count; i++)
530 i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000531
532 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
533 memset(tx_ring->tx_bi, 0, bi_size);
534
535 /* Zero out the descriptor ring */
536 memset(tx_ring->desc, 0, tx_ring->size);
537
538 tx_ring->next_to_use = 0;
539 tx_ring->next_to_clean = 0;
Alexander Duyck7070ce02013-09-28 06:00:37 +0000540
541 if (!tx_ring->netdev)
542 return;
543
544 /* cleanup Tx queue statistics */
545 netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev,
546 tx_ring->queue_index));
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000547}
548
549/**
550 * i40e_free_tx_resources - Free Tx resources per queue
551 * @tx_ring: Tx descriptor ring for a specific queue
552 *
553 * Free all transmit software resources
554 **/
555void i40e_free_tx_resources(struct i40e_ring *tx_ring)
556{
557 i40e_clean_tx_ring(tx_ring);
558 kfree(tx_ring->tx_bi);
559 tx_ring->tx_bi = NULL;
560
561 if (tx_ring->desc) {
562 dma_free_coherent(tx_ring->dev, tx_ring->size,
563 tx_ring->desc, tx_ring->dma);
564 tx_ring->desc = NULL;
565 }
566}
567
568/**
569 * i40e_get_tx_pending - how many tx descriptors not processed
570 * @tx_ring: the ring of descriptors
571 *
572 * Since there is no access to the ring head register
573 * in XL710, we need to use our local copies
574 **/
575static u32 i40e_get_tx_pending(struct i40e_ring *ring)
576{
577 u32 ntu = ((ring->next_to_clean <= ring->next_to_use)
578 ? ring->next_to_use
579 : ring->next_to_use + ring->count);
580 return ntu - ring->next_to_clean;
581}
582
583/**
584 * i40e_check_tx_hang - Is there a hang in the Tx queue
585 * @tx_ring: the ring of descriptors
586 **/
587static bool i40e_check_tx_hang(struct i40e_ring *tx_ring)
588{
589 u32 tx_pending = i40e_get_tx_pending(tx_ring);
590 bool ret = false;
591
592 clear_check_for_tx_hang(tx_ring);
593
594 /* Check for a hung queue, but be thorough. This verifies
595 * that a transmit has been completed since the previous
596 * check AND there is at least one packet pending. The
597 * ARMED bit is set to indicate a potential hang. The
598 * bit is cleared if a pause frame is received to remove
599 * false hang detection due to PFC or 802.3x frames. By
600 * requiring this to fail twice we avoid races with
601 * PFC clearing the ARMED bit and conditions where we
602 * run the check_tx_hang logic with a transmit completion
603 * pending but without time to complete it yet.
604 */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000605 if ((tx_ring->tx_stats.tx_done_old == tx_ring->stats.packets) &&
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000606 tx_pending) {
607 /* make sure it is true for two checks in a row */
608 ret = test_and_set_bit(__I40E_HANG_CHECK_ARMED,
609 &tx_ring->state);
610 } else {
611 /* update completed stats and disarm the hang check */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000612 tx_ring->tx_stats.tx_done_old = tx_ring->stats.packets;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000613 clear_bit(__I40E_HANG_CHECK_ARMED, &tx_ring->state);
614 }
615
616 return ret;
617}
618
619/**
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000620 * i40e_get_head - Retrieve head from head writeback
621 * @tx_ring: tx ring to fetch head of
622 *
623 * Returns value of Tx ring head based on value stored
624 * in head write-back location
625 **/
626static inline u32 i40e_get_head(struct i40e_ring *tx_ring)
627{
628 void *head = (struct i40e_tx_desc *)tx_ring->desc + tx_ring->count;
629
630 return le32_to_cpu(*(volatile __le32 *)head);
631}
632
633/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000634 * i40e_clean_tx_irq - Reclaim resources after transmit completes
635 * @tx_ring: tx ring to clean
636 * @budget: how many cleans we're allowed
637 *
638 * Returns true if there's any budget left (e.g. the clean is finished)
639 **/
640static bool i40e_clean_tx_irq(struct i40e_ring *tx_ring, int budget)
641{
642 u16 i = tx_ring->next_to_clean;
643 struct i40e_tx_buffer *tx_buf;
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000644 struct i40e_tx_desc *tx_head;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000645 struct i40e_tx_desc *tx_desc;
646 unsigned int total_packets = 0;
647 unsigned int total_bytes = 0;
648
649 tx_buf = &tx_ring->tx_bi[i];
650 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000651 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000652
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000653 tx_head = I40E_TX_DESC(tx_ring, i40e_get_head(tx_ring));
654
Alexander Duycka5e9c572013-09-28 06:00:27 +0000655 do {
656 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000657
658 /* if next_to_watch is not set then there is no work pending */
659 if (!eop_desc)
660 break;
661
Alexander Duycka5e9c572013-09-28 06:00:27 +0000662 /* prevent any other reads prior to eop_desc */
663 read_barrier_depends();
664
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000665 /* we have caught up to head, no work left to do */
666 if (tx_head == tx_desc)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000667 break;
668
Alexander Duyckc304fda2013-09-28 06:00:12 +0000669 /* clear next_to_watch to prevent false hangs */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000670 tx_buf->next_to_watch = NULL;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000671
Alexander Duycka5e9c572013-09-28 06:00:27 +0000672 /* update the statistics for this packet */
673 total_bytes += tx_buf->bytecount;
674 total_packets += tx_buf->gso_segs;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000675
Alexander Duycka5e9c572013-09-28 06:00:27 +0000676 /* free the skb */
677 dev_kfree_skb_any(tx_buf->skb);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000678
Alexander Duycka5e9c572013-09-28 06:00:27 +0000679 /* unmap skb header data */
680 dma_unmap_single(tx_ring->dev,
681 dma_unmap_addr(tx_buf, dma),
682 dma_unmap_len(tx_buf, len),
683 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000684
Alexander Duycka5e9c572013-09-28 06:00:27 +0000685 /* clear tx_buffer data */
686 tx_buf->skb = NULL;
687 dma_unmap_len_set(tx_buf, len, 0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000688
Alexander Duycka5e9c572013-09-28 06:00:27 +0000689 /* unmap remaining buffers */
690 while (tx_desc != eop_desc) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000691
692 tx_buf++;
693 tx_desc++;
694 i++;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000695 if (unlikely(!i)) {
696 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000697 tx_buf = tx_ring->tx_bi;
698 tx_desc = I40E_TX_DESC(tx_ring, 0);
699 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000700
Alexander Duycka5e9c572013-09-28 06:00:27 +0000701 /* unmap any remaining paged data */
702 if (dma_unmap_len(tx_buf, len)) {
703 dma_unmap_page(tx_ring->dev,
704 dma_unmap_addr(tx_buf, dma),
705 dma_unmap_len(tx_buf, len),
706 DMA_TO_DEVICE);
707 dma_unmap_len_set(tx_buf, len, 0);
708 }
709 }
710
711 /* move us one more past the eop_desc for start of next pkt */
712 tx_buf++;
713 tx_desc++;
714 i++;
715 if (unlikely(!i)) {
716 i -= tx_ring->count;
717 tx_buf = tx_ring->tx_bi;
718 tx_desc = I40E_TX_DESC(tx_ring, 0);
719 }
720
721 /* update budget accounting */
722 budget--;
723 } while (likely(budget));
724
725 i += tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000726 tx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000727 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +0000728 tx_ring->stats.bytes += total_bytes;
729 tx_ring->stats.packets += total_packets;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000730 u64_stats_update_end(&tx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000731 tx_ring->q_vector->tx.total_bytes += total_bytes;
732 tx_ring->q_vector->tx.total_packets += total_packets;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000733
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000734 if (check_for_tx_hang(tx_ring) && i40e_check_tx_hang(tx_ring)) {
735 /* schedule immediate reset if we believe we hung */
736 dev_info(tx_ring->dev, "Detected Tx Unit Hang\n"
737 " VSI <%d>\n"
738 " Tx Queue <%d>\n"
739 " next_to_use <%x>\n"
740 " next_to_clean <%x>\n",
741 tx_ring->vsi->seid,
742 tx_ring->queue_index,
743 tx_ring->next_to_use, i);
744 dev_info(tx_ring->dev, "tx_bi[next_to_clean]\n"
745 " time_stamp <%lx>\n"
746 " jiffies <%lx>\n",
747 tx_ring->tx_bi[i].time_stamp, jiffies);
748
749 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
750
751 dev_info(tx_ring->dev,
752 "tx hang detected on queue %d, resetting adapter\n",
753 tx_ring->queue_index);
754
755 tx_ring->netdev->netdev_ops->ndo_tx_timeout(tx_ring->netdev);
756
757 /* the adapter is about to reset, no point in enabling stuff */
758 return true;
759 }
760
Alexander Duyck7070ce02013-09-28 06:00:37 +0000761 netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
762 tx_ring->queue_index),
763 total_packets, total_bytes);
764
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000765#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
766 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
767 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
768 /* Make sure that anybody stopping the queue after this
769 * sees the new next_to_clean.
770 */
771 smp_mb();
772 if (__netif_subqueue_stopped(tx_ring->netdev,
773 tx_ring->queue_index) &&
774 !test_bit(__I40E_DOWN, &tx_ring->vsi->state)) {
775 netif_wake_subqueue(tx_ring->netdev,
776 tx_ring->queue_index);
777 ++tx_ring->tx_stats.restart_queue;
778 }
779 }
780
781 return budget > 0;
782}
783
784/**
785 * i40e_set_new_dynamic_itr - Find new ITR level
786 * @rc: structure containing ring performance data
787 *
788 * Stores a new ITR value based on packets and byte counts during
789 * the last interrupt. The advantage of per interrupt computation
790 * is faster updates and more accurate ITR for the current traffic
791 * pattern. Constants in this function were computed based on
792 * theoretical maximum wire speed and thresholds were set based on
793 * testing data as well as attempting to minimize response time
794 * while increasing bulk throughput.
795 **/
796static void i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
797{
798 enum i40e_latency_range new_latency_range = rc->latency_range;
799 u32 new_itr = rc->itr;
800 int bytes_per_int;
801
802 if (rc->total_packets == 0 || !rc->itr)
803 return;
804
805 /* simple throttlerate management
806 * 0-10MB/s lowest (100000 ints/s)
807 * 10-20MB/s low (20000 ints/s)
808 * 20-1249MB/s bulk (8000 ints/s)
809 */
810 bytes_per_int = rc->total_bytes / rc->itr;
811 switch (rc->itr) {
812 case I40E_LOWEST_LATENCY:
813 if (bytes_per_int > 10)
814 new_latency_range = I40E_LOW_LATENCY;
815 break;
816 case I40E_LOW_LATENCY:
817 if (bytes_per_int > 20)
818 new_latency_range = I40E_BULK_LATENCY;
819 else if (bytes_per_int <= 10)
820 new_latency_range = I40E_LOWEST_LATENCY;
821 break;
822 case I40E_BULK_LATENCY:
823 if (bytes_per_int <= 20)
824 rc->latency_range = I40E_LOW_LATENCY;
825 break;
826 }
827
828 switch (new_latency_range) {
829 case I40E_LOWEST_LATENCY:
830 new_itr = I40E_ITR_100K;
831 break;
832 case I40E_LOW_LATENCY:
833 new_itr = I40E_ITR_20K;
834 break;
835 case I40E_BULK_LATENCY:
836 new_itr = I40E_ITR_8K;
837 break;
838 default:
839 break;
840 }
841
842 if (new_itr != rc->itr) {
843 /* do an exponential smoothing */
844 new_itr = (10 * new_itr * rc->itr) /
845 ((9 * new_itr) + rc->itr);
846 rc->itr = new_itr & I40E_MAX_ITR;
847 }
848
849 rc->total_bytes = 0;
850 rc->total_packets = 0;
851}
852
853/**
854 * i40e_update_dynamic_itr - Adjust ITR based on bytes per int
855 * @q_vector: the vector to adjust
856 **/
857static void i40e_update_dynamic_itr(struct i40e_q_vector *q_vector)
858{
859 u16 vector = q_vector->vsi->base_vector + q_vector->v_idx;
860 struct i40e_hw *hw = &q_vector->vsi->back->hw;
861 u32 reg_addr;
862 u16 old_itr;
863
864 reg_addr = I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1);
865 old_itr = q_vector->rx.itr;
866 i40e_set_new_dynamic_itr(&q_vector->rx);
867 if (old_itr != q_vector->rx.itr)
868 wr32(hw, reg_addr, q_vector->rx.itr);
869
870 reg_addr = I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1);
871 old_itr = q_vector->tx.itr;
872 i40e_set_new_dynamic_itr(&q_vector->tx);
873 if (old_itr != q_vector->tx.itr)
874 wr32(hw, reg_addr, q_vector->tx.itr);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000875}
876
877/**
878 * i40e_clean_programming_status - clean the programming status descriptor
879 * @rx_ring: the rx ring that has this descriptor
880 * @rx_desc: the rx descriptor written back by HW
881 *
882 * Flow director should handle FD_FILTER_STATUS to check its filter programming
883 * status being successful or not and take actions accordingly. FCoE should
884 * handle its context/filter programming/invalidation status and take actions.
885 *
886 **/
887static void i40e_clean_programming_status(struct i40e_ring *rx_ring,
888 union i40e_rx_desc *rx_desc)
889{
890 u64 qw;
891 u8 id;
892
893 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
894 id = (qw & I40E_RX_PROG_STATUS_DESC_QW1_PROGID_MASK) >>
895 I40E_RX_PROG_STATUS_DESC_QW1_PROGID_SHIFT;
896
897 if (id == I40E_RX_PROG_STATUS_DESC_FD_FILTER_STATUS)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000898 i40e_fd_handle_status(rx_ring, rx_desc, id);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000899}
900
901/**
902 * i40e_setup_tx_descriptors - Allocate the Tx descriptors
903 * @tx_ring: the tx ring to set up
904 *
905 * Return 0 on success, negative on error
906 **/
907int i40e_setup_tx_descriptors(struct i40e_ring *tx_ring)
908{
909 struct device *dev = tx_ring->dev;
910 int bi_size;
911
912 if (!dev)
913 return -ENOMEM;
914
915 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
916 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
917 if (!tx_ring->tx_bi)
918 goto err;
919
920 /* round up to nearest 4K */
921 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000922 /* add u32 for head writeback, align after this takes care of
923 * guaranteeing this is at least one cache line in size
924 */
925 tx_ring->size += sizeof(u32);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000926 tx_ring->size = ALIGN(tx_ring->size, 4096);
927 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
928 &tx_ring->dma, GFP_KERNEL);
929 if (!tx_ring->desc) {
930 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
931 tx_ring->size);
932 goto err;
933 }
934
935 tx_ring->next_to_use = 0;
936 tx_ring->next_to_clean = 0;
937 return 0;
938
939err:
940 kfree(tx_ring->tx_bi);
941 tx_ring->tx_bi = NULL;
942 return -ENOMEM;
943}
944
945/**
946 * i40e_clean_rx_ring - Free Rx buffers
947 * @rx_ring: ring to be cleaned
948 **/
949void i40e_clean_rx_ring(struct i40e_ring *rx_ring)
950{
951 struct device *dev = rx_ring->dev;
952 struct i40e_rx_buffer *rx_bi;
953 unsigned long bi_size;
954 u16 i;
955
956 /* ring already cleared, nothing to do */
957 if (!rx_ring->rx_bi)
958 return;
959
960 /* Free all the Rx ring sk_buffs */
961 for (i = 0; i < rx_ring->count; i++) {
962 rx_bi = &rx_ring->rx_bi[i];
963 if (rx_bi->dma) {
964 dma_unmap_single(dev,
965 rx_bi->dma,
966 rx_ring->rx_buf_len,
967 DMA_FROM_DEVICE);
968 rx_bi->dma = 0;
969 }
970 if (rx_bi->skb) {
971 dev_kfree_skb(rx_bi->skb);
972 rx_bi->skb = NULL;
973 }
974 if (rx_bi->page) {
975 if (rx_bi->page_dma) {
976 dma_unmap_page(dev,
977 rx_bi->page_dma,
978 PAGE_SIZE / 2,
979 DMA_FROM_DEVICE);
980 rx_bi->page_dma = 0;
981 }
982 __free_page(rx_bi->page);
983 rx_bi->page = NULL;
984 rx_bi->page_offset = 0;
985 }
986 }
987
988 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
989 memset(rx_ring->rx_bi, 0, bi_size);
990
991 /* Zero out the descriptor ring */
992 memset(rx_ring->desc, 0, rx_ring->size);
993
994 rx_ring->next_to_clean = 0;
995 rx_ring->next_to_use = 0;
996}
997
998/**
999 * i40e_free_rx_resources - Free Rx resources
1000 * @rx_ring: ring to clean the resources from
1001 *
1002 * Free all receive software resources
1003 **/
1004void i40e_free_rx_resources(struct i40e_ring *rx_ring)
1005{
1006 i40e_clean_rx_ring(rx_ring);
1007 kfree(rx_ring->rx_bi);
1008 rx_ring->rx_bi = NULL;
1009
1010 if (rx_ring->desc) {
1011 dma_free_coherent(rx_ring->dev, rx_ring->size,
1012 rx_ring->desc, rx_ring->dma);
1013 rx_ring->desc = NULL;
1014 }
1015}
1016
1017/**
1018 * i40e_setup_rx_descriptors - Allocate Rx descriptors
1019 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
1020 *
1021 * Returns 0 on success, negative on failure
1022 **/
1023int i40e_setup_rx_descriptors(struct i40e_ring *rx_ring)
1024{
1025 struct device *dev = rx_ring->dev;
1026 int bi_size;
1027
1028 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
1029 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
1030 if (!rx_ring->rx_bi)
1031 goto err;
1032
1033 /* Round up to nearest 4K */
1034 rx_ring->size = ring_is_16byte_desc_enabled(rx_ring)
1035 ? rx_ring->count * sizeof(union i40e_16byte_rx_desc)
1036 : rx_ring->count * sizeof(union i40e_32byte_rx_desc);
1037 rx_ring->size = ALIGN(rx_ring->size, 4096);
1038 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
1039 &rx_ring->dma, GFP_KERNEL);
1040
1041 if (!rx_ring->desc) {
1042 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
1043 rx_ring->size);
1044 goto err;
1045 }
1046
1047 rx_ring->next_to_clean = 0;
1048 rx_ring->next_to_use = 0;
1049
1050 return 0;
1051err:
1052 kfree(rx_ring->rx_bi);
1053 rx_ring->rx_bi = NULL;
1054 return -ENOMEM;
1055}
1056
1057/**
1058 * i40e_release_rx_desc - Store the new tail and head values
1059 * @rx_ring: ring to bump
1060 * @val: new head index
1061 **/
1062static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
1063{
1064 rx_ring->next_to_use = val;
1065 /* Force memory writes to complete before letting h/w
1066 * know there are new descriptors to fetch. (Only
1067 * applicable for weak-ordered memory model archs,
1068 * such as IA-64).
1069 */
1070 wmb();
1071 writel(val, rx_ring->tail);
1072}
1073
1074/**
1075 * i40e_alloc_rx_buffers - Replace used receive buffers; packet split
1076 * @rx_ring: ring to place buffers on
1077 * @cleaned_count: number of buffers to replace
1078 **/
1079void i40e_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count)
1080{
1081 u16 i = rx_ring->next_to_use;
1082 union i40e_rx_desc *rx_desc;
1083 struct i40e_rx_buffer *bi;
1084 struct sk_buff *skb;
1085
1086 /* do nothing if no valid netdev defined */
1087 if (!rx_ring->netdev || !cleaned_count)
1088 return;
1089
1090 while (cleaned_count--) {
1091 rx_desc = I40E_RX_DESC(rx_ring, i);
1092 bi = &rx_ring->rx_bi[i];
1093 skb = bi->skb;
1094
1095 if (!skb) {
1096 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1097 rx_ring->rx_buf_len);
1098 if (!skb) {
Mitch Williams420136c2013-12-18 13:45:59 +00001099 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001100 goto no_buffers;
1101 }
1102 /* initialize queue mapping */
1103 skb_record_rx_queue(skb, rx_ring->queue_index);
1104 bi->skb = skb;
1105 }
1106
1107 if (!bi->dma) {
1108 bi->dma = dma_map_single(rx_ring->dev,
1109 skb->data,
1110 rx_ring->rx_buf_len,
1111 DMA_FROM_DEVICE);
1112 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Mitch Williams420136c2013-12-18 13:45:59 +00001113 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001114 bi->dma = 0;
1115 goto no_buffers;
1116 }
1117 }
1118
1119 if (ring_is_ps_enabled(rx_ring)) {
1120 if (!bi->page) {
1121 bi->page = alloc_page(GFP_ATOMIC);
1122 if (!bi->page) {
Mitch Williams420136c2013-12-18 13:45:59 +00001123 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001124 goto no_buffers;
1125 }
1126 }
1127
1128 if (!bi->page_dma) {
1129 /* use a half page if we're re-using */
1130 bi->page_offset ^= PAGE_SIZE / 2;
1131 bi->page_dma = dma_map_page(rx_ring->dev,
1132 bi->page,
1133 bi->page_offset,
1134 PAGE_SIZE / 2,
1135 DMA_FROM_DEVICE);
1136 if (dma_mapping_error(rx_ring->dev,
1137 bi->page_dma)) {
Mitch Williams420136c2013-12-18 13:45:59 +00001138 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001139 bi->page_dma = 0;
1140 goto no_buffers;
1141 }
1142 }
1143
1144 /* Refresh the desc even if buffer_addrs didn't change
1145 * because each write-back erases this info.
1146 */
1147 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1148 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
1149 } else {
1150 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
1151 rx_desc->read.hdr_addr = 0;
1152 }
1153 i++;
1154 if (i == rx_ring->count)
1155 i = 0;
1156 }
1157
1158no_buffers:
1159 if (rx_ring->next_to_use != i)
1160 i40e_release_rx_desc(rx_ring, i);
1161}
1162
1163/**
1164 * i40e_receive_skb - Send a completed packet up the stack
1165 * @rx_ring: rx ring in play
1166 * @skb: packet to send up
1167 * @vlan_tag: vlan tag for packet
1168 **/
1169static void i40e_receive_skb(struct i40e_ring *rx_ring,
1170 struct sk_buff *skb, u16 vlan_tag)
1171{
1172 struct i40e_q_vector *q_vector = rx_ring->q_vector;
1173 struct i40e_vsi *vsi = rx_ring->vsi;
1174 u64 flags = vsi->back->flags;
1175
1176 if (vlan_tag & VLAN_VID_MASK)
1177 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
1178
1179 if (flags & I40E_FLAG_IN_NETPOLL)
1180 netif_rx(skb);
1181 else
1182 napi_gro_receive(&q_vector->napi, skb);
1183}
1184
1185/**
1186 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
1187 * @vsi: the VSI we care about
1188 * @skb: skb currently being received and modified
1189 * @rx_status: status value of last descriptor in packet
1190 * @rx_error: error value of last descriptor in packet
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001191 * @rx_ptype: ptype value of last descriptor in packet
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001192 **/
1193static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
1194 struct sk_buff *skb,
1195 u32 rx_status,
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001196 u32 rx_error,
1197 u16 rx_ptype)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001198{
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001199 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(rx_ptype);
1200 bool ipv4 = false, ipv6 = false;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001201 bool ipv4_tunnel, ipv6_tunnel;
1202 __wsum rx_udp_csum;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001203 struct iphdr *iph;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001204 __sum16 csum;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001205
1206 ipv4_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT4_MAC_PAY3) &&
1207 (rx_ptype < I40E_RX_PTYPE_GRENAT4_MACVLAN_IPV6_ICMP_PAY4);
1208 ipv6_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT6_MAC_PAY3) &&
1209 (rx_ptype < I40E_RX_PTYPE_GRENAT6_MACVLAN_IPV6_ICMP_PAY4);
1210
1211 skb->encapsulation = ipv4_tunnel || ipv6_tunnel;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001212 skb->ip_summed = CHECKSUM_NONE;
1213
1214 /* Rx csum enabled and ip headers found? */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001215 if (!(vsi->netdev->features & NETIF_F_RXCSUM))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001216 return;
1217
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001218 /* did the hardware decode the packet and checksum? */
1219 if (!(rx_status & (1 << I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
1220 return;
1221
1222 /* both known and outer_ip must be set for the below code to work */
1223 if (!(decoded.known && decoded.outer_ip))
1224 return;
1225
1226 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1227 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4)
1228 ipv4 = true;
1229 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1230 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6)
1231 ipv6 = true;
1232
1233 if (ipv4 &&
1234 (rx_error & ((1 << I40E_RX_DESC_ERROR_IPE_SHIFT) |
1235 (1 << I40E_RX_DESC_ERROR_EIPE_SHIFT))))
1236 goto checksum_fail;
1237
Jesse Brandeburgddf1d0d2014-02-13 03:48:39 -08001238 /* likely incorrect csum if alternate IP extension headers found */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001239 if (ipv6 &&
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001240 rx_status & (1 << I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
1241 /* don't increment checksum err here, non-fatal err */
Shannon Nelson8ee75a82013-12-21 05:44:46 +00001242 return;
1243
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001244 /* there was some L4 error, count error and punt packet to the stack */
1245 if (rx_error & (1 << I40E_RX_DESC_ERROR_L4E_SHIFT))
1246 goto checksum_fail;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001247
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001248 /* handle packets that were not able to be checksummed due
1249 * to arrival speed, in this case the stack can compute
1250 * the csum.
1251 */
1252 if (rx_error & (1 << I40E_RX_DESC_ERROR_PPRS_SHIFT))
1253 return;
1254
1255 /* If VXLAN traffic has an outer UDPv4 checksum we need to check
1256 * it in the driver, hardware does not do it for us.
1257 * Since L3L4P bit was set we assume a valid IHL value (>=5)
1258 * so the total length of IPv4 header is IHL*4 bytes
1259 * The UDP_0 bit *may* bet set if the *inner* header is UDP
1260 */
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001261 if (ipv4_tunnel &&
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001262 (decoded.inner_prot != I40E_RX_PTYPE_INNER_PROT_UDP) &&
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001263 !(rx_status & (1 << I40E_RX_DESC_STATUS_UDP_0_SHIFT))) {
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001264 skb->transport_header = skb->mac_header +
1265 sizeof(struct ethhdr) +
1266 (ip_hdr(skb)->ihl * 4);
1267
1268 /* Add 4 bytes for VLAN tagged packets */
1269 skb->transport_header += (skb->protocol == htons(ETH_P_8021Q) ||
1270 skb->protocol == htons(ETH_P_8021AD))
1271 ? VLAN_HLEN : 0;
1272
1273 rx_udp_csum = udp_csum(skb);
1274 iph = ip_hdr(skb);
1275 csum = csum_tcpudp_magic(
1276 iph->saddr, iph->daddr,
1277 (skb->len - skb_transport_offset(skb)),
1278 IPPROTO_UDP, rx_udp_csum);
1279
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001280 if (udp_hdr(skb)->check != csum)
1281 goto checksum_fail;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001282 }
1283
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001284 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001285
1286 return;
1287
1288checksum_fail:
1289 vsi->back->hw_csum_rx_error++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001290}
1291
1292/**
1293 * i40e_rx_hash - returns the hash value from the Rx descriptor
1294 * @ring: descriptor ring
1295 * @rx_desc: specific descriptor
1296 **/
1297static inline u32 i40e_rx_hash(struct i40e_ring *ring,
1298 union i40e_rx_desc *rx_desc)
1299{
Jesse Brandeburg8a494922013-11-20 10:02:49 +00001300 const __le64 rss_mask =
1301 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
1302 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
1303
1304 if ((ring->netdev->features & NETIF_F_RXHASH) &&
1305 (rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask)
1306 return le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
1307 else
1308 return 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001309}
1310
1311/**
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001312 * i40e_ptype_to_hash - get a hash type
1313 * @ptype: the ptype value from the descriptor
1314 *
1315 * Returns a hash type to be used by skb_set_hash
1316 **/
1317static inline enum pkt_hash_types i40e_ptype_to_hash(u8 ptype)
1318{
1319 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
1320
1321 if (!decoded.known)
1322 return PKT_HASH_TYPE_NONE;
1323
1324 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1325 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
1326 return PKT_HASH_TYPE_L4;
1327 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1328 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
1329 return PKT_HASH_TYPE_L3;
1330 else
1331 return PKT_HASH_TYPE_L2;
1332}
1333
1334/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001335 * i40e_clean_rx_irq - Reclaim resources after receive completes
1336 * @rx_ring: rx ring to clean
1337 * @budget: how many cleans we're allowed
1338 *
1339 * Returns true if there's any budget left (e.g. the clean is finished)
1340 **/
1341static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget)
1342{
1343 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1344 u16 rx_packet_len, rx_header_len, rx_sph, rx_hbo;
1345 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
1346 const int current_node = numa_node_id();
1347 struct i40e_vsi *vsi = rx_ring->vsi;
1348 u16 i = rx_ring->next_to_clean;
1349 union i40e_rx_desc *rx_desc;
1350 u32 rx_error, rx_status;
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001351 u8 rx_ptype;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001352 u64 qword;
1353
Eric W. Biederman390f86d2014-03-14 17:59:10 -07001354 if (budget <= 0)
1355 return 0;
1356
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001357 rx_desc = I40E_RX_DESC(rx_ring, i);
1358 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburg6838b532014-01-14 00:49:52 -08001359 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1360 I40E_RXD_QW1_STATUS_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001361
1362 while (rx_status & (1 << I40E_RX_DESC_STATUS_DD_SHIFT)) {
1363 union i40e_rx_desc *next_rxd;
1364 struct i40e_rx_buffer *rx_bi;
1365 struct sk_buff *skb;
1366 u16 vlan_tag;
1367 if (i40e_rx_is_programming_status(qword)) {
1368 i40e_clean_programming_status(rx_ring, rx_desc);
1369 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1370 goto next_desc;
1371 }
1372 rx_bi = &rx_ring->rx_bi[i];
1373 skb = rx_bi->skb;
1374 prefetch(skb->data);
1375
Mitch Williams829af3a2013-12-18 13:46:00 +00001376 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1377 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1378 rx_header_len = (qword & I40E_RXD_QW1_LENGTH_HBUF_MASK) >>
1379 I40E_RXD_QW1_LENGTH_HBUF_SHIFT;
1380 rx_sph = (qword & I40E_RXD_QW1_LENGTH_SPH_MASK) >>
1381 I40E_RXD_QW1_LENGTH_SPH_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001382
Mitch Williams829af3a2013-12-18 13:46:00 +00001383 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1384 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001385 rx_hbo = rx_error & (1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1386 rx_error &= ~(1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1387
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001388 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1389 I40E_RXD_QW1_PTYPE_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001390 rx_bi->skb = NULL;
1391
1392 /* This memory barrier is needed to keep us from reading
1393 * any other fields out of the rx_desc until we know the
1394 * STATUS_DD bit is set
1395 */
1396 rmb();
1397
1398 /* Get the header and possibly the whole packet
1399 * If this is an skb from previous receive dma will be 0
1400 */
1401 if (rx_bi->dma) {
1402 u16 len;
1403
1404 if (rx_hbo)
1405 len = I40E_RX_HDR_SIZE;
1406 else if (rx_sph)
1407 len = rx_header_len;
1408 else if (rx_packet_len)
1409 len = rx_packet_len; /* 1buf/no split found */
1410 else
1411 len = rx_header_len; /* split always mode */
1412
1413 skb_put(skb, len);
1414 dma_unmap_single(rx_ring->dev,
1415 rx_bi->dma,
1416 rx_ring->rx_buf_len,
1417 DMA_FROM_DEVICE);
1418 rx_bi->dma = 0;
1419 }
1420
1421 /* Get the rest of the data if this was a header split */
1422 if (ring_is_ps_enabled(rx_ring) && rx_packet_len) {
1423
1424 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1425 rx_bi->page,
1426 rx_bi->page_offset,
1427 rx_packet_len);
1428
1429 skb->len += rx_packet_len;
1430 skb->data_len += rx_packet_len;
1431 skb->truesize += rx_packet_len;
1432
1433 if ((page_count(rx_bi->page) == 1) &&
1434 (page_to_nid(rx_bi->page) == current_node))
1435 get_page(rx_bi->page);
1436 else
1437 rx_bi->page = NULL;
1438
1439 dma_unmap_page(rx_ring->dev,
1440 rx_bi->page_dma,
1441 PAGE_SIZE / 2,
1442 DMA_FROM_DEVICE);
1443 rx_bi->page_dma = 0;
1444 }
1445 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1446
1447 if (unlikely(
1448 !(rx_status & (1 << I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
1449 struct i40e_rx_buffer *next_buffer;
1450
1451 next_buffer = &rx_ring->rx_bi[i];
1452
1453 if (ring_is_ps_enabled(rx_ring)) {
1454 rx_bi->skb = next_buffer->skb;
1455 rx_bi->dma = next_buffer->dma;
1456 next_buffer->skb = skb;
1457 next_buffer->dma = 0;
1458 }
1459 rx_ring->rx_stats.non_eop_descs++;
1460 goto next_desc;
1461 }
1462
1463 /* ERR_MASK will only have valid bits if EOP set */
1464 if (unlikely(rx_error & (1 << I40E_RX_DESC_ERROR_RXE_SHIFT))) {
1465 dev_kfree_skb_any(skb);
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001466 /* TODO: shouldn't we increment a counter indicating the
1467 * drop?
1468 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001469 goto next_desc;
1470 }
1471
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001472 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1473 i40e_ptype_to_hash(rx_ptype));
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001474 if (unlikely(rx_status & I40E_RXD_QW1_STATUS_TSYNVALID_MASK)) {
1475 i40e_ptp_rx_hwtstamp(vsi->back, skb, (rx_status &
1476 I40E_RXD_QW1_STATUS_TSYNINDX_MASK) >>
1477 I40E_RXD_QW1_STATUS_TSYNINDX_SHIFT);
1478 rx_ring->last_rx_timestamp = jiffies;
1479 }
1480
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001481 /* probably a little skewed due to removing CRC */
1482 total_rx_bytes += skb->len;
1483 total_rx_packets++;
1484
1485 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001486
1487 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1488
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001489 vlan_tag = rx_status & (1 << I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
1490 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1491 : 0;
1492 i40e_receive_skb(rx_ring, skb, vlan_tag);
1493
1494 rx_ring->netdev->last_rx = jiffies;
1495 budget--;
1496next_desc:
1497 rx_desc->wb.qword1.status_error_len = 0;
1498 if (!budget)
1499 break;
1500
1501 cleaned_count++;
1502 /* return some buffers to hardware, one at a time is too slow */
1503 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
1504 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1505 cleaned_count = 0;
1506 }
1507
1508 /* use prefetched values */
1509 rx_desc = next_rxd;
1510 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Mitch Williams829af3a2013-12-18 13:46:00 +00001511 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1512 I40E_RXD_QW1_STATUS_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001513 }
1514
1515 rx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001516 u64_stats_update_begin(&rx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +00001517 rx_ring->stats.packets += total_rx_packets;
1518 rx_ring->stats.bytes += total_rx_bytes;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001519 u64_stats_update_end(&rx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001520 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1521 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1522
1523 if (cleaned_count)
1524 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1525
1526 return budget > 0;
1527}
1528
1529/**
1530 * i40e_napi_poll - NAPI polling Rx/Tx cleanup routine
1531 * @napi: napi struct with our devices info in it
1532 * @budget: amount of work driver is allowed to do this pass, in packets
1533 *
1534 * This function will clean all queues associated with a q_vector.
1535 *
1536 * Returns the amount of work done
1537 **/
1538int i40e_napi_poll(struct napi_struct *napi, int budget)
1539{
1540 struct i40e_q_vector *q_vector =
1541 container_of(napi, struct i40e_q_vector, napi);
1542 struct i40e_vsi *vsi = q_vector->vsi;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001543 struct i40e_ring *ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001544 bool clean_complete = true;
1545 int budget_per_ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001546
1547 if (test_bit(__I40E_DOWN, &vsi->state)) {
1548 napi_complete(napi);
1549 return 0;
1550 }
1551
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001552 /* Since the actual Tx work is minimal, we can give the Tx a larger
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001553 * budget and be more aggressive about cleaning up the Tx descriptors.
1554 */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001555 i40e_for_each_ring(ring, q_vector->tx)
1556 clean_complete &= i40e_clean_tx_irq(ring, vsi->work_limit);
1557
1558 /* We attempt to distribute budget to each Rx queue fairly, but don't
1559 * allow the budget to go below 1 because that would exit polling early.
1560 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001561 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001562
1563 i40e_for_each_ring(ring, q_vector->rx)
1564 clean_complete &= i40e_clean_rx_irq(ring, budget_per_ring);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001565
1566 /* If work not completed, return budget and polling will return */
1567 if (!clean_complete)
1568 return budget;
1569
1570 /* Work is done so exit the polling mode and re-enable the interrupt */
1571 napi_complete(napi);
1572 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting) ||
1573 ITR_IS_DYNAMIC(vsi->tx_itr_setting))
1574 i40e_update_dynamic_itr(q_vector);
1575
1576 if (!test_bit(__I40E_DOWN, &vsi->state)) {
1577 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
1578 i40e_irq_dynamic_enable(vsi,
1579 q_vector->v_idx + vsi->base_vector);
1580 } else {
1581 struct i40e_hw *hw = &vsi->back->hw;
1582 /* We re-enable the queue 0 cause, but
1583 * don't worry about dynamic_enable
1584 * because we left it on for the other
1585 * possible interrupts during napi
1586 */
1587 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
1588 qval |= I40E_QINT_RQCTL_CAUSE_ENA_MASK;
1589 wr32(hw, I40E_QINT_RQCTL(0), qval);
1590
1591 qval = rd32(hw, I40E_QINT_TQCTL(0));
1592 qval |= I40E_QINT_TQCTL_CAUSE_ENA_MASK;
1593 wr32(hw, I40E_QINT_TQCTL(0), qval);
Shannon Nelson116a57d2013-09-28 07:13:59 +00001594
1595 i40e_irq_dynamic_enable_icr0(vsi->back);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001596 }
1597 }
1598
1599 return 0;
1600}
1601
1602/**
1603 * i40e_atr - Add a Flow Director ATR filter
1604 * @tx_ring: ring to add programming descriptor to
1605 * @skb: send buffer
1606 * @flags: send flags
1607 * @protocol: wire protocol
1608 **/
1609static void i40e_atr(struct i40e_ring *tx_ring, struct sk_buff *skb,
1610 u32 flags, __be16 protocol)
1611{
1612 struct i40e_filter_program_desc *fdir_desc;
1613 struct i40e_pf *pf = tx_ring->vsi->back;
1614 union {
1615 unsigned char *network;
1616 struct iphdr *ipv4;
1617 struct ipv6hdr *ipv6;
1618 } hdr;
1619 struct tcphdr *th;
1620 unsigned int hlen;
1621 u32 flex_ptype, dtype_cmd;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001622 u16 i;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001623
1624 /* make sure ATR is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08001625 if (!(pf->flags & I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001626 return;
1627
1628 /* if sampling is disabled do nothing */
1629 if (!tx_ring->atr_sample_rate)
1630 return;
1631
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001632 /* snag network header to get L4 type and address */
1633 hdr.network = skb_network_header(skb);
1634
1635 /* Currently only IPv4/IPv6 with TCP is supported */
1636 if (protocol == htons(ETH_P_IP)) {
1637 if (hdr.ipv4->protocol != IPPROTO_TCP)
1638 return;
1639
1640 /* access ihl as a u8 to avoid unaligned access on ia64 */
1641 hlen = (hdr.network[0] & 0x0F) << 2;
1642 } else if (protocol == htons(ETH_P_IPV6)) {
1643 if (hdr.ipv6->nexthdr != IPPROTO_TCP)
1644 return;
1645
1646 hlen = sizeof(struct ipv6hdr);
1647 } else {
1648 return;
1649 }
1650
1651 th = (struct tcphdr *)(hdr.network + hlen);
1652
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00001653 /* Due to lack of space, no more new filters can be programmed */
1654 if (th->syn && (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1655 return;
1656
1657 tx_ring->atr_count++;
1658
Anjali Singhai Jaince806782014-03-06 08:59:54 +00001659 /* sample on all syn/fin/rst packets or once every atr sample rate */
1660 if (!th->fin &&
1661 !th->syn &&
1662 !th->rst &&
1663 (tx_ring->atr_count < tx_ring->atr_sample_rate))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001664 return;
1665
1666 tx_ring->atr_count = 0;
1667
1668 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001669 i = tx_ring->next_to_use;
1670 fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
1671
1672 i++;
1673 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001674
1675 flex_ptype = (tx_ring->queue_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
1676 I40E_TXD_FLTR_QW0_QINDEX_MASK;
1677 flex_ptype |= (protocol == htons(ETH_P_IP)) ?
1678 (I40E_FILTER_PCTYPE_NONF_IPV4_TCP <<
1679 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) :
1680 (I40E_FILTER_PCTYPE_NONF_IPV6_TCP <<
1681 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT);
1682
1683 flex_ptype |= tx_ring->vsi->id << I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
1684
1685 dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG;
1686
Anjali Singhai Jaince806782014-03-06 08:59:54 +00001687 dtype_cmd |= (th->fin || th->rst) ?
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001688 (I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
1689 I40E_TXD_FLTR_QW1_PCMD_SHIFT) :
1690 (I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
1691 I40E_TXD_FLTR_QW1_PCMD_SHIFT);
1692
1693 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX <<
1694 I40E_TXD_FLTR_QW1_DEST_SHIFT;
1695
1696 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID <<
1697 I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT;
1698
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001699 dtype_cmd |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
1700 dtype_cmd |=
1701 ((u32)pf->fd_atr_cnt_idx << I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
1702 I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
1703
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001704 fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(flex_ptype);
Jesse Brandeburg99753ea2014-06-04 04:22:49 +00001705 fdir_desc->rsvd = cpu_to_le32(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001706 fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dtype_cmd);
Jesse Brandeburg99753ea2014-06-04 04:22:49 +00001707 fdir_desc->fd_id = cpu_to_le32(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001708}
1709
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001710/**
1711 * i40e_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
1712 * @skb: send buffer
1713 * @tx_ring: ring to send buffer on
1714 * @flags: the tx flags to be set
1715 *
1716 * Checks the skb and set up correspondingly several generic transmit flags
1717 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1718 *
1719 * Returns error code indicate the frame should be dropped upon error and the
1720 * otherwise returns 0 to indicate the flags has been set properly.
1721 **/
1722static int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
1723 struct i40e_ring *tx_ring,
1724 u32 *flags)
1725{
1726 __be16 protocol = skb->protocol;
1727 u32 tx_flags = 0;
1728
1729 /* if we have a HW VLAN tag being added, default to the HW one */
1730 if (vlan_tx_tag_present(skb)) {
1731 tx_flags |= vlan_tx_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
1732 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1733 /* else if it is a SW VLAN, check the next protocol and store the tag */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001734 } else if (protocol == htons(ETH_P_8021Q)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001735 struct vlan_hdr *vhdr, _vhdr;
1736 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1737 if (!vhdr)
1738 return -EINVAL;
1739
1740 protocol = vhdr->h_vlan_encapsulated_proto;
1741 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1742 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1743 }
1744
1745 /* Insert 802.1p priority into VLAN header */
1746 if ((tx_ring->vsi->back->flags & I40E_FLAG_DCB_ENABLED) &&
1747 ((tx_flags & (I40E_TX_FLAGS_HW_VLAN | I40E_TX_FLAGS_SW_VLAN)) ||
1748 (skb->priority != TC_PRIO_CONTROL))) {
1749 tx_flags &= ~I40E_TX_FLAGS_VLAN_PRIO_MASK;
1750 tx_flags |= (skb->priority & 0x7) <<
1751 I40E_TX_FLAGS_VLAN_PRIO_SHIFT;
1752 if (tx_flags & I40E_TX_FLAGS_SW_VLAN) {
1753 struct vlan_ethhdr *vhdr;
Francois Romieudd225bc2014-03-30 03:14:48 +00001754 int rc;
1755
1756 rc = skb_cow_head(skb, 0);
1757 if (rc < 0)
1758 return rc;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001759 vhdr = (struct vlan_ethhdr *)skb->data;
1760 vhdr->h_vlan_TCI = htons(tx_flags >>
1761 I40E_TX_FLAGS_VLAN_SHIFT);
1762 } else {
1763 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1764 }
1765 }
1766 *flags = tx_flags;
1767 return 0;
1768}
1769
1770/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001771 * i40e_tso - set up the tso context descriptor
1772 * @tx_ring: ptr to the ring to send
1773 * @skb: ptr to the skb we're sending
1774 * @tx_flags: the collected send information
1775 * @protocol: the send protocol
1776 * @hdr_len: ptr to the size of the packet header
1777 * @cd_tunneling: ptr to context descriptor bits
1778 *
1779 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1780 **/
1781static int i40e_tso(struct i40e_ring *tx_ring, struct sk_buff *skb,
1782 u32 tx_flags, __be16 protocol, u8 *hdr_len,
1783 u64 *cd_type_cmd_tso_mss, u32 *cd_tunneling)
1784{
1785 u32 cd_cmd, cd_tso_len, cd_mss;
Francois Romieudd225bc2014-03-30 03:14:48 +00001786 struct ipv6hdr *ipv6h;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001787 struct tcphdr *tcph;
1788 struct iphdr *iph;
1789 u32 l4len;
1790 int err;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001791
1792 if (!skb_is_gso(skb))
1793 return 0;
1794
Francois Romieudd225bc2014-03-30 03:14:48 +00001795 err = skb_cow_head(skb, 0);
1796 if (err < 0)
1797 return err;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001798
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001799 if (protocol == htons(ETH_P_IP)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001800 iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
1801 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1802 iph->tot_len = 0;
1803 iph->check = 0;
1804 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1805 0, IPPROTO_TCP, 0);
1806 } else if (skb_is_gso_v6(skb)) {
1807
1808 ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb)
1809 : ipv6_hdr(skb);
1810 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1811 ipv6h->payload_len = 0;
1812 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
1813 0, IPPROTO_TCP, 0);
1814 }
1815
1816 l4len = skb->encapsulation ? inner_tcp_hdrlen(skb) : tcp_hdrlen(skb);
1817 *hdr_len = (skb->encapsulation
1818 ? (skb_inner_transport_header(skb) - skb->data)
1819 : skb_transport_offset(skb)) + l4len;
1820
1821 /* find the field values */
1822 cd_cmd = I40E_TX_CTX_DESC_TSO;
1823 cd_tso_len = skb->len - *hdr_len;
1824 cd_mss = skb_shinfo(skb)->gso_size;
Mitch Williams829af3a2013-12-18 13:46:00 +00001825 *cd_type_cmd_tso_mss |= ((u64)cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
1826 ((u64)cd_tso_len <<
1827 I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
1828 ((u64)cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001829 return 1;
1830}
1831
1832/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001833 * i40e_tsyn - set up the tsyn context descriptor
1834 * @tx_ring: ptr to the ring to send
1835 * @skb: ptr to the skb we're sending
1836 * @tx_flags: the collected send information
1837 *
1838 * Returns 0 if no Tx timestamp can happen and 1 if the timestamp will happen
1839 **/
1840static int i40e_tsyn(struct i40e_ring *tx_ring, struct sk_buff *skb,
1841 u32 tx_flags, u64 *cd_type_cmd_tso_mss)
1842{
1843 struct i40e_pf *pf;
1844
1845 if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)))
1846 return 0;
1847
1848 /* Tx timestamps cannot be sampled when doing TSO */
1849 if (tx_flags & I40E_TX_FLAGS_TSO)
1850 return 0;
1851
1852 /* only timestamp the outbound packet if the user has requested it and
1853 * we are not already transmitting a packet to be timestamped
1854 */
1855 pf = i40e_netdev_to_pf(tx_ring->netdev);
Jakub Kicinski9ce34f02014-03-15 14:55:42 +00001856 if (pf->ptp_tx &&
1857 !test_and_set_bit_lock(__I40E_PTP_TX_IN_PROGRESS, &pf->state)) {
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001858 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1859 pf->ptp_tx_skb = skb_get(skb);
1860 } else {
1861 return 0;
1862 }
1863
1864 *cd_type_cmd_tso_mss |= (u64)I40E_TX_CTX_DESC_TSYN <<
1865 I40E_TXD_CTX_QW1_CMD_SHIFT;
1866
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001867 return 1;
1868}
1869
1870/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001871 * i40e_tx_enable_csum - Enable Tx checksum offloads
1872 * @skb: send buffer
1873 * @tx_flags: Tx flags currently set
1874 * @td_cmd: Tx descriptor command bits to set
1875 * @td_offset: Tx descriptor header offsets to set
1876 * @cd_tunneling: ptr to context desc bits
1877 **/
1878static void i40e_tx_enable_csum(struct sk_buff *skb, u32 tx_flags,
1879 u32 *td_cmd, u32 *td_offset,
1880 struct i40e_ring *tx_ring,
1881 u32 *cd_tunneling)
1882{
1883 struct ipv6hdr *this_ipv6_hdr;
1884 unsigned int this_tcp_hdrlen;
1885 struct iphdr *this_ip_hdr;
1886 u32 network_hdr_len;
1887 u8 l4_hdr = 0;
1888
1889 if (skb->encapsulation) {
1890 network_hdr_len = skb_inner_network_header_len(skb);
1891 this_ip_hdr = inner_ip_hdr(skb);
1892 this_ipv6_hdr = inner_ipv6_hdr(skb);
1893 this_tcp_hdrlen = inner_tcp_hdrlen(skb);
1894
1895 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1896
1897 if (tx_flags & I40E_TX_FLAGS_TSO) {
1898 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV4;
1899 ip_hdr(skb)->check = 0;
1900 } else {
1901 *cd_tunneling |=
1902 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1903 }
1904 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1905 if (tx_flags & I40E_TX_FLAGS_TSO) {
1906 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV6;
1907 ip_hdr(skb)->check = 0;
1908 } else {
1909 *cd_tunneling |=
1910 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1911 }
1912 }
1913
1914 /* Now set the ctx descriptor fields */
1915 *cd_tunneling |= (skb_network_header_len(skb) >> 2) <<
1916 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT |
1917 I40E_TXD_CTX_UDP_TUNNELING |
1918 ((skb_inner_network_offset(skb) -
1919 skb_transport_offset(skb)) >> 1) <<
1920 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
1921
1922 } else {
1923 network_hdr_len = skb_network_header_len(skb);
1924 this_ip_hdr = ip_hdr(skb);
1925 this_ipv6_hdr = ipv6_hdr(skb);
1926 this_tcp_hdrlen = tcp_hdrlen(skb);
1927 }
1928
1929 /* Enable IP checksum offloads */
1930 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1931 l4_hdr = this_ip_hdr->protocol;
1932 /* the stack computes the IP header already, the only time we
1933 * need the hardware to recompute it is in the case of TSO.
1934 */
1935 if (tx_flags & I40E_TX_FLAGS_TSO) {
1936 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4_CSUM;
1937 this_ip_hdr->check = 0;
1938 } else {
1939 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4;
1940 }
1941 /* Now set the td_offset for IP header length */
1942 *td_offset = (network_hdr_len >> 2) <<
1943 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1944 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1945 l4_hdr = this_ipv6_hdr->nexthdr;
1946 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
1947 /* Now set the td_offset for IP header length */
1948 *td_offset = (network_hdr_len >> 2) <<
1949 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1950 }
1951 /* words in MACLEN + dwords in IPLEN + dwords in L4Len */
1952 *td_offset |= (skb_network_offset(skb) >> 1) <<
1953 I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1954
1955 /* Enable L4 checksum offloads */
1956 switch (l4_hdr) {
1957 case IPPROTO_TCP:
1958 /* enable checksum offloads */
1959 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1960 *td_offset |= (this_tcp_hdrlen >> 2) <<
1961 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1962 break;
1963 case IPPROTO_SCTP:
1964 /* enable SCTP checksum offload */
1965 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
1966 *td_offset |= (sizeof(struct sctphdr) >> 2) <<
1967 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1968 break;
1969 case IPPROTO_UDP:
1970 /* enable UDP checksum offload */
1971 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
1972 *td_offset |= (sizeof(struct udphdr) >> 2) <<
1973 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1974 break;
1975 default:
1976 break;
1977 }
1978}
1979
1980/**
1981 * i40e_create_tx_ctx Build the Tx context descriptor
1982 * @tx_ring: ring to create the descriptor on
1983 * @cd_type_cmd_tso_mss: Quad Word 1
1984 * @cd_tunneling: Quad Word 0 - bits 0-31
1985 * @cd_l2tag2: Quad Word 0 - bits 32-63
1986 **/
1987static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
1988 const u64 cd_type_cmd_tso_mss,
1989 const u32 cd_tunneling, const u32 cd_l2tag2)
1990{
1991 struct i40e_tx_context_desc *context_desc;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001992 int i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001993
Jesse Brandeburgff40dd52014-02-14 02:14:41 +00001994 if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
1995 !cd_tunneling && !cd_l2tag2)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001996 return;
1997
1998 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001999 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
2000
2001 i++;
2002 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002003
2004 /* cpu_to_le32 and assign to struct fields */
2005 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
2006 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
Jesse Brandeburg3efbbb22014-06-04 20:41:54 +00002007 context_desc->rsvd = cpu_to_le16(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002008 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
2009}
2010
2011/**
2012 * i40e_tx_map - Build the Tx descriptor
2013 * @tx_ring: ring to send buffer on
2014 * @skb: send buffer
2015 * @first: first buffer info buffer to use
2016 * @tx_flags: collected send information
2017 * @hdr_len: size of the packet header
2018 * @td_cmd: the command field in the descriptor
2019 * @td_offset: offset for checksum or crc
2020 **/
2021static void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
2022 struct i40e_tx_buffer *first, u32 tx_flags,
2023 const u8 hdr_len, u32 td_cmd, u32 td_offset)
2024{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002025 unsigned int data_len = skb->data_len;
2026 unsigned int size = skb_headlen(skb);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002027 struct skb_frag_struct *frag;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002028 struct i40e_tx_buffer *tx_bi;
2029 struct i40e_tx_desc *tx_desc;
Alexander Duycka5e9c572013-09-28 06:00:27 +00002030 u16 i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002031 u32 td_tag = 0;
2032 dma_addr_t dma;
2033 u16 gso_segs;
2034
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002035 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
2036 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
2037 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
2038 I40E_TX_FLAGS_VLAN_SHIFT;
2039 }
2040
Alexander Duycka5e9c572013-09-28 06:00:27 +00002041 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
2042 gso_segs = skb_shinfo(skb)->gso_segs;
2043 else
2044 gso_segs = 1;
2045
2046 /* multiply data chunks by size of headers */
2047 first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
2048 first->gso_segs = gso_segs;
2049 first->skb = skb;
2050 first->tx_flags = tx_flags;
2051
2052 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
2053
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002054 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002055 tx_bi = first;
2056
2057 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
2058 if (dma_mapping_error(tx_ring->dev, dma))
2059 goto dma_error;
2060
2061 /* record length, and DMA address */
2062 dma_unmap_len_set(tx_bi, len, size);
2063 dma_unmap_addr_set(tx_bi, dma, dma);
2064
2065 tx_desc->buffer_addr = cpu_to_le64(dma);
2066
2067 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002068 tx_desc->cmd_type_offset_bsz =
2069 build_ctob(td_cmd, td_offset,
2070 I40E_MAX_DATA_PER_TXD, td_tag);
2071
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002072 tx_desc++;
2073 i++;
2074 if (i == tx_ring->count) {
2075 tx_desc = I40E_TX_DESC(tx_ring, 0);
2076 i = 0;
2077 }
Alexander Duycka5e9c572013-09-28 06:00:27 +00002078
2079 dma += I40E_MAX_DATA_PER_TXD;
2080 size -= I40E_MAX_DATA_PER_TXD;
2081
2082 tx_desc->buffer_addr = cpu_to_le64(dma);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002083 }
2084
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002085 if (likely(!data_len))
2086 break;
2087
Alexander Duycka5e9c572013-09-28 06:00:27 +00002088 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
2089 size, td_tag);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002090
2091 tx_desc++;
2092 i++;
2093 if (i == tx_ring->count) {
2094 tx_desc = I40E_TX_DESC(tx_ring, 0);
2095 i = 0;
2096 }
2097
Alexander Duycka5e9c572013-09-28 06:00:27 +00002098 size = skb_frag_size(frag);
2099 data_len -= size;
2100
2101 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
2102 DMA_TO_DEVICE);
2103
2104 tx_bi = &tx_ring->tx_bi[i];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002105 }
2106
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002107 /* Place RS bit on last descriptor of any packet that spans across the
2108 * 4th descriptor (WB_STRIDE aka 0x3) in a 64B cacheline.
2109 */
2110#define WB_STRIDE 0x3
2111 if (((i & WB_STRIDE) != WB_STRIDE) &&
2112 (first <= &tx_ring->tx_bi[i]) &&
2113 (first >= &tx_ring->tx_bi[i & ~WB_STRIDE])) {
2114 tx_desc->cmd_type_offset_bsz =
2115 build_ctob(td_cmd, td_offset, size, td_tag) |
2116 cpu_to_le64((u64)I40E_TX_DESC_CMD_EOP <<
2117 I40E_TXD_QW1_CMD_SHIFT);
2118 } else {
2119 tx_desc->cmd_type_offset_bsz =
2120 build_ctob(td_cmd, td_offset, size, td_tag) |
2121 cpu_to_le64((u64)I40E_TXD_CMD <<
2122 I40E_TXD_QW1_CMD_SHIFT);
2123 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002124
Alexander Duyck7070ce02013-09-28 06:00:37 +00002125 netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
2126 tx_ring->queue_index),
2127 first->bytecount);
2128
Alexander Duycka5e9c572013-09-28 06:00:27 +00002129 /* set the timestamp */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002130 first->time_stamp = jiffies;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002131
2132 /* Force memory writes to complete before letting h/w
2133 * know there are new descriptors to fetch. (Only
2134 * applicable for weak-ordered memory model archs,
2135 * such as IA-64).
2136 */
2137 wmb();
2138
Alexander Duycka5e9c572013-09-28 06:00:27 +00002139 /* set next_to_watch value indicating a packet is present */
2140 first->next_to_watch = tx_desc;
2141
2142 i++;
2143 if (i == tx_ring->count)
2144 i = 0;
2145
2146 tx_ring->next_to_use = i;
2147
2148 /* notify HW of packet */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002149 writel(i, tx_ring->tail);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002150
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002151 return;
2152
2153dma_error:
Alexander Duycka5e9c572013-09-28 06:00:27 +00002154 dev_info(tx_ring->dev, "TX DMA map failed\n");
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002155
2156 /* clear dma mappings for failed tx_bi map */
2157 for (;;) {
2158 tx_bi = &tx_ring->tx_bi[i];
Alexander Duycka5e9c572013-09-28 06:00:27 +00002159 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002160 if (tx_bi == first)
2161 break;
2162 if (i == 0)
2163 i = tx_ring->count;
2164 i--;
2165 }
2166
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002167 tx_ring->next_to_use = i;
2168}
2169
2170/**
2171 * __i40e_maybe_stop_tx - 2nd level check for tx stop conditions
2172 * @tx_ring: the ring to be checked
2173 * @size: the size buffer we want to assure is available
2174 *
2175 * Returns -EBUSY if a stop is needed, else 0
2176 **/
2177static inline int __i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
2178{
2179 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Greg Rose8e9dca52013-12-18 13:45:53 +00002180 /* Memory barrier before checking head and tail */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002181 smp_mb();
2182
2183 /* Check again in a case another CPU has just made room available. */
2184 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
2185 return -EBUSY;
2186
2187 /* A reprieve! - use start_queue because it doesn't call schedule */
2188 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
2189 ++tx_ring->tx_stats.restart_queue;
2190 return 0;
2191}
2192
2193/**
2194 * i40e_maybe_stop_tx - 1st level check for tx stop conditions
2195 * @tx_ring: the ring to be checked
2196 * @size: the size buffer we want to assure is available
2197 *
2198 * Returns 0 if stop is not needed
2199 **/
2200static int i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
2201{
2202 if (likely(I40E_DESC_UNUSED(tx_ring) >= size))
2203 return 0;
2204 return __i40e_maybe_stop_tx(tx_ring, size);
2205}
2206
2207/**
2208 * i40e_xmit_descriptor_count - calculate number of tx descriptors needed
2209 * @skb: send buffer
2210 * @tx_ring: ring to send buffer on
2211 *
2212 * Returns number of data descriptors needed for this skb. Returns 0 to indicate
2213 * there is not enough descriptors available in this ring since we need at least
2214 * one descriptor.
2215 **/
2216static int i40e_xmit_descriptor_count(struct sk_buff *skb,
2217 struct i40e_ring *tx_ring)
2218{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002219 unsigned int f;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002220 int count = 0;
2221
2222 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
2223 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
Jesse Brandeburgbe560522014-02-06 05:51:13 +00002224 * + 4 desc gap to avoid the cache line where head is,
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002225 * + 1 desc for context descriptor,
2226 * otherwise try next time
2227 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002228 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
2229 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Jesse Brandeburg980093e2014-05-10 04:49:12 +00002230
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002231 count += TXD_USE_COUNT(skb_headlen(skb));
Jesse Brandeburgbe560522014-02-06 05:51:13 +00002232 if (i40e_maybe_stop_tx(tx_ring, count + 4 + 1)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002233 tx_ring->tx_stats.tx_busy++;
2234 return 0;
2235 }
2236 return count;
2237}
2238
2239/**
2240 * i40e_xmit_frame_ring - Sends buffer on Tx ring
2241 * @skb: send buffer
2242 * @tx_ring: ring to send buffer on
2243 *
2244 * Returns NETDEV_TX_OK if sent, else an error code
2245 **/
2246static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
2247 struct i40e_ring *tx_ring)
2248{
2249 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
2250 u32 cd_tunneling = 0, cd_l2tag2 = 0;
2251 struct i40e_tx_buffer *first;
2252 u32 td_offset = 0;
2253 u32 tx_flags = 0;
2254 __be16 protocol;
2255 u32 td_cmd = 0;
2256 u8 hdr_len = 0;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002257 int tsyn;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002258 int tso;
2259 if (0 == i40e_xmit_descriptor_count(skb, tx_ring))
2260 return NETDEV_TX_BUSY;
2261
2262 /* prepare the xmit flags */
2263 if (i40e_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
2264 goto out_drop;
2265
2266 /* obtain protocol of skb */
2267 protocol = skb->protocol;
2268
2269 /* record the location of the first descriptor for this packet */
2270 first = &tx_ring->tx_bi[tx_ring->next_to_use];
2271
2272 /* setup IPv4/IPv6 offloads */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00002273 if (protocol == htons(ETH_P_IP))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002274 tx_flags |= I40E_TX_FLAGS_IPV4;
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00002275 else if (protocol == htons(ETH_P_IPV6))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002276 tx_flags |= I40E_TX_FLAGS_IPV6;
2277
2278 tso = i40e_tso(tx_ring, skb, tx_flags, protocol, &hdr_len,
2279 &cd_type_cmd_tso_mss, &cd_tunneling);
2280
2281 if (tso < 0)
2282 goto out_drop;
2283 else if (tso)
2284 tx_flags |= I40E_TX_FLAGS_TSO;
2285
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002286 tsyn = i40e_tsyn(tx_ring, skb, tx_flags, &cd_type_cmd_tso_mss);
2287
2288 if (tsyn)
2289 tx_flags |= I40E_TX_FLAGS_TSYN;
2290
Jakub Kicinski259afec2014-03-15 14:55:37 +00002291 skb_tx_timestamp(skb);
2292
Alexander Duyckb1941302013-09-28 06:00:32 +00002293 /* always enable CRC insertion offload */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002294 td_cmd |= I40E_TX_DESC_CMD_ICRC;
2295
Alexander Duyckb1941302013-09-28 06:00:32 +00002296 /* Always offload the checksum, since it's in the data descriptor */
2297 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2298 tx_flags |= I40E_TX_FLAGS_CSUM;
2299
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002300 i40e_tx_enable_csum(skb, tx_flags, &td_cmd, &td_offset,
2301 tx_ring, &cd_tunneling);
Alexander Duyckb1941302013-09-28 06:00:32 +00002302 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002303
2304 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
2305 cd_tunneling, cd_l2tag2);
2306
2307 /* Add Flow Director ATR if it's enabled.
2308 *
2309 * NOTE: this must always be directly before the data descriptor.
2310 */
2311 i40e_atr(tx_ring, skb, tx_flags, protocol);
2312
2313 i40e_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
2314 td_cmd, td_offset);
2315
2316 i40e_maybe_stop_tx(tx_ring, DESC_NEEDED);
2317
2318 return NETDEV_TX_OK;
2319
2320out_drop:
2321 dev_kfree_skb_any(skb);
2322 return NETDEV_TX_OK;
2323}
2324
2325/**
2326 * i40e_lan_xmit_frame - Selects the correct VSI and Tx queue to send buffer
2327 * @skb: send buffer
2328 * @netdev: network interface device structure
2329 *
2330 * Returns NETDEV_TX_OK if sent, else an error code
2331 **/
2332netdev_tx_t i40e_lan_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
2333{
2334 struct i40e_netdev_priv *np = netdev_priv(netdev);
2335 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck9f65e15b2013-09-28 06:00:58 +00002336 struct i40e_ring *tx_ring = vsi->tx_rings[skb->queue_mapping];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002337
2338 /* hardware can't handle really short frames, hardware padding works
2339 * beyond this point
2340 */
2341 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
2342 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
2343 return NETDEV_TX_OK;
2344 skb->len = I40E_MIN_TX_LEN;
2345 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
2346 }
2347
2348 return i40e_xmit_frame_ring(skb, tx_ring);
2349}