blob: 496836765df8868990241f9e026c5f9e67e6a0da [file] [log] [blame]
Yi Zoud3a2ae62009-05-13 13:10:21 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore94971822012-01-06 03:24:16 +00004 Copyright(c) 1999 - 2012 Intel Corporation.
Yi Zoud3a2ae62009-05-13 13:10:21 +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
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
Yi Zoud3a2ae62009-05-13 13:10:21 +000028#include "ixgbe.h"
29#include <linux/if_ether.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/gfp.h>
Yi Zoube5d5072010-05-18 16:00:05 +000031#include <linux/if_vlan.h>
Yi Zoud3a2ae62009-05-13 13:10:21 +000032#include <scsi/scsi_cmnd.h>
33#include <scsi/scsi_device.h>
34#include <scsi/fc/fc_fs.h>
35#include <scsi/fc/fc_fcoe.h>
36#include <scsi/libfc.h>
37#include <scsi/libfcoe.h>
38
39/**
Yi Zoud0ed8932009-05-13 13:11:29 +000040 * ixgbe_fcoe_clear_ddp - clear the given ddp context
Ben Hutchings49ce9c22012-07-10 10:56:00 +000041 * @ddp: ptr to the ixgbe_fcoe_ddp
Yi Zoud0ed8932009-05-13 13:11:29 +000042 *
43 * Returns : none
44 *
45 */
46static inline void ixgbe_fcoe_clear_ddp(struct ixgbe_fcoe_ddp *ddp)
47{
48 ddp->len = 0;
Yi Zou8ca371e2010-11-16 19:27:13 -080049 ddp->err = 1;
Yi Zoud0ed8932009-05-13 13:11:29 +000050 ddp->udl = NULL;
51 ddp->udp = 0UL;
52 ddp->sgl = NULL;
53 ddp->sgc = 0;
54}
55
56/**
57 * ixgbe_fcoe_ddp_put - free the ddp context for a given xid
58 * @netdev: the corresponding net_device
59 * @xid: the xid that corresponding ddp will be freed
60 *
61 * This is the implementation of net_device_ops.ndo_fcoe_ddp_done
62 * and it is expected to be called by ULD, i.e., FCP layer of libfc
63 * to release the corresponding ddp context when the I/O is done.
64 *
65 * Returns : data length already ddp-ed in bytes
66 */
67int ixgbe_fcoe_ddp_put(struct net_device *netdev, u16 xid)
68{
69 int len = 0;
70 struct ixgbe_fcoe *fcoe;
71 struct ixgbe_adapter *adapter;
72 struct ixgbe_fcoe_ddp *ddp;
Yi Zou9b55bb02010-11-16 19:27:14 -080073 u32 fcbuff;
Yi Zoud0ed8932009-05-13 13:11:29 +000074
75 if (!netdev)
76 goto out_ddp_put;
77
78 if (xid >= IXGBE_FCOE_DDP_MAX)
79 goto out_ddp_put;
80
81 adapter = netdev_priv(netdev);
82 fcoe = &adapter->fcoe;
83 ddp = &fcoe->ddp[xid];
84 if (!ddp->udl)
85 goto out_ddp_put;
86
87 len = ddp->len;
88 /* if there an error, force to invalidate ddp context */
89 if (ddp->err) {
90 spin_lock_bh(&fcoe->lock);
91 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCFLT, 0);
92 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCFLTRW,
93 (xid | IXGBE_FCFLTRW_WE));
94 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCBUFF, 0);
95 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCDMARW,
96 (xid | IXGBE_FCDMARW_WE));
Yi Zou9b55bb02010-11-16 19:27:14 -080097
98 /* guaranteed to be invalidated after 100us */
99 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCDMARW,
100 (xid | IXGBE_FCDMARW_RE));
101 fcbuff = IXGBE_READ_REG(&adapter->hw, IXGBE_FCBUFF);
Yi Zoud0ed8932009-05-13 13:11:29 +0000102 spin_unlock_bh(&fcoe->lock);
Yi Zou9b55bb02010-11-16 19:27:14 -0800103 if (fcbuff & IXGBE_FCBUFF_VALID)
104 udelay(100);
Yi Zoud0ed8932009-05-13 13:11:29 +0000105 }
106 if (ddp->sgl)
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000107 dma_unmap_sg(&adapter->pdev->dev, ddp->sgl, ddp->sgc,
Yi Zoud0ed8932009-05-13 13:11:29 +0000108 DMA_FROM_DEVICE);
Vasu Devdadbe852011-05-11 05:41:46 +0000109 if (ddp->pool) {
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000110 dma_pool_free(ddp->pool, ddp->udl, ddp->udp);
Vasu Devdadbe852011-05-11 05:41:46 +0000111 ddp->pool = NULL;
112 }
113
Yi Zoud0ed8932009-05-13 13:11:29 +0000114 ixgbe_fcoe_clear_ddp(ddp);
115
116out_ddp_put:
117 return len;
118}
119
120/**
Yi Zou68a683c2011-02-01 07:22:16 +0000121 * ixgbe_fcoe_ddp_setup - called to set up ddp context
Yi Zoud0ed8932009-05-13 13:11:29 +0000122 * @netdev: the corresponding net_device
123 * @xid: the exchange id requesting ddp
124 * @sgl: the scatter-gather list for this request
125 * @sgc: the number of scatter-gather items
126 *
Yi Zoud0ed8932009-05-13 13:11:29 +0000127 * Returns : 1 for success and 0 for no ddp
128 */
Yi Zou68a683c2011-02-01 07:22:16 +0000129static int ixgbe_fcoe_ddp_setup(struct net_device *netdev, u16 xid,
130 struct scatterlist *sgl, unsigned int sgc,
131 int target_mode)
Yi Zoud0ed8932009-05-13 13:11:29 +0000132{
133 struct ixgbe_adapter *adapter;
134 struct ixgbe_hw *hw;
135 struct ixgbe_fcoe *fcoe;
136 struct ixgbe_fcoe_ddp *ddp;
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000137 struct ixgbe_fcoe_ddp_pool *ddp_pool;
Yi Zoud0ed8932009-05-13 13:11:29 +0000138 struct scatterlist *sg;
139 unsigned int i, j, dmacount;
140 unsigned int len;
Amir Hananiac6006362011-02-15 09:11:31 +0000141 static const unsigned int bufflen = IXGBE_FCBUFF_MIN;
Yi Zoud0ed8932009-05-13 13:11:29 +0000142 unsigned int firstoff = 0;
143 unsigned int lastsize;
144 unsigned int thisoff = 0;
145 unsigned int thislen = 0;
Yi Zou68a683c2011-02-01 07:22:16 +0000146 u32 fcbuff, fcdmarw, fcfltrw, fcrxctl;
Don Skidmorefbbea322011-01-26 06:04:17 +0000147 dma_addr_t addr = 0;
Yi Zoud0ed8932009-05-13 13:11:29 +0000148
149 if (!netdev || !sgl)
150 return 0;
151
152 adapter = netdev_priv(netdev);
153 if (xid >= IXGBE_FCOE_DDP_MAX) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000154 e_warn(drv, "xid=0x%x out-of-range\n", xid);
Yi Zoud0ed8932009-05-13 13:11:29 +0000155 return 0;
156 }
157
Yi Zoua41c0592010-11-16 19:27:13 -0800158 /* no DDP if we are already down or resetting */
159 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
160 test_bit(__IXGBE_RESETTING, &adapter->state))
161 return 0;
162
Yi Zoud0ed8932009-05-13 13:11:29 +0000163 fcoe = &adapter->fcoe;
Yi Zoud0ed8932009-05-13 13:11:29 +0000164 ddp = &fcoe->ddp[xid];
165 if (ddp->sgl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000166 e_err(drv, "xid 0x%x w/ non-null sgl=%p nents=%d\n",
167 xid, ddp->sgl, ddp->sgc);
Yi Zoud0ed8932009-05-13 13:11:29 +0000168 return 0;
169 }
170 ixgbe_fcoe_clear_ddp(ddp);
171
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000172
173 if (!fcoe->ddp_pool) {
174 e_warn(drv, "No ddp_pool resources allocated\n");
175 return 0;
176 }
177
178 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, get_cpu());
179 if (!ddp_pool->pool) {
180 e_warn(drv, "xid=0x%x no ddp pool for fcoe\n", xid);
181 goto out_noddp;
182 }
183
Yi Zoud0ed8932009-05-13 13:11:29 +0000184 /* setup dma from scsi command sgl */
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000185 dmacount = dma_map_sg(&adapter->pdev->dev, sgl, sgc, DMA_FROM_DEVICE);
Yi Zoud0ed8932009-05-13 13:11:29 +0000186 if (dmacount == 0) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000187 e_err(drv, "xid 0x%x DMA map error\n", xid);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000188 goto out_noddp;
Yi Zoud0ed8932009-05-13 13:11:29 +0000189 }
190
Vasu Devdadbe852011-05-11 05:41:46 +0000191 /* alloc the udl from per cpu ddp pool */
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000192 ddp->udl = dma_pool_alloc(ddp_pool->pool, GFP_ATOMIC, &ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000193 if (!ddp->udl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000194 e_err(drv, "failed allocated ddp context\n");
Yi Zoud0ed8932009-05-13 13:11:29 +0000195 goto out_noddp_unmap;
196 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000197 ddp->pool = ddp_pool->pool;
Yi Zoud0ed8932009-05-13 13:11:29 +0000198 ddp->sgl = sgl;
199 ddp->sgc = sgc;
200
201 j = 0;
202 for_each_sg(sgl, sg, dmacount, i) {
203 addr = sg_dma_address(sg);
204 len = sg_dma_len(sg);
205 while (len) {
Robert Lovea7551b72010-03-24 10:02:04 +0000206 /* max number of buffers allowed in one DDP context */
207 if (j >= IXGBE_BUFFCNT_MAX) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000208 ddp_pool->noddp++;
Robert Lovea7551b72010-03-24 10:02:04 +0000209 goto out_noddp_free;
210 }
211
Yi Zoud0ed8932009-05-13 13:11:29 +0000212 /* get the offset of length of current buffer */
213 thisoff = addr & ((dma_addr_t)bufflen - 1);
214 thislen = min((bufflen - thisoff), len);
215 /*
216 * all but the 1st buffer (j == 0)
217 * must be aligned on bufflen
218 */
219 if ((j != 0) && (thisoff))
220 goto out_noddp_free;
221 /*
222 * all but the last buffer
223 * ((i == (dmacount - 1)) && (thislen == len))
224 * must end at bufflen
225 */
226 if (((i != (dmacount - 1)) || (thislen != len))
227 && ((thislen + thisoff) != bufflen))
228 goto out_noddp_free;
229
230 ddp->udl[j] = (u64)(addr - thisoff);
231 /* only the first buffer may have none-zero offset */
232 if (j == 0)
233 firstoff = thisoff;
234 len -= thislen;
235 addr += thislen;
236 j++;
Yi Zoud0ed8932009-05-13 13:11:29 +0000237 }
238 }
239 /* only the last buffer may have non-full bufflen */
240 lastsize = thisoff + thislen;
241
Amir Hananiac6006362011-02-15 09:11:31 +0000242 /*
243 * lastsize can not be buffer len.
244 * If it is then adding another buffer with lastsize = 1.
245 */
246 if (lastsize == bufflen) {
247 if (j >= IXGBE_BUFFCNT_MAX) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000248 ddp_pool->noddp_ext_buff++;
Amir Hananiac6006362011-02-15 09:11:31 +0000249 goto out_noddp_free;
250 }
251
252 ddp->udl[j] = (u64)(fcoe->extra_ddp_buffer_dma);
253 j++;
254 lastsize = 1;
255 }
Vasu Devdadbe852011-05-11 05:41:46 +0000256 put_cpu();
Amir Hananiac6006362011-02-15 09:11:31 +0000257
Yi Zoud0ed8932009-05-13 13:11:29 +0000258 fcbuff = (IXGBE_FCBUFF_4KB << IXGBE_FCBUFF_BUFFSIZE_SHIFT);
Robert Lovea7551b72010-03-24 10:02:04 +0000259 fcbuff |= ((j & 0xff) << IXGBE_FCBUFF_BUFFCNT_SHIFT);
Yi Zoud0ed8932009-05-13 13:11:29 +0000260 fcbuff |= (firstoff << IXGBE_FCBUFF_OFFSET_SHIFT);
Yi Zou68a683c2011-02-01 07:22:16 +0000261 /* Set WRCONTX bit to allow DDP for target */
262 if (target_mode)
263 fcbuff |= (IXGBE_FCBUFF_WRCONTX);
Yi Zoud0ed8932009-05-13 13:11:29 +0000264 fcbuff |= (IXGBE_FCBUFF_VALID);
265
266 fcdmarw = xid;
267 fcdmarw |= IXGBE_FCDMARW_WE;
268 fcdmarw |= (lastsize << IXGBE_FCDMARW_LASTSIZE_SHIFT);
269
270 fcfltrw = xid;
271 fcfltrw |= IXGBE_FCFLTRW_WE;
272
273 /* program DMA context */
274 hw = &adapter->hw;
275 spin_lock_bh(&fcoe->lock);
Yi Zou68a683c2011-02-01 07:22:16 +0000276
277 /* turn on last frame indication for target mode as FCP_RSPtarget is
278 * supposed to send FCP_RSP when it is done. */
279 if (target_mode && !test_bit(__IXGBE_FCOE_TARGET, &fcoe->mode)) {
280 set_bit(__IXGBE_FCOE_TARGET, &fcoe->mode);
281 fcrxctl = IXGBE_READ_REG(hw, IXGBE_FCRXCTRL);
282 fcrxctl |= IXGBE_FCRXCTRL_LASTSEQH;
283 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL, fcrxctl);
284 }
285
Andrew Morton8e20ce92009-06-18 16:49:17 -0700286 IXGBE_WRITE_REG(hw, IXGBE_FCPTRL, ddp->udp & DMA_BIT_MASK(32));
Yi Zoud0ed8932009-05-13 13:11:29 +0000287 IXGBE_WRITE_REG(hw, IXGBE_FCPTRH, (u64)ddp->udp >> 32);
288 IXGBE_WRITE_REG(hw, IXGBE_FCBUFF, fcbuff);
289 IXGBE_WRITE_REG(hw, IXGBE_FCDMARW, fcdmarw);
290 /* program filter context */
291 IXGBE_WRITE_REG(hw, IXGBE_FCPARAM, 0);
292 IXGBE_WRITE_REG(hw, IXGBE_FCFLT, IXGBE_FCFLT_VALID);
293 IXGBE_WRITE_REG(hw, IXGBE_FCFLTRW, fcfltrw);
Yi Zou68a683c2011-02-01 07:22:16 +0000294
Yi Zoud0ed8932009-05-13 13:11:29 +0000295 spin_unlock_bh(&fcoe->lock);
296
297 return 1;
298
299out_noddp_free:
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000300 dma_pool_free(ddp->pool, ddp->udl, ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000301 ixgbe_fcoe_clear_ddp(ddp);
302
303out_noddp_unmap:
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000304 dma_unmap_sg(&adapter->pdev->dev, sgl, sgc, DMA_FROM_DEVICE);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000305out_noddp:
Vasu Devdadbe852011-05-11 05:41:46 +0000306 put_cpu();
Yi Zoud0ed8932009-05-13 13:11:29 +0000307 return 0;
308}
309
310/**
Yi Zou68a683c2011-02-01 07:22:16 +0000311 * ixgbe_fcoe_ddp_get - called to set up ddp context in initiator mode
312 * @netdev: the corresponding net_device
313 * @xid: the exchange id requesting ddp
314 * @sgl: the scatter-gather list for this request
315 * @sgc: the number of scatter-gather items
316 *
317 * This is the implementation of net_device_ops.ndo_fcoe_ddp_setup
318 * and is expected to be called from ULD, e.g., FCP layer of libfc
319 * to set up ddp for the corresponding xid of the given sglist for
320 * the corresponding I/O.
321 *
322 * Returns : 1 for success and 0 for no ddp
323 */
324int ixgbe_fcoe_ddp_get(struct net_device *netdev, u16 xid,
325 struct scatterlist *sgl, unsigned int sgc)
326{
327 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 0);
328}
329
330/**
331 * ixgbe_fcoe_ddp_target - called to set up ddp context in target mode
332 * @netdev: the corresponding net_device
333 * @xid: the exchange id requesting ddp
334 * @sgl: the scatter-gather list for this request
335 * @sgc: the number of scatter-gather items
336 *
337 * This is the implementation of net_device_ops.ndo_fcoe_ddp_target
338 * and is expected to be called from ULD, e.g., FCP layer of libfc
339 * to set up ddp for the corresponding xid of the given sglist for
340 * the corresponding I/O. The DDP in target mode is a write I/O request
341 * from the initiator.
342 *
343 * Returns : 1 for success and 0 for no ddp
344 */
345int ixgbe_fcoe_ddp_target(struct net_device *netdev, u16 xid,
346 struct scatterlist *sgl, unsigned int sgc)
347{
348 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 1);
349}
350
351/**
Yi Zoud0ed8932009-05-13 13:11:29 +0000352 * ixgbe_fcoe_ddp - check ddp status and mark it done
353 * @adapter: ixgbe adapter
354 * @rx_desc: advanced rx descriptor
355 * @skb: the skb holding the received data
356 *
357 * This checks ddp status.
358 *
Yi Zou3d8fd382009-06-08 14:38:44 +0000359 * Returns : < 0 indicates an error or not a FCiE ddp, 0 indicates
360 * not passing the skb to ULD, > 0 indicates is the length of data
361 * being ddped.
Yi Zoud0ed8932009-05-13 13:11:29 +0000362 */
363int ixgbe_fcoe_ddp(struct ixgbe_adapter *adapter,
364 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000365 struct sk_buff *skb)
Yi Zoud0ed8932009-05-13 13:11:29 +0000366{
Yi Zoud0ed8932009-05-13 13:11:29 +0000367 int rc = -EINVAL;
368 struct ixgbe_fcoe *fcoe;
369 struct ixgbe_fcoe_ddp *ddp;
370 struct fc_frame_header *fh;
Yi Zou68a683c2011-02-01 07:22:16 +0000371 struct fcoe_crc_eof *crc;
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000372 __le32 fcerr = ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_FCERR);
373 __le32 ddp_err;
374 u32 fctl;
375 u16 xid;
Yi Zoud0ed8932009-05-13 13:11:29 +0000376
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000377 if (fcerr == cpu_to_le32(IXGBE_FCERR_BADCRC))
378 skb->ip_summed = CHECKSUM_NONE;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700379 else
380 skb->ip_summed = CHECKSUM_UNNECESSARY;
Yi Zoud0ed8932009-05-13 13:11:29 +0000381
Yi Zoube5d5072010-05-18 16:00:05 +0000382 if (eth_hdr(skb)->h_proto == htons(ETH_P_8021Q))
383 fh = (struct fc_frame_header *)(skb->data +
384 sizeof(struct vlan_hdr) + sizeof(struct fcoe_hdr));
385 else
386 fh = (struct fc_frame_header *)(skb->data +
387 sizeof(struct fcoe_hdr));
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000388
Yi Zoud4ab8812009-09-03 14:56:31 +0000389 fctl = ntoh24(fh->fh_f_ctl);
390 if (fctl & FC_FC_EX_CTX)
391 xid = be16_to_cpu(fh->fh_ox_id);
392 else
393 xid = be16_to_cpu(fh->fh_rx_id);
394
Yi Zoud0ed8932009-05-13 13:11:29 +0000395 if (xid >= IXGBE_FCOE_DDP_MAX)
396 goto ddp_out;
397
398 fcoe = &adapter->fcoe;
399 ddp = &fcoe->ddp[xid];
400 if (!ddp->udl)
401 goto ddp_out;
402
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000403 ddp_err = ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_FCEOFE |
404 IXGBE_RXDADV_ERR_FCERR);
405 if (ddp_err)
Yi Zoud0ed8932009-05-13 13:11:29 +0000406 goto ddp_out;
407
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000408 switch (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_STAT_FCSTAT)) {
409 /* return 0 to bypass going to ULD for DDPed data */
410 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_DDP):
Yi Zoud0ed8932009-05-13 13:11:29 +0000411 /* update length of DDPed data */
412 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000413 rc = 0;
414 break;
415 /* unmap the sg list when FCPRSP is received */
416 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_FCPRSP):
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000417 dma_unmap_sg(&adapter->pdev->dev, ddp->sgl,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000418 ddp->sgc, DMA_FROM_DEVICE);
419 ddp->err = ddp_err;
420 ddp->sgl = NULL;
421 ddp->sgc = 0;
422 /* fall through */
423 /* if DDP length is present pass it through to ULD */
424 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NODDP):
425 /* update length of DDPed data */
426 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
427 if (ddp->len)
Yi Zou3d8fd382009-06-08 14:38:44 +0000428 rc = ddp->len;
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000429 break;
430 /* no match will return as an error */
431 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NOMTCH):
432 default:
433 break;
Yi Zoud0ed8932009-05-13 13:11:29 +0000434 }
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000435
Yi Zou68a683c2011-02-01 07:22:16 +0000436 /* In target mode, check the last data frame of the sequence.
437 * For DDP in target mode, data is already DDPed but the header
438 * indication of the last data frame ould allow is to tell if we
439 * got all the data and the ULP can send FCP_RSP back, as this is
440 * not a full fcoe frame, we fill the trailer here so it won't be
441 * dropped by the ULP stack.
442 */
443 if ((fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA) &&
444 (fctl & FC_FC_END_SEQ)) {
Yi Zou441e1712012-04-20 05:48:08 +0000445 skb_linearize(skb);
Yi Zou68a683c2011-02-01 07:22:16 +0000446 crc = (struct fcoe_crc_eof *)skb_put(skb, sizeof(*crc));
447 crc->fcoe_eof = FC_EOF_T;
448 }
Yi Zoud0ed8932009-05-13 13:11:29 +0000449ddp_out:
450 return rc;
451}
452
453/**
Yi Zoubc079222009-05-13 13:10:44 +0000454 * ixgbe_fso - ixgbe FCoE Sequence Offload (FSO)
Yi Zoubc079222009-05-13 13:10:44 +0000455 * @tx_ring: tx desc ring
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000456 * @first: first tx_buffer structure containing skb, tx_flags, and protocol
Yi Zoubc079222009-05-13 13:10:44 +0000457 * @hdr_len: hdr_len to be returned
458 *
459 * This sets up large send offload for FCoE
460 *
Alexander Duyck244e27a2012-02-08 07:51:11 +0000461 * Returns : 0 indicates success, < 0 for error
Yi Zoubc079222009-05-13 13:10:44 +0000462 */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000463int ixgbe_fso(struct ixgbe_ring *tx_ring,
464 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +0000465 u8 *hdr_len)
Yi Zoubc079222009-05-13 13:10:44 +0000466{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000467 struct sk_buff *skb = first->skb;
Yi Zoubc079222009-05-13 13:10:44 +0000468 struct fc_frame_header *fh;
Alexander Duyck897ab152011-05-27 05:31:47 +0000469 u32 vlan_macip_lens;
470 u32 fcoe_sof_eof = 0;
471 u32 mss_l4len_idx;
472 u8 sof, eof;
Yi Zoubc079222009-05-13 13:10:44 +0000473
474 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_type != SKB_GSO_FCOE)) {
Alexander Duyck897ab152011-05-27 05:31:47 +0000475 dev_err(tx_ring->dev, "Wrong gso type %d:expecting SKB_GSO_FCOE\n",
476 skb_shinfo(skb)->gso_type);
Yi Zoubc079222009-05-13 13:10:44 +0000477 return -EINVAL;
478 }
479
480 /* resets the header to point fcoe/fc */
481 skb_set_network_header(skb, skb->mac_len);
482 skb_set_transport_header(skb, skb->mac_len +
483 sizeof(struct fcoe_hdr));
484
485 /* sets up SOF and ORIS */
Yi Zoubc079222009-05-13 13:10:44 +0000486 sof = ((struct fcoe_hdr *)skb_network_header(skb))->fcoe_sof;
487 switch (sof) {
488 case FC_SOF_I2:
Alexander Duyck897ab152011-05-27 05:31:47 +0000489 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000490 break;
491 case FC_SOF_I3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000492 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF |
493 IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000494 break;
495 case FC_SOF_N2:
496 break;
497 case FC_SOF_N3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000498 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF;
Yi Zoubc079222009-05-13 13:10:44 +0000499 break;
500 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000501 dev_warn(tx_ring->dev, "unknown sof = 0x%x\n", sof);
Yi Zoubc079222009-05-13 13:10:44 +0000502 return -EINVAL;
503 }
504
505 /* the first byte of the last dword is EOF */
506 skb_copy_bits(skb, skb->len - 4, &eof, 1);
507 /* sets up EOF and ORIE */
508 switch (eof) {
509 case FC_EOF_N:
510 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N;
511 break;
512 case FC_EOF_T:
513 /* lso needs ORIE */
Alexander Duyck897ab152011-05-27 05:31:47 +0000514 if (skb_is_gso(skb))
515 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N |
516 IXGBE_ADVTXD_FCOEF_ORIE;
517 else
Yi Zoubc079222009-05-13 13:10:44 +0000518 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_T;
Yi Zoubc079222009-05-13 13:10:44 +0000519 break;
520 case FC_EOF_NI:
521 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_NI;
522 break;
523 case FC_EOF_A:
524 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_A;
525 break;
526 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000527 dev_warn(tx_ring->dev, "unknown eof = 0x%x\n", eof);
Yi Zoubc079222009-05-13 13:10:44 +0000528 return -EINVAL;
529 }
530
531 /* sets up PARINC indicating data offset */
532 fh = (struct fc_frame_header *)skb_transport_header(skb);
533 if (fh->fh_f_ctl[2] & FC_FC_REL_OFF)
534 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_PARINC;
535
Alexander Duyck897ab152011-05-27 05:31:47 +0000536 /* include trailer in headlen as it is replicated per frame */
Yi Zoubc079222009-05-13 13:10:44 +0000537 *hdr_len = sizeof(struct fcoe_crc_eof);
Alexander Duyck897ab152011-05-27 05:31:47 +0000538
539 /* hdr_len includes fc_hdr if FCoE LSO is enabled */
Alexander Duyck091a6242012-02-08 07:51:01 +0000540 if (skb_is_gso(skb)) {
541 *hdr_len += skb_transport_offset(skb) +
542 sizeof(struct fc_frame_header);
543 /* update gso_segs and bytecount */
544 first->gso_segs = DIV_ROUND_UP(skb->len - *hdr_len,
545 skb_shinfo(skb)->gso_size);
546 first->bytecount += (first->gso_segs - 1) * *hdr_len;
Alexander Duyck472148c2012-11-07 02:34:28 +0000547 first->tx_flags |= IXGBE_TX_FLAGS_TSO;
Alexander Duyck091a6242012-02-08 07:51:01 +0000548 }
Yi Zoubc079222009-05-13 13:10:44 +0000549
Alexander Duyck244e27a2012-02-08 07:51:11 +0000550 /* set flag indicating FCOE to ixgbe_tx_map call */
Alexander Duyck472148c2012-11-07 02:34:28 +0000551 first->tx_flags |= IXGBE_TX_FLAGS_FCOE | IXGBE_TX_FLAGS_CC;
Alexander Duyck244e27a2012-02-08 07:51:11 +0000552
Alexander Duyckc44f5f52012-10-30 06:01:45 +0000553 /* mss_l4len_id: use 0 for FSO as TSO, no need for L4LEN */
Alexander Duyck897ab152011-05-27 05:31:47 +0000554 mss_l4len_idx = skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +0000555
556 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
557 vlan_macip_lens = skb_transport_offset(skb) +
558 sizeof(struct fc_frame_header);
559 vlan_macip_lens |= (skb_transport_offset(skb) - 4)
560 << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +0000561 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Yi Zoubc079222009-05-13 13:10:44 +0000562
563 /* write context desc */
Alexander Duyck897ab152011-05-27 05:31:47 +0000564 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, fcoe_sof_eof,
565 IXGBE_ADVTXT_TUCMD_FCOE, mss_l4len_idx);
Yi Zoubc079222009-05-13 13:10:44 +0000566
Alexander Duyck244e27a2012-02-08 07:51:11 +0000567 return 0;
Yi Zoubc079222009-05-13 13:10:44 +0000568}
569
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000570static void ixgbe_fcoe_dma_pool_free(struct ixgbe_fcoe *fcoe, unsigned int cpu)
571{
572 struct ixgbe_fcoe_ddp_pool *ddp_pool;
573
574 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
575 if (ddp_pool->pool)
576 dma_pool_destroy(ddp_pool->pool);
577 ddp_pool->pool = NULL;
578}
579
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000580static int ixgbe_fcoe_dma_pool_alloc(struct ixgbe_fcoe *fcoe,
581 struct device *dev,
582 unsigned int cpu)
583{
584 struct ixgbe_fcoe_ddp_pool *ddp_pool;
585 struct dma_pool *pool;
586 char pool_name[32];
587
588 snprintf(pool_name, 32, "ixgbe_fcoe_ddp_%d", cpu);
589
590 pool = dma_pool_create(pool_name, dev, IXGBE_FCPTR_MAX,
591 IXGBE_FCPTR_ALIGN, PAGE_SIZE);
592 if (!pool)
593 return -ENOMEM;
594
595 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
596 ddp_pool->pool = pool;
597 ddp_pool->noddp = 0;
598 ddp_pool->noddp_ext_buff = 0;
599
600 return 0;
Vasu Devdadbe852011-05-11 05:41:46 +0000601}
602
Yi Zoubc079222009-05-13 13:10:44 +0000603/**
Yi Zoud3a2ae62009-05-13 13:10:21 +0000604 * ixgbe_configure_fcoe - configures registers for fcoe at start
605 * @adapter: ptr to ixgbe adapter
606 *
607 * This sets up FCoE related registers
608 *
609 * Returns : none
610 */
611void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter)
612{
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000613 struct ixgbe_ring_feature *fcoe = &adapter->ring_feature[RING_F_FCOE];
Yi Zoud3a2ae62009-05-13 13:10:21 +0000614 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000615 int i, fcoe_q, fcoe_i;
Alexander Duyck81fadde2012-05-05 05:32:37 +0000616 u32 etqf;
Yi Zoud3a2ae62009-05-13 13:10:21 +0000617
Alexander Duycka58915c2012-05-25 06:38:18 +0000618 /* Minimal functionality for FCoE requires at least CRC offloads */
619 if (!(adapter->netdev->features & NETIF_F_FCOE_CRC))
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000620 return;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000621
Alexander Duycka58915c2012-05-25 06:38:18 +0000622 /* Enable L2 EtherType filter for FCoE, needed for FCoE CRC and DDP */
Alexander Duyck81fadde2012-05-05 05:32:37 +0000623 etqf = ETH_P_FCOE | IXGBE_ETQF_FCOE | IXGBE_ETQF_FILTER_EN;
624 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
625 etqf |= IXGBE_ETQF_POOL_ENABLE;
626 etqf |= VMDQ_P(0) << IXGBE_ETQF_POOL_SHIFT;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000627 }
Alexander Duyck81fadde2012-05-05 05:32:37 +0000628 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FCOE), etqf);
629 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FCOE), 0);
630
Alexander Duycka58915c2012-05-25 06:38:18 +0000631 /* leave registers un-configured if FCoE is disabled */
632 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
633 return;
634
Alexander Duyck81fadde2012-05-05 05:32:37 +0000635 /* Use one or more Rx queues for FCoE by redirection table */
636 for (i = 0; i < IXGBE_FCRETA_SIZE; i++) {
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000637 fcoe_i = fcoe->offset + (i % fcoe->indices);
Alexander Duyck81fadde2012-05-05 05:32:37 +0000638 fcoe_i &= IXGBE_FCRETA_ENTRY_MASK;
639 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
640 IXGBE_WRITE_REG(hw, IXGBE_FCRETA(i), fcoe_q);
641 }
642 IXGBE_WRITE_REG(hw, IXGBE_FCRECTL, IXGBE_FCRECTL_ENA);
643
644 /* Enable L2 EtherType filter for FIP */
645 etqf = ETH_P_FIP | IXGBE_ETQF_FILTER_EN;
646 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
647 etqf |= IXGBE_ETQF_POOL_ENABLE;
648 etqf |= VMDQ_P(0) << IXGBE_ETQF_POOL_SHIFT;
649 }
650 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FIP), etqf);
651
652 /* Send FIP frames to the first FCoE queue */
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000653 fcoe_q = adapter->rx_ring[fcoe->offset]->reg_idx;
Chris Leechaf063932010-03-24 12:45:21 +0000654 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FIP),
655 IXGBE_ETQS_QUEUE_EN |
656 (fcoe_q << IXGBE_ETQS_RX_QUEUE_SHIFT));
Yi Zou29ebf6f2009-05-17 12:34:14 +0000657
Alexander Duyck81fadde2012-05-05 05:32:37 +0000658 /* Configure FCoE Rx control */
659 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL,
660 IXGBE_FCRXCTRL_FCCRCBO |
Yi Zoud3a2ae62009-05-13 13:10:21 +0000661 (FC_FCOE_VER << IXGBE_FCRXCTRL_FCOEVER_SHIFT));
662}
Yi Zoud0ed8932009-05-13 13:11:29 +0000663
664/**
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000665 * ixgbe_free_fcoe_ddp_resources - release all fcoe ddp context resources
Yi Zoud0ed8932009-05-13 13:11:29 +0000666 * @adapter : ixgbe adapter
667 *
668 * Cleans up outstanding ddp context resources
669 *
670 * Returns : none
671 */
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000672void ixgbe_free_fcoe_ddp_resources(struct ixgbe_adapter *adapter)
Yi Zoud0ed8932009-05-13 13:11:29 +0000673{
Yi Zoud0ed8932009-05-13 13:11:29 +0000674 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000675 int cpu, i;
Yi Zoud0ed8932009-05-13 13:11:29 +0000676
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000677 /* do nothing if no DDP pools were allocated */
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000678 if (!fcoe->ddp_pool)
Vasu Devdadbe852011-05-11 05:41:46 +0000679 return;
680
681 for (i = 0; i < IXGBE_FCOE_DDP_MAX; i++)
682 ixgbe_fcoe_ddp_put(adapter->netdev, i);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000683
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000684 for_each_possible_cpu(cpu)
685 ixgbe_fcoe_dma_pool_free(fcoe, cpu);
686
Vasu Devdadbe852011-05-11 05:41:46 +0000687 dma_unmap_single(&adapter->pdev->dev,
688 fcoe->extra_ddp_buffer_dma,
689 IXGBE_FCBUFF_MIN,
690 DMA_FROM_DEVICE);
691 kfree(fcoe->extra_ddp_buffer);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000692
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000693 fcoe->extra_ddp_buffer = NULL;
694 fcoe->extra_ddp_buffer_dma = 0;
695}
696
697/**
698 * ixgbe_setup_fcoe_ddp_resources - setup all fcoe ddp context resources
699 * @adapter: ixgbe adapter
700 *
701 * Sets up ddp context resouces
702 *
703 * Returns : 0 indicates success or -EINVAL on failure
704 */
705int ixgbe_setup_fcoe_ddp_resources(struct ixgbe_adapter *adapter)
706{
707 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
708 struct device *dev = &adapter->pdev->dev;
709 void *buffer;
710 dma_addr_t dma;
711 unsigned int cpu;
712
713 /* do nothing if no DDP pools were allocated */
714 if (!fcoe->ddp_pool)
715 return 0;
716
717 /* Extra buffer to be shared by all DDPs for HW work around */
718 buffer = kmalloc(IXGBE_FCBUFF_MIN, GFP_ATOMIC);
719 if (!buffer) {
720 e_err(drv, "failed to allocate extra DDP buffer\n");
721 return -ENOMEM;
722 }
723
724 dma = dma_map_single(dev, buffer, IXGBE_FCBUFF_MIN, DMA_FROM_DEVICE);
725 if (dma_mapping_error(dev, dma)) {
726 e_err(drv, "failed to map extra DDP buffer\n");
727 kfree(buffer);
728 return -ENOMEM;
729 }
730
731 fcoe->extra_ddp_buffer = buffer;
732 fcoe->extra_ddp_buffer_dma = dma;
733
734 /* allocate pci pool for each cpu */
735 for_each_possible_cpu(cpu) {
736 int err = ixgbe_fcoe_dma_pool_alloc(fcoe, dev, cpu);
737 if (!err)
738 continue;
739
740 e_err(drv, "failed to alloc DDP pool on cpu:%d\n", cpu);
741 ixgbe_free_fcoe_ddp_resources(adapter);
742 return -ENOMEM;
743 }
744
745 return 0;
746}
747
748static int ixgbe_fcoe_ddp_enable(struct ixgbe_adapter *adapter)
749{
750 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
751
752 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
753 return -EINVAL;
754
755 fcoe->ddp_pool = alloc_percpu(struct ixgbe_fcoe_ddp_pool);
756
757 if (!fcoe->ddp_pool) {
758 e_err(drv, "failed to allocate percpu DDP resources\n");
759 return -ENOMEM;
760 }
761
762 adapter->netdev->fcoe_ddp_xid = IXGBE_FCOE_DDP_MAX - 1;
763
764 return 0;
765}
766
767static void ixgbe_fcoe_ddp_disable(struct ixgbe_adapter *adapter)
768{
769 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
770
771 adapter->netdev->fcoe_ddp_xid = 0;
772
773 if (!fcoe->ddp_pool)
774 return;
775
776 free_percpu(fcoe->ddp_pool);
777 fcoe->ddp_pool = NULL;
Yi Zoud0ed8932009-05-13 13:11:29 +0000778}
Yi Zou8450ff82009-08-31 12:32:14 +0000779
780/**
781 * ixgbe_fcoe_enable - turn on FCoE offload feature
782 * @netdev: the corresponding netdev
783 *
784 * Turns on FCoE offload feature in 82599.
785 *
786 * Returns : 0 indicates success or -EINVAL on failure
787 */
788int ixgbe_fcoe_enable(struct net_device *netdev)
789{
Yi Zou8450ff82009-08-31 12:32:14 +0000790 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Yi Zou27ab7602010-10-20 23:00:30 +0000791 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8450ff82009-08-31 12:32:14 +0000792
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000793 atomic_inc(&fcoe->refcnt);
Yi Zou8450ff82009-08-31 12:32:14 +0000794
795 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000796 return -EINVAL;
Yi Zou8450ff82009-08-31 12:32:14 +0000797
798 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000799 return -EINVAL;
Yi Zou8450ff82009-08-31 12:32:14 +0000800
Emil Tantilov396e7992010-07-01 20:05:12 +0000801 e_info(drv, "Enabling FCoE offload features.\n");
Alexander Duyck872844d2012-08-15 02:10:43 +0000802
803 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
804 e_warn(probe, "Enabling FCoE on PF will disable legacy VFs\n");
805
Yi Zou8450ff82009-08-31 12:32:14 +0000806 if (netif_running(netdev))
807 netdev->netdev_ops->ndo_stop(netdev);
808
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000809 /* Allocate per CPU memory to track DDP pools */
810 ixgbe_fcoe_ddp_enable(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000811
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000812 /* enable FCoE and notify stack */
Yi Zou8450ff82009-08-31 12:32:14 +0000813 adapter->flags |= IXGBE_FLAG_FCOE_ENABLED;
Alexander Duycka58915c2012-05-25 06:38:18 +0000814 netdev->features |= NETIF_F_FCOE_MTU;
Vasu Dev936332b2010-03-19 04:33:10 +0000815 netdev_features_change(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000816
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000817 /* release existing queues and reallocate them */
818 ixgbe_clear_interrupt_scheme(adapter);
819 ixgbe_init_interrupt_scheme(adapter);
820
Yi Zou8450ff82009-08-31 12:32:14 +0000821 if (netif_running(netdev))
822 netdev->netdev_ops->ndo_open(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000823
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000824 return 0;
Yi Zou8450ff82009-08-31 12:32:14 +0000825}
826
827/**
828 * ixgbe_fcoe_disable - turn off FCoE offload feature
829 * @netdev: the corresponding netdev
830 *
831 * Turns off FCoE offload feature in 82599.
832 *
833 * Returns : 0 indicates success or -EINVAL on failure
834 */
835int ixgbe_fcoe_disable(struct net_device *netdev)
836{
Yi Zou8450ff82009-08-31 12:32:14 +0000837 struct ixgbe_adapter *adapter = netdev_priv(netdev);
838
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000839 if (!atomic_dec_and_test(&adapter->fcoe.refcnt))
840 return -EINVAL;
Yi Zou8450ff82009-08-31 12:32:14 +0000841
842 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000843 return -EINVAL;
Yi Zou27ab7602010-10-20 23:00:30 +0000844
Emil Tantilov396e7992010-07-01 20:05:12 +0000845 e_info(drv, "Disabling FCoE offload features.\n");
Yi Zou8450ff82009-08-31 12:32:14 +0000846 if (netif_running(netdev))
847 netdev->netdev_ops->ndo_stop(netdev);
848
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000849 /* Free per CPU memory to track DDP pools */
850 ixgbe_fcoe_ddp_disable(adapter);
851
852 /* disable FCoE and notify stack */
Yi Zou8450ff82009-08-31 12:32:14 +0000853 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Alexander Duycka58915c2012-05-25 06:38:18 +0000854 netdev->features &= ~NETIF_F_FCOE_MTU;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000855
856 netdev_features_change(netdev);
857
858 /* release existing queues and reallocate them */
859 ixgbe_clear_interrupt_scheme(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000860 ixgbe_init_interrupt_scheme(adapter);
Vasu Dev936332b2010-03-19 04:33:10 +0000861
Yi Zou8450ff82009-08-31 12:32:14 +0000862 if (netif_running(netdev))
863 netdev->netdev_ops->ndo_open(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000864
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000865 return 0;
Yi Zou8450ff82009-08-31 12:32:14 +0000866}
Yi Zou6ee16522009-08-31 12:34:28 +0000867
Yi Zou61a1fa12009-10-28 18:24:56 +0000868/**
869 * ixgbe_fcoe_get_wwn - get world wide name for the node or the port
870 * @netdev : ixgbe adapter
871 * @wwn : the world wide name
872 * @type: the type of world wide name
873 *
874 * Returns the node or port world wide name if both the prefix and the san
875 * mac address are valid, then the wwn is formed based on the NAA-2 for
876 * IEEE Extended name identifier (ref. to T10 FC-LS Spec., Sec. 15.3).
877 *
878 * Returns : 0 on success
879 */
880int ixgbe_fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type)
881{
882 int rc = -EINVAL;
883 u16 prefix = 0xffff;
884 struct ixgbe_adapter *adapter = netdev_priv(netdev);
885 struct ixgbe_mac_info *mac = &adapter->hw.mac;
886
887 switch (type) {
888 case NETDEV_FCOE_WWNN:
889 prefix = mac->wwnn_prefix;
890 break;
891 case NETDEV_FCOE_WWPN:
892 prefix = mac->wwpn_prefix;
893 break;
894 default:
895 break;
896 }
897
898 if ((prefix != 0xffff) &&
899 is_valid_ether_addr(mac->san_addr)) {
900 *wwn = ((u64) prefix << 48) |
901 ((u64) mac->san_addr[0] << 40) |
902 ((u64) mac->san_addr[1] << 32) |
903 ((u64) mac->san_addr[2] << 24) |
904 ((u64) mac->san_addr[3] << 16) |
905 ((u64) mac->san_addr[4] << 8) |
906 ((u64) mac->san_addr[5]);
907 rc = 0;
908 }
909 return rc;
910}
Neerav Parikhea818752012-01-04 20:23:40 +0000911
912/**
913 * ixgbe_fcoe_get_hbainfo - get FCoE HBA information
914 * @netdev : ixgbe adapter
915 * @info : HBA information
916 *
917 * Returns ixgbe HBA information
918 *
919 * Returns : 0 on success
920 */
921int ixgbe_fcoe_get_hbainfo(struct net_device *netdev,
922 struct netdev_fcoe_hbainfo *info)
923{
924 struct ixgbe_adapter *adapter = netdev_priv(netdev);
925 struct ixgbe_hw *hw = &adapter->hw;
926 int i, pos;
927 u8 buf[8];
928
929 if (!info)
930 return -EINVAL;
931
932 /* Don't return information on unsupported devices */
933 if (hw->mac.type != ixgbe_mac_82599EB &&
934 hw->mac.type != ixgbe_mac_X540)
935 return -EINVAL;
936
937 /* Manufacturer */
938 snprintf(info->manufacturer, sizeof(info->manufacturer),
939 "Intel Corporation");
940
941 /* Serial Number */
942
943 /* Get the PCI-e Device Serial Number Capability */
944 pos = pci_find_ext_capability(adapter->pdev, PCI_EXT_CAP_ID_DSN);
945 if (pos) {
946 pos += 4;
947 for (i = 0; i < 8; i++)
948 pci_read_config_byte(adapter->pdev, pos + i, &buf[i]);
949
950 snprintf(info->serial_number, sizeof(info->serial_number),
951 "%02X%02X%02X%02X%02X%02X%02X%02X",
952 buf[7], buf[6], buf[5], buf[4],
953 buf[3], buf[2], buf[1], buf[0]);
954 } else
955 snprintf(info->serial_number, sizeof(info->serial_number),
956 "Unknown");
957
958 /* Hardware Version */
959 snprintf(info->hardware_version,
960 sizeof(info->hardware_version),
961 "Rev %d", hw->revision_id);
962 /* Driver Name/Version */
963 snprintf(info->driver_version,
964 sizeof(info->driver_version),
965 "%s v%s",
966 ixgbe_driver_name,
967 ixgbe_driver_version);
968 /* Firmware Version */
969 snprintf(info->firmware_version,
970 sizeof(info->firmware_version),
971 "0x%08x",
972 (adapter->eeprom_verh << 16) |
973 adapter->eeprom_verl);
974
975 /* Model */
976 if (hw->mac.type == ixgbe_mac_82599EB) {
977 snprintf(info->model,
978 sizeof(info->model),
979 "Intel 82599");
980 } else {
981 snprintf(info->model,
982 sizeof(info->model),
983 "Intel X540");
984 }
985
986 /* Model Description */
987 snprintf(info->model_description,
988 sizeof(info->model_description),
989 "%s",
990 ixgbe_default_device_descr);
991
992 return 0;
993}
Alexander Duyck800bd602012-06-02 00:11:02 +0000994
995/**
996 * ixgbe_fcoe_get_tc - get the current TC that fcoe is mapped to
997 * @adapter - pointer to the device adapter structure
998 *
999 * Return : TC that FCoE is mapped to
1000 */
1001u8 ixgbe_fcoe_get_tc(struct ixgbe_adapter *adapter)
1002{
1003#ifdef CONFIG_IXGBE_DCB
1004 return netdev_get_prio_tc_map(adapter->netdev, adapter->fcoe.up);
1005#else
1006 return 0;
1007#endif
1008}