blob: da7da752b6b45e7104d9f8e083d3a0729d5d296d [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
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;
Amir Hanania7b859eb2011-08-31 02:07:55 +0000148 unsigned int cpu;
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;
165 if (!fcoe->pool) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000166 e_warn(drv, "xid=0x%x no ddp pool for fcoe\n", xid);
Yi Zoud0ed8932009-05-13 13:11:29 +0000167 return 0;
168 }
169
170 ddp = &fcoe->ddp[xid];
171 if (ddp->sgl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000172 e_err(drv, "xid 0x%x w/ non-null sgl=%p nents=%d\n",
173 xid, ddp->sgl, ddp->sgc);
Yi Zoud0ed8932009-05-13 13:11:29 +0000174 return 0;
175 }
176 ixgbe_fcoe_clear_ddp(ddp);
177
178 /* setup dma from scsi command sgl */
179 dmacount = pci_map_sg(adapter->pdev, sgl, sgc, DMA_FROM_DEVICE);
180 if (dmacount == 0) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000181 e_err(drv, "xid 0x%x DMA map error\n", xid);
Yi Zoud0ed8932009-05-13 13:11:29 +0000182 return 0;
183 }
184
Vasu Devdadbe852011-05-11 05:41:46 +0000185 /* alloc the udl from per cpu ddp pool */
Amir Hanania7b859eb2011-08-31 02:07:55 +0000186 cpu = get_cpu();
187 pool = *per_cpu_ptr(fcoe->pool, cpu);
Vasu Devdadbe852011-05-11 05:41:46 +0000188 ddp->udl = pci_pool_alloc(pool, GFP_ATOMIC, &ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000189 if (!ddp->udl) {
Emil Tantilov396e7992010-07-01 20:05:12 +0000190 e_err(drv, "failed allocated ddp context\n");
Yi Zoud0ed8932009-05-13 13:11:29 +0000191 goto out_noddp_unmap;
192 }
Vasu Devdadbe852011-05-11 05:41:46 +0000193 ddp->pool = pool;
Yi Zoud0ed8932009-05-13 13:11:29 +0000194 ddp->sgl = sgl;
195 ddp->sgc = sgc;
196
197 j = 0;
198 for_each_sg(sgl, sg, dmacount, i) {
199 addr = sg_dma_address(sg);
200 len = sg_dma_len(sg);
201 while (len) {
Robert Lovea7551b72010-03-24 10:02:04 +0000202 /* max number of buffers allowed in one DDP context */
203 if (j >= IXGBE_BUFFCNT_MAX) {
Amir Hanania7b859eb2011-08-31 02:07:55 +0000204 *per_cpu_ptr(fcoe->pcpu_noddp, cpu) += 1;
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 Hanania7b859eb2011-08-31 02:07:55 +0000244 *per_cpu_ptr(fcoe->pcpu_noddp_ext_buff, cpu) += 1;
Amir Hananiac6006362011-02-15 09:11:31 +0000245 goto out_noddp_free;
246 }
247
248 ddp->udl[j] = (u64)(fcoe->extra_ddp_buffer_dma);
249 j++;
250 lastsize = 1;
251 }
Vasu Devdadbe852011-05-11 05:41:46 +0000252 put_cpu();
Amir Hananiac6006362011-02-15 09:11:31 +0000253
Yi Zoud0ed8932009-05-13 13:11:29 +0000254 fcbuff = (IXGBE_FCBUFF_4KB << IXGBE_FCBUFF_BUFFSIZE_SHIFT);
Robert Lovea7551b72010-03-24 10:02:04 +0000255 fcbuff |= ((j & 0xff) << IXGBE_FCBUFF_BUFFCNT_SHIFT);
Yi Zoud0ed8932009-05-13 13:11:29 +0000256 fcbuff |= (firstoff << IXGBE_FCBUFF_OFFSET_SHIFT);
Yi Zou68a683c2011-02-01 07:22:16 +0000257 /* Set WRCONTX bit to allow DDP for target */
258 if (target_mode)
259 fcbuff |= (IXGBE_FCBUFF_WRCONTX);
Yi Zoud0ed8932009-05-13 13:11:29 +0000260 fcbuff |= (IXGBE_FCBUFF_VALID);
261
262 fcdmarw = xid;
263 fcdmarw |= IXGBE_FCDMARW_WE;
264 fcdmarw |= (lastsize << IXGBE_FCDMARW_LASTSIZE_SHIFT);
265
266 fcfltrw = xid;
267 fcfltrw |= IXGBE_FCFLTRW_WE;
268
269 /* program DMA context */
270 hw = &adapter->hw;
271 spin_lock_bh(&fcoe->lock);
Yi Zou68a683c2011-02-01 07:22:16 +0000272
273 /* turn on last frame indication for target mode as FCP_RSPtarget is
274 * supposed to send FCP_RSP when it is done. */
275 if (target_mode && !test_bit(__IXGBE_FCOE_TARGET, &fcoe->mode)) {
276 set_bit(__IXGBE_FCOE_TARGET, &fcoe->mode);
277 fcrxctl = IXGBE_READ_REG(hw, IXGBE_FCRXCTRL);
278 fcrxctl |= IXGBE_FCRXCTRL_LASTSEQH;
279 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL, fcrxctl);
280 }
281
Andrew Morton8e20ce92009-06-18 16:49:17 -0700282 IXGBE_WRITE_REG(hw, IXGBE_FCPTRL, ddp->udp & DMA_BIT_MASK(32));
Yi Zoud0ed8932009-05-13 13:11:29 +0000283 IXGBE_WRITE_REG(hw, IXGBE_FCPTRH, (u64)ddp->udp >> 32);
284 IXGBE_WRITE_REG(hw, IXGBE_FCBUFF, fcbuff);
285 IXGBE_WRITE_REG(hw, IXGBE_FCDMARW, fcdmarw);
286 /* program filter context */
287 IXGBE_WRITE_REG(hw, IXGBE_FCPARAM, 0);
288 IXGBE_WRITE_REG(hw, IXGBE_FCFLT, IXGBE_FCFLT_VALID);
289 IXGBE_WRITE_REG(hw, IXGBE_FCFLTRW, fcfltrw);
Yi Zou68a683c2011-02-01 07:22:16 +0000290
Yi Zoud0ed8932009-05-13 13:11:29 +0000291 spin_unlock_bh(&fcoe->lock);
292
293 return 1;
294
295out_noddp_free:
Vasu Devdadbe852011-05-11 05:41:46 +0000296 pci_pool_free(pool, ddp->udl, ddp->udp);
Yi Zoud0ed8932009-05-13 13:11:29 +0000297 ixgbe_fcoe_clear_ddp(ddp);
298
299out_noddp_unmap:
300 pci_unmap_sg(adapter->pdev, sgl, sgc, DMA_FROM_DEVICE);
Vasu Devdadbe852011-05-11 05:41:46 +0000301 put_cpu();
Yi Zoud0ed8932009-05-13 13:11:29 +0000302 return 0;
303}
304
305/**
Yi Zou68a683c2011-02-01 07:22:16 +0000306 * ixgbe_fcoe_ddp_get - called to set up ddp context in initiator mode
307 * @netdev: the corresponding net_device
308 * @xid: the exchange id requesting ddp
309 * @sgl: the scatter-gather list for this request
310 * @sgc: the number of scatter-gather items
311 *
312 * This is the implementation of net_device_ops.ndo_fcoe_ddp_setup
313 * and is expected to be called from ULD, e.g., FCP layer of libfc
314 * to set up ddp for the corresponding xid of the given sglist for
315 * the corresponding I/O.
316 *
317 * Returns : 1 for success and 0 for no ddp
318 */
319int ixgbe_fcoe_ddp_get(struct net_device *netdev, u16 xid,
320 struct scatterlist *sgl, unsigned int sgc)
321{
322 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 0);
323}
324
325/**
326 * ixgbe_fcoe_ddp_target - called to set up ddp context in target mode
327 * @netdev: the corresponding net_device
328 * @xid: the exchange id requesting ddp
329 * @sgl: the scatter-gather list for this request
330 * @sgc: the number of scatter-gather items
331 *
332 * This is the implementation of net_device_ops.ndo_fcoe_ddp_target
333 * and is expected to be called from ULD, e.g., FCP layer of libfc
334 * to set up ddp for the corresponding xid of the given sglist for
335 * the corresponding I/O. The DDP in target mode is a write I/O request
336 * from the initiator.
337 *
338 * Returns : 1 for success and 0 for no ddp
339 */
340int ixgbe_fcoe_ddp_target(struct net_device *netdev, u16 xid,
341 struct scatterlist *sgl, unsigned int sgc)
342{
343 return ixgbe_fcoe_ddp_setup(netdev, xid, sgl, sgc, 1);
344}
345
346/**
Yi Zoud0ed8932009-05-13 13:11:29 +0000347 * ixgbe_fcoe_ddp - check ddp status and mark it done
348 * @adapter: ixgbe adapter
349 * @rx_desc: advanced rx descriptor
350 * @skb: the skb holding the received data
351 *
352 * This checks ddp status.
353 *
Yi Zou3d8fd382009-06-08 14:38:44 +0000354 * Returns : < 0 indicates an error or not a FCiE ddp, 0 indicates
355 * not passing the skb to ULD, > 0 indicates is the length of data
356 * being ddped.
Yi Zoud0ed8932009-05-13 13:11:29 +0000357 */
358int ixgbe_fcoe_ddp(struct ixgbe_adapter *adapter,
359 union ixgbe_adv_rx_desc *rx_desc,
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000360 struct sk_buff *skb)
Yi Zoud0ed8932009-05-13 13:11:29 +0000361{
Yi Zoud0ed8932009-05-13 13:11:29 +0000362 int rc = -EINVAL;
363 struct ixgbe_fcoe *fcoe;
364 struct ixgbe_fcoe_ddp *ddp;
365 struct fc_frame_header *fh;
Yi Zou68a683c2011-02-01 07:22:16 +0000366 struct fcoe_crc_eof *crc;
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000367 __le32 fcerr = ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_FCERR);
368 __le32 ddp_err;
369 u32 fctl;
370 u16 xid;
Yi Zoud0ed8932009-05-13 13:11:29 +0000371
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000372 if (fcerr == cpu_to_le32(IXGBE_FCERR_BADCRC))
373 skb->ip_summed = CHECKSUM_NONE;
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700374 else
375 skb->ip_summed = CHECKSUM_UNNECESSARY;
Yi Zoud0ed8932009-05-13 13:11:29 +0000376
Yi Zoube5d5072010-05-18 16:00:05 +0000377 if (eth_hdr(skb)->h_proto == htons(ETH_P_8021Q))
378 fh = (struct fc_frame_header *)(skb->data +
379 sizeof(struct vlan_hdr) + sizeof(struct fcoe_hdr));
380 else
381 fh = (struct fc_frame_header *)(skb->data +
382 sizeof(struct fcoe_hdr));
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000383
Yi Zoud4ab8812009-09-03 14:56:31 +0000384 fctl = ntoh24(fh->fh_f_ctl);
385 if (fctl & FC_FC_EX_CTX)
386 xid = be16_to_cpu(fh->fh_ox_id);
387 else
388 xid = be16_to_cpu(fh->fh_rx_id);
389
Yi Zoud0ed8932009-05-13 13:11:29 +0000390 if (xid >= IXGBE_FCOE_DDP_MAX)
391 goto ddp_out;
392
393 fcoe = &adapter->fcoe;
394 ddp = &fcoe->ddp[xid];
395 if (!ddp->udl)
396 goto ddp_out;
397
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000398 ddp_err = ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_ERR_FCEOFE |
399 IXGBE_RXDADV_ERR_FCERR);
400 if (ddp_err)
Yi Zoud0ed8932009-05-13 13:11:29 +0000401 goto ddp_out;
402
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000403 switch (ixgbe_test_staterr(rx_desc, IXGBE_RXDADV_STAT_FCSTAT)) {
404 /* return 0 to bypass going to ULD for DDPed data */
405 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_DDP):
Yi Zoud0ed8932009-05-13 13:11:29 +0000406 /* update length of DDPed data */
407 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000408 rc = 0;
409 break;
410 /* unmap the sg list when FCPRSP is received */
411 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_FCPRSP):
412 pci_unmap_sg(adapter->pdev, ddp->sgl,
413 ddp->sgc, DMA_FROM_DEVICE);
414 ddp->err = ddp_err;
415 ddp->sgl = NULL;
416 ddp->sgc = 0;
417 /* fall through */
418 /* if DDP length is present pass it through to ULD */
419 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NODDP):
420 /* update length of DDPed data */
421 ddp->len = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
422 if (ddp->len)
Yi Zou3d8fd382009-06-08 14:38:44 +0000423 rc = ddp->len;
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000424 break;
425 /* no match will return as an error */
426 case __constant_cpu_to_le32(IXGBE_RXDADV_STAT_FCSTAT_NOMTCH):
427 default:
428 break;
Yi Zoud0ed8932009-05-13 13:11:29 +0000429 }
Alexander Duyckf56e0cb2012-01-31 02:59:39 +0000430
Yi Zou68a683c2011-02-01 07:22:16 +0000431 /* In target mode, check the last data frame of the sequence.
432 * For DDP in target mode, data is already DDPed but the header
433 * indication of the last data frame ould allow is to tell if we
434 * got all the data and the ULP can send FCP_RSP back, as this is
435 * not a full fcoe frame, we fill the trailer here so it won't be
436 * dropped by the ULP stack.
437 */
438 if ((fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA) &&
439 (fctl & FC_FC_END_SEQ)) {
440 crc = (struct fcoe_crc_eof *)skb_put(skb, sizeof(*crc));
441 crc->fcoe_eof = FC_EOF_T;
442 }
Yi Zoud0ed8932009-05-13 13:11:29 +0000443ddp_out:
444 return rc;
445}
446
447/**
Yi Zoubc079222009-05-13 13:10:44 +0000448 * ixgbe_fso - ixgbe FCoE Sequence Offload (FSO)
Yi Zoubc079222009-05-13 13:10:44 +0000449 * @tx_ring: tx desc ring
450 * @skb: associated skb
451 * @tx_flags: tx flags
452 * @hdr_len: hdr_len to be returned
453 *
454 * This sets up large send offload for FCoE
455 *
456 * Returns : 0 indicates no FSO, > 0 for FSO, < 0 for error
457 */
Alexander Duyck897ab152011-05-27 05:31:47 +0000458int ixgbe_fso(struct ixgbe_ring *tx_ring, struct sk_buff *skb,
Yi Zoubc079222009-05-13 13:10:44 +0000459 u32 tx_flags, u8 *hdr_len)
460{
Yi Zoubc079222009-05-13 13:10:44 +0000461 struct fc_frame_header *fh;
Alexander Duyck897ab152011-05-27 05:31:47 +0000462 u32 vlan_macip_lens;
463 u32 fcoe_sof_eof = 0;
464 u32 mss_l4len_idx;
465 u8 sof, eof;
Yi Zoubc079222009-05-13 13:10:44 +0000466
467 if (skb_is_gso(skb) && (skb_shinfo(skb)->gso_type != SKB_GSO_FCOE)) {
Alexander Duyck897ab152011-05-27 05:31:47 +0000468 dev_err(tx_ring->dev, "Wrong gso type %d:expecting SKB_GSO_FCOE\n",
469 skb_shinfo(skb)->gso_type);
Yi Zoubc079222009-05-13 13:10:44 +0000470 return -EINVAL;
471 }
472
473 /* resets the header to point fcoe/fc */
474 skb_set_network_header(skb, skb->mac_len);
475 skb_set_transport_header(skb, skb->mac_len +
476 sizeof(struct fcoe_hdr));
477
478 /* sets up SOF and ORIS */
Yi Zoubc079222009-05-13 13:10:44 +0000479 sof = ((struct fcoe_hdr *)skb_network_header(skb))->fcoe_sof;
480 switch (sof) {
481 case FC_SOF_I2:
Alexander Duyck897ab152011-05-27 05:31:47 +0000482 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000483 break;
484 case FC_SOF_I3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000485 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF |
486 IXGBE_ADVTXD_FCOEF_ORIS;
Yi Zoubc079222009-05-13 13:10:44 +0000487 break;
488 case FC_SOF_N2:
489 break;
490 case FC_SOF_N3:
Alexander Duyck897ab152011-05-27 05:31:47 +0000491 fcoe_sof_eof = IXGBE_ADVTXD_FCOEF_SOF;
Yi Zoubc079222009-05-13 13:10:44 +0000492 break;
493 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000494 dev_warn(tx_ring->dev, "unknown sof = 0x%x\n", sof);
Yi Zoubc079222009-05-13 13:10:44 +0000495 return -EINVAL;
496 }
497
498 /* the first byte of the last dword is EOF */
499 skb_copy_bits(skb, skb->len - 4, &eof, 1);
500 /* sets up EOF and ORIE */
501 switch (eof) {
502 case FC_EOF_N:
503 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N;
504 break;
505 case FC_EOF_T:
506 /* lso needs ORIE */
Alexander Duyck897ab152011-05-27 05:31:47 +0000507 if (skb_is_gso(skb))
508 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_N |
509 IXGBE_ADVTXD_FCOEF_ORIE;
510 else
Yi Zoubc079222009-05-13 13:10:44 +0000511 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_T;
Yi Zoubc079222009-05-13 13:10:44 +0000512 break;
513 case FC_EOF_NI:
514 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_NI;
515 break;
516 case FC_EOF_A:
517 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_EOF_A;
518 break;
519 default:
Alexander Duyck897ab152011-05-27 05:31:47 +0000520 dev_warn(tx_ring->dev, "unknown eof = 0x%x\n", eof);
Yi Zoubc079222009-05-13 13:10:44 +0000521 return -EINVAL;
522 }
523
524 /* sets up PARINC indicating data offset */
525 fh = (struct fc_frame_header *)skb_transport_header(skb);
526 if (fh->fh_f_ctl[2] & FC_FC_REL_OFF)
527 fcoe_sof_eof |= IXGBE_ADVTXD_FCOEF_PARINC;
528
Alexander Duyck897ab152011-05-27 05:31:47 +0000529 /* include trailer in headlen as it is replicated per frame */
Yi Zoubc079222009-05-13 13:10:44 +0000530 *hdr_len = sizeof(struct fcoe_crc_eof);
Alexander Duyck897ab152011-05-27 05:31:47 +0000531
532 /* hdr_len includes fc_hdr if FCoE LSO is enabled */
Yi Zoubc079222009-05-13 13:10:44 +0000533 if (skb_is_gso(skb))
534 *hdr_len += (skb_transport_offset(skb) +
535 sizeof(struct fc_frame_header));
Yi Zoubc079222009-05-13 13:10:44 +0000536
Yi Zoubc079222009-05-13 13:10:44 +0000537 /* mss_l4len_id: use 1 for FSO as TSO, no need for L4LEN */
Alexander Duyck897ab152011-05-27 05:31:47 +0000538 mss_l4len_idx = skb_shinfo(skb)->gso_size << IXGBE_ADVTXD_MSS_SHIFT;
539 mss_l4len_idx |= 1 << IXGBE_ADVTXD_IDX_SHIFT;
540
541 /* vlan_macip_lens: HEADLEN, MACLEN, VLAN tag */
542 vlan_macip_lens = skb_transport_offset(skb) +
543 sizeof(struct fc_frame_header);
544 vlan_macip_lens |= (skb_transport_offset(skb) - 4)
545 << IXGBE_ADVTXD_MACLEN_SHIFT;
546 vlan_macip_lens |= tx_flags & IXGBE_TX_FLAGS_VLAN_MASK;
Yi Zoubc079222009-05-13 13:10:44 +0000547
548 /* write context desc */
Alexander Duyck897ab152011-05-27 05:31:47 +0000549 ixgbe_tx_ctxtdesc(tx_ring, vlan_macip_lens, fcoe_sof_eof,
550 IXGBE_ADVTXT_TUCMD_FCOE, mss_l4len_idx);
Yi Zoubc079222009-05-13 13:10:44 +0000551
552 return skb_is_gso(skb);
553}
554
Vasu Devdadbe852011-05-11 05:41:46 +0000555static void ixgbe_fcoe_ddp_pools_free(struct ixgbe_fcoe *fcoe)
556{
557 unsigned int cpu;
558 struct pci_pool **pool;
559
560 for_each_possible_cpu(cpu) {
561 pool = per_cpu_ptr(fcoe->pool, cpu);
562 if (*pool)
563 pci_pool_destroy(*pool);
564 }
565 free_percpu(fcoe->pool);
566 fcoe->pool = NULL;
567}
568
569static void ixgbe_fcoe_ddp_pools_alloc(struct ixgbe_adapter *adapter)
570{
571 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
572 unsigned int cpu;
573 struct pci_pool **pool;
574 char pool_name[32];
575
576 fcoe->pool = alloc_percpu(struct pci_pool *);
577 if (!fcoe->pool)
578 return;
579
580 /* allocate pci pool for each cpu */
581 for_each_possible_cpu(cpu) {
582 snprintf(pool_name, 32, "ixgbe_fcoe_ddp_%d", cpu);
583 pool = per_cpu_ptr(fcoe->pool, cpu);
584 *pool = pci_pool_create(pool_name,
585 adapter->pdev, IXGBE_FCPTR_MAX,
586 IXGBE_FCPTR_ALIGN, PAGE_SIZE);
587 if (!*pool) {
588 e_err(drv, "failed to alloc DDP pool on cpu:%d\n", cpu);
589 ixgbe_fcoe_ddp_pools_free(fcoe);
590 return;
591 }
592 }
593}
594
Yi Zoubc079222009-05-13 13:10:44 +0000595/**
Yi Zoud3a2ae62009-05-13 13:10:21 +0000596 * ixgbe_configure_fcoe - configures registers for fcoe at start
597 * @adapter: ptr to ixgbe adapter
598 *
599 * This sets up FCoE related registers
600 *
601 * Returns : none
602 */
603void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter)
604{
Yi Zou29ebf6f2009-05-17 12:34:14 +0000605 int i, fcoe_q, fcoe_i;
Yi Zoud3a2ae62009-05-13 13:10:21 +0000606 struct ixgbe_hw *hw = &adapter->hw;
Yi Zoud0ed8932009-05-13 13:11:29 +0000607 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000608 struct ixgbe_ring_feature *f = &adapter->ring_feature[RING_F_FCOE];
Amir Hanania7b859eb2011-08-31 02:07:55 +0000609 unsigned int cpu;
Yi Zoud3a2ae62009-05-13 13:10:21 +0000610
Yi Zoud0ed8932009-05-13 13:11:29 +0000611 if (!fcoe->pool) {
Yi Zoud0ed8932009-05-13 13:11:29 +0000612 spin_lock_init(&fcoe->lock);
Amir Hananiac6006362011-02-15 09:11:31 +0000613
Vasu Devdadbe852011-05-11 05:41:46 +0000614 ixgbe_fcoe_ddp_pools_alloc(adapter);
615 if (!fcoe->pool) {
616 e_err(drv, "failed to alloc percpu fcoe DDP pools\n");
617 return;
618 }
619
Amir Hananiac6006362011-02-15 09:11:31 +0000620 /* Extra buffer to be shared by all DDPs for HW work around */
621 fcoe->extra_ddp_buffer = kmalloc(IXGBE_FCBUFF_MIN, GFP_ATOMIC);
622 if (fcoe->extra_ddp_buffer == NULL) {
623 e_err(drv, "failed to allocated extra DDP buffer\n");
Vasu Devdadbe852011-05-11 05:41:46 +0000624 goto out_ddp_pools;
Amir Hananiac6006362011-02-15 09:11:31 +0000625 }
626
627 fcoe->extra_ddp_buffer_dma =
628 dma_map_single(&adapter->pdev->dev,
629 fcoe->extra_ddp_buffer,
630 IXGBE_FCBUFF_MIN,
631 DMA_FROM_DEVICE);
632 if (dma_mapping_error(&adapter->pdev->dev,
633 fcoe->extra_ddp_buffer_dma)) {
634 e_err(drv, "failed to map extra DDP buffer\n");
Vasu Devdadbe852011-05-11 05:41:46 +0000635 goto out_extra_ddp_buffer;
Amir Hananiac6006362011-02-15 09:11:31 +0000636 }
Amir Hanania7b859eb2011-08-31 02:07:55 +0000637
638 /* Alloc per cpu mem to count the ddp alloc failure number */
639 fcoe->pcpu_noddp = alloc_percpu(u64);
640 if (!fcoe->pcpu_noddp) {
641 e_err(drv, "failed to alloc noddp counter\n");
642 goto out_pcpu_noddp_alloc_fail;
643 }
644
645 fcoe->pcpu_noddp_ext_buff = alloc_percpu(u64);
646 if (!fcoe->pcpu_noddp_ext_buff) {
647 e_err(drv, "failed to alloc noddp extra buff cnt\n");
648 goto out_pcpu_noddp_extra_buff_alloc_fail;
649 }
650
651 for_each_possible_cpu(cpu) {
652 *per_cpu_ptr(fcoe->pcpu_noddp, cpu) = 0;
653 *per_cpu_ptr(fcoe->pcpu_noddp_ext_buff, cpu) = 0;
654 }
Yi Zoud0ed8932009-05-13 13:11:29 +0000655 }
Yi Zou29ebf6f2009-05-17 12:34:14 +0000656
657 /* Enable L2 eth type filter for FCoE */
Yi Zoud3a2ae62009-05-13 13:10:21 +0000658 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FCOE),
659 (ETH_P_FCOE | IXGBE_ETQF_FCOE | IXGBE_ETQF_FILTER_EN));
Chris Leechaf063932010-03-24 12:45:21 +0000660 /* Enable L2 eth type filter for FIP */
661 IXGBE_WRITE_REG(hw, IXGBE_ETQF(IXGBE_ETQF_FILTER_FIP),
662 (ETH_P_FIP | IXGBE_ETQF_FILTER_EN));
Yi Zou29ebf6f2009-05-17 12:34:14 +0000663 if (adapter->ring_feature[RING_F_FCOE].indices) {
664 /* Use multiple rx queues for FCoE by redirection table */
665 for (i = 0; i < IXGBE_FCRETA_SIZE; i++) {
666 fcoe_i = f->mask + i % f->indices;
667 fcoe_i &= IXGBE_FCRETA_ENTRY_MASK;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000668 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000669 IXGBE_WRITE_REG(hw, IXGBE_FCRETA(i), fcoe_q);
670 }
671 IXGBE_WRITE_REG(hw, IXGBE_FCRECTL, IXGBE_FCRECTL_ENA);
672 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FCOE), 0);
673 } else {
674 /* Use single rx queue for FCoE */
675 fcoe_i = f->mask;
PJ Waskiewicz4a0b9ca2010-02-03 14:19:12 +0000676 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
Yi Zou29ebf6f2009-05-17 12:34:14 +0000677 IXGBE_WRITE_REG(hw, IXGBE_FCRECTL, 0);
678 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FCOE),
679 IXGBE_ETQS_QUEUE_EN |
680 (fcoe_q << IXGBE_ETQS_RX_QUEUE_SHIFT));
681 }
Chris Leechaf063932010-03-24 12:45:21 +0000682 /* send FIP frames to the first FCoE queue */
683 fcoe_i = f->mask;
684 fcoe_q = adapter->rx_ring[fcoe_i]->reg_idx;
685 IXGBE_WRITE_REG(hw, IXGBE_ETQS(IXGBE_ETQF_FILTER_FIP),
686 IXGBE_ETQS_QUEUE_EN |
687 (fcoe_q << IXGBE_ETQS_RX_QUEUE_SHIFT));
Yi Zou29ebf6f2009-05-17 12:34:14 +0000688
Vasu Dev934c18c2011-08-18 06:20:07 +0000689 IXGBE_WRITE_REG(hw, IXGBE_FCRXCTRL, IXGBE_FCRXCTRL_FCCRCBO |
Yi Zoud3a2ae62009-05-13 13:10:21 +0000690 (FC_FCOE_VER << IXGBE_FCRXCTRL_FCOEVER_SHIFT));
Amir Hananiac6006362011-02-15 09:11:31 +0000691 return;
Amir Hanania7b859eb2011-08-31 02:07:55 +0000692out_pcpu_noddp_extra_buff_alloc_fail:
693 free_percpu(fcoe->pcpu_noddp);
694out_pcpu_noddp_alloc_fail:
695 dma_unmap_single(&adapter->pdev->dev,
696 fcoe->extra_ddp_buffer_dma,
697 IXGBE_FCBUFF_MIN,
698 DMA_FROM_DEVICE);
Vasu Devdadbe852011-05-11 05:41:46 +0000699out_extra_ddp_buffer:
Amir Hananiac6006362011-02-15 09:11:31 +0000700 kfree(fcoe->extra_ddp_buffer);
Vasu Devdadbe852011-05-11 05:41:46 +0000701out_ddp_pools:
702 ixgbe_fcoe_ddp_pools_free(fcoe);
Yi Zoud3a2ae62009-05-13 13:10:21 +0000703}
Yi Zoud0ed8932009-05-13 13:11:29 +0000704
705/**
706 * ixgbe_cleanup_fcoe - release all fcoe ddp context resources
707 * @adapter : ixgbe adapter
708 *
709 * Cleans up outstanding ddp context resources
710 *
711 * Returns : none
712 */
713void ixgbe_cleanup_fcoe(struct ixgbe_adapter *adapter)
714{
715 int i;
716 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
717
Vasu Devdadbe852011-05-11 05:41:46 +0000718 if (!fcoe->pool)
719 return;
720
721 for (i = 0; i < IXGBE_FCOE_DDP_MAX; i++)
722 ixgbe_fcoe_ddp_put(adapter->netdev, i);
723 dma_unmap_single(&adapter->pdev->dev,
724 fcoe->extra_ddp_buffer_dma,
725 IXGBE_FCBUFF_MIN,
726 DMA_FROM_DEVICE);
Amir Hanania7b859eb2011-08-31 02:07:55 +0000727 free_percpu(fcoe->pcpu_noddp);
728 free_percpu(fcoe->pcpu_noddp_ext_buff);
Vasu Devdadbe852011-05-11 05:41:46 +0000729 kfree(fcoe->extra_ddp_buffer);
730 ixgbe_fcoe_ddp_pools_free(fcoe);
Yi Zoud0ed8932009-05-13 13:11:29 +0000731}
Yi Zou8450ff82009-08-31 12:32:14 +0000732
733/**
734 * ixgbe_fcoe_enable - turn on FCoE offload feature
735 * @netdev: the corresponding netdev
736 *
737 * Turns on FCoE offload feature in 82599.
738 *
739 * Returns : 0 indicates success or -EINVAL on failure
740 */
741int ixgbe_fcoe_enable(struct net_device *netdev)
742{
743 int rc = -EINVAL;
744 struct ixgbe_adapter *adapter = netdev_priv(netdev);
Yi Zou27ab7602010-10-20 23:00:30 +0000745 struct ixgbe_fcoe *fcoe = &adapter->fcoe;
Yi Zou8450ff82009-08-31 12:32:14 +0000746
747
748 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
749 goto out_enable;
750
Yi Zou27ab7602010-10-20 23:00:30 +0000751 atomic_inc(&fcoe->refcnt);
Yi Zou8450ff82009-08-31 12:32:14 +0000752 if (adapter->flags & IXGBE_FLAG_FCOE_ENABLED)
753 goto out_enable;
754
Emil Tantilov396e7992010-07-01 20:05:12 +0000755 e_info(drv, "Enabling FCoE offload features.\n");
Yi Zou8450ff82009-08-31 12:32:14 +0000756 if (netif_running(netdev))
757 netdev->netdev_ops->ndo_stop(netdev);
758
759 ixgbe_clear_interrupt_scheme(adapter);
760
761 adapter->flags |= IXGBE_FLAG_FCOE_ENABLED;
762 adapter->ring_feature[RING_F_FCOE].indices = IXGBE_FCRETA_SIZE;
763 netdev->features |= NETIF_F_FCOE_CRC;
764 netdev->features |= NETIF_F_FSO;
765 netdev->features |= NETIF_F_FCOE_MTU;
Yi Zou8450ff82009-08-31 12:32:14 +0000766 netdev->fcoe_ddp_xid = IXGBE_FCOE_DDP_MAX - 1;
Yi Zou8450ff82009-08-31 12:32:14 +0000767
768 ixgbe_init_interrupt_scheme(adapter);
Vasu Dev936332b2010-03-19 04:33:10 +0000769 netdev_features_change(netdev);
Yi Zou8450ff82009-08-31 12:32:14 +0000770
771 if (netif_running(netdev))
772 netdev->netdev_ops->ndo_open(netdev);
773 rc = 0;
774
775out_enable:
776 return rc;
777}
778
779/**
780 * ixgbe_fcoe_disable - turn off FCoE offload feature
781 * @netdev: the corresponding netdev
782 *
783 * Turns off FCoE offload feature in 82599.
784 *
785 * Returns : 0 indicates success or -EINVAL on failure
786 */
787int ixgbe_fcoe_disable(struct net_device *netdev)
788{
789 int rc = -EINVAL;
790 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
793 if (!(adapter->flags & IXGBE_FLAG_FCOE_CAPABLE))
794 goto out_disable;
795
796 if (!(adapter->flags & IXGBE_FLAG_FCOE_ENABLED))
797 goto out_disable;
798
Yi Zou27ab7602010-10-20 23:00:30 +0000799 if (!atomic_dec_and_test(&fcoe->refcnt))
800 goto out_disable;
801
Emil Tantilov396e7992010-07-01 20:05:12 +0000802 e_info(drv, "Disabling FCoE offload features.\n");
Yi Zou5e09d7f2010-07-19 13:59:52 +0000803 netdev->features &= ~NETIF_F_FCOE_CRC;
804 netdev->features &= ~NETIF_F_FSO;
805 netdev->features &= ~NETIF_F_FCOE_MTU;
806 netdev->fcoe_ddp_xid = 0;
807 netdev_features_change(netdev);
808
Yi Zou8450ff82009-08-31 12:32:14 +0000809 if (netif_running(netdev))
810 netdev->netdev_ops->ndo_stop(netdev);
811
812 ixgbe_clear_interrupt_scheme(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000813 adapter->flags &= ~IXGBE_FLAG_FCOE_ENABLED;
814 adapter->ring_feature[RING_F_FCOE].indices = 0;
Yi Zou8450ff82009-08-31 12:32:14 +0000815 ixgbe_cleanup_fcoe(adapter);
Yi Zou8450ff82009-08-31 12:32:14 +0000816 ixgbe_init_interrupt_scheme(adapter);
Vasu Dev936332b2010-03-19 04:33:10 +0000817
Yi Zou8450ff82009-08-31 12:32:14 +0000818 if (netif_running(netdev))
819 netdev->netdev_ops->ndo_open(netdev);
820 rc = 0;
821
822out_disable:
823 return rc;
824}
Yi Zou6ee16522009-08-31 12:34:28 +0000825
Yi Zou61a1fa12009-10-28 18:24:56 +0000826/**
827 * ixgbe_fcoe_get_wwn - get world wide name for the node or the port
828 * @netdev : ixgbe adapter
829 * @wwn : the world wide name
830 * @type: the type of world wide name
831 *
832 * Returns the node or port world wide name if both the prefix and the san
833 * mac address are valid, then the wwn is formed based on the NAA-2 for
834 * IEEE Extended name identifier (ref. to T10 FC-LS Spec., Sec. 15.3).
835 *
836 * Returns : 0 on success
837 */
838int ixgbe_fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type)
839{
840 int rc = -EINVAL;
841 u16 prefix = 0xffff;
842 struct ixgbe_adapter *adapter = netdev_priv(netdev);
843 struct ixgbe_mac_info *mac = &adapter->hw.mac;
844
845 switch (type) {
846 case NETDEV_FCOE_WWNN:
847 prefix = mac->wwnn_prefix;
848 break;
849 case NETDEV_FCOE_WWPN:
850 prefix = mac->wwpn_prefix;
851 break;
852 default:
853 break;
854 }
855
856 if ((prefix != 0xffff) &&
857 is_valid_ether_addr(mac->san_addr)) {
858 *wwn = ((u64) prefix << 48) |
859 ((u64) mac->san_addr[0] << 40) |
860 ((u64) mac->san_addr[1] << 32) |
861 ((u64) mac->san_addr[2] << 24) |
862 ((u64) mac->san_addr[3] << 16) |
863 ((u64) mac->san_addr[4] << 8) |
864 ((u64) mac->san_addr[5]);
865 rc = 0;
866 }
867 return rc;
868}
Neerav Parikhea818752012-01-04 20:23:40 +0000869
870/**
871 * ixgbe_fcoe_get_hbainfo - get FCoE HBA information
872 * @netdev : ixgbe adapter
873 * @info : HBA information
874 *
875 * Returns ixgbe HBA information
876 *
877 * Returns : 0 on success
878 */
879int ixgbe_fcoe_get_hbainfo(struct net_device *netdev,
880 struct netdev_fcoe_hbainfo *info)
881{
882 struct ixgbe_adapter *adapter = netdev_priv(netdev);
883 struct ixgbe_hw *hw = &adapter->hw;
884 int i, pos;
885 u8 buf[8];
886
887 if (!info)
888 return -EINVAL;
889
890 /* Don't return information on unsupported devices */
891 if (hw->mac.type != ixgbe_mac_82599EB &&
892 hw->mac.type != ixgbe_mac_X540)
893 return -EINVAL;
894
895 /* Manufacturer */
896 snprintf(info->manufacturer, sizeof(info->manufacturer),
897 "Intel Corporation");
898
899 /* Serial Number */
900
901 /* Get the PCI-e Device Serial Number Capability */
902 pos = pci_find_ext_capability(adapter->pdev, PCI_EXT_CAP_ID_DSN);
903 if (pos) {
904 pos += 4;
905 for (i = 0; i < 8; i++)
906 pci_read_config_byte(adapter->pdev, pos + i, &buf[i]);
907
908 snprintf(info->serial_number, sizeof(info->serial_number),
909 "%02X%02X%02X%02X%02X%02X%02X%02X",
910 buf[7], buf[6], buf[5], buf[4],
911 buf[3], buf[2], buf[1], buf[0]);
912 } else
913 snprintf(info->serial_number, sizeof(info->serial_number),
914 "Unknown");
915
916 /* Hardware Version */
917 snprintf(info->hardware_version,
918 sizeof(info->hardware_version),
919 "Rev %d", hw->revision_id);
920 /* Driver Name/Version */
921 snprintf(info->driver_version,
922 sizeof(info->driver_version),
923 "%s v%s",
924 ixgbe_driver_name,
925 ixgbe_driver_version);
926 /* Firmware Version */
927 snprintf(info->firmware_version,
928 sizeof(info->firmware_version),
929 "0x%08x",
930 (adapter->eeprom_verh << 16) |
931 adapter->eeprom_verl);
932
933 /* Model */
934 if (hw->mac.type == ixgbe_mac_82599EB) {
935 snprintf(info->model,
936 sizeof(info->model),
937 "Intel 82599");
938 } else {
939 snprintf(info->model,
940 sizeof(info->model),
941 "Intel X540");
942 }
943
944 /* Model Description */
945 snprintf(info->model_description,
946 sizeof(info->model_description),
947 "%s",
948 ixgbe_default_device_descr);
949
950 return 0;
951}