blob: 25a3dfef33e8946bfb4c8d511560a1df660f0d4d [file] [log] [blame]
Yi Zoud3a2ae62009-05-13 13:10:21 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmore434c5e32013-01-08 05:02:28 +00004 Copyright(c) 1999 - 2013 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:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Yi Zoud3a2ae62009-05-13 13:10:21 +000024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Yi Zoud3a2ae62009-05-13 13:10:21 +000029#include "ixgbe.h"
30#include <linux/if_ether.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/gfp.h>
Yi Zoube5d5072010-05-18 16:00:05 +000032#include <linux/if_vlan.h>
Yi Zoud3a2ae62009-05-13 13:10:21 +000033#include <scsi/scsi_cmnd.h>
34#include <scsi/scsi_device.h>
35#include <scsi/fc/fc_fs.h>
36#include <scsi/fc/fc_fcoe.h>
37#include <scsi/libfc.h>
38#include <scsi/libfcoe.h>
39
40/**
Yi Zoud0ed8932009-05-13 13:11:29 +000041 * ixgbe_fcoe_clear_ddp - clear the given ddp context
Ben Hutchings49ce9c22012-07-10 10:56:00 +000042 * @ddp: ptr to the ixgbe_fcoe_ddp
Yi Zoud0ed8932009-05-13 13:11:29 +000043 *
44 * Returns : none
45 *
46 */
47static inline void ixgbe_fcoe_clear_ddp(struct ixgbe_fcoe_ddp *ddp)
48{
49 ddp->len = 0;
Yi Zou8ca371e2010-11-16 19:27:13 -080050 ddp->err = 1;
Yi Zoud0ed8932009-05-13 13:11:29 +000051 ddp->udl = NULL;
52 ddp->udp = 0UL;
53 ddp->sgl = NULL;
54 ddp->sgc = 0;
55}
56
57/**
58 * ixgbe_fcoe_ddp_put - free the ddp context for a given xid
59 * @netdev: the corresponding net_device
60 * @xid: the xid that corresponding ddp will be freed
61 *
62 * This is the implementation of net_device_ops.ndo_fcoe_ddp_done
63 * and it is expected to be called by ULD, i.e., FCP layer of libfc
64 * to release the corresponding ddp context when the I/O is done.
65 *
66 * Returns : data length already ddp-ed in bytes
67 */
68int ixgbe_fcoe_ddp_put(struct net_device *netdev, u16 xid)
69{
70 int len = 0;
71 struct ixgbe_fcoe *fcoe;
72 struct ixgbe_adapter *adapter;
73 struct ixgbe_fcoe_ddp *ddp;
Yi Zou9b55bb02010-11-16 19:27:14 -080074 u32 fcbuff;
Yi Zoud0ed8932009-05-13 13:11:29 +000075
76 if (!netdev)
77 goto out_ddp_put;
78
79 if (xid >= IXGBE_FCOE_DDP_MAX)
80 goto out_ddp_put;
81
82 adapter = netdev_priv(netdev);
83 fcoe = &adapter->fcoe;
84 ddp = &fcoe->ddp[xid];
85 if (!ddp->udl)
86 goto out_ddp_put;
87
88 len = ddp->len;
89 /* if there an error, force to invalidate ddp context */
90 if (ddp->err) {
91 spin_lock_bh(&fcoe->lock);
92 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCFLT, 0);
93 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCFLTRW,
94 (xid | IXGBE_FCFLTRW_WE));
95 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCBUFF, 0);
96 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCDMARW,
97 (xid | IXGBE_FCDMARW_WE));
Yi Zou9b55bb02010-11-16 19:27:14 -080098
99 /* guaranteed to be invalidated after 100us */
100 IXGBE_WRITE_REG(&adapter->hw, IXGBE_FCDMARW,
101 (xid | IXGBE_FCDMARW_RE));
102 fcbuff = IXGBE_READ_REG(&adapter->hw, IXGBE_FCBUFF);
Yi Zoud0ed8932009-05-13 13:11:29 +0000103 spin_unlock_bh(&fcoe->lock);
Yi Zou9b55bb02010-11-16 19:27:14 -0800104 if (fcbuff & IXGBE_FCBUFF_VALID)
105 udelay(100);
Yi Zoud0ed8932009-05-13 13:11:29 +0000106 }
107 if (ddp->sgl)
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000108 dma_unmap_sg(&adapter->pdev->dev, ddp->sgl, ddp->sgc,
Yi Zoud0ed8932009-05-13 13:11:29 +0000109 DMA_FROM_DEVICE);
Vasu Devdadbe852011-05-11 05:41:46 +0000110 if (ddp->pool) {
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000111 dma_pool_free(ddp->pool, ddp->udl, ddp->udp);
Vasu Devdadbe852011-05-11 05:41:46 +0000112 ddp->pool = NULL;
113 }
114
Yi Zoud0ed8932009-05-13 13:11:29 +0000115 ixgbe_fcoe_clear_ddp(ddp);
116
117out_ddp_put:
118 return len;
119}
120
121/**
Yi Zou68a683c2011-02-01 07:22:16 +0000122 * ixgbe_fcoe_ddp_setup - called to set up ddp context
Yi Zoud0ed8932009-05-13 13:11:29 +0000123 * @netdev: the corresponding net_device
124 * @xid: the exchange id requesting ddp
125 * @sgl: the scatter-gather list for this request
126 * @sgc: the number of scatter-gather items
127 *
Yi Zoud0ed8932009-05-13 13:11:29 +0000128 * Returns : 1 for success and 0 for no ddp
129 */
Yi Zou68a683c2011-02-01 07:22:16 +0000130static int ixgbe_fcoe_ddp_setup(struct net_device *netdev, u16 xid,
131 struct scatterlist *sgl, unsigned int sgc,
132 int target_mode)
Yi Zoud0ed8932009-05-13 13:11:29 +0000133{
134 struct ixgbe_adapter *adapter;
135 struct ixgbe_hw *hw;
136 struct ixgbe_fcoe *fcoe;
137 struct ixgbe_fcoe_ddp *ddp;
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000138 struct ixgbe_fcoe_ddp_pool *ddp_pool;
Yi Zoud0ed8932009-05-13 13:11:29 +0000139 struct scatterlist *sg;
140 unsigned int i, j, dmacount;
141 unsigned int len;
Amir Hananiac6006362011-02-15 09:11:31 +0000142 static const unsigned int bufflen = IXGBE_FCBUFF_MIN;
Yi Zoud0ed8932009-05-13 13:11:29 +0000143 unsigned int firstoff = 0;
144 unsigned int lastsize;
145 unsigned int thisoff = 0;
146 unsigned int thislen = 0;
Yi Zou68a683c2011-02-01 07:22:16 +0000147 u32 fcbuff, fcdmarw, fcfltrw, fcrxctl;
Don Skidmorefbbea322011-01-26 06:04:17 +0000148 dma_addr_t addr = 0;
Yi Zoud0ed8932009-05-13 13:11:29 +0000149
150 if (!netdev || !sgl)
151 return 0;
152
153 adapter = netdev_priv(netdev);
154 if (xid >= IXGBE_FCOE_DDP_MAX) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000155 e_warn(drv, "xid=0x%x out-of-range\n", xid);
Yi Zoud0ed8932009-05-13 13:11:29 +0000156 return 0;
157 }
158
Yi Zoua41c0592010-11-16 19:27:13 -0800159 /* no DDP if we are already down or resetting */
160 if (test_bit(__IXGBE_DOWN, &adapter->state) ||
161 test_bit(__IXGBE_RESETTING, &adapter->state))
162 return 0;
163
Yi Zoud0ed8932009-05-13 13:11:29 +0000164 fcoe = &adapter->fcoe;
Yi Zoud0ed8932009-05-13 13:11:29 +0000165 ddp = &fcoe->ddp[xid];
166 if (ddp->sgl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000167 e_err(drv, "xid 0x%x w/ non-null sgl=%p nents=%d\n",
168 xid, ddp->sgl, ddp->sgc);
Yi Zoud0ed8932009-05-13 13:11:29 +0000169 return 0;
170 }
171 ixgbe_fcoe_clear_ddp(ddp);
172
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000173
174 if (!fcoe->ddp_pool) {
175 e_warn(drv, "No ddp_pool resources allocated\n");
176 return 0;
177 }
178
179 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, get_cpu());
180 if (!ddp_pool->pool) {
181 e_warn(drv, "xid=0x%x no ddp pool for fcoe\n", xid);
182 goto out_noddp;
183 }
184
Yi Zoud0ed8932009-05-13 13:11:29 +0000185 /* setup dma from scsi command sgl */
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000186 dmacount = dma_map_sg(&adapter->pdev->dev, sgl, sgc, DMA_FROM_DEVICE);
Yi Zoud0ed8932009-05-13 13:11:29 +0000187 if (dmacount == 0) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000188 e_err(drv, "xid 0x%x DMA map error\n", xid);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000189 goto out_noddp;
Yi Zoud0ed8932009-05-13 13:11:29 +0000190 }
191
Vasu Devdadbe852011-05-11 05:41:46 +0000192 /* alloc the udl from per cpu ddp pool */
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000193 ddp->udl = dma_pool_alloc(ddp_pool->pool, GFP_ATOMIC, &ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000194 if (!ddp->udl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000195 e_err(drv, "failed allocated ddp context\n");
Yi Zoud0ed8932009-05-13 13:11:29 +0000196 goto out_noddp_unmap;
197 }
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000198 ddp->pool = ddp_pool->pool;
Yi Zoud0ed8932009-05-13 13:11:29 +0000199 ddp->sgl = sgl;
200 ddp->sgc = sgc;
201
202 j = 0;
203 for_each_sg(sgl, sg, dmacount, i) {
204 addr = sg_dma_address(sg);
205 len = sg_dma_len(sg);
206 while (len) {
Robert Lovea7551b72010-03-24 10:02:04 +0000207 /* max number of buffers allowed in one DDP context */
208 if (j >= IXGBE_BUFFCNT_MAX) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000209 ddp_pool->noddp++;
Robert Lovea7551b72010-03-24 10:02:04 +0000210 goto out_noddp_free;
211 }
212
Yi Zoud0ed8932009-05-13 13:11:29 +0000213 /* get the offset of length of current buffer */
214 thisoff = addr & ((dma_addr_t)bufflen - 1);
215 thislen = min((bufflen - thisoff), len);
216 /*
217 * all but the 1st buffer (j == 0)
218 * must be aligned on bufflen
219 */
220 if ((j != 0) && (thisoff))
221 goto out_noddp_free;
222 /*
223 * all but the last buffer
224 * ((i == (dmacount - 1)) && (thislen == len))
225 * must end at bufflen
226 */
227 if (((i != (dmacount - 1)) || (thislen != len))
228 && ((thislen + thisoff) != bufflen))
229 goto out_noddp_free;
230
231 ddp->udl[j] = (u64)(addr - thisoff);
232 /* only the first buffer may have none-zero offset */
233 if (j == 0)
234 firstoff = thisoff;
235 len -= thislen;
236 addr += thislen;
237 j++;
Yi Zoud0ed8932009-05-13 13:11:29 +0000238 }
239 }
240 /* only the last buffer may have non-full bufflen */
241 lastsize = thisoff + thislen;
242
Amir Hananiac6006362011-02-15 09:11:31 +0000243 /*
244 * lastsize can not be buffer len.
245 * If it is then adding another buffer with lastsize = 1.
246 */
247 if (lastsize == bufflen) {
248 if (j >= IXGBE_BUFFCNT_MAX) {
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000249 ddp_pool->noddp_ext_buff++;
Amir Hananiac6006362011-02-15 09:11:31 +0000250 goto out_noddp_free;
251 }
252
253 ddp->udl[j] = (u64)(fcoe->extra_ddp_buffer_dma);
254 j++;
255 lastsize = 1;
256 }
Vasu Devdadbe852011-05-11 05:41:46 +0000257 put_cpu();
Amir Hananiac6006362011-02-15 09:11:31 +0000258
Yi Zoud0ed8932009-05-13 13:11:29 +0000259 fcbuff = (IXGBE_FCBUFF_4KB << IXGBE_FCBUFF_BUFFSIZE_SHIFT);
Robert Lovea7551b72010-03-24 10:02:04 +0000260 fcbuff |= ((j & 0xff) << IXGBE_FCBUFF_BUFFCNT_SHIFT);
Yi Zoud0ed8932009-05-13 13:11:29 +0000261 fcbuff |= (firstoff << IXGBE_FCBUFF_OFFSET_SHIFT);
Yi Zou68a683c2011-02-01 07:22:16 +0000262 /* Set WRCONTX bit to allow DDP for target */
263 if (target_mode)
264 fcbuff |= (IXGBE_FCBUFF_WRCONTX);
Yi Zoud0ed8932009-05-13 13:11:29 +0000265 fcbuff |= (IXGBE_FCBUFF_VALID);
266
267 fcdmarw = xid;
268 fcdmarw |= IXGBE_FCDMARW_WE;
269 fcdmarw |= (lastsize << IXGBE_FCDMARW_LASTSIZE_SHIFT);
270
271 fcfltrw = xid;
272 fcfltrw |= IXGBE_FCFLTRW_WE;
273
274 /* program DMA context */
275 hw = &adapter->hw;
276 spin_lock_bh(&fcoe->lock);
Yi Zou68a683c2011-02-01 07:22:16 +0000277
278 /* turn on last frame indication for target mode as FCP_RSPtarget is
279 * supposed to send FCP_RSP when it is done. */
280 if (target_mode && !test_bit(__IXGBE_FCOE_TARGET, &fcoe->mode)) {
281 set_bit(__IXGBE_FCOE_TARGET, &fcoe->mode);
282 fcrxctl = IXGBE_READ_REG(hw, IXGBE_FCRXCTRL);
283 fcrxctl |= IXGBE_FCRXCTRL_LASTSEQH;
284 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL, fcrxctl);
285 }
286
Andrew Morton8e20ce92009-06-18 16:49:17 -0700287 IXGBE_WRITE_REG(hw, IXGBE_FCPTRL, ddp->udp & DMA_BIT_MASK(32));
Yi Zoud0ed8932009-05-13 13:11:29 +0000288 IXGBE_WRITE_REG(hw, IXGBE_FCPTRH, (u64)ddp->udp >> 32);
289 IXGBE_WRITE_REG(hw, IXGBE_FCBUFF, fcbuff);
290 IXGBE_WRITE_REG(hw, IXGBE_FCDMARW, fcdmarw);
291 /* program filter context */
292 IXGBE_WRITE_REG(hw, IXGBE_FCPARAM, 0);
293 IXGBE_WRITE_REG(hw, IXGBE_FCFLT, IXGBE_FCFLT_VALID);
294 IXGBE_WRITE_REG(hw, IXGBE_FCFLTRW, fcfltrw);
Yi Zou68a683c2011-02-01 07:22:16 +0000295
Yi Zoud0ed8932009-05-13 13:11:29 +0000296 spin_unlock_bh(&fcoe->lock);
297
298 return 1;
299
300out_noddp_free:
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000301 dma_pool_free(ddp->pool, ddp->udl, ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000302 ixgbe_fcoe_clear_ddp(ddp);
303
304out_noddp_unmap:
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000305 dma_unmap_sg(&adapter->pdev->dev, sgl, sgc, DMA_FROM_DEVICE);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000306out_noddp:
Vasu Devdadbe852011-05-11 05:41:46 +0000307 put_cpu();
Yi Zoud0ed8932009-05-13 13:11:29 +0000308 return 0;
309}
310
311/**
Yi Zou68a683c2011-02-01 07:22:16 +0000312 * ixgbe_fcoe_ddp_get - called to set up ddp context in initiator mode
313 * @netdev: the corresponding net_device
314 * @xid: the exchange id requesting ddp
315 * @sgl: the scatter-gather list for this request
316 * @sgc: the number of scatter-gather items
317 *
318 * This is the implementation of net_device_ops.ndo_fcoe_ddp_setup
319 * and is expected to be called from ULD, e.g., FCP layer of libfc
320 * to set up ddp for the corresponding xid of the given sglist for
321 * the corresponding I/O.
322 *
323 * Returns : 1 for success and 0 for no ddp
324 */
325int ixgbe_fcoe_ddp_get(struct net_device *netdev, u16 xid,
326 struct scatterlist *sgl, unsigned int sgc)
327{
328 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 0);
329}
330
331/**
332 * ixgbe_fcoe_ddp_target - called to set up ddp context in target mode
333 * @netdev: the corresponding net_device
334 * @xid: the exchange id requesting ddp
335 * @sgl: the scatter-gather list for this request
336 * @sgc: the number of scatter-gather items
337 *
338 * This is the implementation of net_device_ops.ndo_fcoe_ddp_target
339 * and is expected to be called from ULD, e.g., FCP layer of libfc
340 * to set up ddp for the corresponding xid of the given sglist for
341 * the corresponding I/O. The DDP in target mode is a write I/O request
342 * from the initiator.
343 *
344 * Returns : 1 for success and 0 for no ddp
345 */
346int ixgbe_fcoe_ddp_target(struct net_device *netdev, u16 xid,
347 struct scatterlist *sgl, unsigned int sgc)
348{
349 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 1);
350}
351
352/**
Yi Zoud0ed8932009-05-13 13:11:29 +0000353 * ixgbe_fcoe_ddp - check ddp status and mark it done
354 * @adapter: ixgbe adapter
355 * @rx_desc: advanced rx descriptor
356 * @skb: the skb holding the received data
357 *
358 * This checks ddp status.
359 *
Yi Zou3d8fd382009-06-08 14:38:44 +0000360 * Returns : < 0 indicates an error or not a FCiE ddp, 0 indicates
361 * not passing the skb to ULD, > 0 indicates is the length of data
362 * being ddped.
Yi Zoud0ed8932009-05-13 13:11:29 +0000363 */
364int ixgbe_fcoe_ddp(struct ixgbe_adapter *adapter,
365 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000366 struct sk_buff *skb)
Yi Zoud0ed8932009-05-13 13:11:29 +0000367{
Yi Zoud0ed8932009-05-13 13:11:29 +0000368 int rc = -EINVAL;
369 struct ixgbe_fcoe *fcoe;
370 struct ixgbe_fcoe_ddp *ddp;
371 struct fc_frame_header *fh;
Yi Zou68a683c2011-02-01 07:22:16 +0000372 struct fcoe_crc_eof *crc;
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000373 __le32 fcerr = ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_FCERR);
374 __le32 ddp_err;
375 u32 fctl;
376 u16 xid;
Yi Zoud0ed8932009-05-13 13:11:29 +0000377
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000378 if (fcerr == cpu_to_le32(IXGBE_FCERR_BADCRC))
379 skb->ip_summed = CHECKSUM_NONE;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700380 else
381 skb->ip_summed = CHECKSUM_UNNECESSARY;
Yi Zoud0ed8932009-05-13 13:11:29 +0000382
Yi Zoube5d5072010-05-18 16:00:05 +0000383 if (eth_hdr(skb)->h_proto == htons(ETH_P_8021Q))
384 fh = (struct fc_frame_header *)(skb->data +
385 sizeof(struct vlan_hdr) + sizeof(struct fcoe_hdr));
386 else
387 fh = (struct fc_frame_header *)(skb->data +
388 sizeof(struct fcoe_hdr));
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000389
Yi Zoud4ab8812009-09-03 14:56:31 +0000390 fctl = ntoh24(fh->fh_f_ctl);
391 if (fctl & FC_FC_EX_CTX)
392 xid = be16_to_cpu(fh->fh_ox_id);
393 else
394 xid = be16_to_cpu(fh->fh_rx_id);
395
Yi Zoud0ed8932009-05-13 13:11:29 +0000396 if (xid >= IXGBE_FCOE_DDP_MAX)
397 goto ddp_out;
398
399 fcoe = &adapter->fcoe;
400 ddp = &fcoe->ddp[xid];
401 if (!ddp->udl)
402 goto ddp_out;
403
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000404 ddp_err = ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_FCEOFE |
405 IXGBE_RXDADV_ERR_FCERR);
406 if (ddp_err)
Yi Zoud0ed8932009-05-13 13:11:29 +0000407 goto ddp_out;
408
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000409 switch (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_STAT_FCSTAT)) {
410 /* return 0 to bypass going to ULD for DDPed data */
Joe Perchesa1108ff2014-03-13 05:19:25 +0000411 case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_DDP):
Yi Zoud0ed8932009-05-13 13:11:29 +0000412 /* update length of DDPed data */
413 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000414 rc = 0;
415 break;
416 /* unmap the sg list when FCPRSP is received */
Joe Perchesa1108ff2014-03-13 05:19:25 +0000417 case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_FCPRSP):
Alexander Duyck1bf91cd2012-05-05 05:32:32 +0000418 dma_unmap_sg(&adapter->pdev->dev, ddp->sgl,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000419 ddp->sgc, DMA_FROM_DEVICE);
420 ddp->err = ddp_err;
421 ddp->sgl = NULL;
422 ddp->sgc = 0;
423 /* fall through */
424 /* if DDP length is present pass it through to ULD */
Joe Perchesa1108ff2014-03-13 05:19:25 +0000425 case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NODDP):
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000426 /* update length of DDPed data */
427 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
428 if (ddp->len)
Yi Zou3d8fd382009-06-08 14:38:44 +0000429 rc = ddp->len;
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000430 break;
431 /* no match will return as an error */
Joe Perchesa1108ff2014-03-13 05:19:25 +0000432 case cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NOMTCH):
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000433 default:
434 break;
Yi Zoud0ed8932009-05-13 13:11:29 +0000435 }
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000436
Yi Zou68a683c2011-02-01 07:22:16 +0000437 /* In target mode, check the last data frame of the sequence.
438 * For DDP in target mode, data is already DDPed but the header
439 * indication of the last data frame ould allow is to tell if we
440 * got all the data and the ULP can send FCP_RSP back, as this is
441 * not a full fcoe frame, we fill the trailer here so it won't be
442 * dropped by the ULP stack.
443 */
444 if ((fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA) &&
445 (fctl & FC_FC_END_SEQ)) {
Yi Zou441e1712012-04-20 05:48:08 +0000446 skb_linearize(skb);
Yi Zou68a683c2011-02-01 07:22:16 +0000447 crc = (struct fcoe_crc_eof *)skb_put(skb, sizeof(*crc));
448 crc->fcoe_eof = FC_EOF_T;
449 }
Yi Zoud0ed8932009-05-13 13:11:29 +0000450ddp_out:
451 return rc;
452}
453
454/**
Yi Zoubc079222009-05-13 13:10:44 +0000455 * ixgbe_fso - ixgbe FCoE Sequence Offload (FSO)
Yi Zoubc079222009-05-13 13:10:44 +0000456 * @tx_ring: tx desc ring
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000457 * @first: first tx_buffer structure containing skb, tx_flags, and protocol
Yi Zoubc079222009-05-13 13:10:44 +0000458 * @hdr_len: hdr_len to be returned
459 *
460 * This sets up large send offload for FCoE
461 *
Alexander Duyck244e27a2012-02-08 07:51:11 +0000462 * Returns : 0 indicates success, < 0 for error
Yi Zoubc079222009-05-13 13:10:44 +0000463 */
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000464int ixgbe_fso(struct ixgbe_ring *tx_ring,
465 struct ixgbe_tx_buffer *first,
Alexander Duyck244e27a2012-02-08 07:51:11 +0000466 u8 *hdr_len)
Yi Zoubc079222009-05-13 13:10:44 +0000467{
Alexander Duyckfd0db0e2012-02-08 07:50:56 +0000468 struct sk_buff *skb = first->skb;
Yi Zoubc079222009-05-13 13:10:44 +0000469 struct fc_frame_header *fh;
Alexander Duyck897ab152011-05-27 05:31:47 +0000470 u32 vlan_macip_lens;
471 u32 fcoe_sof_eof = 0;
472 u32 mss_l4len_idx;
473 u8 sof, eof;
Yi Zoubc079222009-05-13 13:10:44 +0000474
475 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_type != SKB_GSO_FCOE)) {
Alexander Duyck897ab152011-05-27 05:31:47 +0000476 dev_err(tx_ring->dev, "Wrong gso type %d:expecting SKB_GSO_FCOE\n",
477 skb_shinfo(skb)->gso_type);
Yi Zoubc079222009-05-13 13:10:44 +0000478 return -EINVAL;
479 }
480
481 /* resets the header to point fcoe/fc */
482 skb_set_network_header(skb, skb->mac_len);
483 skb_set_transport_header(skb, skb->mac_len +
484 sizeof(struct fcoe_hdr));
485
486 /* sets up SOF and ORIS */
Yi Zoubc079222009-05-13 13:10:44 +0000487 sof = ((struct fcoe_hdr *)skb_network_header(skb))->fcoe_sof;
488 switch (sof) {
489 case FC_SOF_I2:
Alexander Duyck897ab152011-05-27 05:31:47 +0000490 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000491 break;
492 case FC_SOF_I3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000493 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF |
494 IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000495 break;
496 case FC_SOF_N2:
497 break;
498 case FC_SOF_N3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000499 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF;
Yi Zoubc079222009-05-13 13:10:44 +0000500 break;
501 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000502 dev_warn(tx_ring->dev, "unknown sof = 0x%x\n", sof);
Yi Zoubc079222009-05-13 13:10:44 +0000503 return -EINVAL;
504 }
505
506 /* the first byte of the last dword is EOF */
507 skb_copy_bits(skb, skb->len - 4, &eof, 1);
508 /* sets up EOF and ORIE */
509 switch (eof) {
510 case FC_EOF_N:
511 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N;
512 break;
513 case FC_EOF_T:
514 /* lso needs ORIE */
Alexander Duyck897ab152011-05-27 05:31:47 +0000515 if (skb_is_gso(skb))
516 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N |
517 IXGBE_ADVTXD_FCOEF_ORIE;
518 else
Yi Zoubc079222009-05-13 13:10:44 +0000519 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_T;
Yi Zoubc079222009-05-13 13:10:44 +0000520 break;
521 case FC_EOF_NI:
522 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_NI;
523 break;
524 case FC_EOF_A:
525 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_A;
526 break;
527 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000528 dev_warn(tx_ring->dev, "unknown eof = 0x%x\n", eof);
Yi Zoubc079222009-05-13 13:10:44 +0000529 return -EINVAL;
530 }
531
532 /* sets up PARINC indicating data offset */
533 fh = (struct fc_frame_header *)skb_transport_header(skb);
534 if (fh->fh_f_ctl[2] & FC_FC_REL_OFF)
535 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_PARINC;
536
Alexander Duyck897ab152011-05-27 05:31:47 +0000537 /* include trailer in headlen as it is replicated per frame */
Yi Zoubc079222009-05-13 13:10:44 +0000538 *hdr_len = sizeof(struct fcoe_crc_eof);
Alexander Duyck897ab152011-05-27 05:31:47 +0000539
540 /* hdr_len includes fc_hdr if FCoE LSO is enabled */
Alexander Duyck091a6242012-02-08 07:51:01 +0000541 if (skb_is_gso(skb)) {
542 *hdr_len += skb_transport_offset(skb) +
543 sizeof(struct fc_frame_header);
544 /* update gso_segs and bytecount */
545 first->gso_segs = DIV_ROUND_UP(skb->len - *hdr_len,
546 skb_shinfo(skb)->gso_size);
547 first->bytecount += (first->gso_segs - 1) * *hdr_len;
Alexander Duyck472148c2012-11-07 02:34:28 +0000548 first->tx_flags |= IXGBE_TX_FLAGS_TSO;
Alexander Duyck091a6242012-02-08 07:51:01 +0000549 }
Yi Zoubc079222009-05-13 13:10:44 +0000550
Alexander Duyck244e27a2012-02-08 07:51:11 +0000551 /* set flag indicating FCOE to ixgbe_tx_map call */
Alexander Duyck472148c2012-11-07 02:34:28 +0000552 first->tx_flags |= IXGBE_TX_FLAGS_FCOE | IXGBE_TX_FLAGS_CC;
Alexander Duyck244e27a2012-02-08 07:51:11 +0000553
Alexander Duyckc44f5f52012-10-30 06:01:45 +0000554 /* mss_l4len_id: use 0 for FSO as TSO, no need for L4LEN */
Alexander Duyck897ab152011-05-27 05:31:47 +0000555 mss_l4len_idx = skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
Alexander Duyck897ab152011-05-27 05:31:47 +0000556
557 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
558 vlan_macip_lens = skb_transport_offset(skb) +
559 sizeof(struct fc_frame_header);
560 vlan_macip_lens |= (skb_transport_offset(skb) - 4)
561 << IXGBE_ADVTXD_MACLEN_SHIFT;
Alexander Duyck244e27a2012-02-08 07:51:11 +0000562 vlan_macip_lens |= first->tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Yi Zoubc079222009-05-13 13:10:44 +0000563
564 /* write context desc */
Alexander Duyck897ab152011-05-27 05:31:47 +0000565 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, fcoe_sof_eof,
566 IXGBE_ADVTXT_TUCMD_FCOE, mss_l4len_idx);
Yi Zoubc079222009-05-13 13:10:44 +0000567
Alexander Duyck244e27a2012-02-08 07:51:11 +0000568 return 0;
Yi Zoubc079222009-05-13 13:10:44 +0000569}
570
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000571static void ixgbe_fcoe_dma_pool_free(struct ixgbe_fcoe *fcoe, unsigned int cpu)
572{
573 struct ixgbe_fcoe_ddp_pool *ddp_pool;
574
575 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
576 if (ddp_pool->pool)
577 dma_pool_destroy(ddp_pool->pool);
578 ddp_pool->pool = NULL;
579}
580
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000581static int ixgbe_fcoe_dma_pool_alloc(struct ixgbe_fcoe *fcoe,
582 struct device *dev,
583 unsigned int cpu)
584{
585 struct ixgbe_fcoe_ddp_pool *ddp_pool;
586 struct dma_pool *pool;
587 char pool_name[32];
588
Masanari Iida0e7bcee2014-01-15 01:14:42 +0900589 snprintf(pool_name, 32, "ixgbe_fcoe_ddp_%u", cpu);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000590
591 pool = dma_pool_create(pool_name, dev, IXGBE_FCPTR_MAX,
592 IXGBE_FCPTR_ALIGN, PAGE_SIZE);
593 if (!pool)
594 return -ENOMEM;
595
596 ddp_pool = per_cpu_ptr(fcoe->ddp_pool, cpu);
597 ddp_pool->pool = pool;
598 ddp_pool->noddp = 0;
599 ddp_pool->noddp_ext_buff = 0;
600
601 return 0;
Vasu Devdadbe852011-05-11 05:41:46 +0000602}
603
Yi Zoubc079222009-05-13 13:10:44 +0000604/**
Yi Zoud3a2ae62009-05-13 13:10:21 +0000605 * ixgbe_configure_fcoe - configures registers for fcoe at start
606 * @adapter: ptr to ixgbe adapter
607 *
608 * This sets up FCoE related registers
609 *
610 * Returns : none
611 */
612void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter)
613{
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000614 struct ixgbe_ring_feature *fcoe = &adapter->ring_feature[RING_F_FCOE];
Yi Zoud3a2ae62009-05-13 13:10:21 +0000615 struct ixgbe_hw *hw = &adapter->hw;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000616 int i, fcoe_q, fcoe_i;
Alexander Duyck81fadde2012-05-05 05:32:37 +0000617 u32 etqf;
Yi Zoud3a2ae62009-05-13 13:10:21 +0000618
Alexander Duycka58915c2012-05-25 06:38:18 +0000619 /* Minimal functionality for FCoE requires at least CRC offloads */
620 if (!(adapter->netdev->features & NETIF_F_FCOE_CRC))
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000621 return;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000622
Alexander Duycka58915c2012-05-25 06:38:18 +0000623 /* Enable L2 EtherType filter for FCoE, needed for FCoE CRC and DDP */
Alexander Duyck81fadde2012-05-05 05:32:37 +0000624 etqf = ETH_P_FCOE | IXGBE_ETQF_FCOE | IXGBE_ETQF_FILTER_EN;
625 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
626 etqf |= IXGBE_ETQF_POOL_ENABLE;
627 etqf |= VMDQ_P(0) << IXGBE_ETQF_POOL_SHIFT;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000628 }
Alexander Duyck81fadde2012-05-05 05:32:37 +0000629 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FCOE), etqf);
630 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FCOE), 0);
631
Alexander Duycka58915c2012-05-25 06:38:18 +0000632 /* leave registers un-configured if FCoE is disabled */
633 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
634 return;
635
Alexander Duyck81fadde2012-05-05 05:32:37 +0000636 /* Use one or more Rx queues for FCoE by redirection table */
637 for (i = 0; i < IXGBE_FCRETA_SIZE; i++) {
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000638 fcoe_i = fcoe->offset + (i % fcoe->indices);
Alexander Duyck81fadde2012-05-05 05:32:37 +0000639 fcoe_i &= IXGBE_FCRETA_ENTRY_MASK;
640 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
641 IXGBE_WRITE_REG(hw, IXGBE_FCRETA(i), fcoe_q);
642 }
643 IXGBE_WRITE_REG(hw, IXGBE_FCRECTL, IXGBE_FCRECTL_ENA);
644
645 /* Enable L2 EtherType filter for FIP */
646 etqf = ETH_P_FIP | IXGBE_ETQF_FILTER_EN;
647 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED) {
648 etqf |= IXGBE_ETQF_POOL_ENABLE;
649 etqf |= VMDQ_P(0) << IXGBE_ETQF_POOL_SHIFT;
650 }
651 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FIP), etqf);
652
653 /* Send FIP frames to the first FCoE queue */
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000654 fcoe_q = adapter->rx_ring[fcoe->offset]->reg_idx;
Chris Leechaf063932010-03-24 12:45:21 +0000655 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FIP),
656 IXGBE_ETQS_QUEUE_EN |
657 (fcoe_q << IXGBE_ETQS_RX_QUEUE_SHIFT));
Yi Zou29ebf6f2009-05-17 12:34:14 +0000658
Alexander Duyck81fadde2012-05-05 05:32:37 +0000659 /* Configure FCoE Rx control */
660 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL,
661 IXGBE_FCRXCTRL_FCCRCBO |
Yi Zoud3a2ae62009-05-13 13:10:21 +0000662 (FC_FCOE_VER << IXGBE_FCRXCTRL_FCOEVER_SHIFT));
663}
Yi Zoud0ed8932009-05-13 13:11:29 +0000664
665/**
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000666 * ixgbe_free_fcoe_ddp_resources - release all fcoe ddp context resources
Yi Zoud0ed8932009-05-13 13:11:29 +0000667 * @adapter : ixgbe adapter
668 *
669 * Cleans up outstanding ddp context resources
670 *
671 * Returns : none
672 */
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000673void ixgbe_free_fcoe_ddp_resources(struct ixgbe_adapter *adapter)
Yi Zoud0ed8932009-05-13 13:11:29 +0000674{
Yi Zoud0ed8932009-05-13 13:11:29 +0000675 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000676 int cpu, i;
Yi Zoud0ed8932009-05-13 13:11:29 +0000677
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000678 /* do nothing if no DDP pools were allocated */
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000679 if (!fcoe->ddp_pool)
Vasu Devdadbe852011-05-11 05:41:46 +0000680 return;
681
682 for (i = 0; i < IXGBE_FCOE_DDP_MAX; i++)
683 ixgbe_fcoe_ddp_put(adapter->netdev, i);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000684
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000685 for_each_possible_cpu(cpu)
686 ixgbe_fcoe_dma_pool_free(fcoe, cpu);
687
Vasu Devdadbe852011-05-11 05:41:46 +0000688 dma_unmap_single(&adapter->pdev->dev,
689 fcoe->extra_ddp_buffer_dma,
690 IXGBE_FCBUFF_MIN,
691 DMA_FROM_DEVICE);
692 kfree(fcoe->extra_ddp_buffer);
Alexander Duyck5a1ee272012-05-05 17:14:28 +0000693
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000694 fcoe->extra_ddp_buffer = NULL;
695 fcoe->extra_ddp_buffer_dma = 0;
696}
697
698/**
699 * ixgbe_setup_fcoe_ddp_resources - setup all fcoe ddp context resources
700 * @adapter: ixgbe adapter
701 *
702 * Sets up ddp context resouces
703 *
704 * Returns : 0 indicates success or -EINVAL on failure
705 */
706int ixgbe_setup_fcoe_ddp_resources(struct ixgbe_adapter *adapter)
707{
708 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
709 struct device *dev = &adapter->pdev->dev;
710 void *buffer;
711 dma_addr_t dma;
712 unsigned int cpu;
713
714 /* do nothing if no DDP pools were allocated */
715 if (!fcoe->ddp_pool)
716 return 0;
717
718 /* Extra buffer to be shared by all DDPs for HW work around */
719 buffer = kmalloc(IXGBE_FCBUFF_MIN, GFP_ATOMIC);
Joe Perches14f8dc42013-02-07 11:46:27 +0000720 if (!buffer)
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000721 return -ENOMEM;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000722
723 dma = dma_map_single(dev, buffer, IXGBE_FCBUFF_MIN, DMA_FROM_DEVICE);
724 if (dma_mapping_error(dev, dma)) {
725 e_err(drv, "failed to map extra DDP buffer\n");
726 kfree(buffer);
727 return -ENOMEM;
728 }
729
730 fcoe->extra_ddp_buffer = buffer;
731 fcoe->extra_ddp_buffer_dma = dma;
732
733 /* allocate pci pool for each cpu */
734 for_each_possible_cpu(cpu) {
735 int err = ixgbe_fcoe_dma_pool_alloc(fcoe, dev, cpu);
736 if (!err)
737 continue;
738
739 e_err(drv, "failed to alloc DDP pool on cpu:%d\n", cpu);
740 ixgbe_free_fcoe_ddp_resources(adapter);
741 return -ENOMEM;
742 }
743
744 return 0;
745}
746
747static int ixgbe_fcoe_ddp_enable(struct ixgbe_adapter *adapter)
748{
749 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
750
751 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
752 return -EINVAL;
753
754 fcoe->ddp_pool = alloc_percpu(struct ixgbe_fcoe_ddp_pool);
755
756 if (!fcoe->ddp_pool) {
757 e_err(drv, "failed to allocate percpu DDP resources\n");
758 return -ENOMEM;
759 }
760
761 adapter->netdev->fcoe_ddp_xid = IXGBE_FCOE_DDP_MAX - 1;
762
763 return 0;
764}
765
766static void ixgbe_fcoe_ddp_disable(struct ixgbe_adapter *adapter)
767{
768 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
769
770 adapter->netdev->fcoe_ddp_xid = 0;
771
772 if (!fcoe->ddp_pool)
773 return;
774
775 free_percpu(fcoe->ddp_pool);
776 fcoe->ddp_pool = NULL;
Yi Zoud0ed8932009-05-13 13:11:29 +0000777}
Yi Zou8450ff82009-08-31 12:32:14 +0000778
779/**
780 * ixgbe_fcoe_enable - turn on FCoE offload feature
781 * @netdev: the corresponding netdev
782 *
783 * Turns on FCoE offload feature in 82599.
784 *
785 * Returns : 0 indicates success or -EINVAL on failure
786 */
787int ixgbe_fcoe_enable(struct net_device *netdev)
788{
Yi Zou8450ff82009-08-31 12:32:14 +0000789 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Yi Zou27ab7602010-10-20 23:00:30 +0000790 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8450ff82009-08-31 12:32:14 +0000791
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000792 atomic_inc(&fcoe->refcnt);
Yi Zou8450ff82009-08-31 12:32:14 +0000793
794 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000795 return -EINVAL;
Yi Zou8450ff82009-08-31 12:32:14 +0000796
797 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000798 return -EINVAL;
Yi Zou8450ff82009-08-31 12:32:14 +0000799
Emil Tantilov396e7992010-07-01 20:05:12 +0000800 e_info(drv, "Enabling FCoE offload features.\n");
Alexander Duyck872844d2012-08-15 02:10:43 +0000801
802 if (adapter->flags & IXGBE_FLAG_SRIOV_ENABLED)
803 e_warn(probe, "Enabling FCoE on PF will disable legacy VFs\n");
804
Yi Zou8450ff82009-08-31 12:32:14 +0000805 if (netif_running(netdev))
806 netdev->netdev_ops->ndo_stop(netdev);
807
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000808 /* Allocate per CPU memory to track DDP pools */
809 ixgbe_fcoe_ddp_enable(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000810
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000811 /* enable FCoE and notify stack */
Yi Zou8450ff82009-08-31 12:32:14 +0000812 adapter->flags |= IXGBE_FLAG_FCOE_ENABLED;
Alexander Duycka58915c2012-05-25 06:38:18 +0000813 netdev->features |= NETIF_F_FCOE_MTU;
Vasu Dev936332b2010-03-19 04:33:10 +0000814 netdev_features_change(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000815
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000816 /* release existing queues and reallocate them */
817 ixgbe_clear_interrupt_scheme(adapter);
818 ixgbe_init_interrupt_scheme(adapter);
819
Yi Zou8450ff82009-08-31 12:32:14 +0000820 if (netif_running(netdev))
821 netdev->netdev_ops->ndo_open(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000822
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000823 return 0;
Yi Zou8450ff82009-08-31 12:32:14 +0000824}
825
826/**
827 * ixgbe_fcoe_disable - turn off FCoE offload feature
828 * @netdev: the corresponding netdev
829 *
830 * Turns off FCoE offload feature in 82599.
831 *
832 * Returns : 0 indicates success or -EINVAL on failure
833 */
834int ixgbe_fcoe_disable(struct net_device *netdev)
835{
Yi Zou8450ff82009-08-31 12:32:14 +0000836 struct ixgbe_adapter *adapter = netdev_priv(netdev);
837
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000838 if (!atomic_dec_and_test(&adapter->fcoe.refcnt))
839 return -EINVAL;
Yi Zou8450ff82009-08-31 12:32:14 +0000840
841 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000842 return -EINVAL;
Yi Zou27ab7602010-10-20 23:00:30 +0000843
Emil Tantilov396e7992010-07-01 20:05:12 +0000844 e_info(drv, "Disabling FCoE offload features.\n");
Yi Zou8450ff82009-08-31 12:32:14 +0000845 if (netif_running(netdev))
846 netdev->netdev_ops->ndo_stop(netdev);
847
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000848 /* Free per CPU memory to track DDP pools */
849 ixgbe_fcoe_ddp_disable(adapter);
850
851 /* disable FCoE and notify stack */
Yi Zou8450ff82009-08-31 12:32:14 +0000852 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
Alexander Duycka58915c2012-05-25 06:38:18 +0000853 netdev->features &= ~NETIF_F_FCOE_MTU;
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000854
855 netdev_features_change(netdev);
856
857 /* release existing queues and reallocate them */
858 ixgbe_clear_interrupt_scheme(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000859 ixgbe_init_interrupt_scheme(adapter);
Vasu Dev936332b2010-03-19 04:33:10 +0000860
Yi Zou8450ff82009-08-31 12:32:14 +0000861 if (netif_running(netdev))
862 netdev->netdev_ops->ndo_open(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000863
Alexander Duyck7c8ae652012-05-05 05:32:47 +0000864 return 0;
Yi Zou8450ff82009-08-31 12:32:14 +0000865}
Yi Zou6ee16522009-08-31 12:34:28 +0000866
Yi Zou61a1fa12009-10-28 18:24:56 +0000867/**
868 * ixgbe_fcoe_get_wwn - get world wide name for the node or the port
869 * @netdev : ixgbe adapter
870 * @wwn : the world wide name
871 * @type: the type of world wide name
872 *
873 * Returns the node or port world wide name if both the prefix and the san
874 * mac address are valid, then the wwn is formed based on the NAA-2 for
875 * IEEE Extended name identifier (ref. to T10 FC-LS Spec., Sec. 15.3).
876 *
877 * Returns : 0 on success
878 */
879int ixgbe_fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type)
880{
881 int rc = -EINVAL;
882 u16 prefix = 0xffff;
883 struct ixgbe_adapter *adapter = netdev_priv(netdev);
884 struct ixgbe_mac_info *mac = &adapter->hw.mac;
885
886 switch (type) {
887 case NETDEV_FCOE_WWNN:
888 prefix = mac->wwnn_prefix;
889 break;
890 case NETDEV_FCOE_WWPN:
891 prefix = mac->wwpn_prefix;
892 break;
893 default:
894 break;
895 }
896
897 if ((prefix != 0xffff) &&
898 is_valid_ether_addr(mac->san_addr)) {
899 *wwn = ((u64) prefix << 48) |
900 ((u64) mac->san_addr[0] << 40) |
901 ((u64) mac->san_addr[1] << 32) |
902 ((u64) mac->san_addr[2] << 24) |
903 ((u64) mac->san_addr[3] << 16) |
904 ((u64) mac->san_addr[4] << 8) |
905 ((u64) mac->san_addr[5]);
906 rc = 0;
907 }
908 return rc;
909}
Neerav Parikhea818752012-01-04 20:23:40 +0000910
911/**
912 * ixgbe_fcoe_get_hbainfo - get FCoE HBA information
913 * @netdev : ixgbe adapter
914 * @info : HBA information
915 *
916 * Returns ixgbe HBA information
917 *
918 * Returns : 0 on success
919 */
920int ixgbe_fcoe_get_hbainfo(struct net_device *netdev,
921 struct netdev_fcoe_hbainfo *info)
922{
923 struct ixgbe_adapter *adapter = netdev_priv(netdev);
924 struct ixgbe_hw *hw = &adapter->hw;
925 int i, pos;
926 u8 buf[8];
927
928 if (!info)
929 return -EINVAL;
930
931 /* Don't return information on unsupported devices */
932 if (hw->mac.type != ixgbe_mac_82599EB &&
933 hw->mac.type != ixgbe_mac_X540)
934 return -EINVAL;
935
936 /* Manufacturer */
937 snprintf(info->manufacturer, sizeof(info->manufacturer),
938 "Intel Corporation");
939
940 /* Serial Number */
941
942 /* Get the PCI-e Device Serial Number Capability */
943 pos = pci_find_ext_capability(adapter->pdev, PCI_EXT_CAP_ID_DSN);
944 if (pos) {
945 pos += 4;
946 for (i = 0; i < 8; i++)
947 pci_read_config_byte(adapter->pdev, pos + i, &buf[i]);
948
949 snprintf(info->serial_number, sizeof(info->serial_number),
950 "%02X%02X%02X%02X%02X%02X%02X%02X",
951 buf[7], buf[6], buf[5], buf[4],
952 buf[3], buf[2], buf[1], buf[0]);
953 } else
954 snprintf(info->serial_number, sizeof(info->serial_number),
955 "Unknown");
956
957 /* Hardware Version */
958 snprintf(info->hardware_version,
959 sizeof(info->hardware_version),
960 "Rev %d", hw->revision_id);
961 /* Driver Name/Version */
962 snprintf(info->driver_version,
963 sizeof(info->driver_version),
964 "%s v%s",
965 ixgbe_driver_name,
966 ixgbe_driver_version);
967 /* Firmware Version */
968 snprintf(info->firmware_version,
969 sizeof(info->firmware_version),
970 "0x%08x",
971 (adapter->eeprom_verh << 16) |
972 adapter->eeprom_verl);
973
974 /* Model */
975 if (hw->mac.type == ixgbe_mac_82599EB) {
976 snprintf(info->model,
977 sizeof(info->model),
978 "Intel 82599");
979 } else {
980 snprintf(info->model,
981 sizeof(info->model),
982 "Intel X540");
983 }
984
985 /* Model Description */
986 snprintf(info->model_description,
987 sizeof(info->model_description),
988 "%s",
989 ixgbe_default_device_descr);
990
991 return 0;
992}
Alexander Duyck800bd602012-06-02 00:11:02 +0000993
994/**
995 * ixgbe_fcoe_get_tc - get the current TC that fcoe is mapped to
996 * @adapter - pointer to the device adapter structure
997 *
998 * Return : TC that FCoE is mapped to
999 */
1000u8 ixgbe_fcoe_get_tc(struct ixgbe_adapter *adapter)
1001{
1002#ifdef CONFIG_IXGBE_DCB
1003 return netdev_get_prio_tc_map(adapter->netdev, adapter->fcoe.up);
1004#else
1005 return 0;
1006#endif
1007}