blob: 366624a5122917208b433fcce31cbd31734f9e2e [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) {
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +0000283 pf->fd_tcp_rule++;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000284 if (pf->flags & I40E_FLAG_FD_ATR_ENABLED) {
285 dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 flow being applied\n");
286 pf->flags &= ~I40E_FLAG_FD_ATR_ENABLED;
287 }
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +0000288 } else {
289 pf->fd_tcp_rule = (pf->fd_tcp_rule > 0) ?
290 (pf->fd_tcp_rule - 1) : 0;
291 if (pf->fd_tcp_rule == 0) {
292 pf->flags |= I40E_FLAG_FD_ATR_ENABLED;
293 dev_info(&pf->pdev->dev, "ATR re-enabled due to no sideband TCP/IPv4 rules\n");
294 }
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000295 }
296
Kevin Scottb2d36c02014-04-09 05:58:59 +0000297 fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000298 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
299
300 if (ret) {
301 dev_info(&pf->pdev->dev,
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000302 "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
303 fd_data->pctype, fd_data->fd_id, ret);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000304 err = true;
305 } else {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000306 if (add)
307 dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d loc = %d)\n",
308 fd_data->pctype, fd_data->fd_id);
309 else
310 dev_info(&pf->pdev->dev,
311 "Filter deleted for PCTYPE %d loc = %d\n",
312 fd_data->pctype, fd_data->fd_id);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000313 }
314
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000315 return err ? -EOPNOTSUPP : 0;
316}
317
318/**
319 * i40e_add_del_fdir_sctpv4 - Add/Remove SCTPv4 Flow Director filters for
320 * a specific flow spec
321 * @vsi: pointer to the targeted VSI
322 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000323 * @add: true adds a filter, false removes it
324 *
Jean Sacren21d3efd2014-03-17 18:14:39 +0000325 * Always returns -EOPNOTSUPP
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000326 **/
327static int i40e_add_del_fdir_sctpv4(struct i40e_vsi *vsi,
328 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000329 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000330{
331 return -EOPNOTSUPP;
332}
333
334#define I40E_IP_DUMMY_PACKET_LEN 34
335/**
336 * i40e_add_del_fdir_ipv4 - Add/Remove IPv4 Flow Director filters for
337 * a specific flow spec
338 * @vsi: pointer to the targeted VSI
339 * @fd_data: the flow director data required for the FDir descriptor
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000340 * @add: true adds a filter, false removes it
341 *
342 * Returns 0 if the filters were successfully added or removed
343 **/
344static int i40e_add_del_fdir_ipv4(struct i40e_vsi *vsi,
345 struct i40e_fdir_filter *fd_data,
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000346 bool add)
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000347{
348 struct i40e_pf *pf = vsi->back;
349 struct iphdr *ip;
350 bool err = false;
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000351 u8 *raw_packet;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000352 int ret;
353 int i;
354 static char packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08, 0,
355 0x45, 0, 0, 0x14, 0, 0, 0x40, 0, 0x40, 0x10, 0, 0, 0, 0, 0, 0,
356 0, 0, 0, 0};
357
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000358 for (i = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
359 i <= I40E_FILTER_PCTYPE_FRAG_IPV4; i++) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000360 raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
361 if (!raw_packet)
362 return -ENOMEM;
363 memcpy(raw_packet, packet, I40E_IP_DUMMY_PACKET_LEN);
364 ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
365
366 ip->saddr = fd_data->src_ip[0];
367 ip->daddr = fd_data->dst_ip[0];
368 ip->protocol = 0;
369
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000370 fd_data->pctype = i;
371 ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
372
373 if (ret) {
374 dev_info(&pf->pdev->dev,
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000375 "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
376 fd_data->pctype, fd_data->fd_id, ret);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000377 err = true;
378 } else {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000379 if (add)
380 dev_info(&pf->pdev->dev,
381 "Filter OK for PCTYPE %d loc = %d\n",
382 fd_data->pctype, fd_data->fd_id);
383 else
384 dev_info(&pf->pdev->dev,
385 "Filter deleted for PCTYPE %d loc = %d\n",
386 fd_data->pctype, fd_data->fd_id);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000387 }
388 }
389
390 return err ? -EOPNOTSUPP : 0;
391}
392
393/**
394 * i40e_add_del_fdir - Build raw packets to add/del fdir filter
395 * @vsi: pointer to the targeted VSI
396 * @cmd: command to get or set RX flow classification rules
397 * @add: true adds a filter, false removes it
398 *
399 **/
400int i40e_add_del_fdir(struct i40e_vsi *vsi,
401 struct i40e_fdir_filter *input, bool add)
402{
403 struct i40e_pf *pf = vsi->back;
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000404 int ret;
405
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000406 switch (input->flow_type & ~FLOW_EXT) {
407 case TCP_V4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000408 ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000409 break;
410 case UDP_V4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000411 ret = i40e_add_del_fdir_udpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000412 break;
413 case SCTP_V4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000414 ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000415 break;
416 case IPV4_FLOW:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000417 ret = i40e_add_del_fdir_ipv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000418 break;
419 case IP_USER_FLOW:
420 switch (input->ip4_proto) {
421 case IPPROTO_TCP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000422 ret = i40e_add_del_fdir_tcpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000423 break;
424 case IPPROTO_UDP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000425 ret = i40e_add_del_fdir_udpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000426 break;
427 case IPPROTO_SCTP:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000428 ret = i40e_add_del_fdir_sctpv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000429 break;
430 default:
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000431 ret = i40e_add_del_fdir_ipv4(vsi, input, add);
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000432 break;
433 }
434 break;
435 default:
Jakub Kicinskic5ffe7e2014-04-02 10:33:22 +0000436 dev_info(&pf->pdev->dev, "Could not specify spec type %d\n",
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000437 input->flow_type);
438 ret = -EINVAL;
439 }
440
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000441 /* The buffer allocated here is freed by the i40e_clean_tx_ring() */
Joseph Gasparakis17a73f62014-02-12 01:45:30 +0000442 return ret;
443}
444
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000445/**
446 * i40e_fd_handle_status - check the Programming Status for FD
447 * @rx_ring: the Rx ring for this descriptor
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000448 * @rx_desc: the Rx descriptor for programming Status, not a packet descriptor.
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000449 * @prog_id: the id originally used for programming
450 *
451 * This is used to verify if the FD programming or invalidation
452 * requested by SW to the HW is successful or not and take actions accordingly.
453 **/
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000454static void i40e_fd_handle_status(struct i40e_ring *rx_ring,
455 union i40e_rx_desc *rx_desc, u8 prog_id)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000456{
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000457 struct i40e_pf *pf = rx_ring->vsi->back;
458 struct pci_dev *pdev = pf->pdev;
459 u32 fcnt_prog, fcnt_avail;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000460 u32 error;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000461 u64 qw;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000462
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000463 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000464 error = (qw & I40E_RX_PROG_STATUS_DESC_QW1_ERROR_MASK) >>
465 I40E_RX_PROG_STATUS_DESC_QW1_ERROR_SHIFT;
466
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000467 if (error == (0x1 << I40E_RX_PROG_STATUS_DESC_FD_TBL_FULL_SHIFT)) {
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000468 if ((rx_desc->wb.qword0.hi_dword.fd_id != 0) ||
469 (I40E_DEBUG_FD & pf->hw.debug_mask))
470 dev_warn(&pdev->dev, "ntuple filter loc = %d, could not be added\n",
471 rx_desc->wb.qword0.hi_dword.fd_id);
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000472
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +0000473 pf->fd_add_err++;
474 /* store the current atr filter count */
475 pf->fd_atr_cnt = i40e_get_current_atr_cnt(pf);
476
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000477 /* filter programming failed most likely due to table full */
Anjali Singhai Jain12957382014-06-04 04:22:47 +0000478 fcnt_prog = i40e_get_cur_guaranteed_fd_count(pf);
479 fcnt_avail = pf->fdir_pf_filter_count;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000480 /* If ATR is running fcnt_prog can quickly change,
481 * if we are very close to full, it makes sense to disable
482 * FD ATR/SB and then re-enable it when there is room.
483 */
484 if (fcnt_prog >= (fcnt_avail - I40E_FDIR_BUFFER_FULL_MARGIN)) {
Anjali Singhai Jain1e1be8f2014-07-10 08:03:26 +0000485 if ((pf->flags & I40E_FLAG_FD_SB_ENABLED) &&
Anjali Singhai Jainb814ba62014-06-04 20:41:48 +0000486 !(pf->auto_disable_flags &
Anjali Singhai Jainb814ba62014-06-04 20:41:48 +0000487 I40E_FLAG_FD_SB_ENABLED)) {
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000488 dev_warn(&pdev->dev, "FD filter space full, new ntuple rules will not be added\n");
489 pf->auto_disable_flags |=
490 I40E_FLAG_FD_SB_ENABLED;
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000491 }
492 } else {
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000493 dev_info(&pdev->dev,
Anjali Singhai Jainf7233c52014-07-09 07:46:16 +0000494 "FD filter programming failed due to incorrect filter parameters\n");
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000495 }
496 } else if (error ==
497 (0x1 << I40E_RX_PROG_STATUS_DESC_NO_FD_ENTRY_SHIFT)) {
Anjali Singhai Jain13c28842014-03-06 09:00:04 +0000498 if (I40E_DEBUG_FD & pf->hw.debug_mask)
Carolyn Wybornye99bdd32014-07-09 07:46:12 +0000499 dev_info(&pdev->dev, "ntuple filter fd_id = %d, could not be removed\n",
Anjali Singhai Jain13c28842014-03-06 09:00:04 +0000500 rx_desc->wb.qword0.hi_dword.fd_id);
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000501 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000502}
503
504/**
Alexander Duycka5e9c572013-09-28 06:00:27 +0000505 * i40e_unmap_and_free_tx_resource - Release a Tx buffer
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000506 * @ring: the ring that owns the buffer
507 * @tx_buffer: the buffer to free
508 **/
Alexander Duycka5e9c572013-09-28 06:00:27 +0000509static void i40e_unmap_and_free_tx_resource(struct i40e_ring *ring,
510 struct i40e_tx_buffer *tx_buffer)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000511{
Alexander Duycka5e9c572013-09-28 06:00:27 +0000512 if (tx_buffer->skb) {
Anjali Singhai Jain49d7d932014-06-04 08:45:15 +0000513 if (tx_buffer->tx_flags & I40E_TX_FLAGS_FD_SB)
514 kfree(tx_buffer->raw_buf);
515 else
516 dev_kfree_skb_any(tx_buffer->skb);
517
Alexander Duycka5e9c572013-09-28 06:00:27 +0000518 if (dma_unmap_len(tx_buffer, len))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000519 dma_unmap_single(ring->dev,
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000520 dma_unmap_addr(tx_buffer, dma),
521 dma_unmap_len(tx_buffer, len),
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000522 DMA_TO_DEVICE);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000523 } else if (dma_unmap_len(tx_buffer, len)) {
524 dma_unmap_page(ring->dev,
525 dma_unmap_addr(tx_buffer, dma),
526 dma_unmap_len(tx_buffer, len),
527 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000528 }
Alexander Duycka5e9c572013-09-28 06:00:27 +0000529 tx_buffer->next_to_watch = NULL;
530 tx_buffer->skb = NULL;
Alexander Duyck35a1e2a2013-09-28 06:00:17 +0000531 dma_unmap_len_set(tx_buffer, len, 0);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000532 /* tx_buffer must be completely set up in the transmit path */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000533}
534
535/**
536 * i40e_clean_tx_ring - Free any empty Tx buffers
537 * @tx_ring: ring to be cleaned
538 **/
539void i40e_clean_tx_ring(struct i40e_ring *tx_ring)
540{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000541 unsigned long bi_size;
542 u16 i;
543
544 /* ring already cleared, nothing to do */
545 if (!tx_ring->tx_bi)
546 return;
547
548 /* Free all the Tx ring sk_buffs */
Alexander Duycka5e9c572013-09-28 06:00:27 +0000549 for (i = 0; i < tx_ring->count; i++)
550 i40e_unmap_and_free_tx_resource(tx_ring, &tx_ring->tx_bi[i]);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000551
552 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
553 memset(tx_ring->tx_bi, 0, bi_size);
554
555 /* Zero out the descriptor ring */
556 memset(tx_ring->desc, 0, tx_ring->size);
557
558 tx_ring->next_to_use = 0;
559 tx_ring->next_to_clean = 0;
Alexander Duyck7070ce02013-09-28 06:00:37 +0000560
561 if (!tx_ring->netdev)
562 return;
563
564 /* cleanup Tx queue statistics */
565 netdev_tx_reset_queue(netdev_get_tx_queue(tx_ring->netdev,
566 tx_ring->queue_index));
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000567}
568
569/**
570 * i40e_free_tx_resources - Free Tx resources per queue
571 * @tx_ring: Tx descriptor ring for a specific queue
572 *
573 * Free all transmit software resources
574 **/
575void i40e_free_tx_resources(struct i40e_ring *tx_ring)
576{
577 i40e_clean_tx_ring(tx_ring);
578 kfree(tx_ring->tx_bi);
579 tx_ring->tx_bi = NULL;
580
581 if (tx_ring->desc) {
582 dma_free_coherent(tx_ring->dev, tx_ring->size,
583 tx_ring->desc, tx_ring->dma);
584 tx_ring->desc = NULL;
585 }
586}
587
588/**
589 * i40e_get_tx_pending - how many tx descriptors not processed
590 * @tx_ring: the ring of descriptors
591 *
592 * Since there is no access to the ring head register
593 * in XL710, we need to use our local copies
594 **/
595static u32 i40e_get_tx_pending(struct i40e_ring *ring)
596{
597 u32 ntu = ((ring->next_to_clean <= ring->next_to_use)
598 ? ring->next_to_use
599 : ring->next_to_use + ring->count);
600 return ntu - ring->next_to_clean;
601}
602
603/**
604 * i40e_check_tx_hang - Is there a hang in the Tx queue
605 * @tx_ring: the ring of descriptors
606 **/
607static bool i40e_check_tx_hang(struct i40e_ring *tx_ring)
608{
609 u32 tx_pending = i40e_get_tx_pending(tx_ring);
610 bool ret = false;
611
612 clear_check_for_tx_hang(tx_ring);
613
614 /* Check for a hung queue, but be thorough. This verifies
615 * that a transmit has been completed since the previous
616 * check AND there is at least one packet pending. The
617 * ARMED bit is set to indicate a potential hang. The
618 * bit is cleared if a pause frame is received to remove
619 * false hang detection due to PFC or 802.3x frames. By
620 * requiring this to fail twice we avoid races with
621 * PFC clearing the ARMED bit and conditions where we
622 * run the check_tx_hang logic with a transmit completion
623 * pending but without time to complete it yet.
624 */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000625 if ((tx_ring->tx_stats.tx_done_old == tx_ring->stats.packets) &&
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000626 tx_pending) {
627 /* make sure it is true for two checks in a row */
628 ret = test_and_set_bit(__I40E_HANG_CHECK_ARMED,
629 &tx_ring->state);
630 } else {
631 /* update completed stats and disarm the hang check */
Alexander Duycka114d0a2013-09-28 06:00:43 +0000632 tx_ring->tx_stats.tx_done_old = tx_ring->stats.packets;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000633 clear_bit(__I40E_HANG_CHECK_ARMED, &tx_ring->state);
634 }
635
636 return ret;
637}
638
639/**
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000640 * i40e_get_head - Retrieve head from head writeback
641 * @tx_ring: tx ring to fetch head of
642 *
643 * Returns value of Tx ring head based on value stored
644 * in head write-back location
645 **/
646static inline u32 i40e_get_head(struct i40e_ring *tx_ring)
647{
648 void *head = (struct i40e_tx_desc *)tx_ring->desc + tx_ring->count;
649
650 return le32_to_cpu(*(volatile __le32 *)head);
651}
652
653/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000654 * i40e_clean_tx_irq - Reclaim resources after transmit completes
655 * @tx_ring: tx ring to clean
656 * @budget: how many cleans we're allowed
657 *
658 * Returns true if there's any budget left (e.g. the clean is finished)
659 **/
660static bool i40e_clean_tx_irq(struct i40e_ring *tx_ring, int budget)
661{
662 u16 i = tx_ring->next_to_clean;
663 struct i40e_tx_buffer *tx_buf;
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000664 struct i40e_tx_desc *tx_head;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000665 struct i40e_tx_desc *tx_desc;
666 unsigned int total_packets = 0;
667 unsigned int total_bytes = 0;
668
669 tx_buf = &tx_ring->tx_bi[i];
670 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +0000671 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000672
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000673 tx_head = I40E_TX_DESC(tx_ring, i40e_get_head(tx_ring));
674
Alexander Duycka5e9c572013-09-28 06:00:27 +0000675 do {
676 struct i40e_tx_desc *eop_desc = tx_buf->next_to_watch;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000677
678 /* if next_to_watch is not set then there is no work pending */
679 if (!eop_desc)
680 break;
681
Alexander Duycka5e9c572013-09-28 06:00:27 +0000682 /* prevent any other reads prior to eop_desc */
683 read_barrier_depends();
684
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000685 /* we have caught up to head, no work left to do */
686 if (tx_head == tx_desc)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000687 break;
688
Alexander Duyckc304fda2013-09-28 06:00:12 +0000689 /* clear next_to_watch to prevent false hangs */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000690 tx_buf->next_to_watch = NULL;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000691
Alexander Duycka5e9c572013-09-28 06:00:27 +0000692 /* update the statistics for this packet */
693 total_bytes += tx_buf->bytecount;
694 total_packets += tx_buf->gso_segs;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000695
Alexander Duycka5e9c572013-09-28 06:00:27 +0000696 /* free the skb */
697 dev_kfree_skb_any(tx_buf->skb);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000698
Alexander Duycka5e9c572013-09-28 06:00:27 +0000699 /* unmap skb header data */
700 dma_unmap_single(tx_ring->dev,
701 dma_unmap_addr(tx_buf, dma),
702 dma_unmap_len(tx_buf, len),
703 DMA_TO_DEVICE);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000704
Alexander Duycka5e9c572013-09-28 06:00:27 +0000705 /* clear tx_buffer data */
706 tx_buf->skb = NULL;
707 dma_unmap_len_set(tx_buf, len, 0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000708
Alexander Duycka5e9c572013-09-28 06:00:27 +0000709 /* unmap remaining buffers */
710 while (tx_desc != eop_desc) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000711
712 tx_buf++;
713 tx_desc++;
714 i++;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000715 if (unlikely(!i)) {
716 i -= tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000717 tx_buf = tx_ring->tx_bi;
718 tx_desc = I40E_TX_DESC(tx_ring, 0);
719 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000720
Alexander Duycka5e9c572013-09-28 06:00:27 +0000721 /* unmap any remaining paged data */
722 if (dma_unmap_len(tx_buf, len)) {
723 dma_unmap_page(tx_ring->dev,
724 dma_unmap_addr(tx_buf, dma),
725 dma_unmap_len(tx_buf, len),
726 DMA_TO_DEVICE);
727 dma_unmap_len_set(tx_buf, len, 0);
728 }
729 }
730
731 /* move us one more past the eop_desc for start of next pkt */
732 tx_buf++;
733 tx_desc++;
734 i++;
735 if (unlikely(!i)) {
736 i -= tx_ring->count;
737 tx_buf = tx_ring->tx_bi;
738 tx_desc = I40E_TX_DESC(tx_ring, 0);
739 }
740
741 /* update budget accounting */
742 budget--;
743 } while (likely(budget));
744
745 i += tx_ring->count;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000746 tx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000747 u64_stats_update_begin(&tx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +0000748 tx_ring->stats.bytes += total_bytes;
749 tx_ring->stats.packets += total_packets;
Alexander Duyck980e9b12013-09-28 06:01:03 +0000750 u64_stats_update_end(&tx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000751 tx_ring->q_vector->tx.total_bytes += total_bytes;
752 tx_ring->q_vector->tx.total_packets += total_packets;
Alexander Duycka5e9c572013-09-28 06:00:27 +0000753
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000754 if (check_for_tx_hang(tx_ring) && i40e_check_tx_hang(tx_ring)) {
755 /* schedule immediate reset if we believe we hung */
756 dev_info(tx_ring->dev, "Detected Tx Unit Hang\n"
757 " VSI <%d>\n"
758 " Tx Queue <%d>\n"
759 " next_to_use <%x>\n"
760 " next_to_clean <%x>\n",
761 tx_ring->vsi->seid,
762 tx_ring->queue_index,
763 tx_ring->next_to_use, i);
764 dev_info(tx_ring->dev, "tx_bi[next_to_clean]\n"
765 " time_stamp <%lx>\n"
766 " jiffies <%lx>\n",
767 tx_ring->tx_bi[i].time_stamp, jiffies);
768
769 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
770
771 dev_info(tx_ring->dev,
772 "tx hang detected on queue %d, resetting adapter\n",
773 tx_ring->queue_index);
774
775 tx_ring->netdev->netdev_ops->ndo_tx_timeout(tx_ring->netdev);
776
777 /* the adapter is about to reset, no point in enabling stuff */
778 return true;
779 }
780
Alexander Duyck7070ce02013-09-28 06:00:37 +0000781 netdev_tx_completed_queue(netdev_get_tx_queue(tx_ring->netdev,
782 tx_ring->queue_index),
783 total_packets, total_bytes);
784
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000785#define TX_WAKE_THRESHOLD (DESC_NEEDED * 2)
786 if (unlikely(total_packets && netif_carrier_ok(tx_ring->netdev) &&
787 (I40E_DESC_UNUSED(tx_ring) >= TX_WAKE_THRESHOLD))) {
788 /* Make sure that anybody stopping the queue after this
789 * sees the new next_to_clean.
790 */
791 smp_mb();
792 if (__netif_subqueue_stopped(tx_ring->netdev,
793 tx_ring->queue_index) &&
794 !test_bit(__I40E_DOWN, &tx_ring->vsi->state)) {
795 netif_wake_subqueue(tx_ring->netdev,
796 tx_ring->queue_index);
797 ++tx_ring->tx_stats.restart_queue;
798 }
799 }
800
801 return budget > 0;
802}
803
804/**
805 * i40e_set_new_dynamic_itr - Find new ITR level
806 * @rc: structure containing ring performance data
807 *
808 * Stores a new ITR value based on packets and byte counts during
809 * the last interrupt. The advantage of per interrupt computation
810 * is faster updates and more accurate ITR for the current traffic
811 * pattern. Constants in this function were computed based on
812 * theoretical maximum wire speed and thresholds were set based on
813 * testing data as well as attempting to minimize response time
814 * while increasing bulk throughput.
815 **/
816static void i40e_set_new_dynamic_itr(struct i40e_ring_container *rc)
817{
818 enum i40e_latency_range new_latency_range = rc->latency_range;
819 u32 new_itr = rc->itr;
820 int bytes_per_int;
821
822 if (rc->total_packets == 0 || !rc->itr)
823 return;
824
825 /* simple throttlerate management
826 * 0-10MB/s lowest (100000 ints/s)
827 * 10-20MB/s low (20000 ints/s)
828 * 20-1249MB/s bulk (8000 ints/s)
829 */
830 bytes_per_int = rc->total_bytes / rc->itr;
831 switch (rc->itr) {
832 case I40E_LOWEST_LATENCY:
833 if (bytes_per_int > 10)
834 new_latency_range = I40E_LOW_LATENCY;
835 break;
836 case I40E_LOW_LATENCY:
837 if (bytes_per_int > 20)
838 new_latency_range = I40E_BULK_LATENCY;
839 else if (bytes_per_int <= 10)
840 new_latency_range = I40E_LOWEST_LATENCY;
841 break;
842 case I40E_BULK_LATENCY:
843 if (bytes_per_int <= 20)
844 rc->latency_range = I40E_LOW_LATENCY;
845 break;
846 }
847
848 switch (new_latency_range) {
849 case I40E_LOWEST_LATENCY:
850 new_itr = I40E_ITR_100K;
851 break;
852 case I40E_LOW_LATENCY:
853 new_itr = I40E_ITR_20K;
854 break;
855 case I40E_BULK_LATENCY:
856 new_itr = I40E_ITR_8K;
857 break;
858 default:
859 break;
860 }
861
862 if (new_itr != rc->itr) {
863 /* do an exponential smoothing */
864 new_itr = (10 * new_itr * rc->itr) /
865 ((9 * new_itr) + rc->itr);
866 rc->itr = new_itr & I40E_MAX_ITR;
867 }
868
869 rc->total_bytes = 0;
870 rc->total_packets = 0;
871}
872
873/**
874 * i40e_update_dynamic_itr - Adjust ITR based on bytes per int
875 * @q_vector: the vector to adjust
876 **/
877static void i40e_update_dynamic_itr(struct i40e_q_vector *q_vector)
878{
879 u16 vector = q_vector->vsi->base_vector + q_vector->v_idx;
880 struct i40e_hw *hw = &q_vector->vsi->back->hw;
881 u32 reg_addr;
882 u16 old_itr;
883
884 reg_addr = I40E_PFINT_ITRN(I40E_RX_ITR, vector - 1);
885 old_itr = q_vector->rx.itr;
886 i40e_set_new_dynamic_itr(&q_vector->rx);
887 if (old_itr != q_vector->rx.itr)
888 wr32(hw, reg_addr, q_vector->rx.itr);
889
890 reg_addr = I40E_PFINT_ITRN(I40E_TX_ITR, vector - 1);
891 old_itr = q_vector->tx.itr;
892 i40e_set_new_dynamic_itr(&q_vector->tx);
893 if (old_itr != q_vector->tx.itr)
894 wr32(hw, reg_addr, q_vector->tx.itr);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000895}
896
897/**
898 * i40e_clean_programming_status - clean the programming status descriptor
899 * @rx_ring: the rx ring that has this descriptor
900 * @rx_desc: the rx descriptor written back by HW
901 *
902 * Flow director should handle FD_FILTER_STATUS to check its filter programming
903 * status being successful or not and take actions accordingly. FCoE should
904 * handle its context/filter programming/invalidation status and take actions.
905 *
906 **/
907static void i40e_clean_programming_status(struct i40e_ring *rx_ring,
908 union i40e_rx_desc *rx_desc)
909{
910 u64 qw;
911 u8 id;
912
913 qw = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
914 id = (qw & I40E_RX_PROG_STATUS_DESC_QW1_PROGID_MASK) >>
915 I40E_RX_PROG_STATUS_DESC_QW1_PROGID_SHIFT;
916
917 if (id == I40E_RX_PROG_STATUS_DESC_FD_FILTER_STATUS)
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +0000918 i40e_fd_handle_status(rx_ring, rx_desc, id);
Vasu Dev38e00432014-08-01 13:27:03 -0700919#ifdef I40E_FCOE
920 else if ((id == I40E_RX_PROG_STATUS_DESC_FCOE_CTXT_PROG_STATUS) ||
921 (id == I40E_RX_PROG_STATUS_DESC_FCOE_CTXT_INVL_STATUS))
922 i40e_fcoe_handle_status(rx_ring, rx_desc, id);
923#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000924}
925
926/**
927 * i40e_setup_tx_descriptors - Allocate the Tx descriptors
928 * @tx_ring: the tx ring to set up
929 *
930 * Return 0 on success, negative on error
931 **/
932int i40e_setup_tx_descriptors(struct i40e_ring *tx_ring)
933{
934 struct device *dev = tx_ring->dev;
935 int bi_size;
936
937 if (!dev)
938 return -ENOMEM;
939
940 bi_size = sizeof(struct i40e_tx_buffer) * tx_ring->count;
941 tx_ring->tx_bi = kzalloc(bi_size, GFP_KERNEL);
942 if (!tx_ring->tx_bi)
943 goto err;
944
945 /* round up to nearest 4K */
946 tx_ring->size = tx_ring->count * sizeof(struct i40e_tx_desc);
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +0000947 /* add u32 for head writeback, align after this takes care of
948 * guaranteeing this is at least one cache line in size
949 */
950 tx_ring->size += sizeof(u32);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +0000951 tx_ring->size = ALIGN(tx_ring->size, 4096);
952 tx_ring->desc = dma_alloc_coherent(dev, tx_ring->size,
953 &tx_ring->dma, GFP_KERNEL);
954 if (!tx_ring->desc) {
955 dev_info(dev, "Unable to allocate memory for the Tx descriptor ring, size=%d\n",
956 tx_ring->size);
957 goto err;
958 }
959
960 tx_ring->next_to_use = 0;
961 tx_ring->next_to_clean = 0;
962 return 0;
963
964err:
965 kfree(tx_ring->tx_bi);
966 tx_ring->tx_bi = NULL;
967 return -ENOMEM;
968}
969
970/**
971 * i40e_clean_rx_ring - Free Rx buffers
972 * @rx_ring: ring to be cleaned
973 **/
974void i40e_clean_rx_ring(struct i40e_ring *rx_ring)
975{
976 struct device *dev = rx_ring->dev;
977 struct i40e_rx_buffer *rx_bi;
978 unsigned long bi_size;
979 u16 i;
980
981 /* ring already cleared, nothing to do */
982 if (!rx_ring->rx_bi)
983 return;
984
985 /* Free all the Rx ring sk_buffs */
986 for (i = 0; i < rx_ring->count; i++) {
987 rx_bi = &rx_ring->rx_bi[i];
988 if (rx_bi->dma) {
989 dma_unmap_single(dev,
990 rx_bi->dma,
991 rx_ring->rx_buf_len,
992 DMA_FROM_DEVICE);
993 rx_bi->dma = 0;
994 }
995 if (rx_bi->skb) {
996 dev_kfree_skb(rx_bi->skb);
997 rx_bi->skb = NULL;
998 }
999 if (rx_bi->page) {
1000 if (rx_bi->page_dma) {
1001 dma_unmap_page(dev,
1002 rx_bi->page_dma,
1003 PAGE_SIZE / 2,
1004 DMA_FROM_DEVICE);
1005 rx_bi->page_dma = 0;
1006 }
1007 __free_page(rx_bi->page);
1008 rx_bi->page = NULL;
1009 rx_bi->page_offset = 0;
1010 }
1011 }
1012
1013 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
1014 memset(rx_ring->rx_bi, 0, bi_size);
1015
1016 /* Zero out the descriptor ring */
1017 memset(rx_ring->desc, 0, rx_ring->size);
1018
1019 rx_ring->next_to_clean = 0;
1020 rx_ring->next_to_use = 0;
1021}
1022
1023/**
1024 * i40e_free_rx_resources - Free Rx resources
1025 * @rx_ring: ring to clean the resources from
1026 *
1027 * Free all receive software resources
1028 **/
1029void i40e_free_rx_resources(struct i40e_ring *rx_ring)
1030{
1031 i40e_clean_rx_ring(rx_ring);
1032 kfree(rx_ring->rx_bi);
1033 rx_ring->rx_bi = NULL;
1034
1035 if (rx_ring->desc) {
1036 dma_free_coherent(rx_ring->dev, rx_ring->size,
1037 rx_ring->desc, rx_ring->dma);
1038 rx_ring->desc = NULL;
1039 }
1040}
1041
1042/**
1043 * i40e_setup_rx_descriptors - Allocate Rx descriptors
1044 * @rx_ring: Rx descriptor ring (for a specific queue) to setup
1045 *
1046 * Returns 0 on success, negative on failure
1047 **/
1048int i40e_setup_rx_descriptors(struct i40e_ring *rx_ring)
1049{
1050 struct device *dev = rx_ring->dev;
1051 int bi_size;
1052
1053 bi_size = sizeof(struct i40e_rx_buffer) * rx_ring->count;
1054 rx_ring->rx_bi = kzalloc(bi_size, GFP_KERNEL);
1055 if (!rx_ring->rx_bi)
1056 goto err;
1057
1058 /* Round up to nearest 4K */
1059 rx_ring->size = ring_is_16byte_desc_enabled(rx_ring)
1060 ? rx_ring->count * sizeof(union i40e_16byte_rx_desc)
1061 : rx_ring->count * sizeof(union i40e_32byte_rx_desc);
1062 rx_ring->size = ALIGN(rx_ring->size, 4096);
1063 rx_ring->desc = dma_alloc_coherent(dev, rx_ring->size,
1064 &rx_ring->dma, GFP_KERNEL);
1065
1066 if (!rx_ring->desc) {
1067 dev_info(dev, "Unable to allocate memory for the Rx descriptor ring, size=%d\n",
1068 rx_ring->size);
1069 goto err;
1070 }
1071
1072 rx_ring->next_to_clean = 0;
1073 rx_ring->next_to_use = 0;
1074
1075 return 0;
1076err:
1077 kfree(rx_ring->rx_bi);
1078 rx_ring->rx_bi = NULL;
1079 return -ENOMEM;
1080}
1081
1082/**
1083 * i40e_release_rx_desc - Store the new tail and head values
1084 * @rx_ring: ring to bump
1085 * @val: new head index
1086 **/
1087static inline void i40e_release_rx_desc(struct i40e_ring *rx_ring, u32 val)
1088{
1089 rx_ring->next_to_use = val;
1090 /* Force memory writes to complete before letting h/w
1091 * know there are new descriptors to fetch. (Only
1092 * applicable for weak-ordered memory model archs,
1093 * such as IA-64).
1094 */
1095 wmb();
1096 writel(val, rx_ring->tail);
1097}
1098
1099/**
1100 * i40e_alloc_rx_buffers - Replace used receive buffers; packet split
1101 * @rx_ring: ring to place buffers on
1102 * @cleaned_count: number of buffers to replace
1103 **/
1104void i40e_alloc_rx_buffers(struct i40e_ring *rx_ring, u16 cleaned_count)
1105{
1106 u16 i = rx_ring->next_to_use;
1107 union i40e_rx_desc *rx_desc;
1108 struct i40e_rx_buffer *bi;
1109 struct sk_buff *skb;
1110
1111 /* do nothing if no valid netdev defined */
1112 if (!rx_ring->netdev || !cleaned_count)
1113 return;
1114
1115 while (cleaned_count--) {
1116 rx_desc = I40E_RX_DESC(rx_ring, i);
1117 bi = &rx_ring->rx_bi[i];
1118 skb = bi->skb;
1119
1120 if (!skb) {
1121 skb = netdev_alloc_skb_ip_align(rx_ring->netdev,
1122 rx_ring->rx_buf_len);
1123 if (!skb) {
Mitch Williams420136c2013-12-18 13:45:59 +00001124 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001125 goto no_buffers;
1126 }
1127 /* initialize queue mapping */
1128 skb_record_rx_queue(skb, rx_ring->queue_index);
1129 bi->skb = skb;
1130 }
1131
1132 if (!bi->dma) {
1133 bi->dma = dma_map_single(rx_ring->dev,
1134 skb->data,
1135 rx_ring->rx_buf_len,
1136 DMA_FROM_DEVICE);
1137 if (dma_mapping_error(rx_ring->dev, bi->dma)) {
Mitch Williams420136c2013-12-18 13:45:59 +00001138 rx_ring->rx_stats.alloc_buff_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001139 bi->dma = 0;
1140 goto no_buffers;
1141 }
1142 }
1143
1144 if (ring_is_ps_enabled(rx_ring)) {
1145 if (!bi->page) {
1146 bi->page = alloc_page(GFP_ATOMIC);
1147 if (!bi->page) {
Mitch Williams420136c2013-12-18 13:45:59 +00001148 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001149 goto no_buffers;
1150 }
1151 }
1152
1153 if (!bi->page_dma) {
1154 /* use a half page if we're re-using */
1155 bi->page_offset ^= PAGE_SIZE / 2;
1156 bi->page_dma = dma_map_page(rx_ring->dev,
1157 bi->page,
1158 bi->page_offset,
1159 PAGE_SIZE / 2,
1160 DMA_FROM_DEVICE);
1161 if (dma_mapping_error(rx_ring->dev,
1162 bi->page_dma)) {
Mitch Williams420136c2013-12-18 13:45:59 +00001163 rx_ring->rx_stats.alloc_page_failed++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001164 bi->page_dma = 0;
1165 goto no_buffers;
1166 }
1167 }
1168
1169 /* Refresh the desc even if buffer_addrs didn't change
1170 * because each write-back erases this info.
1171 */
1172 rx_desc->read.pkt_addr = cpu_to_le64(bi->page_dma);
1173 rx_desc->read.hdr_addr = cpu_to_le64(bi->dma);
1174 } else {
1175 rx_desc->read.pkt_addr = cpu_to_le64(bi->dma);
1176 rx_desc->read.hdr_addr = 0;
1177 }
1178 i++;
1179 if (i == rx_ring->count)
1180 i = 0;
1181 }
1182
1183no_buffers:
1184 if (rx_ring->next_to_use != i)
1185 i40e_release_rx_desc(rx_ring, i);
1186}
1187
1188/**
1189 * i40e_receive_skb - Send a completed packet up the stack
1190 * @rx_ring: rx ring in play
1191 * @skb: packet to send up
1192 * @vlan_tag: vlan tag for packet
1193 **/
1194static void i40e_receive_skb(struct i40e_ring *rx_ring,
1195 struct sk_buff *skb, u16 vlan_tag)
1196{
1197 struct i40e_q_vector *q_vector = rx_ring->q_vector;
1198 struct i40e_vsi *vsi = rx_ring->vsi;
1199 u64 flags = vsi->back->flags;
1200
1201 if (vlan_tag & VLAN_VID_MASK)
1202 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tag);
1203
1204 if (flags & I40E_FLAG_IN_NETPOLL)
1205 netif_rx(skb);
1206 else
1207 napi_gro_receive(&q_vector->napi, skb);
1208}
1209
1210/**
1211 * i40e_rx_checksum - Indicate in skb if hw indicated a good cksum
1212 * @vsi: the VSI we care about
1213 * @skb: skb currently being received and modified
1214 * @rx_status: status value of last descriptor in packet
1215 * @rx_error: error value of last descriptor in packet
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001216 * @rx_ptype: ptype value of last descriptor in packet
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001217 **/
1218static inline void i40e_rx_checksum(struct i40e_vsi *vsi,
1219 struct sk_buff *skb,
1220 u32 rx_status,
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001221 u32 rx_error,
1222 u16 rx_ptype)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001223{
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001224 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(rx_ptype);
1225 bool ipv4 = false, ipv6 = false;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001226 bool ipv4_tunnel, ipv6_tunnel;
1227 __wsum rx_udp_csum;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001228 struct iphdr *iph;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001229 __sum16 csum;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001230
1231 ipv4_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT4_MAC_PAY3) &&
1232 (rx_ptype < I40E_RX_PTYPE_GRENAT4_MACVLAN_IPV6_ICMP_PAY4);
1233 ipv6_tunnel = (rx_ptype > I40E_RX_PTYPE_GRENAT6_MAC_PAY3) &&
1234 (rx_ptype < I40E_RX_PTYPE_GRENAT6_MACVLAN_IPV6_ICMP_PAY4);
1235
1236 skb->encapsulation = ipv4_tunnel || ipv6_tunnel;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001237 skb->ip_summed = CHECKSUM_NONE;
1238
1239 /* Rx csum enabled and ip headers found? */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001240 if (!(vsi->netdev->features & NETIF_F_RXCSUM))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001241 return;
1242
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001243 /* did the hardware decode the packet and checksum? */
1244 if (!(rx_status & (1 << I40E_RX_DESC_STATUS_L3L4P_SHIFT)))
1245 return;
1246
1247 /* both known and outer_ip must be set for the below code to work */
1248 if (!(decoded.known && decoded.outer_ip))
1249 return;
1250
1251 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1252 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV4)
1253 ipv4 = true;
1254 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1255 decoded.outer_ip_ver == I40E_RX_PTYPE_OUTER_IPV6)
1256 ipv6 = true;
1257
1258 if (ipv4 &&
1259 (rx_error & ((1 << I40E_RX_DESC_ERROR_IPE_SHIFT) |
1260 (1 << I40E_RX_DESC_ERROR_EIPE_SHIFT))))
1261 goto checksum_fail;
1262
Jesse Brandeburgddf1d0d2014-02-13 03:48:39 -08001263 /* likely incorrect csum if alternate IP extension headers found */
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001264 if (ipv6 &&
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001265 rx_status & (1 << I40E_RX_DESC_STATUS_IPV6EXADD_SHIFT))
1266 /* don't increment checksum err here, non-fatal err */
Shannon Nelson8ee75a82013-12-21 05:44:46 +00001267 return;
1268
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001269 /* there was some L4 error, count error and punt packet to the stack */
1270 if (rx_error & (1 << I40E_RX_DESC_ERROR_L4E_SHIFT))
1271 goto checksum_fail;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001272
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001273 /* handle packets that were not able to be checksummed due
1274 * to arrival speed, in this case the stack can compute
1275 * the csum.
1276 */
1277 if (rx_error & (1 << I40E_RX_DESC_ERROR_PPRS_SHIFT))
1278 return;
1279
1280 /* If VXLAN traffic has an outer UDPv4 checksum we need to check
1281 * it in the driver, hardware does not do it for us.
1282 * Since L3L4P bit was set we assume a valid IHL value (>=5)
1283 * so the total length of IPv4 header is IHL*4 bytes
1284 * The UDP_0 bit *may* bet set if the *inner* header is UDP
1285 */
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001286 if (ipv4_tunnel &&
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001287 (decoded.inner_prot != I40E_RX_PTYPE_INNER_PROT_UDP) &&
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001288 !(rx_status & (1 << I40E_RX_DESC_STATUS_UDP_0_SHIFT))) {
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001289 skb->transport_header = skb->mac_header +
1290 sizeof(struct ethhdr) +
1291 (ip_hdr(skb)->ihl * 4);
1292
1293 /* Add 4 bytes for VLAN tagged packets */
1294 skb->transport_header += (skb->protocol == htons(ETH_P_8021Q) ||
1295 skb->protocol == htons(ETH_P_8021AD))
1296 ? VLAN_HLEN : 0;
1297
1298 rx_udp_csum = udp_csum(skb);
1299 iph = ip_hdr(skb);
1300 csum = csum_tcpudp_magic(
1301 iph->saddr, iph->daddr,
1302 (skb->len - skb_transport_offset(skb)),
1303 IPPROTO_UDP, rx_udp_csum);
1304
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001305 if (udp_hdr(skb)->check != csum)
1306 goto checksum_fail;
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001307 }
1308
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001309 skb->ip_summed = CHECKSUM_UNNECESSARY;
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001310
1311 return;
1312
1313checksum_fail:
1314 vsi->back->hw_csum_rx_error++;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001315}
1316
1317/**
1318 * i40e_rx_hash - returns the hash value from the Rx descriptor
1319 * @ring: descriptor ring
1320 * @rx_desc: specific descriptor
1321 **/
1322static inline u32 i40e_rx_hash(struct i40e_ring *ring,
1323 union i40e_rx_desc *rx_desc)
1324{
Jesse Brandeburg8a494922013-11-20 10:02:49 +00001325 const __le64 rss_mask =
1326 cpu_to_le64((u64)I40E_RX_DESC_FLTSTAT_RSS_HASH <<
1327 I40E_RX_DESC_STATUS_FLTSTAT_SHIFT);
1328
1329 if ((ring->netdev->features & NETIF_F_RXHASH) &&
1330 (rx_desc->wb.qword1.status_error_len & rss_mask) == rss_mask)
1331 return le32_to_cpu(rx_desc->wb.qword0.hi_dword.rss);
1332 else
1333 return 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001334}
1335
1336/**
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001337 * i40e_ptype_to_hash - get a hash type
1338 * @ptype: the ptype value from the descriptor
1339 *
1340 * Returns a hash type to be used by skb_set_hash
1341 **/
1342static inline enum pkt_hash_types i40e_ptype_to_hash(u8 ptype)
1343{
1344 struct i40e_rx_ptype_decoded decoded = decode_rx_desc_ptype(ptype);
1345
1346 if (!decoded.known)
1347 return PKT_HASH_TYPE_NONE;
1348
1349 if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1350 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY4)
1351 return PKT_HASH_TYPE_L4;
1352 else if (decoded.outer_ip == I40E_RX_PTYPE_OUTER_IP &&
1353 decoded.payload_layer == I40E_RX_PTYPE_PAYLOAD_LAYER_PAY3)
1354 return PKT_HASH_TYPE_L3;
1355 else
1356 return PKT_HASH_TYPE_L2;
1357}
1358
1359/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001360 * i40e_clean_rx_irq - Reclaim resources after receive completes
1361 * @rx_ring: rx ring to clean
1362 * @budget: how many cleans we're allowed
1363 *
1364 * Returns true if there's any budget left (e.g. the clean is finished)
1365 **/
1366static int i40e_clean_rx_irq(struct i40e_ring *rx_ring, int budget)
1367{
1368 unsigned int total_rx_bytes = 0, total_rx_packets = 0;
1369 u16 rx_packet_len, rx_header_len, rx_sph, rx_hbo;
1370 u16 cleaned_count = I40E_DESC_UNUSED(rx_ring);
1371 const int current_node = numa_node_id();
1372 struct i40e_vsi *vsi = rx_ring->vsi;
1373 u16 i = rx_ring->next_to_clean;
1374 union i40e_rx_desc *rx_desc;
1375 u32 rx_error, rx_status;
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001376 u8 rx_ptype;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001377 u64 qword;
1378
Eric W. Biederman390f86d2014-03-14 17:59:10 -07001379 if (budget <= 0)
1380 return 0;
1381
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001382 rx_desc = I40E_RX_DESC(rx_ring, i);
1383 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Jesse Brandeburg6838b532014-01-14 00:49:52 -08001384 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1385 I40E_RXD_QW1_STATUS_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001386
1387 while (rx_status & (1 << I40E_RX_DESC_STATUS_DD_SHIFT)) {
1388 union i40e_rx_desc *next_rxd;
1389 struct i40e_rx_buffer *rx_bi;
1390 struct sk_buff *skb;
1391 u16 vlan_tag;
1392 if (i40e_rx_is_programming_status(qword)) {
1393 i40e_clean_programming_status(rx_ring, rx_desc);
1394 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1395 goto next_desc;
1396 }
1397 rx_bi = &rx_ring->rx_bi[i];
1398 skb = rx_bi->skb;
1399 prefetch(skb->data);
1400
Mitch Williams829af3a2013-12-18 13:46:00 +00001401 rx_packet_len = (qword & I40E_RXD_QW1_LENGTH_PBUF_MASK) >>
1402 I40E_RXD_QW1_LENGTH_PBUF_SHIFT;
1403 rx_header_len = (qword & I40E_RXD_QW1_LENGTH_HBUF_MASK) >>
1404 I40E_RXD_QW1_LENGTH_HBUF_SHIFT;
1405 rx_sph = (qword & I40E_RXD_QW1_LENGTH_SPH_MASK) >>
1406 I40E_RXD_QW1_LENGTH_SPH_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001407
Mitch Williams829af3a2013-12-18 13:46:00 +00001408 rx_error = (qword & I40E_RXD_QW1_ERROR_MASK) >>
1409 I40E_RXD_QW1_ERROR_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001410 rx_hbo = rx_error & (1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1411 rx_error &= ~(1 << I40E_RX_DESC_ERROR_HBO_SHIFT);
1412
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001413 rx_ptype = (qword & I40E_RXD_QW1_PTYPE_MASK) >>
1414 I40E_RXD_QW1_PTYPE_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001415 rx_bi->skb = NULL;
1416
1417 /* This memory barrier is needed to keep us from reading
1418 * any other fields out of the rx_desc until we know the
1419 * STATUS_DD bit is set
1420 */
1421 rmb();
1422
1423 /* Get the header and possibly the whole packet
1424 * If this is an skb from previous receive dma will be 0
1425 */
1426 if (rx_bi->dma) {
1427 u16 len;
1428
1429 if (rx_hbo)
1430 len = I40E_RX_HDR_SIZE;
1431 else if (rx_sph)
1432 len = rx_header_len;
1433 else if (rx_packet_len)
1434 len = rx_packet_len; /* 1buf/no split found */
1435 else
1436 len = rx_header_len; /* split always mode */
1437
1438 skb_put(skb, len);
1439 dma_unmap_single(rx_ring->dev,
1440 rx_bi->dma,
1441 rx_ring->rx_buf_len,
1442 DMA_FROM_DEVICE);
1443 rx_bi->dma = 0;
1444 }
1445
1446 /* Get the rest of the data if this was a header split */
1447 if (ring_is_ps_enabled(rx_ring) && rx_packet_len) {
1448
1449 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags,
1450 rx_bi->page,
1451 rx_bi->page_offset,
1452 rx_packet_len);
1453
1454 skb->len += rx_packet_len;
1455 skb->data_len += rx_packet_len;
1456 skb->truesize += rx_packet_len;
1457
1458 if ((page_count(rx_bi->page) == 1) &&
1459 (page_to_nid(rx_bi->page) == current_node))
1460 get_page(rx_bi->page);
1461 else
1462 rx_bi->page = NULL;
1463
1464 dma_unmap_page(rx_ring->dev,
1465 rx_bi->page_dma,
1466 PAGE_SIZE / 2,
1467 DMA_FROM_DEVICE);
1468 rx_bi->page_dma = 0;
1469 }
1470 I40E_RX_NEXT_DESC_PREFETCH(rx_ring, i, next_rxd);
1471
1472 if (unlikely(
1473 !(rx_status & (1 << I40E_RX_DESC_STATUS_EOF_SHIFT)))) {
1474 struct i40e_rx_buffer *next_buffer;
1475
1476 next_buffer = &rx_ring->rx_bi[i];
1477
1478 if (ring_is_ps_enabled(rx_ring)) {
1479 rx_bi->skb = next_buffer->skb;
1480 rx_bi->dma = next_buffer->dma;
1481 next_buffer->skb = skb;
1482 next_buffer->dma = 0;
1483 }
1484 rx_ring->rx_stats.non_eop_descs++;
1485 goto next_desc;
1486 }
1487
1488 /* ERR_MASK will only have valid bits if EOP set */
1489 if (unlikely(rx_error & (1 << I40E_RX_DESC_ERROR_RXE_SHIFT))) {
1490 dev_kfree_skb_any(skb);
Jesse Brandeburg8a3c91c2014-05-20 08:01:43 +00001491 /* TODO: shouldn't we increment a counter indicating the
1492 * drop?
1493 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001494 goto next_desc;
1495 }
1496
Jesse Brandeburg206812b2014-02-12 01:45:33 +00001497 skb_set_hash(skb, i40e_rx_hash(rx_ring, rx_desc),
1498 i40e_ptype_to_hash(rx_ptype));
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001499 if (unlikely(rx_status & I40E_RXD_QW1_STATUS_TSYNVALID_MASK)) {
1500 i40e_ptp_rx_hwtstamp(vsi->back, skb, (rx_status &
1501 I40E_RXD_QW1_STATUS_TSYNINDX_MASK) >>
1502 I40E_RXD_QW1_STATUS_TSYNINDX_SHIFT);
1503 rx_ring->last_rx_timestamp = jiffies;
1504 }
1505
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001506 /* probably a little skewed due to removing CRC */
1507 total_rx_bytes += skb->len;
1508 total_rx_packets++;
1509
1510 skb->protocol = eth_type_trans(skb, rx_ring->netdev);
Joseph Gasparakis8144f0f2013-12-28 05:27:57 +00001511
1512 i40e_rx_checksum(vsi, skb, rx_status, rx_error, rx_ptype);
1513
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001514 vlan_tag = rx_status & (1 << I40E_RX_DESC_STATUS_L2TAG1P_SHIFT)
1515 ? le16_to_cpu(rx_desc->wb.qword0.lo_dword.l2tag1)
1516 : 0;
Vasu Dev38e00432014-08-01 13:27:03 -07001517#ifdef I40E_FCOE
1518 if (!i40e_fcoe_handle_offload(rx_ring, rx_desc, skb)) {
1519 dev_kfree_skb_any(skb);
1520 goto next_desc;
1521 }
1522#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001523 i40e_receive_skb(rx_ring, skb, vlan_tag);
1524
1525 rx_ring->netdev->last_rx = jiffies;
1526 budget--;
1527next_desc:
1528 rx_desc->wb.qword1.status_error_len = 0;
1529 if (!budget)
1530 break;
1531
1532 cleaned_count++;
1533 /* return some buffers to hardware, one at a time is too slow */
1534 if (cleaned_count >= I40E_RX_BUFFER_WRITE) {
1535 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1536 cleaned_count = 0;
1537 }
1538
1539 /* use prefetched values */
1540 rx_desc = next_rxd;
1541 qword = le64_to_cpu(rx_desc->wb.qword1.status_error_len);
Mitch Williams829af3a2013-12-18 13:46:00 +00001542 rx_status = (qword & I40E_RXD_QW1_STATUS_MASK) >>
1543 I40E_RXD_QW1_STATUS_SHIFT;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001544 }
1545
1546 rx_ring->next_to_clean = i;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001547 u64_stats_update_begin(&rx_ring->syncp);
Alexander Duycka114d0a2013-09-28 06:00:43 +00001548 rx_ring->stats.packets += total_rx_packets;
1549 rx_ring->stats.bytes += total_rx_bytes;
Alexander Duyck980e9b12013-09-28 06:01:03 +00001550 u64_stats_update_end(&rx_ring->syncp);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001551 rx_ring->q_vector->rx.total_packets += total_rx_packets;
1552 rx_ring->q_vector->rx.total_bytes += total_rx_bytes;
1553
1554 if (cleaned_count)
1555 i40e_alloc_rx_buffers(rx_ring, cleaned_count);
1556
1557 return budget > 0;
1558}
1559
1560/**
1561 * i40e_napi_poll - NAPI polling Rx/Tx cleanup routine
1562 * @napi: napi struct with our devices info in it
1563 * @budget: amount of work driver is allowed to do this pass, in packets
1564 *
1565 * This function will clean all queues associated with a q_vector.
1566 *
1567 * Returns the amount of work done
1568 **/
1569int i40e_napi_poll(struct napi_struct *napi, int budget)
1570{
1571 struct i40e_q_vector *q_vector =
1572 container_of(napi, struct i40e_q_vector, napi);
1573 struct i40e_vsi *vsi = q_vector->vsi;
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001574 struct i40e_ring *ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001575 bool clean_complete = true;
1576 int budget_per_ring;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001577
1578 if (test_bit(__I40E_DOWN, &vsi->state)) {
1579 napi_complete(napi);
1580 return 0;
1581 }
1582
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001583 /* Since the actual Tx work is minimal, we can give the Tx a larger
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001584 * budget and be more aggressive about cleaning up the Tx descriptors.
1585 */
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001586 i40e_for_each_ring(ring, q_vector->tx)
1587 clean_complete &= i40e_clean_tx_irq(ring, vsi->work_limit);
1588
1589 /* We attempt to distribute budget to each Rx queue fairly, but don't
1590 * allow the budget to go below 1 because that would exit polling early.
1591 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001592 budget_per_ring = max(budget/q_vector->num_ringpairs, 1);
Alexander Duyckcd0b6fa2013-09-28 06:00:53 +00001593
1594 i40e_for_each_ring(ring, q_vector->rx)
1595 clean_complete &= i40e_clean_rx_irq(ring, budget_per_ring);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001596
1597 /* If work not completed, return budget and polling will return */
1598 if (!clean_complete)
1599 return budget;
1600
1601 /* Work is done so exit the polling mode and re-enable the interrupt */
1602 napi_complete(napi);
1603 if (ITR_IS_DYNAMIC(vsi->rx_itr_setting) ||
1604 ITR_IS_DYNAMIC(vsi->tx_itr_setting))
1605 i40e_update_dynamic_itr(q_vector);
1606
1607 if (!test_bit(__I40E_DOWN, &vsi->state)) {
1608 if (vsi->back->flags & I40E_FLAG_MSIX_ENABLED) {
1609 i40e_irq_dynamic_enable(vsi,
1610 q_vector->v_idx + vsi->base_vector);
1611 } else {
1612 struct i40e_hw *hw = &vsi->back->hw;
1613 /* We re-enable the queue 0 cause, but
1614 * don't worry about dynamic_enable
1615 * because we left it on for the other
1616 * possible interrupts during napi
1617 */
1618 u32 qval = rd32(hw, I40E_QINT_RQCTL(0));
1619 qval |= I40E_QINT_RQCTL_CAUSE_ENA_MASK;
1620 wr32(hw, I40E_QINT_RQCTL(0), qval);
1621
1622 qval = rd32(hw, I40E_QINT_TQCTL(0));
1623 qval |= I40E_QINT_TQCTL_CAUSE_ENA_MASK;
1624 wr32(hw, I40E_QINT_TQCTL(0), qval);
Shannon Nelson116a57d2013-09-28 07:13:59 +00001625
1626 i40e_irq_dynamic_enable_icr0(vsi->back);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001627 }
1628 }
1629
1630 return 0;
1631}
1632
1633/**
1634 * i40e_atr - Add a Flow Director ATR filter
1635 * @tx_ring: ring to add programming descriptor to
1636 * @skb: send buffer
1637 * @flags: send flags
1638 * @protocol: wire protocol
1639 **/
1640static void i40e_atr(struct i40e_ring *tx_ring, struct sk_buff *skb,
1641 u32 flags, __be16 protocol)
1642{
1643 struct i40e_filter_program_desc *fdir_desc;
1644 struct i40e_pf *pf = tx_ring->vsi->back;
1645 union {
1646 unsigned char *network;
1647 struct iphdr *ipv4;
1648 struct ipv6hdr *ipv6;
1649 } hdr;
1650 struct tcphdr *th;
1651 unsigned int hlen;
1652 u32 flex_ptype, dtype_cmd;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001653 u16 i;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001654
1655 /* make sure ATR is enabled */
Jesse Brandeburg60ea5f82014-01-17 15:36:34 -08001656 if (!(pf->flags & I40E_FLAG_FD_ATR_ENABLED))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001657 return;
1658
1659 /* if sampling is disabled do nothing */
1660 if (!tx_ring->atr_sample_rate)
1661 return;
1662
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001663 /* snag network header to get L4 type and address */
1664 hdr.network = skb_network_header(skb);
1665
1666 /* Currently only IPv4/IPv6 with TCP is supported */
1667 if (protocol == htons(ETH_P_IP)) {
1668 if (hdr.ipv4->protocol != IPPROTO_TCP)
1669 return;
1670
1671 /* access ihl as a u8 to avoid unaligned access on ia64 */
1672 hlen = (hdr.network[0] & 0x0F) << 2;
1673 } else if (protocol == htons(ETH_P_IPV6)) {
1674 if (hdr.ipv6->nexthdr != IPPROTO_TCP)
1675 return;
1676
1677 hlen = sizeof(struct ipv6hdr);
1678 } else {
1679 return;
1680 }
1681
1682 th = (struct tcphdr *)(hdr.network + hlen);
1683
Anjali Singhai Jain55a5e602014-02-12 06:33:25 +00001684 /* Due to lack of space, no more new filters can be programmed */
1685 if (th->syn && (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED))
1686 return;
1687
1688 tx_ring->atr_count++;
1689
Anjali Singhai Jaince806782014-03-06 08:59:54 +00001690 /* sample on all syn/fin/rst packets or once every atr sample rate */
1691 if (!th->fin &&
1692 !th->syn &&
1693 !th->rst &&
1694 (tx_ring->atr_count < tx_ring->atr_sample_rate))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001695 return;
1696
1697 tx_ring->atr_count = 0;
1698
1699 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00001700 i = tx_ring->next_to_use;
1701 fdir_desc = I40E_TX_FDIRDESC(tx_ring, i);
1702
1703 i++;
1704 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001705
1706 flex_ptype = (tx_ring->queue_index << I40E_TXD_FLTR_QW0_QINDEX_SHIFT) &
1707 I40E_TXD_FLTR_QW0_QINDEX_MASK;
1708 flex_ptype |= (protocol == htons(ETH_P_IP)) ?
1709 (I40E_FILTER_PCTYPE_NONF_IPV4_TCP <<
1710 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT) :
1711 (I40E_FILTER_PCTYPE_NONF_IPV6_TCP <<
1712 I40E_TXD_FLTR_QW0_PCTYPE_SHIFT);
1713
1714 flex_ptype |= tx_ring->vsi->id << I40E_TXD_FLTR_QW0_DEST_VSI_SHIFT;
1715
1716 dtype_cmd = I40E_TX_DESC_DTYPE_FILTER_PROG;
1717
Anjali Singhai Jaince806782014-03-06 08:59:54 +00001718 dtype_cmd |= (th->fin || th->rst) ?
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001719 (I40E_FILTER_PROGRAM_DESC_PCMD_REMOVE <<
1720 I40E_TXD_FLTR_QW1_PCMD_SHIFT) :
1721 (I40E_FILTER_PROGRAM_DESC_PCMD_ADD_UPDATE <<
1722 I40E_TXD_FLTR_QW1_PCMD_SHIFT);
1723
1724 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_DEST_DIRECT_PACKET_QINDEX <<
1725 I40E_TXD_FLTR_QW1_DEST_SHIFT;
1726
1727 dtype_cmd |= I40E_FILTER_PROGRAM_DESC_FD_STATUS_FD_ID <<
1728 I40E_TXD_FLTR_QW1_FD_STATUS_SHIFT;
1729
Anjali Singhai Jain433c47d2014-05-22 06:32:17 +00001730 dtype_cmd |= I40E_TXD_FLTR_QW1_CNT_ENA_MASK;
1731 dtype_cmd |=
1732 ((u32)pf->fd_atr_cnt_idx << I40E_TXD_FLTR_QW1_CNTINDEX_SHIFT) &
1733 I40E_TXD_FLTR_QW1_CNTINDEX_MASK;
1734
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001735 fdir_desc->qindex_flex_ptype_vsi = cpu_to_le32(flex_ptype);
Jesse Brandeburg99753ea2014-06-04 04:22:49 +00001736 fdir_desc->rsvd = cpu_to_le32(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001737 fdir_desc->dtype_cmd_cntindex = cpu_to_le32(dtype_cmd);
Jesse Brandeburg99753ea2014-06-04 04:22:49 +00001738 fdir_desc->fd_id = cpu_to_le32(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001739}
1740
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001741/**
1742 * i40e_tx_prepare_vlan_flags - prepare generic TX VLAN tagging flags for HW
1743 * @skb: send buffer
1744 * @tx_ring: ring to send buffer on
1745 * @flags: the tx flags to be set
1746 *
1747 * Checks the skb and set up correspondingly several generic transmit flags
1748 * related to VLAN tagging for the HW, such as VLAN, DCB, etc.
1749 *
1750 * Returns error code indicate the frame should be dropped upon error and the
1751 * otherwise returns 0 to indicate the flags has been set properly.
1752 **/
Vasu Dev38e00432014-08-01 13:27:03 -07001753#ifdef I40E_FCOE
1754int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
1755 struct i40e_ring *tx_ring,
1756 u32 *flags)
1757#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001758static int i40e_tx_prepare_vlan_flags(struct sk_buff *skb,
1759 struct i40e_ring *tx_ring,
1760 u32 *flags)
Vasu Dev38e00432014-08-01 13:27:03 -07001761#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001762{
1763 __be16 protocol = skb->protocol;
1764 u32 tx_flags = 0;
1765
1766 /* if we have a HW VLAN tag being added, default to the HW one */
1767 if (vlan_tx_tag_present(skb)) {
1768 tx_flags |= vlan_tx_tag_get(skb) << I40E_TX_FLAGS_VLAN_SHIFT;
1769 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1770 /* else if it is a SW VLAN, check the next protocol and store the tag */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001771 } else if (protocol == htons(ETH_P_8021Q)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001772 struct vlan_hdr *vhdr, _vhdr;
1773 vhdr = skb_header_pointer(skb, ETH_HLEN, sizeof(_vhdr), &_vhdr);
1774 if (!vhdr)
1775 return -EINVAL;
1776
1777 protocol = vhdr->h_vlan_encapsulated_proto;
1778 tx_flags |= ntohs(vhdr->h_vlan_TCI) << I40E_TX_FLAGS_VLAN_SHIFT;
1779 tx_flags |= I40E_TX_FLAGS_SW_VLAN;
1780 }
1781
1782 /* Insert 802.1p priority into VLAN header */
Vasu Dev38e00432014-08-01 13:27:03 -07001783 if ((tx_flags & (I40E_TX_FLAGS_HW_VLAN | I40E_TX_FLAGS_SW_VLAN)) ||
1784 (skb->priority != TC_PRIO_CONTROL)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001785 tx_flags &= ~I40E_TX_FLAGS_VLAN_PRIO_MASK;
1786 tx_flags |= (skb->priority & 0x7) <<
1787 I40E_TX_FLAGS_VLAN_PRIO_SHIFT;
1788 if (tx_flags & I40E_TX_FLAGS_SW_VLAN) {
1789 struct vlan_ethhdr *vhdr;
Francois Romieudd225bc2014-03-30 03:14:48 +00001790 int rc;
1791
1792 rc = skb_cow_head(skb, 0);
1793 if (rc < 0)
1794 return rc;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001795 vhdr = (struct vlan_ethhdr *)skb->data;
1796 vhdr->h_vlan_TCI = htons(tx_flags >>
1797 I40E_TX_FLAGS_VLAN_SHIFT);
1798 } else {
1799 tx_flags |= I40E_TX_FLAGS_HW_VLAN;
1800 }
1801 }
1802 *flags = tx_flags;
1803 return 0;
1804}
1805
1806/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001807 * i40e_tso - set up the tso context descriptor
1808 * @tx_ring: ptr to the ring to send
1809 * @skb: ptr to the skb we're sending
1810 * @tx_flags: the collected send information
1811 * @protocol: the send protocol
1812 * @hdr_len: ptr to the size of the packet header
1813 * @cd_tunneling: ptr to context descriptor bits
1814 *
1815 * Returns 0 if no TSO can happen, 1 if tso is going, or error
1816 **/
1817static int i40e_tso(struct i40e_ring *tx_ring, struct sk_buff *skb,
1818 u32 tx_flags, __be16 protocol, u8 *hdr_len,
1819 u64 *cd_type_cmd_tso_mss, u32 *cd_tunneling)
1820{
1821 u32 cd_cmd, cd_tso_len, cd_mss;
Francois Romieudd225bc2014-03-30 03:14:48 +00001822 struct ipv6hdr *ipv6h;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001823 struct tcphdr *tcph;
1824 struct iphdr *iph;
1825 u32 l4len;
1826 int err;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001827
1828 if (!skb_is_gso(skb))
1829 return 0;
1830
Francois Romieudd225bc2014-03-30 03:14:48 +00001831 err = skb_cow_head(skb, 0);
1832 if (err < 0)
1833 return err;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001834
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00001835 if (protocol == htons(ETH_P_IP)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001836 iph = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
1837 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1838 iph->tot_len = 0;
1839 iph->check = 0;
1840 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1841 0, IPPROTO_TCP, 0);
1842 } else if (skb_is_gso_v6(skb)) {
1843
1844 ipv6h = skb->encapsulation ? inner_ipv6_hdr(skb)
1845 : ipv6_hdr(skb);
1846 tcph = skb->encapsulation ? inner_tcp_hdr(skb) : tcp_hdr(skb);
1847 ipv6h->payload_len = 0;
1848 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
1849 0, IPPROTO_TCP, 0);
1850 }
1851
1852 l4len = skb->encapsulation ? inner_tcp_hdrlen(skb) : tcp_hdrlen(skb);
1853 *hdr_len = (skb->encapsulation
1854 ? (skb_inner_transport_header(skb) - skb->data)
1855 : skb_transport_offset(skb)) + l4len;
1856
1857 /* find the field values */
1858 cd_cmd = I40E_TX_CTX_DESC_TSO;
1859 cd_tso_len = skb->len - *hdr_len;
1860 cd_mss = skb_shinfo(skb)->gso_size;
Mitch Williams829af3a2013-12-18 13:46:00 +00001861 *cd_type_cmd_tso_mss |= ((u64)cd_cmd << I40E_TXD_CTX_QW1_CMD_SHIFT) |
1862 ((u64)cd_tso_len <<
1863 I40E_TXD_CTX_QW1_TSO_LEN_SHIFT) |
1864 ((u64)cd_mss << I40E_TXD_CTX_QW1_MSS_SHIFT);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001865 return 1;
1866}
1867
1868/**
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001869 * i40e_tsyn - set up the tsyn context descriptor
1870 * @tx_ring: ptr to the ring to send
1871 * @skb: ptr to the skb we're sending
1872 * @tx_flags: the collected send information
1873 *
1874 * Returns 0 if no Tx timestamp can happen and 1 if the timestamp will happen
1875 **/
1876static int i40e_tsyn(struct i40e_ring *tx_ring, struct sk_buff *skb,
1877 u32 tx_flags, u64 *cd_type_cmd_tso_mss)
1878{
1879 struct i40e_pf *pf;
1880
1881 if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)))
1882 return 0;
1883
1884 /* Tx timestamps cannot be sampled when doing TSO */
1885 if (tx_flags & I40E_TX_FLAGS_TSO)
1886 return 0;
1887
1888 /* only timestamp the outbound packet if the user has requested it and
1889 * we are not already transmitting a packet to be timestamped
1890 */
1891 pf = i40e_netdev_to_pf(tx_ring->netdev);
Jakub Kicinski9ce34f02014-03-15 14:55:42 +00001892 if (pf->ptp_tx &&
1893 !test_and_set_bit_lock(__I40E_PTP_TX_IN_PROGRESS, &pf->state)) {
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001894 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1895 pf->ptp_tx_skb = skb_get(skb);
1896 } else {
1897 return 0;
1898 }
1899
1900 *cd_type_cmd_tso_mss |= (u64)I40E_TX_CTX_DESC_TSYN <<
1901 I40E_TXD_CTX_QW1_CMD_SHIFT;
1902
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00001903 return 1;
1904}
1905
1906/**
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00001907 * i40e_tx_enable_csum - Enable Tx checksum offloads
1908 * @skb: send buffer
1909 * @tx_flags: Tx flags currently set
1910 * @td_cmd: Tx descriptor command bits to set
1911 * @td_offset: Tx descriptor header offsets to set
1912 * @cd_tunneling: ptr to context desc bits
1913 **/
1914static void i40e_tx_enable_csum(struct sk_buff *skb, u32 tx_flags,
1915 u32 *td_cmd, u32 *td_offset,
1916 struct i40e_ring *tx_ring,
1917 u32 *cd_tunneling)
1918{
1919 struct ipv6hdr *this_ipv6_hdr;
1920 unsigned int this_tcp_hdrlen;
1921 struct iphdr *this_ip_hdr;
1922 u32 network_hdr_len;
1923 u8 l4_hdr = 0;
1924
1925 if (skb->encapsulation) {
1926 network_hdr_len = skb_inner_network_header_len(skb);
1927 this_ip_hdr = inner_ip_hdr(skb);
1928 this_ipv6_hdr = inner_ipv6_hdr(skb);
1929 this_tcp_hdrlen = inner_tcp_hdrlen(skb);
1930
1931 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1932
1933 if (tx_flags & I40E_TX_FLAGS_TSO) {
1934 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV4;
1935 ip_hdr(skb)->check = 0;
1936 } else {
1937 *cd_tunneling |=
1938 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1939 }
1940 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1941 if (tx_flags & I40E_TX_FLAGS_TSO) {
1942 *cd_tunneling |= I40E_TX_CTX_EXT_IP_IPV6;
1943 ip_hdr(skb)->check = 0;
1944 } else {
1945 *cd_tunneling |=
1946 I40E_TX_CTX_EXT_IP_IPV4_NO_CSUM;
1947 }
1948 }
1949
1950 /* Now set the ctx descriptor fields */
1951 *cd_tunneling |= (skb_network_header_len(skb) >> 2) <<
1952 I40E_TXD_CTX_QW0_EXT_IPLEN_SHIFT |
1953 I40E_TXD_CTX_UDP_TUNNELING |
1954 ((skb_inner_network_offset(skb) -
1955 skb_transport_offset(skb)) >> 1) <<
1956 I40E_TXD_CTX_QW0_NATLEN_SHIFT;
1957
1958 } else {
1959 network_hdr_len = skb_network_header_len(skb);
1960 this_ip_hdr = ip_hdr(skb);
1961 this_ipv6_hdr = ipv6_hdr(skb);
1962 this_tcp_hdrlen = tcp_hdrlen(skb);
1963 }
1964
1965 /* Enable IP checksum offloads */
1966 if (tx_flags & I40E_TX_FLAGS_IPV4) {
1967 l4_hdr = this_ip_hdr->protocol;
1968 /* the stack computes the IP header already, the only time we
1969 * need the hardware to recompute it is in the case of TSO.
1970 */
1971 if (tx_flags & I40E_TX_FLAGS_TSO) {
1972 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4_CSUM;
1973 this_ip_hdr->check = 0;
1974 } else {
1975 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV4;
1976 }
1977 /* Now set the td_offset for IP header length */
1978 *td_offset = (network_hdr_len >> 2) <<
1979 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1980 } else if (tx_flags & I40E_TX_FLAGS_IPV6) {
1981 l4_hdr = this_ipv6_hdr->nexthdr;
1982 *td_cmd |= I40E_TX_DESC_CMD_IIPT_IPV6;
1983 /* Now set the td_offset for IP header length */
1984 *td_offset = (network_hdr_len >> 2) <<
1985 I40E_TX_DESC_LENGTH_IPLEN_SHIFT;
1986 }
1987 /* words in MACLEN + dwords in IPLEN + dwords in L4Len */
1988 *td_offset |= (skb_network_offset(skb) >> 1) <<
1989 I40E_TX_DESC_LENGTH_MACLEN_SHIFT;
1990
1991 /* Enable L4 checksum offloads */
1992 switch (l4_hdr) {
1993 case IPPROTO_TCP:
1994 /* enable checksum offloads */
1995 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_TCP;
1996 *td_offset |= (this_tcp_hdrlen >> 2) <<
1997 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
1998 break;
1999 case IPPROTO_SCTP:
2000 /* enable SCTP checksum offload */
2001 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_SCTP;
2002 *td_offset |= (sizeof(struct sctphdr) >> 2) <<
2003 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
2004 break;
2005 case IPPROTO_UDP:
2006 /* enable UDP checksum offload */
2007 *td_cmd |= I40E_TX_DESC_CMD_L4T_EOFT_UDP;
2008 *td_offset |= (sizeof(struct udphdr) >> 2) <<
2009 I40E_TX_DESC_LENGTH_L4_FC_LEN_SHIFT;
2010 break;
2011 default:
2012 break;
2013 }
2014}
2015
2016/**
2017 * i40e_create_tx_ctx Build the Tx context descriptor
2018 * @tx_ring: ring to create the descriptor on
2019 * @cd_type_cmd_tso_mss: Quad Word 1
2020 * @cd_tunneling: Quad Word 0 - bits 0-31
2021 * @cd_l2tag2: Quad Word 0 - bits 32-63
2022 **/
2023static void i40e_create_tx_ctx(struct i40e_ring *tx_ring,
2024 const u64 cd_type_cmd_tso_mss,
2025 const u32 cd_tunneling, const u32 cd_l2tag2)
2026{
2027 struct i40e_tx_context_desc *context_desc;
Alexander Duyckfc4ac672013-09-28 06:00:22 +00002028 int i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002029
Jesse Brandeburgff40dd52014-02-14 02:14:41 +00002030 if ((cd_type_cmd_tso_mss == I40E_TX_DESC_DTYPE_CONTEXT) &&
2031 !cd_tunneling && !cd_l2tag2)
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002032 return;
2033
2034 /* grab the next descriptor */
Alexander Duyckfc4ac672013-09-28 06:00:22 +00002035 context_desc = I40E_TX_CTXTDESC(tx_ring, i);
2036
2037 i++;
2038 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002039
2040 /* cpu_to_le32 and assign to struct fields */
2041 context_desc->tunneling_params = cpu_to_le32(cd_tunneling);
2042 context_desc->l2tag2 = cpu_to_le16(cd_l2tag2);
Jesse Brandeburg3efbbb22014-06-04 20:41:54 +00002043 context_desc->rsvd = cpu_to_le16(0);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002044 context_desc->type_cmd_tso_mss = cpu_to_le64(cd_type_cmd_tso_mss);
2045}
2046
2047/**
2048 * i40e_tx_map - Build the Tx descriptor
2049 * @tx_ring: ring to send buffer on
2050 * @skb: send buffer
2051 * @first: first buffer info buffer to use
2052 * @tx_flags: collected send information
2053 * @hdr_len: size of the packet header
2054 * @td_cmd: the command field in the descriptor
2055 * @td_offset: offset for checksum or crc
2056 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002057#ifdef I40E_FCOE
2058void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
2059 struct i40e_tx_buffer *first, u32 tx_flags,
2060 const u8 hdr_len, u32 td_cmd, u32 td_offset)
2061#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002062static void i40e_tx_map(struct i40e_ring *tx_ring, struct sk_buff *skb,
2063 struct i40e_tx_buffer *first, u32 tx_flags,
2064 const u8 hdr_len, u32 td_cmd, u32 td_offset)
Vasu Dev38e00432014-08-01 13:27:03 -07002065#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002066{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002067 unsigned int data_len = skb->data_len;
2068 unsigned int size = skb_headlen(skb);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002069 struct skb_frag_struct *frag;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002070 struct i40e_tx_buffer *tx_bi;
2071 struct i40e_tx_desc *tx_desc;
Alexander Duycka5e9c572013-09-28 06:00:27 +00002072 u16 i = tx_ring->next_to_use;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002073 u32 td_tag = 0;
2074 dma_addr_t dma;
2075 u16 gso_segs;
2076
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002077 if (tx_flags & I40E_TX_FLAGS_HW_VLAN) {
2078 td_cmd |= I40E_TX_DESC_CMD_IL2TAG1;
2079 td_tag = (tx_flags & I40E_TX_FLAGS_VLAN_MASK) >>
2080 I40E_TX_FLAGS_VLAN_SHIFT;
2081 }
2082
Alexander Duycka5e9c572013-09-28 06:00:27 +00002083 if (tx_flags & (I40E_TX_FLAGS_TSO | I40E_TX_FLAGS_FSO))
2084 gso_segs = skb_shinfo(skb)->gso_segs;
2085 else
2086 gso_segs = 1;
2087
2088 /* multiply data chunks by size of headers */
2089 first->bytecount = skb->len - hdr_len + (gso_segs * hdr_len);
2090 first->gso_segs = gso_segs;
2091 first->skb = skb;
2092 first->tx_flags = tx_flags;
2093
2094 dma = dma_map_single(tx_ring->dev, skb->data, size, DMA_TO_DEVICE);
2095
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002096 tx_desc = I40E_TX_DESC(tx_ring, i);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002097 tx_bi = first;
2098
2099 for (frag = &skb_shinfo(skb)->frags[0];; frag++) {
2100 if (dma_mapping_error(tx_ring->dev, dma))
2101 goto dma_error;
2102
2103 /* record length, and DMA address */
2104 dma_unmap_len_set(tx_bi, len, size);
2105 dma_unmap_addr_set(tx_bi, dma, dma);
2106
2107 tx_desc->buffer_addr = cpu_to_le64(dma);
2108
2109 while (unlikely(size > I40E_MAX_DATA_PER_TXD)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002110 tx_desc->cmd_type_offset_bsz =
2111 build_ctob(td_cmd, td_offset,
2112 I40E_MAX_DATA_PER_TXD, td_tag);
2113
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002114 tx_desc++;
2115 i++;
2116 if (i == tx_ring->count) {
2117 tx_desc = I40E_TX_DESC(tx_ring, 0);
2118 i = 0;
2119 }
Alexander Duycka5e9c572013-09-28 06:00:27 +00002120
2121 dma += I40E_MAX_DATA_PER_TXD;
2122 size -= I40E_MAX_DATA_PER_TXD;
2123
2124 tx_desc->buffer_addr = cpu_to_le64(dma);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002125 }
2126
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002127 if (likely(!data_len))
2128 break;
2129
Alexander Duycka5e9c572013-09-28 06:00:27 +00002130 tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
2131 size, td_tag);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002132
2133 tx_desc++;
2134 i++;
2135 if (i == tx_ring->count) {
2136 tx_desc = I40E_TX_DESC(tx_ring, 0);
2137 i = 0;
2138 }
2139
Alexander Duycka5e9c572013-09-28 06:00:27 +00002140 size = skb_frag_size(frag);
2141 data_len -= size;
2142
2143 dma = skb_frag_dma_map(tx_ring->dev, frag, 0, size,
2144 DMA_TO_DEVICE);
2145
2146 tx_bi = &tx_ring->tx_bi[i];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002147 }
2148
Jesse Brandeburg1943d8b2014-02-14 02:14:40 +00002149 /* Place RS bit on last descriptor of any packet that spans across the
2150 * 4th descriptor (WB_STRIDE aka 0x3) in a 64B cacheline.
2151 */
2152#define WB_STRIDE 0x3
2153 if (((i & WB_STRIDE) != WB_STRIDE) &&
2154 (first <= &tx_ring->tx_bi[i]) &&
2155 (first >= &tx_ring->tx_bi[i & ~WB_STRIDE])) {
2156 tx_desc->cmd_type_offset_bsz =
2157 build_ctob(td_cmd, td_offset, size, td_tag) |
2158 cpu_to_le64((u64)I40E_TX_DESC_CMD_EOP <<
2159 I40E_TXD_QW1_CMD_SHIFT);
2160 } else {
2161 tx_desc->cmd_type_offset_bsz =
2162 build_ctob(td_cmd, td_offset, size, td_tag) |
2163 cpu_to_le64((u64)I40E_TXD_CMD <<
2164 I40E_TXD_QW1_CMD_SHIFT);
2165 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002166
Alexander Duyck7070ce02013-09-28 06:00:37 +00002167 netdev_tx_sent_queue(netdev_get_tx_queue(tx_ring->netdev,
2168 tx_ring->queue_index),
2169 first->bytecount);
2170
Alexander Duycka5e9c572013-09-28 06:00:27 +00002171 /* set the timestamp */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002172 first->time_stamp = jiffies;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002173
2174 /* Force memory writes to complete before letting h/w
2175 * know there are new descriptors to fetch. (Only
2176 * applicable for weak-ordered memory model archs,
2177 * such as IA-64).
2178 */
2179 wmb();
2180
Alexander Duycka5e9c572013-09-28 06:00:27 +00002181 /* set next_to_watch value indicating a packet is present */
2182 first->next_to_watch = tx_desc;
2183
2184 i++;
2185 if (i == tx_ring->count)
2186 i = 0;
2187
2188 tx_ring->next_to_use = i;
2189
2190 /* notify HW of packet */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002191 writel(i, tx_ring->tail);
Alexander Duycka5e9c572013-09-28 06:00:27 +00002192
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002193 return;
2194
2195dma_error:
Alexander Duycka5e9c572013-09-28 06:00:27 +00002196 dev_info(tx_ring->dev, "TX DMA map failed\n");
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002197
2198 /* clear dma mappings for failed tx_bi map */
2199 for (;;) {
2200 tx_bi = &tx_ring->tx_bi[i];
Alexander Duycka5e9c572013-09-28 06:00:27 +00002201 i40e_unmap_and_free_tx_resource(tx_ring, tx_bi);
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002202 if (tx_bi == first)
2203 break;
2204 if (i == 0)
2205 i = tx_ring->count;
2206 i--;
2207 }
2208
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002209 tx_ring->next_to_use = i;
2210}
2211
2212/**
2213 * __i40e_maybe_stop_tx - 2nd level check for tx stop conditions
2214 * @tx_ring: the ring to be checked
2215 * @size: the size buffer we want to assure is available
2216 *
2217 * Returns -EBUSY if a stop is needed, else 0
2218 **/
2219static inline int __i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
2220{
2221 netif_stop_subqueue(tx_ring->netdev, tx_ring->queue_index);
Greg Rose8e9dca52013-12-18 13:45:53 +00002222 /* Memory barrier before checking head and tail */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002223 smp_mb();
2224
2225 /* Check again in a case another CPU has just made room available. */
2226 if (likely(I40E_DESC_UNUSED(tx_ring) < size))
2227 return -EBUSY;
2228
2229 /* A reprieve! - use start_queue because it doesn't call schedule */
2230 netif_start_subqueue(tx_ring->netdev, tx_ring->queue_index);
2231 ++tx_ring->tx_stats.restart_queue;
2232 return 0;
2233}
2234
2235/**
2236 * i40e_maybe_stop_tx - 1st level check for tx stop conditions
2237 * @tx_ring: the ring to be checked
2238 * @size: the size buffer we want to assure is available
2239 *
2240 * Returns 0 if stop is not needed
2241 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002242#ifdef I40E_FCOE
2243int i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
2244#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002245static int i40e_maybe_stop_tx(struct i40e_ring *tx_ring, int size)
Vasu Dev38e00432014-08-01 13:27:03 -07002246#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002247{
2248 if (likely(I40E_DESC_UNUSED(tx_ring) >= size))
2249 return 0;
2250 return __i40e_maybe_stop_tx(tx_ring, size);
2251}
2252
2253/**
2254 * i40e_xmit_descriptor_count - calculate number of tx descriptors needed
2255 * @skb: send buffer
2256 * @tx_ring: ring to send buffer on
2257 *
2258 * Returns number of data descriptors needed for this skb. Returns 0 to indicate
2259 * there is not enough descriptors available in this ring since we need at least
2260 * one descriptor.
2261 **/
Vasu Dev38e00432014-08-01 13:27:03 -07002262#ifdef I40E_FCOE
2263int i40e_xmit_descriptor_count(struct sk_buff *skb,
2264 struct i40e_ring *tx_ring)
2265#else
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002266static int i40e_xmit_descriptor_count(struct sk_buff *skb,
2267 struct i40e_ring *tx_ring)
Vasu Dev38e00432014-08-01 13:27:03 -07002268#endif
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002269{
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002270 unsigned int f;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002271 int count = 0;
2272
2273 /* need: 1 descriptor per page * PAGE_SIZE/I40E_MAX_DATA_PER_TXD,
2274 * + 1 desc for skb_head_len/I40E_MAX_DATA_PER_TXD,
Jesse Brandeburgbe560522014-02-06 05:51:13 +00002275 * + 4 desc gap to avoid the cache line where head is,
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002276 * + 1 desc for context descriptor,
2277 * otherwise try next time
2278 */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002279 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
2280 count += TXD_USE_COUNT(skb_shinfo(skb)->frags[f].size);
Jesse Brandeburg980093e2014-05-10 04:49:12 +00002281
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002282 count += TXD_USE_COUNT(skb_headlen(skb));
Jesse Brandeburgbe560522014-02-06 05:51:13 +00002283 if (i40e_maybe_stop_tx(tx_ring, count + 4 + 1)) {
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002284 tx_ring->tx_stats.tx_busy++;
2285 return 0;
2286 }
2287 return count;
2288}
2289
2290/**
2291 * i40e_xmit_frame_ring - Sends buffer on Tx ring
2292 * @skb: send buffer
2293 * @tx_ring: ring to send buffer on
2294 *
2295 * Returns NETDEV_TX_OK if sent, else an error code
2296 **/
2297static netdev_tx_t i40e_xmit_frame_ring(struct sk_buff *skb,
2298 struct i40e_ring *tx_ring)
2299{
2300 u64 cd_type_cmd_tso_mss = I40E_TX_DESC_DTYPE_CONTEXT;
2301 u32 cd_tunneling = 0, cd_l2tag2 = 0;
2302 struct i40e_tx_buffer *first;
2303 u32 td_offset = 0;
2304 u32 tx_flags = 0;
2305 __be16 protocol;
2306 u32 td_cmd = 0;
2307 u8 hdr_len = 0;
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002308 int tsyn;
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002309 int tso;
2310 if (0 == i40e_xmit_descriptor_count(skb, tx_ring))
2311 return NETDEV_TX_BUSY;
2312
2313 /* prepare the xmit flags */
2314 if (i40e_tx_prepare_vlan_flags(skb, tx_ring, &tx_flags))
2315 goto out_drop;
2316
2317 /* obtain protocol of skb */
2318 protocol = skb->protocol;
2319
2320 /* record the location of the first descriptor for this packet */
2321 first = &tx_ring->tx_bi[tx_ring->next_to_use];
2322
2323 /* setup IPv4/IPv6 offloads */
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00002324 if (protocol == htons(ETH_P_IP))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002325 tx_flags |= I40E_TX_FLAGS_IPV4;
Jesse Brandeburg0e2fe46c2013-11-28 06:39:29 +00002326 else if (protocol == htons(ETH_P_IPV6))
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002327 tx_flags |= I40E_TX_FLAGS_IPV6;
2328
2329 tso = i40e_tso(tx_ring, skb, tx_flags, protocol, &hdr_len,
2330 &cd_type_cmd_tso_mss, &cd_tunneling);
2331
2332 if (tso < 0)
2333 goto out_drop;
2334 else if (tso)
2335 tx_flags |= I40E_TX_FLAGS_TSO;
2336
Jacob Kellerbeb0dff2014-01-11 05:43:19 +00002337 tsyn = i40e_tsyn(tx_ring, skb, tx_flags, &cd_type_cmd_tso_mss);
2338
2339 if (tsyn)
2340 tx_flags |= I40E_TX_FLAGS_TSYN;
2341
Jakub Kicinski259afec2014-03-15 14:55:37 +00002342 skb_tx_timestamp(skb);
2343
Alexander Duyckb1941302013-09-28 06:00:32 +00002344 /* always enable CRC insertion offload */
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002345 td_cmd |= I40E_TX_DESC_CMD_ICRC;
2346
Alexander Duyckb1941302013-09-28 06:00:32 +00002347 /* Always offload the checksum, since it's in the data descriptor */
2348 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2349 tx_flags |= I40E_TX_FLAGS_CSUM;
2350
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002351 i40e_tx_enable_csum(skb, tx_flags, &td_cmd, &td_offset,
2352 tx_ring, &cd_tunneling);
Alexander Duyckb1941302013-09-28 06:00:32 +00002353 }
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002354
2355 i40e_create_tx_ctx(tx_ring, cd_type_cmd_tso_mss,
2356 cd_tunneling, cd_l2tag2);
2357
2358 /* Add Flow Director ATR if it's enabled.
2359 *
2360 * NOTE: this must always be directly before the data descriptor.
2361 */
2362 i40e_atr(tx_ring, skb, tx_flags, protocol);
2363
2364 i40e_tx_map(tx_ring, skb, first, tx_flags, hdr_len,
2365 td_cmd, td_offset);
2366
2367 i40e_maybe_stop_tx(tx_ring, DESC_NEEDED);
2368
2369 return NETDEV_TX_OK;
2370
2371out_drop:
2372 dev_kfree_skb_any(skb);
2373 return NETDEV_TX_OK;
2374}
2375
2376/**
2377 * i40e_lan_xmit_frame - Selects the correct VSI and Tx queue to send buffer
2378 * @skb: send buffer
2379 * @netdev: network interface device structure
2380 *
2381 * Returns NETDEV_TX_OK if sent, else an error code
2382 **/
2383netdev_tx_t i40e_lan_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
2384{
2385 struct i40e_netdev_priv *np = netdev_priv(netdev);
2386 struct i40e_vsi *vsi = np->vsi;
Alexander Duyck9f65e152013-09-28 06:00:58 +00002387 struct i40e_ring *tx_ring = vsi->tx_rings[skb->queue_mapping];
Jesse Brandeburgfd0a05c2013-09-11 08:39:51 +00002388
2389 /* hardware can't handle really short frames, hardware padding works
2390 * beyond this point
2391 */
2392 if (unlikely(skb->len < I40E_MIN_TX_LEN)) {
2393 if (skb_pad(skb, I40E_MIN_TX_LEN - skb->len))
2394 return NETDEV_TX_OK;
2395 skb->len = I40E_MIN_TX_LEN;
2396 skb_set_tail_pointer(skb, I40E_MIN_TX_LEN);
2397 }
2398
2399 return i40e_xmit_frame_ring(skb, tx_ring);
2400}