blob: 267c0e609a02d4a640429377b30eb978fb979c0a [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 Duyck9f65e152013-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,
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000227 "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
228 fd_data->pctype, fd_data->fd_id, ret);
Kevin Scottb2d36c02014-04-09 05:58:59 +0000229 err = true;
230 } else {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000231 if (add)
232 dev_info(&pf->pdev->dev,
233 "Filter OK for PCTYPE %d loc = %d\n",
234 fd_data->pctype, fd_data->fd_id);
235 else
236 dev_info(&pf->pdev->dev,
237 "Filter deleted for PCTYPE %d loc = %d\n",
238 fd_data->pctype, fd_data->fd_id);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000239 }
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000240 return err ? -EOPNOTSUPP : 0;
241}
242
243#define I40E_TCPIP_DUMMY_PACKET_LEN 54
244/**
245 * i40e_add_del_fdir_tcpv4 - Add/Remove TCPv4 filters
246 * @vsi: pointer to the targeted VSI
247 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000248 * @add: true adds a filter, false removes it
249 *
250 * Returns 0 if the filters were successfully added or removed
251 **/
252static int i40e_add_del_fdir_tcpv4(struct i40e_vsi *vsi,
253 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000254 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000255{
256 struct i40e_pf *pf = vsi->back;
257 struct tcphdr *tcp;
258 struct iphdr *ip;
259 bool err = false;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000260 u8 *raw_packet;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000261 int ret;
262 /* Dummy packet */
263 static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
264 0x45, 0, 0, 0x28, 0, 0, 0x40, 0, 0x40, 0x6, 0, 0, 0, 0, 0, 0,
265 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x80, 0x11,
266 0x0, 0x72, 0, 0, 0, 0};
267
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000268 raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
269 if (!raw_packet)
270 return -ENOMEM;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000271 memcpy(raw_packet, packet, I40E_TCPIP_DUMMY_PACKET_LEN);
272
273 ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
274 tcp = (struct tcphdr *)(raw_packet + IP_HEADER_OFFSET
275 + sizeof(struct iphdr));
276
277 ip->daddr = fd_data->dst_ip[0];
278 tcp->dest = fd_data->dst_port;
279 ip->saddr = fd_data->src_ip[0];
280 tcp->source = fd_data->src_port;
281
282 if (add) {
283 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED) {
284 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 flow being applied\n");
285 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
286 }
287 }
288
Kevin Scottb2d36c02014-04-09 05:58:59 +0000289 fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000290 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
291
292 if (ret) {
293 dev_info(&pf->pdev->dev,
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000294 "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
295 fd_data->pctype, fd_data->fd_id, ret);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000296 err = true;
297 } else {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000298 if (add)
299 dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d loc = %d)\n",
300 fd_data->pctype, fd_data->fd_id);
301 else
302 dev_info(&pf->pdev->dev,
303 "Filter deleted for PCTYPE %d loc = %d\n",
304 fd_data->pctype, fd_data->fd_id);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000305 }
306
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000307 return err ? -EOPNOTSUPP : 0;
308}
309
310/**
311 * i40e_add_del_fdir_sctpv4 - Add/Remove SCTPv4 Flow Director filters for
312 * a specific flow spec
313 * @vsi: pointer to the targeted VSI
314 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000315 * @add: true adds a filter, false removes it
316 *
Jean Sacren21d3efd2014-03-17 18:14:39 +0000317 * Always returns -EOPNOTSUPP
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000318 **/
319static int i40e_add_del_fdir_sctpv4(struct i40e_vsi *vsi,
320 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000321 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000322{
323 return -EOPNOTSUPP;
324}
325
326#define I40E_IP_DUMMY_PACKET_LEN 34
327/**
328 * i40e_add_del_fdir_ipv4 - Add/Remove IPv4 Flow Director filters for
329 * a specific flow spec
330 * @vsi: pointer to the targeted VSI
331 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000332 * @add: true adds a filter, false removes it
333 *
334 * Returns 0 if the filters were successfully added or removed
335 **/
336static int i40e_add_del_fdir_ipv4(struct i40e_vsi *vsi,
337 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000338 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000339{
340 struct i40e_pf *pf = vsi->back;
341 struct iphdr *ip;
342 bool err = false;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000343 u8 *raw_packet;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000344 int ret;
345 int i;
346 static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
347 0x45, 0, 0, 0x14, 0, 0, 0x40, 0, 0x40, 0x10, 0, 0, 0, 0, 0, 0,
348 0, 0, 0, 0};
349
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000350 for (i = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
351 i <= I40E_FILTER_PCTYPE_FRAG_IPV4; i++) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000352 raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
353 if (!raw_packet)
354 return -ENOMEM;
355 memcpy(raw_packet, packet, I40E_IP_DUMMY_PACKET_LEN);
356 ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
357
358 ip->saddr = fd_data->src_ip[0];
359 ip->daddr = fd_data->dst_ip[0];
360 ip->protocol = 0;
361
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000362 fd_data->pctype = i;
363 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
364
365 if (ret) {
366 dev_info(&pf->pdev->dev,
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000367 "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
368 fd_data->pctype, fd_data->fd_id, ret);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000369 err = true;
370 } else {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000371 if (add)
372 dev_info(&pf->pdev->dev,
373 "Filter OK for PCTYPE %d loc = %d\n",
374 fd_data->pctype, fd_data->fd_id);
375 else
376 dev_info(&pf->pdev->dev,
377 "Filter deleted for PCTYPE %d loc = %d\n",
378 fd_data->pctype, fd_data->fd_id);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000379 }
380 }
381
382 return err ? -EOPNOTSUPP : 0;
383}
384
385/**
386 * i40e_add_del_fdir - Build raw packets to add/del fdir filter
387 * @vsi: pointer to the targeted VSI
388 * @cmd: command to get or set RX flow classification rules
389 * @add: true adds a filter, false removes it
390 *
391 **/
392int i40e_add_del_fdir(struct i40e_vsi *vsi,
393 struct i40e_fdir_filter *input, bool add)
394{
395 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000396 int ret;
397
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000398 switch (input->flow_type & ~FLOW_EXT) {
399 case TCP_V4_FLOW:
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 UDP_V4_FLOW:
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 SCTP_V4_FLOW:
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 case IPV4_FLOW:
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 case IP_USER_FLOW:
412 switch (input->ip4_proto) {
413 case IPPROTO_TCP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000414 ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000415 break;
416 case IPPROTO_UDP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000417 ret = i40e_add_del_fdir_udpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000418 break;
419 case IPPROTO_SCTP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000420 ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000421 break;
422 default:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000423 ret = i40e_add_del_fdir_ipv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000424 break;
425 }
426 break;
427 default:
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +0000428 dev_info(&pf->pdev->dev, "Could not specify spec type %d\n",
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000429 input->flow_type);
430 ret = -EINVAL;
431 }
432
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000433 /* The buffer allocated here is freed by the i40e_clean_tx_ring() */
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000434 return ret;
435}
436
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000437/**
438 * i40e_fd_handle_status - check the Programming Status for FD
439 * @rx_ring: the Rx ring for this descriptor
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000440 * @rx_desc: the Rx descriptor for programming Status, not a packet descriptor.
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000441 * @prog_id: the id originally used for programming
442 *
443 * This is used to verify if the FD programming or invalidation
444 * requested by SW to the HW is successful or not and take actions accordingly.
445 **/
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000446static void i40e_fd_handle_status(struct i40e_ring *rx_ring,
447 union i40e_rx_desc *rx_desc, u8 prog_id)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000448{
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000449 struct i40e_pf *pf = rx_ring->vsi->back;
450 struct pci_dev *pdev = pf->pdev;
451 u32 fcnt_prog, fcnt_avail;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000452 u32 error;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000453 u64 qw;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000454
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000455 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000456 error = (qw & I40E_RX_PROG_STATUS_DESC_QW1_ERROR_MASK) >>
457 I40E_RX_PROG_STATUS_DESC_QW1_ERROR_SHIFT;
458
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000459 if (error == (0x1 << I40E_RX_PROG_STATUS_DESC_FD_TBL_FULL_SHIFT)) {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000460 if ((rx_desc->wb.qword0.hi_dword.fd_id != 0) ||
461 (I40E_DEBUG_FD & pf->hw.debug_mask))
462 dev_warn(&pdev->dev, "ntuple filter loc = %d, could not be added\n",
463 rx_desc->wb.qword0.hi_dword.fd_id);
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000464
465 /* filter programming failed most likely due to table full */
Anjali Singhai Jain12957382014-06-04 04:22:47 +0000466 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
467 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000468 /* If ATR is running fcnt_prog can quickly change,
469 * if we are very close to full, it makes sense to disable
470 * FD ATR/SB and then re-enable it when there is room.
471 */
472 if (fcnt_prog >= (fcnt_avail - I40E_FDIR_BUFFER_FULL_MARGIN)) {
473 /* Turn off ATR first */
Anjali Singhai Jainb814ba62014-06-04 20:41:48 +0000474 if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
475 !(pf->auto_disable_flags &
476 I40E_FLAG_FD_ATR_ENABLED)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000477 dev_warn(&pdev->dev, "FD filter space full, ATR for further flows will be turned off\n");
478 pf->auto_disable_flags |=
479 I40E_FLAG_FD_ATR_ENABLED;
480 pf->flags |= I40E_FLAG_FDIR_REQUIRES_REINIT;
Anjali Singhai Jainb814ba62014-06-04 20:41:48 +0000481 } else if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
482 !(pf->auto_disable_flags &
483 I40E_FLAG_FD_SB_ENABLED)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000484 dev_warn(&pdev->dev, "FD filter space full, new ntuple rules will not be added\n");
485 pf->auto_disable_flags |=
486 I40E_FLAG_FD_SB_ENABLED;
487 pf->flags |= I40E_FLAG_FDIR_REQUIRES_REINIT;
488 }
489 } else {
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000490 dev_info(&pdev->dev,
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000491 "FD filter programming failed due to incorrect filter parameters\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000492 }
493 } else if (error ==
494 (0x1 << I40E_RX_PROG_STATUS_DESC_NO_FD_ENTRY_SHIFT)) {
Anjali Singhai Jain13c28842014-03-06 09:00:04 +0000495 if (I40E_DEBUG_FD & pf->hw.debug_mask)
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000496 dev_info(&pdev->dev, "ntuple filter fd_id = %d, could not be removed\n",
Anjali Singhai Jain13c28842014-03-06 09:00:04 +0000497 rx_desc->wb.qword0.hi_dword.fd_id);
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000498 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000499}
500
501/**
Alexander Duycka5e9c572013-09-28 06:00:27 +0000502 * i40e_unmap_and_free_tx_resource - Release a Tx buffer
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000503 * @ring: the ring that owns the buffer
504 * @tx_buffer: the buffer to free
505 **/
Alexander Duycka5e9c572013-09-28 06:00:27 +0000506static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
507 struct i40e_tx_buffer *tx_buffer)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000508{
Alexander Duycka5e9c572013-09-28 06:00:27 +0000509 if (tx_buffer->skb) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000510 if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
511 kfree(tx_buffer->raw_buf);
512 else
513 dev_kfree_skb_any(tx_buffer->skb);
514
Alexander Duycka5e9c572013-09-28 06:00:27 +0000515 if (dma_unmap_len(tx_buffer, len))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000516 dma_unmap_single(ring->dev,
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000517 dma_unmap_addr(tx_buffer, dma),
518 dma_unmap_len(tx_buffer, len),
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000519 DMA_TO_DEVICE);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000520 } else if (dma_unmap_len(tx_buffer, len)) {
521 dma_unmap_page(ring->dev,
522 dma_unmap_addr(tx_buffer, dma),
523 dma_unmap_len(tx_buffer, len),
524 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000525 }
Alexander Duycka5e9c572013-09-28 06:00:27 +0000526 tx_buffer->next_to_watch = NULL;
527 tx_buffer->skb = NULL;
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000528 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000529 /* tx_buffer must be completely set up in the transmit path */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000530}
531
532/**
533 * i40e_clean_tx_ring - Free any empty Tx buffers
534 * @tx_ring: ring to be cleaned
535 **/
536void i40e_clean_tx_ring(struct i40e_ring *tx_ring)
537{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000538 unsigned long bi_size;
539 u16 i;
540
541 /* ring already cleared, nothing to do */
542 if (!tx_ring->tx_bi)
543 return;
544
545 /* Free all the Tx ring sk_buffs */
Alexander Duycka5e9c572013-09-28 06:00:27 +0000546 for (i = 0; i < tx_ring->count; i++)
547 i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000548
549 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
550 memset(tx_ring->tx_bi, 0, bi_size);
551
552 /* Zero out the descriptor ring */
553 memset(tx_ring->desc, 0, tx_ring->size);
554
555 tx_ring->next_to_use = 0;
556 tx_ring->next_to_clean = 0;
Alexander Duyck7070ce02013-09-28 06:00:37 +0000557
558 if (!tx_ring->netdev)
559 return;
560
561 /* cleanup Tx queue statistics */
562 netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev,
563 tx_ring->queue_index));
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000564}
565
566/**
567 * i40e_free_tx_resources - Free Tx resources per queue
568 * @tx_ring: Tx descriptor ring for a specific queue
569 *
570 * Free all transmit software resources
571 **/
572void i40e_free_tx_resources(struct i40e_ring *tx_ring)
573{
574 i40e_clean_tx_ring(tx_ring);
575 kfree(tx_ring->tx_bi);
576 tx_ring->tx_bi = NULL;
577
578 if (tx_ring->desc) {
579 dma_free_coherent(tx_ring->dev, tx_ring->size,
580 tx_ring->desc, tx_ring->dma);
581 tx_ring->desc = NULL;
582 }
583}
584
585/**
586 * i40e_get_tx_pending - how many tx descriptors not processed
587 * @tx_ring: the ring of descriptors
588 *
589 * Since there is no access to the ring head register
590 * in XL710, we need to use our local copies
591 **/
592static u32 i40e_get_tx_pending(struct i40e_ring *ring)
593{
594 u32 ntu = ((ring->next_to_clean <= ring->next_to_use)
595 ? ring->next_to_use
596 : ring->next_to_use + ring->count);
597 return ntu - ring->next_to_clean;
598}
599
600/**
601 * i40e_check_tx_hang - Is there a hang in the Tx queue
602 * @tx_ring: the ring of descriptors
603 **/
604static bool i40e_check_tx_hang(struct i40e_ring *tx_ring)
605{
606 u32 tx_pending = i40e_get_tx_pending(tx_ring);
607 bool ret = false;
608
609 clear_check_for_tx_hang(tx_ring);
610
611 /* Check for a hung queue, but be thorough. This verifies
612 * that a transmit has been completed since the previous
613 * check AND there is at least one packet pending. The
614 * ARMED bit is set to indicate a potential hang. The
615 * bit is cleared if a pause frame is received to remove
616 * false hang detection due to PFC or 802.3x frames. By
617 * requiring this to fail twice we avoid races with
618 * PFC clearing the ARMED bit and conditions where we
619 * run the check_tx_hang logic with a transmit completion
620 * pending but without time to complete it yet.
621 */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000622 if ((tx_ring->tx_stats.tx_done_old == tx_ring->stats.packets) &&
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000623 tx_pending) {
624 /* make sure it is true for two checks in a row */
625 ret = test_and_set_bit(__I40E_HANG_CHECK_ARMED,
626 &tx_ring->state);
627 } else {
628 /* update completed stats and disarm the hang check */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000629 tx_ring->tx_stats.tx_done_old = tx_ring->stats.packets;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000630 clear_bit(__I40E_HANG_CHECK_ARMED, &tx_ring->state);
631 }
632
633 return ret;
634}
635
636/**
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000637 * i40e_get_head - Retrieve head from head writeback
638 * @tx_ring: tx ring to fetch head of
639 *
640 * Returns value of Tx ring head based on value stored
641 * in head write-back location
642 **/
643static inline u32 i40e_get_head(struct i40e_ring *tx_ring)
644{
645 void *head = (struct i40e_tx_desc *)tx_ring->desc + tx_ring->count;
646
647 return le32_to_cpu(*(volatile __le32 *)head);
648}
649
650/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000651 * i40e_clean_tx_irq - Reclaim resources after transmit completes
652 * @tx_ring: tx ring to clean
653 * @budget: how many cleans we're allowed
654 *
655 * Returns true if there's any budget left (e.g. the clean is finished)
656 **/
657static bool i40e_clean_tx_irq(struct i40e_ring *tx_ring, int budget)
658{
659 u16 i = tx_ring->next_to_clean;
660 struct i40e_tx_buffer *tx_buf;
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000661 struct i40e_tx_desc *tx_head;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000662 struct i40e_tx_desc *tx_desc;
663 unsigned int total_packets = 0;
664 unsigned int total_bytes = 0;
665
666 tx_buf = &tx_ring->tx_bi[i];
667 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000668 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000669
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000670 tx_head = I40E_TX_DESC(tx_ring, i40e_get_head(tx_ring));
671
Alexander Duycka5e9c572013-09-28 06:00:27 +0000672 do {
673 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000674
675 /* if next_to_watch is not set then there is no work pending */
676 if (!eop_desc)
677 break;
678
Alexander Duycka5e9c572013-09-28 06:00:27 +0000679 /* prevent any other reads prior to eop_desc */
680 read_barrier_depends();
681
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000682 /* we have caught up to head, no work left to do */
683 if (tx_head == tx_desc)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000684 break;
685
Alexander Duyckc304fda2013-09-28 06:00:12 +0000686 /* clear next_to_watch to prevent false hangs */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000687 tx_buf->next_to_watch = NULL;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000688
Alexander Duycka5e9c572013-09-28 06:00:27 +0000689 /* update the statistics for this packet */
690 total_bytes += tx_buf->bytecount;
691 total_packets += tx_buf->gso_segs;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000692
Alexander Duycka5e9c572013-09-28 06:00:27 +0000693 /* free the skb */
694 dev_kfree_skb_any(tx_buf->skb);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000695
Alexander Duycka5e9c572013-09-28 06:00:27 +0000696 /* unmap skb header data */
697 dma_unmap_single(tx_ring->dev,
698 dma_unmap_addr(tx_buf, dma),
699 dma_unmap_len(tx_buf, len),
700 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000701
Alexander Duycka5e9c572013-09-28 06:00:27 +0000702 /* clear tx_buffer data */
703 tx_buf->skb = NULL;
704 dma_unmap_len_set(tx_buf, len, 0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000705
Alexander Duycka5e9c572013-09-28 06:00:27 +0000706 /* unmap remaining buffers */
707 while (tx_desc != eop_desc) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000708
709 tx_buf++;
710 tx_desc++;
711 i++;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000712 if (unlikely(!i)) {
713 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000714 tx_buf = tx_ring->tx_bi;
715 tx_desc = I40E_TX_DESC(tx_ring, 0);
716 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000717
Alexander Duycka5e9c572013-09-28 06:00:27 +0000718 /* unmap any remaining paged data */
719 if (dma_unmap_len(tx_buf, len)) {
720 dma_unmap_page(tx_ring->dev,
721 dma_unmap_addr(tx_buf, dma),
722 dma_unmap_len(tx_buf, len),
723 DMA_TO_DEVICE);
724 dma_unmap_len_set(tx_buf, len, 0);
725 }
726 }
727
728 /* move us one more past the eop_desc for start of next pkt */
729 tx_buf++;
730 tx_desc++;
731 i++;
732 if (unlikely(!i)) {
733 i -= tx_ring->count;
734 tx_buf = tx_ring->tx_bi;
735 tx_desc = I40E_TX_DESC(tx_ring, 0);
736 }
737
738 /* update budget accounting */
739 budget--;
740 } while (likely(budget));
741
742 i += tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000743 tx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000744 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +0000745 tx_ring->stats.bytes += total_bytes;
746 tx_ring->stats.packets += total_packets;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000747 u64_stats_update_end(&tx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000748 tx_ring->q_vector->tx.total_bytes += total_bytes;
749 tx_ring->q_vector->tx.total_packets += total_packets;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000750
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000751 if (check_for_tx_hang(tx_ring) && i40e_check_tx_hang(tx_ring)) {
752 /* schedule immediate reset if we believe we hung */
753 dev_info(tx_ring->dev, "Detected Tx Unit Hang\n"
754 " VSI <%d>\n"
755 " Tx Queue <%d>\n"
756 " next_to_use <%x>\n"
757 " next_to_clean <%x>\n",
758 tx_ring->vsi->seid,
759 tx_ring->queue_index,
760 tx_ring->next_to_use, i);
761 dev_info(tx_ring->dev, "tx_bi[next_to_clean]\n"
762 " time_stamp <%lx>\n"
763 " jiffies <%lx>\n",
764 tx_ring->tx_bi[i].time_stamp, jiffies);
765
766 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
767
768 dev_info(tx_ring->dev,
769 "tx hang detected on queue %d, resetting adapter\n",
770 tx_ring->queue_index);
771
772 tx_ring->netdev->netdev_ops->ndo_tx_timeout(tx_ring->netdev);
773
774 /* the adapter is about to reset, no point in enabling stuff */
775 return true;
776 }
777
Alexander Duyck7070ce02013-09-28 06:00:37 +0000778 netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
779 tx_ring->queue_index),
780 total_packets, total_bytes);
781
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000782#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
783 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
784 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
785 /* Make sure that anybody stopping the queue after this
786 * sees the new next_to_clean.
787 */
788 smp_mb();
789 if (__netif_subqueue_stopped(tx_ring->netdev,
790 tx_ring->queue_index) &&
791 !test_bit(__I40E_DOWN, &tx_ring->vsi->state)) {
792 netif_wake_subqueue(tx_ring->netdev,
793 tx_ring->queue_index);
794 ++tx_ring->tx_stats.restart_queue;
795 }
796 }
797
798 return budget > 0;
799}
800
801/**
802 * i40e_set_new_dynamic_itr - Find new ITR level
803 * @rc: structure containing ring performance data
804 *
805 * Stores a new ITR value based on packets and byte counts during
806 * the last interrupt. The advantage of per interrupt computation
807 * is faster updates and more accurate ITR for the current traffic
808 * pattern. Constants in this function were computed based on
809 * theoretical maximum wire speed and thresholds were set based on
810 * testing data as well as attempting to minimize response time
811 * while increasing bulk throughput.
812 **/
813static void i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
814{
815 enum i40e_latency_range new_latency_range = rc->latency_range;
816 u32 new_itr = rc->itr;
817 int bytes_per_int;
818
819 if (rc->total_packets == 0 || !rc->itr)
820 return;
821
822 /* simple throttlerate management
823 * 0-10MB/s lowest (100000 ints/s)
824 * 10-20MB/s low (20000 ints/s)
825 * 20-1249MB/s bulk (8000 ints/s)
826 */
827 bytes_per_int = rc->total_bytes / rc->itr;
828 switch (rc->itr) {
829 case I40E_LOWEST_LATENCY:
830 if (bytes_per_int > 10)
831 new_latency_range = I40E_LOW_LATENCY;
832 break;
833 case I40E_LOW_LATENCY:
834 if (bytes_per_int > 20)
835 new_latency_range = I40E_BULK_LATENCY;
836 else if (bytes_per_int <= 10)
837 new_latency_range = I40E_LOWEST_LATENCY;
838 break;
839 case I40E_BULK_LATENCY:
840 if (bytes_per_int <= 20)
841 rc->latency_range = I40E_LOW_LATENCY;
842 break;
843 }
844
845 switch (new_latency_range) {
846 case I40E_LOWEST_LATENCY:
847 new_itr = I40E_ITR_100K;
848 break;
849 case I40E_LOW_LATENCY:
850 new_itr = I40E_ITR_20K;
851 break;
852 case I40E_BULK_LATENCY:
853 new_itr = I40E_ITR_8K;
854 break;
855 default:
856 break;
857 }
858
859 if (new_itr != rc->itr) {
860 /* do an exponential smoothing */
861 new_itr = (10 * new_itr * rc->itr) /
862 ((9 * new_itr) + rc->itr);
863 rc->itr = new_itr & I40E_MAX_ITR;
864 }
865
866 rc->total_bytes = 0;
867 rc->total_packets = 0;
868}
869
870/**
871 * i40e_update_dynamic_itr - Adjust ITR based on bytes per int
872 * @q_vector: the vector to adjust
873 **/
874static void i40e_update_dynamic_itr(struct i40e_q_vector *q_vector)
875{
876 u16 vector = q_vector->vsi->base_vector + q_vector->v_idx;
877 struct i40e_hw *hw = &q_vector->vsi->back->hw;
878 u32 reg_addr;
879 u16 old_itr;
880
881 reg_addr = I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1);
882 old_itr = q_vector->rx.itr;
883 i40e_set_new_dynamic_itr(&q_vector->rx);
884 if (old_itr != q_vector->rx.itr)
885 wr32(hw, reg_addr, q_vector->rx.itr);
886
887 reg_addr = I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1);
888 old_itr = q_vector->tx.itr;
889 i40e_set_new_dynamic_itr(&q_vector->tx);
890 if (old_itr != q_vector->tx.itr)
891 wr32(hw, reg_addr, q_vector->tx.itr);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000892}
893
894/**
895 * i40e_clean_programming_status - clean the programming status descriptor
896 * @rx_ring: the rx ring that has this descriptor
897 * @rx_desc: the rx descriptor written back by HW
898 *
899 * Flow director should handle FD_FILTER_STATUS to check its filter programming
900 * status being successful or not and take actions accordingly. FCoE should
901 * handle its context/filter programming/invalidation status and take actions.
902 *
903 **/
904static void i40e_clean_programming_status(struct i40e_ring *rx_ring,
905 union i40e_rx_desc *rx_desc)
906{
907 u64 qw;
908 u8 id;
909
910 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
911 id = (qw & I40E_RX_PROG_STATUS_DESC_QW1_PROGID_MASK) >>
912 I40E_RX_PROG_STATUS_DESC_QW1_PROGID_SHIFT;
913
914 if (id == I40E_RX_PROG_STATUS_DESC_FD_FILTER_STATUS)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000915 i40e_fd_handle_status(rx_ring, rx_desc, id);
Vasu Dev38e00432014-08-01 13:27:03 -0700916#ifdef I40E_FCOE
917 else if ((id == I40E_RX_PROG_STATUS_DESC_FCOE_CTXT_PROG_STATUS) ||
918 (id == I40E_RX_PROG_STATUS_DESC_FCOE_CTXT_INVL_STATUS))
919 i40e_fcoe_handle_status(rx_ring, rx_desc, id);
920#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000921}
922
923/**
924 * i40e_setup_tx_descriptors - Allocate the Tx descriptors
925 * @tx_ring: the tx ring to set up
926 *
927 * Return 0 on success, negative on error
928 **/
929int i40e_setup_tx_descriptors(struct i40e_ring *tx_ring)
930{
931 struct device *dev = tx_ring->dev;
932 int bi_size;
933
934 if (!dev)
935 return -ENOMEM;
936
937 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
938 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
939 if (!tx_ring->tx_bi)
940 goto err;
941
942 /* round up to nearest 4K */
943 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000944 /* add u32 for head writeback, align after this takes care of
945 * guaranteeing this is at least one cache line in size
946 */
947 tx_ring->size += sizeof(u32);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000948 tx_ring->size = ALIGN(tx_ring->size, 4096);
949 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
950 &tx_ring->dma, GFP_KERNEL);
951 if (!tx_ring->desc) {
952 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
953 tx_ring->size);
954 goto err;
955 }
956
957 tx_ring->next_to_use = 0;
958 tx_ring->next_to_clean = 0;
959 return 0;
960
961err:
962 kfree(tx_ring->tx_bi);
963 tx_ring->tx_bi = NULL;
964 return -ENOMEM;
965}
966
967/**
968 * i40e_clean_rx_ring - Free Rx buffers
969 * @rx_ring: ring to be cleaned
970 **/
971void i40e_clean_rx_ring(struct i40e_ring *rx_ring)
972{
973 struct device *dev = rx_ring->dev;
974 struct i40e_rx_buffer *rx_bi;
975 unsigned long bi_size;
976 u16 i;
977
978 /* ring already cleared, nothing to do */
979 if (!rx_ring->rx_bi)
980 return;
981
982 /* Free all the Rx ring sk_buffs */
983 for (i = 0; i < rx_ring->count; i++) {
984 rx_bi = &rx_ring->rx_bi[i];
985 if (rx_bi->dma) {
986 dma_unmap_single(dev,
987 rx_bi->dma,
988 rx_ring->rx_buf_len,
989 DMA_FROM_DEVICE);
990 rx_bi->dma = 0;
991 }
992 if (rx_bi->skb) {
993 dev_kfree_skb(rx_bi->skb);
994 rx_bi->skb = NULL;
995 }
996 if (rx_bi->page) {
997 if (rx_bi->page_dma) {
998 dma_unmap_page(dev,
999 rx_bi->page_dma,
1000 PAGE_SIZE / 2,
1001 DMA_FROM_DEVICE);
1002 rx_bi->page_dma = 0;
1003 }
1004 __free_page(rx_bi->page);
1005 rx_bi->page = NULL;
1006 rx_bi->page_offset = 0;
1007 }
1008 }
1009
1010 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
1011 memset(rx_ring->rx_bi, 0, bi_size);
1012
1013 /* Zero out the descriptor ring */
1014 memset(rx_ring->desc, 0, rx_ring->size);
1015
1016 rx_ring->next_to_clean = 0;
1017 rx_ring->next_to_use = 0;
1018}
1019
1020/**
1021 * i40e_free_rx_resources - Free Rx resources
1022 * @rx_ring: ring to clean the resources from
1023 *
1024 * Free all receive software resources
1025 **/
1026void i40e_free_rx_resources(struct i40e_ring *rx_ring)
1027{
1028 i40e_clean_rx_ring(rx_ring);
1029 kfree(rx_ring->rx_bi);
1030 rx_ring->rx_bi = NULL;
1031
1032 if (rx_ring->desc) {
1033 dma_free_coherent(rx_ring->dev, rx_ring->size,
1034 rx_ring->desc, rx_ring->dma);
1035 rx_ring->desc = NULL;
1036 }
1037}
1038
1039/**
1040 * i40e_setup_rx_descriptors - Allocate Rx descriptors
1041 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
1042 *
1043 * Returns 0 on success, negative on failure
1044 **/
1045int i40e_setup_rx_descriptors(struct i40e_ring *rx_ring)
1046{
1047 struct device *dev = rx_ring->dev;
1048 int bi_size;
1049
1050 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
1051 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
1052 if (!rx_ring->rx_bi)
1053 goto err;
1054
1055 /* Round up to nearest 4K */
1056 rx_ring->size = ring_is_16byte_desc_enabled(rx_ring)
1057 ? rx_ring->count * sizeof(union i40e_16byte_rx_desc)
1058 : rx_ring->count * sizeof(union i40e_32byte_rx_desc);
1059 rx_ring->size = ALIGN(rx_ring->size, 4096);
1060 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
1061 &rx_ring->dma, GFP_KERNEL);
1062
1063 if (!rx_ring->desc) {
1064 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
1065 rx_ring->size);
1066 goto err;
1067 }
1068
1069 rx_ring->next_to_clean = 0;
1070 rx_ring->next_to_use = 0;
1071
1072 return 0;
1073err:
1074 kfree(rx_ring->rx_bi);
1075 rx_ring->rx_bi = NULL;
1076 return -ENOMEM;
1077}
1078
1079/**
1080 * i40e_release_rx_desc - Store the new tail and head values
1081 * @rx_ring: ring to bump
1082 * @val: new head index
1083 **/
1084static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
1085{
1086 rx_ring->next_to_use = val;
1087 /* Force memory writes to complete before letting h/w
1088 * know there are new descriptors to fetch. (Only
1089 * applicable for weak-ordered memory model archs,
1090 * such as IA-64).
1091 */
1092 wmb();
1093 writel(val, rx_ring->tail);
1094}
1095
1096/**
1097 * i40e_alloc_rx_buffers - Replace used receive buffers; packet split
1098 * @rx_ring: ring to place buffers on
1099 * @cleaned_count: number of buffers to replace
1100 **/
1101void i40e_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count)
1102{
1103 u16 i = rx_ring->next_to_use;
1104 union i40e_rx_desc *rx_desc;
1105 struct i40e_rx_buffer *bi;
1106 struct sk_buff *skb;
1107
1108 /* do nothing if no valid netdev defined */
1109 if (!rx_ring->netdev || !cleaned_count)
1110 return;
1111
1112 while (cleaned_count--) {
1113 rx_desc = I40E_RX_DESC(rx_ring, i);
1114 bi = &rx_ring->rx_bi[i];
1115 skb = bi->skb;
1116
1117 if (!skb) {
1118 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1119 rx_ring->rx_buf_len);
1120 if (!skb) {
Mitch Williams420136c2013-12-18 13:45:59 +00001121 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001122 goto no_buffers;
1123 }
1124 /* initialize queue mapping */
1125 skb_record_rx_queue(skb, rx_ring->queue_index);
1126 bi->skb = skb;
1127 }
1128
1129 if (!bi->dma) {
1130 bi->dma = dma_map_single(rx_ring->dev,
1131 skb->data,
1132 rx_ring->rx_buf_len,
1133 DMA_FROM_DEVICE);
1134 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Mitch Williams420136c2013-12-18 13:45:59 +00001135 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001136 bi->dma = 0;
1137 goto no_buffers;
1138 }
1139 }
1140
1141 if (ring_is_ps_enabled(rx_ring)) {
1142 if (!bi->page) {
1143 bi->page = alloc_page(GFP_ATOMIC);
1144 if (!bi->page) {
Mitch Williams420136c2013-12-18 13:45:59 +00001145 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001146 goto no_buffers;
1147 }
1148 }
1149
1150 if (!bi->page_dma) {
1151 /* use a half page if we're re-using */
1152 bi->page_offset ^= PAGE_SIZE / 2;
1153 bi->page_dma = dma_map_page(rx_ring->dev,
1154 bi->page,
1155 bi->page_offset,
1156 PAGE_SIZE / 2,
1157 DMA_FROM_DEVICE);
1158 if (dma_mapping_error(rx_ring->dev,
1159 bi->page_dma)) {
Mitch Williams420136c2013-12-18 13:45:59 +00001160 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001161 bi->page_dma = 0;
1162 goto no_buffers;
1163 }
1164 }
1165
1166 /* Refresh the desc even if buffer_addrs didn't change
1167 * because each write-back erases this info.
1168 */
1169 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1170 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
1171 } else {
1172 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
1173 rx_desc->read.hdr_addr = 0;
1174 }
1175 i++;
1176 if (i == rx_ring->count)
1177 i = 0;
1178 }
1179
1180no_buffers:
1181 if (rx_ring->next_to_use != i)
1182 i40e_release_rx_desc(rx_ring, i);
1183}
1184
1185/**
1186 * i40e_receive_skb - Send a completed packet up the stack
1187 * @rx_ring: rx ring in play
1188 * @skb: packet to send up
1189 * @vlan_tag: vlan tag for packet
1190 **/
1191static void i40e_receive_skb(struct i40e_ring *rx_ring,
1192 struct sk_buff *skb, u16 vlan_tag)
1193{
1194 struct i40e_q_vector *q_vector = rx_ring->q_vector;
1195 struct i40e_vsi *vsi = rx_ring->vsi;
1196 u64 flags = vsi->back->flags;
1197
1198 if (vlan_tag & VLAN_VID_MASK)
1199 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
1200
1201 if (flags & I40E_FLAG_IN_NETPOLL)
1202 netif_rx(skb);
1203 else
1204 napi_gro_receive(&q_vector->napi, skb);
1205}
1206
1207/**
1208 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
1209 * @vsi: the VSI we care about
1210 * @skb: skb currently being received and modified
1211 * @rx_status: status value of last descriptor in packet
1212 * @rx_error: error value of last descriptor in packet
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001213 * @rx_ptype: ptype value of last descriptor in packet
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001214 **/
1215static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
1216 struct sk_buff *skb,
1217 u32 rx_status,
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001218 u32 rx_error,
1219 u16 rx_ptype)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001220{
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001221 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(rx_ptype);
1222 bool ipv4 = false, ipv6 = false;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001223 bool ipv4_tunnel, ipv6_tunnel;
1224 __wsum rx_udp_csum;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001225 struct iphdr *iph;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001226 __sum16 csum;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001227
1228 ipv4_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT4_MAC_PAY3) &&
1229 (rx_ptype < I40E_RX_PTYPE_GRENAT4_MACVLAN_IPV6_ICMP_PAY4);
1230 ipv6_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT6_MAC_PAY3) &&
1231 (rx_ptype < I40E_RX_PTYPE_GRENAT6_MACVLAN_IPV6_ICMP_PAY4);
1232
1233 skb->encapsulation = ipv4_tunnel || ipv6_tunnel;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001234 skb->ip_summed = CHECKSUM_NONE;
1235
1236 /* Rx csum enabled and ip headers found? */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001237 if (!(vsi->netdev->features & NETIF_F_RXCSUM))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001238 return;
1239
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001240 /* did the hardware decode the packet and checksum? */
1241 if (!(rx_status & (1 << I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
1242 return;
1243
1244 /* both known and outer_ip must be set for the below code to work */
1245 if (!(decoded.known && decoded.outer_ip))
1246 return;
1247
1248 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1249 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4)
1250 ipv4 = true;
1251 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1252 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6)
1253 ipv6 = true;
1254
1255 if (ipv4 &&
1256 (rx_error & ((1 << I40E_RX_DESC_ERROR_IPE_SHIFT) |
1257 (1 << I40E_RX_DESC_ERROR_EIPE_SHIFT))))
1258 goto checksum_fail;
1259
Jesse Brandeburgddf1d0d2014-02-13 03:48:39 -08001260 /* likely incorrect csum if alternate IP extension headers found */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001261 if (ipv6 &&
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001262 rx_status & (1 << I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
1263 /* don't increment checksum err here, non-fatal err */
Shannon Nelson8ee75a82013-12-21 05:44:46 +00001264 return;
1265
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001266 /* there was some L4 error, count error and punt packet to the stack */
1267 if (rx_error & (1 << I40E_RX_DESC_ERROR_L4E_SHIFT))
1268 goto checksum_fail;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001269
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001270 /* handle packets that were not able to be checksummed due
1271 * to arrival speed, in this case the stack can compute
1272 * the csum.
1273 */
1274 if (rx_error & (1 << I40E_RX_DESC_ERROR_PPRS_SHIFT))
1275 return;
1276
1277 /* If VXLAN traffic has an outer UDPv4 checksum we need to check
1278 * it in the driver, hardware does not do it for us.
1279 * Since L3L4P bit was set we assume a valid IHL value (>=5)
1280 * so the total length of IPv4 header is IHL*4 bytes
1281 * The UDP_0 bit *may* bet set if the *inner* header is UDP
1282 */
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001283 if (ipv4_tunnel &&
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001284 (decoded.inner_prot != I40E_RX_PTYPE_INNER_PROT_UDP) &&
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001285 !(rx_status & (1 << I40E_RX_DESC_STATUS_UDP_0_SHIFT))) {
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001286 skb->transport_header = skb->mac_header +
1287 sizeof(struct ethhdr) +
1288 (ip_hdr(skb)->ihl * 4);
1289
1290 /* Add 4 bytes for VLAN tagged packets */
1291 skb->transport_header += (skb->protocol == htons(ETH_P_8021Q) ||
1292 skb->protocol == htons(ETH_P_8021AD))
1293 ? VLAN_HLEN : 0;
1294
1295 rx_udp_csum = udp_csum(skb);
1296 iph = ip_hdr(skb);
1297 csum = csum_tcpudp_magic(
1298 iph->saddr, iph->daddr,
1299 (skb->len - skb_transport_offset(skb)),
1300 IPPROTO_UDP, rx_udp_csum);
1301
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001302 if (udp_hdr(skb)->check != csum)
1303 goto checksum_fail;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001304 }
1305
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001306 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001307
1308 return;
1309
1310checksum_fail:
1311 vsi->back->hw_csum_rx_error++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001312}
1313
1314/**
1315 * i40e_rx_hash - returns the hash value from the Rx descriptor
1316 * @ring: descriptor ring
1317 * @rx_desc: specific descriptor
1318 **/
1319static inline u32 i40e_rx_hash(struct i40e_ring *ring,
1320 union i40e_rx_desc *rx_desc)
1321{
Jesse Brandeburg8a494922013-11-20 10:02:49 +00001322 const __le64 rss_mask =
1323 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
1324 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
1325
1326 if ((ring->netdev->features & NETIF_F_RXHASH) &&
1327 (rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask)
1328 return le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
1329 else
1330 return 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001331}
1332
1333/**
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001334 * i40e_ptype_to_hash - get a hash type
1335 * @ptype: the ptype value from the descriptor
1336 *
1337 * Returns a hash type to be used by skb_set_hash
1338 **/
1339static inline enum pkt_hash_types i40e_ptype_to_hash(u8 ptype)
1340{
1341 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
1342
1343 if (!decoded.known)
1344 return PKT_HASH_TYPE_NONE;
1345
1346 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1347 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
1348 return PKT_HASH_TYPE_L4;
1349 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1350 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
1351 return PKT_HASH_TYPE_L3;
1352 else
1353 return PKT_HASH_TYPE_L2;
1354}
1355
1356/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001357 * i40e_clean_rx_irq - Reclaim resources after receive completes
1358 * @rx_ring: rx ring to clean
1359 * @budget: how many cleans we're allowed
1360 *
1361 * Returns true if there's any budget left (e.g. the clean is finished)
1362 **/
1363static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget)
1364{
1365 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1366 u16 rx_packet_len, rx_header_len, rx_sph, rx_hbo;
1367 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
1368 const int current_node = numa_node_id();
1369 struct i40e_vsi *vsi = rx_ring->vsi;
1370 u16 i = rx_ring->next_to_clean;
1371 union i40e_rx_desc *rx_desc;
1372 u32 rx_error, rx_status;
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001373 u8 rx_ptype;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001374 u64 qword;
1375
Eric W. Biederman390f86d2014-03-14 17:59:10 -07001376 if (budget <= 0)
1377 return 0;
1378
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001379 rx_desc = I40E_RX_DESC(rx_ring, i);
1380 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburg6838b532014-01-14 00:49:52 -08001381 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1382 I40E_RXD_QW1_STATUS_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001383
1384 while (rx_status & (1 << I40E_RX_DESC_STATUS_DD_SHIFT)) {
1385 union i40e_rx_desc *next_rxd;
1386 struct i40e_rx_buffer *rx_bi;
1387 struct sk_buff *skb;
1388 u16 vlan_tag;
1389 if (i40e_rx_is_programming_status(qword)) {
1390 i40e_clean_programming_status(rx_ring, rx_desc);
1391 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1392 goto next_desc;
1393 }
1394 rx_bi = &rx_ring->rx_bi[i];
1395 skb = rx_bi->skb;
1396 prefetch(skb->data);
1397
Mitch Williams829af3a2013-12-18 13:46:00 +00001398 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1399 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1400 rx_header_len = (qword & I40E_RXD_QW1_LENGTH_HBUF_MASK) >>
1401 I40E_RXD_QW1_LENGTH_HBUF_SHIFT;
1402 rx_sph = (qword & I40E_RXD_QW1_LENGTH_SPH_MASK) >>
1403 I40E_RXD_QW1_LENGTH_SPH_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001404
Mitch Williams829af3a2013-12-18 13:46:00 +00001405 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1406 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001407 rx_hbo = rx_error & (1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1408 rx_error &= ~(1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1409
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001410 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1411 I40E_RXD_QW1_PTYPE_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001412 rx_bi->skb = NULL;
1413
1414 /* This memory barrier is needed to keep us from reading
1415 * any other fields out of the rx_desc until we know the
1416 * STATUS_DD bit is set
1417 */
1418 rmb();
1419
1420 /* Get the header and possibly the whole packet
1421 * If this is an skb from previous receive dma will be 0
1422 */
1423 if (rx_bi->dma) {
1424 u16 len;
1425
1426 if (rx_hbo)
1427 len = I40E_RX_HDR_SIZE;
1428 else if (rx_sph)
1429 len = rx_header_len;
1430 else if (rx_packet_len)
1431 len = rx_packet_len; /* 1buf/no split found */
1432 else
1433 len = rx_header_len; /* split always mode */
1434
1435 skb_put(skb, len);
1436 dma_unmap_single(rx_ring->dev,
1437 rx_bi->dma,
1438 rx_ring->rx_buf_len,
1439 DMA_FROM_DEVICE);
1440 rx_bi->dma = 0;
1441 }
1442
1443 /* Get the rest of the data if this was a header split */
1444 if (ring_is_ps_enabled(rx_ring) && rx_packet_len) {
1445
1446 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1447 rx_bi->page,
1448 rx_bi->page_offset,
1449 rx_packet_len);
1450
1451 skb->len += rx_packet_len;
1452 skb->data_len += rx_packet_len;
1453 skb->truesize += rx_packet_len;
1454
1455 if ((page_count(rx_bi->page) == 1) &&
1456 (page_to_nid(rx_bi->page) == current_node))
1457 get_page(rx_bi->page);
1458 else
1459 rx_bi->page = NULL;
1460
1461 dma_unmap_page(rx_ring->dev,
1462 rx_bi->page_dma,
1463 PAGE_SIZE / 2,
1464 DMA_FROM_DEVICE);
1465 rx_bi->page_dma = 0;
1466 }
1467 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1468
1469 if (unlikely(
1470 !(rx_status & (1 << I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
1471 struct i40e_rx_buffer *next_buffer;
1472
1473 next_buffer = &rx_ring->rx_bi[i];
1474
1475 if (ring_is_ps_enabled(rx_ring)) {
1476 rx_bi->skb = next_buffer->skb;
1477 rx_bi->dma = next_buffer->dma;
1478 next_buffer->skb = skb;
1479 next_buffer->dma = 0;
1480 }
1481 rx_ring->rx_stats.non_eop_descs++;
1482 goto next_desc;
1483 }
1484
1485 /* ERR_MASK will only have valid bits if EOP set */
1486 if (unlikely(rx_error & (1 << I40E_RX_DESC_ERROR_RXE_SHIFT))) {
1487 dev_kfree_skb_any(skb);
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001488 /* TODO: shouldn't we increment a counter indicating the
1489 * drop?
1490 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001491 goto next_desc;
1492 }
1493
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001494 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1495 i40e_ptype_to_hash(rx_ptype));
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001496 if (unlikely(rx_status & I40E_RXD_QW1_STATUS_TSYNVALID_MASK)) {
1497 i40e_ptp_rx_hwtstamp(vsi->back, skb, (rx_status &
1498 I40E_RXD_QW1_STATUS_TSYNINDX_MASK) >>
1499 I40E_RXD_QW1_STATUS_TSYNINDX_SHIFT);
1500 rx_ring->last_rx_timestamp = jiffies;
1501 }
1502
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001503 /* probably a little skewed due to removing CRC */
1504 total_rx_bytes += skb->len;
1505 total_rx_packets++;
1506
1507 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001508
1509 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1510
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001511 vlan_tag = rx_status & (1 << I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
1512 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1513 : 0;
Vasu Dev38e00432014-08-01 13:27:03 -07001514#ifdef I40E_FCOE
1515 if (!i40e_fcoe_handle_offload(rx_ring, rx_desc, skb)) {
1516 dev_kfree_skb_any(skb);
1517 goto next_desc;
1518 }
1519#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001520 i40e_receive_skb(rx_ring, skb, vlan_tag);
1521
1522 rx_ring->netdev->last_rx = jiffies;
1523 budget--;
1524next_desc:
1525 rx_desc->wb.qword1.status_error_len = 0;
1526 if (!budget)
1527 break;
1528
1529 cleaned_count++;
1530 /* return some buffers to hardware, one at a time is too slow */
1531 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
1532 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1533 cleaned_count = 0;
1534 }
1535
1536 /* use prefetched values */
1537 rx_desc = next_rxd;
1538 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Mitch Williams829af3a2013-12-18 13:46:00 +00001539 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1540 I40E_RXD_QW1_STATUS_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001541 }
1542
1543 rx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001544 u64_stats_update_begin(&rx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +00001545 rx_ring->stats.packets += total_rx_packets;
1546 rx_ring->stats.bytes += total_rx_bytes;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001547 u64_stats_update_end(&rx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001548 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1549 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1550
1551 if (cleaned_count)
1552 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1553
1554 return budget > 0;
1555}
1556
1557/**
1558 * i40e_napi_poll - NAPI polling Rx/Tx cleanup routine
1559 * @napi: napi struct with our devices info in it
1560 * @budget: amount of work driver is allowed to do this pass, in packets
1561 *
1562 * This function will clean all queues associated with a q_vector.
1563 *
1564 * Returns the amount of work done
1565 **/
1566int i40e_napi_poll(struct napi_struct *napi, int budget)
1567{
1568 struct i40e_q_vector *q_vector =
1569 container_of(napi, struct i40e_q_vector, napi);
1570 struct i40e_vsi *vsi = q_vector->vsi;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001571 struct i40e_ring *ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001572 bool clean_complete = true;
1573 int budget_per_ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001574
1575 if (test_bit(__I40E_DOWN, &vsi->state)) {
1576 napi_complete(napi);
1577 return 0;
1578 }
1579
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001580 /* Since the actual Tx work is minimal, we can give the Tx a larger
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001581 * budget and be more aggressive about cleaning up the Tx descriptors.
1582 */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001583 i40e_for_each_ring(ring, q_vector->tx)
1584 clean_complete &= i40e_clean_tx_irq(ring, vsi->work_limit);
1585
1586 /* We attempt to distribute budget to each Rx queue fairly, but don't
1587 * allow the budget to go below 1 because that would exit polling early.
1588 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001589 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001590
1591 i40e_for_each_ring(ring, q_vector->rx)
1592 clean_complete &= i40e_clean_rx_irq(ring, budget_per_ring);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001593
1594 /* If work not completed, return budget and polling will return */
1595 if (!clean_complete)
1596 return budget;
1597
1598 /* Work is done so exit the polling mode and re-enable the interrupt */
1599 napi_complete(napi);
1600 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting) ||
1601 ITR_IS_DYNAMIC(vsi->tx_itr_setting))
1602 i40e_update_dynamic_itr(q_vector);
1603
1604 if (!test_bit(__I40E_DOWN, &vsi->state)) {
1605 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
1606 i40e_irq_dynamic_enable(vsi,
1607 q_vector->v_idx + vsi->base_vector);
1608 } else {
1609 struct i40e_hw *hw = &vsi->back->hw;
1610 /* We re-enable the queue 0 cause, but
1611 * don't worry about dynamic_enable
1612 * because we left it on for the other
1613 * possible interrupts during napi
1614 */
1615 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
1616 qval |= I40E_QINT_RQCTL_CAUSE_ENA_MASK;
1617 wr32(hw, I40E_QINT_RQCTL(0), qval);
1618
1619 qval = rd32(hw, I40E_QINT_TQCTL(0));
1620 qval |= I40E_QINT_TQCTL_CAUSE_ENA_MASK;
1621 wr32(hw, I40E_QINT_TQCTL(0), qval);
Shannon Nelson116a57d2013-09-28 07:13:59 +00001622
1623 i40e_irq_dynamic_enable_icr0(vsi->back);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001624 }
1625 }
1626
1627 return 0;
1628}
1629
1630/**
1631 * i40e_atr - Add a Flow Director ATR filter
1632 * @tx_ring: ring to add programming descriptor to
1633 * @skb: send buffer
1634 * @flags: send flags
1635 * @protocol: wire protocol
1636 **/
1637static void i40e_atr(struct i40e_ring *tx_ring, struct sk_buff *skb,
1638 u32 flags, __be16 protocol)
1639{
1640 struct i40e_filter_program_desc *fdir_desc;
1641 struct i40e_pf *pf = tx_ring->vsi->back;
1642 union {
1643 unsigned char *network;
1644 struct iphdr *ipv4;
1645 struct ipv6hdr *ipv6;
1646 } hdr;
1647 struct tcphdr *th;
1648 unsigned int hlen;
1649 u32 flex_ptype, dtype_cmd;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001650 u16 i;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001651
1652 /* make sure ATR is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08001653 if (!(pf->flags & I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001654 return;
1655
1656 /* if sampling is disabled do nothing */
1657 if (!tx_ring->atr_sample_rate)
1658 return;
1659
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001660 /* snag network header to get L4 type and address */
1661 hdr.network = skb_network_header(skb);
1662
1663 /* Currently only IPv4/IPv6 with TCP is supported */
1664 if (protocol == htons(ETH_P_IP)) {
1665 if (hdr.ipv4->protocol != IPPROTO_TCP)
1666 return;
1667
1668 /* access ihl as a u8 to avoid unaligned access on ia64 */
1669 hlen = (hdr.network[0] & 0x0F) << 2;
1670 } else if (protocol == htons(ETH_P_IPV6)) {
1671 if (hdr.ipv6->nexthdr != IPPROTO_TCP)
1672 return;
1673
1674 hlen = sizeof(struct ipv6hdr);
1675 } else {
1676 return;
1677 }
1678
1679 th = (struct tcphdr *)(hdr.network + hlen);
1680
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00001681 /* Due to lack of space, no more new filters can be programmed */
1682 if (th->syn && (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1683 return;
1684
1685 tx_ring->atr_count++;
1686
Anjali Singhai Jaince806782014-03-06 08:59:54 +00001687 /* sample on all syn/fin/rst packets or once every atr sample rate */
1688 if (!th->fin &&
1689 !th->syn &&
1690 !th->rst &&
1691 (tx_ring->atr_count < tx_ring->atr_sample_rate))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001692 return;
1693
1694 tx_ring->atr_count = 0;
1695
1696 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001697 i = tx_ring->next_to_use;
1698 fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
1699
1700 i++;
1701 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001702
1703 flex_ptype = (tx_ring->queue_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
1704 I40E_TXD_FLTR_QW0_QINDEX_MASK;
1705 flex_ptype |= (protocol == htons(ETH_P_IP)) ?
1706 (I40E_FILTER_PCTYPE_NONF_IPV4_TCP <<
1707 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) :
1708 (I40E_FILTER_PCTYPE_NONF_IPV6_TCP <<
1709 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT);
1710
1711 flex_ptype |= tx_ring->vsi->id << I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
1712
1713 dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG;
1714
Anjali Singhai Jaince806782014-03-06 08:59:54 +00001715 dtype_cmd |= (th->fin || th->rst) ?
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001716 (I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
1717 I40E_TXD_FLTR_QW1_PCMD_SHIFT) :
1718 (I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
1719 I40E_TXD_FLTR_QW1_PCMD_SHIFT);
1720
1721 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX <<
1722 I40E_TXD_FLTR_QW1_DEST_SHIFT;
1723
1724 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID <<
1725 I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT;
1726
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001727 dtype_cmd |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
1728 dtype_cmd |=
1729 ((u32)pf->fd_atr_cnt_idx << I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
1730 I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
1731
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001732 fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(flex_ptype);
Jesse Brandeburg99753ea2014-06-04 04:22:49 +00001733 fdir_desc->rsvd = cpu_to_le32(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001734 fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dtype_cmd);
Jesse Brandeburg99753ea2014-06-04 04:22:49 +00001735 fdir_desc->fd_id = cpu_to_le32(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001736}
1737
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001738/**
1739 * i40e_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
1740 * @skb: send buffer
1741 * @tx_ring: ring to send buffer on
1742 * @flags: the tx flags to be set
1743 *
1744 * Checks the skb and set up correspondingly several generic transmit flags
1745 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1746 *
1747 * Returns error code indicate the frame should be dropped upon error and the
1748 * otherwise returns 0 to indicate the flags has been set properly.
1749 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001750#ifdef I40E_FCOE
1751int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
1752 struct i40e_ring *tx_ring,
1753 u32 *flags)
1754#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001755static int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
1756 struct i40e_ring *tx_ring,
1757 u32 *flags)
Vasu Dev38e00432014-08-01 13:27:03 -07001758#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001759{
1760 __be16 protocol = skb->protocol;
1761 u32 tx_flags = 0;
1762
1763 /* if we have a HW VLAN tag being added, default to the HW one */
1764 if (vlan_tx_tag_present(skb)) {
1765 tx_flags |= vlan_tx_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
1766 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1767 /* else if it is a SW VLAN, check the next protocol and store the tag */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001768 } else if (protocol == htons(ETH_P_8021Q)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001769 struct vlan_hdr *vhdr, _vhdr;
1770 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1771 if (!vhdr)
1772 return -EINVAL;
1773
1774 protocol = vhdr->h_vlan_encapsulated_proto;
1775 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1776 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1777 }
1778
1779 /* Insert 802.1p priority into VLAN header */
Vasu Dev38e00432014-08-01 13:27:03 -07001780 if ((tx_flags & (I40E_TX_FLAGS_HW_VLAN | I40E_TX_FLAGS_SW_VLAN)) ||
1781 (skb->priority != TC_PRIO_CONTROL)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001782 tx_flags &= ~I40E_TX_FLAGS_VLAN_PRIO_MASK;
1783 tx_flags |= (skb->priority & 0x7) <<
1784 I40E_TX_FLAGS_VLAN_PRIO_SHIFT;
1785 if (tx_flags & I40E_TX_FLAGS_SW_VLAN) {
1786 struct vlan_ethhdr *vhdr;
Francois Romieudd225bc2014-03-30 03:14:48 +00001787 int rc;
1788
1789 rc = skb_cow_head(skb, 0);
1790 if (rc < 0)
1791 return rc;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001792 vhdr = (struct vlan_ethhdr *)skb->data;
1793 vhdr->h_vlan_TCI = htons(tx_flags >>
1794 I40E_TX_FLAGS_VLAN_SHIFT);
1795 } else {
1796 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1797 }
1798 }
1799 *flags = tx_flags;
1800 return 0;
1801}
1802
1803/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001804 * i40e_tso - set up the tso context descriptor
1805 * @tx_ring: ptr to the ring to send
1806 * @skb: ptr to the skb we're sending
1807 * @tx_flags: the collected send information
1808 * @protocol: the send protocol
1809 * @hdr_len: ptr to the size of the packet header
1810 * @cd_tunneling: ptr to context descriptor bits
1811 *
1812 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1813 **/
1814static int i40e_tso(struct i40e_ring *tx_ring, struct sk_buff *skb,
1815 u32 tx_flags, __be16 protocol, u8 *hdr_len,
1816 u64 *cd_type_cmd_tso_mss, u32 *cd_tunneling)
1817{
1818 u32 cd_cmd, cd_tso_len, cd_mss;
Francois Romieudd225bc2014-03-30 03:14:48 +00001819 struct ipv6hdr *ipv6h;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001820 struct tcphdr *tcph;
1821 struct iphdr *iph;
1822 u32 l4len;
1823 int err;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001824
1825 if (!skb_is_gso(skb))
1826 return 0;
1827
Francois Romieudd225bc2014-03-30 03:14:48 +00001828 err = skb_cow_head(skb, 0);
1829 if (err < 0)
1830 return err;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001831
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001832 if (protocol == htons(ETH_P_IP)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001833 iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
1834 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1835 iph->tot_len = 0;
1836 iph->check = 0;
1837 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1838 0, IPPROTO_TCP, 0);
1839 } else if (skb_is_gso_v6(skb)) {
1840
1841 ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb)
1842 : ipv6_hdr(skb);
1843 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1844 ipv6h->payload_len = 0;
1845 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
1846 0, IPPROTO_TCP, 0);
1847 }
1848
1849 l4len = skb->encapsulation ? inner_tcp_hdrlen(skb) : tcp_hdrlen(skb);
1850 *hdr_len = (skb->encapsulation
1851 ? (skb_inner_transport_header(skb) - skb->data)
1852 : skb_transport_offset(skb)) + l4len;
1853
1854 /* find the field values */
1855 cd_cmd = I40E_TX_CTX_DESC_TSO;
1856 cd_tso_len = skb->len - *hdr_len;
1857 cd_mss = skb_shinfo(skb)->gso_size;
Mitch Williams829af3a2013-12-18 13:46:00 +00001858 *cd_type_cmd_tso_mss |= ((u64)cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
1859 ((u64)cd_tso_len <<
1860 I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
1861 ((u64)cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001862 return 1;
1863}
1864
1865/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001866 * i40e_tsyn - set up the tsyn context descriptor
1867 * @tx_ring: ptr to the ring to send
1868 * @skb: ptr to the skb we're sending
1869 * @tx_flags: the collected send information
1870 *
1871 * Returns 0 if no Tx timestamp can happen and 1 if the timestamp will happen
1872 **/
1873static int i40e_tsyn(struct i40e_ring *tx_ring, struct sk_buff *skb,
1874 u32 tx_flags, u64 *cd_type_cmd_tso_mss)
1875{
1876 struct i40e_pf *pf;
1877
1878 if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)))
1879 return 0;
1880
1881 /* Tx timestamps cannot be sampled when doing TSO */
1882 if (tx_flags & I40E_TX_FLAGS_TSO)
1883 return 0;
1884
1885 /* only timestamp the outbound packet if the user has requested it and
1886 * we are not already transmitting a packet to be timestamped
1887 */
1888 pf = i40e_netdev_to_pf(tx_ring->netdev);
Jakub Kicinski9ce34f02014-03-15 14:55:42 +00001889 if (pf->ptp_tx &&
1890 !test_and_set_bit_lock(__I40E_PTP_TX_IN_PROGRESS, &pf->state)) {
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001891 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1892 pf->ptp_tx_skb = skb_get(skb);
1893 } else {
1894 return 0;
1895 }
1896
1897 *cd_type_cmd_tso_mss |= (u64)I40E_TX_CTX_DESC_TSYN <<
1898 I40E_TXD_CTX_QW1_CMD_SHIFT;
1899
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001900 return 1;
1901}
1902
1903/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001904 * i40e_tx_enable_csum - Enable Tx checksum offloads
1905 * @skb: send buffer
1906 * @tx_flags: Tx flags currently set
1907 * @td_cmd: Tx descriptor command bits to set
1908 * @td_offset: Tx descriptor header offsets to set
1909 * @cd_tunneling: ptr to context desc bits
1910 **/
1911static void i40e_tx_enable_csum(struct sk_buff *skb, u32 tx_flags,
1912 u32 *td_cmd, u32 *td_offset,
1913 struct i40e_ring *tx_ring,
1914 u32 *cd_tunneling)
1915{
1916 struct ipv6hdr *this_ipv6_hdr;
1917 unsigned int this_tcp_hdrlen;
1918 struct iphdr *this_ip_hdr;
1919 u32 network_hdr_len;
1920 u8 l4_hdr = 0;
1921
1922 if (skb->encapsulation) {
1923 network_hdr_len = skb_inner_network_header_len(skb);
1924 this_ip_hdr = inner_ip_hdr(skb);
1925 this_ipv6_hdr = inner_ipv6_hdr(skb);
1926 this_tcp_hdrlen = inner_tcp_hdrlen(skb);
1927
1928 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1929
1930 if (tx_flags & I40E_TX_FLAGS_TSO) {
1931 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV4;
1932 ip_hdr(skb)->check = 0;
1933 } else {
1934 *cd_tunneling |=
1935 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1936 }
1937 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1938 if (tx_flags & I40E_TX_FLAGS_TSO) {
1939 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV6;
1940 ip_hdr(skb)->check = 0;
1941 } else {
1942 *cd_tunneling |=
1943 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1944 }
1945 }
1946
1947 /* Now set the ctx descriptor fields */
1948 *cd_tunneling |= (skb_network_header_len(skb) >> 2) <<
1949 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT |
1950 I40E_TXD_CTX_UDP_TUNNELING |
1951 ((skb_inner_network_offset(skb) -
1952 skb_transport_offset(skb)) >> 1) <<
1953 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
1954
1955 } else {
1956 network_hdr_len = skb_network_header_len(skb);
1957 this_ip_hdr = ip_hdr(skb);
1958 this_ipv6_hdr = ipv6_hdr(skb);
1959 this_tcp_hdrlen = tcp_hdrlen(skb);
1960 }
1961
1962 /* Enable IP checksum offloads */
1963 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1964 l4_hdr = this_ip_hdr->protocol;
1965 /* the stack computes the IP header already, the only time we
1966 * need the hardware to recompute it is in the case of TSO.
1967 */
1968 if (tx_flags & I40E_TX_FLAGS_TSO) {
1969 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4_CSUM;
1970 this_ip_hdr->check = 0;
1971 } else {
1972 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4;
1973 }
1974 /* Now set the td_offset for IP header length */
1975 *td_offset = (network_hdr_len >> 2) <<
1976 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1977 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1978 l4_hdr = this_ipv6_hdr->nexthdr;
1979 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
1980 /* Now set the td_offset for IP header length */
1981 *td_offset = (network_hdr_len >> 2) <<
1982 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1983 }
1984 /* words in MACLEN + dwords in IPLEN + dwords in L4Len */
1985 *td_offset |= (skb_network_offset(skb) >> 1) <<
1986 I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1987
1988 /* Enable L4 checksum offloads */
1989 switch (l4_hdr) {
1990 case IPPROTO_TCP:
1991 /* enable checksum offloads */
1992 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1993 *td_offset |= (this_tcp_hdrlen >> 2) <<
1994 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1995 break;
1996 case IPPROTO_SCTP:
1997 /* enable SCTP checksum offload */
1998 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
1999 *td_offset |= (sizeof(struct sctphdr) >> 2) <<
2000 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
2001 break;
2002 case IPPROTO_UDP:
2003 /* enable UDP checksum offload */
2004 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
2005 *td_offset |= (sizeof(struct udphdr) >> 2) <<
2006 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
2007 break;
2008 default:
2009 break;
2010 }
2011}
2012
2013/**
2014 * i40e_create_tx_ctx Build the Tx context descriptor
2015 * @tx_ring: ring to create the descriptor on
2016 * @cd_type_cmd_tso_mss: Quad Word 1
2017 * @cd_tunneling: Quad Word 0 - bits 0-31
2018 * @cd_l2tag2: Quad Word 0 - bits 32-63
2019 **/
2020static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
2021 const u64 cd_type_cmd_tso_mss,
2022 const u32 cd_tunneling, const u32 cd_l2tag2)
2023{
2024 struct i40e_tx_context_desc *context_desc;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00002025 int i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002026
Jesse Brandeburgff40dd52014-02-14 02:14:41 +00002027 if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
2028 !cd_tunneling && !cd_l2tag2)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002029 return;
2030
2031 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00002032 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
2033
2034 i++;
2035 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002036
2037 /* cpu_to_le32 and assign to struct fields */
2038 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
2039 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
Jesse Brandeburg3efbbb22014-06-04 20:41:54 +00002040 context_desc->rsvd = cpu_to_le16(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002041 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
2042}
2043
2044/**
2045 * i40e_tx_map - Build the Tx descriptor
2046 * @tx_ring: ring to send buffer on
2047 * @skb: send buffer
2048 * @first: first buffer info buffer to use
2049 * @tx_flags: collected send information
2050 * @hdr_len: size of the packet header
2051 * @td_cmd: the command field in the descriptor
2052 * @td_offset: offset for checksum or crc
2053 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002054#ifdef I40E_FCOE
2055void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
2056 struct i40e_tx_buffer *first, u32 tx_flags,
2057 const u8 hdr_len, u32 td_cmd, u32 td_offset)
2058#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002059static void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
2060 struct i40e_tx_buffer *first, u32 tx_flags,
2061 const u8 hdr_len, u32 td_cmd, u32 td_offset)
Vasu Dev38e00432014-08-01 13:27:03 -07002062#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002063{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002064 unsigned int data_len = skb->data_len;
2065 unsigned int size = skb_headlen(skb);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002066 struct skb_frag_struct *frag;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002067 struct i40e_tx_buffer *tx_bi;
2068 struct i40e_tx_desc *tx_desc;
Alexander Duycka5e9c572013-09-28 06:00:27 +00002069 u16 i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002070 u32 td_tag = 0;
2071 dma_addr_t dma;
2072 u16 gso_segs;
2073
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002074 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
2075 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
2076 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
2077 I40E_TX_FLAGS_VLAN_SHIFT;
2078 }
2079
Alexander Duycka5e9c572013-09-28 06:00:27 +00002080 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
2081 gso_segs = skb_shinfo(skb)->gso_segs;
2082 else
2083 gso_segs = 1;
2084
2085 /* multiply data chunks by size of headers */
2086 first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
2087 first->gso_segs = gso_segs;
2088 first->skb = skb;
2089 first->tx_flags = tx_flags;
2090
2091 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
2092
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002093 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002094 tx_bi = first;
2095
2096 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
2097 if (dma_mapping_error(tx_ring->dev, dma))
2098 goto dma_error;
2099
2100 /* record length, and DMA address */
2101 dma_unmap_len_set(tx_bi, len, size);
2102 dma_unmap_addr_set(tx_bi, dma, dma);
2103
2104 tx_desc->buffer_addr = cpu_to_le64(dma);
2105
2106 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002107 tx_desc->cmd_type_offset_bsz =
2108 build_ctob(td_cmd, td_offset,
2109 I40E_MAX_DATA_PER_TXD, td_tag);
2110
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002111 tx_desc++;
2112 i++;
2113 if (i == tx_ring->count) {
2114 tx_desc = I40E_TX_DESC(tx_ring, 0);
2115 i = 0;
2116 }
Alexander Duycka5e9c572013-09-28 06:00:27 +00002117
2118 dma += I40E_MAX_DATA_PER_TXD;
2119 size -= I40E_MAX_DATA_PER_TXD;
2120
2121 tx_desc->buffer_addr = cpu_to_le64(dma);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002122 }
2123
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002124 if (likely(!data_len))
2125 break;
2126
Alexander Duycka5e9c572013-09-28 06:00:27 +00002127 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
2128 size, td_tag);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002129
2130 tx_desc++;
2131 i++;
2132 if (i == tx_ring->count) {
2133 tx_desc = I40E_TX_DESC(tx_ring, 0);
2134 i = 0;
2135 }
2136
Alexander Duycka5e9c572013-09-28 06:00:27 +00002137 size = skb_frag_size(frag);
2138 data_len -= size;
2139
2140 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
2141 DMA_TO_DEVICE);
2142
2143 tx_bi = &tx_ring->tx_bi[i];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002144 }
2145
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002146 /* Place RS bit on last descriptor of any packet that spans across the
2147 * 4th descriptor (WB_STRIDE aka 0x3) in a 64B cacheline.
2148 */
2149#define WB_STRIDE 0x3
2150 if (((i & WB_STRIDE) != WB_STRIDE) &&
2151 (first <= &tx_ring->tx_bi[i]) &&
2152 (first >= &tx_ring->tx_bi[i & ~WB_STRIDE])) {
2153 tx_desc->cmd_type_offset_bsz =
2154 build_ctob(td_cmd, td_offset, size, td_tag) |
2155 cpu_to_le64((u64)I40E_TX_DESC_CMD_EOP <<
2156 I40E_TXD_QW1_CMD_SHIFT);
2157 } else {
2158 tx_desc->cmd_type_offset_bsz =
2159 build_ctob(td_cmd, td_offset, size, td_tag) |
2160 cpu_to_le64((u64)I40E_TXD_CMD <<
2161 I40E_TXD_QW1_CMD_SHIFT);
2162 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002163
Alexander Duyck7070ce02013-09-28 06:00:37 +00002164 netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
2165 tx_ring->queue_index),
2166 first->bytecount);
2167
Alexander Duycka5e9c572013-09-28 06:00:27 +00002168 /* set the timestamp */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002169 first->time_stamp = jiffies;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002170
2171 /* Force memory writes to complete before letting h/w
2172 * know there are new descriptors to fetch. (Only
2173 * applicable for weak-ordered memory model archs,
2174 * such as IA-64).
2175 */
2176 wmb();
2177
Alexander Duycka5e9c572013-09-28 06:00:27 +00002178 /* set next_to_watch value indicating a packet is present */
2179 first->next_to_watch = tx_desc;
2180
2181 i++;
2182 if (i == tx_ring->count)
2183 i = 0;
2184
2185 tx_ring->next_to_use = i;
2186
2187 /* notify HW of packet */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002188 writel(i, tx_ring->tail);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002189
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002190 return;
2191
2192dma_error:
Alexander Duycka5e9c572013-09-28 06:00:27 +00002193 dev_info(tx_ring->dev, "TX DMA map failed\n");
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002194
2195 /* clear dma mappings for failed tx_bi map */
2196 for (;;) {
2197 tx_bi = &tx_ring->tx_bi[i];
Alexander Duycka5e9c572013-09-28 06:00:27 +00002198 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002199 if (tx_bi == first)
2200 break;
2201 if (i == 0)
2202 i = tx_ring->count;
2203 i--;
2204 }
2205
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002206 tx_ring->next_to_use = i;
2207}
2208
2209/**
2210 * __i40e_maybe_stop_tx - 2nd level check for tx stop conditions
2211 * @tx_ring: the ring to be checked
2212 * @size: the size buffer we want to assure is available
2213 *
2214 * Returns -EBUSY if a stop is needed, else 0
2215 **/
2216static inline int __i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
2217{
2218 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Greg Rose8e9dca52013-12-18 13:45:53 +00002219 /* Memory barrier before checking head and tail */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002220 smp_mb();
2221
2222 /* Check again in a case another CPU has just made room available. */
2223 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
2224 return -EBUSY;
2225
2226 /* A reprieve! - use start_queue because it doesn't call schedule */
2227 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
2228 ++tx_ring->tx_stats.restart_queue;
2229 return 0;
2230}
2231
2232/**
2233 * i40e_maybe_stop_tx - 1st level check for tx stop conditions
2234 * @tx_ring: the ring to be checked
2235 * @size: the size buffer we want to assure is available
2236 *
2237 * Returns 0 if stop is not needed
2238 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002239#ifdef I40E_FCOE
2240int i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
2241#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002242static int i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
Vasu Dev38e00432014-08-01 13:27:03 -07002243#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002244{
2245 if (likely(I40E_DESC_UNUSED(tx_ring) >= size))
2246 return 0;
2247 return __i40e_maybe_stop_tx(tx_ring, size);
2248}
2249
2250/**
2251 * i40e_xmit_descriptor_count - calculate number of tx descriptors needed
2252 * @skb: send buffer
2253 * @tx_ring: ring to send buffer on
2254 *
2255 * Returns number of data descriptors needed for this skb. Returns 0 to indicate
2256 * there is not enough descriptors available in this ring since we need at least
2257 * one descriptor.
2258 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002259#ifdef I40E_FCOE
2260int i40e_xmit_descriptor_count(struct sk_buff *skb,
2261 struct i40e_ring *tx_ring)
2262#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002263static int i40e_xmit_descriptor_count(struct sk_buff *skb,
2264 struct i40e_ring *tx_ring)
Vasu Dev38e00432014-08-01 13:27:03 -07002265#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002266{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002267 unsigned int f;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002268 int count = 0;
2269
2270 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
2271 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
Jesse Brandeburgbe560522014-02-06 05:51:13 +00002272 * + 4 desc gap to avoid the cache line where head is,
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002273 * + 1 desc for context descriptor,
2274 * otherwise try next time
2275 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002276 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
2277 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Jesse Brandeburg980093e2014-05-10 04:49:12 +00002278
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002279 count += TXD_USE_COUNT(skb_headlen(skb));
Jesse Brandeburgbe560522014-02-06 05:51:13 +00002280 if (i40e_maybe_stop_tx(tx_ring, count + 4 + 1)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002281 tx_ring->tx_stats.tx_busy++;
2282 return 0;
2283 }
2284 return count;
2285}
2286
2287/**
2288 * i40e_xmit_frame_ring - Sends buffer on Tx ring
2289 * @skb: send buffer
2290 * @tx_ring: ring to send buffer on
2291 *
2292 * Returns NETDEV_TX_OK if sent, else an error code
2293 **/
2294static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
2295 struct i40e_ring *tx_ring)
2296{
2297 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
2298 u32 cd_tunneling = 0, cd_l2tag2 = 0;
2299 struct i40e_tx_buffer *first;
2300 u32 td_offset = 0;
2301 u32 tx_flags = 0;
2302 __be16 protocol;
2303 u32 td_cmd = 0;
2304 u8 hdr_len = 0;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002305 int tsyn;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002306 int tso;
2307 if (0 == i40e_xmit_descriptor_count(skb, tx_ring))
2308 return NETDEV_TX_BUSY;
2309
2310 /* prepare the xmit flags */
2311 if (i40e_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
2312 goto out_drop;
2313
2314 /* obtain protocol of skb */
2315 protocol = skb->protocol;
2316
2317 /* record the location of the first descriptor for this packet */
2318 first = &tx_ring->tx_bi[tx_ring->next_to_use];
2319
2320 /* setup IPv4/IPv6 offloads */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00002321 if (protocol == htons(ETH_P_IP))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002322 tx_flags |= I40E_TX_FLAGS_IPV4;
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00002323 else if (protocol == htons(ETH_P_IPV6))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002324 tx_flags |= I40E_TX_FLAGS_IPV6;
2325
2326 tso = i40e_tso(tx_ring, skb, tx_flags, protocol, &hdr_len,
2327 &cd_type_cmd_tso_mss, &cd_tunneling);
2328
2329 if (tso < 0)
2330 goto out_drop;
2331 else if (tso)
2332 tx_flags |= I40E_TX_FLAGS_TSO;
2333
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002334 tsyn = i40e_tsyn(tx_ring, skb, tx_flags, &cd_type_cmd_tso_mss);
2335
2336 if (tsyn)
2337 tx_flags |= I40E_TX_FLAGS_TSYN;
2338
Jakub Kicinski259afec2014-03-15 14:55:37 +00002339 skb_tx_timestamp(skb);
2340
Alexander Duyckb1941302013-09-28 06:00:32 +00002341 /* always enable CRC insertion offload */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002342 td_cmd |= I40E_TX_DESC_CMD_ICRC;
2343
Alexander Duyckb1941302013-09-28 06:00:32 +00002344 /* Always offload the checksum, since it's in the data descriptor */
2345 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2346 tx_flags |= I40E_TX_FLAGS_CSUM;
2347
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002348 i40e_tx_enable_csum(skb, tx_flags, &td_cmd, &td_offset,
2349 tx_ring, &cd_tunneling);
Alexander Duyckb1941302013-09-28 06:00:32 +00002350 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002351
2352 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
2353 cd_tunneling, cd_l2tag2);
2354
2355 /* Add Flow Director ATR if it's enabled.
2356 *
2357 * NOTE: this must always be directly before the data descriptor.
2358 */
2359 i40e_atr(tx_ring, skb, tx_flags, protocol);
2360
2361 i40e_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
2362 td_cmd, td_offset);
2363
2364 i40e_maybe_stop_tx(tx_ring, DESC_NEEDED);
2365
2366 return NETDEV_TX_OK;
2367
2368out_drop:
2369 dev_kfree_skb_any(skb);
2370 return NETDEV_TX_OK;
2371}
2372
2373/**
2374 * i40e_lan_xmit_frame - Selects the correct VSI and Tx queue to send buffer
2375 * @skb: send buffer
2376 * @netdev: network interface device structure
2377 *
2378 * Returns NETDEV_TX_OK if sent, else an error code
2379 **/
2380netdev_tx_t i40e_lan_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
2381{
2382 struct i40e_netdev_priv *np = netdev_priv(netdev);
2383 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck9f65e152013-09-28 06:00:58 +00002384 struct i40e_ring *tx_ring = vsi->tx_rings[skb->queue_mapping];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002385
2386 /* hardware can't handle really short frames, hardware padding works
2387 * beyond this point
2388 */
2389 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
2390 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
2391 return NETDEV_TX_OK;
2392 skb->len = I40E_MIN_TX_LEN;
2393 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
2394 }
2395
2396 return i40e_xmit_frame_ring(skb, tx_ring);
2397}