blob: cae766d28b0313f3256b723ca80fe46a39aa59e0 [file] [log] [blame]
Yi Zoud3a2ae62009-05-13 13:10:21 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Don Skidmorea52055e2011-02-23 09:58:39 +00004 Copyright(c) 1999 - 2011 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
41 * @ddp - ptr to the ixgbe_fcoe_ddp
42 *
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)
107 pci_unmap_sg(adapter->pdev, ddp->sgl, ddp->sgc,
108 DMA_FROM_DEVICE);
Vasu Devdadbe852011-05-11 05:41:46 +0000109 if (ddp->pool) {
110 pci_pool_free(ddp->pool, ddp->udl, ddp->udp);
111 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;
137 struct scatterlist *sg;
138 unsigned int i, j, dmacount;
139 unsigned int len;
Amir Hananiac6006362011-02-15 09:11:31 +0000140 static const unsigned int bufflen = IXGBE_FCBUFF_MIN;
Yi Zoud0ed8932009-05-13 13:11:29 +0000141 unsigned int firstoff = 0;
142 unsigned int lastsize;
143 unsigned int thisoff = 0;
144 unsigned int thislen = 0;
Yi Zou68a683c2011-02-01 07:22:16 +0000145 u32 fcbuff, fcdmarw, fcfltrw, fcrxctl;
Don Skidmorefbbea322011-01-26 06:04:17 +0000146 dma_addr_t addr = 0;
Vasu Devdadbe852011-05-11 05:41:46 +0000147 struct pci_pool *pool;
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;
164 if (!fcoe->pool) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000165 e_warn(drv, "xid=0x%x no ddp pool for fcoe\n", xid);
Yi Zoud0ed8932009-05-13 13:11:29 +0000166 return 0;
167 }
168
169 ddp = &fcoe->ddp[xid];
170 if (ddp->sgl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000171 e_err(drv, "xid 0x%x w/ non-null sgl=%p nents=%d\n",
172 xid, ddp->sgl, ddp->sgc);
Yi Zoud0ed8932009-05-13 13:11:29 +0000173 return 0;
174 }
175 ixgbe_fcoe_clear_ddp(ddp);
176
177 /* setup dma from scsi command sgl */
178 dmacount = pci_map_sg(adapter->pdev, sgl, sgc, DMA_FROM_DEVICE);
179 if (dmacount == 0) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000180 e_err(drv, "xid 0x%x DMA map error\n", xid);
Yi Zoud0ed8932009-05-13 13:11:29 +0000181 return 0;
182 }
183
Vasu Devdadbe852011-05-11 05:41:46 +0000184 /* alloc the udl from per cpu ddp pool */
185 pool = *per_cpu_ptr(fcoe->pool, get_cpu());
186 ddp->udl = pci_pool_alloc(pool, GFP_ATOMIC, &ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000187 if (!ddp->udl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000188 e_err(drv, "failed allocated ddp context\n");
Yi Zoud0ed8932009-05-13 13:11:29 +0000189 goto out_noddp_unmap;
190 }
Vasu Devdadbe852011-05-11 05:41:46 +0000191 ddp->pool = pool;
Yi Zoud0ed8932009-05-13 13:11:29 +0000192 ddp->sgl = sgl;
193 ddp->sgc = sgc;
194
195 j = 0;
196 for_each_sg(sgl, sg, dmacount, i) {
197 addr = sg_dma_address(sg);
198 len = sg_dma_len(sg);
199 while (len) {
Robert Lovea7551b72010-03-24 10:02:04 +0000200 /* max number of buffers allowed in one DDP context */
201 if (j >= IXGBE_BUFFCNT_MAX) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000202 e_err(drv, "xid=%x:%d,%d,%d:addr=%llx "
Emil Tantilov849c4542010-06-03 16:53:41 +0000203 "not enough descriptors\n",
204 xid, i, j, dmacount, (u64)addr);
Robert Lovea7551b72010-03-24 10:02:04 +0000205 goto out_noddp_free;
206 }
207
Yi Zoud0ed8932009-05-13 13:11:29 +0000208 /* get the offset of length of current buffer */
209 thisoff = addr & ((dma_addr_t)bufflen - 1);
210 thislen = min((bufflen - thisoff), len);
211 /*
212 * all but the 1st buffer (j == 0)
213 * must be aligned on bufflen
214 */
215 if ((j != 0) && (thisoff))
216 goto out_noddp_free;
217 /*
218 * all but the last buffer
219 * ((i == (dmacount - 1)) && (thislen == len))
220 * must end at bufflen
221 */
222 if (((i != (dmacount - 1)) || (thislen != len))
223 && ((thislen + thisoff) != bufflen))
224 goto out_noddp_free;
225
226 ddp->udl[j] = (u64)(addr - thisoff);
227 /* only the first buffer may have none-zero offset */
228 if (j == 0)
229 firstoff = thisoff;
230 len -= thislen;
231 addr += thislen;
232 j++;
Yi Zoud0ed8932009-05-13 13:11:29 +0000233 }
234 }
235 /* only the last buffer may have non-full bufflen */
236 lastsize = thisoff + thislen;
237
Amir Hananiac6006362011-02-15 09:11:31 +0000238 /*
239 * lastsize can not be buffer len.
240 * If it is then adding another buffer with lastsize = 1.
241 */
242 if (lastsize == bufflen) {
243 if (j >= IXGBE_BUFFCNT_MAX) {
Amir Hanania0ebafd82011-04-28 08:47:23 +0000244 printk_once("Will NOT use DDP since there are not "
245 "enough user buffers. We need an extra "
246 "buffer because lastsize is bufflen. "
247 "xid=%x:%d,%d,%d:addr=%llx\n",
248 xid, i, j, dmacount, (u64)addr);
249
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:
Vasu Devdadbe852011-05-11 05:41:46 +0000301 pci_pool_free(pool, ddp->udl, ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000302 ixgbe_fcoe_clear_ddp(ddp);
303
304out_noddp_unmap:
305 pci_unmap_sg(adapter->pdev, sgl, sgc, DMA_FROM_DEVICE);
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 Duyckff886df2011-06-11 01:45:13 +0000365 struct sk_buff *skb,
366 u32 staterr)
Yi Zoud0ed8932009-05-13 13:11:29 +0000367{
368 u16 xid;
Yi Zoud4ab8812009-09-03 14:56:31 +0000369 u32 fctl;
Alexander Duyckff886df2011-06-11 01:45:13 +0000370 u32 fceofe, fcerr, fcstat;
Yi Zoud0ed8932009-05-13 13:11:29 +0000371 int rc = -EINVAL;
372 struct ixgbe_fcoe *fcoe;
373 struct ixgbe_fcoe_ddp *ddp;
374 struct fc_frame_header *fh;
Yi Zou68a683c2011-02-01 07:22:16 +0000375 struct fcoe_crc_eof *crc;
Yi Zoud0ed8932009-05-13 13:11:29 +0000376
Alexander Duyckff886df2011-06-11 01:45:13 +0000377 fcerr = (staterr & IXGBE_RXDADV_ERR_FCERR);
378 fceofe = (staterr & IXGBE_RXDADV_ERR_FCEOFE);
Yi Zoud0ed8932009-05-13 13:11:29 +0000379 if (fcerr == IXGBE_FCERR_BADCRC)
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700380 skb_checksum_none_assert(skb);
381 else
382 skb->ip_summed = CHECKSUM_UNNECESSARY;
Yi Zoud0ed8932009-05-13 13:11:29 +0000383
Yi Zoube5d5072010-05-18 16:00:05 +0000384 if (eth_hdr(skb)->h_proto == htons(ETH_P_8021Q))
385 fh = (struct fc_frame_header *)(skb->data +
386 sizeof(struct vlan_hdr) + sizeof(struct fcoe_hdr));
387 else
388 fh = (struct fc_frame_header *)(skb->data +
389 sizeof(struct fcoe_hdr));
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
Yi Zou7aba7b02011-04-09 08:34:12 +0000404 if (fcerr | fceofe)
Yi Zoud0ed8932009-05-13 13:11:29 +0000405 goto ddp_out;
406
Alexander Duyckff886df2011-06-11 01:45:13 +0000407 fcstat = (staterr & IXGBE_RXDADV_STAT_FCSTAT);
Yi Zoud0ed8932009-05-13 13:11:29 +0000408 if (fcstat) {
409 /* update length of DDPed data */
410 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
411 /* unmap the sg list when FCP_RSP is received */
412 if (fcstat == IXGBE_RXDADV_STAT_FCSTAT_FCPRSP) {
413 pci_unmap_sg(adapter->pdev, ddp->sgl,
414 ddp->sgc, DMA_FROM_DEVICE);
Yi Zou7aba7b02011-04-09 08:34:12 +0000415 ddp->err = (fcerr | fceofe);
Yi Zoud0ed8932009-05-13 13:11:29 +0000416 ddp->sgl = NULL;
417 ddp->sgc = 0;
418 }
419 /* return 0 to bypass going to ULD for DDPed data */
420 if (fcstat == IXGBE_RXDADV_STAT_FCSTAT_DDP)
421 rc = 0;
Yi Zou17e78b02009-08-13 14:09:58 +0000422 else if (ddp->len)
Yi Zou3d8fd382009-06-08 14:38:44 +0000423 rc = ddp->len;
Yi Zoud0ed8932009-05-13 13:11:29 +0000424 }
Yi Zou68a683c2011-02-01 07:22:16 +0000425 /* In target mode, check the last data frame of the sequence.
426 * For DDP in target mode, data is already DDPed but the header
427 * indication of the last data frame ould allow is to tell if we
428 * got all the data and the ULP can send FCP_RSP back, as this is
429 * not a full fcoe frame, we fill the trailer here so it won't be
430 * dropped by the ULP stack.
431 */
432 if ((fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA) &&
433 (fctl & FC_FC_END_SEQ)) {
434 crc = (struct fcoe_crc_eof *)skb_put(skb, sizeof(*crc));
435 crc->fcoe_eof = FC_EOF_T;
436 }
Yi Zoud0ed8932009-05-13 13:11:29 +0000437ddp_out:
438 return rc;
439}
440
441/**
Yi Zoubc079222009-05-13 13:10:44 +0000442 * ixgbe_fso - ixgbe FCoE Sequence Offload (FSO)
Yi Zoubc079222009-05-13 13:10:44 +0000443 * @tx_ring: tx desc ring
444 * @skb: associated skb
445 * @tx_flags: tx flags
446 * @hdr_len: hdr_len to be returned
447 *
448 * This sets up large send offload for FCoE
449 *
450 * Returns : 0 indicates no FSO, > 0 for FSO, < 0 for error
451 */
Alexander Duyck897ab152011-05-27 05:31:47 +0000452int ixgbe_fso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
Yi Zoubc079222009-05-13 13:10:44 +0000453 u32 tx_flags, u8 *hdr_len)
454{
Yi Zoubc079222009-05-13 13:10:44 +0000455 struct fc_frame_header *fh;
Alexander Duyck897ab152011-05-27 05:31:47 +0000456 u32 vlan_macip_lens;
457 u32 fcoe_sof_eof = 0;
458 u32 mss_l4len_idx;
459 u8 sof, eof;
Yi Zoubc079222009-05-13 13:10:44 +0000460
461 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_type != SKB_GSO_FCOE)) {
Alexander Duyck897ab152011-05-27 05:31:47 +0000462 dev_err(tx_ring->dev, "Wrong gso type %d:expecting SKB_GSO_FCOE\n",
463 skb_shinfo(skb)->gso_type);
Yi Zoubc079222009-05-13 13:10:44 +0000464 return -EINVAL;
465 }
466
467 /* resets the header to point fcoe/fc */
468 skb_set_network_header(skb, skb->mac_len);
469 skb_set_transport_header(skb, skb->mac_len +
470 sizeof(struct fcoe_hdr));
471
472 /* sets up SOF and ORIS */
Yi Zoubc079222009-05-13 13:10:44 +0000473 sof = ((struct fcoe_hdr *)skb_network_header(skb))->fcoe_sof;
474 switch (sof) {
475 case FC_SOF_I2:
Alexander Duyck897ab152011-05-27 05:31:47 +0000476 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000477 break;
478 case FC_SOF_I3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000479 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF |
480 IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000481 break;
482 case FC_SOF_N2:
483 break;
484 case FC_SOF_N3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000485 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF;
Yi Zoubc079222009-05-13 13:10:44 +0000486 break;
487 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000488 dev_warn(tx_ring->dev, "unknown sof = 0x%x\n", sof);
Yi Zoubc079222009-05-13 13:10:44 +0000489 return -EINVAL;
490 }
491
492 /* the first byte of the last dword is EOF */
493 skb_copy_bits(skb, skb->len - 4, &eof, 1);
494 /* sets up EOF and ORIE */
495 switch (eof) {
496 case FC_EOF_N:
497 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N;
498 break;
499 case FC_EOF_T:
500 /* lso needs ORIE */
Alexander Duyck897ab152011-05-27 05:31:47 +0000501 if (skb_is_gso(skb))
502 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N |
503 IXGBE_ADVTXD_FCOEF_ORIE;
504 else
Yi Zoubc079222009-05-13 13:10:44 +0000505 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_T;
Yi Zoubc079222009-05-13 13:10:44 +0000506 break;
507 case FC_EOF_NI:
508 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_NI;
509 break;
510 case FC_EOF_A:
511 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_A;
512 break;
513 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000514 dev_warn(tx_ring->dev, "unknown eof = 0x%x\n", eof);
Yi Zoubc079222009-05-13 13:10:44 +0000515 return -EINVAL;
516 }
517
518 /* sets up PARINC indicating data offset */
519 fh = (struct fc_frame_header *)skb_transport_header(skb);
520 if (fh->fh_f_ctl[2] & FC_FC_REL_OFF)
521 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_PARINC;
522
Alexander Duyck897ab152011-05-27 05:31:47 +0000523 /* include trailer in headlen as it is replicated per frame */
Yi Zoubc079222009-05-13 13:10:44 +0000524 *hdr_len = sizeof(struct fcoe_crc_eof);
Alexander Duyck897ab152011-05-27 05:31:47 +0000525
526 /* hdr_len includes fc_hdr if FCoE LSO is enabled */
Yi Zoubc079222009-05-13 13:10:44 +0000527 if (skb_is_gso(skb))
528 *hdr_len += (skb_transport_offset(skb) +
529 sizeof(struct fc_frame_header));
Yi Zoubc079222009-05-13 13:10:44 +0000530
Yi Zoubc079222009-05-13 13:10:44 +0000531 /* mss_l4len_id: use 1 for FSO as TSO, no need for L4LEN */
Alexander Duyck897ab152011-05-27 05:31:47 +0000532 mss_l4len_idx = skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
533 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
534
535 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
536 vlan_macip_lens = skb_transport_offset(skb) +
537 sizeof(struct fc_frame_header);
538 vlan_macip_lens |= (skb_transport_offset(skb) - 4)
539 << IXGBE_ADVTXD_MACLEN_SHIFT;
540 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Yi Zoubc079222009-05-13 13:10:44 +0000541
542 /* write context desc */
Alexander Duyck897ab152011-05-27 05:31:47 +0000543 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, fcoe_sof_eof,
544 IXGBE_ADVTXT_TUCMD_FCOE, mss_l4len_idx);
Yi Zoubc079222009-05-13 13:10:44 +0000545
546 return skb_is_gso(skb);
547}
548
Vasu Devdadbe852011-05-11 05:41:46 +0000549static void ixgbe_fcoe_ddp_pools_free(struct ixgbe_fcoe *fcoe)
550{
551 unsigned int cpu;
552 struct pci_pool **pool;
553
554 for_each_possible_cpu(cpu) {
555 pool = per_cpu_ptr(fcoe->pool, cpu);
556 if (*pool)
557 pci_pool_destroy(*pool);
558 }
559 free_percpu(fcoe->pool);
560 fcoe->pool = NULL;
561}
562
563static void ixgbe_fcoe_ddp_pools_alloc(struct ixgbe_adapter *adapter)
564{
565 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
566 unsigned int cpu;
567 struct pci_pool **pool;
568 char pool_name[32];
569
570 fcoe->pool = alloc_percpu(struct pci_pool *);
571 if (!fcoe->pool)
572 return;
573
574 /* allocate pci pool for each cpu */
575 for_each_possible_cpu(cpu) {
576 snprintf(pool_name, 32, "ixgbe_fcoe_ddp_%d", cpu);
577 pool = per_cpu_ptr(fcoe->pool, cpu);
578 *pool = pci_pool_create(pool_name,
579 adapter->pdev, IXGBE_FCPTR_MAX,
580 IXGBE_FCPTR_ALIGN, PAGE_SIZE);
581 if (!*pool) {
582 e_err(drv, "failed to alloc DDP pool on cpu:%d\n", cpu);
583 ixgbe_fcoe_ddp_pools_free(fcoe);
584 return;
585 }
586 }
587}
588
Yi Zoubc079222009-05-13 13:10:44 +0000589/**
Yi Zoud3a2ae62009-05-13 13:10:21 +0000590 * ixgbe_configure_fcoe - configures registers for fcoe at start
591 * @adapter: ptr to ixgbe adapter
592 *
593 * This sets up FCoE related registers
594 *
595 * Returns : none
596 */
597void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter)
598{
Yi Zou29ebf6f2009-05-17 12:34:14 +0000599 int i, fcoe_q, fcoe_i;
Yi Zoud3a2ae62009-05-13 13:10:21 +0000600 struct ixgbe_hw *hw = &adapter->hw;
Yi Zoud0ed8932009-05-13 13:11:29 +0000601 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000602 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Yi Zoud3a2ae62009-05-13 13:10:21 +0000603
Yi Zoud0ed8932009-05-13 13:11:29 +0000604 if (!fcoe->pool) {
Yi Zoud0ed8932009-05-13 13:11:29 +0000605 spin_lock_init(&fcoe->lock);
Amir Hananiac6006362011-02-15 09:11:31 +0000606
Vasu Devdadbe852011-05-11 05:41:46 +0000607 ixgbe_fcoe_ddp_pools_alloc(adapter);
608 if (!fcoe->pool) {
609 e_err(drv, "failed to alloc percpu fcoe DDP pools\n");
610 return;
611 }
612
Amir Hananiac6006362011-02-15 09:11:31 +0000613 /* Extra buffer to be shared by all DDPs for HW work around */
614 fcoe->extra_ddp_buffer = kmalloc(IXGBE_FCBUFF_MIN, GFP_ATOMIC);
615 if (fcoe->extra_ddp_buffer == NULL) {
616 e_err(drv, "failed to allocated extra DDP buffer\n");
Vasu Devdadbe852011-05-11 05:41:46 +0000617 goto out_ddp_pools;
Amir Hananiac6006362011-02-15 09:11:31 +0000618 }
619
620 fcoe->extra_ddp_buffer_dma =
621 dma_map_single(&adapter->pdev->dev,
622 fcoe->extra_ddp_buffer,
623 IXGBE_FCBUFF_MIN,
624 DMA_FROM_DEVICE);
625 if (dma_mapping_error(&adapter->pdev->dev,
626 fcoe->extra_ddp_buffer_dma)) {
627 e_err(drv, "failed to map extra DDP buffer\n");
Vasu Devdadbe852011-05-11 05:41:46 +0000628 goto out_extra_ddp_buffer;
Amir Hananiac6006362011-02-15 09:11:31 +0000629 }
Yi Zoud0ed8932009-05-13 13:11:29 +0000630 }
Yi Zou29ebf6f2009-05-17 12:34:14 +0000631
632 /* Enable L2 eth type filter for FCoE */
Yi Zoud3a2ae62009-05-13 13:10:21 +0000633 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FCOE),
634 (ETH_P_FCOE | IXGBE_ETQF_FCOE | IXGBE_ETQF_FILTER_EN));
Chris Leechaf063932010-03-24 12:45:21 +0000635 /* Enable L2 eth type filter for FIP */
636 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FIP),
637 (ETH_P_FIP | IXGBE_ETQF_FILTER_EN));
Yi Zou29ebf6f2009-05-17 12:34:14 +0000638 if (adapter->ring_feature[RING_F_FCOE].indices) {
639 /* Use multiple rx queues for FCoE by redirection table */
640 for (i = 0; i < IXGBE_FCRETA_SIZE; i++) {
641 fcoe_i = f->mask + i % f->indices;
642 fcoe_i &= IXGBE_FCRETA_ENTRY_MASK;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000643 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000644 IXGBE_WRITE_REG(hw, IXGBE_FCRETA(i), fcoe_q);
645 }
646 IXGBE_WRITE_REG(hw, IXGBE_FCRECTL, IXGBE_FCRECTL_ENA);
647 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FCOE), 0);
648 } else {
649 /* Use single rx queue for FCoE */
650 fcoe_i = f->mask;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000651 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000652 IXGBE_WRITE_REG(hw, IXGBE_FCRECTL, 0);
653 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FCOE),
654 IXGBE_ETQS_QUEUE_EN |
655 (fcoe_q << IXGBE_ETQS_RX_QUEUE_SHIFT));
656 }
Chris Leechaf063932010-03-24 12:45:21 +0000657 /* send FIP frames to the first FCoE queue */
658 fcoe_i = f->mask;
659 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
660 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FIP),
661 IXGBE_ETQS_QUEUE_EN |
662 (fcoe_q << IXGBE_ETQS_RX_QUEUE_SHIFT));
Yi Zou29ebf6f2009-05-17 12:34:14 +0000663
Yi Zoud3a2ae62009-05-13 13:10:21 +0000664 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL,
665 IXGBE_FCRXCTRL_FCOELLI |
666 IXGBE_FCRXCTRL_FCCRCBO |
667 (FC_FCOE_VER << IXGBE_FCRXCTRL_FCOEVER_SHIFT));
Amir Hananiac6006362011-02-15 09:11:31 +0000668 return;
669
Vasu Devdadbe852011-05-11 05:41:46 +0000670out_extra_ddp_buffer:
Amir Hananiac6006362011-02-15 09:11:31 +0000671 kfree(fcoe->extra_ddp_buffer);
Vasu Devdadbe852011-05-11 05:41:46 +0000672out_ddp_pools:
673 ixgbe_fcoe_ddp_pools_free(fcoe);
Yi Zoud3a2ae62009-05-13 13:10:21 +0000674}
Yi Zoud0ed8932009-05-13 13:11:29 +0000675
676/**
677 * ixgbe_cleanup_fcoe - release all fcoe ddp context resources
678 * @adapter : ixgbe adapter
679 *
680 * Cleans up outstanding ddp context resources
681 *
682 * Returns : none
683 */
684void ixgbe_cleanup_fcoe(struct ixgbe_adapter *adapter)
685{
686 int i;
687 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
688
Vasu Devdadbe852011-05-11 05:41:46 +0000689 if (!fcoe->pool)
690 return;
691
692 for (i = 0; i < IXGBE_FCOE_DDP_MAX; i++)
693 ixgbe_fcoe_ddp_put(adapter->netdev, i);
694 dma_unmap_single(&adapter->pdev->dev,
695 fcoe->extra_ddp_buffer_dma,
696 IXGBE_FCBUFF_MIN,
697 DMA_FROM_DEVICE);
698 kfree(fcoe->extra_ddp_buffer);
699 ixgbe_fcoe_ddp_pools_free(fcoe);
Yi Zoud0ed8932009-05-13 13:11:29 +0000700}
Yi Zou8450ff82009-08-31 12:32:14 +0000701
702/**
703 * ixgbe_fcoe_enable - turn on FCoE offload feature
704 * @netdev: the corresponding netdev
705 *
706 * Turns on FCoE offload feature in 82599.
707 *
708 * Returns : 0 indicates success or -EINVAL on failure
709 */
710int ixgbe_fcoe_enable(struct net_device *netdev)
711{
712 int rc = -EINVAL;
713 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Yi Zou27ab7602010-10-20 23:00:30 +0000714 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8450ff82009-08-31 12:32:14 +0000715
716
717 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
718 goto out_enable;
719
Yi Zou27ab7602010-10-20 23:00:30 +0000720 atomic_inc(&fcoe->refcnt);
Yi Zou8450ff82009-08-31 12:32:14 +0000721 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
722 goto out_enable;
723
Emil Tantilov396e7992010-07-01 20:05:12 +0000724 e_info(drv, "Enabling FCoE offload features.\n");
Yi Zou8450ff82009-08-31 12:32:14 +0000725 if (netif_running(netdev))
726 netdev->netdev_ops->ndo_stop(netdev);
727
728 ixgbe_clear_interrupt_scheme(adapter);
729
730 adapter->flags |= IXGBE_FLAG_FCOE_ENABLED;
731 adapter->ring_feature[RING_F_FCOE].indices = IXGBE_FCRETA_SIZE;
732 netdev->features |= NETIF_F_FCOE_CRC;
733 netdev->features |= NETIF_F_FSO;
734 netdev->features |= NETIF_F_FCOE_MTU;
Yi Zou8450ff82009-08-31 12:32:14 +0000735 netdev->fcoe_ddp_xid = IXGBE_FCOE_DDP_MAX - 1;
Yi Zou8450ff82009-08-31 12:32:14 +0000736
737 ixgbe_init_interrupt_scheme(adapter);
Vasu Dev936332b2010-03-19 04:33:10 +0000738 netdev_features_change(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000739
740 if (netif_running(netdev))
741 netdev->netdev_ops->ndo_open(netdev);
742 rc = 0;
743
744out_enable:
745 return rc;
746}
747
748/**
749 * ixgbe_fcoe_disable - turn off FCoE offload feature
750 * @netdev: the corresponding netdev
751 *
752 * Turns off FCoE offload feature in 82599.
753 *
754 * Returns : 0 indicates success or -EINVAL on failure
755 */
756int ixgbe_fcoe_disable(struct net_device *netdev)
757{
758 int rc = -EINVAL;
759 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Yi Zou27ab7602010-10-20 23:00:30 +0000760 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8450ff82009-08-31 12:32:14 +0000761
762 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
763 goto out_disable;
764
765 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
766 goto out_disable;
767
Yi Zou27ab7602010-10-20 23:00:30 +0000768 if (!atomic_dec_and_test(&fcoe->refcnt))
769 goto out_disable;
770
Emil Tantilov396e7992010-07-01 20:05:12 +0000771 e_info(drv, "Disabling FCoE offload features.\n");
Yi Zou5e09d7f2010-07-19 13:59:52 +0000772 netdev->features &= ~NETIF_F_FCOE_CRC;
773 netdev->features &= ~NETIF_F_FSO;
774 netdev->features &= ~NETIF_F_FCOE_MTU;
775 netdev->fcoe_ddp_xid = 0;
776 netdev_features_change(netdev);
777
Yi Zou8450ff82009-08-31 12:32:14 +0000778 if (netif_running(netdev))
779 netdev->netdev_ops->ndo_stop(netdev);
780
781 ixgbe_clear_interrupt_scheme(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000782 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
783 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou8450ff82009-08-31 12:32:14 +0000784 ixgbe_cleanup_fcoe(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000785 ixgbe_init_interrupt_scheme(adapter);
Vasu Dev936332b2010-03-19 04:33:10 +0000786
Yi Zou8450ff82009-08-31 12:32:14 +0000787 if (netif_running(netdev))
788 netdev->netdev_ops->ndo_open(netdev);
789 rc = 0;
790
791out_disable:
792 return rc;
793}
Yi Zou6ee16522009-08-31 12:34:28 +0000794
Yi Zou61a1fa12009-10-28 18:24:56 +0000795/**
796 * ixgbe_fcoe_get_wwn - get world wide name for the node or the port
797 * @netdev : ixgbe adapter
798 * @wwn : the world wide name
799 * @type: the type of world wide name
800 *
801 * Returns the node or port world wide name if both the prefix and the san
802 * mac address are valid, then the wwn is formed based on the NAA-2 for
803 * IEEE Extended name identifier (ref. to T10 FC-LS Spec., Sec. 15.3).
804 *
805 * Returns : 0 on success
806 */
807int ixgbe_fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type)
808{
809 int rc = -EINVAL;
810 u16 prefix = 0xffff;
811 struct ixgbe_adapter *adapter = netdev_priv(netdev);
812 struct ixgbe_mac_info *mac = &adapter->hw.mac;
813
814 switch (type) {
815 case NETDEV_FCOE_WWNN:
816 prefix = mac->wwnn_prefix;
817 break;
818 case NETDEV_FCOE_WWPN:
819 prefix = mac->wwpn_prefix;
820 break;
821 default:
822 break;
823 }
824
825 if ((prefix != 0xffff) &&
826 is_valid_ether_addr(mac->san_addr)) {
827 *wwn = ((u64) prefix << 48) |
828 ((u64) mac->san_addr[0] << 40) |
829 ((u64) mac->san_addr[1] << 32) |
830 ((u64) mac->san_addr[2] << 24) |
831 ((u64) mac->san_addr[3] << 16) |
832 ((u64) mac->san_addr[4] << 8) |
833 ((u64) mac->san_addr[5]);
834 rc = 0;
835 }
836 return rc;
837}