1 /* bnx2fc_fcoe.c: Broadcom NetXtreme II Linux FCoE offload driver.
2 * This file contains the code that interacts with libfc, libfcoe,
3 * cnic modules to create FCoE instances, send/receive non-offloaded
4 * FIP/FCoE packets, listen to link events etc.
6 * Copyright (c) 2008 - 2013 Broadcom Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation.
12 * Written by: Bhanu Prakash Gollapudi (bprakash@broadcom.com)
17 static struct list_head adapter_list
;
18 static struct list_head if_list
;
19 static u32 adapter_count
;
20 static DEFINE_MUTEX(bnx2fc_dev_lock
);
21 DEFINE_PER_CPU(struct bnx2fc_percpu_s
, bnx2fc_percpu
);
23 #define DRV_MODULE_NAME "bnx2fc"
24 #define DRV_MODULE_VERSION BNX2FC_VERSION
25 #define DRV_MODULE_RELDATE "Mar 08, 2013"
28 static char version
[] =
29 "Broadcom NetXtreme II FCoE Driver " DRV_MODULE_NAME \
30 " v" DRV_MODULE_VERSION
" (" DRV_MODULE_RELDATE
")\n";
33 MODULE_AUTHOR("Bhanu Prakash Gollapudi <bprakash@broadcom.com>");
34 MODULE_DESCRIPTION("Broadcom NetXtreme II BCM57710 FCoE Driver");
35 MODULE_LICENSE("GPL");
36 MODULE_VERSION(DRV_MODULE_VERSION
);
38 #define BNX2FC_MAX_QUEUE_DEPTH 256
39 #define BNX2FC_MIN_QUEUE_DEPTH 32
40 #define FCOE_WORD_TO_BYTE 4
42 static struct scsi_transport_template
*bnx2fc_transport_template
;
43 static struct scsi_transport_template
*bnx2fc_vport_xport_template
;
45 struct workqueue_struct
*bnx2fc_wq
;
47 /* bnx2fc structure needs only one instance of the fcoe_percpu_s structure.
48 * Here the io threads are per cpu but the l2 thread is just one
50 struct fcoe_percpu_s bnx2fc_global
;
51 DEFINE_SPINLOCK(bnx2fc_global_lock
);
53 static struct cnic_ulp_ops bnx2fc_cnic_cb
;
54 static struct libfc_function_template bnx2fc_libfc_fcn_templ
;
55 static struct scsi_host_template bnx2fc_shost_template
;
56 static struct fc_function_template bnx2fc_transport_function
;
57 static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ
;
58 static struct fc_function_template bnx2fc_vport_xport_function
;
59 static int bnx2fc_create(struct net_device
*netdev
, enum fip_state fip_mode
);
60 static void __bnx2fc_destroy(struct bnx2fc_interface
*interface
);
61 static int bnx2fc_destroy(struct net_device
*net_device
);
62 static int bnx2fc_enable(struct net_device
*netdev
);
63 static int bnx2fc_disable(struct net_device
*netdev
);
65 /* fcoe_syfs control interface handlers */
66 static int bnx2fc_ctlr_alloc(struct net_device
*netdev
);
67 static int bnx2fc_ctlr_enabled(struct fcoe_ctlr_device
*cdev
);
69 static void bnx2fc_recv_frame(struct sk_buff
*skb
);
71 static void bnx2fc_start_disc(struct bnx2fc_interface
*interface
);
72 static int bnx2fc_shost_config(struct fc_lport
*lport
, struct device
*dev
);
73 static int bnx2fc_lport_config(struct fc_lport
*lport
);
74 static int bnx2fc_em_config(struct fc_lport
*lport
, struct bnx2fc_hba
*hba
);
75 static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba
*hba
);
76 static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba
*hba
);
77 static int bnx2fc_bind_pcidev(struct bnx2fc_hba
*hba
);
78 static void bnx2fc_unbind_pcidev(struct bnx2fc_hba
*hba
);
79 static struct fc_lport
*bnx2fc_if_create(struct bnx2fc_interface
*interface
,
80 struct device
*parent
, int npiv
);
81 static void bnx2fc_destroy_work(struct work_struct
*work
);
83 static struct bnx2fc_hba
*bnx2fc_hba_lookup(struct net_device
*phys_dev
);
84 static struct bnx2fc_interface
*bnx2fc_interface_lookup(struct net_device
86 static inline void bnx2fc_interface_put(struct bnx2fc_interface
*interface
);
87 static struct bnx2fc_hba
*bnx2fc_find_hba_for_cnic(struct cnic_dev
*cnic
);
89 static int bnx2fc_fw_init(struct bnx2fc_hba
*hba
);
90 static void bnx2fc_fw_destroy(struct bnx2fc_hba
*hba
);
92 static void bnx2fc_port_shutdown(struct fc_lport
*lport
);
93 static void bnx2fc_stop(struct bnx2fc_interface
*interface
);
94 static int __init
bnx2fc_mod_init(void);
95 static void __exit
bnx2fc_mod_exit(void);
97 unsigned int bnx2fc_debug_level
;
98 module_param_named(debug_logging
, bnx2fc_debug_level
, int, S_IRUGO
|S_IWUSR
);
100 static int bnx2fc_cpu_callback(struct notifier_block
*nfb
,
101 unsigned long action
, void *hcpu
);
102 /* notification function for CPU hotplug events */
103 static struct notifier_block bnx2fc_cpu_notifier
= {
104 .notifier_call
= bnx2fc_cpu_callback
,
107 static inline struct net_device
*bnx2fc_netdev(const struct fc_lport
*lport
)
109 return ((struct bnx2fc_interface
*)
110 ((struct fcoe_port
*)lport_priv(lport
))->priv
)->netdev
;
113 static void bnx2fc_fcf_get_vlan_id(struct fcoe_fcf_device
*fcf_dev
)
115 struct fcoe_ctlr_device
*ctlr_dev
=
116 fcoe_fcf_dev_to_ctlr_dev(fcf_dev
);
117 struct fcoe_ctlr
*ctlr
= fcoe_ctlr_device_priv(ctlr_dev
);
118 struct bnx2fc_interface
*fcoe
= fcoe_ctlr_priv(ctlr
);
120 fcf_dev
->vlan_id
= fcoe
->vlan_id
;
123 static void bnx2fc_clean_rx_queue(struct fc_lport
*lp
)
125 struct fcoe_percpu_s
*bg
;
126 struct fcoe_rcv_info
*fr
;
127 struct sk_buff_head
*list
;
128 struct sk_buff
*skb
, *next
;
129 struct sk_buff
*head
;
132 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
133 list
= &bg
->fcoe_rx_list
;
135 for (skb
= head
; skb
!= (struct sk_buff
*)list
;
138 fr
= fcoe_dev_from_skb(skb
);
139 if (fr
->fr_dev
== lp
) {
140 __skb_unlink(skb
, list
);
144 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
147 int bnx2fc_get_paged_crc_eof(struct sk_buff
*skb
, int tlen
)
150 spin_lock(&bnx2fc_global_lock
);
151 rc
= fcoe_get_paged_crc_eof(skb
, tlen
, &bnx2fc_global
);
152 spin_unlock(&bnx2fc_global_lock
);
157 static void bnx2fc_abort_io(struct fc_lport
*lport
)
160 * This function is no-op for bnx2fc, but we do
161 * not want to leave it as NULL either, as libfc
162 * can call the default function which is
167 static void bnx2fc_cleanup(struct fc_lport
*lport
)
169 struct fcoe_port
*port
= lport_priv(lport
);
170 struct bnx2fc_interface
*interface
= port
->priv
;
171 struct bnx2fc_hba
*hba
= interface
->hba
;
172 struct bnx2fc_rport
*tgt
;
175 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
176 mutex_lock(&hba
->hba_mutex
);
177 spin_lock_bh(&hba
->hba_lock
);
178 for (i
= 0; i
< BNX2FC_NUM_MAX_SESS
; i
++) {
179 tgt
= hba
->tgt_ofld_list
[i
];
181 /* Cleanup IOs belonging to requested vport */
182 if (tgt
->port
== port
) {
183 spin_unlock_bh(&hba
->hba_lock
);
184 BNX2FC_TGT_DBG(tgt
, "flush/cleanup\n");
185 bnx2fc_flush_active_ios(tgt
);
186 spin_lock_bh(&hba
->hba_lock
);
190 spin_unlock_bh(&hba
->hba_lock
);
191 mutex_unlock(&hba
->hba_mutex
);
194 static int bnx2fc_xmit_l2_frame(struct bnx2fc_rport
*tgt
,
197 struct fc_rport_priv
*rdata
= tgt
->rdata
;
198 struct fc_frame_header
*fh
;
201 fh
= fc_frame_header_get(fp
);
202 BNX2FC_TGT_DBG(tgt
, "Xmit L2 frame rport = 0x%x, oxid = 0x%x, "
203 "r_ctl = 0x%x\n", rdata
->ids
.port_id
,
204 ntohs(fh
->fh_ox_id
), fh
->fh_r_ctl
);
205 if ((fh
->fh_type
== FC_TYPE_ELS
) &&
206 (fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
)) {
208 switch (fc_frame_payload_op(fp
)) {
210 rc
= bnx2fc_send_adisc(tgt
, fp
);
213 rc
= bnx2fc_send_logo(tgt
, fp
);
216 rc
= bnx2fc_send_rls(tgt
, fp
);
221 } else if ((fh
->fh_type
== FC_TYPE_BLS
) &&
222 (fh
->fh_r_ctl
== FC_RCTL_BA_ABTS
))
223 BNX2FC_TGT_DBG(tgt
, "ABTS frame\n");
225 BNX2FC_TGT_DBG(tgt
, "Send L2 frame type 0x%x "
226 "rctl 0x%x thru non-offload path\n",
227 fh
->fh_type
, fh
->fh_r_ctl
);
237 * bnx2fc_xmit - bnx2fc's FCoE frame transmit function
239 * @lport: the associated local port
240 * @fp: the fc_frame to be transmitted
242 static int bnx2fc_xmit(struct fc_lport
*lport
, struct fc_frame
*fp
)
245 struct fcoe_crc_eof
*cp
;
247 struct fc_frame_header
*fh
;
248 struct bnx2fc_interface
*interface
;
249 struct fcoe_ctlr
*ctlr
;
250 struct bnx2fc_hba
*hba
;
251 struct fcoe_port
*port
;
253 struct bnx2fc_rport
*tgt
;
254 struct fc_stats
*stats
;
257 unsigned int hlen
, tlen
, elen
;
260 port
= (struct fcoe_port
*)lport_priv(lport
);
261 interface
= port
->priv
;
262 ctlr
= bnx2fc_to_ctlr(interface
);
263 hba
= interface
->hba
;
265 fh
= fc_frame_header_get(fp
);
268 if (!lport
->link_up
) {
269 BNX2FC_HBA_DBG(lport
, "bnx2fc_xmit link down\n");
274 if (unlikely(fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
)) {
275 if (!ctlr
->sel_fcf
) {
276 BNX2FC_HBA_DBG(lport
, "FCF not selected yet!\n");
280 if (fcoe_ctlr_els_send(ctlr
, lport
, skb
))
288 * Snoop the frame header to check if the frame is for
289 * an offloaded session
292 * tgt_ofld_list access is synchronized using
293 * both hba mutex and hba lock. Atleast hba mutex or
294 * hba lock needs to be held for read access.
297 spin_lock_bh(&hba
->hba_lock
);
298 tgt
= bnx2fc_tgt_lookup(port
, ntoh24(fh
->fh_d_id
));
299 if (tgt
&& (test_bit(BNX2FC_FLAG_SESSION_READY
, &tgt
->flags
))) {
300 /* This frame is for offloaded session */
301 BNX2FC_HBA_DBG(lport
, "xmit: Frame is for offloaded session "
302 "port_id = 0x%x\n", ntoh24(fh
->fh_d_id
));
303 spin_unlock_bh(&hba
->hba_lock
);
304 rc
= bnx2fc_xmit_l2_frame(tgt
, fp
);
310 spin_unlock_bh(&hba
->hba_lock
);
313 elen
= sizeof(struct ethhdr
);
314 hlen
= sizeof(struct fcoe_hdr
);
315 tlen
= sizeof(struct fcoe_crc_eof
);
316 wlen
= (skb
->len
- tlen
+ sizeof(crc
)) / FCOE_WORD_TO_BYTE
;
318 skb
->ip_summed
= CHECKSUM_NONE
;
319 crc
= fcoe_fc_crc(fp
);
321 /* copy port crc and eof to the skb buff */
322 if (skb_is_nonlinear(skb
)) {
324 if (bnx2fc_get_paged_crc_eof(skb
, tlen
)) {
328 frag
= &skb_shinfo(skb
)->frags
[skb_shinfo(skb
)->nr_frags
- 1];
329 cp
= kmap_atomic(skb_frag_page(frag
)) + frag
->page_offset
;
331 cp
= (struct fcoe_crc_eof
*)skb_put(skb
, tlen
);
334 memset(cp
, 0, sizeof(*cp
));
336 cp
->fcoe_crc32
= cpu_to_le32(~crc
);
337 if (skb_is_nonlinear(skb
)) {
342 /* adjust skb network/transport offsets to match mac/fcoe/port */
343 skb_push(skb
, elen
+ hlen
);
344 skb_reset_mac_header(skb
);
345 skb_reset_network_header(skb
);
347 skb
->protocol
= htons(ETH_P_FCOE
);
348 skb
->dev
= interface
->netdev
;
350 /* fill up mac and fcoe headers */
352 eh
->h_proto
= htons(ETH_P_FCOE
);
354 fc_fcoe_set_mac(eh
->h_dest
, fh
->fh_d_id
);
356 /* insert GW address */
357 memcpy(eh
->h_dest
, ctlr
->dest_addr
, ETH_ALEN
);
359 if (unlikely(ctlr
->flogi_oxid
!= FC_XID_UNKNOWN
))
360 memcpy(eh
->h_source
, ctlr
->ctl_src_addr
, ETH_ALEN
);
362 memcpy(eh
->h_source
, port
->data_src_addr
, ETH_ALEN
);
364 hp
= (struct fcoe_hdr
*)(eh
+ 1);
365 memset(hp
, 0, sizeof(*hp
));
367 FC_FCOE_ENCAPS_VER(hp
, FC_FCOE_VER
);
370 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
371 if (lport
->seq_offload
&& fr_max_payload(fp
)) {
372 skb_shinfo(skb
)->gso_type
= SKB_GSO_FCOE
;
373 skb_shinfo(skb
)->gso_size
= fr_max_payload(fp
);
375 skb_shinfo(skb
)->gso_type
= 0;
376 skb_shinfo(skb
)->gso_size
= 0;
380 stats
= per_cpu_ptr(lport
->stats
, get_cpu());
382 stats
->TxWords
+= wlen
;
385 /* send down to lld */
387 if (port
->fcoe_pending_queue
.qlen
)
388 fcoe_check_wait_queue(lport
, skb
);
389 else if (fcoe_start_io(skb
))
390 fcoe_check_wait_queue(lport
, skb
);
396 * bnx2fc_rcv - This is bnx2fc's receive function called by NET_RX_SOFTIRQ
398 * @skb: the receive socket buffer
399 * @dev: associated net device
401 * @olddev: last device
403 * This function receives the packet and builds FC frame and passes it up
405 static int bnx2fc_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
406 struct packet_type
*ptype
, struct net_device
*olddev
)
408 struct fc_lport
*lport
;
409 struct bnx2fc_interface
*interface
;
410 struct fcoe_ctlr
*ctlr
;
411 struct fc_frame_header
*fh
;
412 struct fcoe_rcv_info
*fr
;
413 struct fcoe_percpu_s
*bg
;
416 interface
= container_of(ptype
, struct bnx2fc_interface
,
418 ctlr
= bnx2fc_to_ctlr(interface
);
421 if (unlikely(lport
== NULL
)) {
422 printk(KERN_ERR PFX
"bnx2fc_rcv: lport is NULL\n");
426 if (unlikely(eth_hdr(skb
)->h_proto
!= htons(ETH_P_FCOE
))) {
427 printk(KERN_ERR PFX
"bnx2fc_rcv: Wrong FC type frame\n");
432 * Check for minimum frame length, and make sure required FCoE
433 * and FC headers are pulled into the linear data area.
435 if (unlikely((skb
->len
< FCOE_MIN_FRAME
) ||
436 !pskb_may_pull(skb
, FCOE_HEADER_LEN
)))
439 skb_set_transport_header(skb
, sizeof(struct fcoe_hdr
));
440 fh
= (struct fc_frame_header
*) skb_transport_header(skb
);
442 oxid
= ntohs(fh
->fh_ox_id
);
444 fr
= fcoe_dev_from_skb(skb
);
448 spin_lock(&bg
->fcoe_rx_list
.lock
);
450 __skb_queue_tail(&bg
->fcoe_rx_list
, skb
);
451 if (bg
->fcoe_rx_list
.qlen
== 1)
452 wake_up_process(bg
->thread
);
454 spin_unlock(&bg
->fcoe_rx_list
.lock
);
462 static int bnx2fc_l2_rcv_thread(void *arg
)
464 struct fcoe_percpu_s
*bg
= arg
;
467 set_user_nice(current
, -20);
468 set_current_state(TASK_INTERRUPTIBLE
);
469 while (!kthread_should_stop()) {
471 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
472 while ((skb
= __skb_dequeue(&bg
->fcoe_rx_list
)) != NULL
) {
473 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
474 bnx2fc_recv_frame(skb
);
475 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
477 __set_current_state(TASK_INTERRUPTIBLE
);
478 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
480 __set_current_state(TASK_RUNNING
);
485 static void bnx2fc_recv_frame(struct sk_buff
*skb
)
488 struct fc_lport
*lport
;
489 struct fcoe_rcv_info
*fr
;
490 struct fc_stats
*stats
;
491 struct fc_frame_header
*fh
;
492 struct fcoe_crc_eof crc_eof
;
494 struct fc_lport
*vn_port
;
495 struct fcoe_port
*port
;
500 fr
= fcoe_dev_from_skb(skb
);
502 if (unlikely(lport
== NULL
)) {
503 printk(KERN_ERR PFX
"Invalid lport struct\n");
508 if (skb_is_nonlinear(skb
))
510 mac
= eth_hdr(skb
)->h_source
;
511 dest_mac
= eth_hdr(skb
)->h_dest
;
513 /* Pull the header */
514 hp
= (struct fcoe_hdr
*) skb_network_header(skb
);
515 fh
= (struct fc_frame_header
*) skb_transport_header(skb
);
516 skb_pull(skb
, sizeof(struct fcoe_hdr
));
517 fr_len
= skb
->len
- sizeof(struct fcoe_crc_eof
);
519 stats
= per_cpu_ptr(lport
->stats
, get_cpu());
521 stats
->RxWords
+= fr_len
/ FCOE_WORD_TO_BYTE
;
523 fp
= (struct fc_frame
*)skb
;
526 fr_sof(fp
) = hp
->fcoe_sof
;
527 if (skb_copy_bits(skb
, fr_len
, &crc_eof
, sizeof(crc_eof
))) {
532 fr_eof(fp
) = crc_eof
.fcoe_eof
;
533 fr_crc(fp
) = crc_eof
.fcoe_crc32
;
534 if (pskb_trim(skb
, fr_len
)) {
540 fh
= fc_frame_header_get(fp
);
542 vn_port
= fc_vport_id_lookup(lport
, ntoh24(fh
->fh_d_id
));
544 port
= lport_priv(vn_port
);
545 if (compare_ether_addr(port
->data_src_addr
, dest_mac
)
547 BNX2FC_HBA_DBG(lport
, "fpma mismatch\n");
553 if (fh
->fh_r_ctl
== FC_RCTL_DD_SOL_DATA
&&
554 fh
->fh_type
== FC_TYPE_FCP
) {
555 /* Drop FCP data. We dont this in L2 path */
560 if (fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
&&
561 fh
->fh_type
== FC_TYPE_ELS
) {
562 switch (fc_frame_payload_op(fp
)) {
564 if (ntoh24(fh
->fh_s_id
) == FC_FID_FLOGI
) {
565 /* drop non-FIP LOGO */
574 if (fh
->fh_r_ctl
== FC_RCTL_BA_ABTS
) {
575 /* Drop incoming ABTS */
581 if (le32_to_cpu(fr_crc(fp
)) !=
582 ~crc32(~0, skb
->data
, fr_len
)) {
583 if (stats
->InvalidCRCCount
< 5)
584 printk(KERN_WARNING PFX
"dropping frame with "
586 stats
->InvalidCRCCount
++;
592 fc_exch_recv(lport
, fp
);
596 * bnx2fc_percpu_io_thread - thread per cpu for ios
598 * @arg: ptr to bnx2fc_percpu_info structure
600 int bnx2fc_percpu_io_thread(void *arg
)
602 struct bnx2fc_percpu_s
*p
= arg
;
603 struct bnx2fc_work
*work
, *tmp
;
604 LIST_HEAD(work_list
);
606 set_user_nice(current
, -20);
607 set_current_state(TASK_INTERRUPTIBLE
);
608 while (!kthread_should_stop()) {
610 spin_lock_bh(&p
->fp_work_lock
);
611 while (!list_empty(&p
->work_list
)) {
612 list_splice_init(&p
->work_list
, &work_list
);
613 spin_unlock_bh(&p
->fp_work_lock
);
615 list_for_each_entry_safe(work
, tmp
, &work_list
, list
) {
616 list_del_init(&work
->list
);
617 bnx2fc_process_cq_compl(work
->tgt
, work
->wqe
);
621 spin_lock_bh(&p
->fp_work_lock
);
623 __set_current_state(TASK_INTERRUPTIBLE
);
624 spin_unlock_bh(&p
->fp_work_lock
);
626 __set_current_state(TASK_RUNNING
);
631 static struct fc_host_statistics
*bnx2fc_get_host_stats(struct Scsi_Host
*shost
)
633 struct fc_host_statistics
*bnx2fc_stats
;
634 struct fc_lport
*lport
= shost_priv(shost
);
635 struct fcoe_port
*port
= lport_priv(lport
);
636 struct bnx2fc_interface
*interface
= port
->priv
;
637 struct bnx2fc_hba
*hba
= interface
->hba
;
638 struct fcoe_statistics_params
*fw_stats
;
641 fw_stats
= (struct fcoe_statistics_params
*)hba
->stats_buffer
;
645 bnx2fc_stats
= fc_get_host_stats(shost
);
647 init_completion(&hba
->stat_req_done
);
648 if (bnx2fc_send_stat_req(hba
))
650 rc
= wait_for_completion_timeout(&hba
->stat_req_done
, (2 * HZ
));
652 BNX2FC_HBA_DBG(lport
, "FW stat req timed out\n");
655 BNX2FC_STATS(hba
, rx_stat2
, fc_crc_cnt
);
656 bnx2fc_stats
->invalid_crc_count
+= hba
->bfw_stats
.fc_crc_cnt
;
657 BNX2FC_STATS(hba
, tx_stat
, fcoe_tx_pkt_cnt
);
658 bnx2fc_stats
->tx_frames
+= hba
->bfw_stats
.fcoe_tx_pkt_cnt
;
659 BNX2FC_STATS(hba
, tx_stat
, fcoe_tx_byte_cnt
);
660 bnx2fc_stats
->tx_words
+= ((hba
->bfw_stats
.fcoe_tx_byte_cnt
) / 4);
661 BNX2FC_STATS(hba
, rx_stat0
, fcoe_rx_pkt_cnt
);
662 bnx2fc_stats
->rx_frames
+= hba
->bfw_stats
.fcoe_rx_pkt_cnt
;
663 BNX2FC_STATS(hba
, rx_stat0
, fcoe_rx_byte_cnt
);
664 bnx2fc_stats
->rx_words
+= ((hba
->bfw_stats
.fcoe_rx_byte_cnt
) / 4);
666 bnx2fc_stats
->dumped_frames
= 0;
667 bnx2fc_stats
->lip_count
= 0;
668 bnx2fc_stats
->nos_count
= 0;
669 bnx2fc_stats
->loss_of_sync_count
= 0;
670 bnx2fc_stats
->loss_of_signal_count
= 0;
671 bnx2fc_stats
->prim_seq_protocol_err_count
= 0;
673 memcpy(&hba
->prev_stats
, hba
->stats_buffer
,
674 sizeof(struct fcoe_statistics_params
));
678 static int bnx2fc_shost_config(struct fc_lport
*lport
, struct device
*dev
)
680 struct fcoe_port
*port
= lport_priv(lport
);
681 struct bnx2fc_interface
*interface
= port
->priv
;
682 struct bnx2fc_hba
*hba
= interface
->hba
;
683 struct Scsi_Host
*shost
= lport
->host
;
686 shost
->max_cmd_len
= BNX2FC_MAX_CMD_LEN
;
687 shost
->max_lun
= BNX2FC_MAX_LUN
;
688 shost
->max_id
= BNX2FC_MAX_FCP_TGT
;
689 shost
->max_channel
= 0;
691 shost
->transportt
= bnx2fc_vport_xport_template
;
693 shost
->transportt
= bnx2fc_transport_template
;
695 /* Add the new host to SCSI-ml */
696 rc
= scsi_add_host(lport
->host
, dev
);
698 printk(KERN_ERR PFX
"Error on scsi_add_host\n");
702 fc_host_max_npiv_vports(lport
->host
) = USHRT_MAX
;
703 snprintf(fc_host_symbolic_name(lport
->host
), 256,
704 "%s (Broadcom %s) v%s over %s",
705 BNX2FC_NAME
, hba
->chip_num
, BNX2FC_VERSION
,
706 interface
->netdev
->name
);
711 static int bnx2fc_link_ok(struct fc_lport
*lport
)
713 struct fcoe_port
*port
= lport_priv(lport
);
714 struct bnx2fc_interface
*interface
= port
->priv
;
715 struct bnx2fc_hba
*hba
= interface
->hba
;
716 struct net_device
*dev
= hba
->phys_dev
;
719 if ((dev
->flags
& IFF_UP
) && netif_carrier_ok(dev
))
720 clear_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
722 set_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
729 * bnx2fc_get_link_state - get network link state
731 * @hba: adapter instance pointer
733 * updates adapter structure flag based on netdev state
735 void bnx2fc_get_link_state(struct bnx2fc_hba
*hba
)
737 if (test_bit(__LINK_STATE_NOCARRIER
, &hba
->phys_dev
->state
))
738 set_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
740 clear_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
743 static int bnx2fc_net_config(struct fc_lport
*lport
, struct net_device
*netdev
)
745 struct bnx2fc_hba
*hba
;
746 struct bnx2fc_interface
*interface
;
747 struct fcoe_ctlr
*ctlr
;
748 struct fcoe_port
*port
;
751 port
= lport_priv(lport
);
752 interface
= port
->priv
;
753 ctlr
= bnx2fc_to_ctlr(interface
);
754 hba
= interface
->hba
;
756 /* require support for get_pauseparam ethtool op. */
757 if (!hba
->phys_dev
->ethtool_ops
||
758 !hba
->phys_dev
->ethtool_ops
->get_pauseparam
)
761 if (fc_set_mfs(lport
, BNX2FC_MFS
))
764 skb_queue_head_init(&port
->fcoe_pending_queue
);
765 port
->fcoe_pending_queue_active
= 0;
766 setup_timer(&port
->timer
, fcoe_queue_timer
, (unsigned long) lport
);
768 fcoe_link_speed_update(lport
);
771 if (fcoe_get_wwn(netdev
, &wwnn
, NETDEV_FCOE_WWNN
))
772 wwnn
= fcoe_wwn_from_mac(ctlr
->ctl_src_addr
,
774 BNX2FC_HBA_DBG(lport
, "WWNN = 0x%llx\n", wwnn
);
775 fc_set_wwnn(lport
, wwnn
);
777 if (fcoe_get_wwn(netdev
, &wwpn
, NETDEV_FCOE_WWPN
))
778 wwpn
= fcoe_wwn_from_mac(ctlr
->ctl_src_addr
,
781 BNX2FC_HBA_DBG(lport
, "WWPN = 0x%llx\n", wwpn
);
782 fc_set_wwpn(lport
, wwpn
);
788 static void bnx2fc_destroy_timer(unsigned long data
)
790 struct bnx2fc_hba
*hba
= (struct bnx2fc_hba
*)data
;
792 printk(KERN_ERR PFX
"ERROR:bnx2fc_destroy_timer - "
793 "Destroy compl not received!!\n");
794 set_bit(BNX2FC_FLAG_DESTROY_CMPL
, &hba
->flags
);
795 wake_up_interruptible(&hba
->destroy_wait
);
799 * bnx2fc_indicate_netevent - Generic netdev event handler
801 * @context: adapter structure pointer
803 * @vlan_id: vlan id - associated vlan id with this event
805 * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and
806 * NETDEV_CHANGE_MTU events. Handle NETDEV_UNREGISTER only for vlans.
808 static void bnx2fc_indicate_netevent(void *context
, unsigned long event
,
811 struct bnx2fc_hba
*hba
= (struct bnx2fc_hba
*)context
;
812 struct fcoe_ctlr_device
*cdev
;
813 struct fc_lport
*lport
;
814 struct fc_lport
*vport
;
815 struct bnx2fc_interface
*interface
, *tmp
;
816 struct fcoe_ctlr
*ctlr
;
817 int wait_for_upload
= 0;
818 u32 link_possible
= 1;
820 if (vlan_id
!= 0 && event
!= NETDEV_UNREGISTER
)
825 if (!test_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
))
826 printk(KERN_ERR
"indicate_netevent: "\
827 "hba is not UP!!\n");
831 clear_bit(ADAPTER_STATE_GOING_DOWN
, &hba
->adapter_state
);
832 clear_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
);
836 case NETDEV_GOING_DOWN
:
837 set_bit(ADAPTER_STATE_GOING_DOWN
, &hba
->adapter_state
);
844 case NETDEV_UNREGISTER
:
847 mutex_lock(&bnx2fc_dev_lock
);
848 list_for_each_entry_safe(interface
, tmp
, &if_list
, list
) {
849 if (interface
->hba
== hba
&&
850 interface
->vlan_id
== (vlan_id
& VLAN_VID_MASK
))
851 __bnx2fc_destroy(interface
);
853 mutex_unlock(&bnx2fc_dev_lock
);
857 printk(KERN_ERR PFX
"Unknown netevent %ld", event
);
861 mutex_lock(&bnx2fc_dev_lock
);
862 list_for_each_entry(interface
, &if_list
, list
) {
864 if (interface
->hba
!= hba
)
867 ctlr
= bnx2fc_to_ctlr(interface
);
869 BNX2FC_HBA_DBG(lport
, "netevent handler - event=%s %ld\n",
870 interface
->netdev
->name
, event
);
872 fcoe_link_speed_update(lport
);
874 cdev
= fcoe_ctlr_to_ctlr_dev(ctlr
);
876 if (link_possible
&& !bnx2fc_link_ok(lport
)) {
877 switch (cdev
->enabled
) {
878 case FCOE_CTLR_DISABLED
:
879 pr_info("Link up while interface is disabled.\n");
881 case FCOE_CTLR_ENABLED
:
882 case FCOE_CTLR_UNUSED
:
883 /* Reset max recv frame size to default */
884 fc_set_mfs(lport
, BNX2FC_MFS
);
886 * ctlr link up will only be handled during
887 * enable to avoid sending discovery
888 * solicitation on a stale vlan
890 if (interface
->enabled
)
891 fcoe_ctlr_link_up(ctlr
);
893 } else if (fcoe_ctlr_link_down(ctlr
)) {
894 switch (cdev
->enabled
) {
895 case FCOE_CTLR_DISABLED
:
896 pr_info("Link down while interface is disabled.\n");
898 case FCOE_CTLR_ENABLED
:
899 case FCOE_CTLR_UNUSED
:
900 mutex_lock(&lport
->lp_mutex
);
901 list_for_each_entry(vport
, &lport
->vports
, list
)
902 fc_host_port_type(vport
->host
) =
904 mutex_unlock(&lport
->lp_mutex
);
905 fc_host_port_type(lport
->host
) =
907 per_cpu_ptr(lport
->stats
,
908 get_cpu())->LinkFailureCount
++;
910 fcoe_clean_pending_queue(lport
);
915 mutex_unlock(&bnx2fc_dev_lock
);
917 if (wait_for_upload
) {
918 clear_bit(ADAPTER_STATE_READY
, &hba
->adapter_state
);
919 init_waitqueue_head(&hba
->shutdown_wait
);
920 BNX2FC_MISC_DBG("indicate_netevent "
921 "num_ofld_sess = %d\n",
923 hba
->wait_for_link_down
= 1;
924 wait_event_interruptible(hba
->shutdown_wait
,
925 (hba
->num_ofld_sess
== 0));
926 BNX2FC_MISC_DBG("wakeup - num_ofld_sess = %d\n",
928 hba
->wait_for_link_down
= 0;
930 if (signal_pending(current
))
931 flush_signals(current
);
935 static int bnx2fc_libfc_config(struct fc_lport
*lport
)
938 /* Set the function pointers set by bnx2fc driver */
939 memcpy(&lport
->tt
, &bnx2fc_libfc_fcn_templ
,
940 sizeof(struct libfc_function_template
));
941 fc_elsct_init(lport
);
943 fc_rport_init(lport
);
945 fc_disc_config(lport
, lport
);
949 static int bnx2fc_em_config(struct fc_lport
*lport
, struct bnx2fc_hba
*hba
)
951 int fcoe_min_xid
, fcoe_max_xid
;
953 fcoe_min_xid
= hba
->max_xid
+ 1;
955 fcoe_max_xid
= hba
->max_xid
+ FCOE_XIDS_PER_CPU_OFFSET
;
957 fcoe_max_xid
= hba
->max_xid
+ FCOE_MAX_XID_OFFSET
;
958 if (!fc_exch_mgr_alloc(lport
, FC_CLASS_3
, fcoe_min_xid
,
959 fcoe_max_xid
, NULL
)) {
960 printk(KERN_ERR PFX
"em_config:fc_exch_mgr_alloc failed\n");
967 static int bnx2fc_lport_config(struct fc_lport
*lport
)
971 lport
->max_retry_count
= BNX2FC_MAX_RETRY_CNT
;
972 lport
->max_rport_retry_count
= BNX2FC_MAX_RPORT_RETRY_CNT
;
973 lport
->e_d_tov
= 2 * 1000;
974 lport
->r_a_tov
= 10 * 1000;
976 lport
->service_params
= (FCP_SPPF_INIT_FCN
| FCP_SPPF_RD_XRDY_DIS
|
977 FCP_SPPF_RETRY
| FCP_SPPF_CONF_COMPL
);
978 lport
->does_npiv
= 1;
980 memset(&lport
->rnid_gen
, 0, sizeof(struct fc_els_rnid_gen
));
981 lport
->rnid_gen
.rnid_atype
= BNX2FC_RNID_HBA
;
983 /* alloc stats structure */
984 if (fc_lport_init_stats(lport
))
987 /* Finish fc_lport configuration */
988 fc_lport_config(lport
);
994 * bnx2fc_fip_recv - handle a received FIP frame.
996 * @skb: the received skb
997 * @dev: associated &net_device
998 * @ptype: the &packet_type structure which was used to register this handler.
999 * @orig_dev: original receive &net_device, in case @ dev is a bond.
1001 * Returns: 0 for success
1003 static int bnx2fc_fip_recv(struct sk_buff
*skb
, struct net_device
*dev
,
1004 struct packet_type
*ptype
,
1005 struct net_device
*orig_dev
)
1007 struct bnx2fc_interface
*interface
;
1008 struct fcoe_ctlr
*ctlr
;
1009 interface
= container_of(ptype
, struct bnx2fc_interface
,
1011 ctlr
= bnx2fc_to_ctlr(interface
);
1012 fcoe_ctlr_recv(ctlr
, skb
);
1017 * bnx2fc_update_src_mac - Update Ethernet MAC filters.
1019 * @fip: FCoE controller.
1020 * @old: Unicast MAC address to delete if the MAC is non-zero.
1021 * @new: Unicast MAC address to add.
1023 * Remove any previously-set unicast MAC filter.
1024 * Add secondary FCoE MAC address filter for our OUI.
1026 static void bnx2fc_update_src_mac(struct fc_lport
*lport
, u8
*addr
)
1028 struct fcoe_port
*port
= lport_priv(lport
);
1030 memcpy(port
->data_src_addr
, addr
, ETH_ALEN
);
1034 * bnx2fc_get_src_mac - return the ethernet source address for an lport
1036 * @lport: libfc port
1038 static u8
*bnx2fc_get_src_mac(struct fc_lport
*lport
)
1040 struct fcoe_port
*port
;
1042 port
= (struct fcoe_port
*)lport_priv(lport
);
1043 return port
->data_src_addr
;
1047 * bnx2fc_fip_send - send an Ethernet-encapsulated FIP frame.
1049 * @fip: FCoE controller.
1052 static void bnx2fc_fip_send(struct fcoe_ctlr
*fip
, struct sk_buff
*skb
)
1054 skb
->dev
= bnx2fc_from_ctlr(fip
)->netdev
;
1055 dev_queue_xmit(skb
);
1058 static int bnx2fc_vport_create(struct fc_vport
*vport
, bool disabled
)
1060 struct Scsi_Host
*shost
= vport_to_shost(vport
);
1061 struct fc_lport
*n_port
= shost_priv(shost
);
1062 struct fcoe_port
*port
= lport_priv(n_port
);
1063 struct bnx2fc_interface
*interface
= port
->priv
;
1064 struct net_device
*netdev
= interface
->netdev
;
1065 struct fc_lport
*vn_port
;
1069 rc
= fcoe_validate_vport_create(vport
);
1071 fcoe_wwn_to_str(vport
->port_name
, buf
, sizeof(buf
));
1072 printk(KERN_ERR PFX
"Failed to create vport, "
1073 "WWPN (0x%s) already exists\n",
1078 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &interface
->hba
->flags
)) {
1079 printk(KERN_ERR PFX
"vn ports cannot be created on"
1080 "this interface\n");
1084 mutex_lock(&bnx2fc_dev_lock
);
1085 vn_port
= bnx2fc_if_create(interface
, &vport
->dev
, 1);
1086 mutex_unlock(&bnx2fc_dev_lock
);
1089 if (IS_ERR(vn_port
)) {
1090 printk(KERN_ERR PFX
"bnx2fc_vport_create (%s) failed\n",
1096 fc_vport_set_state(vport
, FC_VPORT_DISABLED
);
1098 vn_port
->boot_time
= jiffies
;
1099 fc_lport_init(vn_port
);
1100 fc_fabric_login(vn_port
);
1101 fc_vport_setlink(vn_port
);
1106 static void bnx2fc_free_vport(struct bnx2fc_hba
*hba
, struct fc_lport
*lport
)
1108 struct bnx2fc_lport
*blport
, *tmp
;
1110 spin_lock_bh(&hba
->hba_lock
);
1111 list_for_each_entry_safe(blport
, tmp
, &hba
->vports
, list
) {
1112 if (blport
->lport
== lport
) {
1113 list_del(&blport
->list
);
1117 spin_unlock_bh(&hba
->hba_lock
);
1120 static int bnx2fc_vport_destroy(struct fc_vport
*vport
)
1122 struct Scsi_Host
*shost
= vport_to_shost(vport
);
1123 struct fc_lport
*n_port
= shost_priv(shost
);
1124 struct fc_lport
*vn_port
= vport
->dd_data
;
1125 struct fcoe_port
*port
= lport_priv(vn_port
);
1126 struct bnx2fc_interface
*interface
= port
->priv
;
1127 struct fc_lport
*v_port
;
1130 mutex_lock(&n_port
->lp_mutex
);
1131 list_for_each_entry(v_port
, &n_port
->vports
, list
)
1132 if (v_port
->vport
== vport
) {
1138 mutex_unlock(&n_port
->lp_mutex
);
1141 list_del(&vn_port
->list
);
1142 mutex_unlock(&n_port
->lp_mutex
);
1143 bnx2fc_free_vport(interface
->hba
, port
->lport
);
1144 bnx2fc_port_shutdown(port
->lport
);
1145 bnx2fc_interface_put(interface
);
1146 queue_work(bnx2fc_wq
, &port
->destroy_work
);
1150 static int bnx2fc_vport_disable(struct fc_vport
*vport
, bool disable
)
1152 struct fc_lport
*lport
= vport
->dd_data
;
1155 fc_vport_set_state(vport
, FC_VPORT_DISABLED
);
1156 fc_fabric_logoff(lport
);
1158 lport
->boot_time
= jiffies
;
1159 fc_fabric_login(lport
);
1160 fc_vport_setlink(lport
);
1166 static int bnx2fc_interface_setup(struct bnx2fc_interface
*interface
)
1168 struct net_device
*netdev
= interface
->netdev
;
1169 struct net_device
*physdev
= interface
->hba
->phys_dev
;
1170 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1171 struct netdev_hw_addr
*ha
;
1172 int sel_san_mac
= 0;
1174 /* setup Source MAC Address */
1176 for_each_dev_addr(physdev
, ha
) {
1177 BNX2FC_MISC_DBG("net_config: ha->type = %d, fip_mac = ",
1179 printk(KERN_INFO
"%2x:%2x:%2x:%2x:%2x:%2x\n", ha
->addr
[0],
1180 ha
->addr
[1], ha
->addr
[2], ha
->addr
[3],
1181 ha
->addr
[4], ha
->addr
[5]);
1183 if ((ha
->type
== NETDEV_HW_ADDR_T_SAN
) &&
1184 (is_valid_ether_addr(ha
->addr
))) {
1185 memcpy(ctlr
->ctl_src_addr
, ha
->addr
,
1188 BNX2FC_MISC_DBG("Found SAN MAC\n");
1196 interface
->fip_packet_type
.func
= bnx2fc_fip_recv
;
1197 interface
->fip_packet_type
.type
= htons(ETH_P_FIP
);
1198 interface
->fip_packet_type
.dev
= netdev
;
1199 dev_add_pack(&interface
->fip_packet_type
);
1201 interface
->fcoe_packet_type
.func
= bnx2fc_rcv
;
1202 interface
->fcoe_packet_type
.type
= __constant_htons(ETH_P_FCOE
);
1203 interface
->fcoe_packet_type
.dev
= netdev
;
1204 dev_add_pack(&interface
->fcoe_packet_type
);
1209 static int bnx2fc_attach_transport(void)
1211 bnx2fc_transport_template
=
1212 fc_attach_transport(&bnx2fc_transport_function
);
1214 if (bnx2fc_transport_template
== NULL
) {
1215 printk(KERN_ERR PFX
"Failed to attach FC transport\n");
1219 bnx2fc_vport_xport_template
=
1220 fc_attach_transport(&bnx2fc_vport_xport_function
);
1221 if (bnx2fc_vport_xport_template
== NULL
) {
1223 "Failed to attach FC transport for vport\n");
1224 fc_release_transport(bnx2fc_transport_template
);
1225 bnx2fc_transport_template
= NULL
;
1230 static void bnx2fc_release_transport(void)
1232 fc_release_transport(bnx2fc_transport_template
);
1233 fc_release_transport(bnx2fc_vport_xport_template
);
1234 bnx2fc_transport_template
= NULL
;
1235 bnx2fc_vport_xport_template
= NULL
;
1238 static void bnx2fc_interface_release(struct kref
*kref
)
1240 struct fcoe_ctlr_device
*ctlr_dev
;
1241 struct bnx2fc_interface
*interface
;
1242 struct fcoe_ctlr
*ctlr
;
1243 struct net_device
*netdev
;
1245 interface
= container_of(kref
, struct bnx2fc_interface
, kref
);
1246 BNX2FC_MISC_DBG("Interface is being released\n");
1248 ctlr
= bnx2fc_to_ctlr(interface
);
1249 ctlr_dev
= fcoe_ctlr_to_ctlr_dev(ctlr
);
1250 netdev
= interface
->netdev
;
1252 /* tear-down FIP controller */
1253 if (test_and_clear_bit(BNX2FC_CTLR_INIT_DONE
, &interface
->if_flags
))
1254 fcoe_ctlr_destroy(ctlr
);
1256 fcoe_ctlr_device_delete(ctlr_dev
);
1259 module_put(THIS_MODULE
);
1262 static inline void bnx2fc_interface_get(struct bnx2fc_interface
*interface
)
1264 kref_get(&interface
->kref
);
1267 static inline void bnx2fc_interface_put(struct bnx2fc_interface
*interface
)
1269 kref_put(&interface
->kref
, bnx2fc_interface_release
);
1271 static void bnx2fc_hba_destroy(struct bnx2fc_hba
*hba
)
1273 /* Free the command manager */
1275 bnx2fc_cmd_mgr_free(hba
->cmd_mgr
);
1276 hba
->cmd_mgr
= NULL
;
1278 kfree(hba
->tgt_ofld_list
);
1279 bnx2fc_unbind_pcidev(hba
);
1284 * bnx2fc_hba_create - create a new bnx2fc hba
1286 * @cnic: pointer to cnic device
1288 * Creates a new FCoE hba on the given device.
1291 static struct bnx2fc_hba
*bnx2fc_hba_create(struct cnic_dev
*cnic
)
1293 struct bnx2fc_hba
*hba
;
1294 struct fcoe_capabilities
*fcoe_cap
;
1297 hba
= kzalloc(sizeof(*hba
), GFP_KERNEL
);
1299 printk(KERN_ERR PFX
"Unable to allocate hba structure\n");
1302 spin_lock_init(&hba
->hba_lock
);
1303 mutex_init(&hba
->hba_mutex
);
1307 hba
->max_tasks
= cnic
->max_fcoe_exchanges
;
1308 hba
->elstm_xids
= (hba
->max_tasks
/ 2);
1309 hba
->max_outstanding_cmds
= hba
->elstm_xids
;
1310 hba
->max_xid
= (hba
->max_tasks
- 1);
1312 rc
= bnx2fc_bind_pcidev(hba
);
1314 printk(KERN_ERR PFX
"create_adapter: bind error\n");
1317 hba
->phys_dev
= cnic
->netdev
;
1318 hba
->next_conn_id
= 0;
1320 hba
->tgt_ofld_list
=
1321 kzalloc(sizeof(struct bnx2fc_rport
*) * BNX2FC_NUM_MAX_SESS
,
1323 if (!hba
->tgt_ofld_list
) {
1324 printk(KERN_ERR PFX
"Unable to allocate tgt offload list\n");
1328 hba
->num_ofld_sess
= 0;
1330 hba
->cmd_mgr
= bnx2fc_cmd_mgr_alloc(hba
);
1331 if (!hba
->cmd_mgr
) {
1332 printk(KERN_ERR PFX
"em_config:bnx2fc_cmd_mgr_alloc failed\n");
1335 fcoe_cap
= &hba
->fcoe_cap
;
1337 fcoe_cap
->capability1
= BNX2FC_TM_MAX_SQES
<<
1338 FCOE_IOS_PER_CONNECTION_SHIFT
;
1339 fcoe_cap
->capability1
|= BNX2FC_NUM_MAX_SESS
<<
1340 FCOE_LOGINS_PER_PORT_SHIFT
;
1341 fcoe_cap
->capability2
= hba
->max_outstanding_cmds
<<
1342 FCOE_NUMBER_OF_EXCHANGES_SHIFT
;
1343 fcoe_cap
->capability2
|= BNX2FC_MAX_NPIV
<<
1344 FCOE_NPIV_WWN_PER_PORT_SHIFT
;
1345 fcoe_cap
->capability3
= BNX2FC_NUM_MAX_SESS
<<
1346 FCOE_TARGETS_SUPPORTED_SHIFT
;
1347 fcoe_cap
->capability3
|= hba
->max_outstanding_cmds
<<
1348 FCOE_OUTSTANDING_COMMANDS_SHIFT
;
1349 fcoe_cap
->capability4
= FCOE_CAPABILITY4_STATEFUL
;
1351 init_waitqueue_head(&hba
->shutdown_wait
);
1352 init_waitqueue_head(&hba
->destroy_wait
);
1353 INIT_LIST_HEAD(&hba
->vports
);
1358 kfree(hba
->tgt_ofld_list
);
1360 bnx2fc_unbind_pcidev(hba
);
1366 struct bnx2fc_interface
*bnx2fc_interface_create(struct bnx2fc_hba
*hba
,
1367 struct net_device
*netdev
,
1368 enum fip_state fip_mode
)
1370 struct fcoe_ctlr_device
*ctlr_dev
;
1371 struct bnx2fc_interface
*interface
;
1372 struct fcoe_ctlr
*ctlr
;
1376 size
= (sizeof(*interface
) + sizeof(struct fcoe_ctlr
));
1377 ctlr_dev
= fcoe_ctlr_device_add(&netdev
->dev
, &bnx2fc_fcoe_sysfs_templ
,
1380 printk(KERN_ERR PFX
"Unable to allocate interface structure\n");
1383 ctlr
= fcoe_ctlr_device_priv(ctlr_dev
);
1384 interface
= fcoe_ctlr_priv(ctlr
);
1386 kref_init(&interface
->kref
);
1387 interface
->hba
= hba
;
1388 interface
->netdev
= netdev
;
1390 /* Initialize FIP */
1391 fcoe_ctlr_init(ctlr
, fip_mode
);
1392 ctlr
->send
= bnx2fc_fip_send
;
1393 ctlr
->update_mac
= bnx2fc_update_src_mac
;
1394 ctlr
->get_src_addr
= bnx2fc_get_src_mac
;
1395 set_bit(BNX2FC_CTLR_INIT_DONE
, &interface
->if_flags
);
1397 rc
= bnx2fc_interface_setup(interface
);
1401 fcoe_ctlr_destroy(ctlr
);
1403 fcoe_ctlr_device_delete(ctlr_dev
);
1408 * bnx2fc_if_create - Create FCoE instance on a given interface
1410 * @interface: FCoE interface to create a local port on
1411 * @parent: Device pointer to be the parent in sysfs for the SCSI host
1412 * @npiv: Indicates if the port is vport or not
1414 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
1416 * Returns: Allocated fc_lport or an error pointer
1418 static struct fc_lport
*bnx2fc_if_create(struct bnx2fc_interface
*interface
,
1419 struct device
*parent
, int npiv
)
1421 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1422 struct fc_lport
*lport
, *n_port
;
1423 struct fcoe_port
*port
;
1424 struct Scsi_Host
*shost
;
1425 struct fc_vport
*vport
= dev_to_vport(parent
);
1426 struct bnx2fc_lport
*blport
;
1427 struct bnx2fc_hba
*hba
= interface
->hba
;
1430 blport
= kzalloc(sizeof(struct bnx2fc_lport
), GFP_KERNEL
);
1432 BNX2FC_HBA_DBG(ctlr
->lp
, "Unable to alloc blport\n");
1436 /* Allocate Scsi_Host structure */
1437 bnx2fc_shost_template
.can_queue
= hba
->max_outstanding_cmds
;
1439 lport
= libfc_host_alloc(&bnx2fc_shost_template
, sizeof(*port
));
1441 lport
= libfc_vport_create(vport
, sizeof(*port
));
1444 printk(KERN_ERR PFX
"could not allocate scsi host structure\n");
1447 shost
= lport
->host
;
1448 port
= lport_priv(lport
);
1449 port
->lport
= lport
;
1450 port
->priv
= interface
;
1451 port
->get_netdev
= bnx2fc_netdev
;
1452 INIT_WORK(&port
->destroy_work
, bnx2fc_destroy_work
);
1454 /* Configure fcoe_port */
1455 rc
= bnx2fc_lport_config(lport
);
1460 printk(KERN_ERR PFX
"Setting vport names, 0x%llX 0x%llX\n",
1461 vport
->node_name
, vport
->port_name
);
1462 fc_set_wwnn(lport
, vport
->node_name
);
1463 fc_set_wwpn(lport
, vport
->port_name
);
1465 /* Configure netdev and networking properties of the lport */
1466 rc
= bnx2fc_net_config(lport
, interface
->netdev
);
1468 printk(KERN_ERR PFX
"Error on bnx2fc_net_config\n");
1472 rc
= bnx2fc_shost_config(lport
, parent
);
1474 printk(KERN_ERR PFX
"Couldnt configure shost for %s\n",
1475 interface
->netdev
->name
);
1479 /* Initialize the libfc library */
1480 rc
= bnx2fc_libfc_config(lport
);
1482 printk(KERN_ERR PFX
"Couldnt configure libfc\n");
1485 fc_host_port_type(lport
->host
) = FC_PORTTYPE_UNKNOWN
;
1487 /* Allocate exchange manager */
1489 rc
= bnx2fc_em_config(lport
, hba
);
1491 shost
= vport_to_shost(vport
);
1492 n_port
= shost_priv(shost
);
1493 rc
= fc_exch_mgr_list_clone(n_port
, lport
);
1497 printk(KERN_ERR PFX
"Error on bnx2fc_em_config\n");
1501 bnx2fc_interface_get(interface
);
1503 spin_lock_bh(&hba
->hba_lock
);
1504 blport
->lport
= lport
;
1505 list_add_tail(&blport
->list
, &hba
->vports
);
1506 spin_unlock_bh(&hba
->hba_lock
);
1511 scsi_remove_host(shost
);
1513 scsi_host_put(lport
->host
);
1519 static void bnx2fc_net_cleanup(struct bnx2fc_interface
*interface
)
1521 /* Dont listen for Ethernet packets anymore */
1522 __dev_remove_pack(&interface
->fcoe_packet_type
);
1523 __dev_remove_pack(&interface
->fip_packet_type
);
1527 static void bnx2fc_interface_cleanup(struct bnx2fc_interface
*interface
)
1529 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1530 struct fc_lport
*lport
= ctlr
->lp
;
1531 struct fcoe_port
*port
= lport_priv(lport
);
1532 struct bnx2fc_hba
*hba
= interface
->hba
;
1534 /* Stop the transmit retry timer */
1535 del_timer_sync(&port
->timer
);
1537 /* Free existing transmit skbs */
1538 fcoe_clean_pending_queue(lport
);
1540 bnx2fc_net_cleanup(interface
);
1542 bnx2fc_free_vport(hba
, lport
);
1545 static void bnx2fc_if_destroy(struct fc_lport
*lport
)
1548 /* Free queued packets for the receive thread */
1549 bnx2fc_clean_rx_queue(lport
);
1551 /* Detach from scsi-ml */
1552 fc_remove_host(lport
->host
);
1553 scsi_remove_host(lport
->host
);
1556 * Note that only the physical lport will have the exchange manager.
1557 * for vports, this function is NOP
1559 fc_exch_mgr_free(lport
);
1561 /* Free memory used by statistical counters */
1562 fc_lport_free_stats(lport
);
1564 /* Release Scsi_Host */
1565 scsi_host_put(lport
->host
);
1568 static void __bnx2fc_destroy(struct bnx2fc_interface
*interface
)
1570 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1571 struct fc_lport
*lport
= ctlr
->lp
;
1572 struct fcoe_port
*port
= lport_priv(lport
);
1574 bnx2fc_interface_cleanup(interface
);
1575 bnx2fc_stop(interface
);
1576 list_del(&interface
->list
);
1577 bnx2fc_interface_put(interface
);
1578 queue_work(bnx2fc_wq
, &port
->destroy_work
);
1582 * bnx2fc_destroy - Destroy a bnx2fc FCoE interface
1584 * @buffer: The name of the Ethernet interface to be destroyed
1585 * @kp: The associated kernel parameter
1587 * Called from sysfs.
1589 * Returns: 0 for success
1591 static int bnx2fc_destroy(struct net_device
*netdev
)
1593 struct bnx2fc_interface
*interface
= NULL
;
1594 struct workqueue_struct
*timer_work_queue
;
1595 struct fcoe_ctlr
*ctlr
;
1599 mutex_lock(&bnx2fc_dev_lock
);
1601 interface
= bnx2fc_interface_lookup(netdev
);
1602 ctlr
= bnx2fc_to_ctlr(interface
);
1603 if (!interface
|| !ctlr
->lp
) {
1605 printk(KERN_ERR PFX
"bnx2fc_destroy: interface or lport not found\n");
1609 timer_work_queue
= interface
->timer_work_queue
;
1610 __bnx2fc_destroy(interface
);
1611 destroy_workqueue(timer_work_queue
);
1614 mutex_unlock(&bnx2fc_dev_lock
);
1619 static void bnx2fc_destroy_work(struct work_struct
*work
)
1621 struct fcoe_port
*port
;
1622 struct fc_lport
*lport
;
1624 port
= container_of(work
, struct fcoe_port
, destroy_work
);
1625 lport
= port
->lport
;
1627 BNX2FC_HBA_DBG(lport
, "Entered bnx2fc_destroy_work\n");
1629 bnx2fc_if_destroy(lport
);
1632 static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba
*hba
)
1634 bnx2fc_free_fw_resc(hba
);
1635 bnx2fc_free_task_ctx(hba
);
1639 * bnx2fc_bind_adapter_devices - binds bnx2fc adapter with the associated
1642 * @hba: Adapter instance
1644 static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba
*hba
)
1646 if (bnx2fc_setup_task_ctx(hba
))
1649 if (bnx2fc_setup_fw_resc(hba
))
1654 bnx2fc_unbind_adapter_devices(hba
);
1658 static int bnx2fc_bind_pcidev(struct bnx2fc_hba
*hba
)
1660 struct cnic_dev
*cnic
;
1661 struct pci_dev
*pdev
;
1664 printk(KERN_ERR PFX
"cnic is NULL\n");
1668 pdev
= hba
->pcidev
= cnic
->pcidev
;
1672 switch (pdev
->device
) {
1673 case PCI_DEVICE_ID_NX2_57710
:
1674 strncpy(hba
->chip_num
, "BCM57710", BCM_CHIP_LEN
);
1676 case PCI_DEVICE_ID_NX2_57711
:
1677 strncpy(hba
->chip_num
, "BCM57711", BCM_CHIP_LEN
);
1679 case PCI_DEVICE_ID_NX2_57712
:
1680 case PCI_DEVICE_ID_NX2_57712_MF
:
1681 case PCI_DEVICE_ID_NX2_57712_VF
:
1682 strncpy(hba
->chip_num
, "BCM57712", BCM_CHIP_LEN
);
1684 case PCI_DEVICE_ID_NX2_57800
:
1685 case PCI_DEVICE_ID_NX2_57800_MF
:
1686 case PCI_DEVICE_ID_NX2_57800_VF
:
1687 strncpy(hba
->chip_num
, "BCM57800", BCM_CHIP_LEN
);
1689 case PCI_DEVICE_ID_NX2_57810
:
1690 case PCI_DEVICE_ID_NX2_57810_MF
:
1691 case PCI_DEVICE_ID_NX2_57810_VF
:
1692 strncpy(hba
->chip_num
, "BCM57810", BCM_CHIP_LEN
);
1694 case PCI_DEVICE_ID_NX2_57840
:
1695 case PCI_DEVICE_ID_NX2_57840_MF
:
1696 case PCI_DEVICE_ID_NX2_57840_VF
:
1697 case PCI_DEVICE_ID_NX2_57840_2_20
:
1698 case PCI_DEVICE_ID_NX2_57840_4_10
:
1699 strncpy(hba
->chip_num
, "BCM57840", BCM_CHIP_LEN
);
1702 pr_err(PFX
"Unknown device id 0x%x\n", pdev
->device
);
1705 pci_dev_get(hba
->pcidev
);
1709 static void bnx2fc_unbind_pcidev(struct bnx2fc_hba
*hba
)
1712 hba
->chip_num
[0] = '\0';
1713 pci_dev_put(hba
->pcidev
);
1719 * bnx2fc_ulp_get_stats - cnic callback to populate FCoE stats
1721 * @handle: transport handle pointing to adapter struture
1723 static int bnx2fc_ulp_get_stats(void *handle
)
1725 struct bnx2fc_hba
*hba
= handle
;
1726 struct cnic_dev
*cnic
;
1727 struct fcoe_stats_info
*stats_addr
;
1733 stats_addr
= &cnic
->stats_addr
->fcoe_stat
;
1737 strncpy(stats_addr
->version
, BNX2FC_VERSION
,
1738 sizeof(stats_addr
->version
));
1739 stats_addr
->txq_size
= BNX2FC_SQ_WQES_MAX
;
1740 stats_addr
->rxq_size
= BNX2FC_CQ_WQES_MAX
;
1747 * bnx2fc_ulp_start - cnic callback to initialize & start adapter instance
1749 * @handle: transport handle pointing to adapter structure
1751 * This function maps adapter structure to pcidev structure and initiates
1752 * firmware handshake to enable/initialize on-chip FCoE components.
1753 * This bnx2fc - cnic interface api callback is used after following
1754 * conditions are met -
1755 * a) underlying network interface is up (marked by event NETDEV_UP
1757 * b) bnx2fc adatper structure is registered.
1759 static void bnx2fc_ulp_start(void *handle
)
1761 struct bnx2fc_hba
*hba
= handle
;
1762 struct bnx2fc_interface
*interface
;
1763 struct fcoe_ctlr
*ctlr
;
1764 struct fc_lport
*lport
;
1766 mutex_lock(&bnx2fc_dev_lock
);
1768 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
))
1769 bnx2fc_fw_init(hba
);
1771 BNX2FC_MISC_DBG("bnx2fc started.\n");
1773 list_for_each_entry(interface
, &if_list
, list
) {
1774 if (interface
->hba
== hba
) {
1775 ctlr
= bnx2fc_to_ctlr(interface
);
1777 /* Kick off Fabric discovery*/
1778 printk(KERN_ERR PFX
"ulp_init: start discovery\n");
1779 lport
->tt
.frame_send
= bnx2fc_xmit
;
1780 bnx2fc_start_disc(interface
);
1784 mutex_unlock(&bnx2fc_dev_lock
);
1787 static void bnx2fc_port_shutdown(struct fc_lport
*lport
)
1789 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
1790 fc_fabric_logoff(lport
);
1791 fc_lport_destroy(lport
);
1794 static void bnx2fc_stop(struct bnx2fc_interface
*interface
)
1796 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1797 struct fc_lport
*lport
;
1798 struct fc_lport
*vport
;
1800 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &interface
->hba
->flags
))
1804 bnx2fc_port_shutdown(lport
);
1806 mutex_lock(&lport
->lp_mutex
);
1807 list_for_each_entry(vport
, &lport
->vports
, list
)
1808 fc_host_port_type(vport
->host
) =
1809 FC_PORTTYPE_UNKNOWN
;
1810 mutex_unlock(&lport
->lp_mutex
);
1811 fc_host_port_type(lport
->host
) = FC_PORTTYPE_UNKNOWN
;
1812 fcoe_ctlr_link_down(ctlr
);
1813 fcoe_clean_pending_queue(lport
);
1816 static int bnx2fc_fw_init(struct bnx2fc_hba
*hba
)
1818 #define BNX2FC_INIT_POLL_TIME (1000 / HZ)
1822 rc
= bnx2fc_bind_adapter_devices(hba
);
1824 printk(KERN_ALERT PFX
1825 "bnx2fc_bind_adapter_devices failed - rc = %d\n", rc
);
1829 rc
= bnx2fc_send_fw_fcoe_init_msg(hba
);
1831 printk(KERN_ALERT PFX
1832 "bnx2fc_send_fw_fcoe_init_msg failed - rc = %d\n", rc
);
1837 * Wait until the adapter init message is complete, and adapter
1840 while (!test_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
) && i
--)
1841 msleep(BNX2FC_INIT_POLL_TIME
);
1843 if (!test_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
)) {
1844 printk(KERN_ERR PFX
"bnx2fc_start: %s failed to initialize. "
1846 hba
->cnic
->netdev
->name
);
1852 set_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
);
1856 bnx2fc_unbind_adapter_devices(hba
);
1861 static void bnx2fc_fw_destroy(struct bnx2fc_hba
*hba
)
1863 if (test_and_clear_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
)) {
1864 if (bnx2fc_send_fw_fcoe_destroy_msg(hba
) == 0) {
1865 init_timer(&hba
->destroy_timer
);
1866 hba
->destroy_timer
.expires
= BNX2FC_FW_TIMEOUT
+
1868 hba
->destroy_timer
.function
= bnx2fc_destroy_timer
;
1869 hba
->destroy_timer
.data
= (unsigned long)hba
;
1870 add_timer(&hba
->destroy_timer
);
1871 wait_event_interruptible(hba
->destroy_wait
,
1872 test_bit(BNX2FC_FLAG_DESTROY_CMPL
,
1874 clear_bit(BNX2FC_FLAG_DESTROY_CMPL
, &hba
->flags
);
1875 /* This should never happen */
1876 if (signal_pending(current
))
1877 flush_signals(current
);
1879 del_timer_sync(&hba
->destroy_timer
);
1881 bnx2fc_unbind_adapter_devices(hba
);
1886 * bnx2fc_ulp_stop - cnic callback to shutdown adapter instance
1888 * @handle: transport handle pointing to adapter structure
1890 * Driver checks if adapter is already in shutdown mode, if not start
1891 * the shutdown process.
1893 static void bnx2fc_ulp_stop(void *handle
)
1895 struct bnx2fc_hba
*hba
= handle
;
1896 struct bnx2fc_interface
*interface
;
1898 printk(KERN_ERR
"ULP_STOP\n");
1900 mutex_lock(&bnx2fc_dev_lock
);
1901 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
))
1903 list_for_each_entry(interface
, &if_list
, list
) {
1904 if (interface
->hba
== hba
)
1905 bnx2fc_stop(interface
);
1907 BUG_ON(hba
->num_ofld_sess
!= 0);
1909 mutex_lock(&hba
->hba_mutex
);
1910 clear_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
);
1911 clear_bit(ADAPTER_STATE_GOING_DOWN
,
1912 &hba
->adapter_state
);
1914 clear_bit(ADAPTER_STATE_READY
, &hba
->adapter_state
);
1915 mutex_unlock(&hba
->hba_mutex
);
1917 bnx2fc_fw_destroy(hba
);
1919 mutex_unlock(&bnx2fc_dev_lock
);
1922 static void bnx2fc_start_disc(struct bnx2fc_interface
*interface
)
1924 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1925 struct fc_lport
*lport
;
1928 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
1929 /* Kick off FIP/FLOGI */
1930 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &interface
->hba
->flags
)) {
1931 printk(KERN_ERR PFX
"Init not done yet\n");
1936 BNX2FC_HBA_DBG(lport
, "calling fc_fabric_login\n");
1938 if (!bnx2fc_link_ok(lport
) && interface
->enabled
) {
1939 BNX2FC_HBA_DBG(lport
, "ctlr_link_up\n");
1940 fcoe_ctlr_link_up(ctlr
);
1941 fc_host_port_type(lport
->host
) = FC_PORTTYPE_NPORT
;
1942 set_bit(ADAPTER_STATE_READY
, &interface
->hba
->adapter_state
);
1945 /* wait for the FCF to be selected before issuing FLOGI */
1946 while (!ctlr
->sel_fcf
) {
1948 /* give up after 3 secs */
1949 if (++wait_cnt
> 12)
1953 /* Reset max receive frame size to default */
1954 if (fc_set_mfs(lport
, BNX2FC_MFS
))
1957 fc_lport_init(lport
);
1958 fc_fabric_login(lport
);
1963 * bnx2fc_ulp_init - Initialize an adapter instance
1965 * @dev : cnic device handle
1966 * Called from cnic_register_driver() context to initialize all
1967 * enumerated cnic devices. This routine allocates adapter structure
1968 * and other device specific resources.
1970 static void bnx2fc_ulp_init(struct cnic_dev
*dev
)
1972 struct bnx2fc_hba
*hba
;
1975 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
1976 /* bnx2fc works only when bnx2x is loaded */
1977 if (!test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
) ||
1978 (dev
->max_fcoe_conn
== 0)) {
1979 printk(KERN_ERR PFX
"bnx2fc FCoE not supported on %s,"
1980 " flags: %lx fcoe_conn: %d\n",
1981 dev
->netdev
->name
, dev
->flags
, dev
->max_fcoe_conn
);
1985 hba
= bnx2fc_hba_create(dev
);
1987 printk(KERN_ERR PFX
"hba initialization failed\n");
1991 /* Add HBA to the adapter list */
1992 mutex_lock(&bnx2fc_dev_lock
);
1993 list_add_tail(&hba
->list
, &adapter_list
);
1995 mutex_unlock(&bnx2fc_dev_lock
);
1997 dev
->fcoe_cap
= &hba
->fcoe_cap
;
1998 clear_bit(BNX2FC_CNIC_REGISTERED
, &hba
->reg_with_cnic
);
1999 rc
= dev
->register_device(dev
, CNIC_ULP_FCOE
,
2002 printk(KERN_ERR PFX
"register_device failed, rc = %d\n", rc
);
2004 set_bit(BNX2FC_CNIC_REGISTERED
, &hba
->reg_with_cnic
);
2008 * Deperecated: Use bnx2fc_enabled()
2010 static int bnx2fc_disable(struct net_device
*netdev
)
2012 struct bnx2fc_interface
*interface
;
2013 struct fcoe_ctlr
*ctlr
;
2017 mutex_lock(&bnx2fc_dev_lock
);
2019 interface
= bnx2fc_interface_lookup(netdev
);
2020 ctlr
= bnx2fc_to_ctlr(interface
);
2021 if (!interface
|| !ctlr
->lp
) {
2023 printk(KERN_ERR PFX
"bnx2fc_disable: interface or lport not found\n");
2025 interface
->enabled
= false;
2026 fcoe_ctlr_link_down(ctlr
);
2027 fcoe_clean_pending_queue(ctlr
->lp
);
2030 mutex_unlock(&bnx2fc_dev_lock
);
2036 * Deprecated: Use bnx2fc_enabled()
2038 static int bnx2fc_enable(struct net_device
*netdev
)
2040 struct bnx2fc_interface
*interface
;
2041 struct fcoe_ctlr
*ctlr
;
2045 mutex_lock(&bnx2fc_dev_lock
);
2047 interface
= bnx2fc_interface_lookup(netdev
);
2048 ctlr
= bnx2fc_to_ctlr(interface
);
2049 if (!interface
|| !ctlr
->lp
) {
2051 printk(KERN_ERR PFX
"bnx2fc_enable: interface or lport not found\n");
2052 } else if (!bnx2fc_link_ok(ctlr
->lp
)) {
2053 fcoe_ctlr_link_up(ctlr
);
2054 interface
->enabled
= true;
2057 mutex_unlock(&bnx2fc_dev_lock
);
2063 * bnx2fc_ctlr_enabled() - Enable or disable an FCoE Controller
2064 * @cdev: The FCoE Controller that is being enabled or disabled
2066 * fcoe_sysfs will ensure that the state of 'enabled' has
2067 * changed, so no checking is necessary here. This routine simply
2068 * calls fcoe_enable or fcoe_disable, both of which are deprecated.
2069 * When those routines are removed the functionality can be merged
2072 static int bnx2fc_ctlr_enabled(struct fcoe_ctlr_device
*cdev
)
2074 struct fcoe_ctlr
*ctlr
= fcoe_ctlr_device_priv(cdev
);
2075 struct fc_lport
*lport
= ctlr
->lp
;
2076 struct net_device
*netdev
= bnx2fc_netdev(lport
);
2078 switch (cdev
->enabled
) {
2079 case FCOE_CTLR_ENABLED
:
2080 return bnx2fc_enable(netdev
);
2081 case FCOE_CTLR_DISABLED
:
2082 return bnx2fc_disable(netdev
);
2083 case FCOE_CTLR_UNUSED
:
2089 enum bnx2fc_create_link_state
{
2090 BNX2FC_CREATE_LINK_DOWN
,
2091 BNX2FC_CREATE_LINK_UP
,
2095 * _bnx2fc_create() - Create bnx2fc FCoE interface
2096 * @netdev : The net_device object the Ethernet interface to create on
2097 * @fip_mode: The FIP mode for this creation
2098 * @link_state: The ctlr link state on creation
2100 * Called from either the libfcoe 'create' module parameter
2101 * via fcoe_create or from fcoe_syfs's ctlr_create file.
2103 * libfcoe's 'create' module parameter is deprecated so some
2104 * consolidation of code can be done when that interface is
2107 * Returns: 0 for success
2109 static int _bnx2fc_create(struct net_device
*netdev
,
2110 enum fip_state fip_mode
,
2111 enum bnx2fc_create_link_state link_state
)
2113 struct fcoe_ctlr_device
*cdev
;
2114 struct fcoe_ctlr
*ctlr
;
2115 struct bnx2fc_interface
*interface
;
2116 struct bnx2fc_hba
*hba
;
2117 struct net_device
*phys_dev
= netdev
;
2118 struct fc_lport
*lport
;
2119 struct ethtool_drvinfo drvinfo
;
2123 BNX2FC_MISC_DBG("Entered bnx2fc_create\n");
2124 if (fip_mode
!= FIP_MODE_FABRIC
) {
2125 printk(KERN_ERR
"fip mode not FABRIC\n");
2131 mutex_lock(&bnx2fc_dev_lock
);
2133 if (!try_module_get(THIS_MODULE
)) {
2138 /* obtain physical netdev */
2139 if (netdev
->priv_flags
& IFF_802_1Q_VLAN
)
2140 phys_dev
= vlan_dev_real_dev(netdev
);
2142 /* verify if the physical device is a netxtreme2 device */
2143 if (phys_dev
->ethtool_ops
&& phys_dev
->ethtool_ops
->get_drvinfo
) {
2144 memset(&drvinfo
, 0, sizeof(drvinfo
));
2145 phys_dev
->ethtool_ops
->get_drvinfo(phys_dev
, &drvinfo
);
2146 if (strncmp(drvinfo
.driver
, "bnx2x", strlen("bnx2x"))) {
2147 printk(KERN_ERR PFX
"Not a netxtreme2 device\n");
2152 printk(KERN_ERR PFX
"unable to obtain drv_info\n");
2157 /* obtain interface and initialize rest of the structure */
2158 hba
= bnx2fc_hba_lookup(phys_dev
);
2161 printk(KERN_ERR PFX
"bnx2fc_create: hba not found\n");
2165 if (bnx2fc_interface_lookup(netdev
)) {
2170 interface
= bnx2fc_interface_create(hba
, netdev
, fip_mode
);
2172 printk(KERN_ERR PFX
"bnx2fc_interface_create failed\n");
2176 if (netdev
->priv_flags
& IFF_802_1Q_VLAN
) {
2177 vlan_id
= vlan_dev_vlan_id(netdev
);
2178 interface
->vlan_enabled
= 1;
2181 ctlr
= bnx2fc_to_ctlr(interface
);
2182 cdev
= fcoe_ctlr_to_ctlr_dev(ctlr
);
2183 interface
->vlan_id
= vlan_id
;
2185 interface
->timer_work_queue
=
2186 create_singlethread_workqueue("bnx2fc_timer_wq");
2187 if (!interface
->timer_work_queue
) {
2188 printk(KERN_ERR PFX
"ulp_init could not create timer_wq\n");
2193 lport
= bnx2fc_if_create(interface
, &cdev
->dev
, 0);
2195 printk(KERN_ERR PFX
"Failed to create interface (%s)\n",
2201 /* Add interface to if_list */
2202 list_add_tail(&interface
->list
, &if_list
);
2204 lport
->boot_time
= jiffies
;
2206 /* Make this master N_port */
2209 if (link_state
== BNX2FC_CREATE_LINK_UP
)
2210 cdev
->enabled
= FCOE_CTLR_ENABLED
;
2212 cdev
->enabled
= FCOE_CTLR_DISABLED
;
2214 if (link_state
== BNX2FC_CREATE_LINK_UP
&&
2215 !bnx2fc_link_ok(lport
)) {
2216 fcoe_ctlr_link_up(ctlr
);
2217 fc_host_port_type(lport
->host
) = FC_PORTTYPE_NPORT
;
2218 set_bit(ADAPTER_STATE_READY
, &interface
->hba
->adapter_state
);
2221 BNX2FC_HBA_DBG(lport
, "create: START DISC\n");
2222 bnx2fc_start_disc(interface
);
2224 if (link_state
== BNX2FC_CREATE_LINK_UP
)
2225 interface
->enabled
= true;
2228 * Release from kref_init in bnx2fc_interface_setup, on success
2229 * lport should be holding a reference taken in bnx2fc_if_create
2231 bnx2fc_interface_put(interface
);
2232 /* put netdev that was held while calling dev_get_by_name */
2233 mutex_unlock(&bnx2fc_dev_lock
);
2238 destroy_workqueue(interface
->timer_work_queue
);
2240 bnx2fc_net_cleanup(interface
);
2241 bnx2fc_interface_put(interface
);
2244 module_put(THIS_MODULE
);
2246 mutex_unlock(&bnx2fc_dev_lock
);
2252 * bnx2fc_create() - Create a bnx2fc interface
2253 * @netdev : The net_device object the Ethernet interface to create on
2254 * @fip_mode: The FIP mode for this creation
2256 * Called from fcoe transport
2258 * Returns: 0 for success
2260 static int bnx2fc_create(struct net_device
*netdev
, enum fip_state fip_mode
)
2262 return _bnx2fc_create(netdev
, fip_mode
, BNX2FC_CREATE_LINK_UP
);
2266 * bnx2fc_ctlr_alloc() - Allocate a bnx2fc interface from fcoe_sysfs
2267 * @netdev: The net_device to be used by the allocated FCoE Controller
2269 * This routine is called from fcoe_sysfs. It will start the fcoe_ctlr
2270 * in a link_down state. The allows the user an opportunity to configure
2271 * the FCoE Controller from sysfs before enabling the FCoE Controller.
2273 * Creating in with this routine starts the FCoE Controller in Fabric
2274 * mode. The user can change to VN2VN or another mode before enabling.
2276 static int bnx2fc_ctlr_alloc(struct net_device
*netdev
)
2278 return _bnx2fc_create(netdev
, FIP_MODE_FABRIC
,
2279 BNX2FC_CREATE_LINK_DOWN
);
2283 * bnx2fc_find_hba_for_cnic - maps cnic instance to bnx2fc hba instance
2285 * @cnic: Pointer to cnic device instance
2288 static struct bnx2fc_hba
*bnx2fc_find_hba_for_cnic(struct cnic_dev
*cnic
)
2290 struct bnx2fc_hba
*hba
;
2292 /* Called with bnx2fc_dev_lock held */
2293 list_for_each_entry(hba
, &adapter_list
, list
) {
2294 if (hba
->cnic
== cnic
)
2300 static struct bnx2fc_interface
*bnx2fc_interface_lookup(struct net_device
2303 struct bnx2fc_interface
*interface
;
2305 /* Called with bnx2fc_dev_lock held */
2306 list_for_each_entry(interface
, &if_list
, list
) {
2307 if (interface
->netdev
== netdev
)
2313 static struct bnx2fc_hba
*bnx2fc_hba_lookup(struct net_device
2316 struct bnx2fc_hba
*hba
;
2318 /* Called with bnx2fc_dev_lock held */
2319 list_for_each_entry(hba
, &adapter_list
, list
) {
2320 if (hba
->phys_dev
== phys_dev
)
2323 printk(KERN_ERR PFX
"adapter_lookup: hba NULL\n");
2328 * bnx2fc_ulp_exit - shuts down adapter instance and frees all resources
2330 * @dev cnic device handle
2332 static void bnx2fc_ulp_exit(struct cnic_dev
*dev
)
2334 struct bnx2fc_hba
*hba
;
2335 struct bnx2fc_interface
*interface
, *tmp
;
2337 BNX2FC_MISC_DBG("Entered bnx2fc_ulp_exit\n");
2339 if (!test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
2340 printk(KERN_ERR PFX
"bnx2fc port check: %s, flags: %lx\n",
2341 dev
->netdev
->name
, dev
->flags
);
2345 mutex_lock(&bnx2fc_dev_lock
);
2346 hba
= bnx2fc_find_hba_for_cnic(dev
);
2348 printk(KERN_ERR PFX
"bnx2fc_ulp_exit: hba not found, dev 0%p\n",
2350 mutex_unlock(&bnx2fc_dev_lock
);
2354 list_del_init(&hba
->list
);
2357 list_for_each_entry_safe(interface
, tmp
, &if_list
, list
)
2358 /* destroy not called yet, move to quiesced list */
2359 if (interface
->hba
== hba
)
2360 __bnx2fc_destroy(interface
);
2361 mutex_unlock(&bnx2fc_dev_lock
);
2363 bnx2fc_ulp_stop(hba
);
2364 /* unregister cnic device */
2365 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED
, &hba
->reg_with_cnic
))
2366 hba
->cnic
->unregister_device(hba
->cnic
, CNIC_ULP_FCOE
);
2367 bnx2fc_hba_destroy(hba
);
2371 * bnx2fc_fcoe_reset - Resets the fcoe
2373 * @shost: shost the reset is from
2377 static int bnx2fc_fcoe_reset(struct Scsi_Host
*shost
)
2379 struct fc_lport
*lport
= shost_priv(shost
);
2380 fc_lport_reset(lport
);
2385 static bool bnx2fc_match(struct net_device
*netdev
)
2387 struct net_device
*phys_dev
= netdev
;
2389 mutex_lock(&bnx2fc_dev_lock
);
2390 if (netdev
->priv_flags
& IFF_802_1Q_VLAN
)
2391 phys_dev
= vlan_dev_real_dev(netdev
);
2393 if (bnx2fc_hba_lookup(phys_dev
)) {
2394 mutex_unlock(&bnx2fc_dev_lock
);
2398 mutex_unlock(&bnx2fc_dev_lock
);
2403 static struct fcoe_transport bnx2fc_transport
= {
2406 .list
= LIST_HEAD_INIT(bnx2fc_transport
.list
),
2407 .alloc
= bnx2fc_ctlr_alloc
,
2408 .match
= bnx2fc_match
,
2409 .create
= bnx2fc_create
,
2410 .destroy
= bnx2fc_destroy
,
2411 .enable
= bnx2fc_enable
,
2412 .disable
= bnx2fc_disable
,
2416 * bnx2fc_percpu_thread_create - Create a receive thread for an
2419 * @cpu: cpu index for the online cpu
2421 static void bnx2fc_percpu_thread_create(unsigned int cpu
)
2423 struct bnx2fc_percpu_s
*p
;
2424 struct task_struct
*thread
;
2426 p
= &per_cpu(bnx2fc_percpu
, cpu
);
2428 thread
= kthread_create_on_node(bnx2fc_percpu_io_thread
,
2429 (void *)p
, cpu_to_node(cpu
),
2430 "bnx2fc_thread/%d", cpu
);
2431 /* bind thread to the cpu */
2432 if (likely(!IS_ERR(thread
))) {
2433 kthread_bind(thread
, cpu
);
2434 p
->iothread
= thread
;
2435 wake_up_process(thread
);
2439 static void bnx2fc_percpu_thread_destroy(unsigned int cpu
)
2441 struct bnx2fc_percpu_s
*p
;
2442 struct task_struct
*thread
;
2443 struct bnx2fc_work
*work
, *tmp
;
2445 BNX2FC_MISC_DBG("destroying io thread for CPU %d\n", cpu
);
2447 /* Prevent any new work from being queued for this CPU */
2448 p
= &per_cpu(bnx2fc_percpu
, cpu
);
2449 spin_lock_bh(&p
->fp_work_lock
);
2450 thread
= p
->iothread
;
2454 /* Free all work in the list */
2455 list_for_each_entry_safe(work
, tmp
, &p
->work_list
, list
) {
2456 list_del_init(&work
->list
);
2457 bnx2fc_process_cq_compl(work
->tgt
, work
->wqe
);
2461 spin_unlock_bh(&p
->fp_work_lock
);
2464 kthread_stop(thread
);
2468 * bnx2fc_cpu_callback - Handler for CPU hotplug events
2470 * @nfb: The callback data block
2471 * @action: The event triggering the callback
2472 * @hcpu: The index of the CPU that the event is for
2474 * This creates or destroys per-CPU data for fcoe
2476 * Returns NOTIFY_OK always.
2478 static int bnx2fc_cpu_callback(struct notifier_block
*nfb
,
2479 unsigned long action
, void *hcpu
)
2481 unsigned cpu
= (unsigned long)hcpu
;
2485 case CPU_ONLINE_FROZEN
:
2486 printk(PFX
"CPU %x online: Create Rx thread\n", cpu
);
2487 bnx2fc_percpu_thread_create(cpu
);
2490 case CPU_DEAD_FROZEN
:
2491 printk(PFX
"CPU %x offline: Remove Rx thread\n", cpu
);
2492 bnx2fc_percpu_thread_destroy(cpu
);
2501 * bnx2fc_mod_init - module init entry point
2503 * Initialize driver wide global data structures, and register
2506 static int __init
bnx2fc_mod_init(void)
2508 struct fcoe_percpu_s
*bg
;
2509 struct task_struct
*l2_thread
;
2511 unsigned int cpu
= 0;
2512 struct bnx2fc_percpu_s
*p
;
2514 printk(KERN_INFO PFX
"%s", version
);
2516 /* register as a fcoe transport */
2517 rc
= fcoe_transport_attach(&bnx2fc_transport
);
2519 printk(KERN_ERR
"failed to register an fcoe transport, check "
2520 "if libfcoe is loaded\n");
2524 INIT_LIST_HEAD(&adapter_list
);
2525 INIT_LIST_HEAD(&if_list
);
2526 mutex_init(&bnx2fc_dev_lock
);
2529 /* Attach FC transport template */
2530 rc
= bnx2fc_attach_transport();
2534 bnx2fc_wq
= alloc_workqueue("bnx2fc", 0, 0);
2540 bg
= &bnx2fc_global
;
2541 skb_queue_head_init(&bg
->fcoe_rx_list
);
2542 l2_thread
= kthread_create(bnx2fc_l2_rcv_thread
,
2544 "bnx2fc_l2_thread");
2545 if (IS_ERR(l2_thread
)) {
2546 rc
= PTR_ERR(l2_thread
);
2549 wake_up_process(l2_thread
);
2550 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
2551 bg
->thread
= l2_thread
;
2552 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
2554 for_each_possible_cpu(cpu
) {
2555 p
= &per_cpu(bnx2fc_percpu
, cpu
);
2556 INIT_LIST_HEAD(&p
->work_list
);
2557 spin_lock_init(&p
->fp_work_lock
);
2560 for_each_online_cpu(cpu
) {
2561 bnx2fc_percpu_thread_create(cpu
);
2564 /* Initialize per CPU interrupt thread */
2565 register_hotcpu_notifier(&bnx2fc_cpu_notifier
);
2567 cnic_register_driver(CNIC_ULP_FCOE
, &bnx2fc_cnic_cb
);
2572 destroy_workqueue(bnx2fc_wq
);
2574 bnx2fc_release_transport();
2576 fcoe_transport_detach(&bnx2fc_transport
);
2581 static void __exit
bnx2fc_mod_exit(void)
2583 LIST_HEAD(to_be_deleted
);
2584 struct bnx2fc_hba
*hba
, *next
;
2585 struct fcoe_percpu_s
*bg
;
2586 struct task_struct
*l2_thread
;
2587 struct sk_buff
*skb
;
2588 unsigned int cpu
= 0;
2591 * NOTE: Since cnic calls register_driver routine rtnl_lock,
2592 * it will have higher precedence than bnx2fc_dev_lock.
2593 * unregister_device() cannot be called with bnx2fc_dev_lock
2596 mutex_lock(&bnx2fc_dev_lock
);
2597 list_splice(&adapter_list
, &to_be_deleted
);
2598 INIT_LIST_HEAD(&adapter_list
);
2600 mutex_unlock(&bnx2fc_dev_lock
);
2602 /* Unregister with cnic */
2603 list_for_each_entry_safe(hba
, next
, &to_be_deleted
, list
) {
2604 list_del_init(&hba
->list
);
2605 printk(KERN_ERR PFX
"MOD_EXIT:destroy hba = 0x%p\n",
2607 bnx2fc_ulp_stop(hba
);
2608 /* unregister cnic device */
2609 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED
,
2610 &hba
->reg_with_cnic
))
2611 hba
->cnic
->unregister_device(hba
->cnic
,
2613 bnx2fc_hba_destroy(hba
);
2615 cnic_unregister_driver(CNIC_ULP_FCOE
);
2617 /* Destroy global thread */
2618 bg
= &bnx2fc_global
;
2619 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
2620 l2_thread
= bg
->thread
;
2622 while ((skb
= __skb_dequeue(&bg
->fcoe_rx_list
)) != NULL
)
2625 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
2628 kthread_stop(l2_thread
);
2630 unregister_hotcpu_notifier(&bnx2fc_cpu_notifier
);
2632 /* Destroy per cpu threads */
2633 for_each_online_cpu(cpu
) {
2634 bnx2fc_percpu_thread_destroy(cpu
);
2637 destroy_workqueue(bnx2fc_wq
);
2639 * detach from scsi transport
2640 * must happen after all destroys are done
2642 bnx2fc_release_transport();
2644 /* detach from fcoe transport */
2645 fcoe_transport_detach(&bnx2fc_transport
);
2648 module_init(bnx2fc_mod_init
);
2649 module_exit(bnx2fc_mod_exit
);
2651 static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ
= {
2652 .set_fcoe_ctlr_enabled
= bnx2fc_ctlr_enabled
,
2653 .get_fcoe_ctlr_link_fail
= fcoe_ctlr_get_lesb
,
2654 .get_fcoe_ctlr_vlink_fail
= fcoe_ctlr_get_lesb
,
2655 .get_fcoe_ctlr_miss_fka
= fcoe_ctlr_get_lesb
,
2656 .get_fcoe_ctlr_symb_err
= fcoe_ctlr_get_lesb
,
2657 .get_fcoe_ctlr_err_block
= fcoe_ctlr_get_lesb
,
2658 .get_fcoe_ctlr_fcs_error
= fcoe_ctlr_get_lesb
,
2660 .get_fcoe_fcf_selected
= fcoe_fcf_get_selected
,
2661 .get_fcoe_fcf_vlan_id
= bnx2fc_fcf_get_vlan_id
,
2664 static struct fc_function_template bnx2fc_transport_function
= {
2665 .show_host_node_name
= 1,
2666 .show_host_port_name
= 1,
2667 .show_host_supported_classes
= 1,
2668 .show_host_supported_fc4s
= 1,
2669 .show_host_active_fc4s
= 1,
2670 .show_host_maxframe_size
= 1,
2672 .show_host_port_id
= 1,
2673 .show_host_supported_speeds
= 1,
2674 .get_host_speed
= fc_get_host_speed
,
2675 .show_host_speed
= 1,
2676 .show_host_port_type
= 1,
2677 .get_host_port_state
= fc_get_host_port_state
,
2678 .show_host_port_state
= 1,
2679 .show_host_symbolic_name
= 1,
2681 .dd_fcrport_size
= (sizeof(struct fc_rport_libfc_priv
) +
2682 sizeof(struct bnx2fc_rport
)),
2683 .show_rport_maxframe_size
= 1,
2684 .show_rport_supported_classes
= 1,
2686 .show_host_fabric_name
= 1,
2687 .show_starget_node_name
= 1,
2688 .show_starget_port_name
= 1,
2689 .show_starget_port_id
= 1,
2690 .set_rport_dev_loss_tmo
= fc_set_rport_loss_tmo
,
2691 .show_rport_dev_loss_tmo
= 1,
2692 .get_fc_host_stats
= bnx2fc_get_host_stats
,
2694 .issue_fc_host_lip
= bnx2fc_fcoe_reset
,
2696 .terminate_rport_io
= fc_rport_terminate_io
,
2698 .vport_create
= bnx2fc_vport_create
,
2699 .vport_delete
= bnx2fc_vport_destroy
,
2700 .vport_disable
= bnx2fc_vport_disable
,
2701 .bsg_request
= fc_lport_bsg_request
,
2704 static struct fc_function_template bnx2fc_vport_xport_function
= {
2705 .show_host_node_name
= 1,
2706 .show_host_port_name
= 1,
2707 .show_host_supported_classes
= 1,
2708 .show_host_supported_fc4s
= 1,
2709 .show_host_active_fc4s
= 1,
2710 .show_host_maxframe_size
= 1,
2712 .show_host_port_id
= 1,
2713 .show_host_supported_speeds
= 1,
2714 .get_host_speed
= fc_get_host_speed
,
2715 .show_host_speed
= 1,
2716 .show_host_port_type
= 1,
2717 .get_host_port_state
= fc_get_host_port_state
,
2718 .show_host_port_state
= 1,
2719 .show_host_symbolic_name
= 1,
2721 .dd_fcrport_size
= (sizeof(struct fc_rport_libfc_priv
) +
2722 sizeof(struct bnx2fc_rport
)),
2723 .show_rport_maxframe_size
= 1,
2724 .show_rport_supported_classes
= 1,
2726 .show_host_fabric_name
= 1,
2727 .show_starget_node_name
= 1,
2728 .show_starget_port_name
= 1,
2729 .show_starget_port_id
= 1,
2730 .set_rport_dev_loss_tmo
= fc_set_rport_loss_tmo
,
2731 .show_rport_dev_loss_tmo
= 1,
2732 .get_fc_host_stats
= fc_get_host_stats
,
2733 .issue_fc_host_lip
= bnx2fc_fcoe_reset
,
2734 .terminate_rport_io
= fc_rport_terminate_io
,
2735 .bsg_request
= fc_lport_bsg_request
,
2739 * scsi_host_template structure used while registering with SCSI-ml
2741 static struct scsi_host_template bnx2fc_shost_template
= {
2742 .module
= THIS_MODULE
,
2743 .name
= "Broadcom Offload FCoE Initiator",
2744 .queuecommand
= bnx2fc_queuecommand
,
2745 .eh_abort_handler
= bnx2fc_eh_abort
, /* abts */
2746 .eh_device_reset_handler
= bnx2fc_eh_device_reset
, /* lun reset */
2747 .eh_target_reset_handler
= bnx2fc_eh_target_reset
, /* tgt reset */
2748 .eh_host_reset_handler
= fc_eh_host_reset
,
2749 .slave_alloc
= fc_slave_alloc
,
2750 .change_queue_depth
= fc_change_queue_depth
,
2751 .change_queue_type
= fc_change_queue_type
,
2754 .use_clustering
= ENABLE_CLUSTERING
,
2755 .sg_tablesize
= BNX2FC_MAX_BDS_PER_CMD
,
2756 .max_sectors
= 1024,
2759 static struct libfc_function_template bnx2fc_libfc_fcn_templ
= {
2760 .frame_send
= bnx2fc_xmit
,
2761 .elsct_send
= bnx2fc_elsct_send
,
2762 .fcp_abort_io
= bnx2fc_abort_io
,
2763 .fcp_cleanup
= bnx2fc_cleanup
,
2764 .get_lesb
= fcoe_get_lesb
,
2765 .rport_event_callback
= bnx2fc_rport_event_handler
,
2769 * bnx2fc_cnic_cb - global template of bnx2fc - cnic driver interface
2770 * structure carrying callback function pointers
2772 static struct cnic_ulp_ops bnx2fc_cnic_cb
= {
2773 .owner
= THIS_MODULE
,
2774 .cnic_init
= bnx2fc_ulp_init
,
2775 .cnic_exit
= bnx2fc_ulp_exit
,
2776 .cnic_start
= bnx2fc_ulp_start
,
2777 .cnic_stop
= bnx2fc_ulp_stop
,
2778 .indicate_kcqes
= bnx2fc_indicate_kcqe
,
2779 .indicate_netevent
= bnx2fc_indicate_netevent
,
2780 .cnic_get_stats
= bnx2fc_ulp_get_stats
,