1 /* bnx2fc_fcoe.c: QLogic 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
7 * Copyright (c) 2014-2016 QLogic Corporation
8 * Copyright (c) 2016-2017 Cavium Inc.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation.
14 * Written by: Bhanu Prakash Gollapudi (bprakash@broadcom.com)
19 static struct list_head adapter_list
;
20 static struct list_head if_list
;
21 static u32 adapter_count
;
22 static DEFINE_MUTEX(bnx2fc_dev_lock
);
23 DEFINE_PER_CPU(struct bnx2fc_percpu_s
, bnx2fc_percpu
);
25 #define DRV_MODULE_NAME "bnx2fc"
26 #define DRV_MODULE_VERSION BNX2FC_VERSION
27 #define DRV_MODULE_RELDATE "October 15, 2015"
30 static char version
[] =
31 "QLogic FCoE Driver " DRV_MODULE_NAME \
32 " v" DRV_MODULE_VERSION
" (" DRV_MODULE_RELDATE
")\n";
35 MODULE_AUTHOR("Bhanu Prakash Gollapudi <bprakash@broadcom.com>");
36 MODULE_DESCRIPTION("QLogic FCoE Driver");
37 MODULE_LICENSE("GPL");
38 MODULE_VERSION(DRV_MODULE_VERSION
);
40 #define BNX2FC_MAX_QUEUE_DEPTH 256
41 #define BNX2FC_MIN_QUEUE_DEPTH 32
42 #define FCOE_WORD_TO_BYTE 4
44 static struct scsi_transport_template
*bnx2fc_transport_template
;
45 static struct scsi_transport_template
*bnx2fc_vport_xport_template
;
47 struct workqueue_struct
*bnx2fc_wq
;
49 /* bnx2fc structure needs only one instance of the fcoe_percpu_s structure.
50 * Here the io threads are per cpu but the l2 thread is just one
52 struct fcoe_percpu_s bnx2fc_global
;
53 DEFINE_SPINLOCK(bnx2fc_global_lock
);
55 static struct cnic_ulp_ops bnx2fc_cnic_cb
;
56 static struct libfc_function_template bnx2fc_libfc_fcn_templ
;
57 static struct scsi_host_template bnx2fc_shost_template
;
58 static struct fc_function_template bnx2fc_transport_function
;
59 static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ
;
60 static struct fc_function_template bnx2fc_vport_xport_function
;
61 static int bnx2fc_create(struct net_device
*netdev
, enum fip_mode fip_mode
);
62 static void __bnx2fc_destroy(struct bnx2fc_interface
*interface
);
63 static int bnx2fc_destroy(struct net_device
*net_device
);
64 static int bnx2fc_enable(struct net_device
*netdev
);
65 static int bnx2fc_disable(struct net_device
*netdev
);
67 /* fcoe_syfs control interface handlers */
68 static int bnx2fc_ctlr_alloc(struct net_device
*netdev
);
69 static int bnx2fc_ctlr_enabled(struct fcoe_ctlr_device
*cdev
);
71 static void bnx2fc_recv_frame(struct sk_buff
*skb
);
73 static void bnx2fc_start_disc(struct bnx2fc_interface
*interface
);
74 static int bnx2fc_shost_config(struct fc_lport
*lport
, struct device
*dev
);
75 static int bnx2fc_lport_config(struct fc_lport
*lport
);
76 static int bnx2fc_em_config(struct fc_lport
*lport
, struct bnx2fc_hba
*hba
);
77 static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba
*hba
);
78 static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba
*hba
);
79 static int bnx2fc_bind_pcidev(struct bnx2fc_hba
*hba
);
80 static void bnx2fc_unbind_pcidev(struct bnx2fc_hba
*hba
);
81 static struct fc_lport
*bnx2fc_if_create(struct bnx2fc_interface
*interface
,
82 struct device
*parent
, int npiv
);
83 static void bnx2fc_destroy_work(struct work_struct
*work
);
85 static struct bnx2fc_hba
*bnx2fc_hba_lookup(struct net_device
*phys_dev
);
86 static struct bnx2fc_interface
*bnx2fc_interface_lookup(struct net_device
88 static inline void bnx2fc_interface_put(struct bnx2fc_interface
*interface
);
89 static struct bnx2fc_hba
*bnx2fc_find_hba_for_cnic(struct cnic_dev
*cnic
);
91 static int bnx2fc_fw_init(struct bnx2fc_hba
*hba
);
92 static void bnx2fc_fw_destroy(struct bnx2fc_hba
*hba
);
94 static void bnx2fc_port_shutdown(struct fc_lport
*lport
);
95 static void bnx2fc_stop(struct bnx2fc_interface
*interface
);
96 static int __init
bnx2fc_mod_init(void);
97 static void __exit
bnx2fc_mod_exit(void);
99 unsigned int bnx2fc_debug_level
;
100 module_param_named(debug_logging
, bnx2fc_debug_level
, int, S_IRUGO
|S_IWUSR
);
101 MODULE_PARM_DESC(debug_logging
,
102 "Option to enable extended logging,\n"
103 "\t\tDefault is 0 - no logging.\n"
104 "\t\t0x01 - SCSI cmd error, cleanup.\n"
105 "\t\t0x02 - Session setup, cleanup, etc.\n"
106 "\t\t0x04 - lport events, link, mtu, etc.\n"
107 "\t\t0x08 - ELS logs.\n"
108 "\t\t0x10 - fcoe L2 fame related logs.\n"
109 "\t\t0xff - LOG all messages.");
111 uint bnx2fc_devloss_tmo
;
112 module_param_named(devloss_tmo
, bnx2fc_devloss_tmo
, uint
, S_IRUGO
);
113 MODULE_PARM_DESC(devloss_tmo
, " Change devloss_tmo for the remote ports "
114 "attached via bnx2fc.");
116 uint bnx2fc_max_luns
= BNX2FC_MAX_LUN
;
117 module_param_named(max_luns
, bnx2fc_max_luns
, uint
, S_IRUGO
);
118 MODULE_PARM_DESC(max_luns
, " Change the default max_lun per SCSI host. Default "
121 uint bnx2fc_queue_depth
;
122 module_param_named(queue_depth
, bnx2fc_queue_depth
, uint
, S_IRUGO
);
123 MODULE_PARM_DESC(queue_depth
, " Change the default queue depth of SCSI devices "
124 "attached via bnx2fc.");
127 module_param_named(log_fka
, bnx2fc_log_fka
, uint
, S_IRUGO
|S_IWUSR
);
128 MODULE_PARM_DESC(log_fka
, " Print message to kernel log when fcoe is "
129 "initiating a FIP keep alive when debug logging is enabled.");
131 static inline struct net_device
*bnx2fc_netdev(const struct fc_lport
*lport
)
133 return ((struct bnx2fc_interface
*)
134 ((struct fcoe_port
*)lport_priv(lport
))->priv
)->netdev
;
137 static void bnx2fc_fcf_get_vlan_id(struct fcoe_fcf_device
*fcf_dev
)
139 struct fcoe_ctlr_device
*ctlr_dev
=
140 fcoe_fcf_dev_to_ctlr_dev(fcf_dev
);
141 struct fcoe_ctlr
*ctlr
= fcoe_ctlr_device_priv(ctlr_dev
);
142 struct bnx2fc_interface
*fcoe
= fcoe_ctlr_priv(ctlr
);
144 fcf_dev
->vlan_id
= fcoe
->vlan_id
;
147 static void bnx2fc_clean_rx_queue(struct fc_lport
*lp
)
149 struct fcoe_percpu_s
*bg
;
150 struct fcoe_rcv_info
*fr
;
151 struct sk_buff_head
*list
;
152 struct sk_buff
*skb
, *next
;
155 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
156 list
= &bg
->fcoe_rx_list
;
157 skb_queue_walk_safe(list
, skb
, next
) {
158 fr
= fcoe_dev_from_skb(skb
);
159 if (fr
->fr_dev
== lp
) {
160 __skb_unlink(skb
, list
);
164 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
167 int bnx2fc_get_paged_crc_eof(struct sk_buff
*skb
, int tlen
)
170 spin_lock(&bnx2fc_global_lock
);
171 rc
= fcoe_get_paged_crc_eof(skb
, tlen
, &bnx2fc_global
);
172 spin_unlock(&bnx2fc_global_lock
);
177 static void bnx2fc_abort_io(struct fc_lport
*lport
)
180 * This function is no-op for bnx2fc, but we do
181 * not want to leave it as NULL either, as libfc
182 * can call the default function which is
187 static void bnx2fc_cleanup(struct fc_lport
*lport
)
189 struct fcoe_port
*port
= lport_priv(lport
);
190 struct bnx2fc_interface
*interface
= port
->priv
;
191 struct bnx2fc_hba
*hba
= interface
->hba
;
192 struct bnx2fc_rport
*tgt
;
195 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
196 mutex_lock(&hba
->hba_mutex
);
197 spin_lock_bh(&hba
->hba_lock
);
198 for (i
= 0; i
< BNX2FC_NUM_MAX_SESS
; i
++) {
199 tgt
= hba
->tgt_ofld_list
[i
];
201 /* Cleanup IOs belonging to requested vport */
202 if (tgt
->port
== port
) {
203 spin_unlock_bh(&hba
->hba_lock
);
204 BNX2FC_TGT_DBG(tgt
, "flush/cleanup\n");
205 bnx2fc_flush_active_ios(tgt
);
206 spin_lock_bh(&hba
->hba_lock
);
210 spin_unlock_bh(&hba
->hba_lock
);
211 mutex_unlock(&hba
->hba_mutex
);
214 static int bnx2fc_xmit_l2_frame(struct bnx2fc_rport
*tgt
,
217 struct fc_rport_priv
*rdata
= tgt
->rdata
;
218 struct fc_frame_header
*fh
;
221 fh
= fc_frame_header_get(fp
);
222 BNX2FC_TGT_DBG(tgt
, "Xmit L2 frame rport = 0x%x, oxid = 0x%x, "
223 "r_ctl = 0x%x\n", rdata
->ids
.port_id
,
224 ntohs(fh
->fh_ox_id
), fh
->fh_r_ctl
);
225 if ((fh
->fh_type
== FC_TYPE_ELS
) &&
226 (fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
)) {
228 switch (fc_frame_payload_op(fp
)) {
230 rc
= bnx2fc_send_adisc(tgt
, fp
);
233 rc
= bnx2fc_send_logo(tgt
, fp
);
236 rc
= bnx2fc_send_rls(tgt
, fp
);
241 } else if ((fh
->fh_type
== FC_TYPE_BLS
) &&
242 (fh
->fh_r_ctl
== FC_RCTL_BA_ABTS
))
243 BNX2FC_TGT_DBG(tgt
, "ABTS frame\n");
245 BNX2FC_TGT_DBG(tgt
, "Send L2 frame type 0x%x "
246 "rctl 0x%x thru non-offload path\n",
247 fh
->fh_type
, fh
->fh_r_ctl
);
257 * bnx2fc_xmit - bnx2fc's FCoE frame transmit function
259 * @lport: the associated local port
260 * @fp: the fc_frame to be transmitted
262 static int bnx2fc_xmit(struct fc_lport
*lport
, struct fc_frame
*fp
)
265 struct fcoe_crc_eof
*cp
;
267 struct fc_frame_header
*fh
;
268 struct bnx2fc_interface
*interface
;
269 struct fcoe_ctlr
*ctlr
;
270 struct bnx2fc_hba
*hba
;
271 struct fcoe_port
*port
;
273 struct bnx2fc_rport
*tgt
;
274 struct fc_stats
*stats
;
277 unsigned int hlen
, tlen
, elen
;
280 port
= (struct fcoe_port
*)lport_priv(lport
);
281 interface
= port
->priv
;
282 ctlr
= bnx2fc_to_ctlr(interface
);
283 hba
= interface
->hba
;
285 fh
= fc_frame_header_get(fp
);
288 if (!lport
->link_up
) {
289 BNX2FC_HBA_DBG(lport
, "bnx2fc_xmit link down\n");
294 if (unlikely(fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
)) {
295 if (!ctlr
->sel_fcf
) {
296 BNX2FC_HBA_DBG(lport
, "FCF not selected yet!\n");
300 if (fcoe_ctlr_els_send(ctlr
, lport
, skb
))
308 * Snoop the frame header to check if the frame is for
309 * an offloaded session
312 * tgt_ofld_list access is synchronized using
313 * both hba mutex and hba lock. Atleast hba mutex or
314 * hba lock needs to be held for read access.
317 spin_lock_bh(&hba
->hba_lock
);
318 tgt
= bnx2fc_tgt_lookup(port
, ntoh24(fh
->fh_d_id
));
319 if (tgt
&& (test_bit(BNX2FC_FLAG_SESSION_READY
, &tgt
->flags
))) {
320 /* This frame is for offloaded session */
321 BNX2FC_HBA_DBG(lport
, "xmit: Frame is for offloaded session "
322 "port_id = 0x%x\n", ntoh24(fh
->fh_d_id
));
323 spin_unlock_bh(&hba
->hba_lock
);
324 rc
= bnx2fc_xmit_l2_frame(tgt
, fp
);
330 spin_unlock_bh(&hba
->hba_lock
);
333 elen
= sizeof(struct ethhdr
);
334 hlen
= sizeof(struct fcoe_hdr
);
335 tlen
= sizeof(struct fcoe_crc_eof
);
336 wlen
= (skb
->len
- tlen
+ sizeof(crc
)) / FCOE_WORD_TO_BYTE
;
338 skb
->ip_summed
= CHECKSUM_NONE
;
339 crc
= fcoe_fc_crc(fp
);
341 /* copy port crc and eof to the skb buff */
342 if (skb_is_nonlinear(skb
)) {
344 if (bnx2fc_get_paged_crc_eof(skb
, tlen
)) {
348 frag
= &skb_shinfo(skb
)->frags
[skb_shinfo(skb
)->nr_frags
- 1];
349 cp
= kmap_atomic(skb_frag_page(frag
)) + frag
->page_offset
;
351 cp
= skb_put(skb
, tlen
);
354 memset(cp
, 0, sizeof(*cp
));
356 cp
->fcoe_crc32
= cpu_to_le32(~crc
);
357 if (skb_is_nonlinear(skb
)) {
362 /* adjust skb network/transport offsets to match mac/fcoe/port */
363 skb_push(skb
, elen
+ hlen
);
364 skb_reset_mac_header(skb
);
365 skb_reset_network_header(skb
);
367 skb
->protocol
= htons(ETH_P_FCOE
);
368 skb
->dev
= interface
->netdev
;
370 /* fill up mac and fcoe headers */
372 eh
->h_proto
= htons(ETH_P_FCOE
);
374 fc_fcoe_set_mac(eh
->h_dest
, fh
->fh_d_id
);
376 /* insert GW address */
377 memcpy(eh
->h_dest
, ctlr
->dest_addr
, ETH_ALEN
);
379 if (unlikely(ctlr
->flogi_oxid
!= FC_XID_UNKNOWN
))
380 memcpy(eh
->h_source
, ctlr
->ctl_src_addr
, ETH_ALEN
);
382 memcpy(eh
->h_source
, port
->data_src_addr
, ETH_ALEN
);
384 hp
= (struct fcoe_hdr
*)(eh
+ 1);
385 memset(hp
, 0, sizeof(*hp
));
387 FC_FCOE_ENCAPS_VER(hp
, FC_FCOE_VER
);
390 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
391 if (lport
->seq_offload
&& fr_max_payload(fp
)) {
392 skb_shinfo(skb
)->gso_type
= SKB_GSO_FCOE
;
393 skb_shinfo(skb
)->gso_size
= fr_max_payload(fp
);
395 skb_shinfo(skb
)->gso_type
= 0;
396 skb_shinfo(skb
)->gso_size
= 0;
400 stats
= per_cpu_ptr(lport
->stats
, get_cpu());
402 stats
->TxWords
+= wlen
;
405 /* send down to lld */
407 if (port
->fcoe_pending_queue
.qlen
)
408 fcoe_check_wait_queue(lport
, skb
);
409 else if (fcoe_start_io(skb
))
410 fcoe_check_wait_queue(lport
, skb
);
416 * bnx2fc_rcv - This is bnx2fc's receive function called by NET_RX_SOFTIRQ
418 * @skb: the receive socket buffer
419 * @dev: associated net device
421 * @olddev: last device
423 * This function receives the packet and builds FC frame and passes it up
425 static int bnx2fc_rcv(struct sk_buff
*skb
, struct net_device
*dev
,
426 struct packet_type
*ptype
, struct net_device
*olddev
)
428 struct fc_lport
*lport
;
429 struct bnx2fc_interface
*interface
;
430 struct fcoe_ctlr
*ctlr
;
431 struct fc_frame_header
*fh
;
432 struct fcoe_rcv_info
*fr
;
433 struct fcoe_percpu_s
*bg
;
434 struct sk_buff
*tmp_skb
;
436 interface
= container_of(ptype
, struct bnx2fc_interface
,
438 ctlr
= bnx2fc_to_ctlr(interface
);
441 if (unlikely(lport
== NULL
)) {
442 printk(KERN_ERR PFX
"bnx2fc_rcv: lport is NULL\n");
446 tmp_skb
= skb_share_check(skb
, GFP_ATOMIC
);
452 if (unlikely(eth_hdr(skb
)->h_proto
!= htons(ETH_P_FCOE
))) {
453 printk(KERN_ERR PFX
"bnx2fc_rcv: Wrong FC type frame\n");
458 * Check for minimum frame length, and make sure required FCoE
459 * and FC headers are pulled into the linear data area.
461 if (unlikely((skb
->len
< FCOE_MIN_FRAME
) ||
462 !pskb_may_pull(skb
, FCOE_HEADER_LEN
)))
465 skb_set_transport_header(skb
, sizeof(struct fcoe_hdr
));
466 fh
= (struct fc_frame_header
*) skb_transport_header(skb
);
468 fr
= fcoe_dev_from_skb(skb
);
472 spin_lock(&bg
->fcoe_rx_list
.lock
);
474 __skb_queue_tail(&bg
->fcoe_rx_list
, skb
);
475 if (bg
->fcoe_rx_list
.qlen
== 1)
476 wake_up_process(bg
->kthread
);
478 spin_unlock(&bg
->fcoe_rx_list
.lock
);
486 static int bnx2fc_l2_rcv_thread(void *arg
)
488 struct fcoe_percpu_s
*bg
= arg
;
491 set_user_nice(current
, MIN_NICE
);
492 set_current_state(TASK_INTERRUPTIBLE
);
493 while (!kthread_should_stop()) {
495 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
496 while ((skb
= __skb_dequeue(&bg
->fcoe_rx_list
)) != NULL
) {
497 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
498 bnx2fc_recv_frame(skb
);
499 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
501 __set_current_state(TASK_INTERRUPTIBLE
);
502 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
504 __set_current_state(TASK_RUNNING
);
509 static void bnx2fc_recv_frame(struct sk_buff
*skb
)
512 struct fc_lport
*lport
;
513 struct fcoe_rcv_info
*fr
;
514 struct fc_stats
*stats
;
515 struct fc_frame_header
*fh
;
516 struct fcoe_crc_eof crc_eof
;
518 struct fc_lport
*vn_port
;
519 struct fcoe_port
*port
, *phys_port
;
523 struct bnx2fc_interface
*interface
;
524 struct fcoe_ctlr
*ctlr
;
526 fr
= fcoe_dev_from_skb(skb
);
528 if (unlikely(lport
== NULL
)) {
529 printk(KERN_ERR PFX
"Invalid lport struct\n");
534 if (skb_is_nonlinear(skb
))
536 mac
= eth_hdr(skb
)->h_source
;
537 dest_mac
= eth_hdr(skb
)->h_dest
;
539 /* Pull the header */
540 hp
= (struct fcoe_hdr
*) skb_network_header(skb
);
541 fh
= (struct fc_frame_header
*) skb_transport_header(skb
);
542 skb_pull(skb
, sizeof(struct fcoe_hdr
));
543 fr_len
= skb
->len
- sizeof(struct fcoe_crc_eof
);
545 fp
= (struct fc_frame
*)skb
;
548 fr_sof(fp
) = hp
->fcoe_sof
;
549 if (skb_copy_bits(skb
, fr_len
, &crc_eof
, sizeof(crc_eof
))) {
553 fr_eof(fp
) = crc_eof
.fcoe_eof
;
554 fr_crc(fp
) = crc_eof
.fcoe_crc32
;
555 if (pskb_trim(skb
, fr_len
)) {
560 phys_port
= lport_priv(lport
);
561 interface
= phys_port
->priv
;
562 ctlr
= bnx2fc_to_ctlr(interface
);
564 fh
= fc_frame_header_get(fp
);
566 if (ntoh24(&dest_mac
[3]) != ntoh24(fh
->fh_d_id
)) {
567 BNX2FC_HBA_DBG(lport
, "FC frame d_id mismatch with MAC %pM.\n",
573 vn_port
= fc_vport_id_lookup(lport
, ntoh24(fh
->fh_d_id
));
575 port
= lport_priv(vn_port
);
576 if (!ether_addr_equal(port
->data_src_addr
, dest_mac
)) {
577 BNX2FC_HBA_DBG(lport
, "fpma mismatch\n");
583 if (!ether_addr_equal(mac
, ctlr
->dest_addr
)) {
584 BNX2FC_HBA_DBG(lport
, "Wrong source address: mac:%pM dest_addr:%pM.\n",
585 mac
, ctlr
->dest_addr
);
590 if (fh
->fh_r_ctl
== FC_RCTL_DD_SOL_DATA
&&
591 fh
->fh_type
== FC_TYPE_FCP
) {
592 /* Drop FCP data. We dont this in L2 path */
596 if (fh
->fh_r_ctl
== FC_RCTL_ELS_REQ
&&
597 fh
->fh_type
== FC_TYPE_ELS
) {
598 switch (fc_frame_payload_op(fp
)) {
600 if (ntoh24(fh
->fh_s_id
) == FC_FID_FLOGI
) {
601 /* drop non-FIP LOGO */
609 if (fh
->fh_r_ctl
== FC_RCTL_BA_ABTS
) {
610 /* Drop incoming ABTS */
616 * If the destination ID from the frame header does not match what we
617 * have on record for lport and the search for a NPIV port came up
618 * empty then this is not addressed to our port so simply drop it.
620 if (lport
->port_id
!= ntoh24(fh
->fh_d_id
) && !vn_port
) {
621 BNX2FC_HBA_DBG(lport
, "Dropping frame due to destination mismatch: lport->port_id=%x fh->d_id=%x.\n",
622 lport
->port_id
, ntoh24(fh
->fh_d_id
));
627 stats
= per_cpu_ptr(lport
->stats
, smp_processor_id());
629 stats
->RxWords
+= fr_len
/ FCOE_WORD_TO_BYTE
;
631 if (le32_to_cpu(fr_crc(fp
)) !=
632 ~crc32(~0, skb
->data
, fr_len
)) {
633 if (stats
->InvalidCRCCount
< 5)
634 printk(KERN_WARNING PFX
"dropping frame with "
636 stats
->InvalidCRCCount
++;
640 fc_exch_recv(lport
, fp
);
644 * bnx2fc_percpu_io_thread - thread per cpu for ios
646 * @arg: ptr to bnx2fc_percpu_info structure
648 static int bnx2fc_percpu_io_thread(void *arg
)
650 struct bnx2fc_percpu_s
*p
= arg
;
651 struct bnx2fc_work
*work
, *tmp
;
652 LIST_HEAD(work_list
);
654 set_user_nice(current
, MIN_NICE
);
655 set_current_state(TASK_INTERRUPTIBLE
);
656 while (!kthread_should_stop()) {
658 spin_lock_bh(&p
->fp_work_lock
);
659 while (!list_empty(&p
->work_list
)) {
660 list_splice_init(&p
->work_list
, &work_list
);
661 spin_unlock_bh(&p
->fp_work_lock
);
663 list_for_each_entry_safe(work
, tmp
, &work_list
, list
) {
664 list_del_init(&work
->list
);
665 bnx2fc_process_cq_compl(work
->tgt
, work
->wqe
);
669 spin_lock_bh(&p
->fp_work_lock
);
671 __set_current_state(TASK_INTERRUPTIBLE
);
672 spin_unlock_bh(&p
->fp_work_lock
);
674 __set_current_state(TASK_RUNNING
);
679 static struct fc_host_statistics
*bnx2fc_get_host_stats(struct Scsi_Host
*shost
)
681 struct fc_host_statistics
*bnx2fc_stats
;
682 struct fc_lport
*lport
= shost_priv(shost
);
683 struct fcoe_port
*port
= lport_priv(lport
);
684 struct bnx2fc_interface
*interface
= port
->priv
;
685 struct bnx2fc_hba
*hba
= interface
->hba
;
686 struct fcoe_statistics_params
*fw_stats
;
689 fw_stats
= (struct fcoe_statistics_params
*)hba
->stats_buffer
;
693 mutex_lock(&hba
->hba_stats_mutex
);
695 bnx2fc_stats
= fc_get_host_stats(shost
);
697 init_completion(&hba
->stat_req_done
);
698 if (bnx2fc_send_stat_req(hba
))
699 goto unlock_stats_mutex
;
700 rc
= wait_for_completion_timeout(&hba
->stat_req_done
, (2 * HZ
));
702 BNX2FC_HBA_DBG(lport
, "FW stat req timed out\n");
703 goto unlock_stats_mutex
;
705 BNX2FC_STATS(hba
, rx_stat2
, fc_crc_cnt
);
706 bnx2fc_stats
->invalid_crc_count
+= hba
->bfw_stats
.fc_crc_cnt
;
707 BNX2FC_STATS(hba
, tx_stat
, fcoe_tx_pkt_cnt
);
708 bnx2fc_stats
->tx_frames
+= hba
->bfw_stats
.fcoe_tx_pkt_cnt
;
709 BNX2FC_STATS(hba
, tx_stat
, fcoe_tx_byte_cnt
);
710 bnx2fc_stats
->tx_words
+= ((hba
->bfw_stats
.fcoe_tx_byte_cnt
) / 4);
711 BNX2FC_STATS(hba
, rx_stat0
, fcoe_rx_pkt_cnt
);
712 bnx2fc_stats
->rx_frames
+= hba
->bfw_stats
.fcoe_rx_pkt_cnt
;
713 BNX2FC_STATS(hba
, rx_stat0
, fcoe_rx_byte_cnt
);
714 bnx2fc_stats
->rx_words
+= ((hba
->bfw_stats
.fcoe_rx_byte_cnt
) / 4);
716 bnx2fc_stats
->dumped_frames
= 0;
717 bnx2fc_stats
->lip_count
= 0;
718 bnx2fc_stats
->nos_count
= 0;
719 bnx2fc_stats
->loss_of_sync_count
= 0;
720 bnx2fc_stats
->loss_of_signal_count
= 0;
721 bnx2fc_stats
->prim_seq_protocol_err_count
= 0;
723 memcpy(&hba
->prev_stats
, hba
->stats_buffer
,
724 sizeof(struct fcoe_statistics_params
));
727 mutex_unlock(&hba
->hba_stats_mutex
);
731 static int bnx2fc_shost_config(struct fc_lport
*lport
, struct device
*dev
)
733 struct fcoe_port
*port
= lport_priv(lport
);
734 struct bnx2fc_interface
*interface
= port
->priv
;
735 struct bnx2fc_hba
*hba
= interface
->hba
;
736 struct Scsi_Host
*shost
= lport
->host
;
739 shost
->max_cmd_len
= BNX2FC_MAX_CMD_LEN
;
740 shost
->max_lun
= bnx2fc_max_luns
;
741 shost
->max_id
= BNX2FC_MAX_FCP_TGT
;
742 shost
->max_channel
= 0;
744 shost
->transportt
= bnx2fc_vport_xport_template
;
746 shost
->transportt
= bnx2fc_transport_template
;
748 /* Add the new host to SCSI-ml */
749 rc
= scsi_add_host(lport
->host
, dev
);
751 printk(KERN_ERR PFX
"Error on scsi_add_host\n");
755 fc_host_max_npiv_vports(lport
->host
) = USHRT_MAX
;
756 snprintf(fc_host_symbolic_name(lport
->host
), 256,
757 "%s (QLogic %s) v%s over %s",
758 BNX2FC_NAME
, hba
->chip_num
, BNX2FC_VERSION
,
759 interface
->netdev
->name
);
764 static int bnx2fc_link_ok(struct fc_lport
*lport
)
766 struct fcoe_port
*port
= lport_priv(lport
);
767 struct bnx2fc_interface
*interface
= port
->priv
;
768 struct bnx2fc_hba
*hba
= interface
->hba
;
769 struct net_device
*dev
= hba
->phys_dev
;
772 if ((dev
->flags
& IFF_UP
) && netif_carrier_ok(dev
))
773 clear_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
775 set_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
782 * bnx2fc_get_link_state - get network link state
784 * @hba: adapter instance pointer
786 * updates adapter structure flag based on netdev state
788 void bnx2fc_get_link_state(struct bnx2fc_hba
*hba
)
790 if (test_bit(__LINK_STATE_NOCARRIER
, &hba
->phys_dev
->state
))
791 set_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
793 clear_bit(ADAPTER_STATE_LINK_DOWN
, &hba
->adapter_state
);
796 static int bnx2fc_net_config(struct fc_lport
*lport
, struct net_device
*netdev
)
798 struct bnx2fc_hba
*hba
;
799 struct bnx2fc_interface
*interface
;
800 struct fcoe_ctlr
*ctlr
;
801 struct fcoe_port
*port
;
804 port
= lport_priv(lport
);
805 interface
= port
->priv
;
806 ctlr
= bnx2fc_to_ctlr(interface
);
807 hba
= interface
->hba
;
809 /* require support for get_pauseparam ethtool op. */
810 if (!hba
->phys_dev
->ethtool_ops
||
811 !hba
->phys_dev
->ethtool_ops
->get_pauseparam
)
814 if (fc_set_mfs(lport
, BNX2FC_MFS
))
817 skb_queue_head_init(&port
->fcoe_pending_queue
);
818 port
->fcoe_pending_queue_active
= 0;
819 timer_setup(&port
->timer
, fcoe_queue_timer
, 0);
821 fcoe_link_speed_update(lport
);
824 if (fcoe_get_wwn(netdev
, &wwnn
, NETDEV_FCOE_WWNN
))
825 wwnn
= fcoe_wwn_from_mac(ctlr
->ctl_src_addr
,
827 BNX2FC_HBA_DBG(lport
, "WWNN = 0x%llx\n", wwnn
);
828 fc_set_wwnn(lport
, wwnn
);
830 if (fcoe_get_wwn(netdev
, &wwpn
, NETDEV_FCOE_WWPN
))
831 wwpn
= fcoe_wwn_from_mac(ctlr
->ctl_src_addr
,
834 BNX2FC_HBA_DBG(lport
, "WWPN = 0x%llx\n", wwpn
);
835 fc_set_wwpn(lport
, wwpn
);
841 static void bnx2fc_destroy_timer(struct timer_list
*t
)
843 struct bnx2fc_hba
*hba
= from_timer(hba
, t
, destroy_timer
);
845 printk(KERN_ERR PFX
"ERROR:bnx2fc_destroy_timer - "
846 "Destroy compl not received!!\n");
847 set_bit(BNX2FC_FLAG_DESTROY_CMPL
, &hba
->flags
);
848 wake_up_interruptible(&hba
->destroy_wait
);
852 * bnx2fc_indicate_netevent - Generic netdev event handler
854 * @context: adapter structure pointer
856 * @vlan_id: vlan id - associated vlan id with this event
858 * Handles NETDEV_UP, NETDEV_DOWN, NETDEV_GOING_DOWN,NETDEV_CHANGE and
859 * NETDEV_CHANGE_MTU events. Handle NETDEV_UNREGISTER only for vlans.
861 static void bnx2fc_indicate_netevent(void *context
, unsigned long event
,
864 struct bnx2fc_hba
*hba
= (struct bnx2fc_hba
*)context
;
865 struct fcoe_ctlr_device
*cdev
;
866 struct fc_lport
*lport
;
867 struct fc_lport
*vport
;
868 struct bnx2fc_interface
*interface
, *tmp
;
869 struct fcoe_ctlr
*ctlr
;
870 int wait_for_upload
= 0;
871 u32 link_possible
= 1;
873 if (vlan_id
!= 0 && event
!= NETDEV_UNREGISTER
)
878 if (!test_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
))
879 printk(KERN_ERR
"indicate_netevent: "\
880 "hba is not UP!!\n");
884 clear_bit(ADAPTER_STATE_GOING_DOWN
, &hba
->adapter_state
);
885 clear_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
);
889 case NETDEV_GOING_DOWN
:
890 set_bit(ADAPTER_STATE_GOING_DOWN
, &hba
->adapter_state
);
897 case NETDEV_UNREGISTER
:
900 mutex_lock(&bnx2fc_dev_lock
);
901 list_for_each_entry_safe(interface
, tmp
, &if_list
, list
) {
902 if (interface
->hba
== hba
&&
903 interface
->vlan_id
== (vlan_id
& VLAN_VID_MASK
))
904 __bnx2fc_destroy(interface
);
906 mutex_unlock(&bnx2fc_dev_lock
);
908 /* Ensure ALL destroy work has been completed before return */
909 flush_workqueue(bnx2fc_wq
);
916 mutex_lock(&bnx2fc_dev_lock
);
917 list_for_each_entry(interface
, &if_list
, list
) {
919 if (interface
->hba
!= hba
)
922 ctlr
= bnx2fc_to_ctlr(interface
);
924 BNX2FC_HBA_DBG(lport
, "netevent handler - event=%s %ld\n",
925 interface
->netdev
->name
, event
);
927 fcoe_link_speed_update(lport
);
929 cdev
= fcoe_ctlr_to_ctlr_dev(ctlr
);
931 if (link_possible
&& !bnx2fc_link_ok(lport
)) {
932 switch (cdev
->enabled
) {
933 case FCOE_CTLR_DISABLED
:
934 pr_info("Link up while interface is disabled.\n");
936 case FCOE_CTLR_ENABLED
:
937 case FCOE_CTLR_UNUSED
:
938 /* Reset max recv frame size to default */
939 fc_set_mfs(lport
, BNX2FC_MFS
);
941 * ctlr link up will only be handled during
942 * enable to avoid sending discovery
943 * solicitation on a stale vlan
945 if (interface
->enabled
)
946 fcoe_ctlr_link_up(ctlr
);
948 } else if (fcoe_ctlr_link_down(ctlr
)) {
949 switch (cdev
->enabled
) {
950 case FCOE_CTLR_DISABLED
:
951 pr_info("Link down while interface is disabled.\n");
953 case FCOE_CTLR_ENABLED
:
954 case FCOE_CTLR_UNUSED
:
955 mutex_lock(&lport
->lp_mutex
);
956 list_for_each_entry(vport
, &lport
->vports
, list
)
957 fc_host_port_type(vport
->host
) =
959 mutex_unlock(&lport
->lp_mutex
);
960 fc_host_port_type(lport
->host
) =
962 per_cpu_ptr(lport
->stats
,
963 get_cpu())->LinkFailureCount
++;
965 fcoe_clean_pending_queue(lport
);
970 mutex_unlock(&bnx2fc_dev_lock
);
972 if (wait_for_upload
) {
973 clear_bit(ADAPTER_STATE_READY
, &hba
->adapter_state
);
974 init_waitqueue_head(&hba
->shutdown_wait
);
975 BNX2FC_MISC_DBG("indicate_netevent "
976 "num_ofld_sess = %d\n",
978 hba
->wait_for_link_down
= 1;
979 wait_event_interruptible(hba
->shutdown_wait
,
980 (hba
->num_ofld_sess
== 0));
981 BNX2FC_MISC_DBG("wakeup - num_ofld_sess = %d\n",
983 hba
->wait_for_link_down
= 0;
985 if (signal_pending(current
))
986 flush_signals(current
);
990 static int bnx2fc_libfc_config(struct fc_lport
*lport
)
993 /* Set the function pointers set by bnx2fc driver */
994 memcpy(&lport
->tt
, &bnx2fc_libfc_fcn_templ
,
995 sizeof(struct libfc_function_template
));
996 fc_elsct_init(lport
);
999 fc_disc_config(lport
, lport
);
1003 static int bnx2fc_em_config(struct fc_lport
*lport
, struct bnx2fc_hba
*hba
)
1005 int fcoe_min_xid
, fcoe_max_xid
;
1007 fcoe_min_xid
= hba
->max_xid
+ 1;
1008 if (nr_cpu_ids
<= 2)
1009 fcoe_max_xid
= hba
->max_xid
+ FCOE_XIDS_PER_CPU_OFFSET
;
1011 fcoe_max_xid
= hba
->max_xid
+ FCOE_MAX_XID_OFFSET
;
1012 if (!fc_exch_mgr_alloc(lport
, FC_CLASS_3
, fcoe_min_xid
,
1013 fcoe_max_xid
, NULL
)) {
1014 printk(KERN_ERR PFX
"em_config:fc_exch_mgr_alloc failed\n");
1021 static int bnx2fc_lport_config(struct fc_lport
*lport
)
1025 lport
->max_retry_count
= BNX2FC_MAX_RETRY_CNT
;
1026 lport
->max_rport_retry_count
= BNX2FC_MAX_RPORT_RETRY_CNT
;
1027 lport
->e_d_tov
= 2 * 1000;
1028 lport
->r_a_tov
= 10 * 1000;
1030 lport
->service_params
= (FCP_SPPF_INIT_FCN
| FCP_SPPF_RD_XRDY_DIS
|
1031 FCP_SPPF_RETRY
| FCP_SPPF_CONF_COMPL
);
1032 lport
->does_npiv
= 1;
1034 memset(&lport
->rnid_gen
, 0, sizeof(struct fc_els_rnid_gen
));
1035 lport
->rnid_gen
.rnid_atype
= BNX2FC_RNID_HBA
;
1037 /* alloc stats structure */
1038 if (fc_lport_init_stats(lport
))
1041 /* Finish fc_lport configuration */
1042 fc_lport_config(lport
);
1048 * bnx2fc_fip_recv - handle a received FIP frame.
1050 * @skb: the received skb
1051 * @dev: associated &net_device
1052 * @ptype: the &packet_type structure which was used to register this handler.
1053 * @orig_dev: original receive &net_device, in case @ dev is a bond.
1055 * Returns: 0 for success
1057 static int bnx2fc_fip_recv(struct sk_buff
*skb
, struct net_device
*dev
,
1058 struct packet_type
*ptype
,
1059 struct net_device
*orig_dev
)
1061 struct bnx2fc_interface
*interface
;
1062 struct fcoe_ctlr
*ctlr
;
1063 interface
= container_of(ptype
, struct bnx2fc_interface
,
1065 ctlr
= bnx2fc_to_ctlr(interface
);
1066 fcoe_ctlr_recv(ctlr
, skb
);
1071 * bnx2fc_update_src_mac - Update Ethernet MAC filters.
1073 * @fip: FCoE controller.
1074 * @old: Unicast MAC address to delete if the MAC is non-zero.
1075 * @new: Unicast MAC address to add.
1077 * Remove any previously-set unicast MAC filter.
1078 * Add secondary FCoE MAC address filter for our OUI.
1080 static void bnx2fc_update_src_mac(struct fc_lport
*lport
, u8
*addr
)
1082 struct fcoe_port
*port
= lport_priv(lport
);
1084 memcpy(port
->data_src_addr
, addr
, ETH_ALEN
);
1088 * bnx2fc_get_src_mac - return the ethernet source address for an lport
1090 * @lport: libfc port
1092 static u8
*bnx2fc_get_src_mac(struct fc_lport
*lport
)
1094 struct fcoe_port
*port
;
1096 port
= (struct fcoe_port
*)lport_priv(lport
);
1097 return port
->data_src_addr
;
1101 * bnx2fc_fip_send - send an Ethernet-encapsulated FIP frame.
1103 * @fip: FCoE controller.
1106 static void bnx2fc_fip_send(struct fcoe_ctlr
*fip
, struct sk_buff
*skb
)
1108 struct fip_header
*fiph
;
1109 struct ethhdr
*eth_hdr
;
1113 fiph
= (struct fip_header
*) ((void *)skb
->data
+ 2 * ETH_ALEN
+ 2);
1114 eth_hdr
= (struct ethhdr
*)skb_mac_header(skb
);
1115 op
= ntohs(fiph
->fip_op
);
1116 sub
= fiph
->fip_subcode
;
1118 if (op
== FIP_OP_CTRL
&& sub
== FIP_SC_SOL
&& bnx2fc_log_fka
)
1119 BNX2FC_MISC_DBG("Sending FKA from %pM to %pM.\n",
1120 eth_hdr
->h_source
, eth_hdr
->h_dest
);
1122 skb
->dev
= bnx2fc_from_ctlr(fip
)->netdev
;
1123 dev_queue_xmit(skb
);
1126 static int bnx2fc_vport_create(struct fc_vport
*vport
, bool disabled
)
1128 struct Scsi_Host
*shost
= vport_to_shost(vport
);
1129 struct fc_lport
*n_port
= shost_priv(shost
);
1130 struct fcoe_port
*port
= lport_priv(n_port
);
1131 struct bnx2fc_interface
*interface
= port
->priv
;
1132 struct net_device
*netdev
= interface
->netdev
;
1133 struct fc_lport
*vn_port
;
1137 rc
= fcoe_validate_vport_create(vport
);
1139 fcoe_wwn_to_str(vport
->port_name
, buf
, sizeof(buf
));
1140 printk(KERN_ERR PFX
"Failed to create vport, "
1141 "WWPN (0x%s) already exists\n",
1146 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &interface
->hba
->flags
)) {
1147 printk(KERN_ERR PFX
"vn ports cannot be created on"
1148 "this interface\n");
1152 mutex_lock(&bnx2fc_dev_lock
);
1153 vn_port
= bnx2fc_if_create(interface
, &vport
->dev
, 1);
1154 mutex_unlock(&bnx2fc_dev_lock
);
1158 printk(KERN_ERR PFX
"bnx2fc_vport_create (%s) failed\n",
1163 if (bnx2fc_devloss_tmo
)
1164 fc_host_dev_loss_tmo(vn_port
->host
) = bnx2fc_devloss_tmo
;
1167 fc_vport_set_state(vport
, FC_VPORT_DISABLED
);
1169 vn_port
->boot_time
= jiffies
;
1170 fc_lport_init(vn_port
);
1171 fc_fabric_login(vn_port
);
1172 fc_vport_setlink(vn_port
);
1177 static void bnx2fc_free_vport(struct bnx2fc_hba
*hba
, struct fc_lport
*lport
)
1179 struct bnx2fc_lport
*blport
, *tmp
;
1181 spin_lock_bh(&hba
->hba_lock
);
1182 list_for_each_entry_safe(blport
, tmp
, &hba
->vports
, list
) {
1183 if (blport
->lport
== lport
) {
1184 list_del(&blport
->list
);
1188 spin_unlock_bh(&hba
->hba_lock
);
1191 static int bnx2fc_vport_destroy(struct fc_vport
*vport
)
1193 struct Scsi_Host
*shost
= vport_to_shost(vport
);
1194 struct fc_lport
*n_port
= shost_priv(shost
);
1195 struct fc_lport
*vn_port
= vport
->dd_data
;
1196 struct fcoe_port
*port
= lport_priv(vn_port
);
1197 struct bnx2fc_interface
*interface
= port
->priv
;
1198 struct fc_lport
*v_port
;
1201 mutex_lock(&n_port
->lp_mutex
);
1202 list_for_each_entry(v_port
, &n_port
->vports
, list
)
1203 if (v_port
->vport
== vport
) {
1209 mutex_unlock(&n_port
->lp_mutex
);
1212 list_del(&vn_port
->list
);
1213 mutex_unlock(&n_port
->lp_mutex
);
1214 bnx2fc_free_vport(interface
->hba
, port
->lport
);
1215 bnx2fc_port_shutdown(port
->lport
);
1216 bnx2fc_interface_put(interface
);
1217 queue_work(bnx2fc_wq
, &port
->destroy_work
);
1221 static int bnx2fc_vport_disable(struct fc_vport
*vport
, bool disable
)
1223 struct fc_lport
*lport
= vport
->dd_data
;
1226 fc_vport_set_state(vport
, FC_VPORT_DISABLED
);
1227 fc_fabric_logoff(lport
);
1229 lport
->boot_time
= jiffies
;
1230 fc_fabric_login(lport
);
1231 fc_vport_setlink(lport
);
1237 static int bnx2fc_interface_setup(struct bnx2fc_interface
*interface
)
1239 struct net_device
*netdev
= interface
->netdev
;
1240 struct net_device
*physdev
= interface
->hba
->phys_dev
;
1241 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1242 struct netdev_hw_addr
*ha
;
1243 int sel_san_mac
= 0;
1245 /* setup Source MAC Address */
1247 for_each_dev_addr(physdev
, ha
) {
1248 BNX2FC_MISC_DBG("net_config: ha->type = %d, fip_mac = ",
1250 printk(KERN_INFO
"%2x:%2x:%2x:%2x:%2x:%2x\n", ha
->addr
[0],
1251 ha
->addr
[1], ha
->addr
[2], ha
->addr
[3],
1252 ha
->addr
[4], ha
->addr
[5]);
1254 if ((ha
->type
== NETDEV_HW_ADDR_T_SAN
) &&
1255 (is_valid_ether_addr(ha
->addr
))) {
1256 memcpy(ctlr
->ctl_src_addr
, ha
->addr
,
1259 BNX2FC_MISC_DBG("Found SAN MAC\n");
1267 interface
->fip_packet_type
.func
= bnx2fc_fip_recv
;
1268 interface
->fip_packet_type
.type
= htons(ETH_P_FIP
);
1269 interface
->fip_packet_type
.dev
= netdev
;
1270 dev_add_pack(&interface
->fip_packet_type
);
1272 interface
->fcoe_packet_type
.func
= bnx2fc_rcv
;
1273 interface
->fcoe_packet_type
.type
= __constant_htons(ETH_P_FCOE
);
1274 interface
->fcoe_packet_type
.dev
= netdev
;
1275 dev_add_pack(&interface
->fcoe_packet_type
);
1280 static int bnx2fc_attach_transport(void)
1282 bnx2fc_transport_template
=
1283 fc_attach_transport(&bnx2fc_transport_function
);
1285 if (bnx2fc_transport_template
== NULL
) {
1286 printk(KERN_ERR PFX
"Failed to attach FC transport\n");
1290 bnx2fc_vport_xport_template
=
1291 fc_attach_transport(&bnx2fc_vport_xport_function
);
1292 if (bnx2fc_vport_xport_template
== NULL
) {
1294 "Failed to attach FC transport for vport\n");
1295 fc_release_transport(bnx2fc_transport_template
);
1296 bnx2fc_transport_template
= NULL
;
1301 static void bnx2fc_release_transport(void)
1303 fc_release_transport(bnx2fc_transport_template
);
1304 fc_release_transport(bnx2fc_vport_xport_template
);
1305 bnx2fc_transport_template
= NULL
;
1306 bnx2fc_vport_xport_template
= NULL
;
1309 static void bnx2fc_interface_release(struct kref
*kref
)
1311 struct fcoe_ctlr_device
*ctlr_dev
;
1312 struct bnx2fc_interface
*interface
;
1313 struct fcoe_ctlr
*ctlr
;
1314 struct net_device
*netdev
;
1316 interface
= container_of(kref
, struct bnx2fc_interface
, kref
);
1317 BNX2FC_MISC_DBG("Interface is being released\n");
1319 ctlr
= bnx2fc_to_ctlr(interface
);
1320 ctlr_dev
= fcoe_ctlr_to_ctlr_dev(ctlr
);
1321 netdev
= interface
->netdev
;
1323 /* tear-down FIP controller */
1324 if (test_and_clear_bit(BNX2FC_CTLR_INIT_DONE
, &interface
->if_flags
))
1325 fcoe_ctlr_destroy(ctlr
);
1327 fcoe_ctlr_device_delete(ctlr_dev
);
1330 module_put(THIS_MODULE
);
1333 static inline void bnx2fc_interface_get(struct bnx2fc_interface
*interface
)
1335 kref_get(&interface
->kref
);
1338 static inline void bnx2fc_interface_put(struct bnx2fc_interface
*interface
)
1340 kref_put(&interface
->kref
, bnx2fc_interface_release
);
1342 static void bnx2fc_hba_destroy(struct bnx2fc_hba
*hba
)
1344 /* Free the command manager */
1346 bnx2fc_cmd_mgr_free(hba
->cmd_mgr
);
1347 hba
->cmd_mgr
= NULL
;
1349 kfree(hba
->tgt_ofld_list
);
1350 bnx2fc_unbind_pcidev(hba
);
1355 * bnx2fc_hba_create - create a new bnx2fc hba
1357 * @cnic: pointer to cnic device
1359 * Creates a new FCoE hba on the given device.
1362 static struct bnx2fc_hba
*bnx2fc_hba_create(struct cnic_dev
*cnic
)
1364 struct bnx2fc_hba
*hba
;
1365 struct fcoe_capabilities
*fcoe_cap
;
1368 hba
= kzalloc(sizeof(*hba
), GFP_KERNEL
);
1370 printk(KERN_ERR PFX
"Unable to allocate hba structure\n");
1373 spin_lock_init(&hba
->hba_lock
);
1374 mutex_init(&hba
->hba_mutex
);
1375 mutex_init(&hba
->hba_stats_mutex
);
1379 hba
->max_tasks
= cnic
->max_fcoe_exchanges
;
1380 hba
->elstm_xids
= (hba
->max_tasks
/ 2);
1381 hba
->max_outstanding_cmds
= hba
->elstm_xids
;
1382 hba
->max_xid
= (hba
->max_tasks
- 1);
1384 rc
= bnx2fc_bind_pcidev(hba
);
1386 printk(KERN_ERR PFX
"create_adapter: bind error\n");
1389 hba
->phys_dev
= cnic
->netdev
;
1390 hba
->next_conn_id
= 0;
1392 hba
->tgt_ofld_list
=
1393 kcalloc(BNX2FC_NUM_MAX_SESS
, sizeof(struct bnx2fc_rport
*),
1395 if (!hba
->tgt_ofld_list
) {
1396 printk(KERN_ERR PFX
"Unable to allocate tgt offload list\n");
1400 hba
->num_ofld_sess
= 0;
1402 hba
->cmd_mgr
= bnx2fc_cmd_mgr_alloc(hba
);
1403 if (!hba
->cmd_mgr
) {
1404 printk(KERN_ERR PFX
"em_config:bnx2fc_cmd_mgr_alloc failed\n");
1407 fcoe_cap
= &hba
->fcoe_cap
;
1409 fcoe_cap
->capability1
= BNX2FC_TM_MAX_SQES
<<
1410 FCOE_IOS_PER_CONNECTION_SHIFT
;
1411 fcoe_cap
->capability1
|= BNX2FC_NUM_MAX_SESS
<<
1412 FCOE_LOGINS_PER_PORT_SHIFT
;
1413 fcoe_cap
->capability2
= hba
->max_outstanding_cmds
<<
1414 FCOE_NUMBER_OF_EXCHANGES_SHIFT
;
1415 fcoe_cap
->capability2
|= BNX2FC_MAX_NPIV
<<
1416 FCOE_NPIV_WWN_PER_PORT_SHIFT
;
1417 fcoe_cap
->capability3
= BNX2FC_NUM_MAX_SESS
<<
1418 FCOE_TARGETS_SUPPORTED_SHIFT
;
1419 fcoe_cap
->capability3
|= hba
->max_outstanding_cmds
<<
1420 FCOE_OUTSTANDING_COMMANDS_SHIFT
;
1421 fcoe_cap
->capability4
= FCOE_CAPABILITY4_STATEFUL
;
1423 init_waitqueue_head(&hba
->shutdown_wait
);
1424 init_waitqueue_head(&hba
->destroy_wait
);
1425 INIT_LIST_HEAD(&hba
->vports
);
1430 kfree(hba
->tgt_ofld_list
);
1432 bnx2fc_unbind_pcidev(hba
);
1438 static struct bnx2fc_interface
*
1439 bnx2fc_interface_create(struct bnx2fc_hba
*hba
,
1440 struct net_device
*netdev
,
1441 enum fip_mode fip_mode
)
1443 struct fcoe_ctlr_device
*ctlr_dev
;
1444 struct bnx2fc_interface
*interface
;
1445 struct fcoe_ctlr
*ctlr
;
1449 size
= (sizeof(*interface
) + sizeof(struct fcoe_ctlr
));
1450 ctlr_dev
= fcoe_ctlr_device_add(&netdev
->dev
, &bnx2fc_fcoe_sysfs_templ
,
1453 printk(KERN_ERR PFX
"Unable to allocate interface structure\n");
1456 ctlr
= fcoe_ctlr_device_priv(ctlr_dev
);
1457 ctlr
->cdev
= ctlr_dev
;
1458 interface
= fcoe_ctlr_priv(ctlr
);
1460 kref_init(&interface
->kref
);
1461 interface
->hba
= hba
;
1462 interface
->netdev
= netdev
;
1464 /* Initialize FIP */
1465 fcoe_ctlr_init(ctlr
, fip_mode
);
1466 ctlr
->send
= bnx2fc_fip_send
;
1467 ctlr
->update_mac
= bnx2fc_update_src_mac
;
1468 ctlr
->get_src_addr
= bnx2fc_get_src_mac
;
1469 set_bit(BNX2FC_CTLR_INIT_DONE
, &interface
->if_flags
);
1471 rc
= bnx2fc_interface_setup(interface
);
1475 fcoe_ctlr_destroy(ctlr
);
1477 fcoe_ctlr_device_delete(ctlr_dev
);
1482 * bnx2fc_if_create - Create FCoE instance on a given interface
1484 * @interface: FCoE interface to create a local port on
1485 * @parent: Device pointer to be the parent in sysfs for the SCSI host
1486 * @npiv: Indicates if the port is vport or not
1488 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
1490 * Returns: Allocated fc_lport or an error pointer
1492 static struct fc_lport
*bnx2fc_if_create(struct bnx2fc_interface
*interface
,
1493 struct device
*parent
, int npiv
)
1495 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1496 struct fc_lport
*lport
, *n_port
;
1497 struct fcoe_port
*port
;
1498 struct Scsi_Host
*shost
;
1499 struct fc_vport
*vport
= dev_to_vport(parent
);
1500 struct bnx2fc_lport
*blport
;
1501 struct bnx2fc_hba
*hba
= interface
->hba
;
1504 blport
= kzalloc(sizeof(struct bnx2fc_lport
), GFP_KERNEL
);
1506 BNX2FC_HBA_DBG(ctlr
->lp
, "Unable to alloc blport\n");
1510 /* Allocate Scsi_Host structure */
1511 bnx2fc_shost_template
.can_queue
= hba
->max_outstanding_cmds
;
1513 lport
= libfc_host_alloc(&bnx2fc_shost_template
, sizeof(*port
));
1515 lport
= libfc_vport_create(vport
, sizeof(*port
));
1518 printk(KERN_ERR PFX
"could not allocate scsi host structure\n");
1521 shost
= lport
->host
;
1522 port
= lport_priv(lport
);
1523 port
->lport
= lport
;
1524 port
->priv
= interface
;
1525 port
->get_netdev
= bnx2fc_netdev
;
1526 INIT_WORK(&port
->destroy_work
, bnx2fc_destroy_work
);
1528 /* Configure fcoe_port */
1529 rc
= bnx2fc_lport_config(lport
);
1534 printk(KERN_ERR PFX
"Setting vport names, 0x%llX 0x%llX\n",
1535 vport
->node_name
, vport
->port_name
);
1536 fc_set_wwnn(lport
, vport
->node_name
);
1537 fc_set_wwpn(lport
, vport
->port_name
);
1539 /* Configure netdev and networking properties of the lport */
1540 rc
= bnx2fc_net_config(lport
, interface
->netdev
);
1542 printk(KERN_ERR PFX
"Error on bnx2fc_net_config\n");
1546 rc
= bnx2fc_shost_config(lport
, parent
);
1548 printk(KERN_ERR PFX
"Couldn't configure shost for %s\n",
1549 interface
->netdev
->name
);
1553 /* Initialize the libfc library */
1554 rc
= bnx2fc_libfc_config(lport
);
1556 printk(KERN_ERR PFX
"Couldn't configure libfc\n");
1559 fc_host_port_type(lport
->host
) = FC_PORTTYPE_UNKNOWN
;
1561 if (bnx2fc_devloss_tmo
)
1562 fc_host_dev_loss_tmo(shost
) = bnx2fc_devloss_tmo
;
1564 /* Allocate exchange manager */
1566 rc
= bnx2fc_em_config(lport
, hba
);
1568 shost
= vport_to_shost(vport
);
1569 n_port
= shost_priv(shost
);
1570 rc
= fc_exch_mgr_list_clone(n_port
, lport
);
1574 printk(KERN_ERR PFX
"Error on bnx2fc_em_config\n");
1578 bnx2fc_interface_get(interface
);
1580 spin_lock_bh(&hba
->hba_lock
);
1581 blport
->lport
= lport
;
1582 list_add_tail(&blport
->list
, &hba
->vports
);
1583 spin_unlock_bh(&hba
->hba_lock
);
1588 scsi_remove_host(shost
);
1590 scsi_host_put(lport
->host
);
1596 static void bnx2fc_net_cleanup(struct bnx2fc_interface
*interface
)
1598 /* Dont listen for Ethernet packets anymore */
1599 __dev_remove_pack(&interface
->fcoe_packet_type
);
1600 __dev_remove_pack(&interface
->fip_packet_type
);
1604 static void bnx2fc_interface_cleanup(struct bnx2fc_interface
*interface
)
1606 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1607 struct fc_lport
*lport
= ctlr
->lp
;
1608 struct fcoe_port
*port
= lport_priv(lport
);
1609 struct bnx2fc_hba
*hba
= interface
->hba
;
1611 /* Stop the transmit retry timer */
1612 del_timer_sync(&port
->timer
);
1614 /* Free existing transmit skbs */
1615 fcoe_clean_pending_queue(lport
);
1617 bnx2fc_net_cleanup(interface
);
1619 bnx2fc_free_vport(hba
, lport
);
1622 static void bnx2fc_if_destroy(struct fc_lport
*lport
)
1625 /* Free queued packets for the receive thread */
1626 bnx2fc_clean_rx_queue(lport
);
1628 /* Detach from scsi-ml */
1629 fc_remove_host(lport
->host
);
1630 scsi_remove_host(lport
->host
);
1633 * Note that only the physical lport will have the exchange manager.
1634 * for vports, this function is NOP
1636 fc_exch_mgr_free(lport
);
1638 /* Free memory used by statistical counters */
1639 fc_lport_free_stats(lport
);
1641 /* Release Scsi_Host */
1642 scsi_host_put(lport
->host
);
1645 static void __bnx2fc_destroy(struct bnx2fc_interface
*interface
)
1647 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1648 struct fc_lport
*lport
= ctlr
->lp
;
1649 struct fcoe_port
*port
= lport_priv(lport
);
1651 bnx2fc_interface_cleanup(interface
);
1652 bnx2fc_stop(interface
);
1653 list_del(&interface
->list
);
1654 bnx2fc_interface_put(interface
);
1655 queue_work(bnx2fc_wq
, &port
->destroy_work
);
1659 * bnx2fc_destroy - Destroy a bnx2fc FCoE interface
1661 * @buffer: The name of the Ethernet interface to be destroyed
1662 * @kp: The associated kernel parameter
1664 * Called from sysfs.
1666 * Returns: 0 for success
1668 static int bnx2fc_destroy(struct net_device
*netdev
)
1670 struct bnx2fc_interface
*interface
= NULL
;
1671 struct workqueue_struct
*timer_work_queue
;
1672 struct fcoe_ctlr
*ctlr
;
1676 mutex_lock(&bnx2fc_dev_lock
);
1678 interface
= bnx2fc_interface_lookup(netdev
);
1679 ctlr
= bnx2fc_to_ctlr(interface
);
1680 if (!interface
|| !ctlr
->lp
) {
1682 printk(KERN_ERR PFX
"bnx2fc_destroy: interface or lport not found\n");
1686 timer_work_queue
= interface
->timer_work_queue
;
1687 __bnx2fc_destroy(interface
);
1688 destroy_workqueue(timer_work_queue
);
1691 mutex_unlock(&bnx2fc_dev_lock
);
1696 static void bnx2fc_destroy_work(struct work_struct
*work
)
1698 struct fcoe_port
*port
;
1699 struct fc_lport
*lport
;
1701 port
= container_of(work
, struct fcoe_port
, destroy_work
);
1702 lport
= port
->lport
;
1704 BNX2FC_HBA_DBG(lport
, "Entered bnx2fc_destroy_work\n");
1706 bnx2fc_if_destroy(lport
);
1709 static void bnx2fc_unbind_adapter_devices(struct bnx2fc_hba
*hba
)
1711 bnx2fc_free_fw_resc(hba
);
1712 bnx2fc_free_task_ctx(hba
);
1716 * bnx2fc_bind_adapter_devices - binds bnx2fc adapter with the associated
1719 * @hba: Adapter instance
1721 static int bnx2fc_bind_adapter_devices(struct bnx2fc_hba
*hba
)
1723 if (bnx2fc_setup_task_ctx(hba
))
1726 if (bnx2fc_setup_fw_resc(hba
))
1731 bnx2fc_unbind_adapter_devices(hba
);
1735 static int bnx2fc_bind_pcidev(struct bnx2fc_hba
*hba
)
1737 struct cnic_dev
*cnic
;
1738 struct pci_dev
*pdev
;
1741 printk(KERN_ERR PFX
"cnic is NULL\n");
1745 pdev
= hba
->pcidev
= cnic
->pcidev
;
1749 switch (pdev
->device
) {
1750 case PCI_DEVICE_ID_NX2_57710
:
1751 strncpy(hba
->chip_num
, "BCM57710", BCM_CHIP_LEN
);
1753 case PCI_DEVICE_ID_NX2_57711
:
1754 strncpy(hba
->chip_num
, "BCM57711", BCM_CHIP_LEN
);
1756 case PCI_DEVICE_ID_NX2_57712
:
1757 case PCI_DEVICE_ID_NX2_57712_MF
:
1758 case PCI_DEVICE_ID_NX2_57712_VF
:
1759 strncpy(hba
->chip_num
, "BCM57712", BCM_CHIP_LEN
);
1761 case PCI_DEVICE_ID_NX2_57800
:
1762 case PCI_DEVICE_ID_NX2_57800_MF
:
1763 case PCI_DEVICE_ID_NX2_57800_VF
:
1764 strncpy(hba
->chip_num
, "BCM57800", BCM_CHIP_LEN
);
1766 case PCI_DEVICE_ID_NX2_57810
:
1767 case PCI_DEVICE_ID_NX2_57810_MF
:
1768 case PCI_DEVICE_ID_NX2_57810_VF
:
1769 strncpy(hba
->chip_num
, "BCM57810", BCM_CHIP_LEN
);
1771 case PCI_DEVICE_ID_NX2_57840
:
1772 case PCI_DEVICE_ID_NX2_57840_MF
:
1773 case PCI_DEVICE_ID_NX2_57840_VF
:
1774 case PCI_DEVICE_ID_NX2_57840_2_20
:
1775 case PCI_DEVICE_ID_NX2_57840_4_10
:
1776 strncpy(hba
->chip_num
, "BCM57840", BCM_CHIP_LEN
);
1779 pr_err(PFX
"Unknown device id 0x%x\n", pdev
->device
);
1782 pci_dev_get(hba
->pcidev
);
1786 static void bnx2fc_unbind_pcidev(struct bnx2fc_hba
*hba
)
1789 hba
->chip_num
[0] = '\0';
1790 pci_dev_put(hba
->pcidev
);
1796 * bnx2fc_ulp_get_stats - cnic callback to populate FCoE stats
1798 * @handle: transport handle pointing to adapter struture
1800 static int bnx2fc_ulp_get_stats(void *handle
)
1802 struct bnx2fc_hba
*hba
= handle
;
1803 struct cnic_dev
*cnic
;
1804 struct fcoe_stats_info
*stats_addr
;
1810 stats_addr
= &cnic
->stats_addr
->fcoe_stat
;
1814 strncpy(stats_addr
->version
, BNX2FC_VERSION
,
1815 sizeof(stats_addr
->version
));
1816 stats_addr
->txq_size
= BNX2FC_SQ_WQES_MAX
;
1817 stats_addr
->rxq_size
= BNX2FC_CQ_WQES_MAX
;
1824 * bnx2fc_ulp_start - cnic callback to initialize & start adapter instance
1826 * @handle: transport handle pointing to adapter structure
1828 * This function maps adapter structure to pcidev structure and initiates
1829 * firmware handshake to enable/initialize on-chip FCoE components.
1830 * This bnx2fc - cnic interface api callback is used after following
1831 * conditions are met -
1832 * a) underlying network interface is up (marked by event NETDEV_UP
1834 * b) bnx2fc adatper structure is registered.
1836 static void bnx2fc_ulp_start(void *handle
)
1838 struct bnx2fc_hba
*hba
= handle
;
1839 struct bnx2fc_interface
*interface
;
1840 struct fcoe_ctlr
*ctlr
;
1841 struct fc_lport
*lport
;
1843 mutex_lock(&bnx2fc_dev_lock
);
1845 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
))
1846 bnx2fc_fw_init(hba
);
1848 BNX2FC_MISC_DBG("bnx2fc started.\n");
1850 list_for_each_entry(interface
, &if_list
, list
) {
1851 if (interface
->hba
== hba
) {
1852 ctlr
= bnx2fc_to_ctlr(interface
);
1854 /* Kick off Fabric discovery*/
1855 printk(KERN_ERR PFX
"ulp_init: start discovery\n");
1856 lport
->tt
.frame_send
= bnx2fc_xmit
;
1857 bnx2fc_start_disc(interface
);
1861 mutex_unlock(&bnx2fc_dev_lock
);
1864 static void bnx2fc_port_shutdown(struct fc_lport
*lport
)
1866 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
1867 fc_fabric_logoff(lport
);
1868 fc_lport_destroy(lport
);
1871 static void bnx2fc_stop(struct bnx2fc_interface
*interface
)
1873 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
1874 struct fc_lport
*lport
;
1875 struct fc_lport
*vport
;
1877 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &interface
->hba
->flags
))
1881 bnx2fc_port_shutdown(lport
);
1883 mutex_lock(&lport
->lp_mutex
);
1884 list_for_each_entry(vport
, &lport
->vports
, list
)
1885 fc_host_port_type(vport
->host
) =
1886 FC_PORTTYPE_UNKNOWN
;
1887 mutex_unlock(&lport
->lp_mutex
);
1888 fc_host_port_type(lport
->host
) = FC_PORTTYPE_UNKNOWN
;
1889 fcoe_ctlr_link_down(ctlr
);
1890 fcoe_clean_pending_queue(lport
);
1893 static int bnx2fc_fw_init(struct bnx2fc_hba
*hba
)
1895 #define BNX2FC_INIT_POLL_TIME (1000 / HZ)
1899 rc
= bnx2fc_bind_adapter_devices(hba
);
1901 printk(KERN_ALERT PFX
1902 "bnx2fc_bind_adapter_devices failed - rc = %d\n", rc
);
1906 rc
= bnx2fc_send_fw_fcoe_init_msg(hba
);
1908 printk(KERN_ALERT PFX
1909 "bnx2fc_send_fw_fcoe_init_msg failed - rc = %d\n", rc
);
1914 * Wait until the adapter init message is complete, and adapter
1917 while (!test_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
) && i
--)
1918 msleep(BNX2FC_INIT_POLL_TIME
);
1920 if (!test_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
)) {
1921 printk(KERN_ERR PFX
"bnx2fc_start: %s failed to initialize. "
1923 hba
->cnic
->netdev
->name
);
1929 set_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
);
1933 bnx2fc_unbind_adapter_devices(hba
);
1938 static void bnx2fc_fw_destroy(struct bnx2fc_hba
*hba
)
1940 if (test_and_clear_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
)) {
1941 if (bnx2fc_send_fw_fcoe_destroy_msg(hba
) == 0) {
1942 timer_setup(&hba
->destroy_timer
, bnx2fc_destroy_timer
,
1944 hba
->destroy_timer
.expires
= BNX2FC_FW_TIMEOUT
+
1946 add_timer(&hba
->destroy_timer
);
1947 wait_event_interruptible(hba
->destroy_wait
,
1948 test_bit(BNX2FC_FLAG_DESTROY_CMPL
,
1950 clear_bit(BNX2FC_FLAG_DESTROY_CMPL
, &hba
->flags
);
1951 /* This should never happen */
1952 if (signal_pending(current
))
1953 flush_signals(current
);
1955 del_timer_sync(&hba
->destroy_timer
);
1957 bnx2fc_unbind_adapter_devices(hba
);
1962 * bnx2fc_ulp_stop - cnic callback to shutdown adapter instance
1964 * @handle: transport handle pointing to adapter structure
1966 * Driver checks if adapter is already in shutdown mode, if not start
1967 * the shutdown process.
1969 static void bnx2fc_ulp_stop(void *handle
)
1971 struct bnx2fc_hba
*hba
= handle
;
1972 struct bnx2fc_interface
*interface
;
1974 printk(KERN_ERR
"ULP_STOP\n");
1976 mutex_lock(&bnx2fc_dev_lock
);
1977 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &hba
->flags
))
1979 list_for_each_entry(interface
, &if_list
, list
) {
1980 if (interface
->hba
== hba
)
1981 bnx2fc_stop(interface
);
1983 BUG_ON(hba
->num_ofld_sess
!= 0);
1985 mutex_lock(&hba
->hba_mutex
);
1986 clear_bit(ADAPTER_STATE_UP
, &hba
->adapter_state
);
1987 clear_bit(ADAPTER_STATE_GOING_DOWN
,
1988 &hba
->adapter_state
);
1990 clear_bit(ADAPTER_STATE_READY
, &hba
->adapter_state
);
1991 mutex_unlock(&hba
->hba_mutex
);
1993 bnx2fc_fw_destroy(hba
);
1995 mutex_unlock(&bnx2fc_dev_lock
);
1998 static void bnx2fc_start_disc(struct bnx2fc_interface
*interface
)
2000 struct fcoe_ctlr
*ctlr
= bnx2fc_to_ctlr(interface
);
2001 struct fc_lport
*lport
;
2004 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
2005 /* Kick off FIP/FLOGI */
2006 if (!test_bit(BNX2FC_FLAG_FW_INIT_DONE
, &interface
->hba
->flags
)) {
2007 printk(KERN_ERR PFX
"Init not done yet\n");
2012 BNX2FC_HBA_DBG(lport
, "calling fc_fabric_login\n");
2014 if (!bnx2fc_link_ok(lport
) && interface
->enabled
) {
2015 BNX2FC_HBA_DBG(lport
, "ctlr_link_up\n");
2016 fcoe_ctlr_link_up(ctlr
);
2017 fc_host_port_type(lport
->host
) = FC_PORTTYPE_NPORT
;
2018 set_bit(ADAPTER_STATE_READY
, &interface
->hba
->adapter_state
);
2021 /* wait for the FCF to be selected before issuing FLOGI */
2022 while (!ctlr
->sel_fcf
) {
2024 /* give up after 3 secs */
2025 if (++wait_cnt
> 12)
2029 /* Reset max receive frame size to default */
2030 if (fc_set_mfs(lport
, BNX2FC_MFS
))
2033 fc_lport_init(lport
);
2034 fc_fabric_login(lport
);
2039 * bnx2fc_ulp_init - Initialize an adapter instance
2041 * @dev : cnic device handle
2042 * Called from cnic_register_driver() context to initialize all
2043 * enumerated cnic devices. This routine allocates adapter structure
2044 * and other device specific resources.
2046 static void bnx2fc_ulp_init(struct cnic_dev
*dev
)
2048 struct bnx2fc_hba
*hba
;
2051 BNX2FC_MISC_DBG("Entered %s\n", __func__
);
2052 /* bnx2fc works only when bnx2x is loaded */
2053 if (!test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
) ||
2054 (dev
->max_fcoe_conn
== 0)) {
2055 printk(KERN_ERR PFX
"bnx2fc FCoE not supported on %s,"
2056 " flags: %lx fcoe_conn: %d\n",
2057 dev
->netdev
->name
, dev
->flags
, dev
->max_fcoe_conn
);
2061 hba
= bnx2fc_hba_create(dev
);
2063 printk(KERN_ERR PFX
"hba initialization failed\n");
2067 pr_info(PFX
"FCoE initialized for %s.\n", dev
->netdev
->name
);
2069 /* Add HBA to the adapter list */
2070 mutex_lock(&bnx2fc_dev_lock
);
2071 list_add_tail(&hba
->list
, &adapter_list
);
2073 mutex_unlock(&bnx2fc_dev_lock
);
2075 dev
->fcoe_cap
= &hba
->fcoe_cap
;
2076 clear_bit(BNX2FC_CNIC_REGISTERED
, &hba
->reg_with_cnic
);
2077 rc
= dev
->register_device(dev
, CNIC_ULP_FCOE
,
2080 printk(KERN_ERR PFX
"register_device failed, rc = %d\n", rc
);
2082 set_bit(BNX2FC_CNIC_REGISTERED
, &hba
->reg_with_cnic
);
2085 /* Assumes rtnl_lock and the bnx2fc_dev_lock are already taken */
2086 static int __bnx2fc_disable(struct fcoe_ctlr
*ctlr
)
2088 struct bnx2fc_interface
*interface
= fcoe_ctlr_priv(ctlr
);
2090 if (interface
->enabled
== true) {
2092 pr_err(PFX
"__bnx2fc_disable: lport not found\n");
2095 interface
->enabled
= false;
2096 fcoe_ctlr_link_down(ctlr
);
2097 fcoe_clean_pending_queue(ctlr
->lp
);
2104 * Deperecated: Use bnx2fc_enabled()
2106 static int bnx2fc_disable(struct net_device
*netdev
)
2108 struct bnx2fc_interface
*interface
;
2109 struct fcoe_ctlr
*ctlr
;
2113 mutex_lock(&bnx2fc_dev_lock
);
2115 interface
= bnx2fc_interface_lookup(netdev
);
2116 ctlr
= bnx2fc_to_ctlr(interface
);
2120 pr_err(PFX
"bnx2fc_disable: interface not found\n");
2122 rc
= __bnx2fc_disable(ctlr
);
2124 mutex_unlock(&bnx2fc_dev_lock
);
2129 static uint
bnx2fc_npiv_create_vports(struct fc_lport
*lport
,
2130 struct cnic_fc_npiv_tbl
*npiv_tbl
)
2132 struct fc_vport_identifiers vpid
;
2133 uint i
, created
= 0;
2138 if (npiv_tbl
->count
> MAX_NPIV_ENTRIES
) {
2139 BNX2FC_HBA_DBG(lport
, "Exceeded count max of npiv table\n");
2143 /* Sanity check the first entry to make sure it's not 0 */
2144 if (wwn_to_u64(npiv_tbl
->wwnn
[0]) == 0 &&
2145 wwn_to_u64(npiv_tbl
->wwpn
[0]) == 0) {
2146 BNX2FC_HBA_DBG(lport
, "First NPIV table entries invalid.\n");
2150 vpid
.roles
= FC_PORT_ROLE_FCP_INITIATOR
;
2151 vpid
.vport_type
= FC_PORTTYPE_NPIV
;
2152 vpid
.disable
= false;
2154 for (i
= 0; i
< npiv_tbl
->count
; i
++) {
2155 wwnn
= wwn_to_u64(npiv_tbl
->wwnn
[i
]);
2158 * If we get a 0 element from for the WWNN then assume
2159 * the WWNN should be the same as the physical port.
2163 vpid
.node_name
= wwnn
;
2164 vpid
.port_name
= wwn_to_u64(npiv_tbl
->wwpn
[i
]);
2165 scnprintf(vpid
.symbolic_name
, sizeof(vpid
.symbolic_name
),
2166 "NPIV[%u]:%016llx-%016llx",
2167 created
, vpid
.port_name
, vpid
.node_name
);
2168 fcoe_wwn_to_str(vpid
.node_name
, wwnn_str
, sizeof(wwnn_str
));
2169 fcoe_wwn_to_str(vpid
.port_name
, wwpn_str
, sizeof(wwpn_str
));
2170 BNX2FC_HBA_DBG(lport
, "Creating vport %s:%s.\n", wwnn_str
,
2172 if (fc_vport_create(lport
->host
, 0, &vpid
))
2175 BNX2FC_HBA_DBG(lport
, "Failed to create vport\n");
2181 static int __bnx2fc_enable(struct fcoe_ctlr
*ctlr
)
2183 struct bnx2fc_interface
*interface
= fcoe_ctlr_priv(ctlr
);
2184 struct bnx2fc_hba
*hba
;
2185 struct cnic_fc_npiv_tbl
*npiv_tbl
;
2186 struct fc_lport
*lport
;
2188 if (interface
->enabled
== false) {
2190 pr_err(PFX
"__bnx2fc_enable: lport not found\n");
2192 } else if (!bnx2fc_link_ok(ctlr
->lp
)) {
2193 fcoe_ctlr_link_up(ctlr
);
2194 interface
->enabled
= true;
2198 /* Create static NPIV ports if any are contained in NVRAM */
2199 hba
= interface
->hba
;
2214 if (!hba
->cnic
->get_fc_npiv_tbl
)
2217 npiv_tbl
= kzalloc(sizeof(struct cnic_fc_npiv_tbl
), GFP_KERNEL
);
2221 if (hba
->cnic
->get_fc_npiv_tbl(hba
->cnic
, npiv_tbl
))
2224 bnx2fc_npiv_create_vports(lport
, npiv_tbl
);
2232 * Deprecated: Use bnx2fc_enabled()
2234 static int bnx2fc_enable(struct net_device
*netdev
)
2236 struct bnx2fc_interface
*interface
;
2237 struct fcoe_ctlr
*ctlr
;
2241 mutex_lock(&bnx2fc_dev_lock
);
2243 interface
= bnx2fc_interface_lookup(netdev
);
2244 ctlr
= bnx2fc_to_ctlr(interface
);
2247 pr_err(PFX
"bnx2fc_enable: interface not found\n");
2249 rc
= __bnx2fc_enable(ctlr
);
2252 mutex_unlock(&bnx2fc_dev_lock
);
2258 * bnx2fc_ctlr_enabled() - Enable or disable an FCoE Controller
2259 * @cdev: The FCoE Controller that is being enabled or disabled
2261 * fcoe_sysfs will ensure that the state of 'enabled' has
2262 * changed, so no checking is necessary here. This routine simply
2263 * calls fcoe_enable or fcoe_disable, both of which are deprecated.
2264 * When those routines are removed the functionality can be merged
2267 static int bnx2fc_ctlr_enabled(struct fcoe_ctlr_device
*cdev
)
2269 struct fcoe_ctlr
*ctlr
= fcoe_ctlr_device_priv(cdev
);
2271 switch (cdev
->enabled
) {
2272 case FCOE_CTLR_ENABLED
:
2273 return __bnx2fc_enable(ctlr
);
2274 case FCOE_CTLR_DISABLED
:
2275 return __bnx2fc_disable(ctlr
);
2276 case FCOE_CTLR_UNUSED
:
2282 enum bnx2fc_create_link_state
{
2283 BNX2FC_CREATE_LINK_DOWN
,
2284 BNX2FC_CREATE_LINK_UP
,
2288 * _bnx2fc_create() - Create bnx2fc FCoE interface
2289 * @netdev : The net_device object the Ethernet interface to create on
2290 * @fip_mode: The FIP mode for this creation
2291 * @link_state: The ctlr link state on creation
2293 * Called from either the libfcoe 'create' module parameter
2294 * via fcoe_create or from fcoe_syfs's ctlr_create file.
2296 * libfcoe's 'create' module parameter is deprecated so some
2297 * consolidation of code can be done when that interface is
2300 * Returns: 0 for success
2302 static int _bnx2fc_create(struct net_device
*netdev
,
2303 enum fip_mode fip_mode
,
2304 enum bnx2fc_create_link_state link_state
)
2306 struct fcoe_ctlr_device
*cdev
;
2307 struct fcoe_ctlr
*ctlr
;
2308 struct bnx2fc_interface
*interface
;
2309 struct bnx2fc_hba
*hba
;
2310 struct net_device
*phys_dev
= netdev
;
2311 struct fc_lport
*lport
;
2312 struct ethtool_drvinfo drvinfo
;
2316 BNX2FC_MISC_DBG("Entered bnx2fc_create\n");
2317 if (fip_mode
!= FIP_MODE_FABRIC
) {
2318 printk(KERN_ERR
"fip mode not FABRIC\n");
2324 mutex_lock(&bnx2fc_dev_lock
);
2326 if (!try_module_get(THIS_MODULE
)) {
2331 /* obtain physical netdev */
2332 if (is_vlan_dev(netdev
))
2333 phys_dev
= vlan_dev_real_dev(netdev
);
2335 /* verify if the physical device is a netxtreme2 device */
2336 if (phys_dev
->ethtool_ops
&& phys_dev
->ethtool_ops
->get_drvinfo
) {
2337 memset(&drvinfo
, 0, sizeof(drvinfo
));
2338 phys_dev
->ethtool_ops
->get_drvinfo(phys_dev
, &drvinfo
);
2339 if (strncmp(drvinfo
.driver
, "bnx2x", strlen("bnx2x"))) {
2340 printk(KERN_ERR PFX
"Not a netxtreme2 device\n");
2345 printk(KERN_ERR PFX
"unable to obtain drv_info\n");
2350 /* obtain interface and initialize rest of the structure */
2351 hba
= bnx2fc_hba_lookup(phys_dev
);
2354 printk(KERN_ERR PFX
"bnx2fc_create: hba not found\n");
2358 if (bnx2fc_interface_lookup(netdev
)) {
2363 interface
= bnx2fc_interface_create(hba
, netdev
, fip_mode
);
2365 printk(KERN_ERR PFX
"bnx2fc_interface_create failed\n");
2370 if (is_vlan_dev(netdev
)) {
2371 vlan_id
= vlan_dev_vlan_id(netdev
);
2372 interface
->vlan_enabled
= 1;
2375 ctlr
= bnx2fc_to_ctlr(interface
);
2376 cdev
= fcoe_ctlr_to_ctlr_dev(ctlr
);
2377 interface
->vlan_id
= vlan_id
;
2378 interface
->tm_timeout
= BNX2FC_TM_TIMEOUT
;
2380 interface
->timer_work_queue
=
2381 create_singlethread_workqueue("bnx2fc_timer_wq");
2382 if (!interface
->timer_work_queue
) {
2383 printk(KERN_ERR PFX
"ulp_init could not create timer_wq\n");
2388 lport
= bnx2fc_if_create(interface
, &cdev
->dev
, 0);
2390 printk(KERN_ERR PFX
"Failed to create interface (%s)\n",
2396 /* Add interface to if_list */
2397 list_add_tail(&interface
->list
, &if_list
);
2399 lport
->boot_time
= jiffies
;
2401 /* Make this master N_port */
2404 if (link_state
== BNX2FC_CREATE_LINK_UP
)
2405 cdev
->enabled
= FCOE_CTLR_ENABLED
;
2407 cdev
->enabled
= FCOE_CTLR_DISABLED
;
2409 if (link_state
== BNX2FC_CREATE_LINK_UP
&&
2410 !bnx2fc_link_ok(lport
)) {
2411 fcoe_ctlr_link_up(ctlr
);
2412 fc_host_port_type(lport
->host
) = FC_PORTTYPE_NPORT
;
2413 set_bit(ADAPTER_STATE_READY
, &interface
->hba
->adapter_state
);
2416 BNX2FC_HBA_DBG(lport
, "create: START DISC\n");
2417 bnx2fc_start_disc(interface
);
2419 if (link_state
== BNX2FC_CREATE_LINK_UP
)
2420 interface
->enabled
= true;
2423 * Release from kref_init in bnx2fc_interface_setup, on success
2424 * lport should be holding a reference taken in bnx2fc_if_create
2426 bnx2fc_interface_put(interface
);
2427 /* put netdev that was held while calling dev_get_by_name */
2428 mutex_unlock(&bnx2fc_dev_lock
);
2433 destroy_workqueue(interface
->timer_work_queue
);
2435 bnx2fc_net_cleanup(interface
);
2436 bnx2fc_interface_put(interface
);
2439 module_put(THIS_MODULE
);
2441 mutex_unlock(&bnx2fc_dev_lock
);
2447 * bnx2fc_create() - Create a bnx2fc interface
2448 * @netdev : The net_device object the Ethernet interface to create on
2449 * @fip_mode: The FIP mode for this creation
2451 * Called from fcoe transport
2453 * Returns: 0 for success
2455 static int bnx2fc_create(struct net_device
*netdev
, enum fip_mode fip_mode
)
2457 return _bnx2fc_create(netdev
, fip_mode
, BNX2FC_CREATE_LINK_UP
);
2461 * bnx2fc_ctlr_alloc() - Allocate a bnx2fc interface from fcoe_sysfs
2462 * @netdev: The net_device to be used by the allocated FCoE Controller
2464 * This routine is called from fcoe_sysfs. It will start the fcoe_ctlr
2465 * in a link_down state. The allows the user an opportunity to configure
2466 * the FCoE Controller from sysfs before enabling the FCoE Controller.
2468 * Creating in with this routine starts the FCoE Controller in Fabric
2469 * mode. The user can change to VN2VN or another mode before enabling.
2471 static int bnx2fc_ctlr_alloc(struct net_device
*netdev
)
2473 return _bnx2fc_create(netdev
, FIP_MODE_FABRIC
,
2474 BNX2FC_CREATE_LINK_DOWN
);
2478 * bnx2fc_find_hba_for_cnic - maps cnic instance to bnx2fc hba instance
2480 * @cnic: Pointer to cnic device instance
2483 static struct bnx2fc_hba
*bnx2fc_find_hba_for_cnic(struct cnic_dev
*cnic
)
2485 struct bnx2fc_hba
*hba
;
2487 /* Called with bnx2fc_dev_lock held */
2488 list_for_each_entry(hba
, &adapter_list
, list
) {
2489 if (hba
->cnic
== cnic
)
2495 static struct bnx2fc_interface
*bnx2fc_interface_lookup(struct net_device
2498 struct bnx2fc_interface
*interface
;
2500 /* Called with bnx2fc_dev_lock held */
2501 list_for_each_entry(interface
, &if_list
, list
) {
2502 if (interface
->netdev
== netdev
)
2508 static struct bnx2fc_hba
*bnx2fc_hba_lookup(struct net_device
2511 struct bnx2fc_hba
*hba
;
2513 /* Called with bnx2fc_dev_lock held */
2514 list_for_each_entry(hba
, &adapter_list
, list
) {
2515 if (hba
->phys_dev
== phys_dev
)
2518 printk(KERN_ERR PFX
"adapter_lookup: hba NULL\n");
2523 * bnx2fc_ulp_exit - shuts down adapter instance and frees all resources
2525 * @dev cnic device handle
2527 static void bnx2fc_ulp_exit(struct cnic_dev
*dev
)
2529 struct bnx2fc_hba
*hba
;
2530 struct bnx2fc_interface
*interface
, *tmp
;
2532 BNX2FC_MISC_DBG("Entered bnx2fc_ulp_exit\n");
2534 if (!test_bit(CNIC_F_BNX2X_CLASS
, &dev
->flags
)) {
2535 printk(KERN_ERR PFX
"bnx2fc port check: %s, flags: %lx\n",
2536 dev
->netdev
->name
, dev
->flags
);
2540 mutex_lock(&bnx2fc_dev_lock
);
2541 hba
= bnx2fc_find_hba_for_cnic(dev
);
2543 printk(KERN_ERR PFX
"bnx2fc_ulp_exit: hba not found, dev 0%p\n",
2545 mutex_unlock(&bnx2fc_dev_lock
);
2549 list_del_init(&hba
->list
);
2552 list_for_each_entry_safe(interface
, tmp
, &if_list
, list
)
2553 /* destroy not called yet, move to quiesced list */
2554 if (interface
->hba
== hba
)
2555 __bnx2fc_destroy(interface
);
2556 mutex_unlock(&bnx2fc_dev_lock
);
2558 /* Ensure ALL destroy work has been completed before return */
2559 flush_workqueue(bnx2fc_wq
);
2561 bnx2fc_ulp_stop(hba
);
2562 /* unregister cnic device */
2563 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED
, &hba
->reg_with_cnic
))
2564 hba
->cnic
->unregister_device(hba
->cnic
, CNIC_ULP_FCOE
);
2565 bnx2fc_hba_destroy(hba
);
2568 static void bnx2fc_rport_terminate_io(struct fc_rport
*rport
)
2570 /* This is a no-op */
2574 * bnx2fc_fcoe_reset - Resets the fcoe
2576 * @shost: shost the reset is from
2580 static int bnx2fc_fcoe_reset(struct Scsi_Host
*shost
)
2582 struct fc_lport
*lport
= shost_priv(shost
);
2583 fc_lport_reset(lport
);
2588 static bool bnx2fc_match(struct net_device
*netdev
)
2590 struct net_device
*phys_dev
= netdev
;
2592 mutex_lock(&bnx2fc_dev_lock
);
2593 if (is_vlan_dev(netdev
))
2594 phys_dev
= vlan_dev_real_dev(netdev
);
2596 if (bnx2fc_hba_lookup(phys_dev
)) {
2597 mutex_unlock(&bnx2fc_dev_lock
);
2601 mutex_unlock(&bnx2fc_dev_lock
);
2606 static struct fcoe_transport bnx2fc_transport
= {
2609 .list
= LIST_HEAD_INIT(bnx2fc_transport
.list
),
2610 .alloc
= bnx2fc_ctlr_alloc
,
2611 .match
= bnx2fc_match
,
2612 .create
= bnx2fc_create
,
2613 .destroy
= bnx2fc_destroy
,
2614 .enable
= bnx2fc_enable
,
2615 .disable
= bnx2fc_disable
,
2619 * bnx2fc_cpu_online - Create a receive thread for an online CPU
2621 * @cpu: cpu index for the online cpu
2623 static int bnx2fc_cpu_online(unsigned int cpu
)
2625 struct bnx2fc_percpu_s
*p
;
2626 struct task_struct
*thread
;
2628 p
= &per_cpu(bnx2fc_percpu
, cpu
);
2630 thread
= kthread_create_on_node(bnx2fc_percpu_io_thread
,
2631 (void *)p
, cpu_to_node(cpu
),
2632 "bnx2fc_thread/%d", cpu
);
2634 return PTR_ERR(thread
);
2636 /* bind thread to the cpu */
2637 kthread_bind(thread
, cpu
);
2638 p
->iothread
= thread
;
2639 wake_up_process(thread
);
2643 static int bnx2fc_cpu_offline(unsigned int cpu
)
2645 struct bnx2fc_percpu_s
*p
;
2646 struct task_struct
*thread
;
2647 struct bnx2fc_work
*work
, *tmp
;
2649 BNX2FC_MISC_DBG("destroying io thread for CPU %d\n", cpu
);
2651 /* Prevent any new work from being queued for this CPU */
2652 p
= &per_cpu(bnx2fc_percpu
, cpu
);
2653 spin_lock_bh(&p
->fp_work_lock
);
2654 thread
= p
->iothread
;
2657 /* Free all work in the list */
2658 list_for_each_entry_safe(work
, tmp
, &p
->work_list
, list
) {
2659 list_del_init(&work
->list
);
2660 bnx2fc_process_cq_compl(work
->tgt
, work
->wqe
);
2664 spin_unlock_bh(&p
->fp_work_lock
);
2667 kthread_stop(thread
);
2671 static int bnx2fc_slave_configure(struct scsi_device
*sdev
)
2673 if (!bnx2fc_queue_depth
)
2676 scsi_change_queue_depth(sdev
, bnx2fc_queue_depth
);
2680 static enum cpuhp_state bnx2fc_online_state
;
2683 * bnx2fc_mod_init - module init entry point
2685 * Initialize driver wide global data structures, and register
2688 static int __init
bnx2fc_mod_init(void)
2690 struct fcoe_percpu_s
*bg
;
2691 struct task_struct
*l2_thread
;
2693 unsigned int cpu
= 0;
2694 struct bnx2fc_percpu_s
*p
;
2696 printk(KERN_INFO PFX
"%s", version
);
2698 /* register as a fcoe transport */
2699 rc
= fcoe_transport_attach(&bnx2fc_transport
);
2701 printk(KERN_ERR
"failed to register an fcoe transport, check "
2702 "if libfcoe is loaded\n");
2706 INIT_LIST_HEAD(&adapter_list
);
2707 INIT_LIST_HEAD(&if_list
);
2708 mutex_init(&bnx2fc_dev_lock
);
2711 /* Attach FC transport template */
2712 rc
= bnx2fc_attach_transport();
2716 bnx2fc_wq
= alloc_workqueue("bnx2fc", 0, 0);
2722 bg
= &bnx2fc_global
;
2723 skb_queue_head_init(&bg
->fcoe_rx_list
);
2724 l2_thread
= kthread_create(bnx2fc_l2_rcv_thread
,
2726 "bnx2fc_l2_thread");
2727 if (IS_ERR(l2_thread
)) {
2728 rc
= PTR_ERR(l2_thread
);
2731 wake_up_process(l2_thread
);
2732 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
2733 bg
->kthread
= l2_thread
;
2734 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
2736 for_each_possible_cpu(cpu
) {
2737 p
= &per_cpu(bnx2fc_percpu
, cpu
);
2738 INIT_LIST_HEAD(&p
->work_list
);
2739 spin_lock_init(&p
->fp_work_lock
);
2742 rc
= cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "scsi/bnx2fc:online",
2743 bnx2fc_cpu_online
, bnx2fc_cpu_offline
);
2746 bnx2fc_online_state
= rc
;
2748 cnic_register_driver(CNIC_ULP_FCOE
, &bnx2fc_cnic_cb
);
2752 kthread_stop(l2_thread
);
2754 destroy_workqueue(bnx2fc_wq
);
2756 bnx2fc_release_transport();
2758 fcoe_transport_detach(&bnx2fc_transport
);
2763 static void __exit
bnx2fc_mod_exit(void)
2765 LIST_HEAD(to_be_deleted
);
2766 struct bnx2fc_hba
*hba
, *next
;
2767 struct fcoe_percpu_s
*bg
;
2768 struct task_struct
*l2_thread
;
2769 struct sk_buff
*skb
;
2772 * NOTE: Since cnic calls register_driver routine rtnl_lock,
2773 * it will have higher precedence than bnx2fc_dev_lock.
2774 * unregister_device() cannot be called with bnx2fc_dev_lock
2777 mutex_lock(&bnx2fc_dev_lock
);
2778 list_splice_init(&adapter_list
, &to_be_deleted
);
2780 mutex_unlock(&bnx2fc_dev_lock
);
2782 /* Unregister with cnic */
2783 list_for_each_entry_safe(hba
, next
, &to_be_deleted
, list
) {
2784 list_del_init(&hba
->list
);
2785 printk(KERN_ERR PFX
"MOD_EXIT:destroy hba = 0x%p\n",
2787 bnx2fc_ulp_stop(hba
);
2788 /* unregister cnic device */
2789 if (test_and_clear_bit(BNX2FC_CNIC_REGISTERED
,
2790 &hba
->reg_with_cnic
))
2791 hba
->cnic
->unregister_device(hba
->cnic
,
2793 bnx2fc_hba_destroy(hba
);
2795 cnic_unregister_driver(CNIC_ULP_FCOE
);
2797 /* Destroy global thread */
2798 bg
= &bnx2fc_global
;
2799 spin_lock_bh(&bg
->fcoe_rx_list
.lock
);
2800 l2_thread
= bg
->kthread
;
2802 while ((skb
= __skb_dequeue(&bg
->fcoe_rx_list
)) != NULL
)
2805 spin_unlock_bh(&bg
->fcoe_rx_list
.lock
);
2808 kthread_stop(l2_thread
);
2810 cpuhp_remove_state(bnx2fc_online_state
);
2812 destroy_workqueue(bnx2fc_wq
);
2814 * detach from scsi transport
2815 * must happen after all destroys are done
2817 bnx2fc_release_transport();
2819 /* detach from fcoe transport */
2820 fcoe_transport_detach(&bnx2fc_transport
);
2823 module_init(bnx2fc_mod_init
);
2824 module_exit(bnx2fc_mod_exit
);
2826 static struct fcoe_sysfs_function_template bnx2fc_fcoe_sysfs_templ
= {
2827 .set_fcoe_ctlr_enabled
= bnx2fc_ctlr_enabled
,
2828 .get_fcoe_ctlr_link_fail
= fcoe_ctlr_get_lesb
,
2829 .get_fcoe_ctlr_vlink_fail
= fcoe_ctlr_get_lesb
,
2830 .get_fcoe_ctlr_miss_fka
= fcoe_ctlr_get_lesb
,
2831 .get_fcoe_ctlr_symb_err
= fcoe_ctlr_get_lesb
,
2832 .get_fcoe_ctlr_err_block
= fcoe_ctlr_get_lesb
,
2833 .get_fcoe_ctlr_fcs_error
= fcoe_ctlr_get_lesb
,
2835 .get_fcoe_fcf_selected
= fcoe_fcf_get_selected
,
2836 .get_fcoe_fcf_vlan_id
= bnx2fc_fcf_get_vlan_id
,
2839 static struct fc_function_template bnx2fc_transport_function
= {
2840 .show_host_node_name
= 1,
2841 .show_host_port_name
= 1,
2842 .show_host_supported_classes
= 1,
2843 .show_host_supported_fc4s
= 1,
2844 .show_host_active_fc4s
= 1,
2845 .show_host_maxframe_size
= 1,
2847 .show_host_port_id
= 1,
2848 .show_host_supported_speeds
= 1,
2849 .get_host_speed
= fc_get_host_speed
,
2850 .show_host_speed
= 1,
2851 .show_host_port_type
= 1,
2852 .get_host_port_state
= fc_get_host_port_state
,
2853 .show_host_port_state
= 1,
2854 .show_host_symbolic_name
= 1,
2856 .dd_fcrport_size
= (sizeof(struct fc_rport_libfc_priv
) +
2857 sizeof(struct bnx2fc_rport
)),
2858 .show_rport_maxframe_size
= 1,
2859 .show_rport_supported_classes
= 1,
2861 .show_host_fabric_name
= 1,
2862 .show_starget_node_name
= 1,
2863 .show_starget_port_name
= 1,
2864 .show_starget_port_id
= 1,
2865 .set_rport_dev_loss_tmo
= fc_set_rport_loss_tmo
,
2866 .show_rport_dev_loss_tmo
= 1,
2867 .get_fc_host_stats
= bnx2fc_get_host_stats
,
2869 .issue_fc_host_lip
= bnx2fc_fcoe_reset
,
2871 .terminate_rport_io
= bnx2fc_rport_terminate_io
,
2873 .vport_create
= bnx2fc_vport_create
,
2874 .vport_delete
= bnx2fc_vport_destroy
,
2875 .vport_disable
= bnx2fc_vport_disable
,
2876 .bsg_request
= fc_lport_bsg_request
,
2879 static struct fc_function_template bnx2fc_vport_xport_function
= {
2880 .show_host_node_name
= 1,
2881 .show_host_port_name
= 1,
2882 .show_host_supported_classes
= 1,
2883 .show_host_supported_fc4s
= 1,
2884 .show_host_active_fc4s
= 1,
2885 .show_host_maxframe_size
= 1,
2887 .show_host_port_id
= 1,
2888 .show_host_supported_speeds
= 1,
2889 .get_host_speed
= fc_get_host_speed
,
2890 .show_host_speed
= 1,
2891 .show_host_port_type
= 1,
2892 .get_host_port_state
= fc_get_host_port_state
,
2893 .show_host_port_state
= 1,
2894 .show_host_symbolic_name
= 1,
2896 .dd_fcrport_size
= (sizeof(struct fc_rport_libfc_priv
) +
2897 sizeof(struct bnx2fc_rport
)),
2898 .show_rport_maxframe_size
= 1,
2899 .show_rport_supported_classes
= 1,
2901 .show_host_fabric_name
= 1,
2902 .show_starget_node_name
= 1,
2903 .show_starget_port_name
= 1,
2904 .show_starget_port_id
= 1,
2905 .set_rport_dev_loss_tmo
= fc_set_rport_loss_tmo
,
2906 .show_rport_dev_loss_tmo
= 1,
2907 .get_fc_host_stats
= fc_get_host_stats
,
2908 .issue_fc_host_lip
= bnx2fc_fcoe_reset
,
2909 .terminate_rport_io
= fc_rport_terminate_io
,
2910 .bsg_request
= fc_lport_bsg_request
,
2914 * Additional scsi_host attributes.
2917 bnx2fc_tm_timeout_show(struct device
*dev
, struct device_attribute
*attr
,
2920 struct Scsi_Host
*shost
= class_to_shost(dev
);
2921 struct fc_lport
*lport
= shost_priv(shost
);
2922 struct fcoe_port
*port
= lport_priv(lport
);
2923 struct bnx2fc_interface
*interface
= port
->priv
;
2925 sprintf(buf
, "%u\n", interface
->tm_timeout
);
2930 bnx2fc_tm_timeout_store(struct device
*dev
,
2931 struct device_attribute
*attr
, const char *buf
, size_t count
)
2933 struct Scsi_Host
*shost
= class_to_shost(dev
);
2934 struct fc_lport
*lport
= shost_priv(shost
);
2935 struct fcoe_port
*port
= lport_priv(lport
);
2936 struct bnx2fc_interface
*interface
= port
->priv
;
2939 rval
= kstrtouint(buf
, 10, &val
);
2945 interface
->tm_timeout
= (u8
)val
;
2949 static DEVICE_ATTR(tm_timeout
, S_IRUGO
|S_IWUSR
, bnx2fc_tm_timeout_show
,
2950 bnx2fc_tm_timeout_store
);
2952 static struct device_attribute
*bnx2fc_host_attrs
[] = {
2953 &dev_attr_tm_timeout
,
2958 * scsi_host_template structure used while registering with SCSI-ml
2960 static struct scsi_host_template bnx2fc_shost_template
= {
2961 .module
= THIS_MODULE
,
2962 .name
= "QLogic Offload FCoE Initiator",
2963 .queuecommand
= bnx2fc_queuecommand
,
2964 .eh_timed_out
= fc_eh_timed_out
,
2965 .eh_abort_handler
= bnx2fc_eh_abort
, /* abts */
2966 .eh_device_reset_handler
= bnx2fc_eh_device_reset
, /* lun reset */
2967 .eh_target_reset_handler
= bnx2fc_eh_target_reset
, /* tgt reset */
2968 .eh_host_reset_handler
= fc_eh_host_reset
,
2969 .slave_alloc
= fc_slave_alloc
,
2970 .change_queue_depth
= scsi_change_queue_depth
,
2973 .sg_tablesize
= BNX2FC_MAX_BDS_PER_CMD
,
2974 .max_sectors
= 1024,
2975 .track_queue_depth
= 1,
2976 .slave_configure
= bnx2fc_slave_configure
,
2977 .shost_attrs
= bnx2fc_host_attrs
,
2980 static struct libfc_function_template bnx2fc_libfc_fcn_templ
= {
2981 .frame_send
= bnx2fc_xmit
,
2982 .elsct_send
= bnx2fc_elsct_send
,
2983 .fcp_abort_io
= bnx2fc_abort_io
,
2984 .fcp_cleanup
= bnx2fc_cleanup
,
2985 .get_lesb
= fcoe_get_lesb
,
2986 .rport_event_callback
= bnx2fc_rport_event_handler
,
2990 * bnx2fc_cnic_cb - global template of bnx2fc - cnic driver interface
2991 * structure carrying callback function pointers
2993 static struct cnic_ulp_ops bnx2fc_cnic_cb
= {
2994 .owner
= THIS_MODULE
,
2995 .cnic_init
= bnx2fc_ulp_init
,
2996 .cnic_exit
= bnx2fc_ulp_exit
,
2997 .cnic_start
= bnx2fc_ulp_start
,
2998 .cnic_stop
= bnx2fc_ulp_stop
,
2999 .indicate_kcqes
= bnx2fc_indicate_kcqe
,
3000 .indicate_netevent
= bnx2fc_indicate_netevent
,
3001 .cnic_get_stats
= bnx2fc_ulp_get_stats
,