2 * Copyright 2008 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
5 * This program is free software; you may redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
10 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
11 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
12 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
13 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
14 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
15 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18 #include <linux/errno.h>
19 #include <linux/pci.h>
20 #include <linux/skbuff.h>
21 #include <linux/interrupt.h>
22 #include <linux/spinlock.h>
23 #include <linux/if_ether.h>
24 #include <linux/if_vlan.h>
25 #include <linux/workqueue.h>
26 #include <scsi/fc/fc_fip.h>
27 #include <scsi/fc/fc_els.h>
28 #include <scsi/fc/fc_fcoe.h>
29 #include <scsi/fc_frame.h>
30 #include <scsi/libfc.h>
33 #include "cq_enet_desc.h"
34 #include "cq_exch_desc.h"
36 struct workqueue_struct
*fnic_event_queue
;
38 static void fnic_set_eth_mode(struct fnic
*);
40 void fnic_handle_link(struct work_struct
*work
)
42 struct fnic
*fnic
= container_of(work
, struct fnic
, link_work
);
45 u32 old_link_down_cnt
;
47 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
49 if (fnic
->stop_rx_link_events
) {
50 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
54 old_link_down_cnt
= fnic
->link_down_cnt
;
55 old_link_status
= fnic
->link_status
;
56 fnic
->link_status
= vnic_dev_link_status(fnic
->vdev
);
57 fnic
->link_down_cnt
= vnic_dev_link_down_cnt(fnic
->vdev
);
59 if (old_link_status
== fnic
->link_status
) {
60 if (!fnic
->link_status
)
62 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
64 if (old_link_down_cnt
!= fnic
->link_down_cnt
) {
65 /* UP -> DOWN -> UP */
66 fnic
->lport
->host_stats
.link_failure_count
++;
67 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
68 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
,
70 fcoe_ctlr_link_down(&fnic
->ctlr
);
71 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
,
73 fcoe_ctlr_link_up(&fnic
->ctlr
);
76 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
78 } else if (fnic
->link_status
) {
80 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
81 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
, "link up\n");
82 fcoe_ctlr_link_up(&fnic
->ctlr
);
85 fnic
->lport
->host_stats
.link_failure_count
++;
86 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
87 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
, "link down\n");
88 fcoe_ctlr_link_down(&fnic
->ctlr
);
94 * This function passes incoming fabric frames to libFC
96 void fnic_handle_frame(struct work_struct
*work
)
98 struct fnic
*fnic
= container_of(work
, struct fnic
, frame_work
);
99 struct fc_lport
*lp
= fnic
->lport
;
104 while ((skb
= skb_dequeue(&fnic
->frame_queue
))) {
106 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
107 if (fnic
->stop_rx_link_events
) {
108 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
112 fp
= (struct fc_frame
*)skb
;
115 * If we're in a transitional state, just re-queue and return.
116 * The queue will be serviced when we get to a stable state.
118 if (fnic
->state
!= FNIC_IN_FC_MODE
&&
119 fnic
->state
!= FNIC_IN_ETH_MODE
) {
120 skb_queue_head(&fnic
->frame_queue
, skb
);
121 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
124 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
126 fc_exch_recv(lp
, fp
);
131 * fnic_import_rq_eth_pkt() - handle received FCoE or FIP frame.
132 * @fnic: fnic instance.
133 * @skb: Ethernet Frame.
135 static inline int fnic_import_rq_eth_pkt(struct fnic
*fnic
, struct sk_buff
*skb
)
139 struct fcoe_hdr
*fcoe_hdr
;
140 struct fcoe_crc_eof
*ft
;
143 * Undo VLAN encapsulation if present.
145 eh
= (struct ethhdr
*)skb
->data
;
146 if (eh
->h_proto
== htons(ETH_P_8021Q
)) {
147 memmove((u8
*)eh
+ VLAN_HLEN
, eh
, ETH_ALEN
* 2);
148 eh
= (struct ethhdr
*)skb_pull(skb
, VLAN_HLEN
);
149 skb_reset_mac_header(skb
);
151 if (eh
->h_proto
== htons(ETH_P_FIP
)) {
152 skb_pull(skb
, sizeof(*eh
));
153 fcoe_ctlr_recv(&fnic
->ctlr
, skb
);
154 return 1; /* let caller know packet was used */
156 if (eh
->h_proto
!= htons(ETH_P_FCOE
))
158 skb_set_network_header(skb
, sizeof(*eh
));
159 skb_pull(skb
, sizeof(*eh
));
161 fcoe_hdr
= (struct fcoe_hdr
*)skb
->data
;
162 if (FC_FCOE_DECAPS_VER(fcoe_hdr
) != FC_FCOE_VER
)
165 fp
= (struct fc_frame
*)skb
;
167 fr_sof(fp
) = fcoe_hdr
->fcoe_sof
;
168 skb_pull(skb
, sizeof(struct fcoe_hdr
));
169 skb_reset_transport_header(skb
);
171 ft
= (struct fcoe_crc_eof
*)(skb
->data
+ skb
->len
- sizeof(*ft
));
172 fr_eof(fp
) = ft
->fcoe_eof
;
173 skb_trim(skb
, skb
->len
- sizeof(*ft
));
176 dev_kfree_skb_irq(skb
);
181 * fnic_update_mac_locked() - set data MAC address and filters.
182 * @fnic: fnic instance.
183 * @new: newly-assigned FCoE MAC address.
185 * Called with the fnic lock held.
187 void fnic_update_mac_locked(struct fnic
*fnic
, u8
*new)
189 u8
*ctl
= fnic
->ctlr
.ctl_src_addr
;
190 u8
*data
= fnic
->data_src_addr
;
192 if (is_zero_ether_addr(new))
194 if (!compare_ether_addr(data
, new))
196 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
, "update_mac %pM\n", new);
197 if (!is_zero_ether_addr(data
) && compare_ether_addr(data
, ctl
))
198 vnic_dev_del_addr(fnic
->vdev
, data
);
199 memcpy(data
, new, ETH_ALEN
);
200 if (compare_ether_addr(new, ctl
))
201 vnic_dev_add_addr(fnic
->vdev
, new);
205 * fnic_update_mac() - set data MAC address and filters.
206 * @lport: local port.
207 * @new: newly-assigned FCoE MAC address.
209 void fnic_update_mac(struct fc_lport
*lport
, u8
*new)
211 struct fnic
*fnic
= lport_priv(lport
);
213 spin_lock_irq(&fnic
->fnic_lock
);
214 fnic_update_mac_locked(fnic
, new);
215 spin_unlock_irq(&fnic
->fnic_lock
);
219 * fnic_set_port_id() - set the port_ID after successful FLOGI.
220 * @lport: local port.
221 * @port_id: assigned FC_ID.
222 * @fp: received frame containing the FLOGI accept or NULL.
224 * This is called from libfc when a new FC_ID has been assigned.
225 * This causes us to reset the firmware to FC_MODE and setup the new MAC
228 * It is also called with FC_ID 0 when we're logged off.
230 * If the FC_ID is due to point-to-point, fp may be NULL.
232 void fnic_set_port_id(struct fc_lport
*lport
, u32 port_id
, struct fc_frame
*fp
)
234 struct fnic
*fnic
= lport_priv(lport
);
238 FNIC_FCS_DBG(KERN_DEBUG
, lport
->host
, "set port_id %x fp %p\n",
242 * If we're clearing the FC_ID, change to use the ctl_src_addr.
243 * Set ethernet mode to send FLOGI.
246 fnic_update_mac(lport
, fnic
->ctlr
.ctl_src_addr
);
247 fnic_set_eth_mode(fnic
);
252 mac
= fr_cb(fp
)->granted_mac
;
253 if (is_zero_ether_addr(mac
)) {
254 /* non-FIP - FLOGI already accepted - ignore return */
255 fcoe_ctlr_recv_flogi(&fnic
->ctlr
, lport
, fp
);
257 fnic_update_mac(lport
, mac
);
260 /* Change state to reflect transition to FC mode */
261 spin_lock_irq(&fnic
->fnic_lock
);
262 if (fnic
->state
== FNIC_IN_ETH_MODE
|| fnic
->state
== FNIC_IN_FC_MODE
)
263 fnic
->state
= FNIC_IN_ETH_TRANS_FC_MODE
;
265 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
,
266 "Unexpected fnic state %s while"
267 " processing flogi resp\n",
268 fnic_state_to_str(fnic
->state
));
269 spin_unlock_irq(&fnic
->fnic_lock
);
272 spin_unlock_irq(&fnic
->fnic_lock
);
275 * Send FLOGI registration to firmware to set up FC mode.
276 * The new address will be set up when registration completes.
278 ret
= fnic_flogi_reg_handler(fnic
, port_id
);
281 spin_lock_irq(&fnic
->fnic_lock
);
282 if (fnic
->state
== FNIC_IN_ETH_TRANS_FC_MODE
)
283 fnic
->state
= FNIC_IN_ETH_MODE
;
284 spin_unlock_irq(&fnic
->fnic_lock
);
288 static void fnic_rq_cmpl_frame_recv(struct vnic_rq
*rq
, struct cq_desc
289 *cq_desc
, struct vnic_rq_buf
*buf
,
290 int skipped
__attribute__((unused
)),
293 struct fnic
*fnic
= vnic_dev_priv(rq
->vdev
);
296 unsigned int eth_hdrs_stripped
;
297 u8 type
, color
, eop
, sop
, ingress_port
, vlan_stripped
;
298 u8 fcoe
= 0, fcoe_sof
, fcoe_eof
;
299 u8 fcoe_fc_crc_ok
= 1, fcoe_enc_error
= 0;
300 u8 tcp_udp_csum_ok
, udp
, tcp
, ipv4_csum_ok
;
301 u8 ipv6
, ipv4
, ipv4_fragment
, rss_type
, csum_not_calc
;
302 u8 fcs_ok
= 1, packet_error
= 0;
303 u16 q_number
, completed_index
, bytes_written
= 0, vlan
, checksum
;
305 u16 exchange_id
, tmpl
;
308 u32 fcp_bytes_written
= 0;
311 pci_unmap_single(fnic
->pdev
, buf
->dma_addr
, buf
->len
,
314 fp
= (struct fc_frame
*)skb
;
317 cq_desc_dec(cq_desc
, &type
, &color
, &q_number
, &completed_index
);
318 if (type
== CQ_DESC_TYPE_RQ_FCP
) {
319 cq_fcp_rq_desc_dec((struct cq_fcp_rq_desc
*)cq_desc
,
320 &type
, &color
, &q_number
, &completed_index
,
321 &eop
, &sop
, &fcoe_fc_crc_ok
, &exchange_id
,
322 &tmpl
, &fcp_bytes_written
, &sof
, &eof
,
323 &ingress_port
, &packet_error
,
324 &fcoe_enc_error
, &fcs_ok
, &vlan_stripped
,
326 eth_hdrs_stripped
= 1;
327 skb_trim(skb
, fcp_bytes_written
);
331 } else if (type
== CQ_DESC_TYPE_RQ_ENET
) {
332 cq_enet_rq_desc_dec((struct cq_enet_rq_desc
*)cq_desc
,
333 &type
, &color
, &q_number
, &completed_index
,
334 &ingress_port
, &fcoe
, &eop
, &sop
,
335 &rss_type
, &csum_not_calc
, &rss_hash
,
336 &bytes_written
, &packet_error
,
337 &vlan_stripped
, &vlan
, &checksum
,
338 &fcoe_sof
, &fcoe_fc_crc_ok
,
339 &fcoe_enc_error
, &fcoe_eof
,
340 &tcp_udp_csum_ok
, &udp
, &tcp
,
341 &ipv4_csum_ok
, &ipv6
, &ipv4
,
342 &ipv4_fragment
, &fcs_ok
);
343 eth_hdrs_stripped
= 0;
344 skb_trim(skb
, bytes_written
);
346 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
,
347 "fcs error. dropping packet.\n");
350 if (fnic_import_rq_eth_pkt(fnic
, skb
))
355 shost_printk(KERN_ERR
, fnic
->lport
->host
,
356 "fnic rq_cmpl wrong cq type x%x\n", type
);
360 if (!fcs_ok
|| packet_error
|| !fcoe_fc_crc_ok
|| fcoe_enc_error
) {
361 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
,
362 "fnic rq_cmpl fcoe x%x fcsok x%x"
363 " pkterr x%x fcoe_fc_crc_ok x%x, fcoe_enc_err"
365 fcoe
, fcs_ok
, packet_error
,
366 fcoe_fc_crc_ok
, fcoe_enc_error
);
370 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
371 if (fnic
->stop_rx_link_events
) {
372 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
375 fr_dev(fp
) = fnic
->lport
;
376 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
378 skb_queue_tail(&fnic
->frame_queue
, skb
);
379 queue_work(fnic_event_queue
, &fnic
->frame_work
);
383 dev_kfree_skb_irq(skb
);
386 static int fnic_rq_cmpl_handler_cont(struct vnic_dev
*vdev
,
387 struct cq_desc
*cq_desc
, u8 type
,
388 u16 q_number
, u16 completed_index
,
391 struct fnic
*fnic
= vnic_dev_priv(vdev
);
393 vnic_rq_service(&fnic
->rq
[q_number
], cq_desc
, completed_index
,
394 VNIC_RQ_RETURN_DESC
, fnic_rq_cmpl_frame_recv
,
399 int fnic_rq_cmpl_handler(struct fnic
*fnic
, int rq_work_to_do
)
401 unsigned int tot_rq_work_done
= 0, cur_work_done
;
405 for (i
= 0; i
< fnic
->rq_count
; i
++) {
406 cur_work_done
= vnic_cq_service(&fnic
->cq
[i
], rq_work_to_do
,
407 fnic_rq_cmpl_handler_cont
,
410 err
= vnic_rq_fill(&fnic
->rq
[i
], fnic_alloc_rq_frame
);
412 shost_printk(KERN_ERR
, fnic
->lport
->host
,
413 "fnic_alloc_rq_frame cant alloc"
416 tot_rq_work_done
+= cur_work_done
;
419 return tot_rq_work_done
;
423 * This function is called once at init time to allocate and fill RQ
424 * buffers. Subsequently, it is called in the interrupt context after RQ
425 * buffer processing to replenish the buffers in the RQ
427 int fnic_alloc_rq_frame(struct vnic_rq
*rq
)
429 struct fnic
*fnic
= vnic_dev_priv(rq
->vdev
);
434 len
= FC_FRAME_HEADROOM
+ FC_MAX_FRAME
+ FC_FRAME_TAILROOM
;
435 skb
= dev_alloc_skb(len
);
437 FNIC_FCS_DBG(KERN_DEBUG
, fnic
->lport
->host
,
438 "Unable to allocate RQ sk_buff\n");
441 skb_reset_mac_header(skb
);
442 skb_reset_transport_header(skb
);
443 skb_reset_network_header(skb
);
445 pa
= pci_map_single(fnic
->pdev
, skb
->data
, len
, PCI_DMA_FROMDEVICE
);
446 fnic_queue_rq_desc(rq
, skb
, pa
, len
);
450 void fnic_free_rq_buf(struct vnic_rq
*rq
, struct vnic_rq_buf
*buf
)
452 struct fc_frame
*fp
= buf
->os_buf
;
453 struct fnic
*fnic
= vnic_dev_priv(rq
->vdev
);
455 pci_unmap_single(fnic
->pdev
, buf
->dma_addr
, buf
->len
,
458 dev_kfree_skb(fp_skb(fp
));
463 * fnic_eth_send() - Send Ethernet frame.
464 * @fip: fcoe_ctlr instance.
465 * @skb: Ethernet Frame, FIP, without VLAN encapsulation.
467 void fnic_eth_send(struct fcoe_ctlr
*fip
, struct sk_buff
*skb
)
469 struct fnic
*fnic
= fnic_from_ctlr(fip
);
470 struct vnic_wq
*wq
= &fnic
->wq
[0];
472 struct ethhdr
*eth_hdr
;
473 struct vlan_ethhdr
*vlan_hdr
;
476 if (!fnic
->vlan_hw_insert
) {
477 eth_hdr
= (struct ethhdr
*)skb_mac_header(skb
);
478 vlan_hdr
= (struct vlan_ethhdr
*)skb_push(skb
,
479 sizeof(*vlan_hdr
) - sizeof(*eth_hdr
));
480 memcpy(vlan_hdr
, eth_hdr
, 2 * ETH_ALEN
);
481 vlan_hdr
->h_vlan_proto
= htons(ETH_P_8021Q
);
482 vlan_hdr
->h_vlan_encapsulated_proto
= eth_hdr
->h_proto
;
483 vlan_hdr
->h_vlan_TCI
= htons(fnic
->vlan_id
);
486 pa
= pci_map_single(fnic
->pdev
, skb
->data
, skb
->len
, PCI_DMA_TODEVICE
);
488 spin_lock_irqsave(&fnic
->wq_lock
[0], flags
);
489 if (!vnic_wq_desc_avail(wq
)) {
490 pci_unmap_single(fnic
->pdev
, pa
, skb
->len
, PCI_DMA_TODEVICE
);
491 spin_unlock_irqrestore(&fnic
->wq_lock
[0], flags
);
496 fnic_queue_wq_eth_desc(wq
, skb
, pa
, skb
->len
,
497 fnic
->vlan_hw_insert
, fnic
->vlan_id
, 1);
498 spin_unlock_irqrestore(&fnic
->wq_lock
[0], flags
);
504 static int fnic_send_frame(struct fnic
*fnic
, struct fc_frame
*fp
)
506 struct vnic_wq
*wq
= &fnic
->wq
[0];
509 struct ethhdr
*eth_hdr
;
510 struct vlan_ethhdr
*vlan_hdr
;
511 struct fcoe_hdr
*fcoe_hdr
;
512 struct fc_frame_header
*fh
;
513 u32 tot_len
, eth_hdr_len
;
517 fh
= fc_frame_header_get(fp
);
520 if (unlikely(fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
) &&
521 fcoe_ctlr_els_send(&fnic
->ctlr
, fnic
->lport
, skb
))
524 if (!fnic
->vlan_hw_insert
) {
525 eth_hdr_len
= sizeof(*vlan_hdr
) + sizeof(*fcoe_hdr
);
526 vlan_hdr
= (struct vlan_ethhdr
*)skb_push(skb
, eth_hdr_len
);
527 eth_hdr
= (struct ethhdr
*)vlan_hdr
;
528 vlan_hdr
->h_vlan_proto
= htons(ETH_P_8021Q
);
529 vlan_hdr
->h_vlan_encapsulated_proto
= htons(ETH_P_FCOE
);
530 vlan_hdr
->h_vlan_TCI
= htons(fnic
->vlan_id
);
531 fcoe_hdr
= (struct fcoe_hdr
*)(vlan_hdr
+ 1);
533 eth_hdr_len
= sizeof(*eth_hdr
) + sizeof(*fcoe_hdr
);
534 eth_hdr
= (struct ethhdr
*)skb_push(skb
, eth_hdr_len
);
535 eth_hdr
->h_proto
= htons(ETH_P_FCOE
);
536 fcoe_hdr
= (struct fcoe_hdr
*)(eth_hdr
+ 1);
539 if (fnic
->ctlr
.map_dest
)
540 fc_fcoe_set_mac(eth_hdr
->h_dest
, fh
->fh_d_id
);
542 memcpy(eth_hdr
->h_dest
, fnic
->ctlr
.dest_addr
, ETH_ALEN
);
543 memcpy(eth_hdr
->h_source
, fnic
->data_src_addr
, ETH_ALEN
);
548 memset(fcoe_hdr
, 0, sizeof(*fcoe_hdr
));
549 fcoe_hdr
->fcoe_sof
= fr_sof(fp
);
551 FC_FCOE_ENCAPS_VER(fcoe_hdr
, FC_FCOE_VER
);
553 pa
= pci_map_single(fnic
->pdev
, eth_hdr
, tot_len
, PCI_DMA_TODEVICE
);
555 spin_lock_irqsave(&fnic
->wq_lock
[0], flags
);
557 if (!vnic_wq_desc_avail(wq
)) {
558 pci_unmap_single(fnic
->pdev
, pa
,
559 tot_len
, PCI_DMA_TODEVICE
);
561 goto fnic_send_frame_end
;
564 fnic_queue_wq_desc(wq
, skb
, pa
, tot_len
, fr_eof(fp
),
565 fnic
->vlan_hw_insert
, fnic
->vlan_id
, 1, 1, 1);
567 spin_unlock_irqrestore(&fnic
->wq_lock
[0], flags
);
570 dev_kfree_skb_any(fp_skb(fp
));
577 * Routine to send a raw frame
579 int fnic_send(struct fc_lport
*lp
, struct fc_frame
*fp
)
581 struct fnic
*fnic
= lport_priv(lp
);
584 if (fnic
->in_remove
) {
585 dev_kfree_skb(fp_skb(fp
));
590 * Queue frame if in a transitional state.
591 * This occurs while registering the Port_ID / MAC address after FLOGI.
593 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
594 if (fnic
->state
!= FNIC_IN_FC_MODE
&& fnic
->state
!= FNIC_IN_ETH_MODE
) {
595 skb_queue_tail(&fnic
->tx_queue
, fp_skb(fp
));
596 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
599 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
601 return fnic_send_frame(fnic
, fp
);
605 * fnic_flush_tx() - send queued frames.
608 * Send frames that were waiting to go out in FC or Ethernet mode.
609 * Whenever changing modes we purge queued frames, so these frames should
610 * be queued for the stable mode that we're in, either FC or Ethernet.
612 * Called without fnic_lock held.
614 void fnic_flush_tx(struct fnic
*fnic
)
619 while ((skb
= skb_dequeue(&fnic
->frame_queue
))) {
620 fp
= (struct fc_frame
*)skb
;
621 fnic_send_frame(fnic
, fp
);
626 * fnic_set_eth_mode() - put fnic into ethernet mode.
629 * Called without fnic lock held.
631 static void fnic_set_eth_mode(struct fnic
*fnic
)
634 enum fnic_state old_state
;
637 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
639 old_state
= fnic
->state
;
641 case FNIC_IN_FC_MODE
:
642 case FNIC_IN_ETH_TRANS_FC_MODE
:
644 fnic
->state
= FNIC_IN_FC_TRANS_ETH_MODE
;
645 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
647 ret
= fnic_fw_reset_handler(fnic
);
649 spin_lock_irqsave(&fnic
->fnic_lock
, flags
);
650 if (fnic
->state
!= FNIC_IN_FC_TRANS_ETH_MODE
)
653 fnic
->state
= old_state
;
656 case FNIC_IN_FC_TRANS_ETH_MODE
:
657 case FNIC_IN_ETH_MODE
:
660 spin_unlock_irqrestore(&fnic
->fnic_lock
, flags
);
663 static void fnic_wq_complete_frame_send(struct vnic_wq
*wq
,
664 struct cq_desc
*cq_desc
,
665 struct vnic_wq_buf
*buf
, void *opaque
)
667 struct sk_buff
*skb
= buf
->os_buf
;
668 struct fc_frame
*fp
= (struct fc_frame
*)skb
;
669 struct fnic
*fnic
= vnic_dev_priv(wq
->vdev
);
671 pci_unmap_single(fnic
->pdev
, buf
->dma_addr
,
672 buf
->len
, PCI_DMA_TODEVICE
);
673 dev_kfree_skb_irq(fp_skb(fp
));
677 static int fnic_wq_cmpl_handler_cont(struct vnic_dev
*vdev
,
678 struct cq_desc
*cq_desc
, u8 type
,
679 u16 q_number
, u16 completed_index
,
682 struct fnic
*fnic
= vnic_dev_priv(vdev
);
685 spin_lock_irqsave(&fnic
->wq_lock
[q_number
], flags
);
686 vnic_wq_service(&fnic
->wq
[q_number
], cq_desc
, completed_index
,
687 fnic_wq_complete_frame_send
, NULL
);
688 spin_unlock_irqrestore(&fnic
->wq_lock
[q_number
], flags
);
693 int fnic_wq_cmpl_handler(struct fnic
*fnic
, int work_to_do
)
695 unsigned int wq_work_done
= 0;
698 for (i
= 0; i
< fnic
->raw_wq_count
; i
++) {
699 wq_work_done
+= vnic_cq_service(&fnic
->cq
[fnic
->rq_count
+i
],
701 fnic_wq_cmpl_handler_cont
,
709 void fnic_free_wq_buf(struct vnic_wq
*wq
, struct vnic_wq_buf
*buf
)
711 struct fc_frame
*fp
= buf
->os_buf
;
712 struct fnic
*fnic
= vnic_dev_priv(wq
->vdev
);
714 pci_unmap_single(fnic
->pdev
, buf
->dma_addr
,
715 buf
->len
, PCI_DMA_TODEVICE
);
717 dev_kfree_skb(fp_skb(fp
));